/* =========================================
   GABNETIC — UI Premium v2
   ========================================= */

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

:root {
  --bg:         #06061a;
  --bg2:        #090920;
  --bg3:        #0d0d28;
  --bg4:        #111132;
  --border:     rgba(139,92,246,0.14);
  --border-h:   rgba(139,92,246,0.55);
  --accent:     #8b5cf6;
  --accent2:    #06e6ff;
  --accent3:    #c084fc;
  --green:      #10b981;
  --orange:     #f97316;
  --amber:      #fbbf24;
  --wa:         #25d366;
  --text:       #f0f2ff;
  --text-muted: #8892b0;
  --text-soft:  #b8c2e0;
  --radius:     16px;
  --radius-sm:  10px;
  --font:       'Inter', system-ui, sans-serif;
  --ease:       cubic-bezier(.16,1,.3,1);
  --shadow-sm:  0 2px 12px rgba(0,0,0,.5);
  --shadow-md:  0 8px 40px rgba(0,0,0,.55);
  --shadow-lg:  0 24px 80px rgba(139,92,246,.2);
  --grd:        linear-gradient(135deg, #c084fc 0%, #8b5cf6 50%, #06e6ff 100%);
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text);
  font-family: var(--font); font-size: 16px;
  line-height: 1.65; overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── UTILITIES ─────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 110px 0; }
.section--dark { background: var(--bg2); }
.section--gradient-purple {
  background: linear-gradient(160deg, rgba(139,92,246,.12) 0%, var(--bg) 50%, rgba(6,230,255,.06) 100%);
}
.section--gradient-orange {
  background: linear-gradient(160deg, rgba(249,115,22,.06) 0%, var(--bg2) 60%, rgba(139,92,246,.08) 100%);
}
.section--gradient-green {
  background: linear-gradient(160deg, rgba(16,185,129,.07) 0%, var(--bg2) 60%);
}

.gradient-text {
  background: var(--grd);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header { text-align: center; margin-bottom: 72px; }
.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 800; margin-bottom: 16px; letter-spacing: -.03em;
}
.section-header p { color: var(--text-muted); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }

.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; margin-bottom: 16px;
  background: rgba(192,132,252,.12); color: var(--accent3);
  border: 1px solid rgba(192,132,252,.3); border-radius: 100px;
  font-size: .73rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase;
}

/* ── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: 11px; font-weight: 600; font-size: .95rem;
  text-decoration: none; transition: all .22s var(--ease); cursor: pointer; border: none;
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #c084fc 0%, #8b5cf6 50%, #06e6ff 120%);
  background-size: 200% 200%; background-position: 0% 50%;
  color: #fff; box-shadow: 0 4px 28px rgba(139,92,246,.55);
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  opacity: 0; transition: opacity .22s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(139,92,246,.7);
  background-position: 100% 50%;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(255,255,255,.04);
  color: var(--text-soft);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
  color: var(--text);
}
.btn--lg  { padding: 16px 38px; font-size: 1rem; border-radius: 13px; }
.btn--full { width: 100%; border-radius: var(--radius-sm); }

/* ── COOKIE OVERLAY (gate — blocks page until consent) ─────── */
.cookie-overlay {
  display: none; position: fixed; inset: 0; z-index: 998;
  background: rgba(6,6,26,.88); backdrop-filter: blur(7px);
}
.cookie-overlay.visible { display: block; }
body.cookie-locked { overflow: hidden; }

/* ── COOKIE BANNER ─────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 20px; left: 20px; right: 20px; z-index: 999;
  max-width: 600px; margin: 0 auto;
  background: rgba(16,16,30,.95); border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(20px) saturate(180%);
  border-radius: var(--radius); padding: 20px 24px;
  display: none; align-items: center; gap: 16px; flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}
.cookie-banner.visible {
  display: flex;
  animation: slideUp .4s var(--ease) forwards;
}
.cookie-banner p { font-size: .84rem; color: var(--text-soft); flex: 1; min-width: 180px; }
.cookie-banner a { color: var(--accent3); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.btn-cookie-accept {
  padding: 9px 20px; border-radius: 9px; font-size: .84rem; font-weight: 600;
  background: var(--grd); color: #fff; border: none; cursor: pointer;
  transition: opacity .2s;
}
.btn-cookie-accept:hover { opacity: .88; }
.btn-cookie-deny {
  padding: 9px 20px; border-radius: 9px; font-size: .84rem; font-weight: 500;
  background: rgba(255,255,255,.06); color: var(--text-muted);
  border: 1px solid var(--border); cursor: pointer; transition: background .2s;
}
.btn-cookie-deny:hover { background: rgba(255,255,255,.1); }
.cookie-banner.hidden { display: none !important; }

@keyframes slideUp {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:none; }
}

/* ── STICKY CTA ─────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  padding: 12px 16px 16px;
  background: linear-gradient(to top, rgba(7,7,14,.98) 60%, transparent);
  border-top: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
}

/* ── NAVBAR ─────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 18px 0;
  transition: all .3s var(--ease);
}
.navbar.scrolled {
  background: rgba(7,7,14,.88); backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border); padding: 13px 0;
  box-shadow: 0 4px 40px rgba(0,0,0,.3);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo {
  font-size: 1.5rem; font-weight: 800; text-decoration: none;
  color: var(--text); letter-spacing: -.04em;
}
.logo span { color: var(--accent3); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text-muted);
  font-size: .88rem; font-weight: 500; transition: color .2s;
  position: relative;
}
.nav-links a:not(.btn-nav):hover { color: var(--text); }
.nav-links a:not(.btn-nav)::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--accent3); transform: scaleX(0);
  transition: transform .25s var(--ease);
}
.nav-links a:not(.btn-nav):hover::after { transform: scaleX(1); }
.btn-nav {
  padding: 10px 22px; background: var(--grd);
  color: #fff !important; border-radius: 9px; font-size: .87rem !important;
  box-shadow: 0 4px 18px rgba(124,58,237,.35);
}
.btn-nav:hover { opacity: .9; box-shadow: 0 6px 24px rgba(124,58,237,.5); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all .3s var(--ease);
}

/* ── HERO ─────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; padding-top: 80px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(139,92,246,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,92,246,.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 80%);
}
.glow { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; }
.glow-1 { width: 900px; height: 900px; background: var(--accent); top: -320px; right: -200px; opacity: .45; }
.glow-2 { width: 700px; height: 700px; background: var(--accent2); bottom: -200px; left: -220px; opacity: .28; }
.glow-3 { width: 400px; height: 400px; background: #c084fc; top: 30%; right: 6%; opacity: .22; }

/* Hero 2 columnas */
.hero-layout {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 480px;
  gap: 60px; align-items: center;
  padding: 100px 0 80px; width: 100%;
}
.hero-content { display: contents; }

/* Columna izquierda: todos los elementos hijos directos del layout */
.hero-layout > .badge,
.hero-layout > h1,
.hero-layout > .hero-sub,
.hero-layout > .urgency-bar,
.hero-layout > .hero-actions,
.hero-layout > .trust-badges,
.hero-layout > .hero-live,
.hero-layout > .hero-stats { grid-column: 1; }

/* Mockup columna derecha */
.hero-mockup {
  grid-column: 2; grid-row: 1 / span 8;
  position: relative; display: flex;
  flex-direction: column; align-items: center; gap: 16px;
}

/* Dashboard flotante */
.mockup-dashboard {
  width: 100%; background: rgba(13,13,40,.9);
  border: 1px solid rgba(139,92,246,.3); border-radius: 16px;
  padding: 20px 22px; backdrop-filter: blur(20px);
  box-shadow: 0 8px 40px rgba(139,92,246,.2);
}
.dash-row { display: flex; gap: 12px; margin-bottom: 16px; }
.dash-kpi {
  flex: 1; background: rgba(139,92,246,.1); border: 1px solid rgba(139,92,246,.2);
  border-radius: 10px; padding: 12px 14px;
}
.dash-kpi--green { background: rgba(16,185,129,.1); border-color: rgba(16,185,129,.2); }
.dash-num {
  display: block; font-size: 1.4rem; font-weight: 900;
  background: var(--grd); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.dash-kpi--green .dash-num { background: linear-gradient(135deg,#34d399,#10b981);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.dash-label { font-size: .7rem; color: var(--text-muted); margin-top: 3px; display: block; }
.dash-bar-wrap { display: flex; flex-direction: column; gap: 7px; }
.dash-bar {
  height: 6px; background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 100px; opacity: .7;
}

/* Phone mockup */
.mockup-phone {
  width: 100%; background: #111827;
  border: 1px solid rgba(255,255,255,.08); border-radius: 20px;
  overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.6);
}
.phone-header {
  background: #075e54; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
}
.phone-avatar {
  width: 38px; height: 38px; background: #128c7e;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.phone-name { font-size: .88rem; font-weight: 700; color: #fff; }
.phone-status { font-size: .72rem; color: rgba(255,255,255,.7); margin-top: 1px; }

.phone-chat { padding: 16px; display: flex; flex-direction: column; gap: 10px; background: #0d1117; }
.chat-bubble {
  max-width: 80%; padding: 9px 14px; border-radius: 12px;
  font-size: .8rem; line-height: 1.5; color: #e8e8e8;
}
.chat-bubble--in {
  background: #1f2937; border-bottom-left-radius: 3px; align-self: flex-start;
}
.chat-bubble--out {
  background: linear-gradient(135deg, #128c7e, #075e54);
  border-bottom-right-radius: 3px; align-self: flex-end;
}
.chat-typing {
  display: flex; gap: 4px; align-items: center; padding: 8px 12px;
  background: #1f2937; border-radius: 12px; width: fit-content;
}
.chat-typing span {
  width: 6px; height: 6px; background: #6b7280; border-radius: 50%;
  animation: typingDot 1.2s ease infinite;
}
.chat-typing span:nth-child(2) { animation-delay: .2s; }
.chat-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typingDot { 0%,60%,100%{opacity:.3;transform:scale(1);} 30%{opacity:1;transform:scale(1.3);} }

.phone-footer {
  background: #111827; padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.phone-input {
  flex: 1; background: #1f2937; border-radius: 20px;
  padding: 8px 14px; font-size: .78rem; color: #4b5563;
}
.phone-send {
  width: 34px; height: 34px; background: #128c7e; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: #fff; flex-shrink: 0;
}

/* Badge flotante */
.mockup-badge-float {
  position: absolute; bottom: -14px; right: -10px;
  background: linear-gradient(135deg, #f97316, #fbbf24);
  padding: 8px 16px; border-radius: 100px;
  font-size: .78rem; font-weight: 700; color: #fff;
  box-shadow: 0 8px 24px rgba(249,115,22,.45);
  display: flex; align-items: center; gap: 6px;
  animation: floatBadge 3s ease-in-out infinite;
}
@keyframes floatBadge { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }

/* Responsive hero */
@media (max-width: 1100px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-mockup { grid-column: 1; grid-row: auto; max-width: 480px; margin: 0 auto; }
  .hero-layout > .badge,
  .hero-layout > h1,
  .hero-layout > .hero-sub,
  .hero-layout > .urgency-bar,
  .hero-layout > .hero-actions,
  .hero-layout > .trust-badges,
  .hero-layout > .hero-live,
  .hero-layout > .hero-stats { grid-column: 1; }
}

.urgency-bar {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px; margin-bottom: 28px;
  background: rgba(245,158,11,.08); border: 1px solid rgba(245,158,11,.25);
  border-radius: 100px; font-size: .8rem; color: #fbbf24;
}
.urgency-bar strong { font-weight: 700; }
.urgency-bar a { color: #fbbf24; font-weight: 600; text-decoration: underline; }
.urgency-dot {
  width: 7px; height: 7px; background: #f59e0b; border-radius: 50%;
  animation: blink 1.4s ease infinite; flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.2;} }

.badge {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 28px;
  padding: 6px 16px; background: rgba(124,58,237,.08);
  border: 1px solid rgba(124,58,237,.22); border-radius: 100px;
  color: var(--accent3); font-size: .8rem; font-weight: 600; letter-spacing: .04em;
}

.hero-content h1 {
  font-size: clamp(3rem, 6.5vw, 5.2rem); font-weight: 900;
  line-height: 1.04; letter-spacing: -.045em; margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.18rem; color: var(--text-muted);
  max-width: 580px; margin-bottom: 38px; line-height: 1.7;
}
.hero-sub strong { color: var(--text); font-weight: 600; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }

.trust-badges { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .79rem; color: var(--text-muted); font-weight: 500;
}
.trust-badge svg { color: var(--green); flex-shrink: 0; }

.hero-stats { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-size: 2.4rem; font-weight: 900; line-height: 1; letter-spacing: -.04em;
  background: linear-gradient(135deg, #f0f2ff 0%, #c084fc 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.stat-plus { font-size: 1.6rem; font-weight: 800; color: var(--accent3); vertical-align: top; }
.stat-label { font-size: .73rem; color: var(--text-muted); font-weight: 500; margin-top: 5px; max-width: 110px; line-height: 1.3; }
.stat-div { width: 1px; height: 44px; background: var(--border); }

.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--text-muted); font-size: .75rem; animation: bounce 2.2s ease infinite;
}
@keyframes bounce {
  0%,100%{transform:translateX(-50%) translateY(0);}
  50%{transform:translateX(-50%) translateY(7px);}
}

/* ── HERO LIVE BAR ─────────────────────────────── */
.hero-live {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; margin-bottom: 24px;
  background: rgba(16,185,129,.06); border: 1px solid rgba(16,185,129,.2);
  border-radius: 100px; font-size: .82rem; color: var(--text-soft);
}
.hero-live .live-dot {
  width: 8px; height: 8px; background: var(--green); border-radius: 50%;
  flex-shrink: 0; animation: blink 1.5s ease infinite;
  box-shadow: 0 0 8px rgba(16,185,129,.7);
}
.hero-live strong { color: var(--green); }

/* ── BEFORE / AFTER ─────────────────────────────── */
.section--bva { background: var(--bg2); }
.bva-grid {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 0;
  align-items: stretch; margin-bottom: 48px;
}
.bva-col {
  border-radius: var(--radius); padding: 40px 36px;
}
.bva-col--before {
  background: rgba(239,68,68,.04); border: 1px solid rgba(239,68,68,.15);
}
.bva-col--after {
  background: rgba(16,185,129,.05); border: 1px solid rgba(16,185,129,.18);
}
.bva-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
}
.bva-icon { font-size: 2rem; line-height: 1; }
.bva-header h3 { font-size: 1.15rem; font-weight: 800; }
.bva-col--before .bva-header h3 { color: #f87171; }
.bva-col--after  .bva-header h3 { color: #34d399; }

.bva-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.bva-list li {
  font-size: .92rem; line-height: 1.5; padding-left: 26px;
  position: relative; color: var(--text-soft);
}
.bva-col--before .bva-list li::before {
  content: '✗'; position: absolute; left: 0;
  color: #f87171; font-weight: 800; font-size: .95rem;
}
.bva-col--after .bva-list li::before {
  content: '✓'; position: absolute; left: 0;
  color: #34d399; font-weight: 800; font-size: .95rem;
}

.bva-center {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 0 28px; gap: 16px;
}
.bva-logo-pill {
  background: var(--grd); padding: 10px 20px; border-radius: 100px;
  font-size: 1rem; font-weight: 800; color: #fff; letter-spacing: -.03em;
  white-space: nowrap; box-shadow: 0 8px 32px rgba(139,92,246,.5);
}
.bva-logo-pill span { opacity: .85; }
.bva-arrow-down { font-size: 1.8rem; color: var(--accent3); opacity: .5; }
.bva-cta { text-align: center; }

/* ── WHY US ─────────────────────────────── */
.section--why { background: var(--bg); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; align-items: start;
}
.why-col {
  border-radius: var(--radius); padding: 36px 30px;
  display: flex; flex-direction: column; position: relative;
}
.why-col--other {
  background: var(--bg2); border: 1px solid var(--border);
}
.why-col--gabnetic {
  background: linear-gradient(160deg, rgba(139,92,246,.15) 0%, var(--bg2) 70%);
  border: 2px solid rgba(139,92,246,.5);
  box-shadow: 0 0 60px rgba(139,92,246,.15);
}
.why-best-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grd); padding: 6px 20px; border-radius: 100px;
  font-size: .75rem; font-weight: 800; color: #fff; white-space: nowrap;
  box-shadow: 0 4px 20px rgba(139,92,246,.5); letter-spacing: .04em;
}
.why-col-header {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 10px; margin-bottom: 28px; padding-top: 10px;
}
.why-col-emoji { font-size: 2.2rem; line-height: 1; }
.why-col-header h3 { font-size: 1rem; font-weight: 700; line-height: 1.3; }
.why-col--gabnetic .why-col-header h3 { color: var(--accent3); font-size: 1.15rem; }

.why-list { list-style: none; display: flex; flex-direction: column; gap: 13px; flex: 1; }
.why-list li {
  font-size: .87rem; line-height: 1.5; padding-left: 24px;
  position: relative; color: var(--text-soft);
}
.why-yes::before, .why-no::before {
  position: absolute; left: 0; font-weight: 800; font-size: .9rem;
}
.why-no::before  { content: '✗'; color: #f87171; }
.why-yes::before { content: '✓'; color: #34d399; }
.why-yes { color: var(--text-soft) !important; }

/* ── RESPONSIVE nuevas secciones ─────────────────────────────── */
@media (max-width: 900px) {
  .bva-grid { grid-template-columns: 1fr; }
  .bva-center { flex-direction: row; padding: 16px 0; }
  .bva-arrow-down { transform: rotate(-90deg); }
  .why-grid { grid-template-columns: 1fr; }
  .why-col--gabnetic { margin-top: 24px; }
}

/* ── PROBLEM SECTION ─────────────────────────────── */
.section--problem { background: var(--bg2); }
.problems-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 52px;
}
.problem-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 22px 24px; background: var(--bg3);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: all .25s var(--ease);
}
.problem-item:hover { border-color: var(--border-h); transform: translateY(-3px); }
.problem-item:nth-child(1) { border-top: 2px solid rgba(249,115,22,.4); }
.problem-item:nth-child(2) { border-top: 2px solid rgba(239,68,68,.4); }
.problem-item:nth-child(3) { border-top: 2px solid rgba(168,85,247,.4); }
.problem-item:nth-child(4) { border-top: 2px solid rgba(249,115,22,.4); }
.problem-item:nth-child(5) { border-top: 2px solid rgba(6,230,255,.4); }
.problem-item:nth-child(6) { border-top: 2px solid rgba(16,185,129,.4); }
.problem-icon { font-size: 1.7rem; flex-shrink: 0; margin-top: 1px; }
.problem-item p { font-size: .88rem; color: var(--text-soft); line-height: 1.55; }
.problem-cta { text-align: center; }
.problem-cta p { color: var(--text-muted); margin-bottom: 20px; font-size: 1.05rem; }
.problem-cta strong { color: var(--text); }

/* ── SERVICES ─────────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 22px;
}
.services-grid .card:nth-child(4) { grid-column: span 1; }
.services-grid .card:nth-child(5) { grid-column: span 2; }

.card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 32px;
  transition: all .28s var(--ease); position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.card::before {
  content: ''; position: absolute; inset: -1px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: calc(var(--radius) + 1px); z-index: -1; opacity: 0;
  transition: opacity .3s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { opacity: .5; }
.card--featured {
  border-color: rgba(124,58,237,.3);
  background: linear-gradient(160deg, rgba(124,58,237,.1) 0%, var(--bg2) 60%);
}
.card--ai {
  background: linear-gradient(160deg, rgba(168,85,247,.07) 0%, var(--bg2) 60%);
}

.card-label {
  position: absolute; top: 20px; right: 20px;
  padding: 4px 12px; background: var(--grd);
  border-radius: 100px; font-size: .68rem; font-weight: 700;
  letter-spacing: .06em; color: #fff;
}
.ai-badge {
  position: absolute; top: 20px; right: 20px;
  padding: 4px 12px; background: linear-gradient(135deg, #7c3aed, #06b6d4);
  border-radius: 100px; font-size: .68rem; font-weight: 700; letter-spacing: .08em;
}
.card-icon {
  width: 52px; height: 52px; background: rgba(124,58,237,.12);
  border: 1px solid rgba(124,58,237,.2); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; color: var(--accent3); flex-shrink: 0;
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 12px; line-height: 1.3; }
.card p  { color: var(--text-muted); font-size: .87rem; line-height: 1.68; margin-bottom: 18px; flex: 1; }
.card-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; }
.card-list li {
  font-size: .83rem; color: var(--text-soft); padding-left: 20px;
  position: relative; line-height: 1.45;
}
.card-list li::before {
  content: ''; position: absolute; left: 0; top: 6px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 6px rgba(16,185,129,.5);
}
/* ── IDEAL SI ─────────────────────────────── */
.card-ideal {
  background: rgba(6,230,255,.05); border: 1px solid rgba(6,230,255,.15);
  border-radius: var(--radius-sm); padding: 14px 16px; margin-bottom: 18px;
}
.ideal-label {
  display: block; font-size: .71rem; font-weight: 800; color: var(--accent2);
  letter-spacing: .07em; text-transform: uppercase; margin-bottom: 8px;
}
.card-ideal ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.card-ideal li {
  font-size: .82rem; color: var(--text-soft); padding-left: 18px;
  position: relative; line-height: 1.4;
}
.card-ideal li::before {
  content: '✓'; position: absolute; left: 0; color: var(--accent2);
  font-weight: 700; font-size: .78rem;
}

.card-result {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; margin-bottom: 16px;
  background: rgba(16,185,129,.08); border: 1px solid rgba(16,185,129,.2);
  border-radius: 9px; font-size: .79rem; color: #6ee7b7; font-weight: 600; line-height: 1.3;
}
.card-result::before { content: '↑'; font-size: .9rem; }
.card-cta {
  color: var(--accent3); font-size: .88rem; font-weight: 600;
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  margin-top: auto; transition: gap .2s, color .2s;
}
.card-cta:hover { gap: 10px; color: #fff; }

/* ── RESULTS ─────────────────────────────── */
.section--results { border-top: 1px solid var(--border); }
.results-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.result-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 28px;
  transition: all .28s var(--ease); position: relative; overflow: hidden;
}
.result-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--grd); transform: scaleX(0); transition: transform .3s var(--ease);
}
.result-card:hover { border-color: var(--border-h); transform: translateY(-4px); }
.result-card:hover::after { transform: scaleX(1); }
.result-sector {
  font-size: .72rem; font-weight: 700; color: var(--accent3);
  letter-spacing: .07em; text-transform: uppercase; margin-bottom: 16px;
}
.result-num {
  display: block; font-size: 3rem; font-weight: 900; letter-spacing: -.04em;
  background: var(--grd);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 6px;
}
.result-desc { font-size: .8rem; color: var(--text-soft); line-height: 1.4; margin-bottom: 14px; }
.result-detail { font-size: .82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.result-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.result-tags span {
  padding: 3px 10px; background: rgba(124,58,237,.08);
  border: 1px solid rgba(124,58,237,.18); border-radius: 100px;
  font-size: .71rem; color: var(--accent3); font-weight: 500;
}

/* ── PROCESS ─────────────────────────────── */
.process-steps { display: flex; align-items: flex-start; gap: 0; }
.step {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 20px; position: relative;
}
.step-arrow {
  font-size: 1.4rem; color: var(--accent3); margin-top: 28px;
  flex-shrink: 0; opacity: .4;
}
.step-num {
  font-size: 4rem; font-weight: 900; line-height: 1; letter-spacing: -.05em;
  background: linear-gradient(135deg, rgba(124,58,237,.5), rgba(6,182,212,.2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 14px;
}
.step-icon {
  width: 58px; height: 58px; background: rgba(124,58,237,.1);
  border: 1px solid rgba(124,58,237,.22); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent3); margin-bottom: 20px;
}
.step-icon svg { width: 26px; height: 26px; }
.step-content h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.step-content p  { font-size: .86rem; color: var(--text-muted); line-height: 1.65; }
.step-content strong { color: var(--green); font-weight: 600; }

/* ── TESTIMONIALS ─────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 32px;
  transition: all .28s var(--ease); position: relative;
  display: flex; flex-direction: column;
}
.testimonial::before {
  content: '\201C'; position: absolute; top: 24px; right: 28px;
  font-size: 4.5rem; line-height: 1; color: rgba(124,58,237,.15);
  font-family: Georgia, serif; pointer-events: none;
}
.testimonial:hover { border-color: var(--border-h); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial--featured {
  border-color: rgba(124,58,237,.3);
  background: linear-gradient(160deg, rgba(124,58,237,.08) 0%, var(--bg3) 60%);
}
.testimonial-stars { color: #fbbf24; font-size: .95rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial p {
  font-size: .91rem; color: var(--text-soft);
  line-height: 1.75; margin-bottom: 28px; flex: 1;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: var(--grd);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .83rem; color: #fff;
  box-shadow: 0 4px 14px rgba(124,58,237,.4);
}
.testimonial-author strong { display: block; font-size: .9rem; font-weight: 700; margin-bottom: 3px; }
.testimonial-author span  { font-size: .77rem; color: var(--text-muted); }

/* ── TOOLS GRID ─────────────────────────────── */
.tools-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.tool-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 10px; padding: 28px 20px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); transition: all .25s var(--ease);
}
.tool-card:hover {
  border-color: var(--border-h); transform: translateY(-4px);
  background: rgba(124,58,237,.06);
  box-shadow: var(--shadow-md);
}
.tool-icon { font-size: 2rem; line-height: 1; }
.tool-card strong { font-size: .9rem; font-weight: 700; color: var(--text); }
.tool-card span   { font-size: .79rem; color: var(--text-muted); line-height: 1.45; }

/* ── FAQ (completamente rediseñado) ─────────────────────────────── */
.faq-list { max-width: 840px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--border);
  transition: background .25s;
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  width: 100%;
  display: grid;
  grid-template-columns: 40px 1fr 36px;
  align-items: center;
  gap: 16px;
  padding: 26px 8px;
  background: transparent; border: none;
  font-family: var(--font); font-size: .97rem;
  font-weight: 600; color: var(--text-soft);
  text-align: left; cursor: pointer;
  transition: color .22s;
}
.faq-question:hover { color: var(--text); }
.faq-item.open .faq-question { color: var(--text); }

/* Número de la pregunta */
.faq-num {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: rgba(124,58,237,.1); border: 1px solid rgba(124,58,237,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 800; color: var(--accent3);
  letter-spacing: .03em; transition: all .25s var(--ease);
}
.faq-item.open .faq-num {
  background: var(--accent); border-color: var(--accent);
  color: #fff; box-shadow: 0 4px 16px rgba(124,58,237,.45);
}

/* Texto pregunta */
.faq-text { flex: 1; line-height: 1.4; }

/* Ícono +/× */
.faq-toggle {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: all .25s var(--ease);
}
.faq-toggle svg {
  width: 16px; height: 16px;
  transition: transform .35s var(--ease);
}
.faq-item.open .faq-toggle {
  background: rgba(124,58,237,.12); border-color: rgba(124,58,237,.3);
  color: var(--accent3);
}
.faq-item.open .faq-toggle svg { transform: rotate(45deg); }

/* Respuesta */
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-answer-inner {
  padding: 0 8px 28px calc(40px + 16px + 8px);
}
.faq-answer-inner p {
  font-size: .91rem; color: var(--text-muted); line-height: 1.75;
}
.faq-answer-inner p strong { color: var(--text); }
.faq-answer-inner p a { color: var(--accent3); }

/* ── CTA FINAL ─────────────────────────────── */
.section--cta-final {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(160deg,
    rgba(124,58,237,.13) 0%, rgba(7,7,14,0) 40%,
    rgba(7,7,14,0) 60%, rgba(6,182,212,.08) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.cta-inner { position: relative; z-index: 1; }
.glow-cta {
  position: absolute; width: 800px; height: 800px;
  background: radial-gradient(circle, #8b5cf6 0%, #06e6ff 60%); border-radius: 50%;
  filter: blur(130px); opacity: .22;
  top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none;
}
.cta-urgency {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 20px; margin-bottom: 28px;
  background: rgba(245,158,11,.08); border: 1px solid rgba(245,158,11,.25);
  border-radius: 100px; font-size: .8rem; color: #fbbf24; font-weight: 600;
}
.cta-urgency::before { content: '🔥'; }
.cta-inner h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.3rem); font-weight: 900;
  margin-bottom: 18px; letter-spacing: -.04em;
}
.cta-inner > p  { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 40px; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.cta-trust {
  display: flex; gap: 20px; justify-content: center;
  align-items: center; flex-wrap: wrap;
  font-size: .8rem; color: var(--text-muted);
}
.cta-trust span { display: flex; align-items: center; gap: 5px; }
.cta-trust span::before { content: '✓'; color: var(--green); font-weight: 700; }

/* ── PRICING ─────────────────────────────── */
.section--pricing {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(139,92,246,.05) 50%, var(--bg) 100%);
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 40px;
}
.pricing-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 26px;
  display: flex; flex-direction: column; gap: 0;
  transition: all .28s var(--ease); position: relative;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border-h); }
.pricing-card--featured {
  border-color: rgba(139,92,246,.5);
  background: linear-gradient(160deg, rgba(139,92,246,.12) 0%, var(--bg2) 70%);
  box-shadow: 0 0 50px rgba(139,92,246,.15);
}
.pricing-best {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grd); padding: 6px 18px; border-radius: 100px;
  font-size: .72rem; font-weight: 800; color: #fff; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(139,92,246,.45);
}
.pricing-icon { font-size: 2rem; margin-bottom: 14px; }
.pricing-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 12px; }
.pricing-desde { font-size: .72rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; }
.pricing-price {
  font-size: 2.4rem; font-weight: 900; letter-spacing: -.04em;
  background: var(--grd); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 14px; line-height: 1;
}
.pricing-price span { font-size: 1rem; font-weight: 600; opacity: .7; }
.pricing-desc { font-size: .83rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.pricing-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; flex: 1; }
.pricing-list li {
  font-size: .83rem; color: var(--text-soft); padding-left: 20px; position: relative; line-height: 1.4;
}
.pricing-list li::before {
  content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700;
}
.pricing-trust {
  display: flex; flex-wrap: wrap; gap: 12px 32px; justify-content: center;
  padding: 24px 0 0;
}
.ptrust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .83rem; color: var(--text-muted);
}
.ptrust-item svg { color: var(--green); flex-shrink: 0; }

@media (max-width: 1100px) { .pricing-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px)  { .pricing-grid { grid-template-columns: 1fr; } }

/* ── SOCIAL PROOF TOAST ─────────────────────────────── */
.social-proof-toast {
  position: fixed; bottom: 100px; left: 24px; z-index: 200;
  display: flex; align-items: center; gap: 14px;
  background: rgba(13,13,40,.97); border: 1px solid rgba(139,92,246,.35);
  border-radius: 16px; padding: 14px 18px;
  box-shadow: 0 12px 48px rgba(0,0,0,.5), 0 0 0 1px rgba(139,92,246,.1);
  backdrop-filter: blur(20px);
  max-width: 320px; opacity: 0; transform: translateX(-120%);
  transition: all .45s var(--ease); pointer-events: none;
}
.social-proof-toast.show { opacity: 1; transform: translateX(0); pointer-events: all; }
.toast-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--grd); display: flex; align-items: center;
  justify-content: center; font-weight: 800; font-size: .8rem; color: #fff;
}
.toast-text { flex: 1; }
.toast-text strong { display: block; font-size: .88rem; font-weight: 700; margin-bottom: 2px; }
.toast-text span   { display: block; font-size: .78rem; color: var(--text-muted); margin-bottom: 3px; }
.toast-text em     { font-style: normal; font-size: .72rem; color: var(--accent3); }
.toast-close {
  background: none; border: none; color: var(--text-muted);
  font-size: .8rem; cursor: pointer; padding: 4px; flex-shrink: 0;
  transition: color .2s;
}
.toast-close:hover { color: var(--text); }

@media (max-width: 768px) {
  .social-proof-toast { left: 12px; right: 12px; max-width: none; bottom: 90px; }
}

/* ── CONTACT STEPS ─────────────────────────────── */
.contact-steps {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap; margin-bottom: 56px;
}
.contact-step {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 22px;
}
.contact-step-num {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: var(--grd); display: flex; align-items: center; justify-content: center;
  font-size: .88rem; font-weight: 900; color: #fff;
  box-shadow: 0 4px 16px rgba(139,92,246,.4);
}
.contact-step strong { display: block; font-size: .9rem; font-weight: 700; margin-bottom: 2px; }
.contact-step span   { font-size: .78rem; color: var(--text-muted); }
.contact-step-arrow  { font-size: 1.2rem; color: var(--accent3); opacity: .5; flex-shrink: 0; }

@media (max-width: 768px) {
  .contact-steps { flex-direction: column; }
  .contact-step-arrow { transform: rotate(90deg); }
}

/* ── CONTACT ─────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 360px; gap: 64px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--text-muted); letter-spacing: .02em; }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: var(--radius-sm);
  color: var(--text); font-family: var(--font); font-size: .9rem;
  padding: 13px 16px; transition: all .22s var(--ease); outline: none; width: 100%; resize: vertical;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(148,163,184,.3); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: rgba(124,58,237,.5); box-shadow: 0 0 0 3px rgba(124,58,237,.1);
  background: rgba(124,58,237,.04);
}
.form-group select { appearance: none; cursor: pointer; -webkit-appearance: none; }
.form-group select option { background: var(--bg3); color: var(--text); }
.form-disclaimer { font-size: .75rem; color: var(--text-muted); text-align: center; }

.contact-info-header { margin-bottom: 20px; }
.contact-info-header h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.contact-info-header p  { font-size: .87rem; color: var(--text-muted); }

.info-card {
  display: flex; align-items: center; gap: 16px; padding: 18px 20px;
  background: rgba(255,255,255,.03); border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: 12px;
  text-decoration: none; color: var(--text); transition: all .22s var(--ease);
}
.info-card:hover { border-color: var(--border-h); background: rgba(124,58,237,.05); }
.info-card--wa {
  background: rgba(37,211,102,.05); border-color: rgba(37,211,102,.2);
}
.info-card--wa:hover { border-color: rgba(37,211,102,.45); background: rgba(37,211,102,.08); }
.info-icon {
  width: 42px; height: 42px; flex-shrink: 0; background: rgba(124,58,237,.1);
  border-radius: 11px; display: flex; align-items: center; justify-content: center;
  color: var(--accent3);
}
.info-icon svg { width: 20px; height: 20px; }
.info-icon--wa { background: rgba(37,211,102,.12); color: var(--wa); }
.info-card strong { display: block; font-size: .9rem; font-weight: 600; margin-bottom: 2px; }
.info-card span   { font-size: .81rem; color: var(--text-muted); }
.info-arrow { margin-left: auto; color: var(--text-muted); width: 16px; height: 16px; flex-shrink: 0; }

.guarantee-box {
  display: flex; align-items: flex-start; gap: 14px; padding: 20px 20px;
  background: rgba(16,185,129,.05); border: 1px solid rgba(16,185,129,.18);
  border-radius: var(--radius); margin-bottom: 14px;
}
.guarantee-icon { font-size: 1.8rem; flex-shrink: 0; }
.guarantee-box strong { display: block; font-size: .88rem; font-weight: 700; margin-bottom: 4px; }
.guarantee-box p { font-size: .81rem; color: var(--text-muted); line-height: 1.55; margin: 0; }

.response-time {
  display: flex; align-items: center; gap: 10px;
  font-size: .81rem; color: var(--text-muted);
}
.response-dot {
  width: 8px; height: 8px; background: var(--green); border-radius: 50%;
  flex-shrink: 0; animation: blink 1.5s ease infinite;
  box-shadow: 0 0 8px rgba(16,185,129,.6);
}
.response-time strong { color: var(--text); }

/* ── FOOTER ─────────────────────────────── */
.footer { padding: 64px 0 28px; border-top: 1px solid var(--border); background: var(--bg); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: .83rem; color: var(--text-muted); margin-top: 12px; max-width: 220px; line-height: 1.65; }
.footer-flags { font-size: 1.1rem; margin-top: 12px; letter-spacing: 3px; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col strong { font-size: .8rem; font-weight: 700; color: var(--text-soft); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .06em; }
.footer-col a { font-size: .82rem; color: var(--text-muted); text-decoration: none; transition: color .2s; width: fit-content; }
.footer-col a:hover { color: var(--accent3); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-top: 24px; border-top: 1px solid var(--border); flex-wrap: wrap;
}
.footer-bottom p { font-size: .79rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: .79rem; color: var(--text-muted); text-decoration: none; }
.footer-legal a:hover { color: var(--text); }

/* ── WHATSAPP FLOAT ─────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 95;
  width: 62px; height: 62px; border-radius: 50%;
  background: #22c55e; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(34,197,94,.5);
  transition: transform .25s var(--ease), box-shadow .25s;
  text-decoration: none;
}
.whatsapp-float svg { width: 30px; height: 30px; position: relative; z-index: 1; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 14px 44px rgba(34,197,94,.65); }
.whatsapp-pulse {
  position: absolute; inset: -5px; border-radius: 50%;
  background: #22c55e; opacity: .3;
  animation: pulse-ring 2.2s ease-out infinite;
}
@keyframes pulse-ring {
  0%{transform:scale(1);opacity:.3;}
  70%{transform:scale(1.4);opacity:0;}
  100%{transform:scale(1.4);opacity:0;}
}

/* ── REVEAL ANIMATIONS ─────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ══════════════════════════════════════════════
   RESPONSIVE COMPLETO — mobile-first mindset
   ══════════════════════════════════════════════ */

/* ── 1100px: tablet landscape ── */
@media (max-width: 1100px) {
  .hero-layout { grid-template-columns: 1fr; gap: 40px; padding: 100px 0 60px; }
  .hero-layout > .badge,
  .hero-layout > h1,
  .hero-layout > .hero-sub,
  .hero-layout > .urgency-bar,
  .hero-layout > .hero-actions,
  .hero-layout > .trust-badges,
  .hero-layout > .hero-live,
  .hero-layout > .hero-stats { grid-column: 1; }
  .hero-mockup { grid-column: 1; grid-row: auto; max-width: 500px; margin: 0 auto; width: 100%; }

  .results-grid   { grid-template-columns: repeat(2,1fr); }
  .pricing-grid   { grid-template-columns: repeat(2,1fr); }
  .footer-top     { grid-template-columns: 1fr 1fr; }
}

/* ── 900px: tablet portrait ── */
@media (max-width: 900px) {
  .section { padding: 80px 0; }

  /* grids */
  .tools-grid        { grid-template-columns: repeat(2,1fr); }
  .services-grid     { grid-template-columns: 1fr 1fr; }
  .services-grid .card:nth-child(5) { grid-column: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid          { grid-template-columns: 1fr; }
  .why-col--gabnetic { margin-top: 12px; }
  .bva-grid          { grid-template-columns: 1fr; gap: 16px; }
  .bva-center        { flex-direction: row; justify-content: center; padding: 8px 0; gap: 20px; }
  .bva-arrow-down    { transform: rotate(-90deg); }
  .contact-grid      { grid-template-columns: 1fr; }
  .problems-grid     { grid-template-columns: 1fr 1fr; }

  /* proceso */
  .process-steps { flex-direction: column; align-items: stretch; }
  .step { flex-direction: row; text-align: left; padding: 0; gap: 20px; }
  .step-num { font-size: 2.5rem; flex-shrink: 0; }
  .step-arrow { transform: rotate(90deg); align-self: center; margin: 4px 0 4px 28px; }

  .faq-question { grid-template-columns: 36px 1fr 32px; gap: 12px; }
}

/* ── 768px: móvil grande ── */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .container { padding: 0 18px; }

  /* tipografía más grande para legibilidad */
  body { font-size: 16px; }
  .section-header h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .section-header p  { font-size: 1rem; }

  /* nav */
  .nav-links {
    display: none; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(6,6,26,.98); backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border); padding: 24px; gap: 16px;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  /* hero */
  .hero-layout { padding: 90px 0 48px; }
  .hero-layout h1 { font-size: clamp(2rem, 7vw, 3rem); }
  .hero-sub { font-size: 1rem; }
  .hero-stats { gap: 16px; }
  .stat-num  { font-size: 1.8rem; }
  .hero-scroll-hint { display: none; }
  .hero-live { font-size: .78rem; }

  /* mockup: solo muestra el teléfono, oculta el dashboard flotante */
  .mockup-dashboard { display: none; }
  .mockup-badge-float { display: none; }
  .hero-mockup { max-width: 340px; }

  /* grids → 1 columna */
  .services-grid,
  .services-grid .card:nth-child(4),
  .services-grid .card:nth-child(5) { grid-column: span 1; grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .results-grid  { grid-template-columns: 1fr; }
  .tools-grid    { grid-template-columns: 1fr 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; }

  /* before/after simplificado */
  .bva-col { padding: 28px 22px; }

  /* botones: mínimo 48px de alto para toque fácil */
  .btn { min-height: 48px; font-size: 1rem; }
  .btn--lg { min-height: 56px; font-size: 1.05rem; }

  /* hero actions */
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* sticky cta */
  .sticky-cta { display: block; }

  /* faq */
  .faq-answer-inner { padding-left: 12px; }

  /* contact */
  .contact-steps { flex-direction: column; align-items: stretch; }
  .contact-step-arrow { transform: rotate(90deg); align-self: center; }

  /* footer */
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-col:first-child { grid-column: span 2; }

  /* otros */
  .whatsapp-float { bottom: 80px; right: 16px; width: 54px; height: 54px; }
  .cookie-banner  { flex-direction: column; align-items: stretch; left: 12px; right: 12px; }
  .problems-grid  { grid-template-columns: 1fr; }

  /* trust badges hero → 2 columnas */
  .trust-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .trust-badge  { font-size: .82rem; }
}

/* oculta detalles secundarios en móvil para mantener limpieza */
@media (max-width: 768px) {
  .card-ideal      { display: none; }
  .result-detail   { display: none; }
  .hero-live strong { display: inline; }
}

/* ── 480px: móvil pequeño ── */
@media (max-width: 480px) {
  .section { padding: 52px 0; }
  .container { padding: 0 16px; }

  .hero-layout h1 { font-size: 2rem; letter-spacing: -.03em; }
  .hero-live { flex-direction: column; text-align: center; gap: 6px; }
  .hero-stats { justify-content: center; }
  .stat-div   { display: none; }

  /* mockup mini */
  .hero-mockup { max-width: 300px; }
  .phone-chat  { padding: 12px; }
  .chat-bubble { font-size: .75rem; }

  /* grids */
  .tools-grid { grid-template-columns: 1fr; }
  .bva-col    { padding: 22px 16px; }

  /* ctas */
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }

  /* why us: oculta la col de agencia en móvil pequeño para no saturar */
  .why-col--other:first-child { display: none; }

  /* form */
  .form-row { grid-template-columns: 1fr; }
  .contact-steps { gap: 8px; }
  .contact-step  { padding: 14px 16px; }

  /* footer */
  .footer-top { grid-template-columns: 1fr; }
  .footer-col:first-child { grid-column: span 1; }
  .footer-flags { font-size: .9rem; letter-spacing: 2px; }

  /* faq */
  .faq-question { font-size: .88rem; padding: 20px 4px; }
  .faq-num { width: 30px; height: 30px; font-size: .7rem; }

  /* pricing */
  .pricing-card { padding: 28px 20px; }
  .pricing-price { font-size: 2rem; }

  /* trust badges hero → columna */
  .trust-badges { grid-template-columns: 1fr; }
}
