/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  --bg:          #232323;
  --bg-deep:     #1a1a1a;
  --bg-surface:  #2d2d2d;
  --bg-raised:   #383838;
  --text:        #EFEFEF;
  --text-muted:  #888888;
  --text-dim:    #4a4a4a;
  --accent:      #00C896;
  --accent-dark: #00A87A;
  --accent-glow: rgba(0,200,150,0.3);
  --border:      rgba(255,255,255,0.08);
  --border-mid:  rgba(255,255,255,0.12);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.55, 0, 1, 0.45);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1200px;
  --gap: 96px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================================
   CURSOR SPOTLIGHT
   ============================================================ */
.cursor-spotlight {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  background: radial-gradient(
    560px circle at var(--cx, -999px) var(--cy, -999px),
    rgba(0, 200, 150, 0.045) 0%,
    transparent 65%
  );
  transition: background 80ms linear;
}

/* ============================================================
   SCROLL BAR
   ============================================================ */
.scroll-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #00F5BE);
  z-index: 2000;
  box-shadow: 0 0 10px var(--accent-glow);
  transition: width 80ms linear;
}

/* ============================================================
   ACCENT TEXT — shimmer verde
   ============================================================ */
.accent {
  background: linear-gradient(120deg, var(--accent) 0%, #00F5BE 45%, var(--accent) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  to { background-position: 220% center; }
}

.accent-tick { color: var(--accent); font-weight: 800; }

/* ============================================================
   SECTION TAG
   ============================================================ */
.section-tag {
  display: block;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

/* ============================================================
   FADE-UP
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   HERO TITLE LINE REVEAL
   ============================================================ */
.line-wrap { display: block; overflow: hidden; }
.line {
  display: block;
  transform: translateY(110%);
  opacity: 0;
  animation: lineReveal 1.6s var(--ease) forwards;
}
.hero__title .line-wrap:nth-child(1) .line { animation-delay: 2s;   }
.hero__title .line-wrap:nth-child(2) .line { animation-delay: 2.5s; }
.hero__title .line-wrap:nth-child(3) .line { animation-delay: 3s;   }
@keyframes lineReveal { to { transform: translateY(0); opacity: 1; } }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease),
              background 300ms ease, color 300ms ease, border-color 300ms ease;
}
/* Sweep shimmer */
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,0.14) 50%, transparent 65%);
  transform: translateX(-100%);
  transition: transform 500ms ease;
}
.btn:hover::after { transform: translateX(100%); }

.btn--lg  { padding: 16px 32px; font-size: 16px; }
.btn--xl  { padding: 20px 40px; font-size: 17px; }

.btn--accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,200,150,0.2);
}
.btn--accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(0,200,150,0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-mid);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.8); }
}
@keyframes bar-fill {
  from { width: 0%; }
  to   { width: 73%; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes ringExpand {
  0%   { transform: translate(-50%,-50%) scale(0.3); opacity: 0.6; }
  100% { transform: translate(-50%,-50%) scale(2);   opacity: 0; }
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(30,30,30,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: border-color 400ms ease, box-shadow 400ms ease;
}
.header.scrolled {
  border-bottom-color: rgba(0,200,150,0.1);
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
}

.header__inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 40px;
}

.header__logo {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.85);
  flex-shrink: 0;
  transition: color 300ms ease;
}
.header__logo:hover { color: var(--accent); }

.header__nav {
  display: flex;
  gap: 32px;
  margin: 0 auto;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  transition: color 300ms ease;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 100%;
  height: 1.5px;
  background: var(--accent);
  transition: right 350ms var(--ease);
  box-shadow: 0 0 8px var(--accent-glow);
}
.nav__link:hover { color: var(--text); }
.nav__link:hover::after { right: 0; }

.header__cta { flex-shrink: 0; }

.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.header__toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  transition: 300ms ease;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px 32px 28px;
  border-top: 1px solid var(--border);
  background: #0A0A0A;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav__link { font-size: 17px; padding: 10px 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* Video de fondo */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0.9;
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(25,25,25,0.55) 0%, rgba(25,25,25,0.1) 40%, rgba(25,25,25,0.88) 82%, rgba(25,25,25,1) 100%),
    linear-gradient(to right, rgba(25,25,25,0.6) 0%, transparent 60%);
}

/* Rejilla tech sutil */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 75%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  opacity: 0;
  animation: heroFadeUp 0.7s var(--ease) 2s forwards;
}
.hero__tag-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
  animation: pulse-dot 2s ease infinite;
}

.hero__title {
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2.5px;
  margin-bottom: 28px;
  color: var(--text);
}

.hero__sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.75;
  margin-bottom: 40px;
  opacity: 0;
  animation: heroFadeUp 0.7s var(--ease) 3.5s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  opacity: 0;
  animation: heroFadeUp 0.7s var(--ease) 4.2s forwards;
}

/* ── Lost Leads Counter ── */
.hero__right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 0;
  animation: heroFadeUp 0.9s var(--ease) 2.5s forwards;
}

.lost-block {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
/* Glow de fondo */
.lost-block::before {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,200,150,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.lost-block__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.lost-block__live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 1.5s ease infinite;
  box-shadow: 0 0 8px var(--accent-glow);
}
.lost-block__live-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--accent);
}

.lost-block__label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.lost-block__num {
  display: block;
  font-size: clamp(56px, 7vw, 88px);
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 16px;
}

.lost-block__bar {
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 12px;
}
.lost-block__bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), #00F5BE);
  border-radius: 2px;
  animation: bar-fill 2.5s var(--ease) forwards 1s;
}

.lost-block__note {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.3px;
}

/* Mini stats */
.hero__mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.mini-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 16px;
  background: var(--bg-surface);
  transition: background 300ms ease;
}
.mini-stat:hover { background: rgba(0,200,150,0.06); }
.mini-stat__val {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.mini-stat__label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  background: var(--bg-deep);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee__track:hover { animation-play-state: paused; }
.marquee__content {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
}
.marquee__sep { color: var(--accent); font-size: 10px; }

/* ============================================================
   SERVICES — lista hover-reveal
   ============================================================ */
.services {
  padding: var(--gap) 0;
  background: #f0f0f0;
  --text:        #1a1a1a;
  --text-muted:  #5a5a5a;
  --text-dim:    #aaaaaa;
  --border:      rgba(0,0,0,0.1);
  --border-mid:  rgba(0,0,0,0.15);
  --bg-surface:  #e4e4e4;
  --bg-raised:   #d8d8d8;
}

.services__head { margin-bottom: 48px; }
.services__title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.15;
  color: var(--text);
}

.services__list { border-top: 1px solid var(--border); }

.service-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  cursor: default;
  position: relative;
  transition: background 300ms ease;
}
.service-item::before {
  content: '';
  position: absolute;
  left: -32px; right: -32px; top: 0; bottom: 0;
  background: transparent;
  transition: background 300ms ease;
  z-index: 0;
  pointer-events: none;
}
.service-item:hover::before,
.service-item:focus-visible::before {
  background: rgba(255,255,255,0.02);
}
.service-item > * { position: relative; z-index: 1; }

.service-item__num {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--accent);
  padding-top: 6px;
}

.service-item__body { min-width: 0; }

.service-item__title {
  display: block;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  transition: color 300ms ease;
}
.service-item:hover .service-item__title,
.service-item:focus-visible .service-item__title { color: var(--accent); }

.service-item__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 450ms var(--ease), opacity 350ms ease, margin-top 350ms ease;
  margin-top: 0;
}
.service-item:hover .service-item__desc,
.service-item:focus-visible .service-item__desc,
.service-item.expanded .service-item__desc {
  max-height: 120px;
  opacity: 1;
  margin-top: 14px;
}

.service-item__cta {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0;
  padding-top: 6px;
  white-space: nowrap;
  transition: opacity 300ms ease, color 300ms ease;
}
.service-item:hover .service-item__cta,
.service-item:focus-visible .service-item__cta { opacity: 1; color: var(--accent); }
.service-item__cta:focus { outline: 2px solid var(--accent); border-radius: 4px; }

/* ============================================================
   PROCESO — grid horizontal de pasos
   ============================================================ */
.process {
  padding: var(--gap) 0;
  background: #e8e8e8;
  --text:        #1a1a1a;
  --text-muted:  #5a5a5a;
  --border:      rgba(0,0,0,0.1);
  --bg-surface:  #dcdcdc;
  --bg-raised:   #d0d0d0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.process::after {
  content: '';
  position: absolute;
  right: -200px; top: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,200,150,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.process__head { margin-bottom: 64px; }
.process__title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.15;
  color: var(--text);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

/* Línea conectora horizontal */
.steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(0,200,150,0.2) 60%, transparent);
  pointer-events: none;
}

.step {
  padding: 0 24px 0 0;
  position: relative;
}
.step__num {
  display: block;
  font-size: clamp(36px, 3.5vw, 48px);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 32px;
  position: relative;
}
/* Dot en la línea conectora */
.step__num::before {
  content: '';
  position: absolute;
  top: 18px;
  left: -2px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}
.step__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.step__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   MÉTRICAS — números puros
   ============================================================ */
.metrics {
  padding: var(--gap) 0;
  background: #f0f0f0;
  --text:        #1a1a1a;
  --text-muted:  #5a5a5a;
  --border:      rgba(0,0,0,0.1);
}

.metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 56px 40px;
  border-right: 1px solid var(--border);
  transition: background 300ms ease;
  position: relative;
  overflow: hidden;
}
.metric::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms var(--ease);
}
.metric:hover { background: rgba(0,200,150,0.04); }
.metric:hover::after { transform: scaleX(1); }
.metric:last-child { border-right: none; }

.metric__num {
  font-size: clamp(52px, 5.5vw, 80px);
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  letter-spacing: -3px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.metric__sym {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 0;
}
.metric__unit {
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0;
}
.metric__label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 160px;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  padding: var(--gap) 0;
  background: #e8e8e8;
  --text:        #1a1a1a;
  --text-muted:  #5a5a5a;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.cta-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.cta-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(0,200,150,0.1);
  animation: ringExpand 5.5s ease-out infinite;
}
.cta-ring--1 { width: 280px; height: 280px; animation-delay: 0s;    }
.cta-ring--2 { width: 280px; height: 280px; animation-delay: 1.8s;  }
.cta-ring--3 { width: 280px; height: 280px; animation-delay: 3.6s;  }

.cta-final .container { position: relative; z-index: 1; }

.cta-final__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.cta-final__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
  margin-top: 16px;
}

.cta-final__sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 48px;
  line-height: 1.65;
}

.cta-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 36px;
}

/* ── Contact form ─────────────────────────────────────────── */
.contact-form {
  width: 100%;
  max-width: 640px;
  margin: 0 auto 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form__field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: left;
}
.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 15px;
  color: #1a1a1a;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 10px;
  padding: 12px 16px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  resize: none;
  width: 100%;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-muted); opacity: .6; }
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,200,150,.12);
}
.contact-form__footer {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}

.cta-final__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  font-size: 14px;
  color: var(--text-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #dcdcdc;
  padding: 40px 0;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.footer__logo {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.4);
  transition: color 300ms ease;
}
.footer__logo:hover { color: var(--accent); }
.footer__nav { display: flex; gap: 28px; margin: 0 auto; flex-wrap: wrap; }
.footer__nav .nav__link { font-size: 13px; color: rgba(0,0,0,0.35); }
.footer__nav .nav__link:hover { color: rgba(0,0,0,0.7); }
.footer__nav .nav__link::after { background: rgba(0,0,0,0.25); }
.footer__copy { font-size: 13px; color: rgba(0,0,0,0.3); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .steps::before { display: none; }
  .step__num::before { display: none; }
  .metrics__grid { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(2) { border-right: none; }
  .metric:nth-child(3) { border-top: 1px solid var(--border); }
  .metric:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
}

@media (max-width: 768px) {
  :root { --gap: 72px; }

  .header__nav, .header__cta { display: none; }
  .header__toggle { display: flex; }
  .header__inner { gap: 0; }

  .hero__inner { grid-template-columns: 1fr; gap: 48px; padding: 60px 0; }
  .hero__title { letter-spacing: -1.5px; }

  .service-item { grid-template-columns: 52px 1fr; }
  .service-item__cta { display: none; }
  .service-item__desc { max-height: none !important; opacity: 1 !important; margin-top: 12px !important; }

  .steps { grid-template-columns: 1fr; gap: 40px; }

  .metrics__grid { grid-template-columns: 1fr 1fr; border-radius: 12px; }
  .metric:nth-child(2) { border-right: none; }
  .metric { padding: 36px 28px; }

  .hero__mini-stats { grid-template-columns: 1fr; }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__nav { margin: 0; justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero__actions { flex-direction: column; }
  .cta-final__actions { flex-direction: column; align-items: stretch; }
  .btn--xl { text-align: center; }
  .metrics__grid { grid-template-columns: 1fr; }
  .metric { border-right: none; border-top: 1px solid var(--border); }
  .metric:first-child { border-top: none; }
  .steps { grid-template-columns: 1fr; }
}
