/* ====== CSS VARIABLES ====== */
:root {
  --bg-deep: #0a0a0a;
  --bg-surface: #111115;
  --bg-card: #18181f;
  --bg-card-hover: #1e1e26;
  --fg-primary: #f0ece4;
  --fg-secondary: #9a9590;
  --fg-muted: #5c5854;
  --accent: #d4a04a;
  --accent-glow: rgba(212, 160, 74, 0.12);
  --accent-warm: #e8b85e;
  --border: rgba(240, 236, 228, 0.07);
  --border-accent: rgba(212, 160, 74, 0.25);
  --font: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-display: 'Barlow Condensed', sans-serif;
  --radius: 6px;
  --max-w: 1140px;
  --section-pad: 7rem 2rem;
  --section-pad-sm: 5rem 1.5rem;
}

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

/* ====== SHARED ====== */
.container { max-width: var(--max-w); margin: 0 auto; }

/* ─── CENTRER LES TEXTES DE TOUTES LES SECTIONS ─── */
section { text-align: center; }
section .section-title,
section .section-lead,
section .section-tag { text-align: center; }
.process-step,
.testimonial-card,
.review-card,
.journey-item,
.service-card { text-align: center; }
.section-tag {
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1.2rem;
}
.section-title {
  font-family: var(--font);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--fg-secondary);
  line-height: 1.75;
  max-width: 560px;
}
.highlight { color: var(--accent); }
.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #0a0a0a;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.9rem 2.2rem;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}
.cta-btn:hover {
  background: var(--accent-warm);
  border-color: var(--accent-warm);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 160, 74, 0.3);
}
.cta-sub {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 0.6rem;
  text-align: center;
}
.cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}
.cta-group--center { align-items: center; }

/* ====== HERO ====== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(212,160,74,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 35% 50% at 90% 10%, rgba(196,77,63,0.04) 0%, transparent 55%),
    var(--bg-deep);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,160,74,0.2), transparent);
}
.hero-inner { max-width: var(--max-w); margin: 0 auto; width: 100%; position: relative; z-index: 1; text-align: center; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(212,160,74,0.3);
  padding: 0.35rem 0.8rem;
  margin-bottom: 2rem;
  text-align: center;
}
.hero-badge span { font-size: 1rem; }
.hero h1 {
  font-family: var(--font);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0 auto 2rem;
  max-width: 900px;
  text-align: center;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--fg-secondary);
  max-width: 560px;
  line-height: 1.75;
  margin: 0 auto 3rem;
  text-align: center;
}
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-ctas .cta-btn { font-size: 0.95rem; padding: 0.85rem 2rem; }
.hero-link {
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.hero-link:hover { color: var(--fg-primary); }
.hero-scroll {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 5rem;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.hero-scroll-line {
  width: 40px;
  height: 1px;
  background: var(--fg-muted);
}

/* ====== COACH STORY ====== */
.coach-story {
  padding: var(--section-pad);
  background: var(--bg-surface);
  border-top: 1px solid rgba(212,160,74,0.08);
  border-bottom: 1px solid rgba(212,160,74,0.08);
}
.coach-inner { max-width: var(--max-w); margin: 0 auto; text-align: center; }
.coach-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
  text-align: center;
}
.coach-image {
  position: sticky;
  top: 3rem;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(212,160,74,0.15);
}
.coach-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.coach-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212,160,74,0.3);
  padding: 0.75rem 1.2rem;
}
.coach-image-badge-text {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}
.coach-headline { text-align: left; }
.coach-headline h2 {
  font-family: var(--font);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}
.coach-headline p {
  font-size: 1rem;
  color: var(--fg-secondary);
  font-style: italic;
  margin-bottom: 2rem;
}
.coach-headline hr {
  width: 50px;
  border: none;
  border-top: 2px solid var(--accent);
  margin-bottom: 2.5rem;
}
.coach-journey {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  margin-top: 2rem;
}
.coach-journey::before {
  content: '';
  position: absolute;
  left: 5.5rem;
  top: 1.5rem;
  bottom: 1.5rem;
  width: 1px;
  background: linear-gradient(to bottom, rgba(212,160,74,0.4), rgba(212,160,74,0.05));
}
.journey-item {
  display: flex;
  gap: 2rem;
  padding: 0.6rem 0 2.2rem;
}
.journey-item:last-child { padding-bottom: 0; }
.journey-marker {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 6.5rem;
  flex-shrink: 0;
  padding-top: 0.2rem;
}
.journey-year {
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent);
  text-transform: uppercase;
  white-space: nowrap;
}
.journey-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid rgba(212,160,74,0.5);
  flex-shrink: 0;
}
.journey-dot--active {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(212,160,74,0.12);
}
.journey-content { flex: 1; text-align: left; }
.journey-title {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg-primary);
  margin-bottom: 0.5rem;
}
.journey-text {
  font-size: 0.88rem;
  color: var(--fg-secondary);
  line-height: 1.7;
}
.coach-disclaimer {
  margin-top: 2.5rem;
  padding: 1rem 1.2rem;
  background: rgba(212,160,74,0.05);
  border-left: 3px solid rgba(212,160,74,0.3);
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.6;
  font-style: italic;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}
.coach-cta { margin-top: 2.5rem; }

/* ====== PROCESS (4 STEPS) ====== */
.process {
  padding: var(--section-pad);
  background: var(--bg-deep);
}
.process-inner { max-width: var(--max-w); margin: 0 auto; text-align: center; }
.process-header { margin-bottom: 4rem; text-align: center; }
.process-header .section-lead { margin-top: 1rem; margin: 1rem auto 0; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.process-step {
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.2s;
}
.process-step:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
}
.process-num {
  font-family: var(--font);
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(212,160,74,0.1);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.process-step h3 {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg-primary);
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}
.process-step p {
  font-size: 0.88rem;
  color: var(--fg-secondary);
  line-height: 1.7;
}

/* ====== SERVICES (4 MODULES) ====== */
.services {
  padding: var(--section-pad);
  background: var(--bg-surface);
  border-top: 1px solid rgba(212,160,74,0.08);
}
.services-inner { max-width: var(--max-w); margin: 0 auto; }
.services-header { margin-bottom: 4rem; }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.service-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s;
}
.service-card:hover { border-color: var(--border-accent); }
.service-img {
  background-size: cover;
  background-position: center;
  min-height: 260px;
}
.service-info { padding: 2.2rem; }
.service-label {
  font-family: var(--font);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.service-card h3 {
  font-family: var(--font);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--fg-primary);
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--fg-secondary);
  line-height: 1.7;
}
.service-tag {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(212,160,74,0.2);
  margin-top: 1.2rem;
}
.service-cta {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}
.service-cta:hover { opacity: 0.75; }

/* ====== STATS COUNTER ====== */
.stats-bar {
  padding: 4rem 2rem;
  background: var(--bg-card);
  border-top: 1px solid rgba(212,160,74,0.08);
  border-bottom: 1px solid rgba(212,160,74,0.08);
}
.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}
.stat-block { text-align: center; }
.stat-num {
  font-family: var(--font);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}
.stat-divider { width: 1px; height: 60px; background: var(--border); }

/* ====== TESTIMONIALS ====== */
.testimonials {
  padding: var(--section-pad);
  background: var(--bg-deep);
}
.testimonials-inner { max-width: var(--max-w); margin: 0 auto; }
.testimonials-header { margin-bottom: 4rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
}
.testimonial-top {
  padding: 1.5rem;
  background: rgba(212,160,74,0.04);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.testimonial-icon { font-size: 1.2rem; }
.testimonial-name {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg-primary);
}
.testimonial-condition {
  font-size: 0.78rem;
  color: var(--fg-muted);
}
.testimonial-body { padding: 1.5rem; }
.testimonial-row { margin-bottom: 1.2rem; }
.testimonial-label {
  font-family: var(--font);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.testimonial-label--before { color: var(--fg-muted); }
.testimonial-label--after { color: var(--accent); }
.testimonial-text {
  font-size: 0.88rem;
  color: var(--fg-secondary);
  line-height: 1.65;
}
.testimonial-result {
  padding: 1rem 1.5rem;
  background: rgba(212,160,74,0.06);
  border-top: 1px solid rgba(212,160,74,0.1);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.testimonial-result-check { color: var(--accent); font-size: 1rem; }
.testimonial-result-text {
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}

/* ====== REVIEWS ====== */
.reviews {
  padding: var(--section-pad);
  background: var(--bg-surface);
  border-top: 1px solid rgba(212,160,74,0.08);
}
.reviews-inner { max-width: var(--max-w); margin: 0 auto; }
.reviews-header { margin-bottom: 4rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.review-quote {
  font-size: 0.95rem;
  color: var(--fg-secondary);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.review-quote::before { content: '"'; }
.review-quote::after { content: '"'; }
.review-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.review-initial {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212,160,74,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.review-meta { flex: 1; }
.review-name {
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fg-primary);
}
.review-context { font-size: 0.78rem; color: var(--fg-muted); }

/* ====== FAQ ====== */
.faq {
  padding: var(--section-pad);
  background: var(--bg-deep);
}
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-header { margin-bottom: 4rem; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.8rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
}
.faq-question:hover .faq-q-text { color: var(--fg-primary); }
.faq-q-text {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg-secondary);
  transition: color 0.2s;
  line-height: 1.4;
}
.faq-toggle {
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  transition: transform 0.2s;
}
.faq-item--open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding-bottom: 1.8rem;
}
.faq-item--open .faq-answer { display: block; }
.faq-answer p {
  font-size: 0.92rem;
  color: var(--fg-secondary);
  line-height: 1.75;
}

/* ====== PRICING ====== */
.pricing {
  padding: var(--section-pad);
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing .section-title {
  font-family: var(--font);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--fg-primary);
  text-align: center;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.pricing .section-sub {
  text-align: center;
  color: var(--fg-secondary);
  font-size: 1rem;
  margin-bottom: 3.5rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.pricing-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.pricing-card:hover {
  border-color: rgba(212,160,74,0.3);
  transform: translateY(-2px);
}
.pricing-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 8px 40px rgba(212,160,74,0.12);
  transform: scale(1.03);
}
.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-2px);
}
.pricing-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 1.2rem;
  border-radius: 0 0 0.6rem 0.6rem;
  white-space: nowrap;
}
.pricing-card-header { margin-bottom: 1.2rem; }
.pricing-tier-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.75rem;
}
.pricing-price {
  font-family: var(--font);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--fg-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing-price-sub {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 0.25rem;
}
.pricing-desc {
  font-size: 0.9rem;
  color: var(--fg-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
  flex: 1;
}
.pricing-features li {
  font-size: 0.88rem;
  color: var(--fg-secondary);
  padding-left: 1.4rem;
  position: relative;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.pricing-btn {
  display: block;
  text-align: center;
  padding: 0.9rem 1.5rem;
  border-radius: 0.7rem;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  background: var(--accent);
  color: var(--bg);
  transition: opacity 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
}
.pricing-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.pricing-btn--featured {
  background: var(--accent);
  box-shadow: 0 4px 20px rgba(212,160,74,0.25);
}
.pricing-secure {
  text-align: center;
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 0.9rem;
}
.pricing-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 2.5rem;
}

/* ====== CLOSING ====== */
.closing {
  padding: var(--section-pad);
  background:
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(212,160,74,0.05) 0%, transparent 70%),
    var(--bg-surface);
  text-align: center;
  border-top: 1px solid rgba(212,160,74,0.08);
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing h2 {
  font-family: var(--font);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.closing-text {
  font-size: 1rem;
  color: var(--fg-secondary);
  line-height: 1.8;
  margin-bottom: 3rem;
}
.closing-cta { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }

/* ====== FOOTER ====== */
.site-footer {
  padding: 4rem 2rem 3rem;
  background: #060608;
  border-top: 1px solid var(--border);
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-brand { margin-bottom: 1rem; }
.footer-brand-logo {
  font-family: var(--font);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 0.5rem;
}
.footer-brand-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.footer-col h4 {
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col li { font-size: 0.88rem; color: var(--fg-secondary); }
.footer-col a { transition: color 0.2s; }
.footer-col a:hover { color: var(--fg-primary); }
.footer-col-phone {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg-primary);
  display: block;
  margin-bottom: 0.5rem;
}
.footer-col-email {
  font-size: 0.88rem;
  color: var(--fg-secondary);
  display: block;
  margin-bottom: 1.2rem;
}
.footer-col-addr { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.footer-legal { font-size: 0.78rem; color: var(--fg-muted); }
.footer-legal a { color: var(--fg-muted); transition: color 0.2s; }
.footer-legal a:hover { color: var(--fg-secondary); }
.footer-legal span { margin: 0 0.5rem; }
.footer-social { display: flex; gap: 1rem; align-items: center; }
.footer-social a { color: var(--fg-muted); transition: color 0.2s; }
.footer-social a:hover { color: var(--accent); }

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-2px); }
}
@media (max-width: 768px) {
  :root { --section-pad: 5rem 1.5rem; }
  .hero { min-height: 85vh; padding: 6rem 1.5rem 4rem; }
  .hero-badge { font-size: 0.65rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero-ctas .cta-btn { width: 100%; text-align: center; }
  .hero-link { font-size: 0.82rem; }
  .coach-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .coach-headline { position: static; text-align: center; }
  .coach-image { aspect-ratio: 4/3; position: static; order: -1; }
  .journey-marker { width: 5rem; }
  .coach-journey::before { left: 4.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { grid-template-columns: 1fr; }
  .service-img { min-height: 200px; }
  .service-info { padding: 1.5rem; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-inner { flex-direction: column; gap: 2.5rem; }
  .stat-divider { width: 50px; height: 1px; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 1rem; }
}