/* ============================================================
   TALENTCENTRAL365 - VA AGENCY HOMEPAGE
   Structure mirrors a stellarstaff.com-style VA funnel,
   skinned in the TC365 brand. Self-contained, GHL/iframe safe.
   Tokens + button system adapted from the TC365 live-event funnel.
   ============================================================ */

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

/* ---------------------------------------------------------
   DESIGN TOKENS  (canonical TC365 brand board)
--------------------------------------------------------- */
:root {
  /* Brand greens */
  --tc-primary:      #143D14;  /* forest green - primary / button fills */
  --tc-secondary:    #1B5E1B;  /* deep emerald - button hover */
  --tc-accent:       #2D5A27;  /* olive dark - accent */
  --tc-leaf:         #4A7C40;  /* leaf green - highlight */
  --tc-mint:         #86efac;  /* mint - accent on dark / focus rings */
  --tc-emerald:      #1B5E1B;  /* cooler emerald accent for dark sections */
  --tc-emerald-deep: #1B5E1B;  /* deep cool emerald (light-section numbers) */

  /* Value signal (sparing - pricing / $$$) */
  --tc-gold:      #F5C451;
  --tc-gold-soft: rgba(245, 196, 81, 0.16);

  /* Neutrals */
  --tc-ivory: #F5F5F0;
  --tc-bg:    #FFFFFF;
  --tc-dark:  #1A1A1A;
  --tc-mid:   #4A4A4A;
  --tc-muted: #6B6B6B;
  --tc-line:  #E7E7E0;
  --tc-white: #FFFFFF;

  /* Typography */
  --tc-heading: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --tc-body:    'Inter', 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Button shadows */
  --tc-shadow-btn-primary:   0 6px 22px rgba(20, 61, 20, 0.34), 0 2px 4px rgba(20, 61, 20, 0.18);
  --tc-shadow-btn-primary-h: 0 10px 32px rgba(20, 61, 20, 0.44), 0 3px 8px rgba(20, 61, 20, 0.22);

  /* Surface depth */
  --tc-shadow-base:     0 1px 2px rgba(20, 61, 20, 0.04), 0 1px 3px rgba(0,0,0,0.04);
  --tc-shadow-elevated: 0 2px 16px rgba(20, 61, 20, 0.08), 0 1px 3px rgba(0,0,0,0.05);
  --tc-shadow-floating: 0 12px 40px rgba(20, 61, 20, 0.16), 0 4px 12px rgba(20, 61, 20, 0.10);
  --tc-shadow-dark:     0 10px 36px rgba(20, 61, 20, 0.34), 0 3px 8px rgba(0,0,0,0.14);

  --tc-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --tc-radius: 22px;
  --tc-radius-sm: 14px;
  --tc-container: 1200px;
  --tc-nav-h: 86px;
}

/* ---------------------------------------------------------
   RESET / BASE
--------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--tc-body);
  color: var(--tc-dark);
  background: var(--tc-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: var(--tc-heading);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--tc-dark);
  margin: 0;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--tc-mint); outline-offset: 3px; border-radius: 4px; }

/* ---------------------------------------------------------
   LAYOUT HELPERS
--------------------------------------------------------- */
.container { width: 100%; max-width: var(--tc-container); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
section[id], [id="top"] { scroll-margin-top: 104px; } /* keep anchor jumps clear of the floating nav */
.section--ivory { background: var(--tc-ivory); }
.section--dark  { background: var(--tc-primary); color: var(--tc-white); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--tc-white); }
.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }

.eyebrow {
  display: inline-block;
  font-family: var(--tc-heading);
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--tc-leaf);
  margin-bottom: 14px;
}
.section--dark .eyebrow { color: var(--tc-mint); }
h2.display { font-size: clamp(30px, 5vw, 48px); }
.lead { font-size: clamp(16px, 2vw, 19px); color: var(--tc-mid); line-height: 1.6; }
.section--dark .lead { color: rgba(255,255,255,0.82); }

/* ---------------------------------------------------------
   BUTTONS  (TC365 pill system)
--------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--tc-heading); font-weight: 800; font-size: 16px;
  letter-spacing: -0.005em; padding: 15px 32px; min-height: 54px;
  border-radius: 999px; border: none; text-align: center; white-space: nowrap;
  transition: background-color .22s var(--tc-ease), color .22s var(--tc-ease),
              transform .22s var(--tc-ease), box-shadow .22s var(--tc-ease);
}
.btn .arrow { display: inline-block; transition: transform .22s var(--tc-ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary { background: var(--tc-primary); color: var(--tc-white); box-shadow: var(--tc-shadow-btn-primary); }
.btn-primary:hover { background: var(--tc-secondary); transform: translateY(-2px); box-shadow: var(--tc-shadow-btn-primary-h); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary { background: var(--tc-white); color: var(--tc-primary); box-shadow: var(--tc-shadow-elevated); }
.btn-secondary:hover { background: #F0FFF4; transform: translateY(-2px); }

.btn-ghost { background: transparent; color: var(--tc-primary); box-shadow: inset 0 0 0 2px var(--tc-line); }
.btn-ghost:hover { box-shadow: inset 0 0 0 2px var(--tc-leaf); color: var(--tc-primary); }
.section--dark .btn-ghost { color: var(--tc-white); box-shadow: inset 0 0 0 2px rgba(255,255,255,0.35); }
.section--dark .btn-ghost:hover { box-shadow: inset 0 0 0 2px var(--tc-mint); }
.btn-sm { min-height: 46px; padding: 12px 24px; font-size: 15px; }

/* ---------------------------------------------------------
   PLACEHOLDER MEDIA  (swap-ready - data-swap marks each slot)
--------------------------------------------------------- */
.ph {
  position: relative; display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--tc-leaf); overflow: hidden;
  background:
    repeating-linear-gradient(-45deg, rgba(20,61,20,0.05) 0 12px, transparent 12px 24px),
    var(--tc-ivory);
  border: 1.5px dashed rgba(20,61,20,0.28);
  border-radius: var(--tc-radius-sm);
}
.ph span {
  font-family: var(--tc-heading); font-weight: 700; font-size: 12px;
  letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.85; padding: 8px 12px;
}
.ph-photo { aspect-ratio: 4 / 3; width: 100%; }
.ph-portrait { aspect-ratio: 3 / 4; width: 100%; }
.ph-logo { height: 34px; width: 118px; border-radius: 8px; }
.ph-video { aspect-ratio: 16 / 10; width: 100%; }
.ph-video::after {
  content: "▶"; position: absolute; display: grid; place-items: center;
  width: 60px; height: 60px; border-radius: 999px;
  background: rgba(20,61,20,0.9); color: #fff; font-size: 20px; padding-left: 4px;
}
.ph-video span { position: absolute; bottom: 12px; left: 12px; color: var(--tc-white); background: rgba(20,61,20,0.75); border-radius: 8px; }

/* =========================================================
   1. HEADER / NAV
========================================================= */
/* Floating pill nav */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: transparent;
  padding: 12px 0;
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--tc-nav-h); gap: 20px;
  padding: 0 12px 0 26px;
  background: rgba(244,245,242,0.85);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border: 1px solid var(--tc-line);
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(20,61,20,0.10), 0 2px 6px rgba(0,0,0,0.04);
}
.nav__logo img { height: 58px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 32px; margin-left: auto; margin-right: 8px; }
.nav__links a { font-weight: 600; font-size: 15.5px; color: var(--tc-mid); transition: color .18s var(--tc-ease); }
.nav__links a:hover { color: var(--tc-primary); }
.nav__links a.btn-primary { color: var(--tc-white); } /* keep the CTA white; wins over .nav__links a's gray */
.nav__links .btn { display: none; } /* the in-list CTA only appears in the mobile menu */
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__toggle { display: none; background: none; border: none; width: 44px; height: 44px; padding: 0; }
.nav__toggle span { display: block; width: 24px; height: 2px; margin: 5px auto; background: var(--tc-primary); border-radius: 2px; transition: transform .25s var(--tc-ease), opacity .2s; }
.nav.open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   2. HERO
========================================================= */
.hero { position: relative; padding: 72px 0 40px; background: radial-gradient(120% 90% at 50% -10%, #EAF3EA 0%, var(--tc-white) 60%); overflow: hidden; }
.hero__inner { text-align: center; max-width: 900px; margin: 0 auto; }
.hero__pill {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px;
  background: var(--tc-white); border: 1px solid var(--tc-line); box-shadow: var(--tc-shadow-base);
  border-radius: 999px; padding: 8px 16px; font-weight: 600; font-size: 14px; color: var(--tc-accent);
}
.hero__pill b { color: var(--tc-primary); }
.hero h1 { font-size: clamp(36px, 7vw, 68px); letter-spacing: -0.03em; }
.hero h1 .hl { color: var(--tc-leaf); }
.hero__sub { max-width: 640px; margin: 22px auto 30px; font-size: clamp(16px, 2.2vw, 20px); color: var(--tc-mid); }
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__note { margin-top: 16px; font-size: 14px; color: var(--tc-muted); }

/* word reveal */
.reveal-word { display: inline-block; opacity: 0; transform: translateY(18px); animation: tc-word .6s var(--tc-ease) forwards; }
@keyframes tc-word { to { opacity: 1; transform: translateY(0); } }

/* =========================================================
   3. SOCIAL-PROOF AVATAR CAROUSEL  (marquee)
========================================================= */
.proof { padding: 40px 0 72px; background: var(--tc-white); }
.proof__label { text-align: center; color: var(--tc-muted); font-weight: 600; font-size: 14px; letter-spacing: 0.04em; margin-bottom: 26px; }
.marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee__track { display: flex; gap: 20px; width: max-content; animation: tc-marquee 46s linear infinite; }
.marquee:hover .marquee__track, .marquee:focus-within .marquee__track { animation-play-state: paused; }
@keyframes tc-marquee { to { transform: translateX(-50%); } }
/* Full-bleed photo card: photo fills the card, role overlaid at the bottom */
.va-card { position: relative; width: 244px; flex: 0 0 auto; border-radius: var(--tc-radius); overflow: hidden; box-shadow: var(--tc-shadow-elevated); background: #0a1c14; }
.va-card__media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
/* height 112% + top anchor pushes the bottom (watermark) out of frame */
.va-card__img { position: absolute; top: 0; left: 50%; transform: translateX(-50%); height: 112%; width: auto; max-width: none; display: block; }
.va-card__overlay { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 16px 15px; background: linear-gradient(to top, rgba(6,22,16,0.94) 0%, rgba(6,22,16,0.55) 48%, transparent 100%); }
.va-card__role { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-family: var(--tc-heading); font-weight: 800; font-size: 15px; letter-spacing: -0.01em; }
.va-card__role::before { content: ""; width: 7px; height: 7px; border-radius: 999px; background: var(--tc-mint); flex: 0 0 auto; }

/* =========================================================
   4. "REAL HUMANS" SPLIT BAND
========================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split__media .ph { aspect-ratio: 4 / 5; }
.split__img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--tc-radius); box-shadow: var(--tc-shadow-elevated); display: block; }
.split h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 18px; }
.split ul.checks { margin: 22px 0 28px; display: grid; gap: 12px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--tc-mid); }
.checks li::before { content: "✓"; flex: 0 0 auto; width: 24px; height: 24px; margin-top: 1px; display: grid; place-items: center; border-radius: 999px; background: rgba(74,124,64,0.15); color: var(--tc-leaf); font-weight: 800; font-size: 13px; }

/* =========================================================
   5. HOW IT WORKS - vertical timeline
========================================================= */
.eyebrow--dash::before { content: ""; display: inline-block; width: 26px; height: 2px; background: currentColor; vertical-align: middle; margin-right: 12px; border-radius: 2px; }
.timeline { max-width: 1040px; margin: 8px 0 0; padding-left: 4px; }
.tl-item { display: grid; grid-template-columns: 56px 1fr; gap: 26px; padding-bottom: 44px; position: relative; }
.tl-item:last-child { padding-bottom: 0; }
/* connector line runs through the marker centers */
.tl-item::before { content: ""; position: absolute; left: 27px; top: 56px; bottom: -0px; width: 2px; background: linear-gradient(var(--tc-leaf), rgba(74,124,64,0.25)); }
.tl-item:last-child::before { display: none; }
.tl-marker { width: 56px; height: 56px; border-radius: 999px; display: grid; place-items: center; font-family: var(--tc-heading); font-weight: 800; font-size: 22px; color: #fff; box-shadow: var(--tc-shadow-elevated); position: relative; z-index: 1; }
.tl-item:nth-child(1) .tl-marker { background: var(--tc-primary); }
.tl-item:nth-child(2) .tl-marker { background: var(--tc-secondary); }
.tl-item:nth-child(3) .tl-marker { background: var(--tc-leaf); }
.tl-body { display: grid; grid-template-columns: 1fr 0.85fr; gap: 30px; align-items: center; }
.tl-body h3 { font-size: clamp(20px, 2.6vw, 26px); margin-bottom: 10px; }
.tl-body p { color: var(--tc-mid); font-size: 16px; }
.tl-img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: var(--tc-radius-sm); box-shadow: var(--tc-shadow-elevated); }

/* ---- Our Process (rich visual how-it-works) ---- */
.hl-g { color: var(--tc-secondary); }
.proc-step { display: inline-block; font-family: var(--tc-heading); font-weight: 800; font-size: 13px; letter-spacing: 0.08em; color: var(--tc-leaf); margin-bottom: 8px; }

.proc-hero { position: relative; margin-bottom: 28px; }
.proc-hero__img { width: 100%; height: clamp(300px, 40vw, 500px); object-fit: cover; border-radius: var(--tc-radius); box-shadow: var(--tc-shadow-elevated); display: block; }
.proc-hero__caption { position: absolute; left: 26px; bottom: 26px; max-width: 440px; background: var(--tc-white); border: 1px solid var(--tc-line); border-radius: var(--tc-radius); padding: 24px 26px; box-shadow: var(--tc-shadow-floating); }
.proc-hero__caption h3 { font-size: clamp(22px, 3vw, 28px); margin-bottom: 8px; }
.proc-hero__caption p { color: var(--tc-mid); font-size: 15.5px; }

.proc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.proc-card { background: var(--tc-white); border: 1px solid var(--tc-line); border-radius: var(--tc-radius); padding: 26px; box-shadow: var(--tc-shadow-base); }
.proc-card__media { background: var(--tc-ivory); border: 1px solid var(--tc-line); border-radius: var(--tc-radius-sm); padding: 22px; margin-bottom: 22px; min-height: 230px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.proc-card h3 { font-size: 22px; margin-bottom: 8px; }
.proc-card p { color: var(--tc-mid); font-size: 15.5px; }

.va-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; width: 100%; }
.va-grid img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: center 12%; border-radius: 12px; display: block; }

.dash { width: 100%; background: var(--tc-white); border: 1px solid var(--tc-line); border-radius: 14px; padding: 18px; box-shadow: var(--tc-shadow-base); }
.dash__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.dash__title { font-family: var(--tc-heading); font-weight: 800; color: var(--tc-primary); font-size: 16px; }
.dash__pill { font-size: 11px; font-weight: 700; color: var(--tc-leaf); background: rgba(74,124,64,0.14); padding: 4px 10px; border-radius: 999px; }
.dash__label { font-size: 12px; font-weight: 700; color: var(--tc-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.dash__tasks { display: grid; gap: 12px; }
.dash__tasks li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--tc-dark); }
.dash__check { width: 18px; height: 18px; border-radius: 6px; border: 1.5px solid var(--tc-line); display: grid; place-items: center; font-size: 11px; font-weight: 800; color: transparent; flex: 0 0 auto; }
.dash__check.done { background: var(--tc-secondary); border-color: var(--tc-secondary); color: #fff; }
.dash__bar { margin-left: auto; width: 88px; height: 6px; border-radius: 999px; background: var(--tc-line); overflow: hidden; flex: 0 0 auto; }
.dash__bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--tc-leaf), var(--tc-secondary)); border-radius: 999px; }

.proc-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

/* ---- Skip the hiring headache (problem/solution band) ---- */
.skip { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.skip__copy h2 { margin-bottom: 18px; }
.skip__copy .btn { margin-top: 26px; }
.skip__media { position: relative; }
.skip__img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--tc-radius); box-shadow: var(--tc-shadow-elevated); display: block; }
.skip__stat { position: absolute; display: flex; align-items: center; gap: 13px; background: var(--tc-white); border: 1px solid var(--tc-line); border-radius: 16px; padding: 13px 18px 13px 13px; box-shadow: var(--tc-shadow-floating); }
.skip__stat--a { left: -20px; top: 28%; }
.skip__stat--b { left: -12px; bottom: 10%; }
.skip__stat-badge { width: 46px; height: 46px; border-radius: 999px; display: grid; place-items: center; font-family: var(--tc-heading); font-weight: 800; font-size: 14px; color: #fff; background: var(--tc-primary); flex: 0 0 auto; }
.skip__stat-badge--leaf { background: var(--tc-leaf); font-size: 20px; }
.skip__stars { color: var(--tc-gold); font-size: 14px; letter-spacing: 2px; line-height: 1; margin-bottom: 4px; }
.skip__stat-num { font-family: var(--tc-heading); font-weight: 800; color: var(--tc-primary); font-size: 16px; line-height: 1; margin-bottom: 3px; }
.skip__stat-label { font-size: 13.5px; color: var(--tc-muted); }

/* =========================================================
   CANDIDATE PAGE (apply.html)
========================================================= */
.cand-hero-wrap { padding-top: 40px; }
.cand-hero { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; text-align: left; }
.cand-hero__copy h1 { font-size: clamp(34px, 6vw, 60px); letter-spacing: -0.03em; }
.cand-hero__copy .hero__sub { margin-left: 0; }
.cand-hero__copy .hero__actions { justify-content: flex-start; }
.collage { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.collage__big { grid-column: 1 / -1; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--tc-radius); box-shadow: var(--tc-shadow-elevated); display: block; }
.collage__small { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--tc-radius-sm); box-shadow: var(--tc-shadow-base); display: block; }

.split--reverse .split__media { order: 2; }

.why-grid { display: grid; grid-template-columns: 1fr 1.05fr 1fr; gap: 24px; align-items: center; margin-bottom: 40px; }
.why-col { display: grid; gap: 24px; }
.why-card { background: var(--tc-white); border: 1px solid var(--tc-line); border-radius: var(--tc-radius); padding: 24px; box-shadow: var(--tc-shadow-base); }
.why-card__ico { width: 44px; height: 44px; border-radius: 12px; background: rgba(27,94,27,0.1); color: var(--tc-primary); display: grid; place-items: center; font-family: var(--tc-heading); font-weight: 800; font-size: 20px; margin-bottom: 14px; }
.why-card h3 { font-size: 19px; margin-bottom: 8px; }
.why-card p { color: var(--tc-mid); font-size: 14.5px; }
.why-img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: center 12%; border-radius: var(--tc-radius); box-shadow: var(--tc-shadow-elevated); display: block; }

.vq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.vq-card { background: var(--tc-ivory); border: 1px solid var(--tc-line); border-radius: var(--tc-radius); padding: 28px; display: flex; flex-direction: column; }
.vq-card__quote { font-size: 16px; color: var(--tc-dark); line-height: 1.55; margin-bottom: 22px; }
.vq-card__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.vq-avatar { width: 52px; height: 52px; border-radius: 999px; object-fit: cover; object-position: center 12%; flex: 0 0 auto; }
.vq-name { font-family: var(--tc-heading); font-weight: 800; font-size: 15px; color: var(--tc-dark); }
.vq-role { font-size: 13px; color: var(--tc-leaf); font-weight: 700; }

/* =========================================================
   BOOK PAGE (book.html) — advisor picker
========================================================= */
.book-picker { position: relative; overflow: hidden; padding-top: 64px; }
.book-picker::before, .book-picker::after { content: ""; position: absolute; border-radius: 50%; filter: blur(90px); z-index: 0; pointer-events: none; }
.book-picker::before { width: 460px; height: 460px; background: rgba(27,94,27,0.13); top: 4%; left: -6%; }
.book-picker::after { width: 420px; height: 420px; background: rgba(74,124,64,0.12); bottom: 6%; right: -5%; }
.book-picker .container { position: relative; z-index: 1; }
.advisors { display: grid; grid-template-columns: repeat(2, minmax(0, 400px)); gap: 28px; justify-content: center; }
.advisor { background: rgba(255,255,255,0.82); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border: 1px solid var(--tc-line); border-radius: var(--tc-radius); padding: 32px 30px; box-shadow: var(--tc-shadow-elevated); text-align: center; display: flex; flex-direction: column; align-items: center; transition: transform .25s var(--tc-ease), box-shadow .25s var(--tc-ease); }
.advisor:hover { transform: translateY(-6px); box-shadow: var(--tc-shadow-floating); }
.advisor__photo { width: 150px; height: 150px; border-radius: 999px; object-fit: cover; object-position: center 20%; margin-bottom: 20px; flex: 0 0 auto; }
div.advisor__photo { aspect-ratio: auto; } /* placeholder override */
.advisor__bio b { color: var(--tc-primary); font-weight: 800; }
.advisor__badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; color: var(--tc-leaf); background: rgba(74,124,64,0.12); padding: 5px 12px; border-radius: 999px; margin-bottom: 12px; }
.advisor__name { font-size: 23px; margin-bottom: 4px; }
.advisor__role { color: var(--tc-leaf); font-weight: 700; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.advisor__bio { color: var(--tc-mid); font-size: 15px; margin-bottom: 20px; }
.advisor__facts { display: grid; gap: 9px; margin-bottom: 24px; text-align: left; width: 100%; max-width: 270px; }
.advisor__facts li { font-size: 14px; color: var(--tc-mid); padding-left: 24px; position: relative; }
.advisor__facts li::before { content: "✓"; position: absolute; left: 0; color: var(--tc-leaf); font-weight: 800; }
.advisor .btn { width: 100%; margin-top: auto; }
.book-note { text-align: center; margin-top: 30px; color: var(--tc-muted); font-size: 14.5px; }

/* Embedded calendar booking page (book-nate / book-trevor) */
.booking { display: grid; grid-template-columns: 0.85fr 1.45fr; gap: 32px; align-items: start; }
.booking-aside { background: var(--tc-ivory); border: 1px solid var(--tc-line); border-radius: var(--tc-radius); padding: 30px; position: sticky; top: 110px; }
.booking-aside__photo { width: 96px; height: 96px; border-radius: 999px; object-fit: cover; object-position: center 20%; margin-bottom: 16px; }
.booking-aside h3 { font-size: 22px; margin-bottom: 2px; }
.booking-aside__role { color: var(--tc-leaf); font-weight: 700; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.booking-aside > p { color: var(--tc-mid); font-size: 15px; margin-bottom: 18px; }
.booking-aside__facts { display: grid; gap: 9px; }
.booking-aside__facts li { font-size: 14px; color: var(--tc-mid); padding-left: 24px; position: relative; }
.booking-aside__facts li::before { content: "✓"; position: absolute; left: 0; color: var(--tc-leaf); font-weight: 800; }
.booking-cal { max-width: 1040px; margin: 0 auto; background: var(--tc-white); border: 1px solid var(--tc-line); border-radius: var(--tc-radius); box-shadow: var(--tc-shadow-elevated); overflow: hidden; }
.booking-cal iframe { width: 100%; border: none; display: block; min-height: 720px; }
@media (max-width: 900px) { .booking { grid-template-columns: 1fr; } .booking-aside { position: static; } }
.form-embed { max-width: 860px; margin: 0 auto; }
.form-embed iframe { width: 100%; display: block; }

/* Legal pages (privacy / terms) */
.legal { max-width: 780px; margin: 0 auto; }
.legal__updated { color: var(--tc-muted); font-size: 14px; margin-bottom: 22px; }
.legal h3 { font-size: 20px; margin: 34px 0 10px; }
.legal p { color: var(--tc-mid); font-size: 16px; line-height: 1.7; margin-bottom: 14px; }
.legal ul { margin: 0 0 14px; padding-left: 22px; list-style: disc; }
.legal li { color: var(--tc-mid); font-size: 16px; line-height: 1.7; margin-bottom: 6px; }
.legal a { color: var(--tc-primary); font-weight: 600; text-decoration: underline; }
@media (max-width: 760px) { .advisors { grid-template-columns: 1fr; } .advisor { max-width: 440px; margin: 0 auto; width: 100%; } }

/* =========================================================
   INTERACTIVITY — hover states across cards, media, tables
========================================================= */
.opt, .why-card, .vq-card, .proc-card, .metric, .review-card, .va-card {
  transition: transform .25s var(--tc-ease), box-shadow .25s var(--tc-ease);
}
.opt:hover, .why-card:hover, .vq-card:hover, .proc-card:hover, .review-card:hover {
  transform: translateY(-5px); box-shadow: var(--tc-shadow-floating);
}
.metric:hover { transform: translateY(-4px); box-shadow: var(--tc-shadow-elevated); }
.va-card:hover { transform: translateY(-4px); box-shadow: var(--tc-shadow-floating); }
.why-card:hover .why-card__ico { background: var(--tc-primary); color: #fff; transition: background .2s, color .2s; }

/* image zoom on 2-column section media + why-apply portrait */
.split__media { overflow: hidden; border-radius: var(--tc-radius); box-shadow: var(--tc-shadow-elevated); }
.split__img { border-radius: 0; box-shadow: none; transition: transform .5s var(--tc-ease); }
.split__media:hover .split__img { transform: scale(1.045); }
.why-center { overflow: hidden; border-radius: var(--tc-radius); }
.why-img { box-shadow: none; transition: transform .5s var(--tc-ease); }
.why-center:hover .why-img { transform: scale(1.05); }
.collage__big, .collage__small, .skip__img { transition: transform .45s var(--tc-ease); }
.collage__big:hover, .collage__small:hover, .skip__img:hover { transform: scale(1.02); }

/* comparison + vs table row hover */
.vs tbody tr { transition: background .18s; }
.vs tbody tr:hover td { background: rgba(27,94,27,0.035); }
.vs tbody tr:hover td.vs-col-us { background: rgba(27,94,27,0.10); }

@media (prefers-reduced-motion: reduce) {
  .split__media:hover .split__img, .why-center:hover .why-img,
  .collage__big:hover, .collage__small:hover, .skip__img:hover { transform: none; }
}

/* =========================================================
   PRICING — trust cluster (avatars + rating)
========================================================= */
.price-trust { display: flex; align-items: center; justify-content: center; gap: 14px; margin: -20px 0 46px; flex-wrap: wrap; }
.price-avatars { display: flex; }
.price-avatars img { width: 44px; height: 44px; border-radius: 999px; border: 3px solid var(--tc-white); object-fit: cover; object-position: center 15%; margin-left: -13px; box-shadow: var(--tc-shadow-base); }
.price-avatars img:first-child { margin-left: 0; }
.price-trust__text { font-weight: 600; color: var(--tc-mid); font-size: 15px; }
.price-stars { color: var(--tc-gold); letter-spacing: 1px; margin-right: 6px; }

/* =========================================================
   6. WHY TC365 - METRIC TILES
========================================================= */
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; }
.metric { background: var(--tc-white); border: 1px solid var(--tc-line); box-shadow: var(--tc-shadow-base); border-radius: var(--tc-radius); padding: 30px 22px; text-align: center; }
.metric__n { font-family: var(--tc-heading); font-weight: 800; font-size: clamp(34px, 5vw, 48px); color: var(--tc-emerald-deep); letter-spacing: -0.03em; line-height: 1; }
.metric__l { margin-top: 10px; font-size: 14px; color: var(--tc-muted); }

/* =========================================================
   7. TIME-VALUE CALCULATOR  (dark signature)
========================================================= */
.section--calc { background: var(--tc-white); color: var(--tc-dark); }
.section--calc-b { background: var(--tc-ivory); padding-top: 8px; }
.section--calc h1, .section--calc h2, .section--calc h3 { color: var(--tc-dark); }
.section--calc .eyebrow { color: var(--tc-leaf); }
.section--calc .lead { color: var(--tc-mid); }
.section--calc .display .hl { color: var(--tc-emerald); }

.calc-industry { max-width: 940px; margin: 0 auto 26px; text-align: center; }
.calc-hint { color: var(--tc-muted); font-size: 14px; margin: -4px 0 18px; }
.chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.chip { background: var(--tc-white); border: 1px solid var(--tc-line); color: var(--tc-mid); border-radius: 999px; padding: 11px 20px; font-weight: 600; font-size: 15px; transition: background .18s, border-color .18s, color .18s, box-shadow .18s; }
.chip:hover { border-color: var(--tc-emerald); color: var(--tc-primary); }
.chip.is-active { background: rgba(27,94,27,0.12); border-color: var(--tc-emerald); color: var(--tc-primary); box-shadow: 0 0 0 1px var(--tc-emerald); }

.calc { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: stretch; }
.calc-panel { min-width: 0; background: var(--tc-ivory); border: 1px solid var(--tc-line); border-radius: var(--tc-radius); padding: 30px; }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 22px 0; }
.calc-field { min-width: 0; display: flex; flex-direction: column; font-weight: 700; font-size: 15px; color: var(--tc-dark); gap: 10px; }
.calc-field small { font-weight: 500; font-size: 12.5px; color: var(--tc-muted); }
.calc-input { display: flex; align-items: center; background: var(--tc-white); border: 1px solid var(--tc-line); border-radius: 12px; padding: 0 14px; height: 54px; transition: border-color .18s, box-shadow .18s; }
.calc-input:focus-within { border-color: var(--tc-leaf); box-shadow: 0 0 0 3px rgba(74,124,64,0.18); }
.calc-input i { font-style: normal; color: var(--tc-muted); font-weight: 700; }
.calc-input u { text-decoration: none; color: var(--tc-muted); font-size: 13.5px; font-weight: 600; white-space: nowrap; }
.calc-input input { flex: 1; min-width: 0; background: none; border: none; outline: none; color: var(--tc-dark); font-family: var(--tc-heading); font-weight: 800; font-size: 22px; padding: 0 8px; -moz-appearance: textfield; }
.calc-input input::-webkit-outer-spin-button, .calc-input input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.calc-warn { display: flex; gap: 10px; align-items: flex-start; background: var(--tc-gold-soft); border: 1px solid rgba(245,196,81,0.55); border-radius: 12px; padding: 14px 16px; font-size: 14.5px; color: #6b5518; }
.calc-warn b { color: #a8790c; font-family: var(--tc-heading); }

.calc-result { min-width: 0; background: linear-gradient(160deg, #1B5E1B 0%, #143D14 100%); border: 1px solid rgba(134,239,172,0.28); border-radius: var(--tc-radius); padding: 34px; box-shadow: var(--tc-shadow-dark); display: flex; flex-direction: column; }
.calc-result .eyebrow { color: var(--tc-mint); }
.calc-big { font-family: var(--tc-heading); font-weight: 800; font-size: clamp(46px, 8vw, 76px); letter-spacing: -0.04em; line-height: 1; color: #fff; margin: 6px 0 10px; }
.calc-result p { color: rgba(255,255,255,0.8); font-size: 15px; max-width: 360px; }
.calc-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 24px 0; }
.calc-stats div { min-width: 0; background: rgba(255,255,255,0.08); border-radius: 14px; padding: 16px 14px; }
.calc-stats b { display: block; font-family: var(--tc-heading); font-weight: 800; font-size: 28px; color: #fff; line-height: 1; }
.calc-stats span { display: block; font-size: 12px; color: rgba(255,255,255,0.72); margin-top: 8px; text-transform: uppercase; letter-spacing: 0.04em; }
.calc-result .btn { margin-top: auto; width: 100%; }

/* =========================================================
   8. THE REAL COMPARISON - 3 option cards
========================================================= */
.options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.opt { position: relative; background: var(--tc-white); border: 1px solid var(--tc-line); box-shadow: var(--tc-shadow-base); border-radius: var(--tc-radius); padding: 30px 26px; display: flex; flex-direction: column; }
.opt--best { border-color: var(--tc-emerald); box-shadow: 0 0 0 1px var(--tc-emerald), 0 18px 40px rgba(27,94,27,0.18); background: linear-gradient(180deg, rgba(27,94,27,0.07), var(--tc-white)); }
.opt__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--tc-emerald); color: #fff; font-family: var(--tc-heading); font-weight: 800; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; }
.opt__tag { font-family: var(--tc-heading); font-weight: 700; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tc-muted); }
.opt h3 { font-size: 22px; margin: 8px 0 16px; }
.opt--best h3 { color: var(--tc-emerald-deep); }
.opt__price { font-family: var(--tc-heading); font-weight: 800; font-size: 40px; letter-spacing: -0.03em; color: var(--tc-dark); line-height: 1; }
.opt--best .opt__price { color: var(--tc-emerald-deep); }
.opt__sub { color: var(--tc-muted); font-size: 14px; margin: 8px 0 20px; }
.opt__list { display: grid; gap: 12px; }
.opt__list li { position: relative; padding-left: 30px; font-size: 15px; color: var(--tc-mid); }
.opt__list li::before { position: absolute; left: 0; top: -1px; width: 20px; height: 20px; border-radius: 999px; display: grid; place-items: center; font-size: 12px; font-weight: 800; }
.opt__list.neg li::before { content: "✕"; background: rgba(192,57,43,0.12); color: #c0392b; }
.opt__list.pos li::before { content: "✓"; background: rgba(27,94,27,0.16); color: var(--tc-emerald-deep); }
.opt__save { margin-top: auto; background: rgba(27,94,27,0.1); border: 1px solid rgba(27,94,27,0.3); border-radius: 12px; padding: 12px 16px; margin-top: 22px; font-size: 14.5px; color: var(--tc-dark); text-align: center; }
.opt__save b { color: var(--tc-emerald-deep); font-family: var(--tc-heading); }

/* =========================================================
   6b. TC365 vs OTHERS — feature comparison table
========================================================= */
.vs-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--tc-radius); border: 1px solid var(--tc-line); box-shadow: var(--tc-shadow-base); background: var(--tc-white); }
.vs { width: 100%; min-width: 720px; border-collapse: collapse; }
.vs th, .vs td { padding: 20px 24px; text-align: center; border-bottom: 1px solid var(--tc-line); font-size: 15px; }
.vs thead th { vertical-align: bottom; padding-top: 26px; padding-bottom: 22px; }
.vs th:first-child, .vs td:first-child { text-align: left; font-weight: 600; color: var(--tc-dark); }
.vs-rowhead { font-family: var(--tc-heading); font-weight: 800; font-size: 17px; color: var(--tc-primary); }
.vs-name { display: block; font-family: var(--tc-heading); font-weight: 800; font-size: 16px; color: var(--tc-dark); }
.vs-sub { display: block; font-size: 12.5px; color: var(--tc-muted); font-weight: 500; margin-top: 5px; }
.vs tbody tr:last-child td { border-bottom: none; }
.vs-col-us { background: rgba(27,94,27,0.06); }
.vs thead .vs-col-us { background: rgba(27,94,27,0.10); box-shadow: inset 0 4px 0 var(--tc-primary); }
.vs thead .vs-col-us .vs-name { color: var(--tc-primary); }
.vs td.vs-col-us { font-weight: 700; color: var(--tc-primary); }
.vs-col-us b { color: var(--tc-primary); font-weight: 800; }
.vs-yes { color: #1B5E1B; font-weight: 800; font-size: 18px; }
.vs-no { color: #c0392b; font-weight: 700; font-size: 15px; }
.vs-muted { color: var(--tc-muted); }

/* =========================================================
   8. COMPARISON TABLE
========================================================= */
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--tc-radius); border: 1px solid var(--tc-line); box-shadow: var(--tc-shadow-base); }
table.compare { width: 100%; min-width: 640px; border-collapse: collapse; background: var(--tc-white); }
.compare th, .compare td { padding: 18px 20px; text-align: center; border-bottom: 1px solid var(--tc-line); font-size: 15px; }
.compare th:first-child, .compare td:first-child { text-align: left; font-weight: 600; color: var(--tc-dark); }
.compare thead th { font-family: var(--tc-heading); font-weight: 800; font-size: 15px; }
.compare thead th.us { background: var(--tc-primary); color: #fff; border-top-left-radius: 0; }
.compare tbody tr:last-child td { border-bottom: none; }
.compare .yes { color: var(--tc-leaf); font-weight: 800; }
.compare .no { color: #c0392b; font-weight: 700; }
.compare td.us { background: rgba(20,61,20,0.04); font-weight: 700; }

/* =========================================================
   9. PRICING  (2 tiers)
========================================================= */
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 420px)); gap: 28px; justify-content: center; }
/* Light aurora: soft green glow behind glassy cards */
#pricing { position: relative; overflow: hidden; }
#pricing::before, #pricing::after { content: ""; position: absolute; border-radius: 50%; filter: blur(90px); z-index: 0; pointer-events: none; }
#pricing::before { width: 560px; height: 560px; background: rgba(27,94,27,0.20); top: 2%; left: -8%; }
#pricing::after { width: 500px; height: 500px; background: rgba(74,124,64,0.18); bottom: 0%; right: -6%; }
#pricing .container { position: relative; z-index: 1; }
.price-card { position: relative; background: rgba(255,255,255,0.72); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.9); border-radius: var(--tc-radius); box-shadow: var(--tc-shadow-elevated); display: flex; flex-direction: column; transition: transform .25s var(--tc-ease), box-shadow .25s var(--tc-ease); }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--tc-shadow-floating); }
.price-card.featured { border-color: rgba(27,94,27,0.4); background: linear-gradient(180deg, rgba(232,244,233,0.85), rgba(255,255,255,0.78)); box-shadow: 0 0 0 1px var(--tc-primary), 0 24px 60px rgba(20,61,20,0.20); }
.price-card.featured:hover { transform: translateY(-6px); box-shadow: 0 0 0 1px var(--tc-primary), 0 30px 72px rgba(20,61,20,0.26); }
.price-card__badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--tc-primary); color: #fff; font-family: var(--tc-heading); font-weight: 800; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; padding: 8px 18px; border-radius: 999px; box-shadow: var(--tc-shadow-btn-primary); z-index: 2; white-space: nowrap; }
.price-card__label { display: inline-block; font-family: var(--tc-heading); font-weight: 700; font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--tc-leaf); margin-bottom: 14px; }
.price-card.featured .price-card__label { color: var(--tc-primary); }
.price-card__body { padding: 30px; display: flex; flex-direction: column; flex: 1; }
.price-card h3 { font-size: 24px; margin-bottom: 6px; }
.price-card__tag { color: var(--tc-muted); font-size: 15px; margin-bottom: 22px; }
.price-card__price { font-family: var(--tc-heading); font-weight: 800; font-size: 46px; color: var(--tc-primary); letter-spacing: -0.03em; line-height: 1; }
.price-card__price span { font-size: 16px; font-weight: 600; color: var(--tc-muted); }
.price-card .btn { width: 100%; margin: 24px 0; }
.price-card__todo { font-size: 12px; color: var(--tc-gold); background: var(--tc-gold-soft); border-radius: 8px; padding: 6px 10px; margin-bottom: 16px; font-weight: 600; }
.price-card ul.feats { display: grid; gap: 12px; margin-top: 4px; }
.feats li { display: flex; gap: 10px; font-size: 15px; color: var(--tc-mid); }
.feats li::before { content: "✓"; color: var(--tc-leaf); font-weight: 800; }

/* =========================================================
   10. VIDEO REVIEWS CAROUSEL
========================================================= */
.reviews__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 36px; flex-wrap: wrap; }
.reviews__head h2 { font-size: clamp(28px, 4vw, 42px); max-width: 520px; }
.carousel { position: relative; }
.carousel__track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding-bottom: 8px; -ms-overflow-style: none; scrollbar-width: none; }
.carousel__track::-webkit-scrollbar { display: none; }
/* Reviews: 2-up grid, both testimonials visible, larger video */
.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.review-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 22px; background: var(--tc-ivory); border: 1px solid var(--tc-line); border-radius: var(--tc-radius); padding: 28px; }
.review-card .video-embed { width: 100%; max-width: 300px; margin: 0 auto; }
.review-card__body { max-width: 420px; }

/* Click-to-play portrait video (poster loads first; video only on click) */
.video-embed { position: relative; width: 100%; aspect-ratio: 9 / 16; border-radius: var(--tc-radius-sm); overflow: hidden; background: #000; box-shadow: var(--tc-shadow-elevated); }
.video-embed__poster { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-embed__play { position: absolute; inset: 0; margin: auto; width: 66px; height: 66px; border: none; border-radius: 999px; background: rgba(20,61,20,0.92); cursor: pointer; box-shadow: 0 8px 24px rgba(0,0,0,0.35); transition: transform .2s var(--tc-ease), background .2s; }
.video-embed__play::before { content: ""; position: absolute; inset: 0; margin: auto; width: 0; height: 0; border-style: solid; border-width: 12px 0 12px 20px; border-color: transparent transparent transparent #fff; transform: translateX(2px); }
.video-embed__play:hover { transform: scale(1.08); background: var(--tc-primary); }
.video-embed__video { width: 100%; height: 100%; object-fit: cover; display: block; background: #000; }
.review-card__quote { font-family: var(--tc-heading); font-weight: 700; font-size: 20px; color: var(--tc-primary); line-height: 1.3; }
.review-card__who { margin-top: 12px; font-size: 14px; color: var(--tc-muted); }
.carousel__nav { display: flex; gap: 10px; }
.carousel__nav button { width: 46px; height: 46px; border-radius: 999px; border: 1px solid var(--tc-line); background: var(--tc-white); font-size: 18px; color: var(--tc-primary); display: grid; place-items: center; transition: background .18s, transform .18s; }
.carousel__nav button:hover { background: var(--tc-ivory); }
.carousel__dots { display: flex; gap: 8px; justify-content: center; margin-top: 22px; }
.carousel__dots button { width: 9px; height: 9px; border-radius: 999px; border: none; background: var(--tc-line); padding: 0; }
.carousel__dots button[aria-selected="true"] { background: var(--tc-primary); width: 26px; }

/* =========================================================
   11. FAQ ACCORDION
========================================================= */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--tc-line); }
.faq__q { width: 100%; background: none; border: none; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 4px; font-family: var(--tc-heading); font-weight: 700; font-size: 18px; color: var(--tc-dark); }
.faq__q .ico { flex: 0 0 auto; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 999px; background: var(--tc-ivory); color: var(--tc-primary); font-size: 18px; transition: transform .25s var(--tc-ease), background .2s; }
.faq__q[aria-expanded="true"] .ico { transform: rotate(45deg); background: var(--tc-primary); color: #fff; }
.faq__a { overflow: hidden; max-height: 0; transition: max-height .3s var(--tc-ease); }
.faq__a p { padding: 0 4px 22px; color: var(--tc-mid); font-size: 15.5px; }

/* =========================================================
   12. FINAL CTA
========================================================= */
.final { text-align: center; background: radial-gradient(130% 100% at 50% 118%, #E7F1E8 0%, var(--tc-white) 58%); }
.final h2 { font-size: clamp(30px, 5vw, 52px); max-width: 820px; margin: 0 auto 18px; }
.final .lead { max-width: 620px; margin: 0 auto 30px; }
.final__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   13. FOOTER
========================================================= */
.footer { background: #0E2A0E; color: rgba(255,255,255,0.72); padding: 64px 0 32px; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1.15fr 1.1fr; gap: 40px; }
.footer__top > * { min-width: 0; }
.footer__brand img { height: 50px; margin-bottom: 16px; }
.footer__brand p { font-size: 14.5px; max-width: 300px; }
.footer__contact { margin-top: 16px; font-size: 14px; display: grid; gap: 6px; }
.footer__contact a:hover { color: #fff; }
.footer h4 { color: #fff; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.footer__col a, .footer__col li { display: block; font-size: 14.5px; padding: 5px 0; color: rgba(255,255,255,0.72); transition: color .16s; }
.footer__col a:hover { color: #fff; }
.footer__col ul { display: grid; }
.footer__socials { display: flex; gap: 12px; margin-top: 20px; }
.footer__socials a { width: 38px; height: 38px; border-radius: 999px; display: grid; place-items: center; background: rgba(255,255,255,0.08); color: #fff; font-size: 13px; font-weight: 700; transition: background .18s; }
.footer__socials a:hover { background: var(--tc-leaf); }
.footer__socials svg { width: 17px; height: 17px; fill: currentColor; display: block; }
.footer__bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; }

/* Newsletter form */
.footer__newsletter { margin-top: 4px; }
.footer__newsletter p { font-size: 14.5px; color: rgba(255,255,255,0.72); margin-bottom: 14px; }
.footer__newsletter-form { display: flex; gap: 8px; }
.footer__newsletter-form input { flex: 1; min-width: 0; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); border-radius: 999px; padding: 11px 16px; color: #fff; font-size: 14px; }
.footer__newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.footer__newsletter-form input:focus { outline: none; border-color: var(--tc-leaf); }
.footer__newsletter-form button { flex: 0 0 auto; background: var(--tc-leaf); color: #06240a; border: none; border-radius: 999px; padding: 11px 18px; font-family: var(--tc-heading); font-weight: 800; font-size: 13.5px; cursor: pointer; transition: background .18s; }
.footer__newsletter-form button:hover { background: var(--tc-mint); }

@media (max-width: 980px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__newsletter-form { flex-direction: column; align-items: stretch; }
  .footer__newsletter-form button { width: 100%; }
}

/* =========================================================
   SCROLL REVEAL
========================================================= */
/* Hidden only when JS is active (html.js) so content is never trapped invisible without JS */
html.js .sr { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--tc-ease), transform .6s var(--tc-ease); }
html.js .sr.in { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 980px) {
  .section { padding: 64px 0; }
  .split, .calc { grid-template-columns: 1fr; gap: 26px; }
  .options { grid-template-columns: 1fr; gap: 30px; }
  .proc-grid { grid-template-columns: 1fr; gap: 24px; }
  /* caption sits cleanly below the photo on mobile (no overlap onto the image) */
  .proc-hero__img { height: auto; aspect-ratio: 4 / 3; }
  .proc-hero__caption { position: static; margin: 0; max-width: none; border-top-left-radius: 0; border-top-right-radius: 0; }
  .skip { grid-template-columns: 1fr; gap: 40px; }
  .skip__stat--a, .skip__stat--b { left: 10px; }
  .cand-hero { grid-template-columns: 1fr; gap: 34px; }
  .why-grid { grid-template-columns: 1fr; gap: 20px; }
  .why-center { order: -1; max-width: 380px; margin: 0 auto; }
  .split--reverse .split__media { order: 0; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__toggle { display: block; }
  .nav__links.mobile-open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; left: 16px; right: 16px; top: calc(var(--tc-nav-h) + 16px);
    margin: 0; background: #fff; border: 1px solid var(--tc-line); border-radius: 22px; padding: 16px 22px 22px;
    box-shadow: var(--tc-shadow-floating);
  }
  .nav__links.mobile-open a { padding: 12px 0; font-size: 18px; width: 100%; }
  .nav__links.mobile-open .btn { display: inline-flex; margin-top: 10px; padding: 10px 20px; min-height: 44px; font-size: 14px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { max-width: 480px; margin: 0 auto; width: 100%; }
  .calc-grid { grid-template-columns: 1fr; }
  .chips { justify-content: flex-start; }
  .tl-body { grid-template-columns: 1fr; gap: 16px; }
  .review-card .video-embed { max-width: 280px; }
  .reviews__head { flex-direction: column; align-items: flex-start; }
  /* smaller VA marquee cards on mobile only; desktop keeps 244px */
  .va-card { width: 168px; }
  .va-card__overlay { padding: 20px 12px 12px; }
  .va-card__role { font-size: 13px; }
  /* smaller, less wide buttons on mobile; desktop untouched */
  .btn { padding: 12px 22px; font-size: 14.5px; min-height: 46px; }
  .price-card .btn, .advisor .btn, .calc-result .btn {
    width: auto; max-width: 300px; margin-left: auto; margin-right: auto; display: flex;
  }
}
@media (max-width: 480px) {
  .metrics { grid-template-columns: 1fr; }
  .container { padding: 0 18px; }
  .hero__actions .btn, .final__actions .btn { width: auto; max-width: 300px; margin-left: auto; margin-right: auto; }
  .hero__actions, .final__actions { flex-direction: column; align-items: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal-word { opacity: 1; transform: none; }
  .sr { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
