/* ==========================================================================
   COGNITO — Premium Conversion Website
   Design system adapted from the reference build:
   light hero · blue band · light grid · dark close
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Light */
  --white: #ffffff;
  --paper: #f4f5f7;
  --paper-2: #eceef2;
  --ink: #0b0d14;
  --ink-2: #5b6373;
  --ink-3: #8b92a3;
  --hairline: #e6e8ee;

  /* Brand blue */
  --blue: #2f64f5;
  --blue-deep: #1f49c4;
  --blue-ink: #102a7a;
  --cyan: #2fd3ff;

  /* Dark */
  --dark: #0a0b0f;
  --dark-2: #0e0f14;
  --dark-card: #15161c;
  --dark-card-2: #191b22;
  --dark-line: rgba(255,255,255,0.08);
  --dark-line-2: rgba(255,255,255,0.14);
  --d-text: #f3f5fa;
  --d-text-2: #9aa1b3;
  --d-text-3: #686f80;

  --accent: #ff6a3d;
  --green: #0a9d62;

  --container: 1200px;
  --radius: 16px;
  --radius-lg: 24px;
  --pill: 100px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-card: 0 12px 40px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 20px 60px rgba(15, 23, 42, 0.12);
  --shadow-dark: 0 30px 70px rgba(0, 0, 0, 0.5);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 110px; overflow-x: hidden; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
h1,h2,h3,h4,h5 { font-family: 'Sora', sans-serif; font-weight: 700; line-height: 1.05; letter-spacing: -0.025em; }
::selection { background: var(--blue); color: #fff; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #eceef2; }
::-webkit-scrollbar-thumb { background: #c4c9d4; border-radius: 10px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
[hidden], .hidden { display: none !important; }
.section { padding: 110px 0; }
.section-sm { padding: 80px 0; }

/* ---------- Badges / eyebrows ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 7px 14px; border-radius: var(--pill);
  border: 1px solid var(--hairline); color: var(--ink-2); background: #fff;
}
.badge svg { width: 13px; height: 13px; }
.badge .spark { color: var(--blue); }
.badge.on-dark { background: rgba(255,255,255,.05); border-color: var(--dark-line-2); color: var(--d-text-2); }
.badge.on-dark .dot, .badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.badge.bottleneck { color: #ff8a63; }
.badge.results .dot { background: var(--cyan); box-shadow: 0 0 10px var(--cyan); animation: pulse 1.8s infinite; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 14px 13px 22px; font-weight: 600; font-size: 0.95rem;
  border-radius: var(--pill); transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .3s;
  white-space: nowrap; overflow: hidden; will-change: transform;
}
.btn .ico { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; transition: transform .4s var(--ease); }
.btn .ico svg { width: 15px; height: 15px; }
.btn:hover .ico { transform: rotate(-45deg); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 10px 26px rgba(47,100,245,.35); }
.btn-primary .ico { background: rgba(255,255,255,.2); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(47,100,245,.5); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark .ico { background: rgba(255,255,255,.16); }
.btn-dark:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light .ico { background: rgba(11,13,20,.08); }
.btn-light:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.18); }
.btn-outline { padding: 13px 24px; border: 1px solid var(--hairline); color: var(--ink); background: #fff; }
.btn-outline:hover { transform: translateY(-3px); border-color: var(--ink); }
.btn-outline-d { padding: 13px 24px; border: 1px solid var(--dark-line-2); color: #fff; background: transparent; }
.btn-outline-d:hover { transform: translateY(-3px); background: rgba(255,255,255,.06); }
.btn-block { width: 100%; justify-content: center; padding-left: 22px; padding-right: 22px; }
.btn-lg { padding: 16px 16px 16px 28px; font-size: 1.02rem; }
.btn-lg .ico { width: 34px; height: 34px; }
.btn::after {
  content:''; position:absolute; top:0; left:-120%; width:60%; height:100%;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,.25), transparent);
  transform: skewX(-20deg); transition: left .7s var(--ease);
}
.btn:hover::after { left: 150%; }

.text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .9rem; border-bottom: 1px solid currentColor; padding-bottom: 3px; transition: gap .3s; }
.text-link:hover { gap: 12px; }

/* ==========================================================================
   FLOATING PILL NAV
   ========================================================================== */
.nav { position: fixed; top: 20px; left: 0; right: 0; z-index: 1000; padding: 0 20px; transition: top .4s var(--ease); }
.nav-inner {
  max-width: 980px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  background: rgba(12, 13, 18, 0.86); backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--pill); padding: 8px 8px 8px 18px;
  box-shadow: 0 14px 40px rgba(8,10,18,.28); transition: max-width .4s var(--ease), box-shadow .4s;
}
.nav.scrolled { top: 12px; }
.nav.scrolled .nav-inner { max-width: 920px; box-shadow: 0 18px 50px rgba(8,10,18,.4); }
.brand { display: flex; align-items: center; gap: 11px; color: #fff; font-family: 'Sora'; font-weight: 700; font-size: 1.08rem; }
.brand-mark { width: 44px; height: 44px; border-radius: 11px; background: #fff; display: grid; place-items: center; overflow: hidden; flex-shrink: 0; box-shadow: 0 4px 14px rgba(47,100,245,.25); }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.brand small { display: none; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { position: relative; padding: 8px 14px; font-size: .88rem; font-weight: 500; color: var(--d-text-2); border-radius: var(--pill); transition: color .3s, background .3s; }
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,.08); }
.nav-cta { display: flex; align-items: center; gap: 8px; }
.nav .btn-primary { padding: 9px 18px; font-size: .85rem; }
.nav .btn-primary .ico { display: none; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 9px; }
.nav-toggle span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { position: fixed; inset: 0; z-index: 999; background: radial-gradient(130% 70% at 100% 0%, rgba(47,100,245,.22), transparent 55%), rgba(8,10,16,.99); backdrop-filter: blur(24px); display: flex; flex-direction: column; justify-content: flex-start; padding: 104px 26px 38px; opacity: 0; pointer-events: none; transition: opacity .35s var(--ease); }
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mm-links { display: flex; flex-direction: column; }
.mm-links a { display: flex; align-items: center; justify-content: space-between; font-family: 'Sora'; font-weight: 600; font-size: 1.5rem; color: #fff; padding: 19px 4px; border-bottom: 1px solid rgba(255,255,255,.09); opacity: 0; transform: translateX(-20px); transition: opacity .45s var(--ease), transform .45s var(--ease), color .25s; }
.mm-links a::after { content: ''; width: 9px; height: 9px; border-right: 2px solid rgba(255,255,255,.35); border-top: 2px solid rgba(255,255,255,.35); transform: rotate(45deg); transition: border-color .25s, transform .25s; }
.mm-links a:hover, .mm-links a.active { color: var(--blue); }
.mm-links a:hover::after, .mm-links a.active::after { border-color: var(--blue); transform: rotate(45deg) translate(2px,-2px); }
.mobile-menu.open .mm-links a { opacity: 1; transform: none; }
.mobile-menu.open .mm-links a:nth-child(1) { transition-delay: .06s; }
.mobile-menu.open .mm-links a:nth-child(2) { transition-delay: .12s; }
.mobile-menu.open .mm-links a:nth-child(3) { transition-delay: .18s; }
.mobile-menu.open .mm-links a:nth-child(4) { transition-delay: .24s; }
.mobile-menu.open .mm-links a:nth-child(5) { transition-delay: .30s; }
.mm-cta { margin-top: 30px; justify-content: center; opacity: 0; transform: translateY(16px); transition: opacity .5s .34s var(--ease), transform .5s .34s var(--ease); }
.mobile-menu.open .mm-cta { opacity: 1; transform: none; }
.mm-foot { margin-top: auto; padding-top: 30px; display: flex; flex-direction: column; gap: 16px; opacity: 0; transition: opacity .5s .42s var(--ease); }
.mobile-menu.open .mm-foot { opacity: 1; }
.mm-contact { display: flex; align-items: center; gap: 11px; color: var(--d-text-2); font-size: .95rem; font-weight: 500; }
.mm-contact svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; }
.mm-contact:hover { color: #fff; }
.mm-socials { display: flex; gap: 12px; margin-top: 4px; }
.mm-socials a { width: 44px; height: 44px; border-radius: 13px; border: 1px solid rgba(255,255,255,.14); display: grid; place-items: center; color: #fff; transition: background .25s, transform .25s, border-color .25s; }
.mm-socials a:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-3px); }
.mm-socials svg { width: 19px; height: 19px; }

/* ==========================================================================
   HERO (light, split, photo bleeds right)
   ========================================================================== */
.hero { position: relative; background: var(--white); padding: 150px 0 80px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-inner { position: relative; z-index: 2; max-width: 620px; }
.hero h1 { font-size: clamp(2.6rem, 5.4vw, 4.4rem); color: var(--ink); margin: 24px 0 22px; font-weight: 700; }
.hero h1 em { font-style: normal; color: var(--blue); }
.hero .sub { font-size: 1.08rem; color: var(--ink-2); max-width: 520px; margin-bottom: 32px; }
.hero-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 12px; }
.avatars { display: flex; }
.avatars img { width: 36px; height: 36px; border-radius: 50%; border: 2px solid #fff; object-fit: cover; margin-left: -10px; }
.avatars img:first-child { margin-left: 0; }
.hero-trust .stars { color: #ffb23f; font-size: .85rem; letter-spacing: 1px; }
.hero-trust small { display: block; color: var(--ink-3); font-size: .76rem; }
.hero-mini-icons { display: flex; gap: 14px; margin-top: 48px; flex-wrap: wrap; }
.hero-mini-icons span { display: inline-flex; align-items: center; gap: 8px; height: 34px; padding: 0 12px; border-radius: 9px; border: 1px solid var(--hairline); color: var(--ink-3); font-size: .78rem; font-weight: 600; transition: color .3s, border-color .3s, transform .3s; }
.hero-mini-icons span:hover { color: var(--blue); border-color: var(--blue); transform: translateY(-3px); }
.hero-mini-icons svg { width: 16px; height: 16px; }

.hero-visual { position: relative; width: 100%; max-width: 460px; margin-left: auto; z-index: 1; }
.hero-photo {
  position: relative; width: 100%; aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-photo::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(11,13,20,.34)); pointer-events: none; }
.hero-name { position: absolute; left: 16px; bottom: 16px; z-index: 4; display: flex; flex-direction: column; gap: 1px; padding: 9px 15px; background: rgba(255,255,255,.9); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.6); border-radius: 13px; box-shadow: 0 10px 26px rgba(8,10,18,.22); }
.hero-name b { font-family: 'Sora'; font-weight: 700; font-size: .95rem; color: var(--ink); line-height: 1.15; }
.hero-name span { font-size: .74rem; font-weight: 500; color: var(--ink-2); }
.hero-float {
  position: absolute; z-index: 3; background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border: 1px solid var(--hairline); border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow-card);
  display: flex; align-items: center; gap: 11px;
}
.hero-float .hf-ic { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; flex-shrink: 0; }
.hero-float .hf-ic svg { width: 18px; height: 18px; }
.hero-float b { font-size: .9rem; display: block; color: var(--ink); }
.hero-float small { font-size: .74rem; color: var(--ink-3); }
.hf-1 { top: 28px; left: -18px; animation: floaty 5s ease-in-out infinite; }
.hf-2 { bottom: 32px; right: -18px; animation: floaty 6.5s ease-in-out infinite reverse; }

/* Hero ranking visual (google-ranking.png) */
.hero-rank { position: relative; width: 100%; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); transition: transform .5s var(--ease); will-change: transform; }
.hero-rank img { width: 100%; height: auto; display: block; }
.hero-float-img { position: absolute; z-index: 4; border-radius: 16px; overflow: hidden; background: #fff; border: 1px solid rgba(255,255,255,.75); box-shadow: var(--shadow-card); }
.hero-float-img img { width: 100%; height: auto; display: block; }
.hf-analytics { width: 250px; left: -46px; bottom: 42px; }
.drift { animation: floaty 6s ease-in-out infinite; }

/* ==========================================================================
   BLUE BAND
   ========================================================================== */
.blue-band { background: var(--blue); color: #fff; padding: 64px 0; position: relative; overflow: hidden; }
.blue-band::before { content:''; position:absolute; inset:0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.10) 1px, transparent 0); background-size: 26px 26px; opacity: .6; }
.blue-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr 1fr; gap: 56px; align-items: start; }
.blue-grid h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 700; margin-bottom: 28px; max-width: 520px; line-height: 1.15; }
.bb-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.bb-card { background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.16); border-radius: 14px; padding: 18px 16px; transition: transform .4s var(--ease), background .3s; }
.bb-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.18); }
.bb-card .bb-ic { width: 34px; height: 34px; border-radius: 9px; background: rgba(255,255,255,.18); display: grid; place-items: center; margin-bottom: 30px; }
.bb-card .bb-ic svg { width: 17px; height: 17px; color: #fff; }
.bb-card h4 { font-size: .92rem; font-weight: 600; margin-bottom: 16px; line-height: 1.3; }
.bb-card a { font-size: .76rem; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; padding: 7px 13px; background: rgba(255,255,255,.16); border-radius: var(--pill); transition: gap .3s, background .3s; }
.bb-card a:hover { gap: 10px; background: rgba(255,255,255,.28); }
.bb-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 28px; padding-top: 4px; }
.bb-stat .n { font-family: 'Sora'; font-weight: 800; font-size: clamp(2rem, 3.4vw, 2.9rem); line-height: 1; }
.bb-stat p { color: rgba(255,255,255,.8); font-size: .8rem; margin-top: 8px; max-width: 180px; }

/* ==========================================================================
   LIGHT "VISIONARY" SECTION
   ========================================================================== */
.visionary { background: var(--paper); padding: 96px 0; }
.vis-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 44px; }
.vis-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.7rem); max-width: 640px; font-weight: 600; line-height: 1.12; }
.vis-head h2 .muted { color: var(--ink-3); }
.vis-grid { display: grid; grid-template-columns: 1fr 1.15fr 1fr; gap: 18px; align-items: stretch; }
.vis-card { background: #fff; border: 1px solid var(--hairline); border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; transition: transform .45s var(--ease), box-shadow .4s; }
.vis-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.vis-card .vc-title { font-family: 'Sora'; font-weight: 600; font-size: 1.05rem; margin-bottom: 12px; }
.vis-card .vc-text { color: var(--ink-2); font-size: .9rem; }
.vis-author { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 28px; }
.vis-author img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.vis-author b { display: block; font-size: .85rem; }
.vis-author small { color: var(--ink-3); font-size: .76rem; }
.vis-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 340px; }
.vis-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vis-media .vm-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,10,16,.35), rgba(8,10,16,.85)); }
.vis-media .vm-label { position: absolute; top: 22px; left: 22px; z-index: 2; color: #fff; font-family: 'Sora'; font-weight: 600; }
.vis-media .vm-tag { position: absolute; bottom: 22px; left: 22px; z-index: 2; color: rgba(255,255,255,.8); font-size: .8rem; }
.vis-metric { text-align: center; align-items: center; }
.vis-metric .vm-cap { color: var(--ink-3); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.vis-metric .vm-sub { font-family: 'Sora'; font-weight: 600; font-size: 1.05rem; margin-top: 4px; }
.ring { width: 168px; height: 168px; position: relative; margin: 22px auto; }
.ring svg { transform: rotate(-90deg); }
.ring .ring-track { stroke: var(--paper-2); }
.ring .ring-fg { stroke: url(#rg); stroke-linecap: round; transition: stroke-dashoffset 1.6s var(--ease); }
.ring .ring-rings { position: absolute; inset: 0; }
.ring .ring-num { position: absolute; inset: 0; display: grid; place-items: center; font-family: 'Sora'; font-weight: 800; font-size: 2rem; color: var(--ink); }

/* ==========================================================================
   DARK BOTTLENECK (bento)
   ========================================================================== */
.dark-sec { background: var(--dark); color: var(--d-text); padding: 110px 0; position: relative; }
.dark-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.dark-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin: 20px 0 16px; color: #fff; }
.dark-head p { color: var(--d-text-2); }
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.cell { background: var(--dark-card); border: 1px solid var(--dark-line); border-radius: var(--radius); padding: 22px; min-height: 132px; transition: transform .4s var(--ease), border-color .3s, background .3s; position: relative; overflow: hidden; }
.cell:hover { transform: translateY(-5px); border-color: var(--dark-line-2); }
.cell.skel { display: flex; flex-direction: column; justify-content: center; gap: 9px; }
.cell.skel i { display: block; height: 8px; border-radius: 5px; background: rgba(255,255,255,.06); }
.cell.skel i.w80 { width: 80%; } .cell.skel i.w60 { width: 60%; } .cell.skel i.w40 { width: 40%; }
.cell.lit { background: var(--dark-card-2); border-color: var(--dark-line-2); }
.cell .c-tag { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--accent); display: inline-flex; align-items: center; gap: 7px; margin-bottom: 12px; }
.cell .c-tag svg { width: 14px; height: 14px; }
.cell h4 { font-size: .96rem; color: #fff; margin-bottom: 7px; line-height: 1.3; }
.cell p { font-size: .82rem; color: var(--d-text-2); }
.cell p b { color: var(--cyan); font-weight: 600; }
.cell.span2 { grid-column: span 2; }
.cell .c-glow { position: absolute; width: 140px; height: 140px; border-radius: 50%; background: var(--blue); filter: blur(60px); opacity: .14; right: -40px; bottom: -40px; }
.cell.fix .c-tag { color: var(--cyan); }
.cell.fix .c-glow { background: var(--cyan); }

/* ==========================================================================
   TRUST LOGOS (dark)
   ========================================================================== */
.trust { background: var(--dark); padding: 30px 0 80px; text-align: center; }
.trust .label { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--d-text-3); margin-bottom: 26px; }
.trust-row { display: flex; justify-content: center; align-items: center; gap: 52px; flex-wrap: wrap; }
.trust-row span { display: inline-flex; align-items: center; gap: 9px; font-family: 'Sora'; font-weight: 600; font-size: 1.05rem; color: var(--d-text-3); transition: color .3s; }
.trust-row span:hover { color: var(--d-text); }
.trust-row svg { width: 18px; height: 18px; }

/* ==========================================================================
   SERVICES strip (dark cards)
   ========================================================================== */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-card { position: relative; background: var(--dark-card); border: 1px solid var(--dark-line); border-radius: var(--radius-lg); padding: 30px 28px; overflow: hidden; transition: transform .5s var(--ease), border-color .4s, box-shadow .4s; }
.svc-card::after { content:''; position:absolute; width: 260px; height: 260px; background: radial-gradient(circle, rgba(47,100,245,.18), transparent 70%); top: var(--my,50%); left: var(--mx,50%); transform: translate(-50%,-50%); opacity: 0; transition: opacity .4s; pointer-events: none; }
.svc-card:hover { transform: translateY(-8px); border-color: var(--dark-line-2); box-shadow: var(--shadow-dark); }
.svc-card:hover::after { opacity: 1; }
.svc-num { position: absolute; top: 26px; right: 28px; font-family: 'Sora'; font-weight: 800; color: var(--d-text-3); opacity: .4; }
.svc-ic { width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 20px; background: linear-gradient(135deg, rgba(47,100,245,.22), rgba(47,211,255,.1)); border: 1px solid var(--dark-line-2); transition: transform .5s var(--ease-bounce); }
.svc-card:hover .svc-ic { transform: scale(1.1) rotate(-6deg); }
.svc-ic svg { width: 26px; height: 26px; color: #6f9bff; }
.svc-card h3 { color: #fff; font-size: 1.22rem; margin-bottom: 10px; }
.svc-card p { color: var(--d-text-2); font-size: .92rem; margin-bottom: 16px; }
.svc-card .s-link { font-size: .84rem; font-weight: 600; color: #6f9bff; display: inline-flex; align-items: center; gap: 6px; transition: gap .3s; }
.svc-card:hover .s-link { gap: 11px; }
.svc-card ul { margin-top: 4px; }
.svc-card ul li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; color: var(--d-text-2); font-size: .88rem; }
.svc-card ul li svg { width: 16px; height: 16px; color: #6f9bff; flex-shrink: 0; margin-top: 3px; }

/* ==========================================================================
   STEPS (light)
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { background: #fff; border: 1px solid var(--hairline); border-radius: var(--radius-lg); padding: 28px 24px; transition: transform .45s var(--ease), box-shadow .4s; }
.step:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
.step-n { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; font-family: 'Sora'; font-weight: 800; font-size: 1.25rem; background: var(--blue); color: #fff; margin-bottom: 20px; box-shadow: 0 8px 22px rgba(47,100,245,.35); }
.step-n svg { width: 24px; height: 24px; color: #fff; }
.step h4 { font-size: 1.08rem; margin-bottom: 9px; }
.step p { color: var(--ink-2); font-size: .9rem; }

/* ==========================================================================
   BENEFITS (light, 3-up feature cards)
   ========================================================================== */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.benefit-card { background: #fff; border: 1px solid var(--hairline); border-radius: var(--radius-lg); padding: 32px 28px; transition: transform .45s var(--ease), box-shadow .4s, border-color .3s; }
.benefit-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); border-color: rgba(47,100,245,.28); }
.benefit-ic { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 22px; background: linear-gradient(135deg, rgba(47,100,245,.12), rgba(47,211,255,.08)); border: 1px solid var(--hairline); }
.benefit-ic svg { width: 26px; height: 26px; color: var(--blue); }
.benefit-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.benefit-card p { color: var(--ink-2); font-size: .93rem; }

/* ==========================================================================
   "WHY" FLOW (horizontal steps with arrows)
   ========================================================================== */
.flow { display: flex; align-items: stretch; justify-content: center; gap: 6px; flex-wrap: wrap; }
.flow-step { flex: 1 1 150px; max-width: 200px; background: #fff; border: 1px solid var(--hairline); border-radius: var(--radius); padding: 20px 16px; text-align: center; position: relative; transition: transform .4s var(--ease), box-shadow .4s; }
.flow-step:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.flow-step .fs-ic { width: 42px; height: 42px; border-radius: 12px; margin: 0 auto 12px; display: grid; place-items: center; background: rgba(47,100,245,.1); }
.flow-step .fs-ic svg { width: 20px; height: 20px; color: var(--blue); }
.flow-step h5 { font-size: .92rem; font-family: 'Sora'; font-weight: 600; color: var(--ink); }
.flow-step:last-child { border-color: rgba(255,106,61,.4); background: linear-gradient(180deg,#fff,rgba(255,106,61,.05)); }
.flow-step:last-child .fs-ic { background: rgba(255,106,61,.12); }
.flow-step:last-child .fs-ic svg { color: var(--accent); }
.flow-arrow { display: flex; align-items: center; color: var(--ink-3); flex-shrink: 0; }
.flow-arrow svg { width: 22px; height: 22px; }

/* ==========================================================================
   TESTIMONIALS (scrolling marquee)
   ========================================================================== */
.t-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.t-marquee + .t-marquee { margin-top: 20px; }
.t-track { display: flex; gap: 20px; width: max-content; animation: tscroll 60s linear infinite; will-change: transform; }
.t-track.rev { animation-direction: reverse; animation-duration: 72s; }
.t-marquee:hover .t-track { animation-play-state: paused; }
.t-track .tcard { width: 360px; flex-shrink: 0; }
.tcard { background: #fff; border: 1px solid var(--hairline); border-radius: var(--radius); padding: 26px; transition: box-shadow .3s, transform .3s, border-color .3s; }
.tcard:hover { box-shadow: var(--shadow-card); transform: translateY(-6px); border-color: rgba(47,100,245,.3); }
.tcard .stars { color: #ffb23f; letter-spacing: 1px; font-size: .85rem; margin-bottom: 12px; }
.tcard p { color: var(--ink); font-size: .9rem; margin-bottom: 16px; }
.tcard .ta { display: flex; align-items: center; gap: 11px; }
.tcard .ta img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.tcard .ta b { display: block; font-size: .85rem; }
.tcard .ta small { color: var(--ink-3); font-size: .76rem; }
.tcard .g-badge { display: inline-flex; align-items: center; gap: 5px; margin-left: auto; font-size: .7rem; font-weight: 600; color: var(--ink-3); }
.tcard .g-badge svg { width: 15px; height: 15px; }

/* review stat strip */
.review-stats { display: flex; justify-content: center; flex-wrap: wrap; gap: 44px; margin-top: 46px; }
.review-stat { text-align: center; }
.review-stat b { display: block; font-family: 'Sora'; font-weight: 800; font-size: 2.2rem; color: var(--ink); line-height: 1; }
.review-stat span { font-size: .82rem; color: var(--ink-2); }

/* ==========================================================================
   DARK CTA
   ========================================================================== */
.cta-sec { background: var(--dark); padding: 100px 0; }
.cta { position: relative; border-radius: 28px; padding: 84px 40px; text-align: center; overflow: hidden; background: #0f1016; border: 1px solid var(--dark-line); }
.cta .grad { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(47,100,245,.5) 0%, rgba(20,22,40,0) 38%), linear-gradient(300deg, rgba(255,106,61,.45) 0%, rgba(20,22,40,0) 40%); }
.cta .grad2 { position: absolute; left: 50%; bottom: -60%; transform: translateX(-50%); width: 120%; height: 120%; background: radial-gradient(ellipse at center, rgba(47,100,245,.55), transparent 60%); filter: blur(20px); }
.cta > * { position: relative; z-index: 2; }
.cta h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); color: #fff; margin: 22px auto 16px; max-width: 660px; }
.cta p { color: var(--d-text-2); max-width: 500px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-foot { display: flex; gap: 30px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }
.cta-foot span { display: flex; align-items: center; gap: 9px; color: var(--d-text-2); font-size: .84rem; }
.cta-foot b { color: #fff; font-family: 'Sora'; }
.cta-foot svg { width: 16px; height: 16px; color: var(--cyan); }

/* ==========================================================================
   FOOTER (dark)
   ========================================================================== */
.footer { background: var(--dark-2); color: var(--d-text); border-top: 1px solid var(--dark-line); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--dark-line); }
.footer .brand { margin-bottom: 18px; font-size: 1.15rem; }
.footer .brand-mark { width: 52px; height: 52px; border-radius: 13px; }
.footer .brand small { display: block; font-size: 8px; letter-spacing: .2em; color: var(--d-text-3); font-family: 'Inter'; font-weight: 600; }
.footer-col p { color: var(--d-text-2); font-size: .9rem; max-width: 300px; margin-bottom: 20px; }
.footer-col h5 { font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--d-text-3); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul a { color: var(--d-text-2); font-size: .9rem; transition: color .3s, padding-left .3s; }
.footer-col ul a:hover { color: #fff; padding-left: 5px; }
.socials { display: flex; gap: 9px; }
.socials a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--dark-line); display: grid; place-items: center; color: var(--d-text-2); transition: transform .3s, background .3s, border-color .3s, color .3s; }
.socials a:hover { transform: translateY(-4px); background: var(--blue); border-color: var(--blue); color: #fff; }
.socials svg { width: 17px; height: 17px; }
.contact-mini { display: flex; flex-direction: column; gap: 11px; }
.contact-mini a { display: flex; align-items: center; gap: 10px; color: var(--d-text-2); font-size: .88rem; transition: color .3s; }
.contact-mini a:hover { color: var(--cyan); }
.contact-mini svg { width: 15px; height: 15px; color: #6f9bff; flex-shrink: 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: var(--d-text-3); font-size: .82rem; }
.footer-bottom .legal { display: flex; gap: 20px; }
.footer-bottom .legal a { color: var(--d-text-3); font-size: .82rem; transition: color .3s; }
.footer-bottom .legal a:hover { color: #fff; }

/* ==========================================================================
   INTERIOR PAGES
   ========================================================================== */
.page-hero { position: relative; background: var(--white); padding: 170px 0 70px; text-align: center; overflow: hidden; }
.page-hero h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); margin: 22px 0 16px; color: var(--ink); }
.page-hero p { color: var(--ink-2); font-size: 1.08rem; max-width: 600px; margin: 0 auto; }
.crumb { display: inline-flex; gap: 8px; font-size: .82rem; color: var(--ink-3); margin-top: 24px; }
.crumb a:hover { color: var(--ink); }
.page-hero .glow-blob { position: absolute; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(47,100,245,.14), transparent 70%); top: -160px; right: -120px; }

.sec-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.sec-head h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); margin: 18px 0 14px; }
.sec-head p { color: var(--ink-2); }
.sec-head.on-dark h2 { color: #fff; }
.sec-head.on-dark p { color: var(--d-text-2); }
.text-blue { color: var(--blue); }
.bg-paper { background: var(--paper); }
.bg-dark { background: var(--dark); }

/* ==========================================================================
   PRICING TIERS (dark premium, 4-up)
   ========================================================================== */
.tiers { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--dark-card); border: 1px solid var(--dark-line); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-dark); }
.tier { padding: 38px 28px; border-left: 1px solid var(--dark-line); display: flex; flex-direction: column; transition: background .4s var(--ease); position: relative; }
.tier:first-child { border-left: none; }
.tier:hover { background: var(--dark-card-2); }
.tier.pop { background: rgba(47,100,245,.07); }
.tier.vip::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, #f2c869, #d99a2b); }
.tier-badge { align-self: flex-start; font-size: .66rem; font-weight: 700; letter-spacing: .05em; padding: 6px 12px; border-radius: var(--pill); border: 1px solid; margin-bottom: 22px; }
.tier-badge.one { color: #6f9bff; border-color: rgba(111,155,255,.4); }
.tier-badge.pp { color: #fff; background: var(--blue); border-color: var(--blue); }
.tier-badge.vp { color: #ecc06a; border-color: rgba(236,192,106,.45); }
.tier-badge.gr { color: #4be0a0; border-color: rgba(75,224,160,.4); }
.tier h3 { color: #fff; font-size: 1.3rem; margin-bottom: 16px; line-height: 1.15; }
.tier .amt { font-family: 'Sora'; font-weight: 800; font-size: 2.7rem; line-height: 1; color: #fff; }
.tier .amt.blue { background: linear-gradient(180deg, #6fa1ff, #2f64f5); -webkit-background-clip: text; background-clip: text; color: transparent; }
.tier .amt.gold { background: linear-gradient(180deg, #f4cf7e, #d99a2b); -webkit-background-clip: text; background-clip: text; color: transparent; }
.tier .amt.green { background: linear-gradient(180deg, #7bedbf, #0a9d62); -webkit-background-clip: text; background-clip: text; color: transparent; }
.tier .amt small { font-size: 1rem; font-weight: 500; -webkit-text-fill-color: var(--d-text-3); color: var(--d-text-3); }
.tier .amt-sub { color: var(--d-text-2); font-size: .86rem; margin-top: 10px; }
.tier .t-hr { height: 1px; background: var(--dark-line); margin: 24px 0; }
.tier ul { margin-bottom: 26px; flex-grow: 1; }
.tier ul li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; color: var(--d-text-2); font-size: .87rem; }
.tier ul li svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px; }
.tier ul li.bonus { color: #ecc06a; }
.tier ul li.plus { color: #fff; font-weight: 600; }
.tier.one ul li svg, .tier.pop ul li svg { color: #6f9bff; }
.tier.vip ul li svg { color: #ecc06a; }
.tier.grw ul li svg { color: #4be0a0; }
.btn-gold { background: transparent; border: 1px solid #ecc06a; color: #ecc06a; }
.btn-gold:hover { background: rgba(236,192,106,.12); transform: translateY(-3px); }
.btn-green { background: transparent; border: 1px solid #4be0a0; color: #4be0a0; }
.btn-green:hover { background: rgba(75,224,160,.12); transform: translateY(-3px); }
.btn-blue-soft { background: rgba(255,255,255,.06); border: 1px solid var(--dark-line-2); color: #fff; }
.btn-blue-soft:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }

/* ==========================================================================
   "WHICH OPTION" cards
   ========================================================================== */
.options-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.option-card { background: #fff; border: 1px solid var(--hairline); border-radius: var(--radius-lg); padding: 30px; display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s, border-color .3s; }
.option-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: rgba(47,100,245,.28); }
.option-card .oc-tag { display: inline-flex; align-items: center; gap: 8px; font-family: 'Sora'; font-weight: 700; font-size: 1.08rem; color: var(--ink); margin-bottom: 10px; }
.option-card .oc-tag svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; }
.option-card p { color: var(--ink-2); font-size: .94rem; margin-bottom: 22px; flex-grow: 1; }
.option-card .btn { align-self: flex-start; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--hairline); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; background: #fff; transition: box-shadow .3s; }
.faq-item.open { box-shadow: var(--shadow-card); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 22px 24px; text-align: left; font-family: 'Sora'; font-weight: 600; font-size: 1.02rem; color: var(--ink); }
.faq-ic { width: 30px; height: 30px; border-radius: 9px; border: 1px solid var(--hairline); display: grid; place-items: center; flex-shrink: 0; transition: background .3s, border-color .3s; }
.faq-ic svg { width: 16px; height: 16px; transition: transform .4s; }
.faq-item.open .faq-ic { background: var(--blue); border-color: var(--blue); color: #fff; }
.faq-item.open .faq-ic svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a .faq-a-inner { padding: 0 24px 22px; color: var(--ink-2); font-size: .94rem; }
.faq-a p { color: var(--ink-2); font-size: .94rem; margin-bottom: 10px; }
.faq-a ol { padding-left: 20px; margin-top: 6px; }
.faq-a ol li { color: var(--ink-2); font-size: .94rem; margin-bottom: 6px; list-style: decimal; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; align-items: start; }
.info-card { background: #fff; border: 1px solid var(--hairline); border-radius: var(--radius); padding: 24px; margin-bottom: 14px; display: flex; gap: 16px; align-items: flex-start; transition: transform .4s var(--ease), box-shadow .3s; }
.info-card:hover { transform: translateX(6px); box-shadow: var(--shadow-card); }
.info-card .ic-ic { width: 48px; height: 48px; border-radius: 13px; background: rgba(47,100,245,.1); display: grid; place-items: center; flex-shrink: 0; }
.info-card .ic-ic svg { width: 22px; height: 22px; color: var(--blue); }
.info-card h4 { font-size: 1rem; margin-bottom: 4px; }
.info-card p, .info-card a { color: var(--ink-2); font-size: .9rem; }
.info-card a:hover { color: var(--blue); }
.info-card .ic-label { display: block; font-size: .74rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 4px; }
.info-card .ic-val { color: var(--ink); font-weight: 600; font-size: .95rem; word-break: break-word; }
.info-card .ic-val:hover { color: var(--blue); }
.contact-side { display: flex; flex-direction: column; gap: 16px; }

.form-card { background: #fff; border: 1px solid var(--hairline); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-card); }
.form-card h2 { font-size: clamp(1.5rem,2.6vw,2rem); }
.fc-sub { color: var(--ink-2); font-size: .92rem; margin: 6px 0 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: 8px; color: var(--ink-2); }
.field input, .field select, .field textarea { width: 100%; padding: 13px 15px; border-radius: 11px; background: var(--paper); border: 1px solid var(--hairline); color: var(--ink); font-family: inherit; font-size: .92rem; transition: border-color .3s, box-shadow .3s, background .3s; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(47,100,245,.12); }
.field textarea { resize: vertical; min-height: 120px; }

/* Booking calendar */
.booking-card { background: #fff; border: 1px solid var(--hairline); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-card); }
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 26px; }
.cal-shell { background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 20px; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cal-head b { font-family: 'Sora'; font-weight: 700; }
.cal-nav { display: flex; gap: 6px; }
.cal-nav button { width: 34px; height: 34px; border-radius: 10px; border: 1px solid var(--hairline); background: #fff; display: grid; place-items: center; color: var(--ink-2); transition: background .3s, color .3s; }
.cal-nav button:hover:not(:disabled) { background: var(--blue); color: #fff; border-color: var(--blue); }
.cal-nav button:disabled { opacity: .4; cursor: not-allowed; }
.cal-nav svg { width: 16px; height: 16px; }
.cal-dow { display: grid; grid-template-columns: repeat(7,1fr); gap: 6px; margin-bottom: 8px; text-align: center; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-3); }
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 6px; }
.cal-grid .cal-empty { aspect-ratio: 1; }
.cal-grid button { aspect-ratio: 1; display: grid; place-items: center; border-radius: 10px; font-size: .88rem; font-weight: 600; color: var(--ink); background: #fff; border: 1px solid transparent; transition: background .25s, color .25s; }
.cal-grid button:hover:not(:disabled) { background: rgba(47,100,245,.1); color: var(--blue); }
.cal-grid button:disabled { color: var(--ink-3); opacity: .4; cursor: not-allowed; background: transparent; }
.cal-grid button.is-selected { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(47,100,245,.35); }
.cal-hint { font-size: .78rem; color: var(--ink-3); margin-top: 12px; }
.cal-tz { font-size: .78rem; color: var(--ink-2); margin-top: 4px; font-weight: 500; }
.slots-title { font-size: .9rem; font-weight: 700; margin: 22px 0 8px; font-family: 'Sora'; }
.slots-prompt { font-size: .85rem; color: var(--ink-3); }
.slots-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 8px; }
.slots-grid.hidden { display: none; }
.slots-grid button { padding: 10px; border-radius: 10px; border: 1px solid var(--hairline); background: #fff; font-size: .85rem; font-weight: 600; color: var(--ink); transition: border-color .25s, color .25s, background .25s; }
.slots-grid button:hover { border-color: var(--blue); color: var(--blue); }
.slots-grid button.is-selected { border-color: var(--blue); background: rgba(47,100,245,.1); color: var(--blue); }

/* Form feedback */
.form-feedback { display: flex; align-items: flex-start; gap: 9px; margin-top: 14px; padding: 12px 15px; border-radius: 12px; font-size: .86rem; line-height: 1.45; border: 1px solid transparent; }
.form-feedback.hidden { display: none; }
.form-feedback::before { font-family: 'Sora'; font-weight: 700; flex-shrink: 0; }
.form-feedback--info { background: rgba(91,99,115,.08); border-color: rgba(91,99,115,.18); color: var(--ink-2); }
.form-feedback--info::before { content: 'ℹ'; }
.form-feedback--loading { background: rgba(47,100,245,.08); border-color: rgba(47,100,245,.2); color: var(--blue-deep); }
.form-feedback--loading::before { content: '⟳'; }
.form-feedback--success { background: rgba(10,157,98,.1); border-color: rgba(10,157,98,.28); color: #087a4c; }
.form-feedback--success::before { content: '✓'; }
.form-feedback--warning { background: rgba(245,158,11,.1); border-color: rgba(245,158,11,.28); color: #92610e; }
.form-feedback--warning::before { content: '!'; }
.form-feedback--error { background: rgba(244,63,94,.1); border-color: rgba(244,63,94,.28); color: #b21e3c; }
.form-feedback--error::before { content: '×'; }

/* ---- legal pages ---- */
.legal-body { max-width: 820px; margin: 0 auto; }
.legal-body h2 { font-size: 1.4rem; margin: 40px 0 14px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { color: var(--ink-2); line-height: 1.75; margin-bottom: 14px; font-size: .96rem; }
.legal-body ul { padding-left: 22px; margin-bottom: 14px; }
.legal-body li { margin-bottom: 8px; list-style: disc; }
.legal-body a { color: var(--blue); }
.legal-body a:hover { text-decoration: underline; }
.legal-updated { display: inline-block; font-size: .85rem; color: var(--ink-3); margin-bottom: 8px; }

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100%{ transform: scale(1); opacity: 1; } 50%{ transform: scale(1.5); opacity: .5; } }
@keyframes floaty { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-16px); } }
@keyframes tscroll { from{ transform: translateX(0);} to{ transform: translateX(-50%);} }
@keyframes fadeUp { from{ opacity:0; transform: translateY(16px);} to{ opacity:1; transform: none;} }

/* Scroll-reveal animations disabled: all content is visible by default so nothing
   depends on JS/IntersectionObserver to appear (fixes missing content on mobile). */
.reveal, .reveal-left, .reveal-right, .reveal-scale, .reveal-blur,
.reveal-rotate, .reveal-clip, .reveal-zoom, .stagger-item, .word {
  opacity: 1 !important; transform: none !important; filter: none !important; clip-path: none !important;
}
.word { display: inline; }
.drift { animation: floaty 7s ease-in-out infinite; }

/* Cursor */
.cursor-dot, .cursor-ring { position: fixed; top:0; left:0; border-radius: 50%; pointer-events: none; z-index: 9999; }
.cursor-dot { width: 7px; height: 7px; background: var(--blue); transform: translate(-50%,-50%); }
.cursor-ring { width: 36px; height: 36px; border: 1.5px solid rgba(47,100,245,.5); transform: translate(-50%,-50%); transition: width .3s, height .3s, background .3s, border-color .3s; }
.cursor-ring.hover { width: 56px; height: 56px; background: rgba(47,100,245,.08); border-color: transparent; }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* Preloader */
.preloader { position: fixed; inset: 0; z-index: 99999; background: var(--white); display: grid; place-items: center; transition: opacity .6s, visibility .6s; }
.preloader.done { opacity: 0; visibility: hidden; }
.pre-logo { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.pre-logo .brand-mark { width: 88px; height: 88px; border-radius: 18px; font-size: 1.3rem; }
.pre-bar { width: 170px; height: 3px; background: var(--paper-2); border-radius: 3px; overflow: hidden; }
.pre-bar span { display: block; height: 100%; width: 0; background: var(--blue); animation: preload 1.3s var(--ease) forwards; }
@keyframes preload { to { width: 100%; } }

.to-top { position: fixed; bottom: 26px; right: 26px; width: 48px; height: 48px; border-radius: 50%; background: var(--blue); display: grid; place-items: center; z-index: 900; opacity: 0; transform: scale(.6) translateY(20px); transition: opacity .4s, transform .4s; box-shadow: 0 10px 28px rgba(47,100,245,.45); }
.to-top.show { opacity: 1; transform: none; }
.to-top:hover { transform: translateY(-4px); }
.to-top svg { width: 20px; height: 20px; color: #fff; }

/* ==========================================================================
   SERVICE CARD MEDIA
   ========================================================================== */
.svc-media { position: relative; margin: -30px -28px 22px; height: 172px; overflow: hidden; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.svc-card:hover .svc-media img { transform: scale(1.07); }
.svc-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(21,22,28,0) 40%, var(--dark-card) 100%); }
.svc-card:hover .svc-num { color: #fff; }

/* ==========================================================================
   INDUSTRIES
   ========================================================================== */
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.industry-card { position: relative; display: block; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3; border: 1px solid var(--hairline); box-shadow: var(--shadow-card); }
.industry-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.industry-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,10,16,0) 35%, rgba(8,10,16,.82) 100%); transition: background .4s; }
.industry-card:hover img { transform: scale(1.08); }
.industry-card:hover::after { background: linear-gradient(180deg, rgba(47,100,245,.25) 0%, rgba(8,10,16,.85) 100%); }
.industry-label { position: absolute; left: 18px; bottom: 16px; right: 18px; z-index: 2; color: #fff; font-family: 'Sora'; font-weight: 700; font-size: 1.08rem; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.industry-label::after { content: '→'; opacity: 0; transform: translateX(-8px); transition: opacity .3s, transform .3s; font-weight: 700; }
.industry-card:hover .industry-label::after { opacity: 1; transform: none; }

/* ==========================================================================
   FOUNDER / ABOUT
   ========================================================================== */
.founder-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.founder-photo { position: relative; max-width: 460px; }
.founder-photo img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); aspect-ratio: 13 / 15; object-fit: cover; object-position: center top; }
.founder-badge { position: absolute; right: -16px; bottom: 26px; display: flex; align-items: center; gap: 11px; background: rgba(255,255,255,.94); backdrop-filter: blur(12px); border: 1px solid var(--hairline); border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow-card); animation: floaty 6s ease-in-out infinite; }
.founder-badge .fb-ic { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: rgba(47,100,245,.12); flex-shrink: 0; }
.founder-badge .fb-ic svg { width: 19px; height: 19px; color: var(--blue); }
.founder-badge b { font-size: .9rem; display: block; color: var(--ink); }
.founder-badge small { font-size: .74rem; color: var(--ink-3); }
.founder-copy h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin: 18px 0 16px; }
.founder-copy p { color: var(--ink-2); margin-bottom: 14px; font-size: 1rem; }
.founder-copy p b { color: var(--ink); }
.founder-points { display: flex; flex-direction: column; gap: 11px; margin: 24px 0; }
.fp { display: flex; align-items: center; gap: 11px; font-weight: 600; font-size: .94rem; color: var(--ink); }
.fp svg { width: 20px; height: 20px; padding: 3px; border-radius: 50%; background: rgba(10,157,98,.12); color: var(--green); flex-shrink: 0; }
.founder-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 6px; }
.founder-sign b { display: block; font-family: 'Sora'; font-weight: 700; font-size: .95rem; }
.founder-sign span { font-size: .78rem; color: var(--ink-3); }

/* ==========================================================================
   HOW IT WORKS (dark)
   ========================================================================== */
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 12px; }
.how-step { position: relative; background: var(--dark-card); border: 1px solid var(--dark-line); border-radius: var(--radius-lg); padding: 34px 28px; transition: transform .45s var(--ease), background .3s, border-color .3s; overflow: hidden; }
.how-step:hover { transform: translateY(-6px); border-color: var(--dark-line-2); box-shadow: var(--shadow-dark); }
.how-num { font-family: 'Sora'; font-weight: 800; font-size: 2.4rem; color: rgba(255,255,255,.14); line-height: 1; }
.how-step .how-ic { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, rgba(47,100,245,.24), rgba(47,211,255,.1)); border: 1px solid var(--dark-line-2); display: grid; place-items: center; margin: 16px 0 18px; }
.how-step .how-ic svg { width: 24px; height: 24px; color: #7aa2ff; }
.how-step h3 { font-size: 1.2rem; margin-bottom: 10px; color: #fff; }
.how-step p { color: var(--d-text-2); font-size: .96rem; margin-bottom: 20px; }
.how-tag { display: inline-flex; align-items: center; gap: 7px; font-size: .78rem; font-weight: 600; color: #cdd5e6; background: rgba(255,255,255,.06); border: 1px solid var(--dark-line); padding: 7px 13px; border-radius: var(--pill); }
.how-step.is-key { background: linear-gradient(180deg, rgba(47,100,245,.20), rgba(47,100,245,.04)); border-color: rgba(47,100,245,.5); }
.how-tag.key { background: var(--blue); color: #fff; border-color: transparent; }

.how-highlight { display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items: center; margin-top: 22px; background: var(--dark-card); border: 1px solid var(--dark-line); border-radius: var(--radius-lg); padding: 44px; }
.hh-copy h3 { color: #fff; font-size: clamp(1.4rem, 2.6vw, 2rem); margin: 14px 0 14px; line-height: 1.14; }
.hh-copy > p { color: var(--d-text-2); margin-bottom: 22px; }
.hh-copy p b { color: #fff; }
.hh-points { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.hh-copy .fp { color: #e7ebf3; }
.hh-copy .fp svg { background: rgba(56,211,155,.18); color: #38d39b; }
.hh-media { position: relative; }
.hh-media img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow-dark); display: block; }
.hh-float { position: absolute; right: -14px; top: -16px; background: #fff; color: var(--ink); border-radius: 14px; padding: 10px 18px; box-shadow: var(--shadow-card); text-align: center; animation: floaty 6s ease-in-out infinite; }
.hh-float b { display: block; font-family: 'Sora'; font-weight: 800; font-size: 1.5rem; color: var(--green); line-height: 1; }
.hh-float small { font-size: .72rem; color: var(--ink-3); }

/* ==========================================================================
   WHICH OPTION — SEGMENTS
   ========================================================================== */
.segments { display: flex; flex-direction: column; gap: 16px; max-width: 1000px; margin: 0 auto; }
.segment { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; background: #fff; border: 1px solid var(--hairline); border-radius: var(--radius-lg); padding: 30px 34px; overflow: hidden; transition: transform .45s var(--ease), box-shadow .4s, border-color .3s; }
.segment::before { content:''; position:absolute; left:0; top:0; bottom:0; width:4px; background: linear-gradient(180deg, var(--blue), #2fd3ff); transform: scaleY(0); transform-origin: top; transition: transform .5s var(--ease); }
.segment:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: rgba(47,100,245,.25); }
.segment:hover::before { transform: scaleY(1); }
.seg-left { display: flex; align-items: center; gap: 22px; }
.seg-num { font-family: 'Sora'; font-weight: 800; font-size: 2.1rem; line-height: 1; color: var(--paper-2, #d7deea); flex-shrink: 0; transition: color .3s; }
.segment:hover .seg-num, .segment-feature .seg-num { color: var(--blue); }
.seg-q { font-size: clamp(1.18rem, 2.1vw, 1.55rem); line-height: 1.16; margin-bottom: 7px; font-family: 'Sora'; font-weight: 700; }
.seg-desc { color: var(--ink-2); font-size: .95rem; max-width: 580px; }
.seg-right { display: flex; flex-direction: column; align-items: flex-end; text-align: right; gap: 3px; flex-shrink: 0; min-width: 200px; }
.seg-plan { font-family: 'Sora'; font-weight: 700; font-size: .92rem; color: var(--ink); }
.seg-price { font-family: 'Sora'; font-weight: 800; font-size: 1.55rem; color: var(--blue); line-height: 1.1; }
.seg-price small { font-size: .78rem; font-weight: 500; color: var(--ink-3); }
.seg-right .btn { margin-top: 10px; }
.segment-feature { border-color: rgba(47,100,245,.4); background: linear-gradient(180deg, rgba(47,100,245,.045), #fff); box-shadow: var(--shadow-card); }
.segment-feature::before { transform: scaleY(1); }
.seg-flag { display: inline-block; margin-bottom: 12px; background: var(--blue); color: #fff; font-size: .64rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 5px 13px; border-radius: var(--pill); box-shadow: 0 8px 20px rgba(47,100,245,.35); }
.flex-note { display: flex; align-items: center; justify-content: center; gap: 11px; max-width: 760px; margin: 36px auto 0; text-align: left; color: var(--ink-2); font-size: .96rem; background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 16px 22px; }
.flex-note svg { width: 22px; height: 22px; color: var(--green); flex-shrink: 0; }

/* ==========================================================================
   GUARANTEE / RISK REVERSAL
   ========================================================================== */
.guarantee-sec { background: var(--white); padding: 20px 0 60px; }
.guarantee { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: center; background: linear-gradient(135deg, #f3f7ff, #ffffff 60%); border: 1px solid rgba(47,100,245,.18); border-radius: var(--radius-lg); padding: 30px 46px 30px 30px; box-shadow: var(--shadow-soft); overflow: hidden; }
.guar-media { max-width: 360px; margin: 0 auto; border-radius: var(--radius); overflow: hidden; }
.guar-media img { width: 100%; height: auto; display: block; }
.guar-text h2 { font-size: clamp(1.55rem, 3vw, 2.35rem); line-height: 1.12; margin: 14px 0 14px; }
.guar-text > p { color: var(--ink-2); margin-bottom: 20px; max-width: 560px; }
.guar-points { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }

/* ==========================================================================
   VIDEO TESTIMONIALS
   ========================================================================== */
.video-scroller { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 10px 28px 26px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.video-scroller::-webkit-scrollbar { display: none; }
.video-card { position: relative; flex: 0 0 auto; width: 244px; aspect-ratio: 9 / 16; border-radius: var(--radius-lg); overflow: hidden; background: #05060a; box-shadow: var(--shadow-card); border: 1px solid var(--hairline); scroll-snap-align: center; transition: transform .4s var(--ease); }
.video-card:hover { transform: translateY(-6px); }
.video-card video { width: 100%; height: 100%; object-fit: cover; display: block; background: #000; }
/* Hide the browser's native play overlay on mobile so only our custom button shows */
.video-card video::-webkit-media-controls-overlay-play-button { display: none !important; }
.video-card video::-webkit-media-controls-start-playback-button { display: none !important; -webkit-appearance: none; }
.video-card::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.58)); pointer-events: none; transition: opacity .35s; }
.video-card.playing::after { opacity: 0; }
.video-play { position: absolute; inset: 0; margin: auto; width: 62px; height: 62px; border-radius: 50%; background: rgba(47,100,245,.94); display: grid; place-items: center; box-shadow: 0 12px 34px rgba(47,100,245,.5); transition: transform .3s, opacity .3s; z-index: 3; }
.video-play svg { width: 26px; height: 26px; color: #fff; margin-left: 3px; }
.video-play:hover { transform: scale(1.09); }
.video-card.playing .video-play { opacity: 0; pointer-events: none; }
.vid-label { position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 2; color: #fff; font-family: 'Sora'; font-weight: 600; font-size: .95rem; text-shadow: 0 2px 12px rgba(0,0,0,.7); pointer-events: none; transition: opacity .3s; }
.video-card.playing .vid-label { opacity: 0; }
.video-hint { text-align: center; color: var(--ink-3); font-size: .85rem; margin-top: 2px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-inner { max-width: 100%; }
  .hero-visual { margin: 44px auto 0; max-width: 380px; }
  .hf-1, .hf-2, .hf-analytics { display: none; }
  .guarantee { grid-template-columns: 1fr; gap: 30px; padding: 30px; }
  .guar-media { max-width: 300px; order: -1; }
  .segment { grid-template-columns: 1fr; gap: 22px; }
  .seg-right { align-items: flex-start; text-align: left; min-width: 0; }
  .how-highlight { grid-template-columns: 1fr; gap: 32px; padding: 34px; }
  .hh-float { right: 8px; }
  .blue-grid { grid-template-columns: 1fr; gap: 40px; }
  .vis-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .benefit-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .tiers { grid-template-columns: repeat(2,1fr); }
  .tier { border-left: none; border-top: 1px solid var(--dark-line); }
  .tier:nth-child(-n+2) { border-top: none; }
  .tier:nth-child(2n) { border-left: 1px solid var(--dark-line); }
  .options-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .booking-grid { grid-template-columns: 1fr; gap: 30px; }
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .founder-photo { margin: 0 auto; }
}
@media (max-width: 768px) {
  .section, .dark-sec, .visionary { padding: 70px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .vis-head { flex-direction: column; align-items: flex-start; }
  .bb-cards { grid-template-columns: 1fr; }
  .bb-stats { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: 1fr; }
  .cell.span2 { grid-column: span 1; }
  .steps { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .tiers { grid-template-columns: 1fr; }
  .tier { border-left: none !important; border-top: 1px solid var(--dark-line); }
  .tier:first-child { border-top: none; }
  .t-track .tcard { width: 300px; }
  .trust-row { gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cursor-dot, .cursor-ring { display: none; }
  .cta { padding: 56px 22px; }
  .flow { flex-direction: column; align-items: center; flex-wrap: nowrap; }
  .flow-arrow { transform: rotate(90deg); }
  .flow-step { max-width: 320px; width: 100%; flex: 0 0 auto; }
  .segment { padding: 24px 22px; }
  .seg-left { gap: 16px; }
  .seg-num { font-size: 1.7rem; }
  .how-steps { grid-template-columns: 1fr; max-width: 460px; margin: 12px auto 0; }
  .how-highlight { padding: 28px 22px; }
  .video-card { width: 210px; }
  .video-scroller { padding: 10px 18px 24px; }
}
/* ---- Header hardening for phones (removes the "wider than screen" break) ---- */
@media (max-width: 600px) {
  html { scroll-padding-top: 92px; }
  .container { padding: 0 18px; }
  .nav { padding: 0 12px; top: 12px; }
  .nav-inner { width: 100%; max-width: 100%; gap: 10px; padding: 7px 7px 7px 14px; }
  .nav.scrolled .nav-inner { max-width: 100%; }
  .brand { font-size: 1rem; min-width: 0; }
  .brand-mark { width: 38px; height: 38px; border-radius: 10px; }
  .nav-cta .btn-primary { display: none; }
  .nav-toggle { padding: 8px; }
  .mobile-menu { padding: 96px 22px 34px; }
}
@media (max-width: 480px) {
  .hero { padding-top: 120px; }
  .bb-stats { grid-template-columns: 1fr; }
  .hero-actions { gap: 16px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { width: 100%; }
  .t-track .tcard { width: 264px; }
  .tcard { padding: 22px; }
  .review-stats { gap: 24px 30px; }
  .industry-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .industry-label { font-size: .92rem; left: 12px; bottom: 12px; right: 12px; }
  .founder-badge { right: 8px; padding: 10px 13px; }
  .founder-actions { gap: 16px; }
  .section, .dark-sec, .visionary { padding: 58px 0; }
  .dark-sec, .tiers { border-radius: 0; }
  .cta { padding: 48px 18px; border-radius: 22px; }
  .mm-links a { font-size: 1.3rem; padding: 16px 4px; }
}
@media (max-width: 360px) {
  .container { padding: 0 15px; }
  .brand span, .brand { font-size: .95rem; }
  .badge { font-size: 10px; padding: 6px 11px; }
}
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal,.reveal-left,.reveal-right,.reveal-scale,.reveal-blur,.reveal-rotate,.reveal-clip,.reveal-zoom,.stagger-item,.word { opacity: 1 !important; transform: none !important; filter: none !important; clip-path: none !important; }
  /* The reviews carousel is a functional scroller (overflow is hidden), so keep it moving
     even under reduced motion — otherwise most reviews stay off-screen. */
  .t-track { animation-duration: 60s !important; animation-iteration-count: infinite !important; }
  .t-track.rev { animation-duration: 72s !important; }
}

/* ==========================================================================
   GROWTH SCORE — entry section
   ========================================================================== */
.gscore-sec { padding: 40px 0 20px; }
.gscore { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center;
  background: radial-gradient(120% 140% at 0% 0%, #16224e 0%, #0b0d14 55%); border: 1px solid var(--dark-line-2);
  border-radius: var(--radius-lg); padding: 52px 56px; box-shadow: var(--shadow-soft); }
.gscore-glow { position: absolute; width: 460px; height: 460px; right: -120px; top: -160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(47,100,245,.55), transparent 62%); filter: blur(20px); pointer-events: none; }
.gscore-left { position: relative; z-index: 2; }
.gscore-left h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.6rem); line-height: 1.08; margin: 14px 0 14px; }
.text-grad { background: linear-gradient(100deg, #6ea0ff, #2fd3ff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.gscore-left > p { color: var(--d-text-2); font-size: 1.02rem; max-width: 560px; margin-bottom: 20px; }
.gscore-points { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.gscore-points li { display: flex; align-items: center; gap: 10px; color: #e7ebf3; font-weight: 500; font-size: .96rem; }
.gscore-points svg { width: 20px; height: 20px; color: #38d39b; background: rgba(56,211,155,.16); border-radius: 50%; padding: 3px; flex-shrink: 0; }
.gscore-mini { color: var(--d-text-3); font-size: .82rem; margin-top: 14px; }
.gscore .btn-light { background: #fff; color: var(--ink); }

.gscore-right { position: relative; z-index: 2; display: grid; place-items: center; min-height: 260px; }
.gscore-dial { position: relative; width: 240px; height: 240px; }
.gscore-dial svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.gscore-dial .gd-track { fill: none; stroke: rgba(255,255,255,.10); stroke-width: 14; }
.gscore-dial .gd-fill { fill: none; stroke: var(--blue); stroke-width: 14; stroke-linecap: round; }
.gscore-dial .gd-teaser { stroke: #3b7bff; stroke-dasharray: 360 578; stroke-dashoffset: 0; animation: gdspin 3.4s linear infinite; opacity: .9; }
@keyframes gdspin { to { stroke-dashoffset: -578; } }
.gd-center { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; }
.gd-q { display: block; font-family: 'Sora'; font-weight: 800; font-size: 4rem; line-height: 1; color: #fff; }
.gd-label { display: block; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--d-text-3); margin-top: 6px; }
.gscore-chip { position: absolute; background: #fff; color: var(--ink); font-weight: 600; font-size: .78rem; padding: 7px 13px; border-radius: var(--pill); box-shadow: var(--shadow-card); animation: floaty 6s ease-in-out infinite; }
.gscore-chip.chip-1 { top: 8px; left: 0; }
.gscore-chip.chip-2 { bottom: 26px; left: 4px; animation-delay: .8s; }
.gscore-chip.chip-3 { top: 40px; right: 0; animation-delay: 1.5s; }

/* ==========================================================================
   GROWTH SCORE — quiz modal
   ========================================================================== */
body.quiz-open { overflow: hidden; }
.quiz-overlay { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: 20px;
  background: rgba(6,8,16,.72); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); opacity: 0; transition: opacity .3s var(--ease); }
.quiz-overlay.open { display: flex; opacity: 1; }
.quiz-modal { position: relative; width: 100%; max-width: 640px; max-height: 92vh; display: flex; flex-direction: column;
  background: var(--white); border-radius: var(--radius-lg); box-shadow: 0 40px 100px rgba(0,0,0,.5); overflow: hidden;
  transform: translateY(18px) scale(.98); opacity: 0; animation: quizIn .42s var(--ease) forwards; }
@keyframes quizIn { to { transform: none; opacity: 1; } }
.quiz-close { position: absolute; top: 14px; right: 14px; z-index: 5; width: 38px; height: 38px; border: none; border-radius: 50%;
  background: rgba(11,13,20,.06); color: var(--ink-2); cursor: pointer; display: grid; place-items: center; transition: background .2s, transform .2s; }
.quiz-close:hover { background: rgba(11,13,20,.12); transform: rotate(90deg); }
.quiz-close svg { width: 18px; height: 18px; }

.quiz-top { padding: 22px 26px 16px; border-bottom: 1px solid var(--hairline); }
.quiz-brand { display: flex; align-items: center; gap: 9px; font-family: 'Sora'; font-weight: 700; font-size: .98rem; color: var(--ink); margin-bottom: 14px; }
.quiz-brand .brand-mark { width: 30px; height: 30px; border-radius: 8px; background: var(--ink); display: grid; place-items: center; }
.quiz-brand .brand-mark img { width: 18px; height: 18px; }
.quiz-progress { height: 7px; background: var(--paper-2); border-radius: var(--pill); overflow: hidden; }
.quiz-progress-bar { height: 100%; width: 0%; border-radius: var(--pill); background: linear-gradient(90deg, var(--blue), var(--cyan)); transition: width .45s var(--ease); }
.quiz-step-count { font-size: .78rem; color: var(--ink-3); margin-top: 9px; font-weight: 600; letter-spacing: .02em; }

.quiz-body { padding: 30px 26px; overflow-y: auto; flex: 1; }
.quiz-step { animation: quizStep .4s var(--ease); }
@keyframes quizStep { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: none; } }
.quiz-q { font-family: 'Sora'; font-weight: 700; font-size: clamp(1.25rem, 3.2vw, 1.6rem); line-height: 1.2; color: var(--ink); }
.quiz-help { color: var(--ink-2); font-size: .95rem; margin-top: 8px; margin-bottom: 22px; }
.quiz-input { width: 100%; padding: 16px 18px; font-size: 1.05rem; font-family: inherit; color: var(--ink);
  border: 2px solid var(--hairline); border-radius: var(--radius); background: var(--white); transition: border-color .2s, box-shadow .2s; }
.quiz-input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(47,100,245,.12); }

.quiz-options { display: flex; flex-direction: column; gap: 11px; }
.quiz-options.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.quiz-opt { display: flex; align-items: center; gap: 13px; width: 100%; text-align: left; padding: 15px 17px; cursor: pointer;
  background: var(--white); border: 2px solid var(--hairline); border-radius: var(--radius); font-family: inherit; font-size: 1rem; font-weight: 500;
  color: var(--ink); transition: border-color .18s, background .18s, transform .12s; }
.quiz-opt:hover { border-color: rgba(47,100,245,.5); background: rgba(47,100,245,.03); }
.quiz-opt:active { transform: scale(.99); }
.qo-check { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--hairline); display: grid; place-items: center; transition: background .18s, border-color .18s; }
.qo-check svg { width: 14px; height: 14px; color: #fff; opacity: 0; transition: opacity .18s; }
.quiz-opt.selected { border-color: var(--blue); background: rgba(47,100,245,.06); }
.quiz-opt.selected .qo-check { background: var(--blue); border-color: var(--blue); }
.quiz-opt.selected .qo-check svg { opacity: 1; }

.quiz-reassure { display: flex; align-items: center; gap: 14px; margin-top: 22px; padding: 16px 18px; border-radius: var(--radius);
  background: rgba(47,100,245,.06); border: 1px solid rgba(47,100,245,.16); }
.quiz-reassure b { display: block; color: var(--ink); font-size: .95rem; }
.quiz-reassure span { display: block; color: var(--ink-2); font-size: .86rem; margin-top: 3px; }
.qr-spinner { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; border: 3px solid rgba(47,100,245,.25); border-top-color: var(--blue); animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.quiz-error { color: #e5484d; font-size: .88rem; font-weight: 600; margin-top: 14px; }

.quiz-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 26px; border-top: 1px solid var(--hairline); background: var(--white); }
.quiz-back { display: inline-flex; align-items: center; gap: 7px; background: none; border: none; cursor: pointer; color: var(--ink-2); font-family: inherit; font-weight: 600; font-size: .95rem; padding: 8px; }
.quiz-back:hover { color: var(--ink); }
.quiz-back svg { width: 18px; height: 18px; }
.quiz-next { margin-left: auto; }

/* result / calculating */
.quiz-calc { text-align: center; padding: 40px 10px; }
.calc-ring { width: 70px; height: 70px; margin: 0 auto 24px; border-radius: 50%; border: 5px solid var(--paper-2); border-top-color: var(--blue); animation: spin 1s linear infinite; }
.quiz-calc h3 { font-family: 'Sora'; font-size: 1.35rem; color: var(--ink); margin-bottom: 8px; }
.quiz-calc p { color: var(--ink-2); font-size: .95rem; }

.quiz-result { text-align: center; }
.result-dial { position: relative; width: 190px; height: 190px; margin: 0 auto 18px; }
.result-dial svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.rd-track { fill: none; stroke: var(--paper-2); stroke-width: 15; }
.rd-fill { fill: none; stroke-width: 15; stroke-linecap: round; transition: stroke-dashoffset 1.4s var(--ease); }
.tone-low .rd-fill { stroke: #f0803c; }
.tone-mid .rd-fill { stroke: #f0b429; }
.tone-high .rd-fill { stroke: #17a673; }
.rd-center { position: absolute; inset: 0; display: grid; place-content: center; }
.rd-num { font-family: 'Sora'; font-weight: 800; font-size: 3.2rem; line-height: 1; color: var(--ink); }
.rd-out { font-size: .85rem; color: var(--ink-3); margin-top: 2px; }
.result-tag { display: inline-block; font-weight: 700; font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; padding: 6px 14px; border-radius: var(--pill); margin-bottom: 12px; }
.tone-low .result-tag { background: rgba(240,128,60,.14); color: #d5641f; }
.tone-mid .result-tag { background: rgba(240,180,41,.16); color: #b07d09; }
.tone-high .result-tag { background: rgba(23,166,115,.14); color: #0f7a53; }
.result-title { font-family: 'Sora'; font-size: 1.5rem; color: var(--ink); }
.result-line { color: var(--ink-2); font-size: .98rem; max-width: 460px; margin: 10px auto 18px; }
.result-sent { display: inline-flex; align-items: center; gap: 9px; background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--pill); padding: 10px 18px; font-size: .9rem; color: var(--ink-2); margin-bottom: 26px; }
.result-sent svg { width: 18px; height: 18px; color: var(--blue); }
.result-sent b { color: var(--ink); }
.result-recs { text-align: left; margin-bottom: 26px; }
.result-recs h4 { font-family: 'Sora'; font-size: 1.05rem; color: var(--ink); margin-bottom: 14px; text-align: center; }
.rec-grid { display: flex; flex-direction: column; gap: 12px; }
.rec-card { position: relative; padding: 18px 20px; border: 1px solid var(--hairline); border-radius: var(--radius); background: var(--white); }
.rec-card.top { border-color: rgba(47,100,245,.4); background: rgba(47,100,245,.04); }
.rec-flag { position: absolute; top: -10px; left: 18px; background: var(--blue); color: #fff; font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 4px 11px; border-radius: var(--pill); }
.rec-card h5 { font-family: 'Sora'; font-size: 1.02rem; color: var(--ink); margin-bottom: 6px; }
.rec-card p { color: var(--ink-2); font-size: .9rem; line-height: 1.5; margin-bottom: 10px; }
.rec-plan { display: inline-block; font-size: .78rem; font-weight: 700; color: var(--blue); background: rgba(47,100,245,.1); padding: 4px 11px; border-radius: var(--pill); }
.result-cta { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.quiz-restart { background: none; border: none; cursor: pointer; color: var(--ink-3); font-family: inherit; font-size: .9rem; text-decoration: underline; }
.quiz-restart:hover { color: var(--ink); }

@media (max-width: 900px) {
  .gscore { grid-template-columns: 1fr; gap: 30px; padding: 40px 30px; }
  .gscore-right { order: -1; min-height: 200px; }
  .gscore-dial { width: 200px; height: 200px; }
}
@media (max-width: 560px) {
  .gscore { padding: 32px 20px; }
  .gscore-chip { display: none; }
  .quiz-overlay { padding: 0; }
  .quiz-modal { max-width: 100%; max-height: 100vh; height: 100%; border-radius: 0; }
  .quiz-options.grid { grid-template-columns: 1fr; }
  .quiz-body { padding: 24px 20px; }
  .quiz-top { padding: 18px 20px 14px; }
  .quiz-foot { padding: 14px 20px; }
  .result-dial { width: 160px; height: 160px; }
  .rd-num { font-size: 2.6rem; }
}
