/* ============================================================
   main.css — MotoRideDry Child Theme
   Design system, components, layout — complete production CSS
   ============================================================ */

/* ── CSS Custom Properties ───────────────────────────────── */
:root {
  /* Brand colours */
  --clr-accent:        #FF6B00;       /* MotoRideDry orange */
  --clr-accent-hover:  #E55C00;       /* Darker orange for hover */
  --clr-accent-light:  #FF8C3A;       /* Lighter orange */

  /* Background colours — THÈME CLAIR (inversé : fonds blancs) */
  --clr-bg-dark:       #FFFFFF;       /* Primary background (now white) */
  --clr-bg-dark-2:     #F7F7F7;       /* Secondary surface (light grey) */
  --clr-bg-dark-3:     #FFFFFF;       /* Card background (light sections) */
  --clr-bg-light:      #F5F5F5;       /* Light section background */
  --clr-bg-light-2:    #EBEBEB;       /* Card background (light sections) */
  --clr-bg-white:      #FFFFFF;

  /* Text colours — THÈME CLAIR (inversé : textes sombres) */
  --clr-text-primary:   #1A1A1A;
  --clr-text-secondary: rgba(0, 0, 0, 0.78);
  --clr-text-muted:     rgba(0, 0, 0, 0.55);
  --clr-text-dark:      #111111;
  --clr-text-dark-2:    #333333;
  --clr-text-dark-muted:#666666;

  /* Border */
  --clr-border-dark:    rgba(0, 0, 0, 0.10);
  --clr-border-light:   rgba(0, 0, 0, 0.10);
  --clr-border-accent:  rgba(255, 107, 0, 0.35);

  /* Typography */
  --font-heading:  'Barlow Condensed', system-ui, sans-serif;
  --font-body:     'Inter', system-ui, sans-serif;
  --font-mono:     'Courier New', monospace;

  /* Font sizes — fluid scale */
  --fs-xs:    0.75rem;
  --fs-sm:    0.875rem;
  --fs-base:  1rem;
  --fs-md:    1.125rem;
  --fs-lg:    1.25rem;
  --fs-xl:    1.5rem;
  --fs-2xl:   2rem;
  --fs-3xl:   2.5rem;
  --fs-4xl:   3.25rem;
  --fs-5xl:   4rem;
  --fs-hero:  clamp(2.5rem, 5.5vw, 4.5rem);

  /* Spacing */
  --sp-2:    2px;
  --sp-4:    4px;
  --sp-8:    8px;
  --sp-12:   12px;
  --sp-16:   16px;
  --sp-20:   20px;
  --sp-24:   24px;
  --sp-32:   32px;
  --sp-40:   40px;
  --sp-48:   48px;
  --sp-64:   64px;
  --sp-80:   80px;
  --sp-96:   96px;
  --sp-120:  120px;

  /* Layout */
  --container-max:    1200px;
  --container-pad:    24px;
  --header-height:    72px;
  --header-height-mobile: 60px;

  /* Radii */
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --radius-pill:  999px;

  /* Shadows */
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.3);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.5);
  --shadow-accent: 0 4px 24px rgba(255,107,0,0.35);

  /* Z-indexes */
  --z-header:  100;
  --z-drawer:  200;
  --z-overlay: 150;
  --z-modal:   300;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--clr-text-primary);
  background-color: var(--clr-bg-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}

input,
textarea,
select {
  font: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

p {
  line-height: 1.7;
}

/* ── Utilities ───────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

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

/* ── Header ──────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  height: var(--header-height);
  background-color: rgba(10, 10, 10, 0.90);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--sp-24);
}

/* Logo */
.site-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--clr-text-primary);
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.site-logo .logo-accent {
  color: var(--clr-accent);
}

/* Desktop nav */
.site-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--sp-20);
}

.nav-link {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--clr-text-secondary);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: var(--sp-4) 0;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--clr-text-primary);
}

.nav-link.current-menu-item {
  color: var(--clr-accent);
}

/* CTA in header */
.header-cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Hamburger */
.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--clr-text-primary);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.hamburger:hover {
  color: var(--clr-accent);
}

/* ── Mobile Drawer ───────────────────────────────────────── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: var(--z-overlay);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background-color: var(--clr-bg-dark-2);
  z-index: var(--z-drawer);
  display: flex;
  flex-direction: column;
  padding: var(--sp-80) var(--sp-32) var(--sp-40);
  transform: translateX(100%);
  border-left: 1px solid var(--clr-border-dark);
}

.nav-drawer.is-open {
  transform: translateX(0);
}

.nav-drawer-close {
  position: absolute;
  top: var(--sp-20);
  right: var(--sp-20);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-secondary);
  border-radius: var(--radius-sm);
}

.nav-drawer-close:hover {
  color: var(--clr-text-primary);
}

.nav-drawer-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-40);
}

.nav-drawer-link {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--clr-text-secondary);
  padding: var(--sp-12) 0;
  border-bottom: 1px solid var(--clr-border-dark);
  letter-spacing: 0.01em;
}

.nav-drawer-link:hover {
  color: var(--clr-accent);
}

.drawer-cta {
  margin-top: auto;
  text-align: center;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn:focus-visible {
  outline: 3px solid var(--clr-accent);
  outline-offset: 3px;
}

/* Primary — orange filled */
.btn-primary {
  background-color: var(--clr-accent);
  color: #FFFFFF;
  border-color: var(--clr-accent);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  background-color: var(--clr-accent-hover);
  border-color: var(--clr-accent-hover);
  box-shadow: 0 6px 30px rgba(255,107,0,0.45);
  color: #FFFFFF;
}

/* Secondary — outline */
.btn-secondary {
  background-color: transparent;
  color: var(--clr-accent);
  border-color: var(--clr-accent);
}

.btn-secondary:hover {
  background-color: var(--clr-accent);
  color: #FFFFFF;
}

/* Store buttons */
.btn-store {
  gap: var(--sp-8);
}

.btn-store svg {
  flex-shrink: 0;
}

/* Large store buttons */
.btn-store--large {
  padding: 18px 36px;
  font-size: var(--fs-md);
}

/* ── Sections ────────────────────────────────────────────── */
.section {
  padding: var(--sp-96) 0;
}

.section--dark {
  background-color: var(--clr-bg-dark);
  color: var(--clr-text-primary);
}

.section--light {
  background-color: var(--clr-bg-light);
  color: var(--clr-text-dark);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--clr-text-primary);
  margin-bottom: var(--sp-16);
  letter-spacing: -0.02em;
}

.section--light .section-title {
  color: var(--clr-text-dark);
}

.section--dark .section-title {
  color: var(--clr-text-primary);
}

.section-subtitle {
  font-size: var(--fs-lg);
  color: var(--clr-text-secondary);
  max-width: 640px;
  margin: 0 auto var(--sp-48);
  line-height: 1.6;
}

.section--light .section-subtitle {
  color: var(--clr-text-dark-2);
}

/* ── Hero ────────────────────────────────────────────────── */
.hero--home {
  background-color: var(--clr-bg-dark);
  padding-top: var(--header-height);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-64);
  padding: var(--sp-80) 0;
}

.hero-content {
  flex: 1;
  min-width: 0;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: var(--fs-hero);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--clr-text-primary);
  margin-bottom: var(--sp-24);
}

.hero-subtitle {
  font-size: var(--fs-lg);
  color: var(--clr-text-secondary);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: var(--sp-40);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-16);
  align-items: center;
}

/* Mockup phone */
.hero-mockup {
  flex-shrink: 0;
}

.mockup-phone {
  width: 280px;
  height: 540px;
  background: var(--clr-bg-dark-3);
  border: 2px solid var(--clr-border-dark);
  border-radius: 40px;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(255,107,0,0.08);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-screen {
  position: absolute;
  inset: 12px;
  background: var(--clr-bg-dark-2);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  text-align: center;
  padding: var(--sp-24);
}

.mockup-placeholder span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--clr-accent);
}

.mockup-placeholder small {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  line-height: 1.4;
}

/* ── Stats Section ───────────────────────────────────────── */
.stats-section {
  padding: var(--sp-64) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-24);
  margin-top: var(--sp-48);
}

.stat-card {
  background-color: var(--clr-bg-light-2);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  padding: var(--sp-32) var(--sp-24);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--clr-accent);
  line-height: 1;
}

.stat-label {
  font-size: var(--fs-sm);
  color: var(--clr-text-dark-2);
  font-weight: 500;
  line-height: 1.4;
}

/* ── Feature Cards ───────────────────────────────────────── */
.cards-grid {
  display: grid;
  gap: var(--sp-24);
  margin-top: var(--sp-48);
}

.cards-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card {
  background-color: var(--clr-bg-dark-3);
  border: 1px solid var(--clr-border-dark);
  border-radius: var(--radius-lg);
  padding: var(--sp-32);
  display: flex;
  flex-direction: column;
  gap: var(--sp-16);
}

.feature-icon {
  font-size: 2.5rem;
  line-height: 1;
  display: block;
}

.feature-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--clr-text-primary);
}

.feature-card p {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  line-height: 1.7;
}

/* ── Profile Cards ───────────────────────────────────────── */
.profile-card {
  background-color: #FFFFFF;
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  padding: var(--sp-32);
  display: flex;
  flex-direction: column;
  gap: var(--sp-12);
  box-shadow: var(--shadow-sm);
}

.profile-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--clr-accent);
  line-height: 1.2;
}

.profile-card p {
  font-size: var(--fs-sm);
  color: var(--clr-text-dark-2);
  line-height: 1.7;
}

/* ── Steps ───────────────────────────────────────────────── */
.steps-section .section-title {
  margin-bottom: var(--sp-64);
}

.steps-grid {
  display: flex;
  align-items: center;
  gap: var(--sp-32);
}

.step {
  flex: 1;
  background-color: var(--clr-bg-dark-3);
  border: 1px solid var(--clr-border-dark);
  border-radius: var(--radius-lg);
  padding: var(--sp-40) var(--sp-32);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-16);
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--clr-accent);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-accent);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--clr-text-primary);
}

.step p {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  line-height: 1.65;
}

.step-arrow {
  flex-shrink: 0;
  width: 32px;
  height: 2px;
  background-color: var(--clr-accent);
  position: relative;
}

.step-arrow::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--clr-accent);
}

/* ── CTA Section ─────────────────────────────────────────── */
.cta-section {
  padding: var(--sp-96) 0;
  background: linear-gradient(135deg, var(--clr-bg-dark) 0%, var(--clr-bg-dark-2) 100%);
  border-top: 1px solid var(--clr-border-dark);
}

.cta-section .section-title {
  margin-bottom: var(--sp-16);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-16);
  justify-content: center;
  margin-top: var(--sp-40);
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-container {
  max-width: 760px;
  margin: 0 auto;
}

.faq-list {
  margin-top: var(--sp-48);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.faq-item {
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: #FFFFFF;
}

.section--dark .faq-item {
  background-color: var(--clr-bg-dark-3);
  border-color: var(--clr-border-dark);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-16);
  padding: var(--sp-20) var(--sp-24);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--clr-text-dark);
  text-align: left;
  line-height: 1.4;
}

.section--dark .faq-question {
  color: var(--clr-text-primary);
}

.faq-question:hover {
  color: var(--clr-accent);
}

.faq-answer {
  padding: 0 var(--sp-24) var(--sp-20);
}

.faq-answer p {
  font-size: var(--fs-sm);
  color: var(--clr-text-dark-2);
  line-height: 1.7;
}

.section--dark .faq-answer p {
  color: var(--clr-text-secondary);
}

/* ── Page Hero ───────────────────────────────────────────── */
.page-hero {
  padding: var(--sp-120) 0 var(--sp-80);
}

.page-hero--dark {
  background-color: var(--clr-bg-dark);
  color: var(--clr-text-primary);
}

.page-hero--compact {
  padding: var(--sp-96) 0 var(--sp-64);
}

.page-hero--download {
  text-align: center;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--clr-text-primary);
  max-width: 800px;
  margin-bottom: var(--sp-20);
}

.page-hero--download .page-hero-title {
  margin: 0 auto var(--sp-20);
}

.page-hero-subtitle {
  font-size: var(--fs-lg);
  color: var(--clr-text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: var(--sp-40);
}

.page-hero--download .page-hero-subtitle {
  margin: 0 auto var(--sp-40);
}

/* ── Feature Rows (zigzag) ───────────────────────────────── */
.features-section .container {
  display: flex;
  flex-direction: column;
  gap: var(--sp-80);
}

.feature-row {
  display: flex;
  align-items: center;
  gap: var(--sp-64);
}

.feature-row--reverse {
  flex-direction: row-reverse;
}

.feature-row-content {
  flex: 1;
  min-width: 0;
}

.feature-row-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: var(--sp-16);
  line-height: 1;
}

.feature-row-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: var(--sp-16);
  line-height: 1.15;
}

.feature-row-content p {
  font-size: var(--fs-md);
  color: var(--clr-text-dark-2);
  line-height: 1.7;
}

.feature-row-visual {
  flex: 1;
  min-width: 0;
}

.feature-placeholder {
  width: 100%;
  min-height: 260px;
  background: linear-gradient(135deg, var(--clr-bg-light-2) 0%, #e0e0e0 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--clr-text-dark-muted);
  border: 2px dashed var(--clr-border-light);
}

/* ── Download page ───────────────────────────────────────── */
.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-16);
  justify-content: center;
  margin-bottom: var(--sp-24);
}

.compat-note {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  margin-top: var(--sp-16);
}

.reassurance-section {
  padding: var(--sp-48) 0;
}

.reassurance-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-20);
  justify-content: center;
}

.reassurance-item {
  display: flex;
  align-items: center;
  gap: var(--sp-12);
  background-color: #FFFFFF;
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-pill);
  padding: var(--sp-12) var(--sp-24);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--clr-text-dark);
  box-shadow: var(--shadow-sm);
}

.reassurance-check {
  color: #22C55E;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Contact page ────────────────────────────────────────── */
.contact-section {
  padding: var(--sp-80) 0;
}

.contact-container {
  max-width: 680px;
  margin: 0 auto;
}

.contact-form-wrap {
  background-color: #FFFFFF;
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-xl);
  padding: var(--sp-48) var(--sp-48);
  box-shadow: var(--shadow-md);
}

/* Contact success message */
.contact-success {
  text-align: center;
  padding: var(--sp-48) var(--sp-32);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-16);
}

.contact-success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #22C55E;
  color: #FFFFFF;
  font-size: 2rem;
  font-weight: 700;
}

.contact-success-text {
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--clr-text-dark);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-24);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.form-label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-text-dark);
  letter-spacing: 0.01em;
}

.required {
  color: var(--clr-accent);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--clr-border-light);
  border-radius: var(--radius-md);
  background-color: var(--clr-bg-white);
  color: var(--clr-text-dark);
  font-size: var(--fs-base);
  line-height: 1.5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--clr-text-dark-muted);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.form-error {
  font-size: var(--fs-xs);
  color: #EF4444;
  font-weight: 500;
  min-height: 16px;
  display: block;
}

.form-error--global {
  display: block;
  margin-top: var(--sp-8);
  font-size: var(--fs-sm);
  text-align: center;
}

.form-submit-row {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
  margin-top: var(--sp-8);
}

.form-submit {
  align-self: flex-start;
  position: relative;
}

/* Contact reassurance */
.contact-reassurance {
  margin-top: var(--sp-32);
  padding-top: var(--sp-32);
  border-top: 1px solid var(--clr-border-light);
  display: flex;
  flex-direction: column;
  gap: var(--sp-12);
}

.contact-reassurance p {
  font-size: var(--fs-sm);
  color: var(--clr-text-dark-muted);
  line-height: 1.6;
}

/* ── Contact nudge (download page) ───────────────────────── */
.contact-nudge {
  padding: var(--sp-64) 0;
  background-color: var(--clr-bg-light-2);
}

.contact-nudge-text {
  font-size: var(--fs-lg);
  color: var(--clr-text-dark-2);
  margin-bottom: var(--sp-20);
}

/* ── Guide section ───────────────────────────────────────── */
.guide-section {
  background: linear-gradient(135deg, #111 0%, #1A1A1A 100%);
}

.guide-section .section-subtitle {
  margin-bottom: var(--sp-32);
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background-color: var(--clr-bg-dark-2);
  border-top: 1px solid var(--clr-border-dark);
  color: var(--clr-text-primary);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-64);
  padding: var(--sp-80) 0 var(--sp-64);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--clr-text-primary);
  display: inline-block;
  margin-bottom: var(--sp-16);
}

.footer-logo .logo-accent {
  color: var(--clr-accent);
}

.footer-baseline {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--clr-text-primary);
  margin-bottom: var(--sp-12);
}

.footer-desc {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  line-height: 1.7;
  max-width: 320px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-20);
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-12);
}

.footer-list a {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  transition: color 0.2s ease;
}

.footer-list a:hover {
  color: var(--clr-accent);
}

.footer-bar {
  background-color: var(--clr-bg-dark);
  border-top: 1px solid var(--clr-border-dark);
  padding: var(--sp-20) 0;
}

.footer-copy {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}

/* ── Profiles section ─────────────────────────────────────── */
.profiles-section .section-title {
  margin-bottom: var(--sp-16);
}

.profiles-section .cards-grid {
  margin-top: var(--sp-48);
}

/* ── Why section ─────────────────────────────────────────── */
.why-section .section-title {
  margin-bottom: var(--sp-16);
}

/* ── Features page guide section ─────────────────────────── */
.features-section {
  padding: var(--sp-96) 0;
}

/* ══════════════════════════════════════════════════════════
   CORRECTIFS ASTRA + CLASSES MANQUANTES
   ══════════════════════════════════════════════════════════ */

/* Override fond blanc Astra */
#content,
.site-content,
.ast-page-builder-template,
.hfeed,
#primary {
  background-color: transparent !important;
}

/* Override couleur headings Astra (applique son orange + gradient sur h1-h4) */
.section h1,
.section h2,
.section h3,
.section h4,
.hero h1,
.hero h2,
.villain-section h1,
.villain-section h2 {
  color: var(--clr-text-primary) !important;
  -webkit-text-fill-color: var(--clr-text-primary) !important;
  background-image: none !important;
  background-clip: unset !important;
  -webkit-background-clip: unset !important;
}

/* Exception : spans gradient intentionnels (ex: "au sec.") */
.section h1 .text-gradient-live,
.section h2 .text-gradient-live,
.hero h1 .text-gradient-live,
.hero h2 .text-gradient-live {
  -webkit-text-fill-color: transparent !important;
  background-image: linear-gradient(90deg, var(--clr-accent) 0%, #FF9A3C 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
}

.section--light h1,
.section--light h2,
.section--light h3,
.section--light h4 {
  color: var(--clr-text-dark) !important;
  -webkit-text-fill-color: var(--clr-text-dark) !important;
}

.section--orange h1,
.section--orange h2,
.section--orange h3 {
  color: #FFFFFF !important;
}

/* Section dark par défaut (sinon Astra impose blanc) */
/* Exclure les variantes qui ont leur propre fond */
.section:not(.section--light):not(.section--orange) {
  background-color: var(--clr-bg-dark);
  color: var(--clr-text-primary);
}

/* Réaffirmer les fonds des variantes après l'override générique */
.section--light {
  background-color: var(--clr-bg-light) !important;
  color: var(--clr-text-dark) !important;
}

/* Texte sombre dans sections claires — override obligatoire des règles de composants */
.section--light p,
.section--light li,
.section--light .feature-zigzag__text p,
.section--light .feature-list li,
.section--light .lead,
.section--light .section-subtitle {
  color: var(--clr-text-dark-2) !important;
}

/* Section-label sur fond clair : texte foncé (pas orange — contraste insuffisant) */
.section--light .section-label {
  color: var(--clr-text-dark-muted) !important;
}

.section--orange {
  background: linear-gradient(135deg, #D44A08 0%, var(--clr-accent) 100%) !important;
  color: #FFFFFF !important;
}

/* ── Utilitaires manquants ───────────────────────────────── */
.text-white { color: #FFFFFF !important; }
.lead {
  font-size: var(--fs-lg);
  line-height: 1.7;
  color: var(--clr-text-secondary);
  max-width: 600px;
}
.container--md {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
  width: 100%;
}
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-16);
  align-items: center;
}
.text-gradient-live {
  background: linear-gradient(90deg, var(--clr-accent) 0%, #FF9A3C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-label {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--sp-12);
}

/* ── Hero homepage ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(160deg, var(--clr-bg-dark) 0%, #0d1117 60%, #100a06 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--header-height);
  overflow: hidden;
  color: var(--clr-text-primary);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255,107,0,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.hero__bg { display: none; }  /* cache l'image manquante */

.hero__content {
  position: relative;
  z-index: 1;
  padding: var(--sp-64) 0;
  max-width: 800px;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(255,107,0,0.12);
  border: 1px solid rgba(255,107,0,0.28);
  color: var(--clr-accent);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--sp-24);
}

.hero h1 {
  font-size: var(--fs-hero);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--clr-text-primary);
  margin-bottom: var(--sp-24);
}

.hero .lead {
  margin-bottom: var(--sp-40);
}

.hero-social-proof {
  margin-top: var(--sp-32);
  display: flex;
  align-items: center;
  gap: var(--sp-12);
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}

.hero-stars {
  color: #FFD700;
  letter-spacing: 2px;
}

.scroll-indicator {
  position: absolute;
  bottom: var(--sp-32);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-8);
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
}

.btn-ghost {
  background-color: transparent;
  color: var(--clr-text-secondary);
  border: 1px solid var(--clr-border-dark);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: var(--fs-sm);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-8);
}

.btn-ghost:hover {
  color: var(--clr-text-primary);
  border-color: rgba(255,255,255,0.3);
}

/* ── Villain section ─────────────────────────────────────── */
.villain-section {
  background-color: var(--clr-bg-dark-2);
  border-top: 1px solid var(--clr-border-dark);
  border-bottom: 1px solid var(--clr-border-dark);
  padding: var(--sp-80) 0;
  color: var(--clr-text-secondary);
}

.villain-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--clr-text-primary);
  margin-bottom: var(--sp-32);
}

.villain-section p {
  font-size: var(--fs-lg);
  line-height: 1.8;
  margin-bottom: var(--sp-24);
  max-width: 720px;
}

/* ── Feature cards (homepage) ────────────────────────────── */
.card {
  border-radius: var(--radius-lg);
  padding: var(--sp-24);
  display: flex;
  flex-direction: column;
  gap: var(--sp-12);
  background-color: var(--clr-bg-white);
  color: var(--clr-text-dark);
}

.card--dark {
  background-color: var(--clr-bg-dark-3);
  border: 1px solid var(--clr-border-dark);
  color: var(--clr-text-primary);
}

.card--dark h3 {
  color: var(--clr-text-primary);
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.card--dark p {
  color: var(--clr-text-secondary);
  font-size: var(--fs-sm);
  line-height: 1.65;
}

/* ── Features grid (homepage 2x2) ────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-16);
}

/* ── Profile cards ───────────────────────────────────────── */
.card-profile {
  background-color: #FFFFFF;
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  padding: var(--sp-28, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: var(--sp-12);
  box-shadow: var(--shadow-sm);
}

.card-profile h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-text-dark);
}

.card-profile blockquote {
  font-style: italic;
  color: var(--clr-accent);
  font-size: var(--fs-sm);
  font-weight: 600;
  border-left: 3px solid var(--clr-accent);
  padding-left: var(--sp-12);
  margin: 0;
  line-height: 1.5;
}

.card-profile p {
  color: var(--clr-text-dark-2);
  font-size: var(--fs-sm);
  line-height: 1.7;
}

/* ── Profiles grid ───────────────────────────────────────── */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-24);
  margin-top: var(--sp-48);
}

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-24);
}

.card-testimonial {
  background-color: var(--clr-bg-dark-3);
  border: 1px solid var(--clr-border-dark);
  border-radius: var(--radius-lg);
  padding: var(--sp-32);
  display: flex;
  flex-direction: column;
  gap: var(--sp-16);
}

.card-testimonial .stars {
  color: #FFD700;
  font-size: 1rem;
}

.card-testimonial blockquote {
  font-style: italic;
  color: var(--clr-text-secondary);
  font-size: var(--fs-sm);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.card-testimonial cite {
  font-style: normal;
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  display: block;
}

.card-testimonial cite strong {
  color: var(--clr-text-primary);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

/* ── Section orange (CTA) ────────────────────────────────── */
.section--orange {
  background: linear-gradient(135deg, #D44A08 0%, var(--clr-accent) 100%);
  color: #FFFFFF;
}

.section--orange h2,
.section--orange p {
  color: #FFFFFF;
}

/* ── Home Screenshots Composition ───────────────────────── */
.home-screenshots {
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-screenshots__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  width: 100%;
}

.home-screenshots__main {
  order: 2;
  width: 40%;
  max-width: 210px;
  height: auto;
  border-radius: 1.6rem;
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
  z-index: 2;
}

.home-screenshots__secondary {
  width: 30%;
  max-width: 158px;
  height: auto;
  border-radius: 1.2rem;
  box-shadow: 0 12px 36px rgba(0,0,0,0.18);
  z-index: 1;
}

.home-screenshots__secondary--top {
  order: 1;
  transform: translateY(-20px) rotate(-3deg);
}

.home-screenshots__secondary--bottom {
  order: 3;
  transform: translateY(20px) rotate(3deg);
}

@media (max-width: 640px) {
  .home-screenshots__inner { gap: 0.5rem; }
  .home-screenshots__secondary--top { transform: translateY(-12px) rotate(-3deg); }
  .home-screenshots__secondary--bottom { transform: translateY(12px) rotate(3deg); }
}

/* ── Feature Zigzag Layout ───────────────────────────────── */
.feature-zigzag {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.feature-zigzag--reverse .feature-zigzag__visual {
  order: 2;
}

.feature-zigzag--reverse .feature-zigzag__text {
  order: 1;
}

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

.feature-zigzag__visual--dual {
  gap: 1.25rem;
  flex-wrap: wrap;
}

.feature-zigzag__text .feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-zigzag__text h2 {
  color: var(--clr-text-primary);
  margin-bottom: 1rem;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.feature-zigzag__text p {
  color: var(--clr-text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

/* ── Screenshot Frame ────────────────────────────────────── */
.screenshot-frame {
  max-width: 260px;
  width: 100%;
  border-radius: 2rem;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
  display: block;
}

.screenshot-frame--small {
  max-width: 195px;
  width: 45%;
}

.screenshot-frame--offset {
  margin-top: 2.5rem;
}

/* ── Feature List ────────────────────────────────────────── */
.feature-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
}

.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
  font-size: 0.95rem;
  color: var(--clr-text-secondary);
}

.feature-list__bullet {
  color: var(--clr-accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── PDF Card ────────────────────────────────────────────── */
.pdf-card {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  background: #fff;
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 8px 40px rgba(232,82,10,0.08);
  border: 1px solid rgba(232,82,10,0.1);
  max-width: 760px;
  margin: 0 auto;
}

.pdf-card__icon {
  font-size: 3.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.pdf-card__content h2 {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.pdf-card__content p {
  color: var(--clr-text-secondary);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════════════════════
   PRICING — Cards + Comparison Table + Launch Banner
   ═══════════════════════════════════════════════════════════ */

/* ── Pricing Cards Grid ─────────────────────────────────── */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--clr-bg-dark-3);
  border: 1px solid var(--clr-border-dark);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured {
  background: linear-gradient(145deg, #1C1008 0%, #1A0F00 100%);
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 1px var(--clr-accent), var(--shadow-accent);
  transform: translateY(-6px);
}

.pricing-card--featured:hover {
  transform: translateY(-10px);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--clr-accent);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.pricing-card__name {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--clr-text-primary);
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}

.pricing-card__tagline {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  margin-bottom: 1.5rem;
  min-height: 2.4em;
}

.pricing-card__price {
  margin-bottom: 0.5rem;
}

.pricing-card__amount {
  font-family: var(--font-heading);
  font-size: var(--fs-4xl);
  font-weight: 800;
  color: var(--clr-text-primary);
  line-height: 1;
}

.pricing-card--featured .pricing-card__amount {
  color: var(--clr-accent-light);
}

.pricing-card__period {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  margin-bottom: 1.75rem;
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.pricing-card__features li {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  padding-left: 1.5rem;
  position: relative;
}

.pricing-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: 700;
}

.pricing-card__cta {
  display: block;
  text-align: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  border: 1.5px solid var(--clr-border-dark);
  color: var(--clr-text-secondary);
}

.pricing-card__cta:hover {
  border-color: var(--clr-text-muted);
  color: var(--clr-text-primary);
}

.pricing-card--featured .pricing-card__cta {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}

.pricing-card--featured .pricing-card__cta:hover {
  background: var(--clr-accent-hover);
  border-color: var(--clr-accent-hover);
  transform: scale(1.02);
}

/* ── Trial note ─────────────────────────────────────────── */
.pricing-trial-note {
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  margin-bottom: 3rem;
}

.pricing-trial-note strong {
  color: var(--clr-accent-light);
}

/* ── Comparison Table ───────────────────────────────────── */
.pricing-table-wrap {
  overflow-x: auto;
  margin-bottom: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border-dark);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.pricing-table thead th {
  padding: 1.1rem 1.25rem;
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  border-bottom: 1px solid var(--clr-border-dark);
  background: var(--clr-bg-dark-2);
}

.pricing-table thead th:first-child {
  text-align: left;
  color: var(--clr-text-muted);
  font-size: var(--fs-sm);
}

.pricing-table thead th.col-featured {
  color: var(--clr-accent-light);
  background: rgba(255,107,0,0.08);
}

.pricing-table tbody tr {
  border-bottom: 1px solid var(--clr-border-dark);
  transition: background 0.15s ease;
}

.pricing-table tbody tr:last-child {
  border-bottom: none;
}

.pricing-table tbody tr:hover {
  background: rgba(255,255,255,0.03);
}

.pricing-table tbody td {
  padding: 0.85rem 1.25rem;
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  text-align: center;
  vertical-align: middle;
}

.pricing-table tbody td:first-child {
  text-align: left;
  color: var(--clr-text-secondary);
  padding-left: 1.5rem;
}

.pricing-table tbody td.col-featured {
  background: rgba(255,107,0,0.04);
}

/* Check / Cross icons */
.feat-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(76,175,80,0.15);
  color: #4CAF50;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.feat-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(244,67,54,0.12);
  color: #F44336;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

/* ── Launch Banner ──────────────────────────────────────── */
.launch-banner {
  background: linear-gradient(135deg, #7B4F00 0%, #B36A00 50%, #7B4F00 100%);
  border: 1px solid rgba(255,165,0,0.4);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.launch-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(255,200,0,0.08) 100%);
}

.launch-banner__icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.launch-banner__body {
  flex: 1;
  position: relative;
}

.launch-banner__title {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 800;
  color: #FFE08A;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.launch-banner__text {
  font-size: var(--fs-sm);
  color: rgba(255,224,138,0.85);
  line-height: 1.5;
}

.launch-banner__text strong {
  color: #FFE08A;
}

.launch-banner__price {
  flex-shrink: 0;
  text-align: center;
  position: relative;
}

.launch-banner__amount {
  font-family: var(--font-heading);
  font-size: var(--fs-4xl);
  font-weight: 900;
  color: #FFE08A;
  line-height: 1;
  display: block;
}

.launch-banner__sub {
  font-size: var(--fs-xs);
  color: rgba(255,224,138,0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── Responsive pricing ─────────────────────────────────── */
@media (max-width: 900px) {
  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card--featured {
    order: -1;
    transform: none;
  }

  .launch-banner {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }
}


/* ═══════════════════════════════════════════════════════════
   LEGAL PAGES — Mentions légales, CGU, Politique conf.
   ═══════════════════════════════════════════════════════════ */

.page-hero--slim {
  padding: 4rem 0 3rem;
  min-height: auto;
}

.legal-section {
  padding: 4rem 0 6rem;
}

.legal-content {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 3rem 3.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  color: var(--clr-text-dark-2);
}

.legal-intro {
  font-size: var(--fs-md);
  line-height: 1.75;
  color: var(--clr-text-dark);
  border-left: 3px solid var(--clr-accent);
  padding-left: 1.25rem;
  margin-bottom: 2.5rem;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--clr-border-light);
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-part-title {
  font-family: var(--font-heading) !important;
  font-size: var(--fs-2xl) !important;
  color: var(--clr-accent) !important;
  border-bottom: 2px solid var(--clr-accent) !important;
  margin-top: 3rem !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.legal-content h3 {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-content p {
  color: var(--clr-text-dark-2) !important;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--clr-text-dark-2);
}

.legal-content li {
  color: var(--clr-text-dark-2) !important;
  line-height: 1.75;
  margin-bottom: 0.4rem;
}

.legal-content a {
  color: var(--clr-accent);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--clr-accent-hover);
}

.legal-content strong {
  color: var(--clr-text-dark);
}

/* Legal table */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0 1.5rem;
  font-size: var(--fs-sm);
}

.legal-table th {
  background: var(--clr-bg-light-2);
  padding: 0.65rem 1rem;
  text-align: left;
  font-weight: 700;
  color: var(--clr-text-dark);
  border: 1px solid var(--clr-border-light);
}

.legal-table td {
  padding: 0.6rem 1rem;
  border: 1px solid var(--clr-border-light);
  color: var(--clr-text-dark-2);
  line-height: 1.55;
}

.legal-table tr:nth-child(even) td {
  background: rgba(0,0,0,0.02);
}

/* Update note */
.legal-update {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--clr-border-light);
  font-size: var(--fs-sm);
  color: var(--clr-text-dark-muted) !important;
  text-align: right;
}

@media (max-width: 768px) {
  .legal-content {
    padding: 2rem 1.5rem;
  }
}

/* ════════════════════════════════════════════════════════
   THÈME CLAIR (fond blanc) — corrections des fonds/textes
   sombres codés en dur. Le reste est géré par :root inversé.
   ════════════════════════════════════════════════════════ */
.hero { background: linear-gradient(180deg, rgba(12,15,22,0.50) 0%, rgba(12,15,22,0.42) 45%, rgba(12,15,22,0.70) 100%), url('../images/hero-bg.jpg') center 40% / cover no-repeat !important; }
.hero h1, .hero p, .hero .lead, .hero__content, .hero-sub, .hero-social-proof, .hero-eyebrow { color: #FFFFFF !important; }
.hero h1 { color: #FFFFFF !important; -webkit-text-fill-color: #FFFFFF !important; text-shadow: 0 2px 16px rgba(0,0,0,0.55); }
.hero h1 .text-gradient-live { -webkit-text-fill-color: transparent !important; }
.hero .lead, .hero p { text-shadow: 0 1px 8px rgba(0,0,0,0.55); }
.hero .btn-ghost { color: #FFFFFF !important; border-color: rgba(255,255,255,0.55) !important; }
.hero .btn-ghost:hover { color: #FFFFFF !important; border-color: #FFFFFF !important; background: rgba(255,255,255,0.10) !important; }
.hero::before { display: none !important; }
.guide-section { background: #F7F7F7 !important; }
.guide-section h2, .guide-section h3, .guide-section p, .guide-section li { color: var(--clr-text-dark) !important; }
.pricing-card--featured { background: #FFFFFF !important; border: 2px solid var(--clr-accent) !important; }
.pricing-card--featured .pricing-card__name,
.pricing-card--featured .pricing-card__price,
.pricing-card--featured .pricing-card__period,
.pricing-card--featured li { color: var(--clr-text-dark) !important; }
.pricing-table tbody tr:hover { background: rgba(0,0,0,0.03) !important; }
.btn-ghost { color: var(--clr-text-dark); border-color: rgba(0,0,0,0.22); }
.btn-ghost:hover { border-color: rgba(0,0,0,0.45) !important; color: var(--clr-text-dark) !important; }
.text-white { color: var(--clr-text-dark) !important; }
.section--orange .text-white,
.section--orange h1, .section--orange h2, .section--orange h3,
.section--orange p, .section--orange li, .section--orange a { color: #FFFFFF !important; }
/* Header fixe : fond clair (au lieu du noir codé en dur) */
.site-header { background-color: rgba(255,255,255,0.92) !important; border-bottom: 1px solid rgba(0,0,0,0.08) !important; }
/* Titres de cartes/sections "dark" devenues claires : texte sombre (override des color:white inline) */
.card--dark h3, .card--dark h4 { color: var(--clr-text-dark) !important; -webkit-text-fill-color: var(--clr-text-dark) !important; }
.section--dark .section-title, .section--dark h1, .section--dark h2 { color: var(--clr-text-dark) !important; -webkit-text-fill-color: var(--clr-text-dark) !important; }
.section--dark .section-title .text-gradient-live, .section--dark h1 .text-gradient-live, .section--dark h2 .text-gradient-live { -webkit-text-fill-color: transparent !important; }
.section--dark ol, .section--dark ol li, .section--dark ol a { color: var(--clr-text-muted) !important; }


/* ============================================
   PAGES LÉGALES (CGU, Mentions, Confidentialité)
   ============================================ */
.legal-page { padding: 4rem 0 6rem; }
.legal-container { max-width: 760px; margin: 0 auto; }

.legal-header { margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 2px solid var(--clr-accent); }
.legal-header h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 1rem; }
.legal-meta { font-size: 0.9rem; color: var(--clr-text-muted); line-height: 1.7; margin-bottom: 1.2rem; }
.legal-meta a { color: var(--clr-accent); text-decoration: none; }
.legal-meta a:hover { text-decoration: underline; }

.legal-section { margin-bottom: 2.5rem; }
.legal-section h2 { font-size: 1.15rem; font-weight: 700; color: var(--clr-text-dark); margin-bottom: 0.8rem; padding-bottom: 0.4rem; border-bottom: 1px solid rgba(0,0,0,0.08); }
.legal-section p { font-size: 0.95rem; line-height: 1.75; color: var(--clr-text-dark); margin-bottom: 0.8rem; }
.legal-section a { color: var(--clr-accent); text-decoration: none; }
.legal-section a:hover { text-decoration: underline; }

.legal-warning { background: rgba(255, 107, 0, 0.06); border-left: 4px solid var(--clr-accent); border-radius: 0 8px 8px 0; padding: 1.2rem 1.5rem; }
.legal-warning p { margin-bottom: 0.6rem; font-size: 0.93rem; }
.legal-warning p:last-child { margin-bottom: 0; }

.legal-note { font-size: 0.83rem !important; color: var(--clr-text-muted) !important; font-style: italic; }

.legal-list { padding-left: 1.4rem; margin-bottom: 0.8rem; }
.legal-list li { font-size: 0.95rem; line-height: 1.7; color: var(--clr-text-dark); margin-bottom: 0.4rem; }
