/* =============================================
   Endurance Edge Coaching — styles.css v3
   Phase 1 visual overhaul
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,400;0,700;1,400;1,700&family=Open+Sans:wght@300;400;600;700&display=swap');

/* ── Variables ── */
:root {
  --navy:       #0b1d2a;   /* primary dark canvas */
  --navy-mid:   #0f2940;   /* slightly lighter — pricing */
  --navy-light: #132f4a;   /* philosophy section */
  --blue:       #2176ae;   /* buttons / interactive only */
  --blue-dark:  #1a5f8e;
  --orange:     #e07a3a;
  --orange-lt:  #f0934f;
  --white:      #ffffff;
  --off-white:  #f5f6f7;
  --text-dark:  #1a1a1a;
  --text-mid:   #555555;
  --border:     #d8dde4;
  --nav-height: 60px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: var(--text-dark); background: var(--white); line-height: 1.65; font-size: 16px; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ── Typography ── */
h1, h2, h3 { font-family: 'Merriweather', serif; line-height: 1.2; }
h1 { font-size: clamp(1.9rem, 4.5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1rem, 2vw, 1.25rem); font-weight: 700; }
p  { color: var(--text-mid); margin-bottom: 1rem; line-height: 1.75; }
p:last-child { margin-bottom: 0; }
em { font-style: italic; }

.container     { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container--sm { max-width: 760px; }
.text-center   { text-align: center; }
.page-body     { padding-top: var(--nav-height); }

/* ── Buttons ── */
.btn {
  display: inline-block; padding: 13px 32px;
  font-family: 'Open Sans', sans-serif; font-size: 0.85rem;
  font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  cursor: pointer; border: 2px solid transparent; border-radius: 3px;
  transition: all 0.22s ease;
}
.btn--outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn--outline-white:hover { background: var(--white); color: var(--navy); }
.btn--ghost-white { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.25); }
.btn--ghost-white:hover { background: rgba(255,255,255,0.15); color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn--blue { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn--blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.btn--orange { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn--orange:hover { background: var(--orange-lt); border-color: var(--orange-lt); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(224,122,58,0.35); }
.btn--submit { background: var(--blue); color: var(--white); border: none; padding: 12px 36px; font-family: 'Open Sans', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; border-radius: 3px; cursor: pointer; transition: background 0.2s; }
.btn--submit:hover { background: var(--blue-dark); }

/* ── Section label ── */
.section-label {
  display: block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 0.75rem;
}
.section-label--muted { color: rgba(255,255,255,0.45); }

/* =============================================
   NAVIGATION
   ============================================= */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-height); background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  transition: box-shadow 0.3s;
}
.site-nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.1); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 36px; width: auto; }
.nav-logo-name { font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--text-dark); line-height: 1.2; }
.nav-logo-name span { display: block; font-weight: 300; font-size: 0.65rem; letter-spacing: 0.14em; color: var(--text-mid); }
.nav-links { display: flex; align-items: center; }
.nav-links a { padding: 0 16px; height: var(--nav-height); display: flex; align-items: center; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--text-dark); border-bottom: 3px solid transparent; transition: color 0.2s, border-color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--blue); border-bottom-color: var(--blue); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); transition: all 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile { display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 12px 24px; z-index: 99; flex-direction: column; box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 13px 0; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--text-dark); border-bottom: 1px solid var(--border); }
.nav-mobile a:last-child { border-bottom: none; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative; min-height: 88vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover; background-position: center 25%;
  background-attachment: fixed;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(8,20,30,0.72); }
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 780px; padding: 80px 24px; }
.hero-eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 1.25rem; display: block; }
.hero-content h1 { color: var(--white); margin-bottom: 1.25rem; text-shadow: 0 2px 24px rgba(0,0,0,0.5); }
.hero-content h1 em { font-style: italic; color: rgba(255,255,255,0.85); }
.hero-content p { color: rgba(255,255,255,0.82); font-size: 1.05rem; margin: 0 auto 2.25rem; max-width: 580px; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   STATS STRIP
   ============================================= */
.stats-strip { background: var(--white); padding: 52px 0; border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { text-align: center; padding: 0 24px; position: relative; }
.stat-item + .stat-item::before { content: ''; position: absolute; left: 0; top: 15%; height: 70%; width: 1px; background: var(--border); }
.stat-number { white-space: nowrap; font-family: 'Merriweather', serif; font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 0.4rem; }
.stat-number span { color: var(--orange); }
.stat-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mid); }

/* =============================================
   TICKER MARQUEE
   ============================================= */
.ticker { background: var(--navy); padding: 13px 0; overflow: hidden; }
.ticker-track { display: flex; width: max-content; animation: ticker-scroll 40s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { white-space: nowrap; padding: 0 0; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.ticker-sep { padding: 0 20px; color: var(--orange); }
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* =============================================
   PHILOSOPHY
   ============================================= */
.philosophy { background: var(--navy-light); padding: 80px 0; text-align: center; }
.philosophy h2 { color: var(--white); margin-bottom: 1.25rem; }
.philosophy h2 em { font-style: italic; color: rgba(255,255,255,0.75); }
.philosophy-intro { max-width: 820px; margin: 0 auto 56px; }
.philosophy-intro p { color: rgba(255,255,255,0.82); font-size: 0.97rem; line-height: 1.8; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 16px; }
.feature-item { color: var(--white); }
.feature-icon { width: 56px; height: 56px; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; }
.feature-icon svg { width: 44px; height: 44px; stroke: var(--orange); fill: none; stroke-width: 1.5; }
.feature-item h3 { color: var(--white); font-size: 0.95rem; margin-bottom: 0.6rem; }
.feature-item p { color: rgba(255,255,255,0.72); font-size: 0.85rem; line-height: 1.65; }

/* AUTRA badge in philosophy */
.autra-strip { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 28px 0 44px; }
.autra-strip-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin: 0; }
.autra-badge-rect { max-width: 240px; width: 100%; height: auto; display: block; margin: 0 auto; border-radius: 3px; background: var(--white); }

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works { background: var(--off-white); padding: 80px 0; }
.how-it-works-intro { text-align: center; margin-bottom: 60px; }
.how-it-works-intro h2 { margin-bottom: 0.75rem; }
.how-it-works-intro p { color: var(--text-mid); max-width: 520px; margin: 0 auto; font-size: 0.97rem; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--border); border-radius: 6px; overflow: hidden; margin-bottom: 60px; }
.step-card { background: var(--white); padding: 36px 28px; position: relative; }
.step-num { font-family: 'Merriweather', serif; font-size: 3rem; font-weight: 700; color: rgba(11,29,42,0.07); line-height: 1; margin-bottom: 12px; }
.step-card h3 { font-size: 1rem; margin-bottom: 0.6rem; color: var(--navy); }
.step-card p { font-size: 0.88rem; color: var(--text-mid); margin: 0; line-height: 1.65; }
.step-card::after { content: ''; position: absolute; bottom: 0; left: 28px; right: 28px; height: 3px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; }
.step-card:hover::after { transform: scaleX(1); }

/* Coach interaction mockup */
.mockup-row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.mockup-text h3 { font-size: 1.3rem; margin-bottom: 0.75rem; color: var(--navy); }
.mockup-text p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.75; }
.mockup-text ul { margin-top: 1.25rem; }
.mockup-text ul li { font-size: 0.88rem; color: var(--text-mid); padding: 5px 0; display: flex; gap: 10px; align-items: flex-start; }
.mockup-text ul li::before { content: '→'; color: var(--orange); flex-shrink: 0; font-weight: 700; }

.chat-mockup { background: var(--white); border-radius: 12px; box-shadow: 0 8px 40px rgba(0,0,0,0.12); overflow: hidden; font-family: 'Open Sans', sans-serif; }
.chat-header { background: var(--navy); padding: 14px 20px; display: flex; align-items: center; gap: 12px; }
.chat-header-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.chat-header-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.chat-header-sub { font-size: 0.68rem; color: rgba(255,255,255,0.4); margin-left: auto; }
.chat-body { padding: 20px; display: flex; flex-direction: column; gap: 14px; background: #f8f9fa; }
.chat-msg { display: flex; gap: 10px; align-items: flex-start; }
.chat-msg.coach .bubble { background: var(--white); border: 1px solid var(--border); border-radius: 0 10px 10px 10px; }
.chat-msg.athlete { flex-direction: row-reverse; }
.chat-msg.athlete .bubble { background: var(--blue); border-radius: 10px 0 10px 10px; }
.chat-avatar { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; }
.coach .chat-avatar { background: var(--orange); color: white; }
.athlete .chat-avatar { background: var(--navy); color: white; }
.bubble { padding: 10px 14px; max-width: 88%; }
.bubble p { font-size: 0.82rem; line-height: 1.5; margin: 0; }
.coach .bubble p { color: var(--text-dark); }
.athlete .bubble p { color: var(--white); }
.bubble-meta { font-size: 0.65rem; margin-top: 3px; opacity: 0.55; }
.coach .bubble-meta { color: var(--text-mid); }
.athlete .bubble-meta { color: rgba(255,255,255,0.7); }
.chat-footer { padding: 12px 20px; background: var(--white); border-top: 1px solid var(--border); font-size: 0.72rem; color: var(--text-mid); letter-spacing: 0.06em; }

/* =============================================
   INTEGRATION STRIP
   ============================================= */
.integration-strip { background: var(--white); padding: 36px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.integration-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.integration-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-light); }
.integration-logos { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: center; }
.int-logo { display: flex; align-items: center; }
.int-logo img { height: 20px; width: auto; display: block; filter: grayscale(1) opacity(0.5); transition: filter 0.25s ease; }
.int-logo:hover img { filter: grayscale(0) opacity(1); }

/* =============================================
   COACH PARALLAX
   ============================================= */
.coach-parallax { position: relative; min-height: 580px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.coach-parallax .c-bg { position: absolute; inset: 0; background-size: cover; background-position: center 20%; background-attachment: fixed; }
.coach-kellie .c-bg { background-image: url('../images/kellie-bg.jpg'); }
.coach-sarah .c-bg  { background-image: url('../images/sarah-bg.jpg'); }
.coach-parallax .c-overlay { position: absolute; inset: 0; background: rgba(6,16,24,0.74); }
.coach-content { position: relative; z-index: 2; color: var(--white); max-width: 760px; padding: 72px 24px; }
.coach-content h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.7rem); margin-bottom: 0.3rem; }
.coach-creds-line { font-size: 0.78rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; text-transform: uppercase; }
.coach-content p { color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.8; margin-bottom: 0.9rem; text-align: left; }
.coach-content .btn { margin-top: 1.25rem; }

/* =============================================
   FAQ
   ============================================= */
.faq-section { background: var(--navy); padding: 80px 0; }
.faq-intro { text-align: center; margin-bottom: 52px; }
.faq-intro h2 { color: var(--white); margin-bottom: 0.75rem; }
.faq-intro p { color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto; font-size: 0.95rem; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(255,255,255,0.06); border-radius: 6px; overflow: hidden; max-width: 960px; margin: 0 auto; }
.faq-item { background: rgba(255,255,255,0.03); transition: background 0.2s; }
.faq-item.open { background: rgba(255,255,255,0.07); }
.faq-question { width: 100%; text-align: left; padding: 22px 24px; background: none; border: none; font-family: 'Open Sans', sans-serif; font-size: 0.9rem; font-weight: 700; color: rgba(255,255,255,0.88); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color 0.2s; }
.faq-question:hover { color: var(--white); }
.faq-toggle { width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.2); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: rgba(255,255,255,0.4); font-family: monospace; transition: all 0.3s; }
.faq-item.open .faq-toggle { background: var(--orange); border-color: var(--orange); color: white; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s; padding: 0 24px; }
.faq-item.open .faq-answer { max-height: 320px; padding: 0 24px 22px; }
.faq-answer p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.75; margin: 0; }

/* =============================================
   PRICING
   ============================================= */
.pricing { background: var(--navy-mid); padding: 80px 0; text-align: center; }
.pricing h2 { color: var(--white); margin-bottom: 52px; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 800px; margin: 0 auto 36px; }
.pricing-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 6px; padding: 36px 28px; text-align: center; transition: background 0.2s, transform 0.2s; }
.pricing-card:hover { background: rgba(255,255,255,0.11); transform: translateY(-3px); }
.pricing-icon { width: 48px; height: 48px; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; }
.pricing-icon svg { width: 38px; height: 38px; stroke: var(--orange); fill: none; stroke-width: 1.5; }
.pricing-card h3 { color: var(--white); font-size: 1rem; margin-bottom: 8px; }
.pricing-amount { font-family: 'Merriweather', serif; font-size: 2.2rem; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.pricing-freq { font-size: 0.76rem; color: rgba(255,255,255,0.45); margin-bottom: 20px; font-style: italic; }
hr.p-divider { border: none; border-top: 1px solid rgba(255,255,255,0.12); margin-bottom: 16px; }
.pricing-includes-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 12px; text-align: left; }
.pricing-list { text-align: left; }
.pricing-list li { font-size: 0.85rem; color: rgba(255,255,255,0.78); padding: 5px 0; display: flex; align-items: flex-start; gap: 9px; line-height: 1.4; }
.pricing-list li::before { content: '→'; color: var(--orange); flex-shrink: 0; font-size: 0.78rem; margin-top: 2px; font-weight: 700; }
.pricing-footnote { font-size: 0.76rem; color: rgba(255,255,255,0.4); font-style: italic; text-align: left; margin-top: 10px; }

/* =============================================
   BOOK FORM (final CTA)
   ============================================= */
.enquire-section { position: relative; padding: 80px 0; }
.enquire-bg { position: absolute; inset: 0; background-image: url('../images/enquire-bg.jpg'); background-size: cover; background-position: center; background-attachment: fixed; }
.enquire-overlay { position: absolute; inset: 0; background: rgba(255,255,255,0.92); }
.enquire-section .container { position: relative; z-index: 2; }
.enquire-intro { text-align: center; margin-bottom: 40px; }
.enquire-intro h2 { color: var(--navy); margin-bottom: 0.5rem; }
.enquire-intro p { color: var(--text-mid); max-width: 480px; margin: 0 auto; font-size: 0.95rem; }
.contact-form-box { max-width: 640px; margin: 0 auto; background: var(--white); border-radius: 6px; padding: 40px; box-shadow: 0 8px 48px rgba(0,0,0,0.1); }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); margin-bottom: 5px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: 4px; font-family: 'Open Sans', sans-serif; font-size: 0.9rem; color: var(--text-dark); background: var(--white); transition: border-color 0.2s, box-shadow 0.2s; appearance: none; -webkit-appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(33,118,174,0.1); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-submit-row { display: flex; justify-content: flex-end; margin-top: 4px; }
.field-error { display: block; font-size: 0.78rem; color: #c0392b; margin-top: 4px; }
.form-error-general { font-size: 0.85rem; color: #c0392b; margin-bottom: 12px; text-align: center; }
input[aria-invalid="true"], textarea[aria-invalid="true"] { border-color: #c0392b; box-shadow: 0 0 0 3px rgba(192,57,43,0.08); }
[data-fs-success] { display: none !important; }
.form-success { background: #e8f5e9; border: 1px solid #81c784; border-radius: 4px; padding: 14px; text-align: center; color: #2e7d32; font-weight: 600; font-size: 0.9rem; margin-top: 12px; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--navy); padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 0.78rem; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

/* =============================================
   COACHES PAGE
   ============================================= */
.page-hero { background: var(--navy); padding: 56px 0; text-align: center; position: relative; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: url('../images/hero-bg.jpg'); background-size: cover; background-position: center; opacity: 0.12; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); }
.page-hero p  { color: rgba(255,255,255,0.65); margin-top: 0.5rem; font-size: 1rem; }
.coach-bio-section { padding: 64px 0; }
.coach-bio-block { padding: 52px 0; border-bottom: 1px solid var(--border); }
.coach-bio-block:last-child { border-bottom: none; padding-bottom: 0; }
.coach-bio-inner { display: grid; grid-template-columns: 280px 1fr; gap: 52px; align-items: start; }
.coach-bio-inner.flip { grid-template-columns: 1fr 280px; }
.coach-bio-inner.flip .coach-photo-col { order: 2; }
.coach-bio-inner.flip .coach-bio-text  { order: 1; }
.coach-photo-col { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.coach-photo { border-radius: 6px; overflow: hidden; aspect-ratio: 3/4; background: var(--navy); order: 0; }
.coach-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.coach-photo .img-ph { width: 100%; height: 100%; min-height: 340px; background: var(--navy); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); font-size: 0.82rem; text-align: center; padding: 16px; }
.autra-badge-below-photo { width: 100%; height: auto; display: block; border-radius: 4px; background: var(--white); }
.coach-bio-text .role-tag { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); margin-bottom: 4px; }
.cred-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0 16px; }
.cred-tag { padding: 3px 11px; border-radius: 20px; background: rgba(33,118,174,0.1); color: var(--blue); font-size: 0.74rem; font-weight: 700; }
.coach-bio-text p { font-size: 0.94rem; line-height: 1.8; }
.highlights-box { background: var(--off-white); border-radius: 4px; padding: 20px 24px; margin-top: 18px; }
.highlights-box h4 { font-family: 'Open Sans', sans-serif; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; font-weight: 700; }
.highlights-box li { font-size: 0.87rem; color: var(--text-mid); padding: 5px 0; border-bottom: 1px solid var(--border); display: flex; gap: 8px; }
.highlights-box li:last-child { border-bottom: none; }
.highlights-box li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; }

/* Privacy */
.privacy-wrap { padding: 64px 0; }
.privacy-wrap h2 { font-size: 1.2rem; margin: 2rem 0 0.6rem; }
.privacy-wrap p, .privacy-wrap li { font-size: 0.95rem; color: var(--text-mid); line-height: 1.78; }
.privacy-wrap ul { list-style: disc; padding-left: 22px; margin-bottom: 1rem; }
.privacy-wrap ul li { margin-bottom: 5px; }
.privacy-wrap a { color: var(--blue); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .stat-item + .stat-item::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .mockup-row { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .coach-bio-inner, .coach-bio-inner.flip { grid-template-columns: 1fr; }
  .coach-bio-inner.flip .coach-photo-col, .coach-bio-inner.flip .coach-bio-text { order: unset; }
  .coach-photo { aspect-ratio: 4/3; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form-box { padding: 28px 20px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .integration-inner { gap: 20px; }
  .integration-logos { gap: 20px; }
}
@media (max-width: 400px) {
  .features-grid { grid-template-columns: 1fr; }
}
