/* ============================================
   TRACKCARE PHYSIO — PROTOCOLE COMEBACK
   Thème: clair, vert/rouge brand, typo ultra bold
   ============================================ */

/* ── RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Colors */
  --bg:           #ffffff;
  --bg-alt:       #f5f7f4;
  --surface:      #eeefec;
  --surface-dark: #0d1a0e;
  --green:        #2a6b2a;
  --green-dim:    #1e5220;
  --green-light:  #90f49b;
  --green-pale:   #e8f5e8;
  --red:          #8b2525;
  --red-pale:     #fdf2f2;
  --text:         #0d0d0d;
  --text-muted:   #666;
  --text-soft:    #999;
  --border:       #e2e4e0;
  --border-dark:  #c8cac4;

  /* Layout */
  --radius:    20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --nav-h:     85px;
  --transition: 0.22s ease;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--green); text-decoration: none; }
strong { font-weight: 700; }
em { font-style: italic; }

/* ── CONTAINER ── */
.container {
  width: min(1100px, 100% - 2rem);
  margin-inline: auto;
}

/* ── SECTION SHELL ── */
.section {
  padding-block: 64px;
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.section__label--red   { color: var(--red); }
.section__label--light { color: var(--green-light); }

.problem .section__label {
  font-size: 1rem;
  letter-spacing: 0.18em;
  font-weight: 900;
  color: #ff6b6b;
  margin-bottom: 12px;
  background: rgba(139,37,37,0.22);
  border: 1px solid rgba(255,107,107,0.4);
  border-radius: 99px;
  padding: 8px 20px;
  display: inline-block;
  text-align: center;
  align-self: center;
}

.section__title {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section__title .accent-green { color: var(--green); }

.solution__title {
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 16px;
}

.section__intro {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 620px;
  margin-bottom: 56px;
  line-height: 1.8;
}

/* ── SCROLL ANIMATIONS ── */
.animate-up {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.animate-up.is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

/* Dark (near-black) — main CTA */
.btn--dark {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}
.btn--dark:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

/* Green */
.btn--green {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn--green:hover {
  background: var(--green-dim);
  border-color: var(--green-dim);
  transform: translateY(-2px);
}

/* Ghost */
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-dark);
}
.btn--ghost:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

/* Outline (white border on dark bg) */
.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-dark);
}
.btn--outline:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

/* Nav CTA */
.btn--nav {
  padding: 10px 20px;
  font-size: 0.84rem;
}

/* Sizes */
.btn--lg { padding: 18px 36px; font-size: 1rem; }
.btn--xl { padding: 20px 44px; font-size: 1.05rem; }
.btn--sm { padding: 10px 20px; font-size: 0.84rem; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.nav.is-scrolled {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: var(--border);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1100px, 100% - 2rem);
  margin-inline: auto;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.nav__logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

/* When logo PNG is available: */
.nav__logo-img {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

.nav__logo-text {
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--text);
}

.btn--nav {
  padding: 18px 33px;
  font-size: 1.15rem;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--bg);
  padding-top: calc(var(--nav-h) + 16px);
  padding-bottom: 32px;
}

.hero__container {
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: center;
  gap: 56px;
}

.hero__badge {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 99px;
  border: 1.5px solid var(--green);
  margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--text);
}

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

.hero__sub {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  color: var(--text-soft);
  margin-bottom: 24px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__proof-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__proof-item strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
}

.hero__proof-item span {
  font-size: 0.75rem;
  color: var(--text-soft);
}

.hero__proof-sep {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Hero visual (photo column) ── */
.hero__visual {
  display: flex;
  justify-content: center;
}

.hero__photo-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.hero__photo-bg {
  position: absolute;
  inset: -24px -24px -24px -8px;
  background: var(--green-pale);
  border-radius: 60% 40% 50% 50% / 50% 50% 60% 40%;
  z-index: 0;
}

.hero__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center center;
  border-radius: 24px;
  display: block;
}

/* Floating chips */
.hero__chip {
  position: absolute;
  z-index: 2;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__chip--top {
  top: 28px;
  left: -44px;
}

.hero__chip--bottom {
  bottom: 36px;
  right: -24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.hero__chip-icon { font-size: 1.4rem; flex-shrink: 0; }

.hero__chip-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__chip-text strong {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text);
  display: block;
}

.hero__chip-text span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.hero__chip-stars {
  font-size: 0.85rem;
  color: #f59e0b;
  letter-spacing: 2px;
}

.hero__chip-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* ============================================
   PROBLEM — CYCLE INFERNAL (nouvelle version)
   ============================================ */
.problem {
  background: var(--surface-dark);
  color: #fff;
}

.problem__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: calc(100vh - var(--nav-h));
}

.problem__left {
  padding: 36px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  overflow: hidden;
}

.problem__title {
  font-size: clamp(1.3rem, 1.9vw, 2rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  text-align: center;
}

/* ── Timeline cycle ── */
.problem__timeline {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.problem__tl-step {
  display: flex;
  gap: 14px;
}

.problem__tl-gutter {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.problem__tl-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

.problem__tl-badge--alert {
  border-color: rgba(255,107,107,0.5);
  color: #ff8080;
}

.problem__tl-badge--strava {
  border-color: rgba(252,76,2,0.65);
  color: #fc4c02;
}

.problem__tl-line {
  flex: 1;
  width: 1px;
  background: rgba(255,255,255,0.12);
  margin: 5px 0;
  min-height: 12px;
}

.problem__tl-line--fade {
  background: linear-gradient(to bottom, rgba(255,255,255,0.12) 0%, transparent 100%);
}

.problem__tl-body {
  padding-bottom: 16px;
}

.problem__tl-body strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 3px;
  padding-top: 6px;
}

.problem__tl-body p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.problem__tl-loop {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  background: rgba(139,37,37,0.25);
  border: 1px solid rgba(139,37,37,0.5);
  border-radius: var(--radius);
  padding: 10px 14px;
  margin-top: 4px;
}

.problem__tl-loop-icon {
  font-size: 1.4rem;
  color: #ff6b6b;
  flex-shrink: 0;
  line-height: 1.2;
}

.problem__tl-loop strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}

.problem__tl-loop p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

.problem__restart-label {
  font-size: 0.88rem;
  font-weight: 900;
  color: #ff6b6b;
  margin-top: 4px;
}

.problem__right {
  position: relative;
  overflow: hidden;
}
.problem__right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--surface-dark) 0%, transparent 45%);
  z-index: 1;
  pointer-events: none;
}

.problem__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* anciens styles conservés pour compatibilité */
.cycle__restart {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--red);
  margin-top: 10px;
}

.cycle__highlight {
  background: #fef08a;
  color: var(--text);
  padding: 1px 4px;
  border-radius: 4px;
  font-style: normal;
}

.cycle__item--strava {
  border-color: #fc4c02;
  background: #fff5f0;
}

.cycle__strava-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fc4c02;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 7px 16px;
  border-radius: 99px;
  margin-top: 10px;
}

.cycle__strava {
  color: #fc4c02;
  font-weight: 800;
}

.cycle__num {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text-soft);
  flex-shrink: 0;
  line-height: 1;
  padding-top: 3px;
}

.cycle__num--accent { color: var(--red); font-size: 1.8rem; }

.cycle__item strong {
  display: block;
  font-size: 0.98rem;
  margin-bottom: 6px;
  color: var(--text);
}

.cycle__item p {
  font-size: 0.87rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.cycle__arrow {
  font-size: 1.4rem;
  color: var(--red);
  align-self: center;
  flex-shrink: 0;
  opacity: 0.6;
}

.cycle__arrow--down {
  flex-basis: 100%;
  text-align: center;
  font-size: 2rem;
}

/* Tried grid */
.tried { margin-bottom: 56px; }

.tried__label {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-style: italic;
}

.tried__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.tried__item {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  background: var(--bg);
  border: 1px solid var(--border);
}

.tried__item span {
  color: var(--red);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Section "Ce que tu as déjà essayé" */
.tried-section {
  background: #fff4ed;
  padding-block: 64px;
}

.section__label--orange {
  color: #c2410c;
  background: #ffedd5;
  border: 1px solid #fed7aa;
}

.tried-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
  margin-top: 24px;
}

.tried-grid-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Carte hero chaussures */
.tried__card--hero {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 2px solid #ea580c;
  border-radius: var(--radius);
  padding: 18px 20px;
}

.tried__card-cross {
  font-size: 1.4rem;
  color: #ea580c;
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
}

.tried__card-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ea580c;
  margin-bottom: 4px;
}

.tried__card-title {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 4px;
}

.tried__card-sub {
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.4;
}

.tried__item--highlight {
  background: #fff;
  border-color: #fb923c;
  font-weight: 600;
  color: var(--text);
}

/* Photo + citation colonne droite */
.tried-photo-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tried__photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  flex-shrink: 0;
}

/* Insight blockquote */
.insight {
  border-left: 3px solid var(--green);
  padding: 24px 28px;
  background: var(--bg);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1rem;
  font-style: italic;
  color: var(--text-soft);
  line-height: 1.8;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.insight--orange {
  border-left-color: #ea580c;
  background: #fff;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 500;
  box-shadow: 0 4px 24px rgba(234,88,12,0.10);
}

.insight--orange cite {
  color: #ea580c;
}

.insight cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ============================================
   SOLUTION — BENTO GRID
   ============================================ */
.solution {
  background: var(--bg);
}

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

.bento__card {
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bento__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.09);
}

.bento__card--wide {
  grid-column: span 2;
}

.bento__card--dark {
  background: var(--surface-dark);
  color: #fff;
}

.bento__card--light {
  background: var(--bg-alt);
  border: 1px solid var(--border);
}

.bento__card--green-pale {
  background: #c8e6c9;
  border: 1px solid rgba(42,107,42,0.3);
}

.bento__card--orange {
  background: #fde8d8;
  color: #0d0d0d;
}

.bento__card--orange h4 {
  color: #0d0d0d;
  text-align: center;
}

.bento__card--orange p {
  color: #0d0d0d;
  text-align: center;
}

.bento__card--orange .bento__highlight-light {
  color: #b83a0a;
  font-weight: 800;
}

.bento__highlight {
  color: var(--green);
}

.bento__highlight-light {
  color: #fff;
  font-weight: 800;
}

.bento__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 4px;
}

.bento__card--dark h3 {
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.3;
  color: #fff;
}

.bento__card--dark p {
  font-size: 0.88rem;
  color: #fff !important;
  line-height: 1.65;
  flex: 1;
}

.bento__card--dark .btn {
  align-self: center;
  padding: 10px 22px;
  font-size: 0.88rem;
}

.bento__card--dark em { color: var(--green-light); font-style: italic; }

.bento__icon {
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 4px;
  text-align: center;
}

.bento__card h4 {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--text);
  text-align: center;
}

.bento__card p {
  font-size: 0.86rem;
  color: var(--text);
  line-height: 1.7;
  text-align: center;
}

/* ============================================
   RESULTS — DARK SECTION
   ============================================ */
.results {
  background: var(--surface-dark);
  color: #fff;
}

.results .section__title {
  color: #fff;
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px 24px;
  margin-top: 16px;
}

.result__card {
  padding: 32px 24px;
  text-align: center;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.25s ease;
}

.result__card:hover {
  background: rgba(255,255,255,0.07);
}

.result__highlight {
  color: var(--green-light);
  font-weight: 800;
}

.result__highlight--lg {
  font-size: 1.05rem;
}

.result__num {
  display: block;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.result__unit {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}

.result__card p {
  font-size: 0.87rem;
  color: #fff;
  line-height: 1.7;
}

/* ============================================
   TÉMOIGNAGES ÉCRITS — CAROUSEL
   ============================================ */
.testimonials {
  background: var(--bg);
}

.testi__wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  margin-bottom: 24px;
}

.testi__viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
  padding-top: 6px;
  margin-top: -6px;
  padding-right: 4px;
  margin-right: -4px;
}

.testi__track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testi__card {
  flex: 0 0 calc((100% - 40px) / 3);
  padding: 32px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.22s ease, transform 0.22s ease;
}

.testi__card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
}

.testi__stars {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 3px;
}

.testi__card blockquote {
  font-style: italic;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.8;
  flex: 1;
}

.testi__card cite {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
}

.testi__nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.8rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.22s ease;
  padding: 0;
}

.testi__nav:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.testi__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.testi__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border-dark);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.testi__dot--active {
  background: var(--green);
  transform: scale(1.4);
}

/* ============================================
   TÉMOIGNAGES VIDÉO
   ============================================ */
.vid-testi {
  background: var(--bg-alt);
}

.vid-testi__layout {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 64px;
  margin-top: 56px;
}

.vid-testi__media {
  flex-shrink: 0;
}

.vid-testi__player-wrap {
  position: relative;
  aspect-ratio: 9 / 16;
  max-height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
}

.vid-testi__video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.vid-testi__nav-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.vid-testi__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border-dark);
  background: var(--bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all 0.22s ease;
  flex-shrink: 0;
}

.vid-testi__btn:hover {
  border-color: var(--green);
  color: var(--green);
}

.vid-testi__btn--filled {
  background: var(--surface-dark);
  border-color: var(--surface-dark);
  color: #fff;
}

.vid-testi__btn--filled:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.vid-testi__counter {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-left: 4px;
}

/* Info panel (right side) */
.vid-testi__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 420px;
}

.vid-testi__stars {
  font-size: 1rem;
  color: #f59e0b;
  letter-spacing: 3px;
}

.vid-testi__name {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}

.vid-testi__tag {
  font-size: 0.82rem;
  color: var(--green);
  font-weight: 600;
}

.vid-testi__quote {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-soft);
  border-left: 3px solid var(--green);
  padding-left: 20px;
  margin-top: 8px;
}

/* ============================================
   PROCESS — STEPS
   ============================================ */
.process {
  background: var(--bg);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 16px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green) 0%, var(--border) 100%);
  opacity: 0.3;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 28px 0;
  position: relative;
}

.step + .step { border-top: 1px solid var(--border); }

.step__num {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 900;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

.step--highlighted .step__num {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  font-size: 0.95rem;
}

.step--result .step__num {
  font-size: 1.5rem;
  background: var(--green-pale);
  border-color: var(--green);
}

.step__content { padding-top: 14px; flex: 1; }

.step__content h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}

.step--result .step__content h3 {
  font-size: 1.1rem;
  color: var(--green);
}

.step__content p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 12px;
}

.step__tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 700;
}

.step__tag--free {
  background: var(--green-pale);
  color: var(--green);
  border: 1px solid rgba(42,107,42,0.2);
}

.step__tag--paid {
  background: #fef3e2;
  color: #92400e;
  border: 1px solid rgba(146,64,14,0.2);
}

.step__tag--included {
  background: var(--bg-alt);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  background: var(--bg-alt);
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 16px;
}

.pricing__card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px;
  position: relative;
  transition: box-shadow 0.25s ease;
}

.pricing__card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
}

.pricing__card--featured {
  border-color: var(--green);
  background: var(--surface-dark);
  color: #fff;
  box-shadow: 0 0 0 1px var(--green), 0 8px 40px rgba(42,107,42,0.15);
}

.pricing__badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  padding: 4px 22px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing__header { margin-bottom: 16px; }

.pricing__header h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.pricing__card--featured .pricing__header h3 { color: #fff; }

.pricing__price {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.pricing__card--featured .pricing__price { color: #fff; }

.pricing__price span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.pricing__card--featured .pricing__price span { color: rgba(255,255,255,0.5); }

.pricing__header > p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pricing__card--featured .pricing__header > p { color: rgba(255,255,255,0.45); }

.pricing__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.pricing__features li {
  font-size: 0.88rem;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing__card--featured .pricing__features li { color: rgba(255,255,255,0.65); }

.pricing__card .btn { width: 100%; justify-content: center; }
.pricing__card--featured .btn--dark {
  background: #fff;
  color: var(--surface-dark);
  border-color: #fff;
}
.pricing__card--featured .btn--dark:hover {
  background: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.9);
}

.pricing__saving {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--green-light);
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 20px;
}

.pricing__saving-amount {
  font-size: 2rem;
  font-weight: 900;
  color: var(--green);
  white-space: nowrap;
  line-height: 1;
}

.pricing__saving-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--surface-dark);
  line-height: 1.4;
}

.pricing__note {
  margin-top: 16px;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  font-style: italic;
  line-height: 1.6;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  background: var(--bg);
}

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

.about__photo-wrap {
  position: relative;
  max-width: 420px;
  overflow: hidden;
  border-radius: 24px;
}

.about__photo-bg {
  position: absolute;
  inset: -20px -8px -20px -24px;
  background: var(--green-pale);
  border-radius: 50% 40% 40% 50% / 40% 50% 60% 50%;
  z-index: 0;
}

.about__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 5;
  object-fit: cover;
  object-position: center 8%;
  border-radius: 24px;
  display: block;
}

.about__text .section__title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }

.about__callout {
  border-left: 4px solid var(--green);
  background: var(--green-pale);
  border-radius: 0 14px 14px 0;
  padding: 18px 22px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--surface-dark);
  line-height: 1.5;
}

.about__text p {
  color: var(--text-soft);
  margin-bottom: 18px;
  font-size: 0.96rem;
  line-height: 1.85;
}

.about__text strong { color: var(--text); }

.about__stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.about__stat span {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}

.about__stat p {
  font-size: 0.75rem;
  color: var(--text-muted) !important;
  margin: 0 !important;
  line-height: 1.4;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--bg-alt);
}

.faq {
  padding-block: 48px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 760px;
  margin-top: 8px;
}

.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg);
  transition: border-color 0.22s ease;
}

.faq__item[open] { border-color: var(--green); }

.faq__item summary {
  padding: 13px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.93rem;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--green);
  flex-shrink: 0;
  transition: transform 0.22s ease;
}

.faq__item[open] summary::after { transform: rotate(45deg); }

.faq__item p {
  padding: 0 24px 20px;
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.8;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  background: var(--bg);
}

.cta-final__card {
  background: var(--green-pale);
  border-radius: 32px;
  padding: 80px 64px;
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
  border: 1px solid rgba(42,107,42,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-final__card h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--text);
}

.cta-final__card > p {
  font-size: 1rem;
  color: var(--text-soft);
  margin-bottom: 20px;
  line-height: 1.8;
  max-width: 580px;
  margin-inline: auto;
}

.cta-final__card > p + p { margin-bottom: 36px; }

.cta-final__sub strong { color: var(--text); }

.cta-final__highlight {
  font-size: 1.05rem;
  color: var(--green) !important;
  font-weight: 900;
}

.cta-final__card .btn {
  margin-inline: auto;
}

.cta-final__note {
  margin-top: 20px;
  font-size: 0.76rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.9;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-block: 64px 32px;
}

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

.footer__brand .footer__logo {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 12px;
}

.footer__brand .footer__logo em {
  font-style: normal;
  font-weight: 500;
  color: var(--text-muted);
}

.footer__brand > p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer__ig {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green);
}

.footer__col h4 {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer__col a {
  display: block;
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.footer__col a:hover { color: var(--green); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.footer__bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.6;
  text-align: center;
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 900px) {
  /* === HERO mobile : title au-dessus de l'image === */
  .hero {
    min-height: 100svh;
    padding-top: calc(var(--nav-h) + 8px);
    padding-bottom: 24px;
  }
  .hero__container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "badge"
      "title"
      "visual"
      "sub"
      "actions"
      "proof";
    text-align: center;
    gap: 0;
    row-gap: 14px;
  }

  .hero__content { display: contents; }
  .hero__badge   { grid-area: badge; justify-self: center; margin-bottom: 0; padding: 6px 16px; font-size: 0.78rem; }
  .hero__title   { grid-area: title; margin-bottom: 0; }
  .hero__visual  { grid-area: visual; }
  .hero__sub     { grid-area: sub; margin-bottom: 0; font-size: 0.92rem; line-height: 1.6; }
  .hero__actions { grid-area: actions; margin-bottom: 0; justify-content: center; }
  .hero__proof   { grid-area: proof; justify-content: center; }

  .hero__title {
    font-size: clamp(1.6rem, 6.4vw, 2.3rem);
    line-height: 1.12;
  }

  .hero__visual {
    padding-block: 18px;
    overflow: visible;
  }
  .hero__photo-wrap {
    max-width: 240px;
    margin-inline: auto;
  }
  .hero__photo-bg {
    inset: -10px -10px -10px -10px;
  }

  .hero__chip { padding: 8px 12px; }
  .hero__chip--top { left: -40px; top: 100px; }
  .hero__chip--bottom { right: -20px; bottom: 22px; }
  .hero__chip-text strong { font-size: 0.74rem; }
  .hero__chip-text span { font-size: 0.66rem; }
  .hero__chip-icon { font-size: 1.1rem; }

  .hero__proof { gap: 14px; }
  .hero__proof-item strong { font-size: 0.95rem; }
  .hero__proof-item span { font-size: 0.7rem; }
  .hero__proof-sep { height: 26px; }

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

  .bento__card--wide {
    grid-column: span 2;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__visual { max-width: 320px; margin-inline: auto; }

  .vid-testi__layout {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .vid-testi__info { max-width: 100%; }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer__brand { grid-column: span 2; }
  .tried-layout { grid-template-columns: 1fr; gap: 32px; }

  /* === PROBLEM SECTION — mobile fix === */
  .problem__inner {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }
  .problem__left {
    padding: 64px 24px 48px;
    gap: 22px;
  }
  .problem__title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 4px;
  }
  .problem__right {
    height: 320px;
    width: 100%;
  }
  .problem__right::before {
    background: linear-gradient(to bottom, var(--surface-dark) 0%, transparent 35%);
  }
  .problem__photo {
    object-position: center 25%;
  }
  .problem__tl-body strong { font-size: 1rem; }
  .problem__tl-body p { font-size: 0.88rem; }

  /* === NAV mobile (logo + button) === */
  .nav { height: 70px; }
  :root { --nav-h: 70px; }
  .nav__logo-img { width: 46px; height: 46px; }
  .nav__logo-text { font-size: 0.95rem; letter-spacing: 0.02em; }
  .btn--nav { padding: 10px 18px; font-size: 0.82rem; }
}

@media (max-width: 640px) {
  .section { padding-block: 72px; }

  .hero__title { font-size: clamp(1.5rem, 6.2vw, 2.1rem); }
  .hero__photo-wrap { max-width: 220px; }

  .bento { grid-template-columns: 1fr; }
  .bento__card--wide { grid-column: span 1; }

  .cycle { flex-direction: column; gap: 8px; }
  .cycle__arrow { display: none; }
  .cycle__arrow--down { display: block; text-align: left; padding-left: 16px; }

  .testi__card { flex: 0 0 100%; }
  .testi__nav { width: 36px; height: 36px; font-size: 1.4rem; }

  .results__grid { grid-template-columns: 1fr; gap: 12px; }
  .result__num { font-size: 3rem; }

  .cta-final__card { padding: 56px 24px; border-radius: 24px; }
  .cta-final__card h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .cta-final__card .btn {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }

  /* === Pricing — recommandé en premier sur mobile === */
  .pricing__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .pricing__card--featured { order: -1; }

  .steps::before { left: 25px; }
  .step__num { width: 52px; height: 52px; font-size: 0.75rem; }

  /* === NAV mobile : masquer le texte du logo === */
  .nav__logo-text { display: none; }
  .nav__logo-img { width: 42px; height: 42px; }
  .btn--nav { padding: 9px 14px; font-size: 0.75rem; }

  /* === FOOTER mobile : centré et aéré === */
  .footer { padding-block: 56px 28px; }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    margin-bottom: 36px;
  }
  .footer__brand { grid-column: span 1; }
  .footer__brand .footer__logo { font-size: 1.05rem; }
  .footer__brand > p { font-size: 0.86rem; max-width: 320px; margin-inline: auto; }
  .footer__ig {
    display: inline-block;
    margin-top: 4px;
    padding: 8px 18px;
    border: 1.5px solid var(--green);
    border-radius: 99px;
  }
  .footer__col h4 {
    font-size: 0.78rem;
    margin-bottom: 12px;
  }
  .footer__col a {
    font-size: 0.92rem;
    margin-bottom: 8px;
  }
  .footer__bottom { padding-top: 20px; }
  .footer__bottom p {
    font-size: 0.72rem;
    line-height: 1.6;
    padding-inline: 16px;
  }
}

@media (max-width: 480px) {
  .hero { padding-bottom: 24px; }
  .hero__title { font-size: clamp(1.4rem, 6vw, 1.85rem); }
  .hero__photo-wrap { max-width: 200px; }
  .nav__logo-mark { width: 30px; height: 30px; font-size: 0.68rem; }
  .btn--lg { padding: 16px 28px; font-size: 0.95rem; }
  .btn--xl { padding: 18px 28px; font-size: 0.95rem; }
  .about__stats { gap: 20px; }
  .btn--nav {
    padding: 8px 12px;
    font-size: 0.7rem;
    gap: 4px;
  }
  .nav__logo-img { width: 38px; height: 38px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }

  .problem__left { padding: 48px 18px 40px; }
  .problem__title { font-size: 1.45rem; }
  .problem__tl-badge { width: 38px; height: 38px; font-size: 0.78rem; }

  .cta-final__card { padding: 48px 20px; }
  .cta-final__card .btn { padding: 16px 22px; font-size: 0.9rem; }
}
