/* ============================================================
   BusiFit — Global Stylesheet
   Theme: Warm Light (matches poster brand identity)
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg-primary:    #faf8f5;
  --bg-secondary:  #f0ede6;
  --bg-card:       #ffffff;
  --bg-dark:       #0d1b2a;
  --bg-green:      #243b28;

  --terra:         #c8734a;   /* terracotta — primary accent */
  --terra-dark:    #a85c38;
  --terra-light:   #e8956f;
  --terra-pale:    #f5e4da;

  --navy:          #0d1b2a;
  --navy-light:    #1e3a5f;

  --text-primary:  #1a1a1a;
  --text-secondary:#4a4a4a;
  --text-muted:    #8a8a8a;
  --text-on-dark:  #f0ede6;

  --border:        rgba(26,26,26,0.1);
  --border-hover:  rgba(26,26,26,0.2);

  --radius-sm:     4px;
  --radius-md:     10px;
  --radius-lg:     18px;

  --font-heading:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:     'Inter', system-ui, -apple-system, sans-serif;

  --max-width:     1140px;
  --section-pad:   96px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  font-weight: 700;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

p  { color: var(--text-secondary); line-height: 1.75; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1rem;
}

.divider-line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--terra);
  margin-bottom: 1.5rem;
}

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

section { padding: var(--section-pad) 0; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all 0.22s ease;
}

.btn-primary {
  background: var(--terra);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--terra-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,115,74,0.28);
}

.btn-secondary {
  background: transparent;
  color: var(--terra);
  border: 1.5px solid var(--terra);
}
.btn-secondary:hover {
  background: var(--terra-pale);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(200,115,74,0.18);
}

.btn-dark {
  background: var(--navy);
  color: var(--text-on-dark);
}
.btn-dark:hover {
  background: #1a2f45;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-hover);
}
.btn-outline:hover {
  border-color: var(--terra);
  color: var(--terra);
  transform: translateY(-1px);
}

.btn-lg { padding: 17px 40px; font-size: 1rem; }

/* ── Announcement Banner ────────────────────────────────────── */
#top-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  background: var(--terra);
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
  gap: 10px;
  font-size: 0.84rem;
  color: #fff;
}
body.banner-dismissed #top-banner { display: none; }
.banner-cta {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.6);
  white-space: nowrap;
  transition: border-color 0.2s;
}
.banner-cta:hover { border-color: #fff; }
.banner-close {
  position: absolute;
  right: 14px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  padding: 6px 8px;
  transition: color 0.2s;
}
.banner-close:hover { color: #fff; }

/* Nav shifts down when banner is visible */
body:not(.banner-dismissed) .nav { top: 44px; }

/* Hero sections shift down when banner is visible */
body:not(.banner-dismissed) .hero         { padding-top: 112px; }
body:not(.banner-dismissed) .about-hero   { padding-top: 112px; }
body:not(.banner-dismissed) .page-hero    { padding-top: 132px; }
body:not(.banner-dismissed) .system-hero  { padding-top: 164px; }
body:not(.banner-dismissed) .insights-hero { padding-top: 164px; }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 28px;
  background: rgba(250,248,245,0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(250,248,245,0.98);
  box-shadow: 0 2px 20px rgba(26,26,26,0.08);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.nav-logo em {
  font-style: normal;
  color: var(--terra);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }

/* Active page indicator */
.nav-links a.active {
  color: var(--terra);
  font-weight: 600;
}
.nav-mobile a.active {
  color: var(--terra);
  font-weight: 600;
}

/* "Coming soon" Insights nav item */
.nav-links .nav-soon {
  position: relative;
  color: var(--text-muted);
  pointer-events: none;
  cursor: default;
}
.nav-links .nav-soon::after {
  content: 'Soon';
  position: absolute;
  top: -8px;
  right: -30px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--terra-pale);
  color: var(--terra-dark);
  padding: 1px 5px;
  border-radius: 3px;
  line-height: 1.6;
}
.nav-mobile .nav-soon {
  color: var(--text-muted);
  pointer-events: none;
  cursor: default;
}

.nav-cta {
  margin-left: 8px;
  background: #111111 !important;
  color: #c8813a !important;
  border-color: transparent !important;
}
.nav-cta:hover {
  background: #000000 !important;
  color: #d9924a !important;
}

.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-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 16px 28px 24px;
  gap: 16px;
}
.nav-mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: var(--bg-secondary);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 28px;
  width: 100%;
}

.hero-content { padding-right: 60px; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}
.hero-eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--terra);
}
.hero-eyebrow-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  font-family: var(--font-body);
}

.hero h1 { margin-bottom: 1.25rem; }
.hero h1 em {
  font-style: italic;
  color: var(--terra);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-value {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--terra);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 40px;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 460px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(13,27,42,0.15);
}

.hero-image-frame img {
  width: 100%;
  display: block;
}

.hero-badge {
  position: absolute;
  bottom: 24px;
  left: -16px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.hero-badge-text { font-size: 0.82rem; font-weight: 600; color: #fff; }
.hero-badge-sub  { font-size: 0.72rem; color: rgba(255,255,255,0.6); margin-top: 3px; }

/* ── Trust bar ───────────────────────────────────────────────── */
.trust-bar {
  background: var(--navy);
  padding: 24px 0;
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(240,237,230,0.7);
  font-size: 0.82rem;
  font-weight: 500;
}

.trust-item svg { color: var(--terra); flex-shrink: 0; }

/* ── About ───────────────────────────────────────────────────── */
.about { background: var(--bg-secondary); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(13,27,42,0.12);
}
.about-image-wrap img { width: 100%; display: block; }

.about-content .section-label { display: block; }
.about-content h2 { margin-bottom: 1rem; }
.about-content p  { margin-bottom: 1.2rem; }

.about-credentials {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.credential-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.credential-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--terra);
  flex-shrink: 0;
}

.about-read-more {
  display: inline-flex;
  align-items: center;
  margin-top: 1.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--terra);
  letter-spacing: 0.01em;
  transition: gap 0.2s;
  gap: 4px;
}
.about-read-more:hover { color: var(--terra-dark); gap: 8px; }

/* ── How It Works ────────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p  { max-width: 540px; margin: 0 auto; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.step-card:hover {
  box-shadow: 0 12px 40px rgba(13,27,42,0.1);
  transform: translateY(-3px);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--terra-pale);
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
}

.step-icon {
  width: 48px;
  height: 48px;
  background: var(--terra-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--terra);
}

.step-card h3 { margin-bottom: 0.75rem; }

/* ── 90-Minute Section ──────────────────────────────────────── */
.ninety-section {
  background: var(--bg-green);
  padding: var(--section-pad) 0;
}
.ninety-header {
  text-align: center;
  margin-bottom: 56px;
}
.ninety-header h2 {
  color: var(--text-on-dark);
  margin: 0.5rem 0 1rem;
}
.ninety-header h2 em {
  font-style: italic;
  color: var(--terra-light);
}
.ninety-header p {
  color: rgba(240,237,230,0.65);
  max-width: 480px;
  margin: 0 auto;
}
.ninety-grid {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.ninety-col {
  padding: 40px 36px;
}
.ninety-col-before {
  background: rgba(0,0,0,0.18);
}
.ninety-col-after {
  background: rgba(200,129,58,0.14);
}
.ninety-col-header {
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.ninety-col-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,237,230,0.38);
}
.ninety-col-label-after { color: var(--terra-light); }
.ninety-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ninety-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.ninety-row span {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(240,237,230,0.55);
}
.ninety-col-after .ninety-row span { color: rgba(240,237,230,0.9); }
.ninety-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}
.ninety-icon-no {
  background: rgba(255,255,255,0.07);
  color: rgba(240,237,230,0.25);
}
.ninety-icon-yes {
  background: var(--terra);
  color: #fff;
}
.ninety-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(0,0,0,0.12);
  padding: 20px 0;
}
.ninety-divider-line {
  width: 1px;
  flex: 1;
  background: rgba(255,255,255,0.09);
}
.ninety-divider-badge {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240,237,230,0.28);
  padding: 5px 8px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  white-space: nowrap;
}
.ninety-cta {
  text-align: center;
  margin-top: 48px;
}
@media (max-width: 720px) {
  .ninety-grid {
    grid-template-columns: 1fr;
  }
  .ninety-divider {
    flex-direction: row;
    padding: 0 28px;
    height: 44px;
  }
  .ninety-divider-line {
    width: auto;
    height: 1px;
    flex: 1;
  }
}

/* ── Packages ────────────────────────────────────────────────── */
.packages { background: var(--bg-secondary); }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.package-card.featured {
  border-color: var(--terra);
  border-width: 2px;
}

.package-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 16px;
  right: -28px;
  background: var(--terra);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 40px;
  transform: rotate(45deg);
  font-family: var(--font-body);
}

.package-card:hover {
  box-shadow: 0 16px 48px rgba(13,27,42,0.1);
  transform: translateY(-4px);
}

.package-name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
}

.package-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 0.25rem;
  line-height: 1;
}
.package-price sup { font-size: 1.2rem; vertical-align: top; margin-top: 0.6rem; }
.package-currency {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.package-divider {
  height: 1px;
  background: var(--border);
  margin: 1.25rem 0;
}

.package-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.feature-check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--terra);
  margin-top: 2px;
}

/* ── Packages Teaser ─────────────────────────────────────────── */
.packages-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.teaser-content h2 { margin-bottom: 1rem; }
.teaser-content p  { margin-bottom: 1rem; }

.teaser-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}

.teaser-option {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.teaser-option-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terra);
  flex-shrink: 0;
}

.teaser-card {
  background: var(--bg-card);
  border: 2px solid var(--terra);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  position: relative;
}

.teaser-card-label {
  display: inline-block;
  background: var(--terra);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
}

.teaser-card h3 { margin-bottom: 1rem; }
.teaser-card p  { margin-bottom: 1.75rem; }

.teaser-card-cta { margin-top: auto; }

@media (max-width: 960px) {
  .packages-teaser { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Testimonials ────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover { box-shadow: 0 8px 32px rgba(13,27,42,0.08); }

.stars {
  font-size: 1rem;
  color: var(--terra);
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.97rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--terra-pale);
  border: 2px solid var(--terra);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--terra);
  flex-shrink: 0;
  font-family: var(--font-heading);
}
.author-name  { font-weight: 600; font-size: 0.9rem; }
.author-title { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

/* ── FAQ ──────────────────────────────────────────────────────── */
.faq { background: var(--bg-secondary); }

.faq-list {
  max-width: 760px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--terra); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  color: var(--text-primary);
  font-size: 0.97rem;
  font-weight: 600;
  font-family: var(--font-body);
}

.faq-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--terra);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer-inner {
  padding: 0 24px 22px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ── BusiFit System / Ebook ──────────────────────────────────── */
.ebook-section { background: var(--bg-secondary); }

.ebook-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.ebook-content h2 { margin-bottom: 1rem; }
.ebook-content p  { margin-bottom: 1.5rem; }

.ebook-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 2rem;
  padding-left: 0;
}

.ebook-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding-left: 18px;
  position: relative;
}

.ebook-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terra);
  flex-shrink: 0;
}

.ebook-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ebook-note {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.ebook-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ebook-card {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  max-width: 320px;
  width: 100%;
  box-shadow: 0 20px 48px rgba(13,27,42,0.18);
}

.ebook-card-tag {
  display: inline-block;
  background: rgba(200,115,74,0.2);
  color: var(--terra-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
}

.ebook-card-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-on-dark);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.ebook-card-sub {
  font-size: 0.82rem;
  color: rgba(240,237,230,0.5);
  margin-bottom: 1.5rem;
}

.ebook-card-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}

.ebook-card-price {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--terra);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.ebook-card-desc {
  font-size: 0.8rem;
  color: rgba(240,237,230,0.45);
}

@media (max-width: 960px) {
  .ebook-inner { grid-template-columns: 1fr; gap: 40px; }
  .ebook-visual { order: -1; }
}

/* ── CTA ──────────────────────────────────────────────────────── */
.cta-section {
  background: var(--bg-green);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.cta-section .section-label { color: var(--terra-light); }
.cta-section h2 { color: var(--text-on-dark); margin-bottom: 1rem; }
.cta-section p  { color: rgba(240,237,230,0.75); margin-bottom: 2.5rem; font-size: 1.05rem; }

.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ── Social Callout ──────────────────────────────────────────── */
.linkedin-callout { background: var(--bg-dark); padding: 72px 0; }
.linkedin-callout-inner { max-width: 620px; margin: 0 auto; text-align: center; }
.linkedin-callout-inner h2 { color: var(--text-on-dark); margin-bottom: 1rem; }
.linkedin-callout-inner p  { color: rgba(240,237,230,0.72); margin-bottom: 2rem; }


/* ── BusiFit subscription forms (replaces Kit embeds) ───────────────────── */
.bf-form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
.bf-form-row .btn {
  width: 100%;
  justify-content: center;
}
.bf-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-family: var(--font-body);
  background: #fff;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s;
}
.bf-input:focus { border-color: var(--terra); }
.bf-input::placeholder { color: var(--text-muted); }
.bf-msg {
  font-size: 0.88rem;
  margin-top: 10px;
  text-align: center;
  padding: 10px 16px;
  border-radius: var(--radius-md);
}
.bf-msg.success { background: rgba(200,115,74,0.1); color: var(--terra-dark); }
.bf-msg.error   { background: rgba(220,50,50,0.08); color: #c0392b; }

/* ── Footer ───────────────────────────────────────────────────── */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  display: block;
}
.footer-logo em { font-style: normal; color: var(--terra); }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); max-width: 240px; line-height: 1.6; }

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-family: var(--font-body);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.87rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--terra); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s;
}
.footer-social a:hover {
  border-color: var(--terra);
  color: var(--terra);
}

/* ── Animations ──────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 960px) {
  :root { --section-pad: 72px; }

  .hero::after          { display: none; }
  .hero-inner           { grid-template-columns: 1fr; gap: 48px; }
  .hero-content         { padding-right: 0; }
  .hero-image           { padding-left: 0; order: -1; }
  .hero-image-frame     { max-width: 420px; margin: 0 auto; }
  .about-inner          { grid-template-columns: 1fr; }
  .about-image-wrap     { display: none; }
  .steps-grid           { grid-template-columns: 1fr; }
  .packages-grid        { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .testimonials-grid    { grid-template-columns: 1fr; }
  .footer-grid          { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  :root { --section-pad: 56px; }

  .nav-links     { display: none; }
  .nav-hamburger { display: flex; }
  .hero-stats    { gap: 24px; }
  .trust-bar-inner { gap: 24px; }
  .footer-grid   { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}


/* ── Certification Ticker ───────────────────────────────────── */
.cert-ticker {
  background: var(--bg-green);
  overflow: hidden;
  padding: 13px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  white-space: nowrap;
  user-select: none;
}
.cert-ticker-track {
  display: inline-flex;
  align-items: center;
  animation: cert-ticker-scroll 28s linear infinite;
  will-change: transform;
}
.cert-ticker:hover .cert-ticker-track {
  animation-play-state: paused;
}
@keyframes cert-ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.cert-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 36px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240,237,230,0.88);
  flex-shrink: 0;
}
.cert-ticker-star {
  color: var(--terra);
  font-size: 0.65rem;
  flex-shrink: 0;
}


/* ── Runner Club Coming Soon ────────────────────────────────── */
.runner-club {
  background: var(--bg-green);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.runner-club::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(200,115,74,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.runner-club-inner {
  max-width: 620px;
  position: relative;
}
.runner-club-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,115,74,0.18);
  border: 1px solid rgba(200,115,74,0.35);
  color: var(--terra-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
}
.runner-club-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terra-light);
  animation: runner-pulse 1.8s ease-in-out infinite;
}
@keyframes runner-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}
.runner-club h2 {
  color: var(--text-on-dark);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 1.1rem;
}
.runner-club h2 em {
  color: var(--terra-light);
  font-style: italic;
}
.runner-club p {
  color: rgba(240,237,230,0.72);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.runner-club-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 2.2rem;
}
.runner-club-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(240,237,230,0.6);
  letter-spacing: 0.04em;
}
.runner-club-meta-item svg { color: var(--terra-light); flex-shrink: 0; }
