/* =====================================================================
   THRIVE — Health & Wellness Coaching — Premium Multi-Page Template
   Plain HTML5 + CSS3. No frameworks. Offline-ready (no external images).
   ---------------------------------------------------------------------
   REBRAND TIP: Change the brand look by editing the CSS variables in
   :root below. Swap --accent for your primary color, adjust --accent2
   to match, and update --font-head / --font-body plus the Google Fonts
   <link> in each HTML file. Everything else cascades.
   ===================================================================== */

:root {
  /* --- Brand palette (edit these to rebrand) --- */
  --bg:        #ffffff;   /* page background                          */
  --ink:       #1f2d3a;   /* near-black slate (headings)              */
  --accent:    #14b8a6;   /* teal — primary brand color               */
  --accent-dk: #0d9488;   /* darker teal for hovers / gradients       */
  --accent-dp: #0f3d3a;   /* deepest teal for dark sections           */
  --accent2:   #f59e0b;   /* amber — energetic secondary accent       */
  --accent2-dk:#d97706;   /* darker amber                             */
  --muted:     #64748b;   /* muted text                               */
  --surface:   #f1faf8;   /* soft mint alt background                 */
  --line:      #dcefe9;   /* borders / dividers                       */
  --white:     #ffffff;

  /* --- Fonts --- */
  --font-head: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* --- Shape & motion --- */
  --radius:    20px;
  --radius-sm: 13px;
  --shadow:    0 10px 30px rgba(15, 61, 58, .08);
  --shadow-lg: 0 24px 60px rgba(15, 61, 58, .15);
  --ease:      .35s cubic-bezier(.4, 0, .2, 1);

  /* --- Layout --- */
  --maxw: 1180px;
  --gutter: 24px;
}

/* ---------------------------------------------------------------------
   RESET / BASE
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: #44525e;
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.14;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.7rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1rem; }

a { color: var(--accent-dk); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--accent); }

img, svg { max-width: 100%; display: block; }

ul { margin: 0; padding: 0; list-style: none; }

/* ---------------------------------------------------------------------
   LAYOUT HELPERS
   --------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: 92px 0; }
.section--soft { background: var(--surface); }
.section--tight { padding: 64px 0; }

.section-head {
  max-width: 730px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head--left { margin-left: 0; text-align: left; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-dk);
  background: rgba(20, 184, 166, .1);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.lead { font-size: 1.12rem; color: #44525e; }
.muted { color: var(--muted); }

/* ---------------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .98rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 22px rgba(20, 184, 166, .34);
}
.btn-primary:hover { background: var(--accent-dk); color: #fff; box-shadow: 0 12px 30px rgba(20, 184, 166, .45); }

.btn-amber {
  background: var(--accent2);
  color: #3a2606;
  box-shadow: 0 8px 22px rgba(245, 158, 11, .34);
}
.btn-amber:hover { background: var(--accent2-dk); color: #fff; box-shadow: 0 12px 30px rgba(245, 158, 11, .45); }

.btn-ghost {
  background: transparent;
  color: var(--accent-dk);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-dk); }

.btn-light {
  background: rgba(255,255,255,.14);
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn-light:hover { background: #fff; color: var(--accent-dk); }

/* ---------------------------------------------------------------------
   HEADER / NAV  (shared, identical IDs on every page)
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.32rem;
  color: var(--ink);
  letter-spacing: -.02em;
}
.brand:hover { color: var(--ink); }
.brand .logo-mark {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(20, 184, 166, .38);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .96rem;
  color: #4a5763;
  padding: 8px 14px;
  border-radius: 10px;
  transition: background var(--ease), color var(--ease);
}
.nav-links a:hover { background: var(--surface); color: var(--accent-dk); }
.nav-links a.active { color: var(--accent-dk); }
.nav-links a.active::after {
  content: "";
  display: block;
  height: 2px; width: 60%;
  margin: 3px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.nav-cta { margin-left: 8px; }
.nav-cta .btn { padding: 11px 20px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  background: var(--surface);
  border: none;
  border-radius: 12px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------------------
   HERO (home)
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 540px at 88% -10%, rgba(245,158,11,.16), transparent 60%),
    radial-gradient(760px 520px at -5% 110%, rgba(20,184,166,.2), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--surface) 100%);
  padding: 86px 0 96px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { margin-bottom: 18px; }
.hero h1 span { color: var(--accent-dk); }
.hero .lead { max-width: 540px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-meta {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}
.hero-meta div strong {
  font-family: var(--font-head);
  font-size: 1.9rem;
  color: var(--ink);
  display: block;
  line-height: 1;
}
.hero-meta div span { font-size: .9rem; color: var(--muted); }

/* Hero visual — pure CSS/SVG "coaching" card mock */
.hero-visual {
  position: relative;
  background: linear-gradient(160deg, var(--accent-dp), var(--accent-dk));
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
  color: #fff;
}
.hero-visual::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 26px;
  background: radial-gradient(360px 260px at 85% 12%, rgba(245,158,11,.3), transparent 60%);
  pointer-events: none;
}
.hero-visual .hv-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; position: relative; z-index: 1; }
.hv-avatar {
  display: flex; align-items: center; gap: 12px;
}
.hv-avatar .ring {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.5rem;
  background: rgba(255,255,255,.16);
  border: 2px solid rgba(255,255,255,.4);
}
.hv-avatar b { display: block; font-family: var(--font-head); font-size: 1rem; }
.hv-avatar span { font-size: .8rem; color: rgba(255,255,255,.78); }
.hv-badge {
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  background: var(--accent2); color: #3a2606; font-weight: 700;
  padding: 5px 12px; border-radius: 999px;
}
.hv-card {
  position: relative; z-index: 1;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 14px;
}
.hv-card h4 { color: #fff; font-size: .92rem; margin-bottom: 14px; display: flex; justify-content: space-between; }
.hv-card h4 em { font-style: normal; color: var(--accent2); }
.hv-progress { height: 9px; border-radius: 999px; background: rgba(255,255,255,.18); overflow: hidden; margin-bottom: 14px; }
.hv-progress i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--accent2), #fbbf24); }
.hv-rings { display: flex; gap: 12px; }
.hv-ring {
  flex: 1; text-align: center;
  background: rgba(255,255,255,.08);
  border-radius: 14px; padding: 14px 8px;
}
.hv-ring .dial {
  width: 46px; height: 46px; margin: 0 auto 8px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.2rem;
}
.hv-ring.r1 .dial { background: conic-gradient(var(--accent2) 78%, rgba(255,255,255,.16) 0); }
.hv-ring.r2 .dial { background: conic-gradient(#5eead4 64%, rgba(255,255,255,.16) 0); }
.hv-ring.r3 .dial { background: conic-gradient(#fbbf24 92%, rgba(255,255,255,.16) 0); }
.hv-ring .dial span { width: 32px; height: 32px; border-radius: 50%; background: var(--accent-dp); display: grid; place-items: center; }
.hv-ring small { font-size: .72rem; color: rgba(255,255,255,.78); display: block; }
.hv-ring b { font-family: var(--font-head); font-size: .95rem; }
.hv-tags { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 8px; }
.hv-tags span {
  font-size: .76rem; font-family: var(--font-head); font-weight: 600;
  background: rgba(255,255,255,.12); padding: 6px 12px; border-radius: 999px;
}

/* Floating chips on hero visual */
.hero-visual .chip {
  position: absolute; z-index: 2;
  background: #fff; color: var(--ink);
  font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  padding: 10px 14px; border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 8px;
}
.hero-visual .chip em { font-style: normal; font-size: 1.1rem; }
.hero-visual .chip-1 { top: -16px; left: -18px; }
.hero-visual .chip-2 { bottom: -16px; right: -14px; color: var(--accent-dk); }

/* ---------------------------------------------------------------------
   STATS STRIP (home, under hero)
   --------------------------------------------------------------------- */
.statstrip { padding: 0; }
.statstrip .container {
  margin-top: -40px;
  position: relative; z-index: 5;
}
.statstrip-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid; grid-template-columns: repeat(3, 1fr);
  text-align: center;
  overflow: hidden;
}
.statstrip-card div { padding: 28px 18px; }
.statstrip-card div + div { border-left: 1px solid var(--line); }
.statstrip-card strong {
  font-family: var(--font-head); font-size: 2.1rem; color: var(--accent-dk);
  display: block; line-height: 1;
}
.statstrip-card span { font-size: .92rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   CARDS / GRIDS
   --------------------------------------------------------------------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(20,184,166,.3); }

.card .icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(20,184,166,.14), rgba(245,158,11,.18));
  display: grid; place-items: center;
  font-size: 1.7rem;
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: #44525e; margin-bottom: 0; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .92rem;
}
.card-link span { transition: transform var(--ease); }
.card-link:hover span { transform: translateX(4px); }

/* Feature list */
.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature .tick {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(20,184,166,.32);
}
.feature h3 { font-size: 1.12rem; margin-bottom: 4px; }
.feature p { margin-bottom: 0; font-size: .98rem; }

/* Split section (visual block + content) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split--reverse .split-media { order: 2; }
.split-media {
  border-radius: 24px;
  min-height: 400px;
  background: linear-gradient(150deg, var(--accent-dp), var(--accent-dk));
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #fff;
  padding: 32px;
}
.split-media::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(420px 320px at 80% 18%, rgba(245,158,11,.32), transparent 60%);
}

/* ---------------------------------------------------------------------
   HOW IT WORKS — steps
   --------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  position: relative;
}
.step .num {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step p { margin-bottom: 0; font-size: .95rem; }

/* ---------------------------------------------------------------------
   STATS BAND
   --------------------------------------------------------------------- */
.stats-band {
  background:
    radial-gradient(600px 400px at 88% 10%, rgba(245,158,11,.22), transparent 60%),
    linear-gradient(135deg, var(--accent-dp), var(--accent-dk));
  color: #fff;
}
.stats-band .section-head h2 { color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; text-align: center; }
.stat strong {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3rem);
  display: block;
  line-height: 1;
  background: linear-gradient(120deg, #fff, var(--accent2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat span { color: rgba(255,255,255,.82); font-size: .95rem; }

/* ---------------------------------------------------------------------
   TESTIMONIALS / RESULTS
   --------------------------------------------------------------------- */
.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
}
.quote-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.quote-card .stars { color: var(--accent2); margin-bottom: 14px; letter-spacing: 2px; }
.quote-card blockquote {
  margin: 0 0 22px;
  font-size: 1.08rem;
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.55;
}
.quote-author { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}
.quote-author b { display: block; font-family: var(--font-head); color: var(--ink); }
.quote-author span { font-size: .88rem; color: var(--muted); }

/* Results / transformation card */
.result-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}
.result-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.result-card .rc-top {
  background: linear-gradient(150deg, var(--accent-dp), var(--accent-dk));
  padding: 26px 24px;
  color: #fff; position: relative; overflow: hidden;
}
.result-card .rc-top::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(220px 160px at 85% 10%, rgba(245,158,11,.3), transparent 60%);
}
.result-card .rc-ava {
  position: relative; z-index: 1;
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.4rem;
  background: rgba(255,255,255,.16); border: 2px solid rgba(255,255,255,.4);
  margin-bottom: 14px;
}
.result-card .rc-result {
  position: relative; z-index: 1;
  font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; line-height: 1.1;
}
.result-card .rc-result em { font-style: normal; color: var(--accent2); }
.result-card .rc-body { padding: 22px 24px 26px; }
.result-card .rc-body p { font-size: .98rem; margin-bottom: 16px; }
.result-card .rc-name { font-family: var(--font-head); font-weight: 700; color: var(--ink); }
.result-card .rc-meta { font-size: .85rem; color: var(--muted); }
.result-card .rc-tag {
  display: inline-block; margin-bottom: 14px;
  font-size: .74rem; font-family: var(--font-head); font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--accent-dk); background: var(--surface);
  padding: 4px 11px; border-radius: 999px;
}

/* ---------------------------------------------------------------------
   PROGRAMS — pricing cards + comparison
   --------------------------------------------------------------------- */
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  position: relative;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 24px 60px rgba(20,184,166,.22);
}
.price-card.featured::before {
  content: "Most popular";
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .76rem;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 8px 18px rgba(20,184,166,.4);
}
.price-card .p-ic { font-size: 2rem; margin-bottom: 12px; }
.price-card h3 { font-size: 1.35rem; margin-bottom: 6px; }
.price-card .p-sub { color: var(--muted); font-size: .95rem; margin-bottom: 20px; }
.price-card .price {
  font-family: var(--font-head); font-weight: 800; color: var(--ink);
  font-size: 2.6rem; line-height: 1; margin-bottom: 4px;
}
.price-card .price span { font-size: .95rem; font-weight: 600; color: var(--muted); }
.price-card .price-note { font-size: .85rem; color: var(--muted); margin-bottom: 22px; }
.price-card ul.incl { margin: 0 0 26px; display: grid; gap: 12px; }
.price-card ul.incl li {
  display: flex; gap: 11px; align-items: flex-start; font-size: .96rem; color: #44525e;
}
.price-card ul.incl li::before {
  content: "\2713"; flex: 0 0 auto;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(20,184,166,.14); color: var(--accent-dk);
  display: grid; place-items: center; font-size: .8rem; font-weight: 700;
  margin-top: 1px;
}
.price-card .btn { margin-top: auto; justify-content: center; }

/* Comparison table */
.compare-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); }
table.compare {
  width: 100%; border-collapse: collapse; background: #fff;
  min-width: 640px;
}
table.compare th, table.compare td {
  padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line);
  font-size: .96rem;
}
table.compare thead th {
  font-family: var(--font-head); font-weight: 700; color: var(--ink);
  background: var(--surface);
}
table.compare thead th:first-child { color: var(--muted); font-weight: 600; }
table.compare tbody th {
  font-family: var(--font-body); font-weight: 600; color: var(--ink);
}
table.compare td { text-align: center; color: #44525e; }
table.compare td.yes { color: var(--accent-dk); font-weight: 700; }
table.compare td.no { color: #b6c2c0; }
table.compare tr:last-child td, table.compare tr:last-child th { border-bottom: none; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 4px 24px; box-shadow: var(--shadow);
}
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 0;
  font-family: var(--font-head); font-weight: 700; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 1.4rem; color: var(--accent-dk); font-weight: 400;
  transition: transform var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0 0 18px; color: #44525e; font-size: .98rem; }

/* ---------------------------------------------------------------------
   CTA BAND
   --------------------------------------------------------------------- */
.cta-band {
  background:
    radial-gradient(620px 420px at 88% 8%, rgba(245,158,11,.3), transparent 60%),
    linear-gradient(135deg, var(--accent-dp), var(--accent-dk));
  color: #fff;
  border-radius: 30px;
  padding: 62px 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.88); max-width: 580px; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------------------
   PAGE BANNER (inner pages)
   --------------------------------------------------------------------- */
.page-banner {
  background:
    radial-gradient(720px 420px at 86% -20%, rgba(245,158,11,.16), transparent 60%),
    radial-gradient(600px 420px at -5% 120%, rgba(20,184,166,.14), transparent 55%),
    linear-gradient(180deg, var(--surface), #fff);
  padding: 66px 0 58px;
  border-bottom: 1px solid var(--line);
}
.page-banner h1 { margin-bottom: 10px; }
.page-banner p { max-width: 640px; color: #44525e; margin-bottom: 0; }
.breadcrumb {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--accent-dk); }
.breadcrumb span { margin: 0 6px; }

/* ---------------------------------------------------------------------
   ABOUT — timeline + certifications
   --------------------------------------------------------------------- */
.timeline { max-width: 760px; margin: 0 auto; position: relative; padding-left: 34px; }
.timeline::before {
  content: ""; position: absolute; left: 9px; top: 6px; bottom: 6px;
  width: 2px; background: linear-gradient(180deg, var(--accent), var(--accent2));
}
.tl-item { position: relative; padding-bottom: 34px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: -34px; top: 4px;
  width: 20px; height: 20px; border-radius: 50%;
  background: #fff; border: 3px solid var(--accent);
  box-shadow: 0 0 0 4px rgba(20,184,166,.14);
}
.tl-item .yr {
  font-family: var(--font-head); font-weight: 800; color: var(--accent-dk);
  font-size: .92rem; letter-spacing: .04em;
}
.tl-item h3 { font-size: 1.18rem; margin: 4px 0 6px; }
.tl-item p { margin: 0; font-size: .98rem; }

.cert-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 20px 22px; box-shadow: var(--shadow);
  display: flex; gap: 14px; align-items: center;
}
.cert-card .c-ic {
  width: 46px; height: 46px; flex: 0 0 auto; border-radius: 12px;
  background: var(--surface); display: grid; place-items: center; font-size: 1.4rem;
}
.cert-card b { font-family: var(--font-head); color: var(--ink); display: block; font-size: 1rem; }
.cert-card span { font-size: .88rem; color: var(--muted); }

/* About intro portrait block */
.coach-portrait {
  border-radius: 24px;
  min-height: 440px;
  background:
    radial-gradient(280px 220px at 30% 25%, rgba(245,158,11,.4), transparent 60%),
    linear-gradient(150deg, var(--accent-dp), var(--accent-dk));
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
  display: grid; place-items: center; text-align: center; color: #fff; padding: 32px;
}
.coach-portrait .face { font-size: 5rem; line-height: 1; margin-bottom: 14px; }
.coach-portrait strong { font-family: var(--font-head); font-size: 1.4rem; display: block; }
.coach-portrait span { color: rgba(255,255,255,.85); }

/* ---------------------------------------------------------------------
   CONTACT
   --------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: start; }
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(20,184,166,.14);
}
.field textarea { resize: vertical; min-height: 130px; }
.field .error-msg { color: #dc2626; font-size: .82rem; margin-top: 5px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #dc2626; }
.field.invalid .error-msg { display: block; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 6px; }
.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #047857;
  font-weight: 600;
}
.form-status.show { display: block; }

.info-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 22px;
}
.info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.info-row:last-child { margin-bottom: 0; }
.info-row .info-ic {
  width: 44px; height: 44px; flex: 0 0 auto;
  border-radius: 12px; background: #fff;
  display: grid; place-items: center; font-size: 1.3rem;
  box-shadow: var(--shadow);
}
.info-row b { font-family: var(--font-head); color: var(--ink); display: block; }
.info-row span { font-size: .94rem; }

/* Social row */
.social-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.social-row a {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .9rem;
  color: var(--ink);
  background: #fff; border: 1px solid var(--line);
  padding: 10px 16px; border-radius: 999px; box-shadow: var(--shadow);
  transition: transform var(--ease), border-color var(--ease);
}
.social-row a:hover { transform: translateY(-2px); border-color: var(--accent); color: var(--accent-dk); }

/* Map placeholder */
.map-placeholder {
  border-radius: var(--radius);
  min-height: 240px;
  background:
    linear-gradient(rgba(20,184,166,.06), rgba(20,184,166,.06)),
    repeating-linear-gradient(0deg, var(--line) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 42px),
    var(--surface);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  text-align: center;
  color: var(--muted);
}
.map-placeholder .pin { font-size: 2.4rem; }

/* ---------------------------------------------------------------------
   FOOTER (shared)
   --------------------------------------------------------------------- */
.site-footer {
  background: var(--accent-dp);
  color: rgba(255,255,255,.75);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 44px;
}
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.site-footer .brand:hover { color: #fff; }
.footer-about p { font-size: .95rem; color: rgba(255,255,255,.72); max-width: 320px; }
.footer-col h4 {
  color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a { display: block; color: rgba(255,255,255,.72); padding: 5px 0; font-size: .95rem; }
.footer-col a:hover { color: #fff; }
.social { display: flex; gap: 10px; margin-top: 16px; }
.social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.1);
  display: grid; place-items: center;
  font-size: 1rem;
  color: #fff;
}
.social a:hover { background: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .88rem;
  color: rgba(255,255,255,.62);
}
.footer-bottom a { color: rgba(255,255,255,.78); }

/* ---------------------------------------------------------------------
   SCROLL-REVEAL
   --------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.no-io .reveal { opacity: 1; transform: none; }

/* ---------------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 470px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 14px var(--gutter) 22px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ease), transform var(--ease);
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 12px 14px; }
  .nav-links a.active::after { display: none; }
  .nav-cta { margin: 8px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse .split-media { order: 0; }
  .stats-grid, .steps { grid-template-columns: 1fr 1fr; }
  .statstrip-card { grid-template-columns: 1fr; }
  .statstrip-card div + div { border-left: none; border-top: 1px solid var(--line); }
  .cta-band { padding: 46px 26px; }
}

@media (max-width: 480px) {
  .stats-grid, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-visual .chip-1 { left: 0; }
  .hero-visual .chip-2 { right: 0; }
}
