/* ═══════════════════════════════════════════════════════
   NexoPOS — inicio.css
   Optimizado: animaciones compuestas (transform/opacity),
   sin hardcode, tokens centralizados.
   ═══════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --ink:     #060708;
  --ink2:    #0c0e12;
  --ink3:    #12151c;
  --ink4:    #181d28;

  --em:      #1a6bff;
  --em2:     #0047cc;
  --em3:     #4d8fff;
  --em-dim:  rgba(26,107,255,.08);
  --em-mid:  rgba(26,107,255,.15);
  --em-glow: rgba(26,107,255,.22);
  --em-glow2:rgba(26,107,255,.45);

  --snow:  #f0f4fc;
  --fog:   #6b7a8d;
  --mist:  #a8b4c8;
  --amber: #f59e0b;
  --sky:   #38bdf8;
  --rose:  #fb7185;
  --pos:   #22c55e;

  --border:  rgba(255,255,255,.06);
  --border2: rgba(255,255,255,.10);

  --r:  10px;
  --r2: 16px;
  --r3: 24px;
  --fd: 'Outfit', 'Outfit Fallback', sans-serif;
--fb: 'Plus Jakarta Sans', 'PJS Fallback', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth }
body {
  background: var(--ink);
  color: var(--snow);
  font-family: var(--fb);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

/* ── UTIL ── */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── CURSOR ── */
#cur, #cur2 {
  position: fixed; border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  will-change: left, top;
}
#cur  { width: 8px; height: 8px; background: var(--em3); box-shadow: 0 0 12px var(--em-glow2); transition: width .15s, height .15s }
#cur2 { width: 36px; height: 36px; border: 1px solid var(--em-glow2); transition: width .3s cubic-bezier(.25,.46,.45,.94), height .3s, border-color .3s }
body.hov #cur  { width: 14px; height: 14px }
body.hov #cur2 { width: 56px; height: 56px; border-color: var(--em) }
@media (pointer: coarse) { #cur, #cur2 { display: none } body { cursor: auto } }

/* ── GRAIN ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px }
::-webkit-scrollbar-track { background: var(--ink2) }
::-webkit-scrollbar-thumb { background: var(--em); border-radius: 99px }

/* ── BACKGROUNDS ── */
.mesh {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 800px 600px at 10% 0%,  rgba(26,107,255,.06) 0%, transparent 60%),
    radial-gradient(ellipse 600px 500px at 90% 80%, rgba(26,107,255,.05) 0%, transparent 60%),
    radial-gradient(ellipse 400px 300px at 50% 40%, rgba(77,143,255,.02) 0%, transparent 70%);
}
.grid-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(26,107,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,107,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
}

/* ── LAYOUT ── */
.wrap    { max-width: 1180px; margin: 0 auto; padding: 0 clamp(20px,5vw,48px) }
.sp      { padding-top: clamp(72px,9vw,120px); padding-bottom: clamp(72px,9vw,120px) }
.divider { height: 1px; background: linear-gradient(90deg,transparent,var(--border2),transparent); margin: 0 clamp(20px,5vw,48px) }

/* ── ANIMATIONS ── */
/* FIX: solo transform + opacity (propiedades compuestas → sin CLS/jank) */
@keyframes fadeUp  { from { opacity: 0; transform: translateY(24px) } to { opacity: 1; transform: translateY(0) } }
@keyframes pulse   { 0%,100% { opacity: 1; transform: scale(1) }      50%  { opacity: .3; transform: scale(.6) } }
@keyframes floatUp { 0%   { opacity: 0; transform: translateY(0) scale(0) } 10% { opacity: .5 } 90% { opacity: .2 } 100% { opacity: 0; transform: translateY(-100vh) scale(1) } }
@keyframes growBar { from { transform: scaleY(0); transform-origin: bottom } to { transform: scaleY(1); transform-origin: bottom } }
@keyframes ripple  { 0%   { transform: scale(1); opacity: .6 }         100% { transform: scale(2.2); opacity: 0 } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px) } to { opacity: 1; transform: translateY(0) } }
/* FIX: glowPulse usa opacity en vez de filter para no mover píxeles y evitar warning de animación no compuesta */
@keyframes glowPulse { 0%,100% { opacity: .8 } 50% { opacity: 1 } }
/* FIX: borderFlow reemplazado por opacity en pseudo-elemento (compuesto) */
@keyframes borderPulse { 0%,100% { opacity: .35 } 50% { opacity: 1 } }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1) }
.reveal.up { opacity: 1; transform: translateY(0) }
.reveal.d1 { transition-delay: .1s } .reveal.d2 { transition-delay: .2s }
.reveal.d3 { transition-delay: .3s } .reveal.d4 { transition-delay: .4s } .reveal.d5 { transition-delay: .5s }

/* ── PROGRESS ── */
#progress { position: fixed; top: 0; left: 0; height: 2px; z-index: 999; background: var(--em); box-shadow: 0 0 10px var(--em-glow); width: 0; transition: width .1s linear }

/* ── NAV ── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 500; transition: background .3s, border-color .3s, box-shadow .3s }
nav.stuck { background: rgba(6,7,8,.94); backdrop-filter: blur(24px) saturate(180%); border-bottom: 1px solid var(--border); box-shadow: 0 8px 40px rgba(0,0,0,.5) }
.nav-in { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 20px clamp(20px,5vw,48px) }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--fd); font-size: 1.35rem; font-weight: 800; letter-spacing: -.02em; color: var(--snow) }
.logo img { height: 36px; width: auto; animation: glowPulse 3s ease-in-out infinite }
.logo .acc { color: var(--em) }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none }
.nav-links a { color: var(--fog); text-decoration: none; font-size: .875rem; font-weight: 500; padding: 8px 14px; min-height: 44px; display: inline-flex; align-items: center; border-radius: 8px; transition: opacity .2s, background .2s; position: relative }
.nav-links a::after { content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px; height: 1px; background: var(--em); transform: scaleX(0); transform-origin: left; transition: transform .25s ease }
.nav-links a:hover { opacity: 1; color: var(--snow); background: rgba(255,255,255,.05) }
.nav-links a:hover::after { transform: scaleX(1) }
.nav-cta { display: inline-flex; align-items: center; gap: 7px; background: var(--em); color: #fff; font-weight: 700; font-size: .875rem; text-decoration: none; padding: 10px 22px; min-height: 44px; border-radius: 10px; box-shadow: 0 0 24px var(--em-glow); transition: background .2s, transform .2s }
.nav-cta:hover { background: var(--em3); box-shadow: 0 0 40px var(--em-glow2); transform: translateY(-1px) }

/* ── HAMBURGER ── */
.ham { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 10px; min-width: 44px; min-height: 44px; align-items: center; justify-content: center }
.ham span { display: block; width: 22px; height: 2px; background: var(--snow); border-radius: 2px; transition: transform .3s, opacity .3s }
.ham.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px) }
.ham.open span:nth-child(2) { opacity: 0 }
.ham.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px) }

/* ── MOBILE MENU ── */
.mob-menu { display: none; position: fixed; top: 72px; left: 12px; right: 12px; background: rgba(12,14,18,.97); backdrop-filter: blur(32px); border: 1px solid var(--border2); border-radius: var(--r2); padding: 16px; z-index: 499; box-shadow: 0 24px 80px rgba(0,0,0,.7) }
.mob-menu.show { display: block; animation: slideDown .25s ease both }
.mob-menu a { color: var(--mist); text-decoration: none; font-size: 1rem; font-weight: 500; padding: 13px 16px; border-radius: var(--r); transition: color .15s, background .15s; min-height: 44px; display: flex; align-items: center }
.mob-menu a:hover { color: var(--snow); background: rgba(255,255,255,.06) }
.mob-menu .mm-cta { display: flex; align-items: center; justify-content: center; margin-top: 10px; background: var(--em); color: #fff; font-weight: 700; padding: 14px; border-radius: var(--r2); text-decoration: none; min-height: 48px }
.mob-divider { height: 1px; background: var(--border); margin: 10px 0 }

/* ── HERO ── */
.hero { position: relative; z-index: 2; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 130px clamp(20px,5vw,48px) 60px; text-align: center; overflow: hidden }
.hero-tag { display: inline-flex; align-items: center; gap: 9px; background: var(--em-dim); border: 1px solid rgba(26,107,255,.25); color: var(--em); font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; padding: 8px 18px; border-radius: 100px; margin-bottom: 28px; animation: fadeUp .7s .1s ease both }
.tag-pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--em); animation: pulse 2s infinite }
.hero h1 { font-family: var(--fd); font-size: clamp(2.8rem,7.5vw,7rem); font-weight: 800; line-height: .96; letter-spacing: -.04em; max-width: 920px; margin: 0 auto 24px; animation: fadeUp .5s ease both }
.hero h1 .em { background: linear-gradient(135deg, var(--em3) 0%, var(--em) 50%, #93c5fd 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block }
.hero h1 .ghost { color: rgba(240,244,252,.18) }
.hero-sub { font-size: clamp(1rem,1.5vw,1.15rem); color: var(--mist); max-width: 540px; margin: 0 auto 40px; line-height: 1.75; animation: fadeUp .7s .3s ease both }
.hero-btns { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; animation: fadeUp .7s .4s ease both }

/* ── PARTICLES ── */
.particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden }
.particle { position: absolute; border-radius: 50%; background: var(--em); animation: floatUp linear infinite; opacity: 0 }

/* ── BOTONES ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px; color: #fff; font-weight: 700; font-size: .95rem;
  text-decoration: none; padding: 16px 30px; border-radius: var(--r2);
  background: var(--em);
  box-shadow: 0 0 40px var(--em-glow); transition: box-shadow .22s, transform .22s, background .22s;
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: translateX(-110%);
  transition: transform .6s ease;
}
.btn-primary:hover::after { transform: translateX(110%); }
.btn-primary:hover { background: var(--em3); box-shadow: 0 0 60px var(--em-glow2); transform: translateY(-2px); }

/* ── TRUST BAR ── */
.trust { display: flex; align-items: center; justify-content: center; gap: clamp(16px,3vw,36px); flex-wrap: wrap; animation: fadeUp .7s .5s ease both }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--fog) }
.trust-check { width: 18px; height: 18px; border-radius: 50%; background: var(--em-dim); border: 1px solid rgba(26,107,255,.3); display: flex; align-items: center; justify-content: center; font-size: .6rem; color: var(--em); flex-shrink: 0 }

/* ── MOCKUP ── */
.mockup-section { position: relative; z-index: 2; padding: 0 clamp(20px,5vw,48px) clamp(72px,9vw,120px) }
.mockup-wrap { max-width: 1100px; margin: 0 auto; background: var(--ink2); border: 1px solid var(--border2); border-radius: var(--r3); overflow: hidden; box-shadow: 0 0 0 1px rgba(26,107,255,.1), 0 60px 120px rgba(0,0,0,.8), 0 0 100px rgba(26,107,255,.06); transform: perspective(1800px) rotateX(3deg); transition: transform .4s ease }
.mockup-wrap:hover { transform: perspective(1800px) rotateX(0deg) }
.win-bar { background: var(--ink3); display: flex; align-items: center; padding: 0 20px; height: 46px; border-bottom: 1px solid var(--border); gap: 12px }
.dots { display: flex; gap: 7px }
.dot { width: 10px; height: 10px; border-radius: 50% }
.win-url { flex: 1; max-width: 320px; margin: 0 auto; background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 6px; height: 26px; display: flex; align-items: center; justify-content: center; font-size: .72rem; color: var(--fog); gap: 5px }
.win-url b { color: var(--mist) }
.dash-layout { display: grid; grid-template-columns: 200px 1fr; min-height: 440px }
.sidebar { background: var(--ink3); border-right: 1px solid var(--border); padding: 16px 0 }
.sidebar-logo { display: flex; align-items: center; gap: 8px; padding: 0 16px 16px; border-bottom: 1px solid var(--border); margin-bottom: 12px }
.sidebar-logo img { height: 22px; width: auto }
.s-name { font-family: var(--fd); font-size: .8rem; font-weight: 700; color: var(--snow) }
.si { display: flex; align-items: center; gap: 9px; padding: 9px 16px; font-size: .77rem; color: var(--fog); border-left: 2px solid transparent; transition: color .2s, background .2s }
.si svg { width: 13px; height: 13px; flex-shrink: 0; stroke: currentColor; fill: none; stroke-width: 2 }
.si.on { color: var(--em); background: var(--em-dim); border-left-color: var(--em) }
.main { padding: 20px; background: var(--ink2); display: flex; flex-direction: column; gap: 14px }
.topbar { display: flex; justify-content: space-between; align-items: center }
.topbar-left .dash-title { font-family: var(--fd); font-size: 1rem; font-weight: 700 }
.topbar-left p { font-size: .7rem; color: var(--fog); margin-top: 2px }
.live-badge { display: flex; align-items: center; gap: 5px; background: var(--em-dim); border: 1px solid rgba(26,107,255,.25); color: var(--em); font-size: .67rem; font-weight: 700; padding: 4px 10px; border-radius: 6px }
.live-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--em); animation: pulse 1.5s infinite }
.kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px }
.kpi { background: var(--ink3); border: 1px solid var(--border); border-radius: var(--r); padding: 12px }
.kpi-l { font-size: .6rem; text-transform: uppercase; letter-spacing: .08em; color: var(--fog); margin-bottom: 5px }
.kpi-v { font-family: var(--fd); font-size: 1.3rem; font-weight: 800; margin-bottom: 3px }
.kpi-d { font-size: .65rem }
.up { color: var(--pos) }
.dn { color: var(--rose) }
.dash-bottom { display: grid; grid-template-columns: 1.8fr 1fr; gap: 10px }
.chart-box, .list-box { background: var(--ink3); border: 1px solid var(--border); border-radius: var(--r); padding: 12px }
.box-label { font-size: .62rem; text-transform: uppercase; letter-spacing: .08em; color: var(--fog); margin-bottom: 10px; font-weight: 600 }
.bars { display: flex; align-items: flex-end; gap: 5px; height: 64px }
.bar { flex: 1; border-radius: 3px 3px 0 0; background: var(--em-mid); animation: growBar .8s ease both }
.bar.hi { background: var(--em); box-shadow: 0 0 10px var(--em-glow) }
.sale-row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid var(--border); font-size: .7rem }
.sale-row:last-child { border-bottom: none }
.sale-row .ln { color: var(--mist) }
.sale-row .lv { color: var(--em); font-weight: 700; font-family: var(--fd) }

/* ── STATS ── */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden; background: var(--ink2) }
.stat-box { padding: 36px 24px; border-right: 1px solid var(--border); text-align: center; transition: background .3s; position: relative; overflow: hidden }
.stat-box::before { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background: var(--em); transition: width .4s }
.stat-box:hover::before { width: 60% }
.stat-box:last-child { border-right: none }
.stat-box:hover { background: var(--ink3) }
.stat-n { display: block; font-family: var(--fd); font-size: 2.8rem; font-weight: 800; color: var(--em); line-height: 1; margin-bottom: 8px; text-shadow: 0 0 30px var(--em-glow) }
.stat-l { font-size: .82rem; color: var(--mist) }

/* ── SECTION HEAD ── */
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--em); margin-bottom: 14px }
.eyebrow::before { content: ''; width: 18px; height: 2px; background: var(--em); border-radius: 2px }
.section-h2 { font-family: var(--fd); font-size: clamp(2rem,4vw,3.2rem); font-weight: 800; letter-spacing: -.035em; line-height: 1.05; margin-bottom: 16px; color: var(--snow) }
.section-h2 em { font-style: italic; color: var(--em) }
.section-p { font-size: 1rem; color: var(--mist); line-height: 1.78; max-width: 440px }

/* ── FEATURES ── */
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden; margin-top: 52px }
.feat { background: var(--ink2); padding: 34px 28px; position: relative; overflow: hidden; transition: opacity .3s }
.feat::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--em); transform: scaleX(0); transform-origin: left; transition: transform .35s }
.feat:hover { opacity: .9 }
.feat:hover::before { transform: scaleX(1) }
.feat-glow { position: absolute; top: -40px; right: -40px; width: 140px; height: 140px; border-radius: 50%; background: radial-gradient(circle, var(--em-dim) 0%, transparent 70%); opacity: 0; transition: opacity .35s }
.feat:hover .feat-glow { opacity: 1 }
.feat-icon { width: 48px; height: 48px; background: var(--em-dim); border: 1px solid rgba(26,107,255,.2); border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 18px; transition: transform .3s, background .3s }
.feat:hover .feat-icon { transform: translateY(-4px) scale(1.08); background: var(--em-mid) }
.feat-title { font-family: var(--fd); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--snow) }
.feat-desc  { font-size: .875rem; color: var(--mist); line-height: 1.68 }

/* ── STEPS ── */
.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 0; margin-top: 52px; align-items: start }
.step-sep { width: 1px; background: linear-gradient(180deg,transparent,rgba(26,107,255,.3),transparent); margin: 26px 20px 0 }
.step-num { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-family: var(--fd); font-size: 1.3rem; font-weight: 800; background: var(--em); color: #fff; margin-bottom: 18px; box-shadow: 0 0 24px var(--em-glow); transition: transform .3s }
.step:hover .step-num { transform: rotate(-6deg) scale(1.1) }
.step-h { font-family: var(--fd); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--snow) }
.step p { font-size: .875rem; color: var(--mist); line-height: 1.68 }

/* ── PRICING ── */
.price-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; max-width: 820px; margin: 52px auto 0 }
.price-card { background: var(--ink2); border: 1px solid var(--border); border-radius: var(--r2); padding: 34px 28px; position: relative; overflow: hidden; transition: transform .3s, opacity .3s }
.price-card:hover { transform: translateY(-5px); opacity: .95 }

/* FIX: borderFlow reemplazado por pseudo-elemento con opacity (compuesto, sin reflow) */
.price-card.featured { border-color: rgba(26,107,255,.35); box-shadow: 0 0 60px rgba(26,107,255,.1); background: linear-gradient(145deg,rgba(26,107,255,.06),var(--ink2)); }
.price-card.featured::after { content: ''; position: absolute; inset: 0; border-radius: var(--r2); border: 1px solid rgba(26,107,255,.5); pointer-events: none; animation: borderPulse 2.5s ease-in-out infinite }
.price-card.featured:hover { box-shadow: 0 30px 60px rgba(0,0,0,.5), 0 0 80px rgba(26,107,255,.14) }
.price-badge { position: absolute; top: -1px; right: 24px; background: var(--em); color: #fff; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 5px 14px; border-radius: 0 0 10px 10px }
.price-name { font-family: var(--fd); font-size: 1.1rem; font-weight: 700; margin-bottom: 5px; color: var(--snow) }
.price-sub  { font-size: .82rem; color: var(--fog); margin-bottom: 22px }
.price-amount { display: flex; align-items: baseline; gap: 3px; margin-bottom: 22px }
.price-cur  { font-size: 1.1rem; color: var(--mist); line-height: 3 }
.price-val  { font-family: var(--fd); font-size: 3.2rem; font-weight: 800; letter-spacing: -.04em; color: var(--snow) }
.price-card.featured .price-cur, .price-card.featured .price-val { color: var(--em) }
.price-period { font-size: .8rem; color: var(--fog); margin-left: 4px }
.price-feats { list-style: none; margin-bottom: 26px }
.price-feats li { display: flex; align-items: flex-start; gap: 10px; font-size: .875rem; color: var(--mist); padding: 8px 0; border-bottom: 1px solid var(--border) }
.price-feats li:last-child { border-bottom: none }
.chk { color: var(--em); font-size: .85rem; flex-shrink: 0; margin-top: 1px }
.btn-price { display: block; text-align: center; text-decoration: none; font-size: .9rem; font-weight: 600; padding: 14px; border-radius: var(--r); transition: background .22s, transform .22s, opacity .22s; min-height: 44px }
.btn-price.g { border: 1px solid var(--border2); color: var(--snow) }
.btn-price.g:hover { background: var(--em-dim); opacity: .85 }
.btn-price.s { background: var(--em); color: #fff; box-shadow: 0 0 24px var(--em-glow) }
.btn-price.s:hover { background: var(--em3); transform: translateY(-1px) }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 52px }
.testi { background: var(--ink2); border: 1px solid var(--border); border-radius: var(--r2); padding: 28px; transition: transform .3s, opacity .3s }
.testi:hover { transform: translateY(-3px); opacity: .9 }
.stars { color: #fbbf24; font-size: .8rem; letter-spacing: 2px; margin-bottom: 14px }
.testi-quote { font-size: .9rem; color: var(--mist); line-height: 1.78; font-style: italic; margin-bottom: 18px }
.testi-author { display: flex; align-items: center; gap: 12px }
.av { width: 40px; height: 40px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-family: var(--fd); font-size: .9rem; font-weight: 800; color: #fff; flex-shrink: 0 }
.testi-name { font-size: .875rem; font-weight: 600; color: var(--snow) }
.testi-role { font-size: .75rem; color: var(--fog) }

/* ── FAQ ── */
.faq-wrap { max-width: 720px; margin: 0 auto }
.faq-item { border-bottom: 1px solid var(--border) }
.faq-q { width: 100%; background: none; border: none; color: var(--snow); text-align: left; padding: 20px 0; cursor: pointer; font-family: var(--fd); font-size: 1rem; font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: opacity .2s; min-height: 44px }
.faq-q:hover { opacity: .75 }
.faq-icon { width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--mist); transition: background .3s, opacity .3s, transform .3s }
.faq-item.open .faq-icon { background: var(--em-dim); color: var(--em); transform: rotate(45deg) }
.faq-a { font-size: .9rem; color: var(--mist); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height .38s ease, padding-bottom .38s }
.faq-item.open .faq-a { max-height: 220px; padding-bottom: 20px }

/* ── CTA BANNER ── */
.cta-banner { background: var(--em); border-radius: var(--r3); padding: clamp(48px,6vw,72px) clamp(28px,5vw,64px); display: flex; justify-content: space-between; align-items: center; gap: 36px; flex-wrap: wrap; position: relative; overflow: hidden }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 80% 50%,rgba(255,255,255,.18),transparent); pointer-events: none }
.cta-h2 { font-family: var(--fd); font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 800; color: #fff; letter-spacing: -.03em; line-height: 1.08; position: relative }
.cta-banner p { font-size: 1rem; color: rgba(255,255,255,.75); margin-top: 8px; position: relative }
.cta-banner-btns { display: flex; gap: 10px; flex-wrap: wrap; position: relative; z-index: 1 }
.btn-dark { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--em); font-weight: 700; font-size: .95rem; text-decoration: none; padding: 15px 28px; border-radius: var(--r2); transition: background .22s, transform .22s, box-shadow .22s; min-height: 44px }
.btn-dark:hover { background: #f0f4fc; transform: translateY(-1px); box-shadow: 0 8px 30px rgba(0,0,0,.2) }
.btn-dark-ghost { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.15); color: #fff; font-weight: 600; font-size: .95rem; text-decoration: none; padding: 14px 26px; border-radius: var(--r2); border: 1px solid rgba(255,255,255,.3); transition: background .22s; min-height: 44px }
.btn-dark-ghost:hover { background: rgba(255,255,255,.25) }

/* ── CONTACT ── */
.contact-section { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start }
.contact-method { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px }
.cm-ico { width: 44px; height: 44px; border-radius: var(--r); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.2rem }
.cm-title { font-size: .875rem; font-weight: 600; margin-bottom: 2px; color: var(--snow) }
.cm-val { font-size: .82rem; color: var(--mist) }
.form-box { background: var(--ink2); border: 1px solid var(--border2); border-radius: var(--r3); padding: 36px; box-shadow: 0 24px 80px rgba(0,0,0,.5) }
.form-title { font-family: var(--fd); font-size: 1.35rem; font-weight: 700; margin-bottom: 5px; color: var(--snow) }
.form-sub { font-size: .875rem; color: var(--fog); margin-bottom: 24px }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px }
label { font-size: .8rem; font-weight: 600; color: var(--mist) }
input, select, textarea { background: var(--ink3); border: 1px solid var(--border); border-radius: var(--r); color: var(--snow); font-family: var(--fb); font-size: .875rem; padding: 12px 14px; transition: background .2s, opacity .2s; outline: none; width: 100% }
input:focus, select:focus, textarea:focus { border-color: rgba(26,107,255,.45); background: rgba(26,107,255,.04); box-shadow: 0 0 0 3px rgba(26,107,255,.1) }
input::placeholder, textarea::placeholder { color: var(--fog) }
input.err { border-color: var(--rose) !important }
input, select { min-height: 44px }
select { appearance: none; cursor: pointer }
select option { background: var(--ink3) }
textarea { resize: vertical; min-height: 100px }
.btn-submit {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
  color: #fff; font-family: var(--fb); font-weight: 700; font-size: 1rem; padding: 16px;
  border-radius: var(--r2); border: none; cursor: pointer;
  background: var(--em);
  box-shadow: 0 0 28px var(--em-glow); transition: box-shadow .22s, transform .22s, background .22s;
  position: relative; overflow: hidden; text-decoration: none; min-height: 52px;
}
.btn-submit::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: translateX(-110%);
  transition: transform .6s ease;
}
.btn-submit:hover::after { transform: translateX(110%); }
.btn-submit:hover { background: var(--em3); box-shadow: 0 0 50px var(--em-glow2); transform: translateY(-1px); }
.form-note { font-size: .72rem; color: var(--fog); text-align: center; margin-top: 12px }

/* ── FOOTER ── */
footer { background: var(--ink2); border-top: 1px solid var(--border); padding: 60px clamp(20px,5vw,48px) 36px }
.footer-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px }
.footer-brand p { font-size: .875rem; color: var(--fog); line-height: 1.65; max-width: 260px; margin-top: 12px }
.footer-logo { display: flex; align-items: center; gap: 9px; text-decoration: none; margin-bottom: 4px }
.footer-logo img { height: 28px; width: auto; animation: glowPulse 3s ease-in-out infinite }
.footer-logo-text { font-family: var(--fd); font-size: 1rem; font-weight: 800; color: var(--snow) }
.footer-logo-text .acc { color: var(--em) }
.footer-col-h { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--mist); margin-bottom: 16px }
.footer-col ul { list-style: none }
.footer-col li { margin-bottom: 10px }
.footer-col a { font-size: .875rem; color: var(--fog); text-decoration: none; transition: opacity .2s }
.footer-col a:hover { opacity: .75; color: var(--snow) }
.footer-bottom { max-width: 1180px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; padding-top: 24px; border-top: 1px solid var(--border) }
.footer-copy { font-size: .8rem; color: var(--fog) }
.footer-copy .acc { color: var(--em) }

/* ── WA FLOAT ── */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 400; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 1.5rem; box-shadow: 0 8px 30px rgba(37,211,102,.4); transition: transform .22s, opacity .22s; animation: fadeUp 1s 1.5s ease both }
.wa-float:hover { transform: scale(1.1); opacity: .9 }
.wa-ripple { position: absolute; width: 100%; height: 100%; border-radius: 50%; background: rgba(37,211,102,.35); animation: ripple 2.5s ease-out infinite }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .dash-layout  { grid-template-columns: 1fr } .sidebar { display: none }
  .kpis         { grid-template-columns: repeat(2,1fr) }
  .dash-bottom  { grid-template-columns: 1fr }
  .feat-grid    { grid-template-columns: repeat(2,1fr) }
  .testi-grid   { grid-template-columns: repeat(2,1fr) }
  .stats-row    { grid-template-columns: repeat(2,1fr) }
  .stat-box     { border-bottom: 1px solid var(--border); border-right: none }
  .stat-box:nth-child(odd) { border-right: 1px solid var(--border) }
  .footer-grid  { grid-template-columns: 1fr 1fr }
  .contact-section { grid-template-columns: 1fr; gap: 40px }
  .price-grid   { grid-template-columns: 1fr; max-width: 420px }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none } .ham { display: flex }
  .steps      { grid-template-columns: 1fr; gap: 36px } .step-sep { display: none }
  .testi-grid { grid-template-columns: 1fr }
  .feat-grid  { grid-template-columns: 1fr }
  .cta-banner { flex-direction: column }
  .form-row   { grid-template-columns: 1fr }
  .footer-grid { grid-template-columns: 1fr; gap: 28px }
  .footer-bottom { flex-direction: column; text-align: center }
  .stats-row  { grid-template-columns: repeat(2,1fr) }
  .mockup-wrap { transform: none }
}
@media (max-width: 480px) {
  .hero h1    { letter-spacing: -.025em }
  .stats-row  { grid-template-columns: 1fr }
  .stat-box   { border-right: none !important }
  .wa-float   { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.3rem }
}