/* =============================================================
   AI Automations by Jack — landing page
   Direction: Clean Signal (light, sharp, single blue accent).
   Retheme: edit the :root colour tokens below to recolour the whole page.
   ============================================================= */

:root {
  /* ── Colour (Clean Signal — contrast-checked) ── */
  --color-bg:       #ffffff;
  --color-surface:  #f5f6f8;
  --color-surface-2:#eef1f5;
  --color-brand:    #1d4ed8;  /* white on it ≈ 5.9:1 AA  */
  --color-brand-hi: #1d4ed8;  /* on white ≈ 5.9:1 AA     */
  --color-brand-dk: #1736a8;  /* hover state             */
  --color-brand-tint:#e8efff;
  --color-text:     #0f172a;  /* on white ≈ 16:1 AAA     */
  --color-muted:    #5b6473;  /* on white ≈ 5.3:1 AA     */
  --color-border:   #e2e6ec;

  /* ── Fluid type scale ── */
  --text-sm:   clamp(0.875rem, 0.80rem + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.30vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1.00rem + 0.60vw, 1.375rem);
  --text-xl:   clamp(1.375rem, 1.10rem + 1.40vw, 2rem);
  --text-2xl:  clamp(1.75rem,  1.20rem + 2.80vw, 3rem);
  --text-3xl:  clamp(2.25rem,  1.50rem + 3.80vw, 4.25rem);

  --leading-tight: 1.12;
  --leading-snug:  1.3;
  --leading-body:  1.6;

  --weight-normal:   400;
  --weight-medium:   500;
  --weight-semibold: 600;
  --weight-bold:     700;
  --weight-black:    900;

  /* ── Fluid spacing scale ── */
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-s:  clamp(0.75rem, 0.5rem + 1vw,  1rem);
  --space-m:  clamp(1.25rem, 0.9rem + 1.6vw, 1.75rem);
  --space-l:  clamp(2rem,    1.5rem + 2.4vw, 3rem);
  --space-xl: clamp(3rem,    2.2rem + 4vw,   5rem);
  --space-2xl:clamp(4.5rem,  3rem + 7vw,     8rem);

  /* ── Radius / shadow / layout ── */
  --radius-sm: 0.5rem;
  --radius-md: 0.875rem;
  --radius-lg: 1.25rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgb(15 23 42 / 0.06), 0 1px 3px rgb(15 23 42 / 0.08);
  --shadow-md: 0 8px 24px rgb(15 23 42 / 0.08);
  --shadow-lg: 0 24px 60px rgb(15 23 42 / 0.14);
  --shadow-brand: 0 10px 30px rgb(29 78 216 / 0.28);

  --content-max: 75rem;   /* ~1200px */
  --narrow-max:  46rem;
  --nav-height:  4.25rem;

  /* ── Motion gate (single source of truth for CSS + JS) ── */
  --motion-ok: 1;

  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

@media (prefers-reduced-motion: reduce) {
  :root { --motion-ok: 0; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--nav-height) + 1rem); }

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
ul { list-style: none; }

a { color: var(--color-brand-hi); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

h1 { font-size: var(--text-3xl); line-height: var(--leading-tight); font-weight: var(--weight-black); letter-spacing: -0.035em; }
h2 { font-size: var(--text-2xl); line-height: var(--leading-snug);  font-weight: var(--weight-bold);  letter-spacing: -0.03em; }
h3 { font-size: var(--text-lg);  line-height: var(--leading-snug);  font-weight: var(--weight-semibold); letter-spacing: -0.02em; }

/* ── Layout utilities ── */
.container { width: min(100% - 2 * var(--space-m), var(--content-max)); margin-inline: auto; }
.container--narrow { max-width: var(--narrow-max); }
.section { padding-block: var(--space-2xl); }
.section--alt { background: var(--color-surface); }

.card-grid {
  display: grid;
  gap: var(--space-m);
  grid-template-columns: repeat(auto-fill, minmax(min(18rem, 100%), 1fr));
}

.eyebrow {
  font-size: var(--text-sm); font-weight: var(--weight-bold);
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-brand-hi);
  margin-bottom: var(--space-3);
}

.section-head { max-width: 44rem; margin: 0 auto var(--space-l); text-align: center; }
.section-head__sub { color: var(--color-muted); font-size: var(--text-lg); margin-top: var(--space-3); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: var(--space-3) var(--space-m);
  min-height: 2.75rem; min-width: 2.75rem;          /* ≥ 44px touch target */
  font-family: inherit; font-size: var(--text-base); font-weight: var(--weight-semibold);
  line-height: 1; text-decoration: none; white-space: nowrap;
  border-radius: var(--radius-full); border: 2px solid transparent; cursor: pointer;
  transition: background-color .2s ease, color .2s ease, transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn:hover { text-decoration: none; }
.btn--lg { padding: var(--space-4) var(--space-l); font-size: var(--text-lg); }
.btn--block { display: flex; width: 100%; }

.btn--primary { background: var(--color-brand); color: #fff; box-shadow: var(--shadow-brand); }
.btn--primary:hover { background: var(--color-brand-dk); transform: translateY(-2px); }
.btn--primary:active { transform: translateY(0); }

.btn--ghost { background: #fff; color: var(--color-text); border-color: var(--color-border); }
.btn--ghost:hover { border-color: var(--color-brand-hi); color: var(--color-brand-hi); transform: translateY(-2px); }

.btn--invert { background: #fff; color: var(--color-brand-dk); }
.btn--invert:hover { background: var(--color-brand-tint); transform: translateY(-2px); }

/* ── Skip link ── */
.skip-link {
  position: fixed; top: var(--space-2); left: var(--space-2); z-index: 9999;
  padding: var(--space-2) var(--space-4);
  background: var(--color-brand); color: #fff;
  border-radius: var(--radius-md); text-decoration: none; font-weight: var(--weight-semibold);
  clip-path: inset(50%); white-space: nowrap;
}
.skip-link:focus { clip-path: none; }

/* ── Focus ── */
:focus-visible { outline: 3px solid var(--color-brand-hi); outline-offset: 3px; border-radius: 4px; }
:focus:not(:focus-visible) { outline: none; }

/* ── Scroll reveal (visible by default; only hidden when motion allowed) ── */
[data-reveal] { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] { opacity: 0; transform: translateY(1.5rem); transition: opacity .55s ease, transform .55s ease; }
  [data-reveal].is-visible { opacity: 1; transform: none; }
  [data-reveal][data-reveal-delay="1"] { transition-delay: .08s; }
  [data-reveal][data-reveal-delay="2"] { transition-delay: .16s; }
  [data-reveal][data-reveal-delay="3"] { transition-delay: .24s; }
}

/* =============================================================
   Navigation
   ============================================================= */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--color-bg) 80%, transparent);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background-color .25s ease;
}
.nav--scrolled {
  border-bottom-color: var(--color-border);
  background: color-mix(in srgb, var(--color-bg) 92%, transparent);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--nav-height); gap: var(--space-4);
}
.nav__logo {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-weight: var(--weight-bold); letter-spacing: -0.02em; color: var(--color-text);
  font-size: 1.05rem;
}
.nav__logo:hover { text-decoration: none; }
.nav__logo-by { color: var(--color-muted); font-weight: var(--weight-semibold); }
.nav__mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; border-radius: var(--radius-sm);
  background: var(--color-brand); color: #fff; flex-shrink: 0;
}
.nav__menu ul { display: flex; align-items: center; gap: var(--space-m); }
.nav__menu a:not(.btn) { color: var(--color-text); font-weight: var(--weight-medium); font-size: var(--text-sm); }
.nav__menu a:not(.btn):hover { color: var(--color-brand-hi); text-decoration: none; }
.nav__toggle {
  display: none; font-size: 1.5rem; line-height: 1; background: none; border: 0;
  color: var(--color-text); cursor: pointer; padding: var(--space-2);
  border-radius: var(--radius-sm);
}

@media (max-width: 56rem) {
  .nav__toggle { display: inline-flex; }
  .nav__menu {
    position: absolute; top: var(--nav-height); left: 0; right: 0;
    background: var(--color-bg); border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    max-height: 0; overflow: hidden; visibility: hidden;
    transition: max-height .3s ease, visibility .3s ease;
  }
  .nav__menu.is-open { max-height: 32rem; visibility: visible; }
  .nav__menu ul { flex-direction: column; align-items: stretch; gap: 0; padding: var(--space-2) var(--space-m) var(--space-m); }
  .nav__menu li { width: 100%; }
  .nav__menu a:not(.btn) { display: block; padding: var(--space-3) 0; font-size: var(--text-base); border-bottom: 1px solid var(--color-border); }
  .nav__menu .btn { width: 100%; margin-top: var(--space-3); }
}

/* =============================================================
   Hero
   ============================================================= */
.hero { position: relative; overflow: hidden; padding-block: clamp(3rem, 2rem + 6vw, 6.5rem); }
.hero__art {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(var(--color-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 0%, transparent 72%);
          mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 0%, transparent 72%);
  opacity: .7;
}
.hero__art::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 45% at 78% 8%, color-mix(in srgb, var(--color-brand) 18%, transparent) 0%, transparent 60%),
    radial-gradient(ellipse 45% 40% at 12% 70%, color-mix(in srgb, var(--color-brand) 10%, transparent) 0%, transparent 60%);
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--space-xl); align-items: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: var(--color-brand-tint); color: var(--color-brand-dk);
  font-size: var(--text-sm); font-weight: var(--weight-semibold);
  padding: var(--space-2) var(--space-3); border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}
.dot { width: .5rem; height: .5rem; border-radius: 50%; background: var(--color-brand); flex-shrink: 0; }
.dot--live { background: #16a34a; }
@media (prefers-reduced-motion: no-preference) {
  .dot--live { animation: pulse 1.8s ease-in-out infinite; }
  @keyframes pulse { 50% { opacity: .3; transform: scale(.8); } }
}
.hero h1 { margin-bottom: var(--space-4); }
.hero__sub { font-size: var(--text-lg); color: var(--color-muted); max-width: 36rem; margin-bottom: var(--space-l); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-bottom: var(--space-3); }
.hero__price { font-size: var(--text-sm); color: var(--color-muted); margin-bottom: var(--space-m); }
.hero__price b { color: var(--color-text); font-weight: var(--weight-bold); }
.hero__reassure { display: flex; flex-wrap: wrap; gap: var(--space-4) var(--space-m); color: var(--color-muted); font-size: var(--text-sm); font-weight: var(--weight-medium); }
.hero__reassure li { display: inline-flex; align-items: center; gap: var(--space-2); }
.hero__reassure svg { color: var(--color-brand); flex-shrink: 0; }

/* Community-preview mock */
.hero__visual { position: relative; }
.panel {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: var(--space-m);
  display: grid; gap: var(--space-4);
}
@media (prefers-reduced-motion: no-preference) {
  .panel { animation: float 7s ease-in-out infinite alternate; }
  @keyframes float { to { transform: translateY(-10px); } }
}
.panel__head { display: flex; align-items: center; gap: var(--space-3); }
.panel__avatar {
  width: 2.75rem; height: 2.75rem; border-radius: var(--radius-md); flex-shrink: 0; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-weight: var(--weight-bold); color: #fff;
  background: linear-gradient(135deg, var(--color-brand), #4f46e5);
}
.panel__avatar img { width: 100%; height: 100%; object-fit: cover; }
.panel__head strong { display: block; font-size: var(--text-sm); letter-spacing: -0.01em; }
.panel__meta { font-size: 0.8rem; color: var(--color-muted); }
.panel__live {
  margin-left: auto; display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: 0.75rem; font-weight: var(--weight-semibold); color: #15803d;
  background: #dcfce7; padding: 0.3rem 0.6rem; border-radius: var(--radius-full);
}
.panel__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.panel__stat {
  background: var(--color-surface); border-radius: var(--radius-md); padding: var(--space-3);
  text-align: center;
}
.panel__stat b { display: block; font-size: 1.15rem; font-weight: var(--weight-black); letter-spacing: -0.02em; }
.panel__stat span { font-size: 0.72rem; color: var(--color-muted); }
.panel__card {
  border: 1px solid var(--color-border); border-radius: var(--radius-md);
  padding: var(--space-4); background: linear-gradient(160deg, var(--color-brand-tint), #fff);
}
.panel__tag {
  display: inline-block; font-size: 0.68rem; font-weight: var(--weight-bold);
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-brand-dk);
  background: #fff; border: 1px solid var(--color-border);
  padding: 0.2rem 0.5rem; border-radius: var(--radius-full); margin-bottom: var(--space-3);
}
.panel__card p { font-weight: var(--weight-semibold); font-size: var(--text-sm); margin-bottom: var(--space-3); }
.panel__bar { height: 0.5rem; background: #fff; border-radius: var(--radius-full); overflow: hidden; border: 1px solid var(--color-border); }
.panel__bar i { display: block; height: 100%; background: var(--color-brand); border-radius: var(--radius-full); }
.panel__card small { display: block; margin-top: var(--space-2); font-size: 0.72rem; color: var(--color-muted); }
.panel__faces { display: flex; align-items: center; }
.face {
  width: 2rem; height: 2rem; border-radius: 50%; margin-left: -0.5rem;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  font-size: 0.7rem; font-weight: var(--weight-bold); color: #fff;
  border: 2px solid #fff; background: var(--color-surface-2);
}
.face:first-child { margin-left: 0; }
.face img { width: 100%; height: 100%; object-fit: cover; }
.face--count {
  width: auto; padding: 0 0.55rem; background: var(--color-surface-2);
  color: var(--color-muted); border-color: #fff; font-size: 0.72rem;
}

@media (max-width: 56rem) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--space-l); }
  .hero__visual { max-width: 28rem; }
}

/* =============================================================
   Social proof stat band
   ============================================================= */
.proof { padding-block: var(--space-xl); }
.stat-band {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(11rem, 100%), 1fr));
  gap: var(--space-m); text-align: center;
}
.stat-band li {
  padding: var(--space-4); border-radius: var(--radius-lg);
  background: #fff; border: 1px solid var(--color-border);
}
.stat-band b { display: block; font-size: var(--text-xl); font-weight: var(--weight-black); letter-spacing: -0.03em; color: var(--color-brand-dk); }
.stat-band span { font-size: var(--text-sm); color: var(--color-muted); }

/* =============================================================
   Feature cards
   ============================================================= */
.feature-card {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: var(--space-l); transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.feature-card:hover { border-color: color-mix(in srgb, var(--color-brand) 35%, var(--color-border)); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature-icon {
  display: flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: var(--radius-md);
  background: var(--color-brand-tint); color: var(--color-brand-dk);
  margin-bottom: var(--space-4); flex-shrink: 0;
}
.feature-card h3 { margin-bottom: var(--space-2); }
.feature-card p { color: var(--color-muted); }

/* =============================================================
   How it works — steps
   ============================================================= */
.steps {
  display: grid; gap: var(--space-m);
  grid-template-columns: repeat(auto-fit, minmax(min(16rem, 100%), 1fr));
  counter-reset: step;
}
.step {
  position: relative; background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: var(--space-l);
}
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: var(--radius-md);
  background: var(--color-brand); color: #fff;
  font-weight: var(--weight-black); font-size: 1.1rem; margin-bottom: var(--space-4);
}
.step h3 { margin-bottom: var(--space-2); }
.step p { color: var(--color-muted); }

/* =============================================================
   What you'll learn — outcomes band
   ============================================================= */
.learn-grid {
  display: grid; gap: var(--space-m);
  grid-template-columns: repeat(auto-fit, minmax(min(16rem, 100%), 1fr));
}
.learn-card {
  display: flex; gap: var(--space-4); align-items: flex-start;
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: var(--space-l);
}
.learn-card__icon {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 2.75rem; height: 2.75rem; border-radius: var(--radius-md);
  background: var(--color-brand-tint); color: var(--color-brand-dk);
}
.learn-card h3 { margin-bottom: var(--space-2); }
.learn-card p { color: var(--color-muted); }

/* =============================================================
   Why it works — proof cards
   ============================================================= */
.proof-grid {
  display: grid; gap: var(--space-m);
  grid-template-columns: repeat(auto-fit, minmax(min(16rem, 100%), 1fr));
}
.proof-card {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: var(--space-l); text-align: center;
}
.proof-card__num {
  display: block; font-size: clamp(2.5rem, 1.8rem + 3vw, 3.5rem);
  font-weight: var(--weight-black); letter-spacing: -0.04em; color: var(--color-brand-dk);
  line-height: 1; margin-bottom: var(--space-3);
}
.proof-card__num span { font-size: 0.42em; color: var(--color-brand); margin-left: 0.1em; }
.proof-card h3 { margin-bottom: var(--space-2); }
.proof-card p { color: var(--color-muted); }

/* =============================================================
   Weekly schedule
   ============================================================= */
.schedule-grid {
  display: grid; gap: var(--space-3);
  grid-template-columns: repeat(auto-fit, minmax(min(9.5rem, 100%), 1fr));
}
.day-card {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md);
  padding: var(--space-4); display: grid; gap: 0.35rem; align-content: start;
}
.day-card__day { font-weight: var(--weight-bold); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-brand-dk); }
.day-card__title { font-weight: var(--weight-semibold); line-height: 1.25; }
.day-card__time { font-size: 0.8rem; color: var(--color-muted); }
.schedule-note { text-align: center; color: var(--color-muted); font-size: var(--text-sm); margin-top: var(--space-m); }

/* =============================================================
   Pricing
   ============================================================= */
.pricing-wrap { display: flex; justify-content: center; }
.pricing-card {
  position: relative; width: min(100%, 30rem);
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: var(--space-l); box-shadow: var(--shadow-sm);
}
.pricing-card--featured {
  border: 2px solid var(--color-brand); box-shadow: var(--shadow-lg);
}
.pricing-card[data-badge]::before {
  content: attr(data-badge);
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  background: var(--color-brand); color: #fff; font-size: 0.75rem; font-weight: var(--weight-bold);
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.4rem 0.85rem; border-radius: var(--radius-full); white-space: nowrap;
  box-shadow: var(--shadow-brand);
}
.pricing-card__name { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.pricing-card__price { display: flex; align-items: baseline; gap: 0.25rem; margin-bottom: var(--space-2); }
.pricing-card__price .amount { font-size: clamp(2.5rem, 1.8rem + 3vw, 3.5rem); font-weight: var(--weight-black); letter-spacing: -0.04em; }
.pricing-card__price .per { color: var(--color-muted); font-weight: var(--weight-medium); }
.pricing-card__note { color: var(--color-brand-dk); font-weight: var(--weight-semibold); font-size: var(--text-sm); margin-bottom: var(--space-m); }
.pricing-card__value { font-size: var(--text-sm); color: var(--color-muted); margin-bottom: var(--space-2); }
.pricing-card__value b { color: var(--color-text); font-weight: var(--weight-bold); }
.pricing-card__group { font-size: 0.72rem; font-weight: var(--weight-bold); letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-muted); margin-top: var(--space-m); margin-bottom: var(--space-3); }
.pricing-card__list { display: grid; gap: var(--space-3); margin-bottom: var(--space-l); }
.pricing-card__list--tight { margin-bottom: 0; }
.pricing-card__list li { position: relative; padding-left: 1.85rem; color: var(--color-text); }
.pricing-card__list li::before {
  content: ""; position: absolute; left: 0; top: 0.15rem;
  width: 1.25rem; height: 1.25rem; border-radius: 50%;
  background: var(--color-brand-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231736a8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 0.8rem no-repeat;
}
.pricing-card__guarantee {
  display: flex; align-items: center; gap: var(--space-2); justify-content: center;
  margin-top: var(--space-m); font-size: var(--text-sm); font-weight: var(--weight-semibold);
  color: var(--color-muted);
}
.pricing-card__guarantee svg { color: var(--color-brand); flex-shrink: 0; }

/* =============================================================
   Contact
   ============================================================= */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: start; }
.contact__intro h2 { margin-bottom: var(--space-3); }
.contact__intro p { color: var(--color-muted); }
.contact__or { margin-top: var(--space-m); font-weight: var(--weight-medium); }
.contact__form {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: var(--space-l);
  display: grid; gap: var(--space-4);
}
.field { display: grid; gap: var(--space-2); }
.field label { font-size: var(--text-sm); font-weight: var(--weight-semibold); }
.field input, .field textarea {
  font-family: inherit; font-size: var(--text-base); color: var(--color-text);
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4); width: 100%; resize: vertical;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: #9aa3b2; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--color-brand);
  box-shadow: 0 0 0 3px var(--color-brand-tint);
}
@media (max-width: 52rem) { .contact { grid-template-columns: 1fr; gap: var(--space-l); } }

/* =============================================================
   FAQ
   ============================================================= */
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item summary {
  cursor: pointer; padding-block: var(--space-m);
  font-weight: var(--weight-semibold); font-size: var(--text-lg); list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: var(--space-4);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--color-brand-hi); font-size: 1.6em; font-weight: var(--weight-normal); line-height: 1; flex-shrink: 0; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { padding-bottom: var(--space-m); color: var(--color-muted); max-width: 60ch; }

/* =============================================================
   Team
   ============================================================= */
.team-grid {
  display: grid; gap: var(--space-m);
  grid-template-columns: repeat(auto-fit, minmax(min(13rem, 100%), 1fr));
  max-width: 70rem; margin-inline: auto;
}
.team-card {
  text-align: center; background: #fff;
  border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: var(--space-l);
}
.team-card__photo {
  display: block; width: 7.5rem; height: 7.5rem; margin: 0 auto var(--space-4);
  border-radius: 50%; overflow: hidden;
  background: linear-gradient(160deg, var(--color-brand-tint), var(--color-surface));
  border: 3px solid #fff; box-shadow: var(--shadow-md);
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { margin-bottom: 0.15rem; }
.team-card__role { color: var(--color-brand-hi); font-weight: var(--weight-semibold); font-size: var(--text-sm); }

/* =============================================================
   Closing CTA band
   ============================================================= */
.cta-band {
  background: linear-gradient(135deg, var(--color-brand-dk), var(--color-brand));
  color: #fff; position: relative; overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 60% at 85% 10%, rgba(255,255,255,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 90%, rgba(255,255,255,0.10) 0%, transparent 60%);
}
.cta-band__inner { position: relative; z-index: 1; text-align: center; max-width: 42rem; margin-inline: auto; }
.cta-band h2 { color: #fff; margin-bottom: var(--space-3); }
.cta-band__inner > p { color: rgba(255,255,255,0.9); font-size: var(--text-lg); margin-bottom: var(--space-l); }
.cta-band__fine { font-size: var(--text-sm); color: rgba(255,255,255,0.8) !important; margin-top: var(--space-m); margin-bottom: 0 !important; }

/* =============================================================
   Footer
   ============================================================= */
.footer { background: var(--color-text); color: #cbd3e1; padding-block: var(--space-l); }
.footer a { color: #cbd3e1; }
.footer a:hover { color: #fff; }
.footer__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-m); align-items: start; padding-bottom: var(--space-m); }
.footer .nav__logo { color: #fff; }
.footer .nav__logo .nav__mark { background: var(--color-brand); }
.footer__tag { color: #94a0b4; font-size: var(--text-sm); margin-top: var(--space-2); max-width: 26rem; }
.footer__nav { display: flex; flex-wrap: wrap; gap: var(--space-4); font-size: var(--text-sm); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: var(--space-m); font-size: var(--text-sm); color: #94a0b4; }
