/* =========================================================
   SocialMediaHelp — styles
   Brand kit swap points:
     --accent / --accent-bright  (the designer's blue)
     .brand__name / .brand__mark (the logo)
   Everything else is derived from the variables below.
   ========================================================= */

:root {
  /* palette: clean white + electric blue */
  --bg:            #ffffff;
  --bg-soft:       #f5f8fd;
  --surface:       #eef2fa;
  --surface-2:     #e7eef8;
  --line:          rgba(13, 25, 48, 0.10);
  --line-strong:   rgba(13, 25, 48, 0.16);

  --text:          #0e1626;
  --text-muted:    #545f76;
  --text-faint:    #8c97ab;

  --accent:        #1d4ed8;  /* primary blue — swap for brand blue */
  --accent-bright: #1d4ed8;  /* highlight / accent text */
  --accent-deep:   #14328c;
  --accent-soft:   rgba(29, 78, 216, 0.10);

  /* type */
  --font-display: "Bricolage Grotesque", Georgia, serif;
  --font-body:    "Hanken Grotesk", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  /* metrics */
  --maxw: 1140px;
  --radius: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--accent); color: #fff; }

/* ---------- atmosphere ---------- */
.grain {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.glow {
  position: fixed; z-index: 0; pointer-events: none; border-radius: 50%;
  filter: blur(130px); opacity: 0.16;
}
.glow--one {
  width: 640px; height: 640px; top: -280px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(29,78,216,0.38), transparent 70%);
}
.glow--two {
  width: 520px; height: 520px; top: 52%; right: -220px;
  background: radial-gradient(circle, rgba(29,63,176,0.26), transparent 72%);
}

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(18px, 5vw, 28px); position: relative; z-index: 1; }
.container--narrow { max-width: 820px; }
.section { padding: 120px 0; position: relative; z-index: 1; }
.section--alt { background: linear-gradient(180deg, transparent, var(--bg-soft) 12% 88%, transparent); }

.section__head { max-width: 720px; margin-bottom: 44px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.section__title {
  font-family: var(--font-display); font-weight: 700; line-height: 1.05;
  font-size: clamp(2rem, 4.4vw, 3.1rem); letter-spacing: -0.02em;
}
.section__sub { color: var(--text-muted); margin-top: 18px; font-size: 1.08rem; max-width: 60ch; }

/* ---------- eyebrow / status chip ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 0.66rem; color: var(--accent-bright);
  padding: 7px 13px; border: 1px solid var(--line-strong); border-radius: 999px; background: var(--accent-soft);
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-bright); box-shadow: 0 0 8px var(--accent-bright); display: inline-block; }

.accent-text { color: var(--accent-bright); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em;
  padding: 12px 22px; border-radius: 999px; border: 1px solid transparent;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  white-space: nowrap;
}
.btn--lg { padding: 15px 28px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 8px 30px -10px rgba(29,78,216,0.7), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn--primary:hover { background: var(--accent-bright); transform: translateY(-2px); box-shadow: 0 14px 38px -10px rgba(29,78,216,0.85); }
.btn--ghost { background: rgba(20,30,55,0.04); color: var(--text); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--accent); color: #fff; transform: translateY(-2px); }
.btn--emergency {
  background: #e11d2e; color: #fff; border-color: transparent;
  box-shadow: 0 8px 30px -10px rgba(225,29,46,0.75), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn--emergency:hover {
  background: #c8182a; color: #fff; transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px rgba(225,29,46,0.9);
}
.btn__dot {
  width: 8px; height: 8px; border-radius: 50%; background: #fff; flex: none;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.6); animation: pingdot 1.6s var(--ease) infinite;
}
@keyframes pingdot {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.55); }
  70%  { box-shadow: 0 0 0 7px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.nav__actions { display: flex; align-items: center; gap: 10px; }

/* floating emergency CTA — for panic / hacked-account visitors */
.sos {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  display: inline-flex; align-items: center; gap: 13px;
  padding: 11px 15px 11px 11px; border-radius: 18px;
  background: linear-gradient(145deg, #ef2533, #c8142a);
  color: #fff; border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 20px 46px -16px rgba(225,29,46,0.78), 0 6px 16px -8px rgba(0,0,0,0.38), inset 0 1px 0 rgba(255,255,255,0.22);
  max-width: calc(100vw - 44px);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  animation: sosIn 0.5s var(--ease) 0.5s both;
}
.sos:hover { transform: translateY(-3px); box-shadow: 0 28px 58px -16px rgba(225,29,46,0.88), 0 10px 22px -8px rgba(0,0,0,0.42), inset 0 1px 0 rgba(255,255,255,0.22); }
.sos__badge {
  position: relative; width: 42px; height: 42px; border-radius: 13px; flex: none;
  display: grid; place-items: center; background: #fff;
  box-shadow: 0 4px 10px -4px rgba(0,0,0,0.35);
}
.sos__tg { width: 25px; height: 25px; color: #2aabe2; }
.sos__live {
  position: absolute; top: -3px; right: -3px; width: 13px; height: 13px; border-radius: 50%;
  background: #2ad17e; border: 2.5px solid #d51b2a;
  animation: livepulse 1.7s var(--ease) infinite;
}
.sos__txt { display: flex; flex-direction: column; line-height: 1.16; text-align: left; }
.sos__title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; letter-spacing: -0.01em; }
.sos__sub { display: inline-flex; align-items: center; gap: 5px; font-size: 0.76rem; color: rgba(255,255,255,0.9); margin-top: 3px; }
.sos__chev { width: 16px; height: 16px; flex: none; opacity: 0.85; margin-left: 1px; }
@keyframes sosIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes livepulse {
  0%   { box-shadow: 0 0 0 0 rgba(42,209,126,0.7); }
  70%  { box-shadow: 0 0 0 6px rgba(42,209,126,0); }
  100% { box-shadow: 0 0 0 0 rgba(42,209,126,0); }
}
@media (max-width: 480px) {
  .sos { display: flex; right: 12px; bottom: 12px; left: 12px; max-width: none; justify-content: flex-start; padding: 11px 15px 11px 11px; }
  body:has(.sos) { padding-bottom: 84px; }
}

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(255,255,255,0.82); backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav__inner { position: relative; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 700; }
.brand__mark { display: inline-flex; align-items: center; }
.brand__mark img { height: 44px; width: auto; display: block; }
body.corp .brand__mark img,
body.corp .help__ic img { filter: brightness(0); }
.brand__name { font-family: var(--font-display); font-size: 1.12rem; letter-spacing: -0.01em; }
.nav__links { display: flex; gap: 32px; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.nav__links a { color: var(--text-muted); font-size: 0.95rem; font-weight: 500; transition: color 0.2s; }
.nav__links a:hover { color: var(--text); }
.nav__cta { padding: 10px 18px; }

.nav__burger { display: none; background: none; border: 0; width: 40px; height: 40px; position: relative; }
.nav__burger span { position: absolute; left: 9px; right: 9px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s; }
.nav__burger span:nth-child(1) { top: 16px; }
.nav__burger span:nth-child(2) { top: 23px; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

.nav__mobile {
  display: none; flex-direction: column; gap: 4px; padding: 8px 28px 22px;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line);
}
.nav__mobile a { padding: 13px 0; color: var(--text-muted); border-bottom: 1px solid var(--line); font-weight: 500; }
.nav__mobile a:last-child { border: 0; margin-top: 12px; padding: 13px; border-radius: 10px; background: var(--accent); color: #fff; font-weight: 600; text-align: center; }
.nav.is-open .nav__mobile { display: flex; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding: 132px 0 90px; overflow: hidden; text-align: center;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("hero-bg.svg"); background-size: cover; background-position: center;
  background-repeat: no-repeat;
  -webkit-mask-image: radial-gradient(62% 52% at 50% 46%, transparent 30%, #000 86%);
  mask-image: radial-gradient(62% 52% at 50% 46%, transparent 30%, #000 86%);
  opacity: 0.95;
}
.hero__inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.hero .eyebrow { margin-bottom: 4px; }
.hero__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.4rem, 8.5vw, 5rem); line-height: 1.0; letter-spacing: -0.035em;
  margin: 20px 0 0;
}
.hero__lede { color: var(--text-muted); font-size: clamp(1.02rem, 1.7vw, 1.2rem); max-width: 52ch; margin: 22px auto 0; }
.hl-guarantee {
  font-weight: 700; letter-spacing: -0.01em;
  background: linear-gradient(100deg, #fbe6bf 0%, #e7c074 48%, #cda052 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.trust-chips { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 28px; margin-top: 30px; }
.trust-chips li { display: flex; align-items: center; gap: 9px; color: var(--text-muted); font-size: 0.9rem; font-weight: 500; }
.trust-chips .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-bright); box-shadow: 0 0 12px var(--accent-bright); }

/* ---------- wizard (secure intake console) ---------- */
.wiz {
  width: 100%; max-width: 515px; margin: 36px auto 0; text-align: left; position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--line-strong); border-radius: 16px;
  box-shadow: 0 50px 120px -50px rgba(20,30,55,0.13), 0 0 0 1px rgba(93,147,255,0.04);
}
.wiz__body { border-radius: inherit; }
.wiz::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(93,147,255,0.55), transparent); }

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* body */
.wiz__body { padding: 26px 22px 24px; }
.wiz__panel { display: none; animation: wizIn 0.4s var(--ease); }
.wiz__panel.is-active { display: block; }
.wiz__q { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.24rem, 5.2vw, 1.45rem); letter-spacing: -0.02em; margin-bottom: 22px; }
.wiz__sub { font-family: var(--font-mono); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-faint); font-weight: 400; margin-left: 8px; }

/* minimal back link (no header anymore) */
.wiz__back { display: inline-flex; align-items: center; gap: 5px; margin-bottom: 16px; padding: 6px 12px 6px 9px; border-radius: 999px; background: rgba(20,30,55,0.04); border: 1px solid var(--line); color: var(--text-muted); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.66rem; }
.wiz__back[hidden] { display: none; }
.wiz__back svg { width: 14px; height: 14px; }
.wiz__back:hover { color: var(--text); border-color: var(--line-strong); }

/* category — two big side-by-side choices */
.wiz__cats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.catopt {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px;
  padding: 40px 22px 34px; min-height: 224px; justify-content: center;
  background: rgba(20,30,55,0.03); border: 1px solid var(--line-strong); border-radius: 16px; color: var(--text);
  transition: transform 0.2s var(--ease), border-color 0.2s, background 0.2s;
}
.catopt:hover { transform: translateY(-3px); border-color: var(--accent); background: rgba(29,78,216,0.08); }
.catopt__ic { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(155deg, var(--accent-bright), var(--accent-deep)); color: #fff; border: 1px solid rgba(255,255,255,0.16); box-shadow: 0 14px 30px -12px rgba(29,78,216,0.85); }
.catopt__ic svg { width: 30px; height: 30px; }
.catopt__t { font-family: var(--font-display); font-weight: 700; font-size: 1.32rem; letter-spacing: -0.015em; }
.catopt__d { color: var(--text-faint); font-size: 0.9rem; line-height: 1.4; }
.catopt.is-disabled { opacity: 0.4; pointer-events: none; }
/* compact service list (step 2) — horizontal rows, icon left + text right */
.wiz__cats--grid { grid-template-columns: 1fr; gap: 10px; }
.wiz__cats--grid .catopt {
  display: grid; grid-template-columns: 42px 1fr; column-gap: 14px; row-gap: 1px;
  align-items: center; text-align: left; padding: 12px 16px; min-height: 0; border-radius: 12px;
}
.wiz__cats--grid .catopt__ic { grid-row: 1 / 3; width: 42px; height: 42px; box-shadow: none; }
.wiz__cats--grid .catopt__ic svg { width: 21px; height: 21px; }
.wiz__cats--grid .catopt__t { grid-column: 2; align-self: end; font-size: 1rem; }
.wiz__cats--grid .catopt__d { grid-column: 2; align-self: start; font-size: 0.85rem; }
@media (min-width: 620px) {
  .wiz__cats--grid { grid-template-columns: 1fr 1fr; }
  /* odd count -> last card spans the row so it never sits alone */
  .wiz__cats--grid .catopt:last-child:nth-child(odd) { grid-column: 1 / -1; }
}
/* service not offered on this platform — greyed out, not selectable */
.wiz__cats--grid .catopt.is-off { cursor: not-allowed; background: rgba(20,30,55,0.02); border-color: var(--line); opacity: 0.65; }
.wiz__cats--grid .catopt.is-off:hover { transform: none; border-color: var(--line); background: rgba(20,30,55,0.02); }
.wiz__cats--grid .catopt.is-off .catopt__ic { background: #dde3ec; color: #aab2c2; }
.wiz__cats--grid .catopt.is-off .catopt__t,
.wiz__cats--grid .catopt.is-off .catopt__d { color: var(--text-faint); }
/* exact-service dropdown (step 3) */
.wiz__selectwrap { position: relative; margin-bottom: 9px; }
.wiz__selectwrap .wiz__select { margin-bottom: 0; appearance: none; -webkit-appearance: none; padding-right: 40px; cursor: pointer; }
.wiz__select-chev { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); width: 14px; height: 14px; color: var(--text-muted); pointer-events: none; }

/* entry step — one combined dropdown + username row (usernamez.net style) */
.wiz__entry { display: flex; align-items: stretch; margin-bottom: 10px; border: 1px solid var(--line-strong); border-radius: 12px; background: #ffffff; transition: border-color 0.2s; }
.wiz__entry:focus-within { border-color: var(--accent); }
/* solo: just the platform dropdown filling the box (no handle field) */
.wiz__entry--solo .wsel { flex: 1; }
.wiz__entry--solo .wsel__btn { width: 100%; border-right: 0; }
.wiz__entry--solo .wsel__chev { margin-left: auto; }
.wsel { position: relative; flex-shrink: 0; display: flex; }
.wsel__btn { display: flex; align-items: center; gap: 8px; padding: 14px 14px; background: transparent; border: 0; border-right: 1px solid var(--line); border-radius: 0; color: var(--text); font-weight: 600; font-size: 0.93rem; transition: background 0.18s; }
.wsel__btn:hover { background: rgba(20,30,55,0.04); }
.wsel__chev { width: 13px; height: 13px; color: var(--text-faint); transition: transform 0.2s var(--ease); }
.wsel.is-open .wsel__chev { transform: rotate(180deg); }
.wiz__in.wiz__entry-in { flex: 1; min-width: 0; margin-bottom: 0; border: 0; border-radius: 0; background: transparent; }
.wiz__in.wiz__entry-in:focus { outline: none; box-shadow: none; background: transparent; border: 0; }
.wsel__menu { position: absolute; top: calc(100% + 8px); left: 0; min-width: 210px; max-height: 264px; overflow-y: auto; overscroll-behavior: contain; z-index: 20; list-style: none; background: #ffffff; border: 1px solid var(--line-strong); border-radius: 14px; padding: 6px; box-shadow: 0 30px 60px -24px rgba(20,30,55,0.12); animation: wizIn 0.18s var(--ease); }
.wsel__menu li { display: flex; align-items: center; gap: 11px; padding: 11px 12px; border-radius: 9px; cursor: pointer; font-weight: 500; font-size: 0.94rem; color: var(--text-muted); transition: background 0.15s, color 0.15s; }
.wsel__menu li:hover { background: rgba(20,30,55,0.06); color: var(--text); }

/* platforms — hairline cells */
.wiz__plats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.pchip {
  display: flex; flex-direction: column; align-items: center; gap: 11px; padding: 20px 8px;
  border-radius: 10px; background: transparent; border: 1px solid var(--line-strong);
  color: var(--text-muted); font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.01em;
  transition: color 0.18s, border-color 0.18s, background 0.18s;
}
.pchip svg { width: 26px; height: 26px; color: var(--text-faint); transition: color 0.18s, transform 0.2s var(--ease); }
.pchip:hover { color: #fff; border-color: var(--accent); background: rgba(29,78,216,0.06); }
.pchip:hover svg { color: var(--text); transform: translateY(-2px); }

/* services — hairline ledger rows */
.svcsearch { position: relative; margin: 0 0 14px; }
.svcsearch__ic { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 17px; height: 17px; color: var(--text-faint); pointer-events: none; }
.svcsearch__in {
  width: 100%; padding: 13px 16px 13px 40px; border-radius: 10px;
  border: 1px solid var(--line-strong); background: #ffffff; color: var(--text);
  font: inherit; font-size: 0.95rem; transition: border-color 0.15s, box-shadow 0.15s;
}
.svcsearch__in::placeholder { color: var(--text-faint); }
.svcsearch__in:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.wiz__svcs { display: flex; flex-direction: column; max-height: 318px; overflow-y: auto; margin: 0 0 18px; border-top: 1px solid var(--line); }
.svc.is-custom .svc__box { border-radius: 50%; }
.svc--add { color: var(--accent-bright); }
.svc--add .svc__name { color: var(--accent-bright); }
.svc--add .svc__box { border-style: dashed; border-color: var(--accent); place-items: center; }
.svc--add .svc__box::after { content: "+"; font-weight: 700; line-height: 1; color: var(--accent-bright); }
.wiz__empty { font-size: 0.9rem; color: var(--text-muted); margin: 0 0 18px; padding: 2px 4px; }
.svc-other { border-bottom: 1px solid var(--line); }
.svc-other .svc { border-bottom: 0; }
.svc__specify {
  width: 100%; margin: 0 0 14px; padding: 13px 16px; border-radius: 10px;
  border: 1px solid var(--line-strong); background: #ffffff; color: var(--text);
  font: inherit; font-size: 0.95rem; transition: border-color 0.15s, box-shadow 0.15s;
}
.svc__specify::placeholder { color: var(--text-faint); }
.svc__specify:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.svc { position: relative; display: flex; align-items: center; gap: 14px; padding: 14px 6px; cursor: pointer; border-bottom: 1px solid var(--line); transition: background 0.15s; }
.svc::before { content: ""; position: absolute; left: -20px; top: 0; bottom: 0; width: 2px; background: var(--accent); transform: scaleY(0); transition: transform 0.18s var(--ease); }
.svc:hover { background: rgba(20,30,55,0.03); }
.svc.is-on { background: rgba(29,78,216,0.06); }
.svc.is-on::before { transform: scaleY(1); }
.svc input { position: absolute; opacity: 0; pointer-events: none; }
.svc__box { width: 19px; height: 19px; border-radius: 5px; border: 1.5px solid var(--line-strong); flex-shrink: 0; display: grid; place-items: center; transition: background 0.15s, border-color 0.15s; }
.svc__box svg { width: 12px; height: 12px; color: #fff; opacity: 0; transition: opacity 0.15s; }
.svc.is-on .svc__box { background: var(--accent); border-color: var(--accent); }
.svc.is-on .svc__box svg { opacity: 1; }
.svc__main { flex: 1; min-width: 0; }
.svc__name { display: block; font-weight: 600; font-size: 0.95rem; }
.svc__meta { display: block; font-family: var(--font-mono); font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-faint); margin-top: 4px; }
.svc__price { font-family: var(--font-mono); font-size: 0.76rem; color: var(--accent-bright); text-align: right; flex-shrink: 0; max-width: 44%; line-height: 1.4; }

/* preferred contact channel */
.chanpick { display: flex; gap: 8px; margin: 0 0 12px; }
.chan {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 8px; border-radius: 10px; border: 1px solid var(--line-strong);
  background: #ffffff; color: var(--text-muted); font: inherit; font-size: 0.92rem; font-weight: 600;
  cursor: pointer; transition: border-color 0.15s, background 0.15s, color 0.15s, box-shadow 0.15s;
}
.chan:hover { color: var(--text); border-color: var(--line-strong); }
.chan.is-on { color: var(--accent-deep); border-color: var(--accent); background: var(--accent-soft); box-shadow: 0 0 0 1px var(--accent) inset; }
.chan__ic { width: 17px; height: 17px; flex: none; }
.chan__ic--brand { color: currentColor; }
@media (max-width: 440px) { .chan { flex-direction: column; gap: 5px; font-size: 0.82rem; padding: 10px 4px; } }

/* requirements hint */
.wiz__reqs { border-left: 2px solid var(--accent); background: rgba(29,78,216,0.06); border-radius: 0 8px 8px 0; padding: 11px 14px; margin-bottom: 16px; font-size: 0.84rem; color: var(--text-muted); }
.wiz__reqs strong { display: block; color: var(--accent-bright); font-family: var(--font-mono); text-transform: uppercase; font-size: 0.64rem; letter-spacing: 0.1em; margin-bottom: 4px; }

/* inputs */
.wiz__in {
  width: 100%; background: #ffffff; border: 1px solid var(--line-strong); border-radius: 9px;
  padding: 14px 15px; color: var(--text); font-family: inherit; font-size: 0.95rem; margin-bottom: 9px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.wiz__ta { resize: vertical; min-height: 56px; }
.wiz__in::placeholder { color: var(--text-faint); }
.wiz__in:focus { outline: none; border-color: var(--accent); background: #ffffff; box-shadow: 0 0 0 3px var(--accent-soft); }
.wiz__in.err { border-color: #ff5d6c; box-shadow: 0 0 0 3px rgba(255,93,108,0.16); }

/* primary action — mono console button */
.wiz__go {
  width: 100%; margin-top: 6px; display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 20px; border: 0; border-radius: 9px; background: var(--accent); color: #fff;
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.07em; font-weight: 500; font-size: 0.8rem;
  box-shadow: 0 12px 30px -12px rgba(29,78,216,0.8); transition: transform 0.2s var(--ease), background 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.wiz__go svg { width: 15px; height: 15px; }
.wiz__go:hover { background: var(--accent-bright); transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(29,78,216,0.95); }
.wiz__go:disabled { opacity: 0.35; pointer-events: none; box-shadow: none; }
.wiz__fine { color: var(--text-faint); font-size: 0.78rem; text-align: center; margin-top: 13px; }
.wiz__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.wiz__err { color: #c0392b; font-size: 0.85rem; text-align: center; margin-top: 12px; }
.wiz__err a { color: #c0392b; text-decoration: underline; font-weight: 600; }

/* done */
.wiz__done { text-align: center; padding: 10px 6px; }
.wiz__check { display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-bright); border: 1px solid var(--accent); margin-bottom: 16px; }
.wiz__check svg { width: 23px; height: 23px; }
.wiz__recap { text-align: left; border: 1px solid var(--line); border-radius: 12px; margin: 6px 0 16px; overflow: hidden; }
.wiz__recap .rc__row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 13px 16px; border-bottom: 1px solid var(--line); }
.wiz__recap .rc__row:last-child { border-bottom: 0; }
.wiz__recap .rc__k { font-size: 0.82rem; color: var(--text-muted); flex-shrink: 0; }
.wiz__recap .rc__v { font-size: 0.95rem; color: var(--text); font-weight: 600; text-align: right; word-break: break-word; }
.wiz__recap .rc__v--accent { color: var(--accent-bright); }

.plogo { width: 18px; height: 18px; color: var(--text); flex-shrink: 0; }

/* secondary CTA: username marketplace (under the wizard) */
.market-cta {
  display: flex; width: max-content; max-width: 100%; align-items: center; gap: 10px;
  margin: 16px auto 0; padding: 13px 22px; border-radius: 999px;
  background: #ffffff; border: 1px solid var(--line-strong); color: var(--text);
  font-weight: 600; font-size: 0.95rem; letter-spacing: -0.01em;
  box-shadow: 0 12px 30px -20px rgba(20,30,55,0.3);
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.market-cta:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); box-shadow: 0 16px 36px -20px rgba(29,78,216,0.45); }
.market-cta__ic { width: 18px; height: 18px; color: #229ED9; flex-shrink: 0; }
.market-cta__arrow { width: 16px; height: 16px; flex-shrink: 0; }

.finder__for { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 16px; margin-top: 26px; }
.finder__for span { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.66rem; color: var(--text-faint); }
.forlogo { width: 19px; height: 19px; color: var(--text-faint); transition: color 0.2s, transform 0.2s var(--ease); }
.forlogo:hover { color: var(--text); transform: translateY(-2px); }
@keyframes wizIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---------- platform strip ---------- */
.platforms { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(20,30,55,0.02); }
.platforms__inner { display: flex; align-items: center; gap: 18px 40px; flex-wrap: wrap; padding: 26px 28px; }
.platforms__label { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.68rem; color: var(--text-faint); }
.platforms__list { list-style: none; display: flex; flex-wrap: wrap; gap: 14px 34px; }
.platforms__list li { color: var(--text-muted); font-weight: 600; font-size: 1rem; letter-spacing: -0.01em; }

/* ---------- what we help with (phones + flanking features) ---------- */
.section__head--center { max-width: 640px; margin: 0 auto 52px; text-align: center; border-bottom: 0; padding-bottom: 0; }
.section__head--center .section__sub { margin-left: auto; margin-right: auto; }

/* "How it works" sub-heading inside What we do */
.howhead { text-align: center; margin: 96px 0 24px; }
.howhead span { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: -0.02em; }

.helps__grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: center; }
.helps__col { display: flex; flex-direction: column; gap: 54px; }
.helps__col--left { align-items: flex-end; text-align: right; }
.helps__col--right { align-items: flex-start; text-align: left; }
/* arc the flanking features around the phone (top out for space, bottom hugs phone) */
.helps__col--left .help:nth-child(1)  { transform: translateX(0); }
.helps__col--left .help:nth-child(2)  { transform: translateX(-26px); }
.helps__col--left .help:nth-child(3)  { transform: translateX(78px); }
.helps__col--right .help:nth-child(1) { transform: translateX(0); }
.helps__col--right .help:nth-child(2) { transform: translateX(26px); }
.helps__col--right .help:nth-child(3) { transform: translateX(-78px); }
.help { max-width: 300px; }
.help__ic {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 16px;
  background: linear-gradient(155deg, var(--accent-bright), var(--accent-deep)); color: #fff;
  border: 1px solid rgba(255,255,255,0.14); box-shadow: 0 14px 30px -12px rgba(29,78,216,0.8);
}
.help__ic svg { width: 26px; height: 26px; }
.help h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.26rem; letter-spacing: -0.015em; }
.help p { color: var(--text-muted); margin-top: 10px; font-size: 0.96rem; }

/* phones */
.helps__phones { position: relative; display: flex; justify-content: center; align-items: center; padding: 24px 0; }
.phones-img {
  display: block; width: 400px; max-width: 100%; height: auto;
  /* fade the render's glow + black edges into the page (no hard box) */
  -webkit-mask-image: radial-gradient(ellipse 82% 86% at 50% 50%, #000 62%, transparent 100%);
  mask-image: radial-gradient(ellipse 82% 86% at 50% 50%, #000 62%, transparent 100%);
  filter: drop-shadow(0 24px 44px rgba(20,30,55,0.18)) drop-shadow(0 0 36px rgba(80,120,255,0.18));
}
.phone { position: relative; flex-shrink: 0; }
.phone--a { width: 232px; transform: rotate(-8deg); margin-right: -64px; margin-top: 36px; z-index: 1; }
.phone--b { width: 360px; transform: rotate(7deg); z-index: 2; }
.phone--a.is-empty { width: 232px; }
.phone--b.is-empty { width: 232px; }
.phone:hover { z-index: 4; }

/* full device render supplied by user (transparent-background phone PNG) */
.phone__full {
  display: block; width: 100%; height: auto;
  /* soft light rim + wider blue atmosphere + depth shadow, so the edge is lit and fades */
  filter:
    drop-shadow(0 0 16px rgba(175,200,255,0.34))
    drop-shadow(0 0 52px rgba(74,116,240,0.26))
    drop-shadow(0 26px 44px rgba(20,30,55,0.18));
}

/* fallback CSS frame (shown only when the image is missing) */
.phone__frame {
  display: none; padding: 9px; background: linear-gradient(160deg, #1b2130, #090c12);
  border: 1px solid var(--line-strong); border-radius: 40px;
  box-shadow: 0 60px 100px -45px rgba(20,30,55,0.13), inset 0 1px 0 rgba(255,255,255,0.07);
}
.phone.is-empty .phone__frame { display: block; }
.phone__notch { position: absolute; top: 9px; left: 50%; transform: translateX(-50%); width: 82px; height: 20px; background: #090c12; border-radius: 0 0 14px 14px; z-index: 3; }
.phone__screen {
  position: relative; border-radius: 31px; overflow: hidden; aspect-ratio: 9 / 19.3;
  background: linear-gradient(180deg, #171d2a, #0c1018); display: grid; place-items: center;
}
.phone__ph { font-family: var(--font-mono); font-size: 0.64rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--text-faint); }

@media (max-width: 920px) {
  .helps__grid { grid-template-columns: 1fr; gap: 40px; justify-items: center; }
  .helps__phones { order: 1; }
  .helps__col--left { order: 2; }
  .helps__col--right { order: 3; }
  .helps__col { align-items: flex-start; text-align: left; gap: 40px; width: 100%; max-width: 420px; }
  .helps__col--left { align-items: flex-start; text-align: left; }
  .helps__col .help { transform: none !important; }
  .help { max-width: none; }
  .phone--a { width: 190px; margin-right: -54px; margin-top: 28px; }
  .phone--b { width: 296px; }
}

/* ---------- process — vertical timeline ---------- */
.flow { list-style: none; display: flex; flex-direction: column; max-width: 600px; margin: 28px auto 32px; }
.flowstep { position: relative; display: grid; grid-template-columns: 68px 1fr; column-gap: 24px; padding-bottom: 40px; }
.flowstep:last-child { padding-bottom: 0; }
.flowstep::before { content: ""; position: absolute; left: 34px; top: 80px; bottom: 4px; width: 2px; transform: translateX(-50%); background: linear-gradient(180deg, var(--accent), rgba(29,78,216,0.18)); }
.flowstep:last-child::before { display: none; }
.flowstep__top { grid-column: 1; grid-row: 1 / span 2; align-self: start; }
.flowstep__num {
  width: 68px; height: 68px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; color: #fff;
  background: linear-gradient(155deg, var(--accent-bright), var(--accent-deep));
  border: 1px solid rgba(255,255,255,0.16); box-shadow: 0 16px 34px -12px rgba(29,78,216,0.85);
}
.flowstep__arrow { display: none; }
.flowstep h3 { grid-column: 2; align-self: start; min-height: 68px; display: flex; align-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.34rem; letter-spacing: -0.015em; margin: 0; }
.flowstep p { grid-column: 2; color: var(--text-muted); margin: -2px 0 0; font-size: 1rem; line-height: 1.55; max-width: 48ch; }

@media (max-width: 560px) {
  .flowstep { grid-template-columns: 56px 1fr; column-gap: 18px; padding-bottom: 32px; }
  .flowstep__num { width: 56px; height: 56px; font-size: 1.42rem; }
  .flowstep::before { left: 28px; top: 66px; }
  .flowstep h3 { min-height: 56px; font-size: 1.18rem; }
  .flowstep p { font-size: 0.95rem; }
}

/* ---------- why: trust lines ---------- */
#about .section__head { margin-bottom: 36px; }
#about .section__sub { font-size: 0.96rem; max-width: 52ch; }
.trustlist { list-style: none; display: flex; flex-direction: column; gap: 16px; max-width: 600px; margin: 0 auto; }
.trustline { display: flex; align-items: flex-start; gap: 14px; }
.trustline__ic { flex-shrink: 0; color: var(--accent-bright); margin-top: 2px; }
.trustline__ic svg { width: 21px; height: 21px; }
.trustline p { color: var(--text-muted); font-size: 1.04rem; line-height: 1.55; margin: 0; }
.trustline p strong { color: var(--text); font-weight: 700; }

/* ---------- reviews (horizontal scroller + next button) ---------- */
.revs-wrap { position: relative; margin-top: 52px; }
.revs { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 8px 0; scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; }
.revs::-webkit-scrollbar { display: none; }
.revs__next { position: absolute; top: 50%; right: -12px; transform: translateY(-50%); z-index: 6; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: var(--accent); color: #fff; border: 1px solid rgba(255,255,255,0.18); box-shadow: 0 18px 38px -12px rgba(29,78,216,0.9); transition: background 0.2s, transform 0.2s var(--ease); }
.revs__next:hover { background: var(--accent-bright); transform: translateY(-50%) scale(1.07); }
.revs__next svg { width: 22px; height: 22px; }
.rev { flex: 0 0 330px; max-width: 84vw; scroll-snap-align: start; background: var(--bg-soft); border: 1px solid var(--line-strong); border-radius: 24px; padding: 28px 26px; display: flex; flex-direction: column; transition: transform 0.25s var(--ease), border-color 0.25s; }
.rev:hover { transform: translateY(-3px); border-color: var(--accent); }
.rev__top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 18px; }
.rev__stars { color: #f5b40a; font-size: 1.02rem; letter-spacing: 2px; }
.rev__mark { font-family: var(--font-display); font-size: 2.6rem; line-height: 0.5; color: var(--accent); opacity: 0.35; }
.rev blockquote { color: var(--text); font-size: 0.98rem; line-height: 1.55; padding-bottom: 20px; border-bottom: 1px solid var(--line); flex: 1; }
.rev figcaption { display: flex; flex-direction: column; gap: 3px; margin-top: 18px; }
.rev__name { font-weight: 700; font-size: 0.95rem; }
.rev__tag { color: var(--accent-bright); font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.05em; text-transform: uppercase; margin-top: 2px; }

/* ---------- guarantee — contained widget ---------- */
.guarantee {
  padding: 80px 0; position: relative; z-index: 1;
  background: radial-gradient(600px circle at 50% 0%, var(--accent-soft), transparent 65%), var(--bg);
}
.guarantee__inner {
  max-width: 760px; margin: 0 auto; padding: 52px 44px; text-align: center; position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  background: var(--bg-soft); border: 1px solid var(--line-strong); border-radius: 18px;
  box-shadow: 0 40px 100px -50px rgba(20,30,55,0.12);
}
.guarantee__inner::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(93,147,255,0.55), transparent); }
.guarantee__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.9rem, 4.5vw, 3rem); letter-spacing: -0.025em; line-height: 1.05; }
.guarantee__sub { color: var(--text-muted); font-size: 1.05rem; max-width: 54ch; }

/* ---------- reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review { background: var(--bg-soft); border: 1px solid var(--line-strong); border-radius: 14px; padding: 28px 26px; display: flex; flex-direction: column; gap: 20px; transition: transform 0.25s var(--ease), border-color 0.25s; }
.review:hover { transform: translateY(-3px); border-color: var(--accent); }
.review blockquote { font-size: 1.02rem; line-height: 1.55; color: var(--text); }
.review blockquote::before { content: "\201C"; font-family: var(--font-display); color: var(--accent); font-size: 2.4rem; line-height: 0; display: block; height: 0.4em; }
.review figcaption { display: flex; flex-direction: column; gap: 3px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
.review__name { font-weight: 600; font-size: 0.95rem; }
.review__meta { font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-faint); }
.reviews__note { display: table; margin: 30px auto 0; padding: 9px 16px; border: 1px solid var(--line); border-radius: 999px; background: rgba(20,30,55,0.03); font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-faint); }

/* ---------- faq — paneled accordion ---------- */
.faq { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 22px 2px; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; letter-spacing: -0.01em; transition: color 0.2s;
}
.faq__item summary:hover { color: var(--accent-bright); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; font-family: var(--font-body); font-weight: 400; font-size: 1.5rem; color: var(--text-faint);
  transition: transform 0.3s var(--ease), color 0.2s; flex-shrink: 0;
}
.faq__item[open] summary::after { transform: rotate(45deg); color: var(--accent-bright); }
.faq__body { overflow: hidden; padding: 0 2px 24px; max-width: 64ch; }
.faq__body p { color: var(--text-muted); }
.faq__body a { color: var(--accent-bright); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ---------- intake ---------- */
.intake__card {
  background: linear-gradient(180deg, var(--surface-2), var(--bg-soft));
  border: 1px solid var(--line-strong); border-radius: 22px; padding: 48px 44px;
  box-shadow: 0 40px 90px -50px rgba(20,30,55,0.12);
}
.intake__head { margin-bottom: 32px; }
.form { display: flex; flex-direction: column; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }
.field__opt { color: var(--text-faint); font-weight: 400; }
.field input, .field select, .field textarea {
  background: #ffffff; border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  padding: 13px 15px; color: var(--text); font-family: inherit; font-size: 0.97rem; width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: #ffffff;
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%239aa6bd' stroke-width='2'%3E%3Cpath d='m3 5 4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px; }
.form__assure { display: flex; gap: 11px; align-items: flex-start; color: var(--text-muted); font-size: 0.88rem; background: var(--accent-soft); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 16px; }
.form__assure svg { width: 18px; height: 18px; color: var(--accent-bright); flex-shrink: 0; margin-top: 1px; }
.form__success { color: var(--accent-bright); font-weight: 500; text-align: center; padding-top: 4px; }
.field.err input, .field.err select, .field.err textarea { border-color: #ff5d6c; }
.field.err input:focus, .field.err select:focus, .field.err textarea:focus { box-shadow: 0 0 0 3px rgba(255,93,108,0.16); }

/* ---------- final cta — widget panel ---------- */
.cta-final__inner {
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px;
  padding: 56px 44px; position: relative; overflow: hidden;
  background:
    radial-gradient(500px circle at 50% 0%, var(--accent-soft), transparent 70%),
    var(--bg-soft);
  border: 1px solid var(--line-strong); border-radius: 18px;
  box-shadow: 0 40px 100px -50px rgba(20,30,55,0.12);
}
.cta-final__inner::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(93,147,255,0.55), transparent); }
.cta-final .section__title { margin-top: 4px; }
.cta-final .section__sub { margin: 0 auto; }

/* ---------- subpages ---------- */
.section--page { padding-top: 124px; padding-bottom: 40px; }
.nav__links a[aria-current="page"] { color: var(--text); }
.page-cta { padding: 10px clamp(18px, 5vw, 28px) 110px; }
.page-cta__inner {
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 22px;
  padding: clamp(40px, 7vw, 58px) clamp(24px, 6vw, 48px); position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--line); border-radius: 20px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 24px 60px -46px rgba(20,30,55,0.22);
}
.page-cta__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.6rem, 3.5vw, 2.3rem); letter-spacing: -0.02em; }
/* calmer button glow inside the panel — avoids the heavy halo */
.page-cta .btn--primary { box-shadow: 0 10px 24px -14px rgba(29,78,216,0.5), inset 0 1px 0 rgba(255,255,255,0.18); }
.page-cta .btn--primary:hover { box-shadow: 0 14px 30px -14px rgba(29,78,216,0.65), inset 0 1px 0 rgba(255,255,255,0.18); }

/* ---------- footer (minimal) ---------- */
.footer { border-top: 1px solid var(--line); background: var(--bg-soft); position: relative; z-index: 1; }
.footer__min { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px 24px; padding: 18px 0; }
.footer__links { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer__links a { color: var(--text-muted); font-size: 0.85rem; transition: color 0.2s; }
.footer__links a:hover { color: var(--text); }
.footer__links--tiny a { font-size: 0.72rem; color: var(--text-faint); }

/* legal pages (privacy / terms) */
.legal { max-width: 70ch; margin: 0 auto; color: var(--text-muted); font-size: 0.96rem; line-height: 1.75; }
.legal h2 { font-family: var(--font-display); color: var(--text); font-size: 1.18rem; margin: 30px 0 10px; }
.legal h3 { color: var(--text); font-size: 1.02rem; margin: 22px 0 8px; }
.legal p { margin: 0 0 14px; }
.legal ul { margin: 0 0 14px; padding-left: 20px; }
.legal li { margin: 0 0 7px; }
.legal a { color: var(--accent-bright); }
.legal__placeholder { color: var(--text-faint); font-style: italic; }
.footer__copy { color: var(--text-faint); font-size: 0.8rem; }

/* ---------- business solutions page ---------- */
.biz-lead { max-width: 660px; }
.biz-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }
.biz-actions .btn { gap: 10px; }
.biz-actions .btn svg, .biz-actions .btn .plogo { width: 18px; height: 18px; }
.bizgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 32px; max-width: 1000px; margin: 0 auto; }
.bizgrid .help { max-width: none; }
.biz-note { text-align: center; color: var(--text-faint); font-size: 0.9rem; margin: 28px auto 0; max-width: 56ch; }
.biz-about-lead { text-align: center; color: var(--text-muted); font-size: 1.06rem; line-height: 1.6; max-width: 64ch; margin: 0 auto 36px; }
.howhead[id] { scroll-margin-top: 96px; }

/* ---------- corporate variant (business solutions only) ---------- */
body.corp {
  --accent:        #1e2a44;            /* deep navy — buttons */
  --accent-bright: #2a3a5c;
  --accent-deep:   #161f33;
  --accent-soft:   rgba(30, 42, 68, 0.06);
}
body.corp { background: #fbfcfe; }
/* squared-off buttons — corporate, not pill-shaped */
body.corp .btn { border-radius: 6px; }
/* navy buttons, no glow */
body.corp .btn--primary { box-shadow: none; }
body.corp .btn--primary:hover { background: var(--accent-bright); box-shadow: none; }
body.corp .btn--ghost { background: #fff; }
body.corp .btn--ghost:hover { color: var(--text); border-color: var(--accent); background: #eef1f6; }
/* service + step icons: flat slate-grey chips, no gradient or colored shadow */
body.corp .help__ic,
body.corp .flowstep__num {
  background: #eef1f6; color: var(--accent); border: 1px solid var(--line-strong); box-shadow: none;
}
/* numbered steps stay solid navy for hierarchy */
body.corp .flowstep__num { background: var(--accent); color: #fff; border-color: transparent; }
body.corp .flowstep::before { background: var(--line-strong); }
/* checkmarks in slate grey, not bright blue */
body.corp .trustline__ic { color: #64748b; }
/* tighten the display font weight so headings read more corporate */
body.corp .section__title { font-weight: 700; letter-spacing: -0.025em; }
/* neutralise the blue accent line + glow on the contact panel */
body.corp .cta-final__inner::before { background: linear-gradient(90deg, transparent, var(--line-strong), transparent); }
body.corp .cta-final__inner { background: var(--bg-soft); }

/* back-to-main pill (dismissible) */
.backhome {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  display: inline-flex; align-items: center; gap: 2px;
  background: #0e1626; border: 1px solid rgba(255,255,255,0.12); border-radius: 999px;
  box-shadow: 0 18px 44px -16px rgba(0,0,0,0.55), 0 4px 12px -6px rgba(0,0,0,0.4); padding: 4px;
  animation: backhomeIn 0.45s var(--ease) 0.4s both;
}
.backhome__link { display: inline-flex; align-items: center; gap: 7px; padding: 8px 8px 8px 14px; border-radius: 999px; font-size: 0.88rem; font-weight: 600; color: #fff; }
.backhome__link svg { width: 15px; height: 15px; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.backhome__link:hover { color: #fff; }
.backhome__link:hover svg { color: #fff; }
.backhome__x { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: transparent; border: 0; color: rgba(255,255,255,0.6); font-size: 1.2rem; line-height: 1; cursor: pointer; transition: background 0.2s, color 0.2s; }
.backhome__x:hover { background: rgba(255,255,255,0.14); color: #fff; }
@keyframes backhomeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@media (max-width: 680px) { .backhome { right: 12px; bottom: 12px; left: auto; } }

/* "Talk to us now" one-line prompt */
.tgask { position: fixed; inset: 0; z-index: 90; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(13,25,48,0.45); backdrop-filter: blur(3px); }
.tgask.is-open { display: flex; animation: tgaskIn 0.2s var(--ease); }
.tgask__card { position: relative; width: 100%; max-width: 380px; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 26px 22px 22px; box-shadow: 0 40px 100px -40px rgba(13,25,48,0.5); }
.tgask__close { position: absolute; top: 12px; right: 12px; width: 30px; height: 30px; border: 0; background: transparent; color: var(--text-faint); font-size: 1.4rem; line-height: 1; cursor: pointer; border-radius: 50%; transition: background 0.2s, color 0.2s; }
.tgask__close:hover { background: var(--bg-soft); color: var(--text); }
.tgask__title { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; letter-spacing: -0.015em; }
.tgask__sub { color: var(--text-muted); font-size: 0.92rem; margin: 6px 0 16px; }
.tgask__in { width: 100%; padding: 13px 15px; border: 1px solid var(--line-strong); border-radius: 10px; background: #fff; color: var(--text); font: inherit; font-size: 0.95rem; margin-bottom: 12px; }
.tgask__in::placeholder { color: var(--text-faint); }
.tgask__in:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.tgask__go { width: 100%; padding: 13px; border: 0; border-radius: 10px; background: var(--accent); color: #fff; font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: background 0.2s, transform 0.2s var(--ease); }
.tgask__go:hover { background: var(--accent-bright); transform: translateY(-1px); }
.tgask__hint { color: var(--text-faint); font-size: 0.82rem; text-align: center; margin: 11px 0 0; }
@keyframes tgaskIn { from { opacity: 0; } to { opacity: 1; } }

/* hero eyebrow */
body.corp .biz-eyebrow { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.72rem; color: var(--text-faint); margin-bottom: 16px; }
/* header contact button */
body.corp .nav__cta { padding: 9px 18px; font-size: 0.88rem; }
/* tighter, denser section rhythm */
body.corp .howhead { margin: 68px 0 30px; }
body.corp .section__head--center { margin-bottom: 44px; }
/* service items become bordered capability cards */
body.corp .bizgrid { gap: 20px; max-width: 1040px; }
body.corp .bizgrid .help {
  background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 26px 24px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}
body.corp .bizgrid .help:hover { border-color: var(--line-strong); box-shadow: 0 14px 32px -20px rgba(13,25,48,0.3); transform: translateY(-2px); }
body.corp .bizgrid .help__ic { width: 44px; height: 44px; margin-bottom: 14px; }
body.corp .bizgrid .help__ic svg { width: 21px; height: 21px; }
body.corp .bizgrid .help h3 { font-size: 1.1rem; }
body.corp .bizgrid .help p { font-size: 0.92rem; margin-top: 8px; }
/* trust points in two columns to use the width */
body.corp .trustlist { max-width: 920px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px 44px; }
body.corp .trustline p { font-size: 0.98rem; }
/* contact section anchor offset under sticky nav */
body.corp #contact { scroll-margin-top: 88px; }
@media (max-width: 720px) { body.corp .trustlist { grid-template-columns: 1fr; } }

/* about us — narrative + stats, two columns */
body.corp .biz-about {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center;
  max-width: 1040px; margin: 80px auto 0; scroll-margin-top: 88px;
}
body.corp .biz-about__copy .biz-eyebrow { margin-bottom: 12px; }
body.corp .biz-about__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.55rem, 3vw, 2.05rem); letter-spacing: -0.025em; margin: 0 0 18px; }
body.corp .biz-about__copy p { color: var(--text-muted); font-size: 1rem; line-height: 1.65; margin: 0 0 14px; }
body.corp .biz-about__copy p:last-child { margin-bottom: 0; }
body.corp .biz-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
}
body.corp .biz-stat { background: #fff; padding: 26px 22px; display: flex; flex-direction: column; gap: 5px; }
body.corp .biz-stat__n { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; letter-spacing: -0.02em; color: var(--accent); line-height: 1; }
body.corp .biz-stat__l { font-size: 0.8rem; color: var(--text-faint); }
@media (max-width: 760px) { body.corp .biz-about { grid-template-columns: 1fr; gap: 30px; margin-top: 60px; } }
.cta-final .biz-actions { margin-top: 10px; }
@media (max-width: 860px) { .bizgrid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .bizgrid { grid-template-columns: 1fr; } }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .cards, .reviews, .steps, .why-grid, .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .section { padding: clamp(56px, 13vw, 84px) 0; }
  .section__head { margin-bottom: 36px; }
  /* hero: top-aligned with even spacing instead of full-height centering */
  .hero { min-height: auto; align-items: flex-start; padding: clamp(96px, 24vw, 124px) 0 clamp(44px, 12vw, 72px); }
  .cards, .reviews, .steps, .why-grid, .form__row, .footer__inner { grid-template-columns: 1fr; }
  .why { border-right: 0; }
  .why:nth-last-child(2) { border-bottom: 1px solid var(--line); }
  .intake__card { padding: 32px 22px; }
  .footer__brand { grid-column: 1 / -1; }
  .section--page { padding-top: clamp(96px, 24vw, 120px); }
  .page-cta { padding: clamp(48px, 12vw, 72px) clamp(18px, 5vw, 28px); }
}

/* ---------- phones ---------- */
@media (max-width: 560px) {
  .hero__title { margin-top: 8px; }
  .hero__lede { margin-top: 16px; }
  /* trust points stack into a clean centered column */
  .trust-chips { flex-direction: column; align-items: center; gap: 12px; margin-top: 26px; }
  .trust-chips li { font-size: 0.95rem; }
  .finder__for { gap: 14px; margin-top: 22px; }
  .wiz { margin-top: 28px; }
  .wiz__body { padding: 22px 18px 22px; }
  /* keep the floating CTA from covering the footer */
  .footer__min { justify-content: center; text-align: center; row-gap: 6px; }
  .footer { padding-bottom: 92px; }
  /* reviews: keep the card and its next button off the screen edges */
  .revs-wrap { margin-top: 38px; }
  .rev { flex: 0 0 auto; width: calc(100vw - 96px); max-width: 360px; padding: 24px 22px; }
  .revs__next { right: 2px; width: 44px; height: 44px; box-shadow: 0 12px 26px -10px rgba(29,78,216,0.9); }
  .revs__next svg { width: 18px; height: 18px; }
}

/* very small phones: stack the platform + handle entry so neither gets cramped */
@media (max-width: 360px) {
  .wiz__entry { flex-direction: column; align-items: stretch; }
  .wsel { width: 100%; }
  .wsel__btn { width: 100%; justify-content: flex-start; border-right: 0; border-bottom: 1px solid var(--line); border-radius: 12px 12px 0 0; }
  .wiz__entry-in { border-radius: 0 0 12px 12px; }
}
