/* ═══════════════════════════════════════════════════════════════════════
   LITTLE JHON! — v3 Editorial-Tech (Apple × Linear × playful)
   ════════════════════════════════════════════════════════════════════════ */

/* ────────────────────────── TOKENS ────────────────────────── */
:root {
  --y: #F5B731;        --y2: #FBDA61;      --y3: #FFEAB0;
  --y-soft: #FFFBEB;   --y-mid: #FEF3C7;   --y-dark: #92580A;
  --bl: #4A52E1;       --bl2: #818CF8;     --bl-soft: #EEF2FF;
  --bk: #07070D;       --bk2: #131320;     --bk3: #22222F;

  --g1: #1F2937;       --g2: #4B5563;      --g3: #9CA3AF;
  --g4: #D1D5DB;       --g5: #E5E7EB;
  --bg: #FFFFFF;       --paper: #F7F5EE;   --sand: #EFECE2;
  --brd: rgba(7,7,13,.08);
  --brd-d: rgba(255,255,255,.08);

  --fd: 'Syne', system-ui, sans-serif;
  --fb: 'Cabinet Grotesk', 'DM Sans', system-ui, sans-serif;
  --fm: 'JetBrains Mono', ui-monospace, monospace;

  --sh-y: 0 30px 80px -20px rgba(245,183,49,.55);
  --sh-bl: 0 30px 80px -20px rgba(74,82,225,.5);
  --sh-bk: 0 40px 100px -20px rgba(7,7,13,.5);
  --sh-card: 0 12px 32px -8px rgba(7,7,13,.08), 0 4px 12px -6px rgba(7,7,13,.05);

  --r-xs: 6px; --r-sm: 12px; --r-md: 18px; --r-lg: 28px; --r-xl: 40px; --r-full: 9999px;

  --ease: cubic-bezier(.16,1,.3,1);
}

/* ────────────────────────── RESET ────────────────────────── */
* , *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--bk);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  max-width: 100vw;
}
html { overflow-x: hidden; max-width: 100vw; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--y); color: var(--bk); }

/* ────────────────────────── NAV ────────────────────────── */
nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  z-index: 9000; width: calc(100% - 32px); max-width: 1280px;
  padding: 10px 12px 10px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--r-full);
  box-shadow: 0 14px 50px -16px rgba(7,7,13,.12), inset 0 1px 0 rgba(255,255,255,.7);
  transition: top .4s var(--ease), box-shadow .4s, transform .4s;
}
nav.dark-mode { background: rgba(7,7,13,.72); border-color: rgba(255,255,255,.08); }
nav.dark-mode .logo-t, nav.dark-mode .nl > li > a { color: rgba(255,255,255,.85); }
nav.dark-mode .nl > li > a:hover { background: rgba(255,255,255,.08); color: #fff; }
nav.scrolled { box-shadow: 0 16px 60px -16px rgba(7,7,13,.18), inset 0 1px 0 rgba(255,255,255,.7); }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-m { width: 30px; height: 30px; transition: transform .5s cubic-bezier(.34,1.56,.64,1); }
.logo:hover .logo-m { transform: rotate(-18deg) scale(1.18); }
.logo-t { font-family: var(--fd); font-weight: 800; font-size: 1.08rem; letter-spacing: -.03em; color: var(--bk); }
.logo-t em { color: var(--y); font-style: normal; }
.nl { display: flex; gap: 2px; list-style: none; align-items: center; }
.nl > li > a { padding: 8px 14px; font-size: .82rem; font-weight: 500; color: var(--g2); border-radius: var(--r-full); transition: background .2s, color .2s; }
.nl > li > a:hover { background: rgba(7,7,13,.05); color: var(--bk); }
.ncta {
  background: var(--bk) !important; color: #fff !important;
  padding: 10px 18px !important; border-radius: var(--r-full);
  font-family: var(--fd); font-weight: 700; font-size: .8rem;
  display: inline-flex !important; align-items: center; gap: 6px;
  transition: transform .3s, box-shadow .3s, background .3s !important;
}
.ncta:hover { background: var(--y) !important; color: var(--bk) !important; transform: translateY(-2px); box-shadow: var(--sh-y); }
.mb-tog { display: none; width: 36px; height: 36px; border-radius: var(--r-full); align-items: center; justify-content: center; }
.mb-tog svg { width: 18px; height: 18px; }
#mb-menu { position: fixed; inset: 0; background: var(--bk); z-index: 8999; display: none; flex-direction: column; align-items: flex-start; justify-content: center; gap: 12px; padding: 100px 32px; }
#mb-menu.open { display: flex; }
#mb-menu a { color: #fff; font-family: var(--fd); font-weight: 800; font-size: 2.4rem; letter-spacing: -.03em; }
#mb-menu a em { color: var(--y); font-style: normal; }

/* ────────────────────────── BUTTONS ────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; border-radius: var(--r-full);
  font-family: var(--fd); font-weight: 700; font-size: .95rem;
  transition: transform .3s var(--ease), box-shadow .3s, background .3s, color .3s;
  position: relative; will-change: transform; letter-spacing: -.01em;
}
.btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.btn-bk { background: var(--bk); color: #fff; box-shadow: 0 14px 32px -10px rgba(7,7,13,.5); }
.btn-bk:hover { transform: translateY(-3px); box-shadow: 0 22px 48px -12px rgba(7,7,13,.7); background: #000; }
.btn-y { background: var(--y); color: var(--bk); box-shadow: 0 14px 32px -10px rgba(245,183,49,.6); }
.btn-y:hover { transform: translateY(-3px); box-shadow: 0 22px 48px -10px rgba(245,183,49,.8); }
.btn-ol { background: transparent; color: var(--bk); border: 1.5px solid rgba(7,7,13,.18); }
.btn-ol:hover { border-color: var(--bk); background: var(--bk); color: #fff; transform: translateY(-3px); }
.btn-ghost-d { background: rgba(255,255,255,.08); color: #fff; border: 1.5px solid rgba(255,255,255,.18); }
.btn-ghost-d:hover { background: #fff; color: var(--bk); border-color: transparent; transform: translateY(-3px); }
.btn-lg { padding: 20px 40px; font-size: 1.05rem; }

/* ────────────────────────── HERO ────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  background: var(--paper);
  overflow: hidden;
  padding: 100px 40px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(7,7,13,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(7,7,13,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 100% 70% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 100% 70% at 50% 50%, #000 30%, transparent 80%);
}
.hero-noise {
  position: absolute; inset: 0; pointer-events: none; opacity: .035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; will-change: transform;
}
.hero-blob.a { width: 580px; height: 580px; background: radial-gradient(circle, rgba(245,183,49,.6), transparent 60%); top: -100px; right: 5%; animation: blob-a 18s ease-in-out infinite; }
.hero-blob.b { width: 460px; height: 460px; background: radial-gradient(circle, rgba(74,82,225,.35), transparent 60%); bottom: -60px; left: 10%; animation: blob-b 22s ease-in-out infinite; }
@keyframes blob-a { 50% { transform: translate(-80px, 60px) scale(1.15); } }
@keyframes blob-b { 50% { transform: translate(100px, -50px) scale(1.2); } }

.hero-meta {
  position: relative; z-index: 3;
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: clamp(40px, 6vh, 80px); padding-top: 64px;
  font-family: var(--fm); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--g2);
  opacity: 0;
}
.hm-l, .hm-r { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
.hm-tag { display: inline-flex; align-items: center; gap: 8px; }
.hm-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--bk); }
.hm-tag.live::before { background: #22c55e; box-shadow: 0 0 8px #22c55e; animation: dot-pulse 2s infinite; }
.hm-tag.dot::before { background: var(--y); }
@keyframes dot-pulse { 0%,100% { opacity: 1; box-shadow: 0 0 0 0 currentColor; } 70% { opacity: .5; box-shadow: 0 0 0 8px transparent; } }

.hero-inner {
  position: relative; z-index: 2; max-width: 1240px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center;
  flex: 1;
}

/* Hero LEFT — editorial type */
.h-eyebrow {
  font-family: var(--fm); font-size: .72rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--g2); margin-bottom: 28px;
  display: inline-flex; align-items: center; gap: 10px; opacity: 0;
}
.h-eyebrow::before { content: ''; width: 32px; height: 1px; background: currentColor; }

.h-title {
  font-family: var(--fd); font-weight: 800;
  font-size: clamp(3.6rem, 7.5vw, 7.2rem);
  line-height: .9; letter-spacing: -.055em; margin-bottom: 32px;
  color: var(--bk);
}
.h-title-line { display: block; overflow: hidden; }
.h-word { display: inline-block; transform: translateY(110%); will-change: transform; }
.h-word.it { font-style: italic; font-weight: 300; color: var(--g2); }
.h-word.grad {
  background: linear-gradient(120deg, #F5B731 0%, #FBBF24 40%, #4A52E1 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.h-word.under { position: relative; padding: 0 4px; }
.h-word.under::after {
  content: ''; position: absolute; bottom: .12em; left: 0; right: 0; height: .12em;
  background: var(--y); z-index: -1; border-radius: 4px;
  transform: scaleX(0); transform-origin: left; transition: transform 1s var(--ease) .8s;
}
.hero.loaded .h-word.under::after { transform: scaleX(1); }

.h-sub {
  font-size: clamp(1rem, 1.15vw, 1.18rem); color: var(--g1); line-height: 1.6;
  max-width: 460px; margin-bottom: 44px;
  opacity: 0; transform: translateY(20px);
}
.h-sub b { color: var(--bk); font-weight: 600; }

.h-actions { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; transform: translateY(20px); }

/* Hero RIGHT — monkey + 3D stage */
.hero-stage {
  position: relative; height: 600px;
  display: flex; align-items: center; justify-content: center;
  perspective: 1400px;
}
.hero-disc {
  position: absolute; inset: 8%;
  background: radial-gradient(circle, rgba(245,183,49,.5) 0%, transparent 65%);
  border-radius: 50%; filter: blur(20px);
  animation: disc 7s ease-in-out infinite;
}
@keyframes disc { 0%,100% { transform: scale(1); opacity: .8; } 50% { transform: scale(1.1); opacity: 1; } }
.hero-ring {
  position: absolute; inset: 4%; border-radius: 50%;
  border: 1.5px dashed rgba(7,7,13,.2);
  animation: spin 50s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-ring::before, .hero-ring::after {
  content: ''; position: absolute; border-radius: 50%;
}
.hero-ring::before { width: 14px; height: 14px; background: var(--y); top: 0; left: 50%; transform: translate(-50%,-50%); box-shadow: 0 0 16px var(--y); }
.hero-ring::after { width: 10px; height: 10px; background: var(--bl); bottom: 14%; right: 8%; box-shadow: 0 0 14px var(--bl); }
.hero-ring-inner {
  position: absolute; inset: 18%; border-radius: 50%;
  border: 1px dashed rgba(74,82,225,.18);
  animation: spin 40s linear infinite reverse;
}

.monkey-stage {
  position: relative; transform-style: preserve-3d;
  transition: transform .4s var(--ease);
  will-change: transform; z-index: 2;
}
.monkey-img {
  width: clamp(280px, 30vw, 420px); height: auto;
  filter: drop-shadow(0 0 60px rgba(245,183,49,.55)) drop-shadow(0 30px 50px rgba(7,7,13,.3));
  animation: monkey-float 5.5s ease-in-out infinite;
}
@keyframes monkey-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(2deg); }
}

/* Floating UI chips around monkey */
.hbadge {
  position: absolute; z-index: 4;
  background: rgba(255,255,255,.82); backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--r-md); padding: 12px 16px;
  box-shadow: 0 16px 40px -10px rgba(7,7,13,.15), inset 0 1px 0 rgba(255,255,255,.7);
  display: flex; align-items: center; gap: 10px;
  font-size: .8rem; font-weight: 600;
  opacity: 0; transform: translateY(10px);
  will-change: transform;
}
.hbadge.f-a { animation: f-a 6s ease-in-out infinite; }
.hbadge.f-b { animation: f-b 7s ease-in-out infinite; }
.hbadge.f-c { animation: f-c 8s ease-in-out infinite; }
@keyframes f-a { 50% { transform: translateY(-12px); } }
@keyframes f-b { 50% { transform: translateY(10px); } }
@keyframes f-c { 50% { transform: translateY(-8px) translateX(6px); } }
.hb-ico { width: 30px; height: 30px; border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hb-l { font-size: .66rem; color: var(--g2); font-weight: 600; }
.hb-v { font-size: .82rem; font-weight: 700; line-height: 1.2; }
.hb1 { top: 8%; left: -4%; }
.hb2 { bottom: 16%; right: -6%; }
.hb3 { top: 48%; right: -8%; }

/* Hero stats — bottom band */
.hero-stats {
  position: relative; z-index: 2;
  max-width: 1240px; margin: 60px auto 0; padding-top: 40px;
  border-top: 1px solid rgba(7,7,13,.1);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  opacity: 0; transform: translateY(20px);
}
.hs-i { display: flex; flex-direction: column; gap: 4px; }
.hs-l { font-family: var(--fm); font-size: .66rem; letter-spacing: .15em; text-transform: uppercase; color: var(--g2); }
.hs-v {
  font-family: var(--fd); font-weight: 800; font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1; letter-spacing: -.04em;
}
.hs-v em { color: var(--y); font-style: normal; }
.hs-v .unit { color: var(--g3); font-weight: 500; font-size: .55em; margin-left: 4px; }

/* ────────────────────────── TICKER BAND (yellow) ────────────────────────── */
.ticker {
  background: var(--y); color: var(--bk);
  padding: 32px 0; overflow: hidden;
  position: relative; border-top: 1px solid rgba(7,7,13,.15); border-bottom: 1px solid rgba(7,7,13,.15);
}
.ticker-row { display: flex; white-space: nowrap; animation: ticker 35s linear infinite; }
@keyframes ticker { to { transform: translateX(-50%); } }
.ticker-i {
  display: inline-flex; align-items: center; gap: 28px; padding: 0 28px;
  font-family: var(--fd); font-weight: 800; font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  letter-spacing: -.02em;
}
.ticker-i .star { color: var(--bl); font-size: .8em; }

/* ────────────────────────── SECTIONS BASE ────────────────────────── */
section { position: relative; }
.sec { padding: 140px 40px; }
.sec-wrap { max-width: 1240px; margin: 0 auto; }
.sec-dark { background: var(--bk); color: #fff; position: relative; overflow: hidden; }
.sec-dark::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(245,183,49,.18), transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 80%, rgba(74,82,225,.25), transparent 60%);
}
.sec-dark::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(245,183,49,.1) 1px, transparent 1px);
  background-size: 32px 32px; opacity: .5;
}
.sec-dark > * { position: relative; z-index: 2; }
.sec-paper { background: var(--paper); }
.sec-sand { background: var(--sand); }

.eyebrow {
  font-family: var(--fm); font-size: .72rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--g2);
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 24px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: currentColor; }
.eyebrow .num { font-family: var(--fd); font-weight: 700; color: var(--bk); }
.sec-dark .eyebrow { color: rgba(255,255,255,.5); }
.sec-dark .eyebrow .num { color: var(--y); }

.headline {
  font-family: var(--fd); font-weight: 800;
  font-size: clamp(2.4rem, 4.8vw, 4.2rem); line-height: .96;
  letter-spacing: -.045em; margin-bottom: 24px;
}
.headline em {
  font-style: normal;
  background: linear-gradient(120deg, #F5B731, #FBBF24);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.headline .it { font-style: italic; font-weight: 300; color: var(--g2); }
.sec-dark .headline { color: #fff; }
.sec-dark .headline .it { color: rgba(255,255,255,.45); }
.sec-dark .headline em {
  background: linear-gradient(120deg, #F5B731, #FBDA61);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead { font-size: 1.05rem; color: var(--g1); line-height: 1.65; max-width: 520px; }
.sec-dark .lead { color: rgba(255,255,255,.7); }

/* Reveals */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s var(--ease), transform .9s var(--ease); will-change: transform, opacity; }
.reveal-l { opacity: 0; transform: translateX(-40px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-r { opacity: 0; transform: translateX(40px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-scale { opacity: 0; transform: scale(.92); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in, .reveal-l.in, .reveal-r.in, .reveal-scale.in { opacity: 1; transform: none; }

/* ────────────────────────── PILLARS (3 services) ────────────────────────── */
.pillars-sec { background: var(--bk); color: #fff; padding: 140px 0; position: relative; overflow: hidden; }
.pillars-sec::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 25% 35%, rgba(245,183,49,.18), transparent 60%),
    radial-gradient(ellipse 50% 50% at 75% 65%, rgba(74,82,225,.25), transparent 60%);
}
.pillars-head {
  max-width: 1240px; margin: 0 auto 80px; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end;
  position: relative; z-index: 2;
}
.pillars {
  max-width: 1240px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  position: relative; z-index: 2;
}
.pillar {
  position: relative; padding: 40px 32px;
  border-left: 1px solid rgba(255,255,255,.08);
  display: flex; flex-direction: column; gap: 24px;
  transition: background .35s var(--ease);
}
.pillar:hover { background: rgba(245,183,49,.06); }
.pillar:last-child { border-right: 1px solid rgba(255,255,255,.08); }
.pillar-num {
  font-family: var(--fd); font-weight: 800; font-size: 6rem; line-height: .8;
  background: linear-gradient(180deg, var(--y), transparent);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; opacity: .6;
}
.pillar-t {
  font-family: var(--fd); font-weight: 800; font-size: 1.8rem;
  line-height: 1.05; letter-spacing: -.03em;
}
.pillar-t em { color: var(--y); font-style: normal; }
.pillar-d { font-size: .95rem; color: rgba(255,255,255,.65); line-height: 1.65; }
.pillar-link {
  margin-top: auto; padding-top: 20px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--fd); font-weight: 700; font-size: .82rem;
  color: var(--y);
}
.pillar-link svg { transition: transform .3s; }
.pillar:hover .pillar-link svg { transform: translateX(6px); }

/* ────────────────────────── SERVICES BENTO ────────────────────────── */
.srv-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 64px; }
.sg {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 16px;
}
.sc {
  position: relative; border-radius: var(--r-lg); padding: 36px;
  background: #fff; border: 1px solid var(--brd);
  transition: transform .35s var(--ease), box-shadow .4s, border-color .25s;
  will-change: transform; overflow: hidden;
  display: flex; flex-direction: column;
}
.sc:hover { transform: translateY(-6px); box-shadow: var(--sh-card); }
.sc-shine {
  position: absolute; inset: 0; pointer-events: none; opacity: 0;
  transition: opacity .3s;
  background: radial-gradient(circle 250px at var(--mx,50%) var(--my,50%), rgba(245,183,49,.18), transparent 60%);
}
.sc:hover .sc-shine { opacity: 1; }

/* Featured big card (left, 4 columns wide, 2 rows tall) */
.sc-feat {
  grid-column: span 4; grid-row: span 2;
  background: linear-gradient(165deg, #07070D 0%, #1C1C2A 100%);
  color: #fff; border-color: transparent;
}
.sc-feat .sc-shine { background: radial-gradient(circle 320px at var(--mx,50%) var(--my,50%), rgba(245,183,49,.2), transparent 60%); }
.sc-feat:hover { box-shadow: var(--sh-bk); }
.sc-feat-inner { display: grid; grid-template-columns: 1fr .9fr; gap: 40px; height: 100%; }
/* Featured card — realistic site preview */
.sc-feat-mock {
  position: relative; align-self: center;
  background: #FAF8F2; border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 30px 60px -16px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.1);
  transform: rotate(-2deg);
  transition: transform .5s var(--ease);
}
.sc-feat:hover .sc-feat-mock { transform: rotate(0deg); }

.bw-chrome {
  background: #EFECE2; padding: 8px 12px;
  display: flex; align-items: center; gap: 6px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.bw-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.bw-dot.r { background: #FF5F57; }
.bw-dot.y { background: #FEBC2E; }
.bw-dot.g { background: #28C840; }
.bw-url {
  flex: 1; background: #fff; border-radius: 6px;
  padding: 4px 10px; margin-left: 12px;
  font-size: .54rem; color: #555; display: flex; align-items: center; gap: 4px;
  font-family: var(--fm);
}
.bw-url svg { color: #555; width: 8px; height: 8px; }

.bw-page { background: #FAF8F2; color: #0A0A0F; }
.bw-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px; border-bottom: 1px solid rgba(0,0,0,.05);
}
.bw-logo { display: flex; align-items: center; gap: 4px; font-family: var(--fd); font-weight: 800; font-size: .58rem; }
.bw-logo-d { width: 8px; height: 8px; border-radius: 50%; background: #F5B731; }
.bw-nav-links { display: flex; align-items: center; gap: 5px; }
.bw-nav-links span { width: 18px; height: 4px; background: rgba(0,0,0,.12); border-radius: 2px; }
.bw-nav-cta { width: 24px !important; height: 10px !important; background: #0A0A0F !important; border-radius: 5px !important; }

.bw-hero {
  display: grid; grid-template-columns: 1.1fr 1fr;
  padding: 12px 12px 8px; gap: 10px; align-items: center;
}
.bw-chip {
  display: inline-block;
  font-size: .42rem; font-family: var(--fm); letter-spacing: .1em;
  background: rgba(245,183,49,.22); color: #92580A;
  padding: 2px 6px; border-radius: 4px;
  margin-bottom: 6px;
}
.bw-h1 {
  font-family: var(--fd); font-weight: 800; font-size: .82rem;
  line-height: 1.05; letter-spacing: -.03em; color: #0A0A0F;
  margin-bottom: 5px;
}
.bw-p { height: 3px; background: rgba(0,0,0,.12); border-radius: 2px; margin-top: 3px; }
.bw-p.short { width: 70%; }
.bw-actions { display: flex; gap: 4px; margin-top: 7px; }
.bw-btn-y {
  background: #F5B731; color: #0A0A0F;
  font-size: .48rem; font-family: var(--fd); font-weight: 700;
  padding: 3px 7px; border-radius: 8px;
}
.bw-btn-ol {
  background: transparent; color: #0A0A0F; border: 1px solid rgba(0,0,0,.18);
  font-size: .48rem; font-family: var(--fd); font-weight: 600;
  padding: 3px 7px; border-radius: 8px;
}
.bw-hero-r { aspect-ratio: 1 / 1; border-radius: 8px; overflow: hidden; }
.bw-hero-img { width: 100%; height: 100%; }

.bw-prods {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 6px; padding: 0 12px 12px;
}
.bw-prod {
  background: #fff; border: 1px solid rgba(0,0,0,.05);
  border-radius: 6px; padding: 5px;
}
.bw-prod-img {
  width: 100%; aspect-ratio: 4/3; border-radius: 4px;
  margin-bottom: 4px;
}
.bw-prod-n { font-family: var(--fd); font-weight: 700; font-size: .5rem; }
.bw-prod-p { font-size: .46rem; color: #F5B731; font-weight: 700; font-family: var(--fd); margin-top: 1px; }

/* Right column — 2 stacked cards (each 2 wide × 1 tall) */
.sc-card {
  grid-column: span 2; grid-row: span 1;
  background: #fff;
}

/* The pricing strip card */
.sc-price { font-family: var(--fd); font-weight: 800; font-size: 2.4rem; line-height: 1; color: var(--y); margin-bottom: 4px; }
.sc-feat .sc-price { font-size: 3.4rem; color: #fff; }
.sc-note { font-size: .72rem; color: var(--g3); }
.sc-feat .sc-note { color: rgba(255,255,255,.45); }

.sc-tag {
  align-self: flex-start;
  font-family: var(--fm); font-size: .65rem; letter-spacing: .15em;
  text-transform: uppercase; padding: 5px 10px; border-radius: var(--r-full);
  background: var(--y-mid); color: var(--y-dark); margin-bottom: 16px;
}
.sc-feat .sc-tag { background: rgba(245,183,49,.18); color: var(--y); }

.sc-n {
  font-family: var(--fd); font-weight: 800;
  font-size: 1.5rem; line-height: 1.05; letter-spacing: -.02em; margin-bottom: 10px;
}
.sc-feat .sc-n { font-size: 2.2rem; }
.sc-d { font-size: .9rem; color: var(--g2); line-height: 1.55; margin-bottom: 22px; max-width: 360px; }
.sc-feat .sc-d { color: rgba(255,255,255,.65); font-size: 1.02rem; }

.sc-fl {
  list-style: none; margin: auto 0 24px; padding-top: 16px;
  border-top: 1px solid var(--brd);
  display: flex; flex-direction: column; gap: 10px;
}
.sc-feat .sc-fl { border-color: rgba(255,255,255,.1); }
.sc-fl li { display: flex; gap: 10px; font-size: .85rem; color: var(--g1); line-height: 1.4; }
.sc-feat .sc-fl li { color: rgba(255,255,255,.85); }
.sc-fl li svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; color: var(--bl); }
.sc-feat .sc-fl li svg { color: var(--y); }

.sc-cta {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 14px 22px; border-radius: var(--r-full);
  background: var(--bk); color: #fff;
  font-family: var(--fd); font-weight: 700; font-size: .85rem;
  transition: all .3s;
}
.sc-cta:hover { background: var(--y); color: var(--bk); transform: translateX(4px); }
.sc-cta svg { width: 14px; height: 14px; transition: transform .3s; }
.sc-cta:hover svg { transform: translateX(2px); }
.sc-feat .sc-cta { background: var(--y); color: var(--bk); }
.sc-feat .sc-cta:hover { background: #fff; }

/* ────────────────────────── AI AGENTS ────────────────────────── */
.ai-head { text-align: left; max-width: 720px; margin-bottom: 80px; }
.ai-wrap {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: center;
}
.ai-list { display: flex; flex-direction: column; gap: 12px; }
.ai-item {
  display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 16px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md); padding: 18px 22px;
  transition: all .35s var(--ease); cursor: pointer;
  position: relative; overflow: hidden;
}
.ai-item:hover, .ai-item.on {
  background: rgba(245,183,49,.06);
  border-color: rgba(245,183,49,.4);
  transform: translateX(6px);
}
.ai-item.on::before {
  content: ''; position: absolute; left: 0; top: 20%; bottom: 20%; width: 3px;
  background: var(--y); border-radius: 0 2px 2px 0;
}
.ai-ico { width: 44px; height: 44px; border-radius: 11px; background: rgba(245,183,49,.15); display: flex; align-items: center; justify-content: center; transition: background .3s; }
.ai-ico svg { width: 20px; height: 20px; color: var(--y); }
.ai-item.on .ai-ico { background: var(--y); }
.ai-item.on .ai-ico svg { color: var(--bk); }
.ai-nm { font-family: var(--fd); font-weight: 700; font-size: .98rem; color: #fff; margin-bottom: 4px; letter-spacing: -.01em; }
.ai-for { font-size: .76rem; color: rgba(255,255,255,.5); }
.ai-demo-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem; font-weight: 700; color: var(--y);
  padding: 5px 0; transition: all .25s; font-family: var(--fd);
  margin-top: 6px;
}
.ai-demo-btn svg { width: 11px; height: 11px; transition: transform .25s; }
.ai-demo-btn:hover { color: #fff; }
.ai-demo-btn:hover svg { transform: translateX(3px); }
.ai-pr {
  font-family: var(--fd); font-weight: 800; font-size: .85rem;
  color: var(--y); white-space: nowrap;
}

/* AI visual — phone mockup */
.ai-phone-stage { position: relative; height: 640px; perspective: 1400px; }
.ai-phone {
  width: 320px; aspect-ratio: 9/19;
  background: #07070D; border-radius: 42px; padding: 12px;
  box-shadow: 0 60px 100px -20px rgba(7,7,13,.5), 0 0 0 1px rgba(255,255,255,.06);
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%) rotateY(-12deg) rotateX(4deg);
  transition: transform .6s var(--ease);
  transform-style: preserve-3d;
}
.ai-phone:hover { transform: translate(-50%, -50%) rotateY(-6deg) rotateX(2deg); }
.ai-phone::before {
  content: ''; position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 24px; background: #07070D; border-radius: 0 0 12px 12px; z-index: 2;
}
.ai-screen {
  background: #fff; border-radius: 30px; height: 100%; overflow: hidden;
  display: flex; flex-direction: column;
}
.ai-tophead {
  padding: 38px 16px 12px; display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--brd);
}
.ai-tophead-av {
  width: 32px; height: 32px; border-radius: 50%; background: var(--y);
  display: flex; align-items: center; justify-content: center;
}
.ai-tophead-n { font-family: var(--fd); font-weight: 700; font-size: .82rem; }
.ai-tophead-s { font-size: .66rem; color: #16a34a; display: flex; align-items: center; gap: 4px; }
.ai-tophead-s::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #22c55e; }
.ai-chat { flex: 1; padding: 14px; display: flex; flex-direction: column; gap: 8px; overflow: hidden; }
.cm { padding: 9px 13px; border-radius: 14px; font-size: .76rem; line-height: 1.4; max-width: 80%; }
.cu { background: var(--bl); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.cb { background: rgba(245,183,49,.18); color: var(--bk); border-bottom-left-radius: 4px; }
.cty { display: flex; gap: 4px; padding: 9px 12px; background: rgba(245,183,49,.18); border-radius: 12px; width: fit-content; border-bottom-left-radius: 4px; align-items: center; align-self: flex-start; }
.td { width: 5px; height: 5px; background: var(--y); border-radius: 50%; animation: tda 1.2s infinite; }
.td:nth-child(2) { animation-delay: .15s; } .td:nth-child(3) { animation-delay: .3s; }
@keyframes tda { 0%,80%,100% { transform: translateY(0); opacity: .4; } 40% { transform: translateY(-6px); opacity: 1; } }
.ai-input {
  padding: 12px 14px; border-top: 1px solid var(--brd);
  display: flex; align-items: center; gap: 8px;
  font-size: .76rem; color: var(--g3);
}
.ai-input::before { content: ''; flex: 1; height: 32px; border-radius: 16px; background: var(--paper); }

/* Floating glass cards around phone */
.ai-glass {
  position: absolute; z-index: 3;
  background: rgba(255,255,255,.85); backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--r-md); padding: 16px;
  box-shadow: 0 20px 50px -10px rgba(7,7,13,.3);
  color: var(--bk);
}
.ai-glass.gs1 { top: 8%; right: 4%; width: 200px; animation: f-a 7s ease-in-out infinite; }
.ai-glass.gs2 { bottom: 10%; left: 0%; width: 220px; animation: f-b 8s ease-in-out infinite; }
.ai-glass-l { font-family: var(--fm); font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; color: var(--bl); margin-bottom: 8px; }
.ai-glass-v { font-family: var(--fd); font-weight: 800; font-size: 2.2rem; line-height: 1; }
.ai-glass-s { font-size: .68rem; color: var(--g2); margin-top: 4px; }
.ai-glass-bar { height: 5px; background: rgba(7,7,13,.08); border-radius: 3px; margin-top: 12px; overflow: hidden; }
.ai-glass-bar::after { content: ''; display: block; height: 100%; width: 78%; background: linear-gradient(90deg, var(--y), var(--bl)); border-radius: 3px; }

/* ────────────────────────── POS ────────────────────────── */
.pos-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 80px; }
.pos-wrap { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: center; }
.pos-feats { display: flex; flex-direction: column; gap: 14px; }
.pf {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 24px; border-radius: var(--r-md);
  background: #fff; border: 1px solid var(--brd);
  transition: all .35s var(--ease);
}
.pf:hover { border-color: var(--y); transform: translateX(8px); box-shadow: 0 14px 36px -10px rgba(245,183,49,.3); }
.pf-num {
  font-family: var(--fm); font-size: .68rem; font-weight: 700;
  color: var(--g3); padding-top: 4px; min-width: 24px;
}
.pf-t { font-family: var(--fd); font-weight: 700; font-size: 1.05rem; margin-bottom: 6px; letter-spacing: -.01em; }
.pf-d { font-size: .88rem; color: var(--g2); line-height: 1.55; }

/* 3D laptop */
.pos-stage { perspective: 1800px; perspective-origin: 50% 30%; }
.pos-3d { transform: rotateX(8deg) rotateY(-12deg); transform-style: preserve-3d; transition: transform .6s var(--ease); }
.pos-stage:hover .pos-3d { transform: rotateX(4deg) rotateY(-6deg); }
.pos-mock {
  background: #07070D; padding: 16px; border-radius: 20px 20px 6px 6px;
  box-shadow: 0 80px 120px -24px rgba(7,7,13,.5), 0 40px 80px -40px rgba(7,7,13,.3);
  border: 1px solid rgba(255,255,255,.05); position: relative;
}
.pos-mock::after {
  content: ''; position: absolute; bottom: -16px; left: -3%; right: -3%; height: 16px;
  background: linear-gradient(180deg, #1C1C2A 0%, #0a0a0f 100%);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,.4);
}
.pos-screen { background: #fff; border-radius: 10px; overflow: hidden; }
.pos-bar { height: 5px; background: linear-gradient(90deg, var(--y), var(--y2), var(--bl)); }
.pos-tabs { display: flex; border-bottom: 1px solid var(--brd); padding: 0 8px; }
.pos-tab {
  flex: 1; padding: 16px 14px; font-family: var(--fd);
  font-size: .78rem; font-weight: 700; text-align: center;
  color: var(--g2); transition: all .25s;
  border-bottom: 2px solid transparent;
}
.pos-tab.active { color: var(--bk); border-bottom-color: var(--y); }
.pos-content { padding: 24px; min-height: 360px; background: var(--paper); }
.pos-panel { display: none; }
.pos-panel.active { display: block; animation: panel-in .35s ease; }
@keyframes panel-in { from { opacity: 0; transform: translateY(8px); } }
.pos-hd { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.pos-hdt { font-family: var(--fd); font-weight: 700; font-size: .92rem; }
.pos-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #f0fdf4; border: 1px solid #bbf7d0; color: #16a34a;
  font-size: .66rem; font-weight: 700; padding: 4px 10px; border-radius: var(--r-full);
}
.pos-bdot { width: 5px; height: 5px; background: #22c55e; border-radius: 50%; animation: dot-pulse 2s infinite; }
.pos-items { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.pos-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 14px; background: #fff; border-radius: 10px; transition: background .2s;
}
.pos-row:hover { background: var(--y-soft); }
.pos-rn { font-size: .82rem; font-weight: 500; }
.pos-rq { font-size: .7rem; color: var(--g2); margin-top: 1px; }
.pos-rp { font-family: var(--fd); font-weight: 700; color: var(--bl); font-size: .86rem; }
.pos-div { height: 1px; background: var(--brd); margin: 14px 0; }
.pos-tot { display: flex; justify-content: space-between; align-items: baseline; }
.pos-tl { font-size: .82rem; color: var(--g2); }
.pos-ta { font-family: var(--fd); font-weight: 800; font-size: 2rem; }
.pos-btn {
  width: 100%; margin-top: 14px;
  background: var(--bk); color: #fff;
  padding: 14px; border-radius: var(--r-md);
  font-family: var(--fd); font-weight: 700; font-size: .88rem;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all .3s;
}
.pos-btn:hover { background: var(--y); color: var(--bk); transform: translateY(-2px); }

.inv-search { display: flex; gap: 8px; margin-bottom: 14px; }
.inv-inp { flex: 1; padding: 10px 14px; border: 1px solid var(--brd); border-radius: 8px; font-family: var(--fb); font-size: .8rem; outline: none; background: #fff; }
.inv-inp:focus { border-color: var(--y); }
.inv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.inv-item { background: #fff; border-radius: 10px; padding: 12px; border: 1px solid var(--brd); transition: all .25s; }
.inv-item:hover { border-color: var(--y); transform: translateY(-2px); }
.inv-n { font-size: .82rem; font-weight: 600; margin-bottom: 4px; }
.inv-s { font-size: .72rem; color: var(--g2); display: flex; justify-content: space-between; align-items: center; }
.ibadge { font-size: .62rem; font-weight: 700; padding: 2px 7px; border-radius: 4px; }
.iok { background: #f0fdf4; color: #16a34a; }
.ilow { background: #fef9c3; color: #a16207; }
.iout { background: #fef2f2; color: #dc2626; }
.rep-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.rep-kpi { background: #fff; border-radius: 10px; padding: 14px; border: 1px solid var(--brd); }
.rep-kpi-l { font-size: .66rem; color: var(--g2); margin-bottom: 4px; font-weight: 600; }
.rep-kpi-v { font-family: var(--fd); font-weight: 800; font-size: 1.5rem; letter-spacing: -.02em; }
.rep-kpi-c { font-size: .66rem; color: #16a34a; margin-top: 2px; font-weight: 600; }
.rep-chart { background: #fff; border-radius: 10px; padding: 14px; border: 1px solid var(--brd); }
.rep-chart-t { font-size: .72rem; font-weight: 600; color: var(--g2); margin-bottom: 12px; }
.bars { display: flex; align-items: flex-end; gap: 6px; height: 90px; }
.bar-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.bar { width: 100%; border-radius: 3px 3px 0 0; }
.bar-l { font-size: .6rem; color: var(--g2); }

/* ────────────────────────── POS CTA BAND ────────────────────────── */
.pos-cta-band {
  background: var(--y); padding: 100px 40px; position: relative; overflow: hidden;
}
.pos-cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 100% 50%, rgba(7,7,13,.08), transparent);
}
.pos-cta-inner {
  max-width: 1240px; margin: 0 auto; position: relative;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center;
}
.pos-cta-h {
  font-family: var(--fd); font-weight: 800;
  font-size: clamp(2.4rem, 4.4vw, 3.6rem); line-height: 1; letter-spacing: -.04em;
  margin-bottom: 20px;
}
.pos-cta-h em { font-style: italic; font-weight: 300; }
.pos-cta-d { font-size: 1.05rem; color: rgba(7,7,13,.7); line-height: 1.65; margin-bottom: 28px; max-width: 480px; }
.pos-cta-price-box {
  background: var(--bk); color: #fff; padding: 32px;
  border-radius: var(--r-lg); text-align: center;
  position: relative;
}
.pos-cta-price-l { font-family: var(--fm); font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 10px; }
.pos-cta-price { font-family: var(--fd); font-weight: 800; font-size: 3rem; line-height: 1; color: var(--y); margin-bottom: 6px; }
.pos-cta-price small { font-size: .35em; color: rgba(255,255,255,.55); font-weight: 500; }
.pos-cta-sub { font-size: .76rem; color: rgba(255,255,255,.6); margin-bottom: 22px; }

/* ────────────────────────── PLANS ────────────────────────── */
.plans-head { text-align: center; max-width: 720px; margin: 0 auto 80px; }
.plans-head .eyebrow { justify-content: center; }
.plans-head .lead { margin: 0 auto; }
.plg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; }
.pl {
  position: relative; border-radius: var(--r-lg); padding: 40px 32px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  transition: transform .35s var(--ease), box-shadow .4s, border-color .25s;
  will-change: transform; display: flex; flex-direction: column;
  overflow: hidden;
}
.pl::before {
  content: ''; position: absolute; inset: -1px; border-radius: var(--r-lg);
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,.15) 50%, transparent 70%);
  z-index: -1; opacity: 0; transition: opacity .4s;
}
.pl:hover { transform: translateY(-10px); border-color: rgba(255,255,255,.2); }
.pl:hover::before { opacity: 1; }
.pl-feat {
  background:
    radial-gradient(ellipse 100% 50% at 50% 0%, rgba(245,183,49,.18), transparent 70%),
    rgba(255,255,255,.04);
  border-color: rgba(245,183,49,.45);
  padding-top: 60px;
  box-shadow: 0 30px 80px -20px rgba(245,183,49,.3);
}
.pl-feat:hover { box-shadow: 0 40px 100px -20px rgba(245,183,49,.45); }
.pl-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--y); color: var(--bk);
  font-family: var(--fd); font-weight: 800; font-size: .7rem; letter-spacing: .06em;
  text-transform: uppercase; padding: 7px 18px; border-radius: var(--r-full);
  box-shadow: 0 10px 24px -6px rgba(245,183,49,.7);
  white-space: nowrap; line-height: 1;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 6px;
}
.pl-badge::before {
  content: '★'; font-size: .85em;
}
.pl-n { font-family: var(--fd); font-weight: 800; font-size: 1.3rem; color: #fff; letter-spacing: -.02em; margin-bottom: 10px; }
.pl-d { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.5; margin-bottom: 28px; }
.pl-p { font-family: var(--fd); font-weight: 800; font-size: 2.8rem; line-height: 1; color: #fff; margin-bottom: 4px; letter-spacing: -.03em; }
.pl-p small { font-size: .85rem; font-weight: 500; color: rgba(255,255,255,.5); }
.pl-fl {
  list-style: none; margin: 28px 0; padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex; flex-direction: column; gap: 12px; flex: 1;
}
.pl-fl li { display: flex; gap: 10px; font-size: .88rem; color: rgba(255,255,255,.88); line-height: 1.45; }
.pl-fl li svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; color: #22c55e; }
.pl-feat .pl-fl li svg { color: var(--y); }
.pl-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px; border-radius: var(--r-full);
  background: rgba(255,255,255,.08); color: #fff;
  border: 1px solid rgba(255,255,255,.16);
  font-family: var(--fd); font-weight: 700; font-size: .88rem;
  transition: all .3s;
}
.pl-cta:hover { background: #fff; color: var(--bk); border-color: transparent; transform: translateY(-2px); }
.pl-feat .pl-cta { background: var(--y); color: var(--bk); border-color: transparent; box-shadow: 0 10px 24px -6px rgba(245,183,49,.55); }
.pl-feat .pl-cta:hover { background: #fff; box-shadow: 0 16px 36px -8px rgba(245,183,49,.7); }

/* ────────────────────────── WHY (4-up grid) ────────────────────────── */
.why-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 80px; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.wi {
  background: #fff; border: 1px solid var(--brd);
  border-radius: var(--r-md); padding: 36px 28px;
  transition: all .35s var(--ease);
  display: flex; flex-direction: column; gap: 16px;
}
.wi:hover { transform: translateY(-6px); border-color: var(--y); box-shadow: 0 18px 40px -10px rgba(245,183,49,.3); }
.wi-ico { width: 48px; height: 48px; border-radius: 12px; background: var(--y); display: flex; align-items: center; justify-content: center; }
.wi-ico svg { width: 22px; height: 22px; color: var(--bk); }
.wi-t { font-family: var(--fd); font-weight: 700; font-size: 1.1rem; letter-spacing: -.02em; }
.wi-d { font-size: .9rem; color: var(--g2); line-height: 1.55; }
.wi-num { font-family: var(--fm); font-size: .7rem; color: var(--g3); margin-top: auto; }

/* ────────────────────────── CTA FINAL ────────────────────────── */
.cta-sec {
  background: var(--bk); padding: 180px 40px;
  position: relative; overflow: hidden; color: #fff;
}
.cta-sec::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 30% 50%, rgba(74,82,225,.35), transparent 60%),
    radial-gradient(ellipse 50% 50% at 75% 50%, rgba(245,183,49,.28), transparent 60%);
}
.cta-sec::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(245,183,49,.15) 1px, transparent 1px);
  background-size: 36px 36px; opacity: .35;
}
.cta-inner { position: relative; z-index: 2; max-width: 1240px; margin: 0 auto; text-align: center; }
.cta-t {
  font-family: var(--fd); font-weight: 800;
  font-size: clamp(3rem, 6.4vw, 6rem); line-height: .98;
  letter-spacing: -.045em; color: #fff; margin-bottom: 28px;
}
.cta-t em {
  font-style: normal;
  background: linear-gradient(120deg, #F5B731 0%, #FBDA61 50%, #818CF8 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.cta-t .it { font-style: italic; font-weight: 300; color: rgba(255,255,255,.5); }
.cta-d { font-size: 1.1rem; color: rgba(255,255,255,.65); max-width: 540px; margin: 0 auto 52px; line-height: 1.6; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-meta {
  display: flex; gap: 48px; justify-content: center; flex-wrap: wrap;
  margin-top: 80px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.08);
}
.cta-meta > div { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: rgba(255,255,255,.6); font-family: var(--fm); letter-spacing: .03em; }
.cta-meta > div::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--y); }

/* ────────────────────────── FOOTER ────────────────────────── */
footer {
  background: var(--bk); color: #fff;
  padding: 100px 40px 40px; position: relative;
  border-top: 1px solid rgba(255,255,255,.05);
}
.f-cta {
  max-width: 1240px; margin: 0 auto 80px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg); padding: 48px;
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
}
.f-cta-t { font-family: var(--fd); font-weight: 800; font-size: 1.8rem; line-height: 1.1; letter-spacing: -.03em; }
.f-cta-t em { color: var(--y); font-style: normal; }
.f-cta-d { font-size: .92rem; color: rgba(255,255,255,.5); margin-top: 8px; }
.fg {
  display: grid; grid-template-columns: 2.4fr 1fr 1fr 1fr; gap: 56px;
  margin-bottom: 56px; max-width: 1240px; margin-left: auto; margin-right: auto;
}
.fb-brand p { font-size: .88rem; color: rgba(255,255,255,.45); line-height: 1.65; max-width: 320px; margin-top: 22px; }
.fb-brand .logo-t { color: #fff; font-size: 1.4rem; }
.fc-t { font-family: var(--fd); font-weight: 700; font-size: .76rem; margin-bottom: 22px; color: rgba(255,255,255,.4); letter-spacing: .12em; text-transform: uppercase; }
.fl { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.fl a { font-size: .9rem; color: rgba(255,255,255,.55); transition: color .2s; }
.fl a:hover { color: var(--y); }
.fb-bottom {
  max-width: 1240px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.06); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.fb-copy { font-size: .76rem; color: rgba(255,255,255,.3); font-family: var(--fm); letter-spacing: .03em; }
.fb-copy em { color: var(--y); font-style: normal; }

/* ────────────────────────── BRAND ACCENTS (blue + yellow) ────────────────────────── */
/* Heading underlines + dividers */
.eyebrow::before { background: linear-gradient(90deg, var(--bl), var(--y)); height: 2px; }
.sec-dark .eyebrow::before { background: linear-gradient(90deg, var(--y), var(--bl2)); }

/* Selection */
::selection { background: var(--y); color: var(--bk); }

/* Focus ring (accessibility + brand) */
:focus-visible { outline: 2px solid var(--bl); outline-offset: 3px; border-radius: 4px; }

/* Stat numbers — alternating accent */
.hs-i:nth-child(1) .hs-v em, .hs-i:nth-child(3) .hs-v em { color: var(--y); }
.hs-i:nth-child(2) .hs-v em, .hs-i:nth-child(4) .hs-v em { color: var(--bl); }
.hs-i:nth-child(2) .hs-v em, .hs-i:nth-child(2) .hs-v { color: var(--bl); }
.hs-i:nth-child(4) .hs-v em { color: var(--bl); }

/* Footer accent stripe */
footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--bl) 0%, var(--y) 50%, var(--bl) 100%);
}

/* WhyItem icons alternate yellow/blue */
.wi:nth-child(2) .wi-ico, .wi:nth-child(4) .wi-ico { background: var(--bl); }
.wi:nth-child(2) .wi-ico svg, .wi:nth-child(4) .wi-ico svg { color: #fff; }
.wi:nth-child(2):hover, .wi:nth-child(4):hover {
  border-color: var(--bl); box-shadow: 0 18px 40px -10px rgba(74,82,225,.3);
}

/* Pillars hover — blue accent on middle */
.pillar:nth-child(2):hover { background: rgba(74,82,225,.08); }
.pillar:nth-child(2) .pillar-num { background: linear-gradient(180deg, var(--bl2), transparent); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.pillar:nth-child(2) .pillar-link { color: var(--bl2); }
.pillar:nth-child(2) .pillar-t em { color: var(--bl2); }

/* POS feature numbers — colored accent */
.pf:nth-child(odd) .pf-num { color: var(--y-dark); font-weight: 800; }
.pf:nth-child(even) .pf-num { color: var(--bl); font-weight: 800; }
.pf:nth-child(even):hover { border-color: var(--bl); box-shadow: 0 14px 36px -10px rgba(74,82,225,.3); background: var(--bl-soft); }

/* Service card icons — alternating */
.sc:not(.sc-feat) .sc-tag { background: var(--bl-soft); color: var(--bl); }

/* Plan-list checks: yellow accent on featured, blue on starter, green-stays */
.pl:first-child .pl-fl li svg { color: var(--bl); }

.wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 9500;
  width: 58px; height: 58px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 36px -6px rgba(37,211,102,.5);
  animation: wap 3s ease-in-out infinite;
  transition: transform .3s;
}
.wa:hover { transform: scale(1.1); }
.wa svg { width: 28px; height: 28px; }
@keyframes wap {
  0%,100% { box-shadow: 0 12px 36px -6px rgba(37,211,102,.4); }
  50% { box-shadow: 0 16px 56px -4px rgba(37,211,102,.6), 0 0 0 14px rgba(37,211,102,.06); }
}

/* ────────────────────────── RESPONSIVE ────────────────────────── */
/* ──── TABLET / SMALL DESKTOP (≤1100px) ──── */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-stage { height: 480px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .srv-head, .pos-head, .why-head, .pillars-head { grid-template-columns: 1fr; gap: 24px; }
  .sg { grid-template-columns: repeat(2, 1fr); }
  .sc-feat { grid-column: span 2; grid-row: span 1; }
  .sc-feat-inner { grid-template-columns: 1fr; }
  .sc-feat-mock { max-width: 480px; margin: 16px auto 0; transform: rotate(0deg); }
  .ai-wrap, .pos-wrap, .pos-cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .pillars { grid-template-columns: 1fr; gap: 16px; }
  .pillar { border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-md); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .plg { grid-template-columns: 1fr; max-width: 480px; }
  .pl-feat { padding-top: 64px; }
  .fg { grid-template-columns: 1.5fr 1fr 1fr; }
  .fb-brand { grid-column: 1 / -1; }
  .f-cta { grid-template-columns: 1fr; text-align: center; }
  .f-cta-t { font-size: 1.5rem; }
}

/* ──── TABLET PORTRAIT (≤960px) — hide desktop nav, show burger ──── */
@media (max-width: 960px) {
  .nl { display: none; }
  .mb-tog { display: inline-flex; background: rgba(7,7,13,.05); }
  nav { padding: 10px 10px 10px 20px; }
  nav.dark-mode .mb-tog { background: rgba(255,255,255,.08); color: #fff; }
  .ncta { padding: 9px 16px !important; font-size: .78rem; }
  .sec { padding: 100px 32px; }
  .pillars-head, .pillars { padding: 0 32px; }
  .pos-cta-band { padding: 80px 32px; }
  .cta-sec { padding: 120px 32px; }
  footer { padding: 80px 32px 32px; }
  .hero { padding: 100px 32px 60px; }
}
/* ──── MOBILE (≤768px) ──── */
@media (max-width: 768px) {
  nav { padding: 8px 8px 8px 16px; gap: 8px; top: 12px; width: calc(100% - 24px); }
  .ncta { padding: 8px 14px !important; font-size: .74rem; }
  .logo-t { font-size: 1rem; }
  .hero { padding: 90px 20px 50px; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 14px; padding-top: 40px; margin-bottom: 28px; font-size: .62rem; }
  .hero-meta .hm-l, .hero-meta .hm-r { gap: 16px; flex-wrap: wrap; }
  .hero-stage { height: 360px; }
  .hbadge { font-size: .7rem; padding: 8px 12px; }
  .hb1 { top: 4%; left: 0; } .hb2 { bottom: 6%; right: 0; } .hb3 { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 36px; padding-top: 28px; }
  .hs-v { font-size: 1.8rem; }
  .h-actions { width: 100%; flex-direction: column; }
  .h-actions .btn { width: 100%; justify-content: center; }
  .h-title { font-size: clamp(3rem, 11vw, 4.4rem); }

  .sec { padding: 80px 20px; }
  .pillars-sec { padding: 80px 0; }
  .pillars-head, .pillars { padding: 0 20px; }
  .pillar { padding: 32px 24px; }
  .pillar-num { font-size: 4rem; }
  .pillar-t { font-size: 1.4rem; }
  .pos-cta-band { padding: 70px 20px; }
  .cta-sec { padding: 100px 20px; }
  footer { padding: 70px 20px 30px; }
  .ticker { padding: 24px 0; }
  .ticker-i { font-size: 1.3rem; padding: 0 16px; gap: 16px; }

  /* SERVICES bento → 1 column */
  .sg { grid-template-columns: 1fr; }
  .sc { padding: 28px 22px; }
  .sc-feat { grid-column: 1; grid-row: span 1; padding: 28px 22px; }
  .sc-feat .sc-n { font-size: 1.6rem; }
  .sc-feat .sc-price { font-size: 2.6rem; }
  .sc-feat-mock { max-width: 100%; }

  /* AI section */
  .ai-list { gap: 10px; }
  .ai-item { padding: 14px 16px; gap: 12px; grid-template-columns: 44px 1fr; }
  .ai-item:hover, .ai-item.on { transform: none; }
  .ai-item.on { background: rgba(245,183,49,.1); }
  .ai-pr { grid-column: 1 / -1; text-align: right; font-size: .9rem; }
  .ai-pr br { display: none; }
  .ai-pr span { display: inline; margin-left: 4px; }
  .ai-phone-stage { height: 560px; }
  .ai-phone { transform: translate(-50%,-50%) scale(.92); }
  .ai-phone:hover { transform: translate(-50%,-50%) scale(.92); }
  .ai-glass.gs1 { right: 0; width: 170px; padding: 12px; }
  .ai-glass.gs2 { left: 0; width: 180px; padding: 12px; }
  .ai-glass-v { font-size: 1.8rem; }

  /* POS */
  .pf { padding: 18px; gap: 14px; }
  .pf:hover { transform: none; }
  .pos-stage { padding: 0 8px; }
  .pos-3d { transform: none; }
  .pos-stage:hover .pos-3d { transform: none; }
  .pos-mock { padding: 12px; border-radius: 14px 14px 4px 4px; }
  .pos-content { padding: 16px; min-height: 320px; }
  .pos-tab { padding: 12px 8px; font-size: .72rem; }
  .pos-ta { font-size: 1.7rem; }
  .inv-grid, .rep-kpis { grid-template-columns: 1fr 1fr; gap: 8px; }

  /* POS CTA band */
  .pos-cta-inner { gap: 32px; }
  .pos-cta-price-box { padding: 24px; }
  .pos-cta-price { font-size: 2.5rem; }
  .pos-cta-h { font-size: 2rem; }

  /* PLANS */
  .pl { padding: 36px 26px; }
  .pl-feat { padding-top: 56px; }
  .pl-badge { font-size: .65rem; padding: 6px 14px; }

  /* WHY */
  .why-grid { grid-template-columns: 1fr; gap: 12px; }
  .wi { padding: 28px 22px; }

  /* CTA final */
  .cta-meta { gap: 24px; margin-top: 50px; padding-top: 28px; }
  .cta-meta > div { font-size: .82rem; }

  /* FOOTER */
  .f-cta { padding: 28px; margin-bottom: 56px; }
  .f-cta-t { font-size: 1.3rem; }
  .fg { grid-template-columns: 1fr 1fr; gap: 28px; }
  .fb-brand { grid-column: 1 / -1; }
  .fb-bottom { flex-direction: column; align-items: flex-start; }

  /* WhatsApp button — move up so it doesn't cover the chat widget */
  .wa { bottom: 84px; right: 16px; width: 52px; height: 52px; }
  .wa svg { width: 24px; height: 24px; }
}

/* ──── SMALL MOBILE (≤480px) ──── */
@media (max-width: 480px) {
  nav { padding: 7px 7px 7px 14px; }
  .logo-m { width: 26px; height: 26px; }
  .logo-t { font-size: .92rem; }
  .ncta { padding: 7px 12px !important; font-size: .7rem; }
  .ncta svg { display: none; }

  .hero-meta { font-size: .58rem; }
  .h-title { font-size: clamp(2.6rem, 11vw, 3.6rem); }
  .h-sub { font-size: .96rem; }
  .hero-stage { height: 320px; }
  .monkey-img { width: 240px; }
  .hbadge { font-size: .64rem; padding: 6px 10px; gap: 8px; }
  .hbadge .hb-l { font-size: .58rem; }
  .hbadge .hb-v { font-size: .72rem; }
  .hb-ico { width: 22px; height: 22px; }
  .hb-ico svg { width: 10px; height: 10px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 14px; }
  .hs-v { font-size: 1.5rem; }
  .hs-l { font-size: .58rem; }

  .headline { font-size: clamp(2rem, 9vw, 2.8rem); }
  .lead { font-size: .92rem; }
  .pillar-num { font-size: 3.4rem; }
  .pillar-t { font-size: 1.2rem; }

  .ticker-i { font-size: 1.1rem; padding: 0 12px; gap: 12px; }
  .ai-glass.gs1, .ai-glass.gs2 { width: 150px; padding: 10px; }
  .ai-glass-v { font-size: 1.5rem; }
  .ai-glass-l { font-size: .56rem; }
  .ai-phone { width: 270px; }

  .cta-t { font-size: clamp(2.2rem, 9.5vw, 3rem); }
  .cta-d { font-size: .94rem; }

  .fg { grid-template-columns: 1fr; }
}

/* Mobile menu — refined */
#mb-menu { padding: 100px 28px 40px; gap: 8px; overflow-y: auto; }
#mb-menu a {
  font-size: clamp(1.8rem, 7vw, 2.4rem);
  line-height: 1.1; padding: 6px 0;
}
@media (max-height: 640px) {
  #mb-menu a { font-size: 1.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
