/* =====================
   GLOBAL / TOKENS
   ===================== */

@import url("https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,700,900&display=swap");

html, body { max-width: 100%; overflow-x: hidden; }
* { box-sizing: border-box; }
img, svg { max-width: 100%; height: auto; display: block; }



/* ================================
   HEADER + NAVIGATION + DROPDOWN
   ================================ */

/* ----- Base header ----- */
/* Header fixed to top */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #0d1117;
  color: var(--text, #e7eef5);
  border-bottom: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
  transition: background .25s ease, box-shadow .25s ease;
}

/* make room for the fixed header (adjust if you change padding) */
:root { --header-h: 68px; }   /* approx: 14px top + 14px bottom + logo height */
body { padding-top: var(--header-h); }

/* ----- Header container ----- */
.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;  /* logo left, nav right */
  gap: 16px;
  transition: padding .25s ease;
}

/* ----- Brand ----- */
.header__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  flex: 0 0 auto;
}

.brand__logo {
  height: 40px;   /* adjust to your logo height */
  width: auto;
  display: block;
}

.brand__name {
  font-size: 1.05rem;
  transition: font-size .25s ease, opacity .25s ease;
}

/* ----- Nav container ----- */
.header__nav {
  margin-left: auto;
  max-height: none;
  overflow: visible;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__list li { list-style: none; }

.nav__list a {
  text-decoration: none;
  color: var(--text, #e7eef5);
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 6px;
  transition: background .2s ease;
}

.nav__list a:hover {
  background: rgba(255,255,255,.06);
}

/* ----- Mobile layout ----- */
@media (max-width: 899.98px) {
  .header__inner {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .header__nav {
    width: 100%;
    margin-left: 0;
  }
  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 0;
  }
}

/* ----- Mobile toggle ----- */
.header__toggle{
  justify-self: end;
  width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  cursor: pointer;
}
.header__toggle .toggle__bar{
  width: 18px; height: 2px; border-radius: 2px;
  background: currentColor; display: block;
  transition: transform .2s ease, opacity .2s ease;
}

/* ----- Nav container ----- */
.header__nav{
  grid-column: 1 / -1;
  max-height: 0; overflow: hidden;
  transition: max-height .22s ease;
}
.header__nav[aria-hidden="false"]{ max-height: 420px; }

/* ----- Links list (kill bullets everywhere) ----- */
.nav__list{ list-style: none; margin: 8px 0 0; padding: 8px 0; display: grid; gap: 6px; }
.nav__list > li{ list-style: none; }
.nav__list a{
  display: block;
  padding: 12px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text, #e7eef5);
  font-weight: 700;
}
.nav__list a:hover{ background: rgba(255,255,255,.05); }

/* ----- Header CTA (match hero button style) ----- */
.nav__cta .cta{
  display: inline-block;
  background-color: var(--brand, #38e6c1);
  color: #000;
  font-weight: 800;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color .3s, box-shadow .3s, transform .3s;
  box-shadow: 0 0 8px var(--brand, #38e6c1);
}
.nav__cta .cta:hover{
  background-color: var(--brand, #38e6c1);
  box-shadow: 0 0 15px var(--brand-200, #5cd0b8), 0 0 25px var(--brand-200, #5cd0b8);
  transform: scale(1.05);
}

/* =================
   Services Dropdown
   ================= */
.nav--has-sub{ position: relative; }

/* Works if you used a <button class="nav__services">… or an <a> inside the LI */
.nav__services,
.nav__list > .nav--has-sub > a{
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 800;
  color: var(--text, #e7eef5);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
}
.nav__services:hover,
.nav__list > .nav--has-sub > a:hover{
  background: rgba(255,255,255,.06);
}
.nav__services .chev,
.nav__list > .nav--has-sub > a .chev{
  width: 16px; height: 16px;
  stroke: currentColor; fill: none; stroke-width: 2;
  transition: transform .2s ease, opacity .2s ease;
}

/* Dropdown panel */
.subnav{
  list-style: none;
  position: absolute; left: 0; top: calc(100% + 8px);
  min-width: 220px;
  background: #111823;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 8px 0;
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity .16s ease, transform .16s ease, visibility 0s linear .16s;
  z-index: 100;
}

/* Hover bridge so it doesn’t disappear if you’re slow */
.nav--has-sub::after{
  content:""; position:absolute; left:0; right:0; top:100%; height: 12px;
  pointer-events:auto; background:transparent; z-index: 101;
}

/* Open states (hover/focus desktop, .nav--open for JS/mobile) */
.nav--has-sub:hover .subnav,
.nav--has-sub:focus-within .subnav,
.nav--has-sub.nav--open .subnav{
  opacity: 1; visibility: visible; transform: translateY(0); transition-delay: 0s;
}
.nav--has-sub:hover .chev,
.nav--has-sub:focus-within .chev,
.nav--has-sub.nav--open .chev{ transform: rotate(180deg); opacity: 1; }

/* Submenu links */
.subnav a{
  display: block; padding: 10px 14px; color: #e7eef5; text-decoration: none; font-weight: 600; white-space: nowrap;
}
.subnav a:hover{ background: rgba(255,255,255,.08); color: #fff; }

/* Desktop hover behavior */
@media (min-width: 900px){
  .header__nav{ overflow: visible; }
}

/* Mobile dropdown = accordion */
@media (max-width: 899.98px){
  .nav--has-sub{ position: static; }
  .subnav{
    position: static; min-width: 0; border-radius: 0; border: 1px solid rgba(255,255,255,.06);
    background: transparent; box-shadow: none; opacity: 1; transform: none; pointer-events: auto;
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
  }
  .nav--has-sub::after{ display: none; }
  .nav--open > .subnav{ max-height: 500px; }
}

@media (min-width: 900px){
  .header__inner{
    display: flex;                   /* force flexbox */
    align-items: center;
    justify-content: space-between;  /* logo left, nav right */
  }

  .header__toggle{ display: none; }

  .header__nav{
    max-height: none;
    overflow: visible;
  }

  .nav__list{
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 18px;                        /* spacing between links */
    justify-content: flex-end;
  }

  .nav__list a{ padding: 10px 12px; }
  .nav__cta .cta{ margin-left: 12px; }
}


/* Shadow when scrolled a touch */
.site-header[data-scrolled="true"]{
  box-shadow: 0 10px 30px rgba(0,0,0,.28);
}

/* ========= Gradient underline cue on Services (desktop + open) ========= */
.nav__list > .nav--has-sub > a::after,
.nav__services::after{
  content:""; position:absolute; left:12px; right:12px; bottom:6px; height:2px;
  background: linear-gradient(90deg, var(--accent,#38e6c1), var(--accent2,#5a8bff) 55%, var(--accent3,#ff7a59));
  transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
.nav__list > .nav--has-sub:hover > a::after,
.nav__list > .nav--has-sub:focus-within > a::after,
.nav__list > .nav--has-sub.nav--open > a::after,
.nav__services[aria-expanded="true"]::after{
  transform: scaleX(1);
}

/* ============= Shrink on scroll ============= */
.site-header.shrink{
  background: rgba(13,17,23,.88);
  box-shadow: 0 8px 24px rgba(0,0,0,.28);
}
.site-header.shrink .header__inner{ padding: 8px 14px; }
.site-header.shrink .brand__logo{ transform: scale(.88); }
.site-header.shrink .brand__name{ font-size: .95rem; opacity: .9; }
.site-header.shrink .nav__list a{ padding: 8px 10px; opacity: .95; }
.site-header.shrink .nav__cta .cta{ padding: 8px 12px; box-shadow: 0 4px 14px rgba(56,230,193,.22); }


/* If you used 100vw anywhere for section widths, prefer 100% */
.section,
.hero,
.wrapper { width: 100%; }
/* If something uses transform/absolute positioning, clip it */
.overflow-clip { overflow: clip; }  /* or overflow:hidden; */


:root{
  --maxw: 1200px;
  --space-xl: clamp(2.5rem, 4vw + 1rem, 6rem);
  --space-lg: clamp(1.25rem, 1.5vw + .5rem, 2rem);
  --space-md: 1rem;
  --radius-lg: 18px;
  --radius-md: 12px;

  /* colors */
  --bg: #000;             /* site background (dark) */
  --text: #eaeef4;        /* default text on dark */
  --muted: #9fb0c7;
  --soft-black: #222;     /* for light sections */
  --soft-text: #333;      /* for paragraphs on light */
  --brand: #76f2d3;
  --brand-200: #5cd0b8;
  --ring: #1b2b3c;

  /* type */
  --font-sans: "Satoshi", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 700;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* containers */
.container { width: min(100% - 2rem, var(--maxw)); margin-inline: auto; }

/* media defaults */
img,svg,video { display:block; max-width:100%; height:auto; }

/* =========================
   Hero — White / Studio (single column)
   ========================= */
.hero{
  /* tokens (scoped) */
  --bg:#ffffff; --text:#0b1220; --muted:#5b6573; --soft:#8b97a7;
  --border:#e9eef5; --chip:#f7f9fc;
  --shadow-1:0 6px 24px rgba(14,23,38,.06);
  --shadow-2:0 16px 42px rgba(14,23,38,.08);
  --radius-xl:22px; --radius-lg:16px;

  position: relative;
  background: var(--bg);
  color: var(--text);
  min-height: 100svh;              /* fill the whole section/viewport */
  display: grid;
  align-items: center;
  padding: clamp(24px, 5vw, 56px) 20px;
  overflow: clip;
}

/* Layout */
.hero__inner{
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  grid-template-columns: 1fr;      /* single column on all sizes */
}

/* Kill the old desktop two-column override */
@media (min-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; align-items: center; }
}

/* Expand content to use the whole hero area */
.hero__content{
  display: grid;
  gap: 16px;
  text-wrap: balance;
  max-width: 900px;                /* tweak as you like (or remove) */
  margin-inline: auto;             /* center the block */
}

/* If the right panel markup still exists, hide it */
.hero__visual{ display: none !important; }

/* Rating */
.hero__rating{
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .95rem; color: var(--soft);
}
.hero__rating .score{ color: var(--text); font-weight: 700; }
.hero__rating .stars{ color: #f5b300; }

/* Eyebrow */
.hero__eyebrow{
  margin: 0; font-size: .95rem; font-weight: 600; letter-spacing: .04em; color: var(--soft);
  display: inline-flex; align-items: center; gap: .5rem;
}
.hero__eyebrow::after{
  content:""; height: 2px; width: 40px;
  background: linear-gradient(90deg, var(--brand), transparent);
  border-radius: 2px;
}

/* Title */
.hero__title{
  margin: 0; font-weight: 800; letter-spacing: -0.018em; line-height: 1.08;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}

/* Subtext */
.hero__sub{
  margin: 6px 0 2px; max-width: 65ch;
  font-size: clamp(1rem, 1.35vw, 1.08rem);
  line-height: 1.65; color: var(--muted);
}

/* CTAs (scoped so they don’t bleed elsewhere) */
.hero .btn{
  display:inline-flex; align-items:center; justify-content:center;
  height:46px; padding:0 22px; border-radius:999px; font-weight:700; text-decoration:none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.hero .btn--primary{
  background: var(--brand, #38e6c1); color:#06241f;
  border:1px solid rgba(0,0,0,.04); box-shadow: var(--shadow-1);
}
.hero .btn--primary:hover{ transform: translateY(-2px); box-shadow: var(--shadow-2); }
.hero .btn--ghost{ background:transparent; color:var(--text); border:1px solid var(--border); }
.hero .btn--ghost:hover{ background: var(--chip); }

/* Reveal hooks */
.reveal{ opacity:0; transform: translateY(10px); will-change: opacity, transform; }
.reveal.is-visible{ opacity:1; transform:none; transition: opacity .6s ease var(--d,0ms), transform .6s ease var(--d,0ms); }
@media (prefers-reduced-motion: reduce){
  .reveal, .reveal.is-visible{ transition:none !important; transform:none !important; opacity:1 !important; }
}

/* ================================
   Contact Form Funnel — CTA Style
   Mobile-first, glossy + neon accent
   ================================ */

/* ---- Theme Tokens (match CTA) ---- */
.funnel{
  --ink: #ffffff;
  --ink-dim: rgba(255,255,255,.78);
  --muted: rgba(255,255,255,.55);
  --glass: rgba(255,255,255,.06);
  --glass-2: rgba(255,255,255,.08);
  --stroke: rgba(255,255,255,.14);
  --stroke-2: rgba(255,255,255,.24);
  --accent: #76f2d3;
  --accent-2: #34d3ff;
  --shadow-accent: 0 0 24px rgba(118,242,211,.32), 0 0 64px rgba(118,242,211,.22);

  position: relative;
  width: 100%;
  padding: 56px 20px;
  color: var(--ink);
  isolation: isolate;

  background:
    radial-gradient(1000px 600px at 10% -10%, rgba(118,242,211,.10), transparent 60%),
    radial-gradient(900px 480px at 110% 30%, rgba(52,211,255,.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.02));
  border-top: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(6px);
}

/* soft grid like the CTA */
.funnel::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(transparent 23px, rgba(255,255,255,.05) 24px),
    linear-gradient(90deg, transparent 23px, rgba(255,255,255,.05) 24px);
  background-size: 24px 24px, 24px 24px;
  mask-image: radial-gradient(900px 600px at 50% 0%, rgba(0,0,0,.5), transparent 75%);
  opacity: .18;
  pointer-events: none;
  z-index: 0;
}

.funnel-wrap { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }

/* ---- Heading ---- */
.funnel-heading {
  font-family: "Satoshi", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 800;
  letter-spacing: .2px;
  font-size: clamp(20px, 2.8vw, 26px);
  line-height: 1.25;
  margin: 0 0 18px;
  color: var(--ink);
  text-shadow: 0 1px 0 rgba(0,0,0,.2);
}
.funnel-heading .highlight {
  background: linear-gradient(
    90deg,
    #2fe6c5 0%,
    #26d0b0 20%,
    #4f89ff 50%,
    #3f78ff 70%,
    #ff6b47 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  filter: brightness(1.15) contrast(1.25) saturate(1.35);

  /* Glow effect */
  text-shadow: 
    0 0 8px rgba(47, 230, 197, 0.5),
    0 0 14px rgba(79, 137, 255, 0.4),
    0 0 20px rgba(255, 107, 71, 0.3);
}



/* ---- Form frame (fixed height like a big CTA card) ---- */
.funnel-form {
  position: relative;
  height: 70svh;
  min-height: 420px;
  max-height: 560px;
}

/* ---- Step card (glass + crisp border) ---- */
.funnel-step {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;

  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.04));
  border: 1px solid var(--stroke);
  border-radius: 22px;
  padding: clamp(22px, 4vw, 44px);
  box-shadow:
    0 1px 0 rgba(255,255,255,.06) inset,
    0 20px 60px rgba(0,0,0,.35);

  opacity: 0; transform: translateY(10px) scale(.995);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s cubic-bezier(.2,.7,.2,1);

  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.funnel-step.is-active {
  opacity: 1; transform: translateY(0) scale(1);
  pointer-events: auto; z-index: 1;
  border-color: var(--stroke-2);
}

/* ---- Question ---- */
.funnel-question {
  font-size: clamp(22px, 5vw, 36px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 18px;
  color: var(--ink);
}

/* ---- Options grid (chips) ---- */
.funnel-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin: 8px 0 16px;
  border: 0; padding: 0;
}

/* ---- Chip (pill buttons like CTA) ---- */
.chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 18px;
  border-radius: 999px;
  font-size: clamp(15px, 3.6vw, 18px);
  font-weight: 700;
  letter-spacing: .2px;

  color: var(--ink);
  background: linear-gradient(180deg, var(--glass-2), var(--glass));
  border: 1px solid var(--stroke);
  cursor: pointer;
  user-select: none;
  text-align: center;

  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}
.chip:hover { transform: translateY(-1px); border-color: var(--stroke-2); }

/* hide native input */
.chip input { position: absolute; inset: 0; opacity: 0; pointer-events: none; }

/* selected */
.chip:has(input:checked) {
  border: 2px solid var(--accent);
  background:
    linear-gradient(180deg, rgba(118,242,211,.16), rgba(118,242,211,.10));
  box-shadow: 0 0 0 4px rgba(118,242,211,.18), var(--shadow-accent);
  color: #061312;
}

/* ---- Text input ---- */
.funnel-input {
  width: 100%;
  max-width: 640px;
  padding: 16px 18px;
  border-radius: 16px;
  font-size: 18px;

  color: var(--ink);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.06));
  border: 1px solid var(--stroke);
  outline: none;

  transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,.25) inset;
}
.funnel-input::placeholder { color: var(--muted); }
.funnel-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 6px rgba(118,242,211,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.08));
}

/* ---- Actions (sticky bottom within card) ---- */
.funnel-actions {
  margin-top: auto;
  display: flex; gap: 10px; flex-wrap: wrap;
  padding-top: 16px;
}
.funnel-actions .funnel-back { margin-right: auto; }

/* ---- Buttons (match CTA primary/ghost) ---- */
.funnel-back,
.funnel-next {
  display: inline-block;
  border: 0; cursor: pointer;
  border-radius: 999px;

  padding: 14px 22px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .2px;

  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}

/* ghost secondary */
.funnel-back {
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.06));
  color: var(--ink);
  border: 1px solid var(--stroke);
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}
.funnel-back:hover {
  transform: translateY(-1px);
  border-color: var(--stroke-2);
  box-shadow: 0 10px 26px rgba(0,0,0,.32);
}

/* neon primary (CTA style) */
.funnel-next {
  color: #061312;
  background:
    linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 8px 22px rgba(0,0,0,.35), var(--shadow-accent);
  border: 1px solid rgba(0,0,0,.15);
}
.funnel-next:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0,0,0,.42), 0 0 24px rgba(118,242,211,.35), 0 0 48px rgba(118,242,211,.25);
}

/* disabled states */
.funnel-next:disabled, .funnel-back:disabled {
  opacity: .55; cursor: not-allowed; box-shadow: none; transform: none;
}

/* ---- Done message ---- */
.funnel-done {
  margin: 0;
  color: #cfeee6;
  font-weight: 700;
  font-size: clamp(16px, 2.8vw, 22px);
}

/* ---- Progress dots (optional, matches CTA) ---- */
.funnel-progress {
  display: flex; gap: 8px; align-items: center;
  margin-bottom: 14px;
}
.funnel-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: rgba(255,255,255,.28);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.funnel-dot.is-active {
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(118,242,211,.18);
  transform: scale(1.15);
}
/* ========= Compact / Tight variant ========= */
.funnel--tight .funnel-wrap { max-width: 960px; }

.funnel--tight .funnel-form {
  /* reduce vertical bulk on larger screens */
  height: min(56svh, 520px);
  min-height: 380px;
  max-height: 520px;
}

@media (min-width: 900px) {
  /* cap the card width so the chips don't float in a sea of space */
  .funnel--tight .funnel-step {
    max-width: 860px;
    margin: 0 auto;
    padding: 28px 32px;     /* was clamp(...) — tighten a bit */
  }
}

/* Heading & subcopy density */
.funnel--tight .funnel-heading {
  margin-bottom: 8px;
  font-size: clamp(20px, 2.2vw, 24px);
  letter-spacing: .1px;
}
.funnel--tight .funnel-sub {
  color: var(--ink-dim);
  font-size: clamp(14px, 1.6vw, 16px);
  margin: 0 0 14px;
  opacity: .9;
}

/* Chips: slightly smaller and tighter grid on desktop */
.funnel--tight .funnel-options { gap: 10px; margin: 6px 0 8px; }
.funnel--tight .chip { padding: 12px 16px; font-size: clamp(14px, 3.2vw, 16px); }
@media (min-width: 900px) {
  .funnel--tight .funnel-options {
    grid-template-columns: repeat(3, minmax(0, 1fr)); /* force 2–3 rows, looks fuller */
  }
}

/* Bring actions closer to content */
.funnel--tight .funnel-actions { padding-top: 10px; gap: 8px; }
.funnel--tight .funnel-back,
.funnel--tight .funnel-next { padding: 12px 18px; font-size: 15px; }

/* Optional: add a subtle top “heading bar” to visually fill space */
.funnel--tight .funnel-step::after {
  content: "";
  position: absolute; left: 20px; right: 20px; top: 22px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  pointer-events: none;
}
.funnel--tight .funnel-question { margin-top: 6px; }

/* Optional: shrink glow so it feels less floaty */
.funnel--tight .chip:has(input:checked),
.funnel--tight .funnel-next:hover {
  box-shadow: 0 0 0 3px rgba(118,242,211,.16), 0 0 18px rgba(118,242,211,.18);
}


/* ---- Responsive polish ---- */
@media (min-width: 480px) {
  .chip { padding: 16px 22px; font-size: 17px; }
  .funnel-actions { gap: 12px; }
}
@media (min-width: 768px) {
  .funnel-form { height: 520px; }
  .funnel-question { font-size: clamp(28px, 3.2vw, 36px); }
  .chip { padding: 18px 26px; font-size: 19px; }
  .funnel-input { font-size: 20px; padding: 18px 24px; }
  .funnel-back, .funnel-next { font-size: 18px; padding: 16px 26px; }
}

/* ---- Motion respect ---- */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; scroll-behavior:auto !important; }
}
/* =====================
   INTRODUCTION (LIGHT) — CLEAN + ROBUST
   ===================== */
.intro{
  /* use your existing tokens if you have them */
  background:#fff;
  color:var(--soft-black, #0b1320);
  padding: clamp(48px, 6vw, 96px) 20px;
  font-family: var(--font-sans, system-ui, -apple-system, Segoe UI, Roboto, Arial);
  overflow-x: clip; /* prevent horizontal bleed */
}

.intro__inner{
  max-width: var(--maxw, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr; /* mobile: stack */
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
}
.intro__inner > *{ min-width: 0; }

/* MEDIA — crop tall canvas whitespace, keep art on left */
.intro__media{
  margin: 0;
  position: relative;
  --intro-media-h: clamp(240px, 38vw, 520px);
  height: var(--intro-media-h);
  overflow: hidden;                  /* crop empty top area in the PNG */
}
.intro__media img{
  position: absolute;
  left: 0;                           /* sit on the left */
  bottom: 0;                         /* anchor to bottom */
  height: 110%;                      /* slight zoom so feet aren’t clipped */
  width: auto;
  max-width: none;
  display: block;
  object-fit: contain;
  object-position: left bottom;
}

/* CONTENT */
.intro__content{ max-width: 780px; }

.intro__title{
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 0.65em;
  font-size: clamp(2rem, 2.6vw + 1.2rem, 3.25rem);
  color: #111;
}

.intro__subtitle{
  font-weight: 700;
  font-size: clamp(1.05rem, 1.2vw + 0.85rem, 1.35rem);
  line-height: 1.35;
  color: #0f54b6;
  margin: -0.25rem 0 1.25rem;
}

.intro__paragraph{
  font-weight: 400;
  font-size: clamp(1rem, .2vw + .95rem, 1.075rem);
  line-height: 1.7;
  color: var(--soft-text, #3b4450);
  margin: 0 0 0.9rem;
}

/* LOGOS — flat list, guaranteed spacing */
.intro__logos{
  display: flex;
  flex-wrap: wrap;                /* wrap to new line if needed */
  align-items: center;
  justify-content: flex-start;
  column-gap: 1.5rem;             /* horizontal spacing */
  row-gap: 1rem;                  /* vertical spacing */
  list-style: none;
  margin: clamp(1.5rem, 3vw, 2.25rem) 0 0;
  padding: 0;
}

.intro__logos > li{
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;                 /* never shrink/smoosh */
}

.intro__logos img {
  height: 28px;                   /* uniform badge height */
  width: auto;
  display: block;
  object-fit: contain;
  /* Remove grayscale */
  filter: none;                    /* keeps original colors */
}


/* Fallback for very old browsers with no flex gap */
@supports not (gap: 1rem){
  .intro__logos > li{ margin-right: 1.5rem; margin-bottom: 1rem; }
  .intro__logos > li:last-child{ margin-right: 0; }
}

/* DESKTOP LAYOUT: image left, content right */
@media (min-width: 980px){
  .intro__inner{
    grid-template-columns: 0.95fr 1.05fr; /* media | content */
  }
  .intro__media{ order: 1; }
  .intro__content{ order: 2; }
}

/* XS: single-row scroller (optional) */
@media (max-width: 560px){
  .intro__logos{
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .intro__logos > li{ flex: 0 0 auto; }
}







/* =====================
   SERVICES (DARK CARD GRID) — With Gradient Accents
   ===================== */

.services-section{
  --accent: #38e6c1;
  --accent-600: #2cc3a6;
  --panel: #121922;
  --bg: #0d1117;
  --text: #e7eef5;
  --muted: #9fb1c0;
  --ring: rgba(231,238,245,.14);
  --radius-lg: 18px;
  --radius-md: 12px;

  background: var(--bg);
  color: var(--text);
  padding: clamp(56px, 6vw, 96px) 20px;
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  position: relative;
  z-index: 0;
  isolation: isolate;
}

.services-wrap{ max-width: var(--maxw, 1200px); margin: 0 auto; }

/* Title with subtle accent bar + gradient highlight */
.services-title {
  font-size: clamp(1.8rem, 2.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 10px 0;
  color: #ffffff; /* brighter than var(--text) for richer contrast */
  position: relative;
}

.services-title .highlight {
  background: linear-gradient(
    90deg,
    #2fe6c5 0%,
    #26d0b0 20%,
    #4f89ff 50%,
    #3f78ff 70%,
    #ff6b47 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  filter: brightness(1.15) contrast(1.25) saturate(1.35);
}








.services-title::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #38e6c1, #2cc3a6, #0fd9ff);
  border-radius: 2px;
}

.services-sub{
  color: var(--muted);
  max-width: 800px;
  margin: 0 0 36px 0;
  line-height: 1.7;
}

.cards{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.card{
  grid-column: span 12;
  background: var(--panel);
  border: 1px solid var(--ring);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 28px rgba(0,0,0,.24);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover{
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 16px 40px rgba(56,230,193,.28);
}

.card-icon{
  width:44px; height:44px; display:grid; place-items:center;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid var(--ring);
  color: var(--accent);
  box-shadow: 0 0 0 6px rgba(56,230,193,.08);
}
.card-icon svg{ width:24px; height:24px; stroke-width:1.75; }

/* Gradient underline hover */
.card-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-top: 6px;
  letter-spacing: -.01em;
  color: var(--text);
  background-image: linear-gradient(var(--accent), var(--accent)); /* fallback */
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 2px;
  transition: background-size .25s ease, background-image .25s ease;
}

.card:hover .card-title {
  background-image: linear-gradient(
    90deg,
    var(--cta-accent),
    var(--cta-accent2),
    var(--cta-accent3)
  );
  background-size: 100% 2px;
}


.card-desc{ color: var(--muted); line-height: 1.7; }
.meta-title{ display:block; font-weight:700; margin-bottom:8px; color: var(--text); }

.meta-list{
  list-style:none; padding:0; margin:0;
  display:grid; gap:6px;
}
.meta-list li{ display:flex; align-items:center; gap:8px; color: var(--text); opacity:.95; }
.tick{
  width:18px; height:18px; flex:0 0 18px;
  border-radius:999px; border:1px solid var(--ring);
  display:grid; place-items:center; position:relative;
  background: rgba(255,255,255,.04);
}
.tick::after{
  content:""; width:10px; height:10px;
  border-right:2px solid var(--accent); border-bottom:2px solid var(--accent);
  transform: rotate(45deg) translate(-1px,-1px);
  display:block;
}

.card-cta {
  margin-top: auto;
  align-self: flex-start;
  display: inline-block;
  background-color: var(--brand);
  color: #000;
  font-weight: 800;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color .3s, box-shadow .3s, transform .3s;
  box-shadow: 0 0 8px var(--brand);
}

.card-cta:hover {
  background-color: var(--brand);
  box-shadow: 0 0 15px var(--brand-200), 0 0 25px var(--brand-200);
  transform: scale(1.05);
}


@media (min-width: 700px){
  .card{ grid-column: span 6; }
}
@media (min-width: 1024px){
  .card{ grid-column: span 4; }
  .card:nth-child(4){ grid-column: span 6; }
  .card:nth-child(5){ grid-column: span 6; }
}

/* End Services Section */

/* Why Us Section /*
/* =====================
   WHY US SECTION
   ===================== */
.whyus{
  background:#fff;
  color:#111;
  padding: clamp(48px, 6vw, 96px) 20px;
  overflow-x: clip;
  font-family: var(--font-sans, system-ui, -apple-system, Segoe UI, Roboto, Arial);
}
.whyus__inner{
  max-width: var(--maxw, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr; /* list | image */
  gap: clamp(28px, 6vw, 56px);
}
.whyus__inner > *{ min-width:0; } /* prevent overflow */

/* Header spans full width */
.whyus__header{
  grid-column: 1 / -1;
  max-width: 900px;
  margin: 0 auto clamp(12px, 2vw, 20px);
  text-align: center;
}
.whyus__title{
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 3.2vw + 1rem, 3.75rem);
  margin: 0 0 .35em;
  color: #111;
  text-shadow: none;
  text-align: left;
}
.whyus__intro{
  color: #5a5f67;
  font-size: clamp(0.975rem, .35vw + .95rem, 1.05rem);
  line-height: 1.6;
  margin: 0;
}

/* Accordion list */
.whyus__list{
  list-style: none;
  padding: 0;
  margin: clamp(8px, 1.2vw, 16px) 0 0;
  display: grid;
  gap: clamp(16px, 2.2vw, 28px);
  align-content: start;
}

/* Each accordion item uses <details> */
.whyus__acc{
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: clamp(8px, .8vw, 12px);
}

.whyus__summary{
  cursor: pointer;
  list-style: none;                 /* remove default triangle */
  display: grid;
  grid-template-columns: 1fr auto;  /* text | plus */
  align-items: baseline;
  gap: 16px;
  font-weight: 600;
  font-size: clamp(1.125rem, 1.2vw + 1rem, 1.75rem);
  line-height: 1.3;
}

.whyus__summary::-webkit-details-marker{ display:none; }

.whyus__summary::after{
  content:"+";
  font-weight:700;
  font-size:1.25em;
  line-height:1;
  opacity:.85;
  transform-origin:center;
  transition: transform .25s ease;
}

/* Open state: turn + into × */
.whyus__acc[open] .whyus__summary::after{
  transform: rotate(45deg);
}

/* Panel */
.whyus__panel{
  color:#555;
  font-size: clamp(.975rem, .3vw + .95rem, 1.05rem);
  line-height: 1.6;
  padding: 8px 0 0;
  overflow: hidden;
  /* smooth reveal */
  animation: whyus-reveal .25s ease;
}
@keyframes whyus-reveal{
  from{ opacity:0; transform: translateY(-4px); }
  to{ opacity:1; transform: translateY(0); }
}

/* Right: image */
.whyus__media{
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whyus__media img{
  width: 100%;
  height: auto;
  max-width: 640px;
  display: block;
}

/* Responsive */
@media (max-width: 980px){
  .whyus__inner{ grid-template-columns: 1fr; }  /* stack */
  .whyus__media{ order: 3; }                    /* image below list */
}

/* End Why Us Section */
/* Testimonials Section */
/* ===== Tokens to match your CTA (safe to keep once globally) ===== */
/* ================================
   TESTIMONIALS — Copy & Replace
   Glass / CTA style + mobile fixes
   ================================ */

/* Tokens (safe to keep global) */
:root{
  --cta-bg:#0d1117;
  --cta-card:rgba(18,25,34,.78);
  --cta-ring:rgba(231,238,245,.14);
  --cta-text:#e7eef5;
  --cta-muted:#9fb1c0;
  --cta-accent:#38e6c1;
  --cta-accent2:#5a8bff;
  --cta-accent3:#ff7a59;
  --radius-lg:24px;
  --radius-md:18px;
}

/* Glass helper */
.glass{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 50px rgba(0,0,0,.35), inset 0 0 0 1px var(--cta-ring);
}

/* ========================
   Section
   ======================== */
.testimonials{
  background: var(--cta-bg);
  color: var(--cta-text);
  padding-block: clamp(56px, 6vw, 96px);
  padding-inline: clamp(16px, 4vw, 28px);          /* mobile-safe side padding */
  position: relative;
  overflow: clip;
  font-family: var(--font-sans, system-ui, sans-serif);
}

.testimonials__inner{
  max-width: 1200px;
  margin-inline: auto;
  /* ensures children align with safe edges */
  padding: clamp(18px, 3.2vw, 28px);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  box-shadow: inset 0 0 0 1px var(--cta-ring), 0 12px 48px rgba(0,0,0,.35);
}

/* ========================
   Header
   ======================== */
.testimonials__header{
  max-width: 820px;
  margin: 0 auto clamp(24px, 4vw, 48px);
  text-align: center;
  /* critical: keep heading/intro INSIDE the box on small screens */
  padding-inline: clamp(12px, 3.2vw, 20px);
}
.testimonials__title{
  font-size: clamp(1.9rem, 3vw + 1rem, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 .35em;
  line-height: 1.15;
}
.gradient-text{
  background: linear-gradient(90deg, var(--cta-accent), var(--cta-accent2) 55%, var(--cta-accent3));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.testimonials__intro{
  font-size: clamp(1rem, .35vw + .95rem, 1.08rem);
  color: var(--cta-muted);
  line-height: 1.7;
  margin: 0;
}

/* ========================
   Grid
   ======================== */
.testimonials__grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 2.4vw, 28px);
  /* align grid edges with header padding on mobile */
  padding-inline: clamp(12px, 3.2vw, 20px);
}

/* 3-up desktop, 2-up tablet, 1-up phone */
.testimonials__grid > .testimonial{ grid-column: span 4; }
@media (max-width: 920px){
  .testimonials__grid > .testimonial{ grid-column: span 6; }
}
@media (max-width: 560px){
  .testimonials__grid{ grid-template-columns: 1fr; }
  .testimonials__grid > .testimonial{ grid-column: 1 / -1; }
}

/* ========================
   Card
   ======================== */
.testimonial{
  position: relative;
  padding: clamp(16px, 2.2vw, 22px);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  box-shadow: inset 0 0 0 1px var(--cta-ring), 0 8px 28px rgba(0,0,0,.28);
  display: grid;
  gap: 12px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  overflow-wrap: anywhere;  /* prevents long words from poking out */
}
.testimonial:hover{
  transform: translateY(-3px);
  box-shadow: inset 0 0 0 1px var(--cta-ring), 0 16px 40px rgba(0,0,0,.38);
}

/* quote icon */
.testimonial__icon{
  width: 28px; height: 28px; display: grid; place-items: center;
  background: radial-gradient(120% 160% at 20% 20%, #fff, #effff9 40%, #caffef 100%);
  color: #093e31; border-radius: 9px;
  box-shadow: 0 0 0 6px rgba(56,230,193,.12);
}
.testimonial__icon svg{ width: 18px; height: 18px; fill: currentColor; opacity:.9; }

/* text & author */
.testimonial__text{
  font-size: 1rem;
  line-height: 1.7;
  color: var(--cta-text);
  opacity: .95;
  font-style: italic;
}
.testimonial__author{
  display: flex; align-items: center; gap: 12px; margin-top: 2px;
}
.testimonial__author h4{
  font-size: 1rem; margin: 0; font-weight: 700; color: var(--cta-text);
}
.testimonial__author span{
  font-size: .9rem; color: var(--cta-muted);
}

/* ========================
   Compact mobile polish
   ======================== */
@media (max-width: 560px){
  .testimonials{ padding-block: 40px; }
  .testimonials__inner{ padding: 12px; border-radius: 18px; }
  .testimonials__header{ margin-bottom: 18px; text-align: left; }
  .testimonials__title{ font-size: clamp(1.6rem, 6vw, 2rem); }
  .testimonials__intro{ font-size: .98rem; line-height: 1.65; }
  .testimonial{ border-radius: 14px; padding: 14px; }
  .testimonial__icon{ width:24px; height:24px; border-radius:8px; box-shadow:0 0 0 4px rgba(56,230,193,.12); }
  .testimonial__icon svg{ width:16px; height:16px; }
  .testimonial__author h4{ font-size:.95rem; }
  .testimonial__author span{ font-size:.85rem; }
}

/* ========================
   Optional: swipeable mobile
   add class .testimonials--snap to the section
   ======================== */
@media (max-width: 560px){
  .testimonials--snap .testimonials__grid{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 85%;
    overflow-x: auto;
    gap: 14px;
    padding-inline: 8px;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .testimonials--snap .testimonial{ scroll-snap-align: start; min-width: 0; }
}


/* End Testimonials Section */
/* FAQ Section */
/* ===== FAQ Section ===== */
.faqs {
  background: #fff;
  color: #111;
  padding: clamp(56px, 6vw, 96px) 20px;
  font-family: var(--font-sans, system-ui, -apple-system, Segoe UI, Roboto, Arial);
}
.faqs__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.faqs__title {
  text-align: center;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 clamp(24px, 3vw, 40px);
  font-size: clamp(2rem, 3vw + 1rem, 3.5rem);
  color: #111; /* dark text for white bg */
  text-shadow: none; /* remove glow */
}
.faqs__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #e5e7eb;
}
.faq {
  border-bottom: 1px solid #e5e7eb;
}
.faq__q {
  appearance: none;
  background: none;
  border: 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 18px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  font-size: clamp(1rem, 0.5vw + 1rem, 1.25rem);
  font-weight: 700;
  color: #111;
}
.faq__plus {
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0.9;
}

/* container for animation */
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
  overflow: hidden;
  padding-bottom: 0;
}
.faq__a-inner {
  min-height: 0;
}
.faq__a.open {
  grid-template-rows: 1fr;
  padding-bottom: 16px;
}

/* rotate plus sign when open */
.faq[aria-current="open"] .faq__plus {
  transform: rotate(45deg);
}

/* subtle hover */
.faq__q:hover .faq__plus {
  opacity: 1;
}
/* End FAQ Section */
/* =========================
   CTA Section — COPY & REPLACE
/* CTA v3 — mobile-first, no overflow, glass look */

/* Root tokens (inherits your site font if set) */
:root{
  --cta-bg:#0d1117;
  --ink:#e7eef5;
  --muted:#9fb1c0;
  --ring:rgba(231,238,245,.14);
  --accent:#38e6c1;
  --accent2:#5a8bff;
  --accent3:#ff7a59;

  --r-lg:24px; --r-md:14px;
  --pad-x: clamp(16px, 3.5vw, 28px);
  --pad-y: clamp(52px, 7vw, 120px);
}

/* base safety */
.cta-v3, .cta-v3 *{ box-sizing:border-box; }
.cta-v3 img, .cta-v3 svg{ display:block; max-width:100%; height:auto; }
html, body{ overflow-x:hidden; -webkit-text-size-adjust:100%; }

/* section shell */
.cta-v3{
  position:relative; isolation:isolate;
  background:
    radial-gradient(1000px 520px at 10% -10%, rgba(56,230,193,.14), transparent 55%),
    radial-gradient(1000px 520px at 110% 8%, rgba(90,139,255,.12), transparent 55%),
    var(--cta-bg);
  padding: var(--pad-y) var(--pad-x);
  color: var(--ink);
  overflow:hidden;
}

/* card */
.cta-v3__card{
  width:min(1100px, 100%);
  margin-inline:auto;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  box-shadow: inset 0 0 0 1px var(--ring), 0 10px 42px rgba(0,0,0,.35);
  padding: clamp(22px, 4vw, 40px);
  overflow:hidden;
  position: relative;
}

/* decorative blobs (cheap & clipped) */
.cta-v3__card::before,
.cta-v3__card::after{
  content:""; position:absolute; inset:auto; z-index:0; border-radius:999px;
  filter: blur(36px); opacity:.28; pointer-events:none; transform:translateZ(0);
}
.cta-v3__card::before{ width:44vmin; height:44vmin; left:-18vmin; top:-14vmin; background:radial-gradient(circle at 30% 30%, var(--accent), transparent 60%); }
.cta-v3__card::after{ width:40vmin; height:40vmin; right:-16vmin; bottom:-16vmin; background:radial-gradient(circle at 40% 50%, var(--accent2), transparent 60%); }

/* layout */
.cta-v3__grid{
  position:relative; z-index:1;
  display:grid; gap: clamp(18px, 3vw, 28px);
  grid-template-columns: 1fr;
  align-items:start;
  min-width:0;
}
@media (min-width: 980px){
  .cta-v3__grid{
    grid-template-columns: 1.1fr .9fr; /* copy / form */
    gap: clamp(22px, 3vw, 36px);
  }
}

/* copy */
.cta-v3__copy{ min-width:0; }
.cta-v3__badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 10px; border-radius:999px; background:rgba(255,255,255,.06);
  box-shadow: inset 0 0 0 1px var(--ring);
  font:600 13px/1.1 var(--font-sans, system-ui, -apple-system, Segoe UI, Roboto, Arial);
}
.cta-v3__badge svg{ width:16px; height:16px; fill:var(--accent); }

.cta-v3__title{
  margin: 10px 0 8px;
  font:800 clamp(1.9rem, 3.4vw + 1rem, 3.8rem)/1.06 var(--font-sans, system-ui, -apple-system, Segoe UI, Roboto, Arial);
  letter-spacing:-.02em;
  text-wrap: balance;
}
.cta-v3__title .accent{
  background: linear-gradient(90deg, var(--accent), var(--accent2) 55%, var(--accent3));
  -webkit-background-clip:text; background-clip:text; color:transparent;
  text-shadow: 0 0 20px rgba(56,230,193,.14);
}
.cta-v3__sub{
  margin: 0 0 6px;
  color: var(--muted);
  font-size: clamp(.98rem, .35vw + .98rem, 1.1rem);
  line-height: 1.7;
  text-wrap: pretty;
}

.cta-v3__proof{ display:flex; align-items:center; gap:12px; color:var(--muted); flex-wrap:wrap; }
.cta-v3__avatars{ display:flex; }
.cta-v3__avatars img{
  width:34px; height:34px; border-radius:50%; object-fit:cover;
  border:2px solid rgba(255,255,255,.55); margin-left:-8px; background:#fff;
}
.cta-v3__avatars img:first-child{ margin-left:0; }

/* form */
.cta-v3__form{
  display:grid; gap:12px; min-width:0;
}
.field label, .field legend{
  display:block; font-weight:700; margin:0 0 6px;
}
.field small{ color:var(--muted); font-weight:600; margin-left:.25rem; }

.cta-v3__form input{
  width:100%; height:46px; padding:12px 14px;
  border-radius:12px; border:1px solid var(--ring);
  background: rgba(255,255,255,.06);
  color: var(--ink);
  font:500 16px/1.3 var(--font-sans, system-ui, -apple-system, Segoe UI, Roboto, Arial);
  outline:none;
}
.cta-v3__form input::placeholder{ color:#c9d7e2a8; }

/* checks */
.field--checks{ margin-top:4px; }
.field--checks .checks{
  display:grid; gap:10px;
  grid-template-columns: 1fr;        /* phone */
}
@media (min-width: 520px){
  .field--checks .checks{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
.check{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px; border-radius:12px;
  border:1px solid var(--ring);
  background: rgba(255,255,255,.04);
  cursor:pointer; user-select:none;
}
/* fully hide the native checkbox */
.check input{
  appearance: none;
  -webkit-appearance: none;
  position: absolute;
  opacity: 0;           /* make sure it can't be seen */
  pointer-events: none; /* clicks go to the label */
  width: 0;
  height: 0;
  margin: 0;
}

/* keep your existing custom box rules */
.check .box{
  width:18px; height:18px; border-radius:5px;
  border:1.5px solid var(--ring); background:rgba(255,255,255,.06);
  display:inline-block; position:relative;
}
.check input:checked + .box{
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(56,230,193,.18);
}
.check input:checked + .box::after{
  content:""; position:absolute; inset:3px; border-radius:3px; background:var(--accent);
}


/* submit */
.cta-v3__submit{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:14px 18px; border:0; border-radius:12px; cursor:pointer;
  background: radial-gradient(120% 160% at 20% 20%, #fff, #effff9 40%, #caffef 100%);
  color:#093e31; font-weight:800;
  box-shadow: 0 0 0 8px rgba(56,230,193,.16), 0 10px 34px rgba(56,230,193,.22);
  transition: transform .18s ease, filter .18s ease;
  width: 100%;                 /* full-width on mobile */
}
.cta-v3__submit:hover{ transform:translateY(-2px); filter:brightness(1.04); }
.cta-v3__submit svg{ width:20px; height:20px; }

.cta-v3__tiny{
  margin: 2px 0 0; color:var(--muted); font-size:.85rem;
}

/* mobile polish */
@media (max-width: 560px){
  .cta-v3__card{ padding-left:22px; padding-right:22px; }
  .cta-v3__card::before, .cta-v3__card::after{ display:none; } /* remove blobs to avoid overflow */
}

/* high-contrast users */
@media (prefers-contrast: more){
  .cta-v3__card{
    box-shadow: 0 8px 28px rgba(0,0,0,.34), inset 0 0 0 1.5px rgba(231,238,245,.24);
  }
}

/* End CTA Section */
/* Footer Section */
/* ===== Footer ===== */
.site-footer {
  background: #0d1117;
  color: #fff;
  padding: 60px 20px 30px;
  /* Removed rounded corners */
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: 0 -5px 30px rgba(0,0,0,0.4);
}


.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.footer__title {
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(90deg, #ff7eb3, #ff758c, #ff7eb3, #7afcff, #feff9c);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: footerGradient 8s ease infinite;
}

@keyframes footerGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.footer__tagline {
  margin-top: 8px;
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.5;
}

.footer__nav h3,
.footer__contact h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer__nav ul,
.footer__contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__nav li,
.footer__contact li {
  margin-bottom: 8px;
}

.footer__nav a,
.footer__contact a {
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.1s ease;
}

.footer__nav a:hover,
.footer__contact a:hover {
  opacity: 1;
}

.footer-cta {
  display: inline-block;
  background-color: var(--brand);
  color: #000 !important;
  font-weight: 800;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color .3s, box-shadow .3s, transform .3s !important;
  box-shadow: 0 0 8px var(--brand);
}

.footer-cta:hover {
  background-color: var(--brand);
  box-shadow: 0 0 15px var(--brand-200), 0 0 25px var(--brand-200);
  transform: scale(1.05);
}




.footer__bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.85rem;
  opacity: 0.6;
}
