/* =====================================================================
   eTax Profilling - Design System
   Brand: Professional Tax Filing, Simplified.
   Author: eTax Profilling
   ===================================================================== */

/* ----------------------------  TOKENS  ---------------------------- */
:root {
  /* Brand colour */
  --brand-primary: #1B4DFF;
  --brand-primary-600: #1340E6;
  --brand-primary-700: #0B36C9;
  --brand-primary-50: #EEF3FF;
  --brand-primary-100: #DCE6FF;

  --brand-accent: #12C58B;       /* mint / growth */
  --brand-accent-600: #0FB07C;
  --brand-accent-700: #0A8F63;
  --brand-accent-50: #E6FBF3;

  --brand-gold: #FFB020;         /* ratings / premium */
  --brand-gold-50: #FFF6E5;

  --ink: #0A1633;                /* primary text / headings */
  --ink-2: #41506E;              /* secondary text */
  --ink-3: #6B7A99;              /* muted text */
  --line: #E6ECF5;               /* borders */
  --line-2: #EFF3F9;

  --bg: #FFFFFF;
  --bg-soft: #F4F7FF;            /* soft blue section bg */
  --bg-soft-2: #F7FAFC;
  --surface: #FFFFFF;

  /* Gradients */
  --grad-brand: linear-gradient(120deg, #1B4DFF 0%, #2E6BFF 50%, #12C58B 100%);
  --grad-brand-soft: linear-gradient(135deg, #EEF3FF 0%, #E6FBF3 100%);
  --grad-ink: linear-gradient(160deg, #0A1633 0%, #122252 60%, #0B1A3D 100%);

  /* Typography */
  --font-head: 'Plus Jakarta Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Radius */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadows */
  --sh-xs: 0 1px 2px rgba(10, 22, 51, 0.06);
  --sh-sm: 0 4px 14px rgba(10, 22, 51, 0.06);
  --sh-md: 0 12px 30px rgba(10, 22, 51, 0.08);
  --sh-lg: 0 24px 60px rgba(10, 22, 51, 0.12);
  --sh-brand: 0 14px 34px rgba(27, 77, 255, 0.28);

  /* Layout */
  --container: 1200px;
  --gutter: 24px;
  --nav-h: 76px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----------------------------  RESET  ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
[id] { scroll-margin-top: calc(var(--nav-h) + 18px); }
body {
  font-family: var(--font-body);
  color: var(--ink-2);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid rgba(27, 77, 255, 0.45); outline-offset: 2px; border-radius: 6px; }

/* ----------------------  TYPOGRAPHY  ------------------------------ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.3rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; font-weight: 700; }
p { color: var(--ink-2); }
strong { color: var(--ink); font-weight: 700; }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--ink-2); }

/* -------------------------  LAYOUT  ------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(64px, 9vw, 116px) 0; }
.section--soft { background: var(--bg-soft); }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.grid { display: grid; gap: 28px; }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.maxw-720 { max-width: 720px; }
.maxw-640 { max-width: 640px; }

/* ----------------------  ELIGIBILITY HELPERS  --------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-weight: 700; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--brand-primary);
  background: var(--brand-primary-50);
  border: 1px solid var(--brand-primary-100);
  padding: 7px 14px; border-radius: var(--r-pill);
}
.eyebrow--accent { color: var(--brand-accent-700); background: var(--brand-accent-50); border-color: #C6F2E2; }
.section-head { max-width: 720px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head p { margin-top: 16px; font-size: 1.1rem; }
.gradient-text {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* -------------------------  BUTTONS  ------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: 14px 26px; border-radius: var(--r-pill);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .2s ease;
  white-space: nowrap; cursor: pointer; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--brand-primary); color: #fff; box-shadow: var(--sh-brand); }
.btn--primary:hover { background: var(--brand-primary-700); transform: translateY(-2px); box-shadow: 0 18px 40px rgba(27,77,255,.34); }
.btn--accent { background: var(--brand-accent); color: #04231a; box-shadow: 0 12px 28px rgba(18,197,139,.32); }
.btn--accent:hover { background: var(--brand-accent-600); transform: translateY(-2px); }
.btn--ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--line); box-shadow: var(--sh-xs); }
.btn--ghost:hover { border-color: var(--brand-primary); color: var(--brand-primary); transform: translateY(-2px); }
.btn--light { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.28); backdrop-filter: blur(6px); }
.btn--light:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }
.btn--lg { padding: 17px 32px; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* -------------------------  NAVBAR  ------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, border-color .3s ease, background .3s ease;
}
.nav.scrolled { box-shadow: var(--sh-sm); border-bottom-color: var(--line); background: rgba(255,255,255,0.94); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand__mark { width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0; box-shadow: 0 6px 16px rgba(27,77,255,.28); }
.brand__text { font-family: var(--font-head); font-weight: 800; font-size: 1.32rem; letter-spacing: -0.02em; color: var(--ink); }
.brand__text span { color: var(--brand-primary); }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__link {
  font-family: var(--font-head); font-weight: 600; font-size: 0.97rem; color: var(--ink-2);
  padding: 10px 14px; border-radius: var(--r-sm); transition: color .2s, background .2s; position: relative;
}
.nav__link:hover, .nav__link.active { color: var(--brand-primary); background: var(--brand-primary-50); }
.nav__actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav__cta { padding: 11px 20px; font-size: 0.95rem; }
.nav__toggle { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); align-items: center; justify-content: center; }
.nav__toggle span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; transition: .3s var(--ease); }
.nav__toggle span::before, .nav__toggle span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }
.nav.open .nav__toggle span { background: transparent; }
.nav.open .nav__toggle span::before { top: 0; transform: rotate(45deg); }
.nav.open .nav__toggle span::after { top: 0; transform: rotate(-45deg); }

/* mobile drawer */
.nav__drawer { display: none; }

@media (max-width: 980px) {
  .nav__links, .nav__actions .btn--ghost { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__drawer {
    display: block; position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--sh-lg);
    padding: 18px var(--gutter) 28px;
    transform: translateY(-130%); transition: transform .4s var(--ease); z-index: 99;
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .nav.open .nav__drawer { transform: translateY(0); }
  .nav__drawer .nav__link { display: block; font-size: 1.05rem; padding: 14px 12px; border-radius: 12px; }
  .nav__drawer .btn { width: 100%; margin-top: 8px; }
  .nav__drawer-divider { height: 1px; background: var(--line); margin: 12px 0; }
}

/* page top offset */
.page { padding-top: var(--nav-h); }

/* -------------------------  HERO  -------------------------------- */
.hero { position: relative; padding: clamp(56px, 8vw, 96px) 0 clamp(64px, 8vw, 104px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(27,77,255,.10), transparent 60%),
    radial-gradient(820px 480px at 8% 12%, rgba(18,197,139,.10), transparent 60%),
    var(--bg-soft);
}
.hero__grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 22px; }
.hero .lead { max-width: 540px; margin-bottom: 30px; }
.hero__cta { margin-bottom: 26px; }
.hero__trust { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; color: var(--ink-3); font-size: .92rem; }
.hero__trust .stars { color: var(--brand-gold); letter-spacing: 2px; }
.hero__avatars { display: flex; }
.hero__avatars span { width: 34px; height: 34px; border-radius: 50%; border: 2px solid #fff; margin-left: -10px; background: var(--grad-brand); display: grid; place-items: center; color: #fff; font-size: .7rem; font-weight: 700; font-family: var(--font-head); }
.hero__avatars span:first-child { margin-left: 0; }

/* hero visual card */
.hero__visual { position: relative; }
.hero-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl);
  box-shadow: var(--sh-lg); padding: 24px; position: relative; z-index: 2;
}
.hero-card__top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid var(--line-2); margin-bottom: 18px; }
.hero-card__badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700; font-size: .82rem; color: var(--brand-accent-700); background: var(--brand-accent-50); padding: 6px 12px; border-radius: var(--r-pill); }
.hero-card__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-accent); box-shadow: 0 0 0 4px rgba(18,197,139,.18); }
.hero-card__row { display: flex; align-items: center; gap: 14px; padding: 13px 0; }
.hero-card__row .ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--brand-primary-50); color: var(--brand-primary); flex-shrink: 0; }
.hero-card__row .ico svg { width: 22px; height: 22px; }
.hero-card__row .meta { flex: 1; }
.hero-card__row .meta b { display: block; color: var(--ink); font-family: var(--font-head); font-size: .98rem; }
.hero-card__row .meta small { color: var(--ink-3); font-size: .85rem; }
.hero-card__row .amt { font-family: var(--font-head); font-weight: 800; color: var(--brand-accent-700); }
.hero-card__refund { margin-top: 16px; background: var(--grad-brand-soft); border-radius: var(--r-md); padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; }
.hero-card__refund small { color: var(--ink-2); font-weight: 600; }
.hero-card__refund b { font-family: var(--font-head); font-size: 1.5rem; color: var(--ink); }
.hero__float {
  position: absolute; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--sh-md); padding: 12px 16px; display: flex; align-items: center; gap: 10px; z-index: 3;
  font-family: var(--font-head); font-weight: 700; font-size: .9rem; color: var(--ink);
}
.hero__float .ico { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; color: #fff; }
.hero__float--1 { top: -22px; right: 6%; animation: floaty 5s var(--ease) infinite; }
.hero__float--2 { bottom: -20px; left: -16px; animation: floaty 6s var(--ease) infinite reverse; }
.hero__float--1 .ico { background: var(--brand-accent); }
.hero__float--2 .ico { background: var(--brand-primary); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* -------------------  LOGO / TRUST STRIP  ------------------------- */
.logos { padding: 36px 0; border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
.logos p { text-align: center; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 20px; font-weight: 600; }
.logos__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 40px; }
.logos__row span { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: #98A5BE; letter-spacing: -.01em; }

/* -------------------------  STATS  ------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 28px 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-xs); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.stat:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.stat__num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 3.2vw, 2.7rem); color: var(--ink); line-height: 1; }
.stat__num .gradient-text { display: inline; }
.stat__label { margin-top: 10px; color: var(--ink-3); font-size: .95rem; }

/* -------------------------  CARDS  ------------------------------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--brand-primary-100); }
.card__ico { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 20px; background: var(--brand-primary-50); color: var(--brand-primary); }
.card__ico svg { width: 28px; height: 28px; }
.card__ico--accent { background: var(--brand-accent-50); color: var(--brand-accent-700); }
.card__ico--gold { background: var(--brand-gold-50); color: #C77E00; }
.card h3 { margin-bottom: 10px; font-size: 1.28rem; }
.card p { font-size: .98rem; margin-bottom: 16px; }
.card__link { font-family: var(--font-head); font-weight: 700; color: var(--brand-primary); font-size: .92rem; display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
.card:hover .card__link { gap: 10px; }
.card__tag { position: absolute; top: 18px; right: 18px; font-size: .7rem; font-weight: 700; font-family: var(--font-head); color: var(--brand-accent-700); background: var(--brand-accent-50); padding: 4px 10px; border-radius: var(--r-pill); }

/* --------------------  STEPS / HOW IT WORKS  ---------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 28px 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-xs); }
.step__num { width: 46px; height: 46px; border-radius: 14px; background: var(--grad-brand); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; display: grid; place-items: center; margin-bottom: 18px; box-shadow: var(--sh-brand); }
.step h4, .step h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: .94rem; }
.step:not(:last-child)::after { content: "→"; position: absolute; top: 44px; right: -16px; color: var(--brand-primary-100); font-size: 1.6rem; font-weight: 700; z-index: 2; }

/* ----------------------  FEATURE SPLIT  -------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--rev .split__media { order: 2; }
.split__copy, .split__media { min-width: 0; }   /* allow grid tracks to shrink below content min-width */
.feature-list { display: grid; gap: 18px; margin-top: 26px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .tick { width: 28px; height: 28px; border-radius: 9px; background: var(--brand-accent-50); color: var(--brand-accent-700); display: grid; place-items: center; flex-shrink: 0; margin-top: 2px; }
.feature-list .tick svg { width: 16px; height: 16px; }
.feature-list b { color: var(--ink); font-family: var(--font-head); display: block; margin-bottom: 2px; }
.feature-list small { color: var(--ink-3); font-size: .92rem; }
.media-frame { background: var(--grad-brand-soft); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 30px; box-shadow: var(--sh-md); }
.media-frame--ink { background: var(--grad-ink); }

/* -------------------------  PRICING  ----------------------------- */
.pricing-toggle { display: inline-flex; align-items: center; gap: 4px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill); padding: 5px; margin: 0 auto 44px; box-shadow: var(--sh-xs); }
.pricing-toggle button { font-family: var(--font-head); font-weight: 700; font-size: .92rem; color: var(--ink-2); padding: 10px 22px; border-radius: var(--r-pill); transition: .25s var(--ease); }
.pricing-toggle button.active { background: var(--brand-primary); color: #fff; box-shadow: var(--sh-brand); }
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: 34px 30px;
  display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  position: relative;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.price-card--featured { border: 2px solid var(--brand-primary); box-shadow: var(--sh-lg); }
.price-card--featured::before {
  content: "Most Popular"; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad-brand); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .76rem;
  padding: 6px 16px; border-radius: var(--r-pill); white-space: nowrap; box-shadow: var(--sh-brand);
}
.price-card__name { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--brand-primary); }
.price-card--featured .price-card__name { color: var(--brand-primary); }
.price-card__desc { font-size: .92rem; color: var(--ink-3); margin-top: 6px; min-height: 42px; }
.price-card__price { font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; color: var(--ink); margin: 16px 0 2px; }
.price-card__price small { font-size: 1rem; font-weight: 600; color: var(--ink-3); }
.price-card__period { font-size: .86rem; color: var(--ink-3); margin-bottom: 22px; }
.price-card ul { display: grid; gap: 13px; margin-bottom: 28px; flex: 1; }
.price-card li { display: flex; gap: 11px; align-items: flex-start; font-size: .95rem; color: var(--ink-2); }
.price-card li svg { width: 19px; height: 19px; color: var(--brand-accent); flex-shrink: 0; margin-top: 2px; }
.price-card li.muted { color: var(--ink-3); }
.price-card li.muted svg { color: var(--ink-3); }

/* -----------------------  TESTIMONIALS  -------------------------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.t-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--sh-xs); display: flex; flex-direction: column; gap: 16px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.t-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.t-card .stars { color: var(--brand-gold); letter-spacing: 2px; font-size: 1.05rem; }
.t-card p { color: var(--ink-2); font-size: .98rem; }
.t-card__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.t-card__ava { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; flex-shrink: 0; }
.t-card__who b { display: block; color: var(--ink); font-family: var(--font-head); font-size: .96rem; }
.t-card__who small { color: var(--ink-3); font-size: .85rem; }

/* -------------------------  FAQ  --------------------------------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: border-color .25s, box-shadow .25s; }
.faq-item.open { border-color: var(--brand-primary-100); box-shadow: var(--sh-sm); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px; text-align: left; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.faq-q .pm { width: 30px; height: 30px; flex-shrink: 0; border-radius: 9px; background: var(--brand-primary-50); color: var(--brand-primary); display: grid; place-items: center; transition: transform .3s var(--ease), background .25s; }
.faq-item.open .pm { background: var(--brand-primary); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a__inner { padding: 0 24px 22px; color: var(--ink-2); font-size: .98rem; }

/* -------------------------  CTA BAND  ---------------------------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--r-xl); padding: clamp(40px, 6vw, 68px); background: var(--grad-ink); color: #fff; text-align: center; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 80% 0%, rgba(27,77,255,.4), transparent 60%), radial-gradient(500px 260px at 10% 100%, rgba(18,197,139,.32), transparent 60%); z-index: 0; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,.78); max-width: 560px; margin: 0 auto 30px; font-size: 1.1rem; }

/* -------------------------  FOOTER  ------------------------------ */
.footer { background: var(--ink); color: rgba(255,255,255,.66); padding: 72px 0 32px; font-size: .95rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand { max-width: 320px; }
.footer__brand .footlogo { margin-bottom: 18px; }
.footer__brand p { color: rgba(255,255,255,.6); font-size: .95rem; }
.footer__contact { display: grid; gap: 12px; margin-top: 22px; }
.footer__contact a, .footer__contact span { display: flex; align-items: flex-start; gap: 11px; color: rgba(255,255,255,.74); font-size: .92rem; transition: color .2s; }
.footer__contact a:hover { color: #fff; }
.footer__contact svg { width: 18px; height: 18px; color: var(--brand-accent); flex-shrink: 0; margin-top: 2px; }
.footer__col h5 { color: #fff; font-size: .95rem; margin-bottom: 18px; font-family: var(--font-head); letter-spacing: .02em; }
.footer__col ul { display: grid; gap: 12px; }
.footer__col a { color: rgba(255,255,255,.62); transition: color .2s, padding-left .2s; font-size: .92rem; }
.footer__col a:hover { color: #fff; padding-left: 4px; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; }
.footer__bottom p { color: rgba(255,255,255,.5); font-size: .88rem; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,.07); display: grid; place-items: center; color: rgba(255,255,255,.7); transition: .25s var(--ease); }
.footer__social a:hover { background: var(--brand-primary); color: #fff; transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; }
.footlogo { display: inline-flex; align-items: center; gap: 11px; }
.footlogo__mark { width: 40px; height: 40px; border-radius: 12px; }
.footlogo__text { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: #fff; letter-spacing: -.02em; }
.footlogo__text span { color: #7FF3CE; }
.footer__disclaimer { color: rgba(255,255,255,.4); font-size: .8rem; line-height: 1.7; margin-top: 22px; }

/* -----------------  PAGE HERO (inner pages)  --------------------- */
.page-hero { position: relative; padding: clamp(56px, 8vw, 92px) 0 clamp(40px, 5vw, 60px); overflow: hidden; text-align: center; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(900px 420px at 50% -10%, rgba(27,77,255,.1), transparent 60%), var(--bg-soft); }
.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero h1 { margin-bottom: 18px; }
.page-hero p { max-width: 640px; margin: 0 auto; font-size: 1.15rem; }
.crumbs { display: inline-flex; gap: 8px; align-items: center; font-size: .86rem; color: var(--ink-3); margin-bottom: 22px; font-family: var(--font-head); font-weight: 600; }
.crumbs a:hover { color: var(--brand-primary); }
.crumbs span { color: var(--brand-primary); }

/* -----------------------  CONTACT  ------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.contact-info { display: grid; gap: 18px; }
.contact-tile { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 22px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.contact-tile:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.contact-tile .ico { width: 48px; height: 48px; border-radius: 14px; background: var(--brand-primary-50); color: var(--brand-primary); display: grid; place-items: center; flex-shrink: 0; }
.contact-tile .ico svg { width: 22px; height: 22px; }
.contact-tile__body { flex: 1; min-width: 0; }
.contact-tile__body a { word-break: break-word; }
.contact-tile b { font-family: var(--font-head); color: var(--ink); display: block; margin-bottom: 3px; }
.contact-tile a, .contact-tile p { color: var(--ink-2); font-size: .96rem; }
.contact-tile a:hover { color: var(--brand-primary); }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: 34px; box-shadow: var(--sh-md); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--bg-soft-2); transition: border-color .2s, background .2s, box-shadow .2s; font-size: .98rem;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand-primary); background: #fff; box-shadow: 0 0 0 4px rgba(27,77,255,.1); outline: none; }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .85rem; color: var(--ink-3); margin-top: 14px; text-align: center; }
.form-status { margin-top: 14px; padding: 12px 16px; border-radius: var(--r-sm); font-size: .92rem; display: none; }
.form-status.ok { display: block; background: var(--brand-accent-50); color: var(--brand-accent-700); border: 1px solid #C6F2E2; }

/* -----------------------  ABOUT / VALUES  ------------------------ */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value { padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); }
.value .ico { width: 52px; height: 52px; border-radius: 15px; background: var(--grad-brand-soft); color: var(--brand-primary); display: grid; place-items: center; margin-bottom: 18px; }
.value h4, .value h3 { margin-bottom: 8px; font-size: 1.15rem; font-weight: 700; }
.value p { font-size: .95rem; }
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.member { text-align: center; }
.member__ava { width: 100%; aspect-ratio: 1; border-radius: var(--r-lg); background: var(--grad-brand); display: grid; place-items: center; color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; margin-bottom: 16px; box-shadow: var(--sh-sm); }
.member b { font-family: var(--font-head); color: var(--ink); display: block; }
.member small { color: var(--brand-primary); font-size: .88rem; font-weight: 600; }

/* timeline */
.timeline { max-width: 760px; margin: 0 auto; display: grid; gap: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 23px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.tl-item { display: grid; grid-template-columns: 48px 1fr; column-gap: 20px; row-gap: 0; padding-bottom: 32px; position: relative; }
.tl-item__dot { grid-column: 1; grid-row: 1 / span 2; align-self: start; width: 48px; height: 48px; border-radius: 14px; background: var(--grad-brand); color: #fff; font-family: var(--font-head); font-weight: 800; display: grid; place-items: center; box-shadow: var(--sh-brand); z-index: 1; font-size: .82rem; }
.tl-item b { grid-column: 2; font-family: var(--font-head); color: var(--ink); font-size: 1.1rem; display: block; margin-bottom: 4px; }
.tl-item p { grid-column: 2; font-size: .96rem; }

/* -----------------------  STYLE GUIDE  --------------------------- */
.swatches { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 18px; }
.swatch { border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sh-xs); }
.swatch__color { height: 100px; }
.swatch__meta { padding: 14px 16px; }
.swatch__meta b { font-family: var(--font-head); color: var(--ink); font-size: .95rem; display: block; }
.swatch__meta code { font-size: .82rem; color: var(--ink-3); font-family: ui-monospace, 'SF Mono', Menlo, monospace; }
.type-row { padding: 20px 0; border-bottom: 1px solid var(--line); }
.type-row small { color: var(--ink-3); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; }

/* -----------------------  CAL EMBED  ----------------------------- */
.cal-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--sh-md); overflow: hidden; min-height: 600px; }

/* -----------------------  UTIL / REVEAL  ------------------------- */
/* Progressive enhancement: reveals only hide when JS is active (html.js).
   Without JS the content stays fully visible. */
.reveal { transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal { opacity: 0; transform: translateY(28px); }
html.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 18px; }
.mt-4 { margin-top: 36px; }
.hide-mobile { }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* -------------------------  RESPONSIVE  -------------------------- */
@media (max-width: 1024px) {
  .cards, .testimonials, .values { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2)::after { display: none; }
  .team { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 460px; margin-inline: auto; width: 100%; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .split--rev .split__media { order: 0; }
  .pricing { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .price-card--featured { order: -1; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .nav__cta { display: none; }            /* keep header clear; CTA lives in the drawer */
  .brand__text { font-size: 1.16rem; }
  .cards, .testimonials, .values, .steps, .team, .stats { grid-template-columns: 1fr; }
  .step::after { display: none !important; }
  .field-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .btn-row .btn { width: 100%; }
  .hero__float { display: none; }
  .section { padding: 56px 0; }
}
