/* ============================================================
   COACH & ME — MAIN STYLESHEET
   ============================================================ */

/* --- Custom Properties --- */
:root {
  /* New brand palette */
  --primary:      #F5C542;
  --primary-dark: #e6b530;
  --bg-cream:     #f2faf5;
  --bg-white:     #FFFFFF;
  --bg-cream-deep:#dff0e4;
  --bg-warm:      #f2faf5;
  --bg-deep:      #1a2e22;
  --text-primary: #1A1A1A;
  --text-muted:   #5a6b60;
  --accent:       #F5C542;
  --accent-pink:  #a5c4f7;
  --accent-green: #7BC8A4;
  --accent-yellow:#F5C542;
  --white:        #FFFFFF;

  /* Compat vars */
  --ivory:        #f2faf5;
  --terracotta:   #F5C542;
  --sage:         #7BC8A4;
  --charcoal:     #1A1A1A;
  --taupe:        #5a6b60;
  --rose-beige:   #dff0e4;
  --sage-light:   #a5c4f7;
  --dark-brown:   #1a2e22;

  /* Nunito across the board */
  --font-display: 'Nunito', system-ui, sans-serif;
  --font-body:    'Nunito', system-ui, sans-serif;
  --font-serif:   'Nunito', system-ui, sans-serif;
  --font-dm:      'Nunito', system-ui, sans-serif;
  --font-body-old:'Nunito', system-ui, sans-serif;
  --font-ui:      'Nunito', system-ui, sans-serif;

  --radius-card:  18px;
  --radius-btn:   40px;
  --shadow-card:  0 4px 28px rgba(26, 26, 26, 0.07);
  --shadow-card-hover: 0 12px 44px rgba(26, 26, 26, 0.14);
  --transition:   0.25s ease-out;
  --max-width:    1200px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-warm);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}

img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-display); }

/* ── Type scale ──────────────────────────────────────────────
   h1 hero      : clamp(2.6rem, 4.5vw, 3.8rem)   weight 900
   h2 section   : clamp(1.75rem, 2.8vw, 2.25rem) weight 800
   h3 card/panel: clamp(1.1rem, 1.7vw, 1.4rem)   weight 800
   intro/sub    : 1.05rem                          weight 500
   body         : 1rem                             weight 500
──────────────────────────────────────────────────────────── */

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.8vw, 2.25rem);
  font-weight: 800;
  color: var(--text-primary);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.section-title--left { text-align: left; }

.section-intro {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--taupe);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
  line-height: 1.75;
  font-weight: 500;
}
.section-intro--left {
  text-align: left;
  margin-left: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  border-radius: var(--radius-btn);
  padding: 14px 32px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--primary);
  color: #1A1A1A;
  border-color: var(--primary);
  font-weight: 700;
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(245, 197, 66, 0.4);
}

.btn--secondary {
  background: transparent;
  color: var(--terracotta);
  border-color: var(--terracotta);
}
.btn--secondary:hover {
  background: var(--terracotta);
  color: var(--white);
  transform: translateY(-2px);
}

/* --- Wave Separators --- */
.wave { line-height: 0; pointer-events: none; }
.wave svg { display: block; width: 100%; height: 80px; }
.wave--bottom { margin-top: -1px; }
.wave--top    { margin-bottom: -1px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #dff0e4;
  box-shadow: none;
  transition: box-shadow 0.3s ease;
}
.nav.scrolled {
  box-shadow: none;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 6px 0;
  transition: padding 0.3s ease;
}
.nav.scrolled .nav__inner { padding: 5px 0; }

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.logo__wordmark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: 0.01em;
}
.logo__n {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.logo__img {
  height: 42px;
  width: auto;
  display: block;
}

/* Light logo (footer) */
.logo--light .logo__wordmark { color: var(--bg-warm); }
.logo--light .logo__n line,
.logo--light .logo__n path { stroke: #A89AF3; }

/* Nav links */
.nav__links {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
  list-style: none;
}
.nav__links a {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--primary);
  transition: width 0.25s ease;
}
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  margin-left: auto;
  padding: 10px 24px;
  font-size: 0.875rem;
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: #dff0e4;
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}

/* Brand watermark "N" */
.hero__watermark {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(400px, 55vw, 700px);
  color: var(--primary);
  opacity: 0.04;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  line-height: 0.85;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  align-items: center;
  padding-bottom: 0.9rem;
}

.hero__content {
  text-align: left;
  position: relative;
  z-index: 1;
}

.hero__content--centered {
  text-align: center;
  max-width: 780px;
  position: relative;
  z-index: 1;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 0.9rem;
  letter-spacing: -0.02em;
}

.hero__title em {
  font-style: italic;
  color: var(--primary);
}

/* "rênes" wrapper with SVG underline */
.renes-wrap {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.renes-line {
  position: absolute;
  bottom: -0.18em;
  left: -2%;
  width: 104%;
  height: 0.22em;
  overflow: visible;
  pointer-events: none;
}
.renes-line path { stroke: #F5D547; }

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 1.14rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  max-width: 504px;
}

.hero__cta {
  font-size: 0.95rem;
  padding: 15px 36px;
}

/* Hero CTA button — yellow */
.btn--hero {
  background: #F5C542;
  color: #1A1A1A;
  border-color: #F5C542;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 13px 34px;
}
.btn--hero:hover, .btn--hero:focus-visible {
  background: #e6b530;
  border-color: #e6b530;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(245, 197, 66, 0.45);
}

/* Hero illustration column */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__illustration {
  max-width: 680px;
  max-height: 370px;
  width: 100%;
  height: auto;
  object-fit: contain;
}


/* ============================================================
   FOCUS CARDS  (editorial redesign)
   ============================================================ */
.focus {
  background: var(--bg-white);
  padding: 20px 0 0;
  position: relative;
  text-align: center;
}

.focus .section-title {
  font-size: clamp(1.75rem, 2.8vw, 2.25rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Remove N-prefix glyph from all section titles */
.section-title::before {
  content: none;
}

.focus__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0 0 0.5rem;
}

/* Card base */
.focus-card {
  border-radius: var(--radius-card);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.focus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}

/* Card color variants — background is white; color on illustration area */
.focus-card--career,
.focus-card--personal,
.focus-card--both { background: #FFFFFF; }

.focus-card--career  .card__illustration { background: #F5C542; }
.focus-card--personal .card__illustration { background: #7BC8A4; }
.focus-card--both    .card__illustration { background: #a5c4f7; }

/* Illustration area — relative so title can overlay */
.card__illustration {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-card);
  flex-shrink: 0;
}

.card__img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  display: block;
}

/* Card title — overlaid at bottom of the image, readable */
.card__title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.2;
  margin: 0;
  padding: 0.65rem 1rem 0.8rem;
  text-align: center;
  letter-spacing: -0.01em;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .focus-card { transition: none; }
}

/* Weight scale */
.hero__title         { font-weight: 900; }
.section-title       { font-weight: 800; }
.card__title         { font-weight: 800; }
.benefit-panel__title{ font-weight: 800; }
.step__title         { font-weight: 800; }
.pillar__text strong { font-weight: 700; }
body                 { font-weight: 500; }

/* Testimonial card */
.testimonial-card {
  background: var(--bg-cream);
  border: 1px solid rgba(245, 229, 192, 0.9);
  border-radius: var(--radius-card);
  padding: 1.1rem 1.75rem 1.25rem;
  max-width: 640px;
  margin: 0 auto 0;
  position: relative;
  box-shadow: 0 4px 20px rgba(108, 92, 231, 0.06);
  transform: rotate(-0.5deg);
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 0.5;
  margin-bottom: 0.5rem;
  opacity: 0.6;
}

.testimonial-card__text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 0.6rem;
}

.testimonial-card__author {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--taupe);
}

/* ============================================================
   COACHING
   ============================================================ */
.coaching {
  background: var(--bg-white);
  padding: 20px 0 40px;
  position: relative;
}

.coaching__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-bottom: 3rem;
}

.coaching .section-title {
  font-size: clamp(1.75rem, 2.8vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.coaching .section-intro {
  font-size: 1.05rem;
}

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

.coaching__img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
}

.tabs {
  margin-top: 1rem;
}

.tabs__nav {
  display: flex;
  gap: 0;
  background: rgba(251, 243, 224, 0.7);
  border-radius: 50px;
  padding: 6px;
  width: fit-content;
  margin: 0 auto 3rem;
  position: relative;
}

.tab-btn {
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--taupe);
  background: transparent;
  border: none;
  border-radius: 40px;
  padding: 10px 28px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.tab-btn--active { color: var(--white); }
.tab-btn:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 2px; }

.tabs__indicator {
  position: absolute;
  top: 6px;
  left: 6px;
  height: calc(100% - 12px);
  border-radius: 40px;
  background: var(--terracotta);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

/* Tab panels */
.tabs__content { position: relative; }

.tab-panel {
  display: none;
  opacity: 0;
  transform: translateX(15px);
}
.tab-panel--active {
  display: block;
  animation: tabFadeIn 0.35s ease-out forwards;
}
.tab-panel--exit {
  animation: tabFadeOut 0.2s ease-in forwards;
}

@keyframes tabFadeIn {
  from { opacity: 0; transform: translateX(15px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes tabFadeOut {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-15px); }
}

.tab-panel__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--white);
  border-radius: 24px;
  padding: 3rem 3.5rem;
  box-shadow: var(--shadow-card);
}

.tab-panel__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.65rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.tab-panel__subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--taupe);
  margin-bottom: 1.75rem;
}

/* Checklist */
.checklist { margin-bottom: 1.75rem; }

.checklist__item {
  display: flex;
  gap: 0.85rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--rose-beige);
  align-items: flex-start;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.checklist__item.visible {
  opacity: 1;
  transform: translateY(0);
}
.checklist__item::before {
  content: '✓';
  color: var(--terracotta);
  font-weight: 700;
  font-family: var(--font-ui);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.95rem;
}
.checklist__item:last-child { border-bottom: none; }

.tab-panel__quote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--taupe);
  border-left: 3px solid var(--terracotta);
  padding-left: 1rem;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}
.tab-panel__quote cite {
  font-style: normal;
  font-weight: 500;
}

.tab-panel__visual svg {
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 0 auto;
}

/* ============================================================
   COACHING TABS SECTION  (Clarté / Action / Évolution)
   ============================================================ */
.coaching-tabs {
  background: var(--bg-white);
  padding: 0 0 0;
  position: relative;
}

/* ── Outer wrapper — unified card ── */
.benefit-tabs {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(26, 46, 34, 0.10);
}

/* ── Tab nav — full-width, flat ── */
.benefit-tabs__nav {
  display: flex;
  width: 100%;
  padding: 0;
  margin: 0;
  background: #fff;
}

.benefit-tab-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: #fff;
  border: none;
  border-bottom: 3px solid rgba(0,0,0,0.06);
  padding: 18px 16px;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease;
  white-space: nowrap;
  position: relative;
}
.benefit-tab-btn svg { flex-shrink: 0; }

/* Inactive hover */
.benefit-tab-btn:not(.benefit-tab-btn--active):hover {
  background: #f5f5f5;
  color: var(--charcoal);
}

/* Active state — per-tab colour */
.benefit-tab-btn--active {
  color: var(--charcoal);
  border-bottom-color: transparent;
}
.benefit-tab-btn[data-btab="clarte"].benefit-tab-btn--active   { background: #F5C542; }
.benefit-tab-btn[data-btab="action"].benefit-tab-btn--active    { background: #7BC8A4; }
.benefit-tab-btn[data-btab="evolution"].benefit-tab-btn--active { background: #a5c4f7; }

.benefit-tab-btn:focus-visible {
  outline: 2px solid var(--primary-dark);
  outline-offset: -2px;
}

/* ── Panels container ── */
.benefit-tabs__content { margin: 0; }

/* ── Individual panel ── */
.benefit-panel {
  display: none;
  opacity: 0;
}
.benefit-panel--active {
  display: block;
  animation: benefitFadeIn 0.3s ease-out forwards;
}

@keyframes benefitFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Panel background matches active tab colour (set via JS) */
.benefit-panel__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: #fef3c4;   /* default soft yellow (Clarté); JS updates per tab */
  padding: 3rem 3.5rem;
  border-radius: 0;                    /* corners handled by parent overflow:hidden */
  transition: background 0.25s ease;
}

/* ── Visual / placeholder side ── */
.benefit-panel__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-panel__img-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 300px;
  background: rgba(255,255,255,0.5);
  border: 2px dashed rgba(26,46,34,0.20);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-family: var(--font-body);
  text-align: center;
  padding: 1rem;
}

/* Real image — square, transparent PNG sits on panel colour */
.benefit-panel__img {
  width: 100%;
  height: auto;
  max-width: 300px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
}

/* ── Text side ── */
.benefit-panel__content {
  display: flex;
  flex-direction: column;
}

.benefit-panel__title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.benefit-panel__subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
  opacity: 0.75;
  margin-bottom: 1.4rem;
  line-height: 1.7;
}

/* Checklist inside panel — inherit global styles, tweak border colour */
.benefit-panel__content .checklist        { margin-bottom: 1.6rem; }
.benefit-panel__content .checklist__item  { border-bottom-color: rgba(26,46,34,0.12); }

/* CTA */
.benefit-panel__content .btn { align-self: flex-start; }

/* ============================================================
   BENEFITS — clarity / momentum / progress
   ============================================================ */
.benefits {
  background: var(--bg-cream-deep);
  padding: 60px 0 70px;
  position: relative;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  background: var(--bg-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.benefit-card__img-wrap {
  width: 100%;
  background: var(--bg-cream-deep);
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.benefit-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
  padding: 1.1rem 1.25rem 0.5rem;
  line-height: 1.25;
}

.benefit-card__text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0 1.25rem 1.25rem;
  line-height: 1.65;
}

/* ============================================================
   COACHES
   ============================================================ */
.coaches {
  background: var(--bg-cream-deep);
  padding: 80px 0 0;
  position: relative;
  text-align: center;
}

.coaches__title {
  margin-bottom: 2.5rem;
}

/* Staggered bubble row */
.coaches__bubbles {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(0.5rem, 2vw, 1.25rem);
  margin: 0 auto 4rem;
  padding: 0 1rem 20px;
  width: 100%;
  max-width: 700px;
  box-sizing: border-box;
}

.coach-bubble {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  max-width: 120px;
  transition: filter 0.3s ease;
}
.coach-bubble:hover { filter: drop-shadow(0 8px 20px rgba(26,46,34,0.18)); }

/* Blob base — fluid square that fills the flex cell */
.coach-bubble__blob {
  width: 100%;
  aspect-ratio: 1;
  background: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.coach-bubble--1 {
  top: clamp(8px, 2vw, 20px);
  animation: float1 3.5s ease-in-out 0s infinite alternate;
}
.coach-bubble--1 .coach-bubble__blob {
  border-radius: 32% 68% 32% 68% / 32% 32% 68% 68%;
  background: #F5C542;
}

.coach-bubble--2 {
  top: clamp(16px, 4vw, 50px);
  animation: float2 4s ease-in-out 0.6s infinite alternate;
}
.coach-bubble--2 .coach-bubble__blob {
  border-radius: 68% 32% 68% 32% / 68% 68% 32% 32%;
  background: #a5c4f7;
}

.coach-bubble--3 {
  top: 0px;
  animation: float3 3s ease-in-out 1.2s infinite alternate;
}
.coach-bubble--3 .coach-bubble__blob {
  border-radius: 50% 50% 35% 65% / 60% 60% 40% 40%;
  background: #7BC8A4;
}

.coach-bubble--4 {
  top: clamp(12px, 3vw, 40px);
  animation: float4 4.5s ease-in-out 0.3s infinite alternate;
}
.coach-bubble--4 .coach-bubble__blob {
  border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%;
  background: #F5C542;
}

.coach-bubble--5 {
  top: clamp(5px, 1.5vw, 15px);
  animation: float5 3.8s ease-in-out 0.9s infinite alternate;
}
.coach-bubble--5 .coach-bubble__blob {
  border-radius: 40% 60% 65% 35% / 55% 45% 55% 45%;
  background: #a5c4f7;
}

/* Coach avatar photo */
.coach-avatar__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Float animations */
@keyframes float1 {
  from { transform: translateY(0px); }
  to   { transform: translateY(-7px); }
}
@keyframes float2 {
  from { transform: translateY(0px); }
  to   { transform: translateY(-9px); }
}
@keyframes float3 {
  from { transform: translateY(0px); }
  to   { transform: translateY(-6px); }
}
@keyframes float4 {
  from { transform: translateY(0px); }
  to   { transform: translateY(-8px); }
}
@keyframes float5 {
  from { transform: translateY(0px); }
  to   { transform: translateY(-7px); }
}

/* Decorative floating dots */
.float-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--terracotta);
}
.float-dot--1 {
  width: 12px; height: 12px;
  top: 20%; right: 30%;
  background: #E84B8A;
  opacity: 0.4;
  animation: float1 4s ease-in-out 0.5s infinite alternate;
}
.float-dot--2 {
  width: 8px; height: 8px;
  bottom: 25%; left: 12%;
  opacity: 0.25;
  background: var(--sage);
  animation: float3 3.5s ease-in-out 1s infinite alternate;
}
.float-dot--3 {
  width: 16px; height: 16px;
  bottom: 15%; right: 22%;
  background: #F5D547;
  opacity: 0.45;
  animation: float5 4.2s ease-in-out 0.2s infinite alternate;
}

/* Coaches content */
.pillars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 1.75rem 0 2rem;
}

/* 2×2 grid variant used in coaches section */
.pillars--grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 4rem;
  max-width: 760px;
  margin: 0 auto 2.5rem;
  list-style: none;
  padding: 0;
}

.pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.pillar--centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ============================================================
   COACH FEATURE CARDS
   ============================================================ */
.coach-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 0 auto 3rem;
}

.coach-card {
  border-radius: 24px;
  padding: 2.25rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.coach-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26,46,34,0.14);
}

/* Card colours */
.coach-card--yellow { background: #F5C542; }
.coach-card--mint   { background: #7BC8A4; }
.coach-card--blue   { background: #a5c4f7; }
.coach-card--dark   { background: #4aab80; }

/* Icon */
.coach-card__icon {
  width: 130px;
  height: 130px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coach-card__icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Label */
.coach-card__label {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #1A1A1A;
  line-height: 1.2;
  margin-bottom: 0.85rem;
}
.coach-card--dark .coach-card__label { color: #1a2e22; }

/* Body text */
.coach-card__text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(26,26,26,0.8);
  line-height: 1.7;
}
.coach-card--dark .coach-card__text { color: rgba(26,46,34,0.75); }

/* Responsive */
@media (max-width: 900px) {
  .coach-cards { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 560px) {
  .coach-cards { grid-template-columns: 1fr; gap: 0.75rem; }
  .coach-card { padding: 1.5rem 1.25rem; border-radius: 16px; }
  .coach-card__icon { width: 80px; height: 80px; margin-bottom: 1rem; }
}

.pillar__icon {
  width: 80px;
  height: 80px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 auto 0.75rem;
}

.pillar__icon-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
}

.pillar__text strong {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  font-weight: 700;
  color: var(--charcoal);
  display: block;
  margin-bottom: 0.3rem;
}
.pillar__text p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--taupe);
  line-height: 1.7;
}

.coaches__footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  padding-bottom: 3rem;
}

.quality-badge {
  background: var(--ivory);
  border-radius: 12px;
  padding: 10px 16px;
}
.quality-badge__stars {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 2px;
  letter-spacing: 2px;
}
.quality-badge__text {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--taupe);
  font-weight: 500;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  background: var(--bg-white);
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-bottom: 3.5rem;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.step--reverse { direction: rtl; }
.step--reverse > * { direction: ltr; }

.step__number {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  color: var(--terracotta);
  opacity: 0.25;
  line-height: 1;
  flex-shrink: 0;
}

.step__title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.step__desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--taupe);
  line-height: 1.75;
}

.step__mockup {
  background: transparent;
}
.step__mockup svg { width: 100%; height: auto; }
.step__img { width: 100%; height: auto; display: block; object-fit: contain; }

.how-it-works__cta { text-align: center; }

/* ============================================================
   COMPARISON
   ============================================================ */
.comparison {
  background: var(--bg-cream-deep);
  padding: 100px 0 120px;
  position: relative;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 2.5rem;
}

.compare-card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 1.25rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.compare-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.compare-card__icon {
  width: 152px;
  height: 152px;
  border-radius: 0;
  background: transparent !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.compare-card__icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.compare-card__icon--yellow,
.compare-card__icon--mint,
.compare-card__icon--blue { background: transparent !important; }

.compare-card__benefit {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: #1a2e22;
  line-height: 1.35;
  flex: 1;
}

.compare-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.compare-pill {
  flex-shrink: 0;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
}

.compare-pill--them { background: rgba(26,46,34,0.08); color: rgba(26,46,34,0.4); }

.compare-row__text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.4;
  color: rgba(26,46,34,0.4);
}

.comparison__cta { text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #2e5040;
  position: relative;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0 1.5rem;
  flex-wrap: wrap;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer__logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.footer__legal-note {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  max-width: 280px;
  border-left: 1px solid rgba(123,200,164,0.25);
  padding-left: 1.1rem;
}

.footer__nav { display: block; }

.footer__nav-col h4 { display: none; }

.footer__nav-col ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  list-style: none;
}
.footer__nav-col a {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  white-space: nowrap;
}
.footer__nav-col a:hover { color: #7BC8A4; }

.footer__bottom {
  border-top: 1px solid rgba(123,200,164,0.15);
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__bottom p {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

.footer__social {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.footer__social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.65;
  transition: opacity var(--transition), transform var(--transition);
  text-decoration: none;
}
.footer__social-btn:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.footer__social-icon {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}
.reveal--delay-1 { transition-delay: 0.12s; }
.reveal--delay-2 { transition-delay: 0.24s; }
.reveal--delay-3 { transition-delay: 0.36s; }
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero stagger on load */
.hero__content.reveal {
  transition-delay: 0.1s;
}
.hero__visual.reveal {
  transition-delay: 0.28s;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    min-height: unset;
    padding-bottom: 2rem;
  }
  .hero__content { text-align: center; }
  .hero__subtitle { margin: 0 auto 2rem; max-width: 520px; }
  .hero__visual { order: -1; }
  .hero__illustration { max-width: 340px; margin: 0 auto; }

  .focus__cards { grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 0 0 2rem; }
  .focus-card--both { grid-column: auto; max-width: 100%; margin: 0; }

  .tab-panel__inner { grid-template-columns: 1fr; gap: 2rem; }
  .tab-panel__visual { display: none; }

  /* Benefit tabs — stack on tablet */
  .benefit-panel__inner { grid-template-columns: 1fr; gap: 1.5rem; padding: 2.5rem 2rem; }
  .benefit-panel__visual { justify-content: center; }
  .benefit-panel__img { max-width: 220px; margin: 0 auto; }
  .benefit-tab-btn { font-size: 0.8rem; padding: 16px 10px; letter-spacing: 0.04em; }

  .coaches__inner { grid-template-columns: 1fr; }
  .bubbles-container { max-width: 380px; aspect-ratio: 1; margin-bottom: 2rem; }
  .section-title--left { text-align: center; }
  .section-intro--left { text-align: center; margin: 0 auto 1.5rem; }
  .coaches__footer { justify-content: center; }

  .step {
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
  }
  .step--reverse { direction: ltr; }
  .step__mockup { grid-column: 1 / -1; }
  .step__number { font-size: 3rem; }

  .compare-grid { grid-template-columns: repeat(2, 1fr); }

  .footer__inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; padding: 1.75rem 0 1.25rem; }
  .footer__brand { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .footer__legal-note { border-left: none; padding-left: 0; border-top: 1px solid rgba(123,200,164,0.2); padding-top: 0.75rem; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
  .nav__links { display: none; flex-direction: column; gap: 1rem; }
  .nav__links.open {
    display: flex;
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    background: var(--bg-cream);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(108,92,231,0.12);
    box-shadow: 0 8px 24px rgba(44,36,32,0.08);
    z-index: 999;
  }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .hero { padding: 100px 0 0; }
  .hero__title { font-size: 2.4rem; }
  .hero__subtitle { font-size: 1rem; }

  .focus__cards { grid-template-columns: 1fr; gap: 1rem; }
  .focus-card--both { grid-column: auto; max-width: 100%; }

  .section-title { font-size: 1.75rem; }

  .tabs__nav { width: 100%; }
  .tab-btn { padding: 10px 18px; font-size: 0.875rem; }

  .tab-panel__inner { padding: 2rem 1.5rem; }
  .tab-panel__title { font-size: 1.3rem; }

  /* Benefit tabs — mobile */
  .benefit-tab-btn { flex: 1; padding: 14px 8px; font-size: 0.72rem; letter-spacing: 0.04em; gap: 0.3rem; }
  .benefit-tab-btn svg { display: none; }
  .benefit-panel__inner { padding: 1.75rem 1.25rem; gap: 1.25rem; }
  .benefit-panel__img { max-width: 180px; }
  .benefit-panel__title { font-size: 1.2rem; }

  .step { grid-template-columns: 1fr; gap: 1rem; }
  .step__number { font-size: 2.5rem; }

  .compare-grid { grid-template-columns: 1fr; }

  .footer__nav-col ul { gap: 0.3rem 0.9rem; }

  .coaches__bubbles { gap: 0.4rem; padding-bottom: 16px; }
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-hero {
  background: var(--bg-cream-deep);
  padding: 130px 0 60px;
  text-align: center;
}
.legal-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.legal-hero__date {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: var(--taupe);
}
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 1.5rem 100px;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--charcoal);
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--bg-cream-deep);
}
.legal-content h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 1.5rem 0 0.4rem;
}
.legal-content p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--taupe);
  line-height: 1.85;
  margin-bottom: 0.85rem;
}
.legal-content ul, .legal-content ol {
  padding-left: 1.5rem;
  margin-bottom: 0.85rem;
}
.legal-content li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--taupe);
  line-height: 1.8;
  margin-bottom: 0.3rem;
}
.legal-content a { color: #7BC8A4; text-decoration: underline; }
.legal-content strong { color: var(--charcoal); font-weight: 700; }
.legal-placeholder {
  display: inline-block;
  background: #fff8e1;
  border: 1px dashed #F5C542;
  border-radius: 4px;
  padding: 0.1rem 0.45rem;
  font-weight: 700;
  color: #7a5c00;
  font-size: 0.85em;
}

/* ============================================================
   COOKIE BANNER + MODAL
   ============================================================ */

/* Banner */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: #1a2e22;
  border-top: 2px solid rgba(123,200,164,0.2);
  padding: 1.25rem 2rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-banner__text { flex: 1; min-width: 260px; }
.cookie-banner__title {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.2rem;
}
.cookie-banner__desc {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  margin: 0;
}
.cookie-banner__link { color: #7BC8A4; text-decoration: underline; }
.cookie-banner__actions {
  display: flex;
  gap: 0.65rem;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
}

/* Buttons */
.cookie-btn {
  padding: 0.55rem 1.15rem;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.cookie-btn--accept { background: #7BC8A4; color: #1a2e22; border-color: #7BC8A4; }
.cookie-btn--accept:hover { background: #5aad88; border-color: #5aad88; }
.cookie-btn--refuse { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.cookie-btn--refuse:hover { border-color: #fff; }
.cookie-btn--settings { background: transparent; color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.25); }
.cookie-btn--settings:hover { color: #fff; border-color: rgba(255,255,255,0.6); }
/* Dark variant for modal (white background) */
.cookie-btn--dark { color: #1a2e22; border-color: rgba(0,0,0,0.2); }
.cookie-btn--dark:hover { border-color: #1a2e22; }

/* Modal overlay */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.cookie-modal[hidden] { display: none; }
.cookie-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(3px);
}
.cookie-modal__panel {
  position: relative;
  background: #fff;
  border-radius: 20px;
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
}
.cookie-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem 1.1rem;
  border-bottom: 1px solid #eee;
}
.cookie-modal__title {
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a2e22;
  margin: 0;
}
.cookie-modal__close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: #999;
  padding: 0.25rem 0.4rem;
  border-radius: 6px;
  line-height: 1;
  transition: color 0.2s, background 0.2s;
}
.cookie-modal__close:hover { color: #1a2e22; background: #f0f0f0; }
.cookie-modal__body { padding: 0.5rem 1.75rem; }
.cookie-modal__footer {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  padding: 1rem 1.75rem 1.5rem;
  border-top: 1px solid #eee;
  flex-wrap: wrap;
}

/* Cookie categories */
.cookie-category {
  padding: 1.2rem 0;
  border-bottom: 1px solid #f2f2f2;
}
.cookie-category:last-child { border-bottom: none; }
.cookie-category__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
}
.cookie-category__info { flex: 1; }
.cookie-category__name {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a2e22;
  margin: 0 0 0.3rem;
}
.cookie-category__desc {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: #666;
  line-height: 1.55;
  margin: 0;
}
.cookie-always-on {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  color: #7BC8A4;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Toggle switch */
.cookie-toggle {
  flex-shrink: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  margin-top: 0.15rem;
}
.cookie-toggle__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.cookie-toggle__track {
  display: inline-flex;
  align-items: center;
  width: 44px;
  height: 25px;
  background: #ddd;
  border-radius: 25px;
  padding: 3px;
  transition: background 0.25s ease;
  box-sizing: border-box;
}
.cookie-toggle__thumb {
  width: 19px;
  height: 19px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.cookie-toggle__input:checked ~ .cookie-toggle__track { background: #7BC8A4; }
.cookie-toggle__input:checked ~ .cookie-toggle__track .cookie-toggle__thumb { transform: translateX(19px); }
.cookie-toggle:focus-within .cookie-toggle__track { outline: 2px solid #7BC8A4; outline-offset: 2px; }

/* Footer cookie link */
.footer__cookie-link {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  transition: color 0.2s;
}
.footer__cookie-link:hover { color: rgba(255,255,255,0.85); }

@media (max-width: 600px) {
  .cookie-banner { padding: 1rem 1.25rem; }
  .cookie-banner__actions { width: 100%; justify-content: stretch; }
  .cookie-banner__actions .cookie-btn { flex: 1; text-align: center; }
  .cookie-modal__header,
  .cookie-modal__body,
  .cookie-modal__footer { padding-left: 1.25rem; padding-right: 1.25rem; }
}
