:root {
  --bg: #000814;
  --bg-2: #0a1420;
  --cyan: #00E5FF;
  --magenta: #FF00AA;
  --text: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.6);
  --text-faint: rgba(255, 255, 255, 0.4);
  --border-c: rgba(0, 229, 255, 0.2);
  --border-m: rgba(255, 0, 170, 0.2);
  --mono: 'JetBrains Mono', 'Courier New', Monaco, monospace;
  --display: 'Cinzel', Georgia, serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* ============ BACKGROUND EFFECTS ============ */

.tron-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  animation: gridPulse 5s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

.scan-line {
  position: fixed;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
  animation: scanY 10s linear infinite;
}

@keyframes scanY {
  0% { top: -5%; }
  100% { top: 105%; }
}

/* ============ UTILITIES ============ */

.c { color: var(--cyan); }
.m { color: var(--magenta); }
.tc { text-shadow: 0 0 10px rgba(0, 229, 255, 0.6); }
.tm { text-shadow: 0 0 10px rgba(255, 0, 170, 0.6); }
.neon-cyan { color: var(--cyan); text-shadow: 0 0 12px rgba(0, 229, 255, 0.7); }
.neon-magenta { color: var(--magenta); text-shadow: 0 0 12px rgba(255, 0, 170, 0.7); }
.underline-cyan {
  text-decoration: underline;
  text-decoration-color: var(--cyan);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.flick { animation: flicker 3s ease-in-out infinite; }
.blink { animation: blink 2s ease-in-out infinite; }

@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes blink {
  0%, 95% { opacity: 0; }
  98% { opacity: 1; }
  100% { opacity: 0; }
}

/* ============ NAV ============ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 32px;
  background: rgba(0, 8, 20, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-c);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.logo-rune { filter: drop-shadow(0 0 4px var(--cyan)); }
.logo-ring { animation: spin 20s linear infinite; transform-origin: center; }
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.logo-title {
  color: var(--cyan);
  font-size: 14px;
  letter-spacing: 5px;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.logo-sub {
  color: rgba(0, 229, 255, 0.4);
  font-size: 8px;
  letter-spacing: 3px;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 2px;
  transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--cyan); }

.nav-cart {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cart-label {
  font-size: 10px;
  color: rgba(0, 229, 255, 0.7);
  letter-spacing: 2px;
}

.cart-count {
  background: var(--magenta);
  color: var(--bg);
  font-size: 10px;
  padding: 3px 9px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--cyan);
  transition: all 0.3s ease;
}

/* ============ HERO ============ */

.hero {
  position: relative;
  z-index: 2;
  padding: 90px 32px 100px;
  text-align: center;
  overflow: hidden;
}

.hero-particles .particle {
  position: absolute;
  border-radius: 50%;
  animation: floatUp 4s ease-in-out infinite;
}

.p1 { top: 60px; left: 12%; width: 3px; height: 3px; background: var(--cyan); }
.p2 { top: 100px; right: 18%; width: 2px; height: 2px; background: var(--magenta); animation-delay: 1s; }
.p3 { top: 180px; left: 22%; width: 4px; height: 4px; background: var(--cyan); animation-delay: 2s; }
.p4 { top: 220px; right: 28%; width: 2px; height: 2px; background: var(--magenta); animation-delay: 0.5s; }
.p5 { top: 320px; left: 15%; width: 3px; height: 3px; background: var(--cyan); animation-delay: 2.5s; }

@keyframes floatUp {
  0%, 100% { transform: translateY(0); opacity: 0.8; }
  50% { transform: translateY(-12px); opacity: 1; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border: 1px solid var(--cyan);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--cyan);
  margin-bottom: 28px;
  background: rgba(0, 229, 255, 0.05);
  position: relative;
}

.bracket {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
}

.hero-title {
  font-family: var(--mono);
  font-size: clamp(32px, 6vw, 58px);
  font-weight: 400;
  margin: 0 0 20px;
  line-height: 1.05;
  letter-spacing: -1.5px;
}

.hero-sub {
  color: var(--text-dim);
  font-size: 14px;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--cyan);
  color: var(--bg);
  border: none;
  padding: 16px 30px;
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 700;
  font-family: var(--mono);
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  transition: all 0.25s ease;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 0 35px rgba(0, 229, 255, 0.8);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 16px 28px;
  font-size: 11px;
  letter-spacing: 3px;
  font-family: var(--mono);
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  transition: all 0.25s ease;
}

.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.btn-outline-cyan {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--cyan);
  padding: 13px 28px;
  font-size: 11px;
  letter-spacing: 3px;
  font-family: var(--mono);
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s ease;
  margin-top: 20px;
}

.btn-outline-cyan:hover {
  background: var(--cyan);
  color: var(--bg);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.5);
}

.btn-outline-magenta {
  background: transparent;
  color: var(--magenta);
  border: 1px solid var(--magenta);
  padding: 13px 28px;
  font-size: 11px;
  letter-spacing: 3px;
  font-family: var(--mono);
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s ease;
  margin-top: 20px;
}

.btn-outline-magenta:hover {
  background: var(--magenta);
  color: var(--bg);
  box-shadow: 0 0 25px rgba(255, 0, 170, 0.5);
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  color: rgba(0, 229, 255, 0.7);
  font-size: 10px;
  letter-spacing: 2px;
}

/* ============ RUNE TICKER ============ */

.rune-ticker {
  position: relative;
  z-index: 2;
  padding: 16px 0;
  border-top: 1px solid var(--border-c);
  border-bottom: 1px solid var(--border-c);
  background: rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 50px;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  color: rgba(0, 229, 255, 0.5);
  font-size: 11px;
  letter-spacing: 3px;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ SECTIONS ============ */

section {
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 24px;
}

.section-num {
  font-size: 10px;
  letter-spacing: 4px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 400;
  margin: 0 0 14px;
  letter-spacing: -0.5px;
}

.section-sub {
  color: var(--text-dim);
  font-size: 13px;
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============ SERVICES ============ */

.services {
  padding: 80px 32px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-c);
  padding: 28px 22px;
  text-decoration: none;
  color: var(--text);
  display: block;
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.2);
}

.service-card.featured {
  border-color: var(--magenta);
  background: rgba(255, 0, 170, 0.04);
}

.service-card.featured:hover {
  border-color: var(--magenta);
  box-shadow: 0 0 30px rgba(255, 0, 170, 0.3);
}

.service-tag {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 9px;
  letter-spacing: 2px;
}

.service-icon {
  margin-bottom: 16px;
  filter: drop-shadow(0 0 4px currentColor);
}

.service-card h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.service-card p {
  color: var(--text-dim);
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-arrow {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--magenta);
  transition: all 0.2s ease;
}

.service-card:hover .service-arrow {
  letter-spacing: 3px;
}

/* ============ RUNA SECTION ============ */

.runa-section {
  padding: 80px 32px;
  border-top: 1px solid rgba(0, 229, 255, 0.1);
}

.runa-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.runa-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.runa-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  transition: all 0.3s ease;
}

.c-step {
  background: rgba(0, 229, 255, 0.04);
  border-left: 2px solid var(--cyan);
}

.m-step {
  background: rgba(255, 0, 170, 0.05);
  border-left: 2px solid var(--magenta);
}

.runa-step:hover {
  transform: translateX(6px);
}

.step-num {
  font-size: 12px;
  letter-spacing: 2px;
  width: 36px;
  font-weight: 700;
}

.step-title {
  font-size: 14px;
  margin-bottom: 3px;
}

.step-desc {
  color: var(--text-faint);
  font-size: 11px;
}

.runa-cta {
  margin-top: 14px;
  align-self: flex-start;
}

.runa-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-wrap {
  position: relative;
  width: 260px;
  height: 260px;
}

.orbit-ring {
  position: absolute;
  inset: 0;
}

.orbit-ring.outer { animation: spin 25s linear infinite; }
.orbit-ring.inner { animation: spin 20s linear infinite reverse; }

.orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: var(--bg);
  border: 1px solid rgba(0, 229, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: glowCyan 2.5s ease-in-out infinite;
}

@keyframes glowCyan {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 229, 255, 0.4); }
  50% { box-shadow: 0 0 45px rgba(0, 229, 255, 0.8); }
}

.rune-draw {
  stroke-dasharray: 300;
  animation: runeDraw 4s ease-out infinite;
  filter: drop-shadow(0 0 6px var(--cyan));
}

@keyframes runeDraw {
  0% { stroke-dashoffset: 300; opacity: 0; }
  30% { opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 1; }
}

.orbit-dot {
  position: absolute;
  border-radius: 50%;
}

.c-dot {
  top: 10px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--cyan);
  box-shadow: 0 0 15px var(--cyan);
}

.m-dot {
  bottom: 10px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--magenta);
  box-shadow: 0 0 15px var(--magenta);
}

/* ============ TIENDA / PRODUCTS ============ */

.tienda-section {
  padding: 80px 32px;
  border-top: 1px solid rgba(0, 229, 255, 0.1);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.prod-card {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-c);
  padding: 18px;
  transition: all 0.4s ease;
  cursor: pointer;
  text-decoration: none;
  color: var(--text);
  display: block;
}

.prod-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
}

.prod-img {
  background: #000;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  border: 1px solid rgba(0, 229, 255, 0.15);
}

.prod-num {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 9px;
  color: rgba(0, 229, 255, 0.6);
  letter-spacing: 2px;
}

.prod-rune {
  stroke-dasharray: 150;
  stroke-dashoffset: 150;
  transition: stroke-dashoffset 1.2s ease;
  filter: drop-shadow(0 0 3px currentColor);
}

.prod-card:hover .prod-rune {
  stroke-dashoffset: 0;
}

.prod-cat {
  font-size: 9px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.prod-name {
  font-size: 14px;
  margin-bottom: 8px;
}

.prod-price {
  font-size: 13px;
}

.prod-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(255, 0, 170, 0.06);
  border: 1px dashed var(--magenta);
}

.prod-more:hover {
  border-color: var(--magenta);
  border-style: dashed;
}

.more-icon {
  margin-bottom: 12px;
  filter: drop-shadow(0 0 6px var(--magenta));
}

.more-label {
  font-size: 11px;
  letter-spacing: 3px;
  margin-bottom: 4px;
}

.more-sub {
  font-size: 11px;
  color: var(--text-dim);
}

/* ============ VERTICAL SECTIONS (Bodas, Corporativo) ============ */

.vertical-section {
  padding: 80px 32px;
  border-top: 1px solid rgba(0, 229, 255, 0.1);
}

.vertical-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.vertical-text h2 {
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 400;
  margin: 10px 0 14px;
  letter-spacing: -0.5px;
}

.vertical-text p {
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.75;
  margin-bottom: 22px;
}

.vertical-list {
  list-style: none;
  margin-bottom: 24px;
}

.vertical-list li {
  font-size: 12px;
  color: var(--text-dim);
  padding: 6px 0;
  letter-spacing: 0.5px;
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mini-tile {
  aspect-ratio: 1;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-c);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mini-tile:hover {
  border-color: var(--cyan);
  transform: scale(1.05);
}

.vertical-section.alt .mini-tile:hover {
  border-color: var(--cyan);
}

.vertical-section:not(.alt) .mini-tile {
  border-color: var(--border-m);
}

.vertical-section:not(.alt) .mini-tile:hover {
  border-color: var(--magenta);
}

/* ============ PROCESS ============ */

.process-section {
  padding: 80px 32px;
  border-top: 1px solid rgba(0, 229, 255, 0.1);
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 560px;
  margin: 0 auto;
  gap: 16px;
  position: relative;
}

.process-line {
  position: absolute;
  top: 30px;
  left: 12%;
  width: 76%;
  height: 2px;
  z-index: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-num {
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}

.c-num {
  background: var(--bg);
  border: 1.5px solid var(--cyan);
  color: var(--cyan);
  text-shadow: 0 0 10px var(--cyan);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.m-num {
  background: var(--bg);
  border: 1.5px solid var(--magenta);
  color: var(--magenta);
  text-shadow: 0 0 10px var(--magenta);
  box-shadow: 0 0 20px rgba(255, 0, 170, 0.4);
}

.gradient-num {
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  color: var(--bg);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.3);
}

.process-title {
  font-size: 13px;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.process-desc {
  color: var(--text-dim);
  font-size: 11px;
}

/* ============ TESTIMONIALS ============ */

.testimonials {
  padding: 80px 32px;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(0, 229, 255, 0.1);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial {
  background: rgba(0, 229, 255, 0.04);
  border: 1px solid var(--border-c);
  padding: 22px 20px;
  position: relative;
}

.m-test {
  background: rgba(255, 0, 170, 0.04);
  border-color: var(--border-m);
}

.t-bar {
  position: absolute;
  top: -1px;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--cyan);
}

.m-test .t-bar { background: var(--magenta); }

.stars {
  font-size: 14px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial p {
  font-family: var(--display);
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
  font-style: italic;
}

.t-author {
  font-size: 10px;
  letter-spacing: 2px;
}

/* ============ CTA FINAL ============ */

.cta-final {
  padding: 80px 32px;
  text-align: center;
  border-top: 1px solid rgba(0, 229, 255, 0.1);
}

.cta-final h2 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 400;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.cta-final p {
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ FOOTER ============ */

.footer {
  background: #000;
  border-top: 1px solid var(--border-c);
  padding: 48px 32px 20px;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto 32px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-logo span {
  font-size: 13px;
  letter-spacing: 4px;
  font-weight: 700;
}

.footer-brand p {
  color: var(--text-faint);
  font-size: 11px;
  line-height: 1.7;
}

.footer-title {
  font-size: 10px;
  letter-spacing: 3px;
  margin-bottom: 14px;
  font-weight: 700;
}

.footer-col a {
  display: block;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 12px;
  line-height: 2;
  transition: all 0.2s ease;
}

.footer-col a:hover {
  color: var(--cyan);
  padding-left: 6px;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 229, 255, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(0, 229, 255, 0.4);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============ RESPONSIVE ============ */

@media (max-width: 768px) {
  .nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cart { display: none; }

  .hero { padding: 60px 20px 70px; }
  .hero-features { gap: 16px; font-size: 9px; }

  .services, .runa-section, .tienda-section, .vertical-section, .process-section, .testimonials, .cta-final {
    padding: 60px 20px;
  }

  .runa-content, .vertical-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .runa-visual {
    order: -1;
  }

  .orbit-wrap {
    width: 200px;
    height: 200px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .process-num {
    width: 48px;
    height: 48px;
    font-size: 14px;
  }

  .mini-grid { max-width: 240px; margin: 0 auto; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 30px; }
  .hero-sub { font-size: 13px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .btn-primary, .btn-ghost { padding: 14px 24px; font-size: 10px; }
}
