/* ═══════════════════════════════════════════════════════════════
   landing.css — Page d'accueil index.html
   Mobile-first · Friendly & accessible · Charte orange/jaune
   Variables : voir styles/global.css (jamais de :root ici)
═══════════════════════════════════════════════════════════════ */

body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
p { line-height: 1.6; }

a:focus-visible, button:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 8px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ═══════════ NAV ═══════════ */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 245, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nav-wrap.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--text);
}
.logo-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: var(--white);
  border-radius: 10px;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(255, 107, 44, 0.30);
}
.logo-text span { color: var(--orange); }
.nav-actions { display: none; align-items: center; gap: 10px; } /* mobile-first ; ≥769px → flex */

.btn-primary, .btn-ghost, .btn-plan-primary, .btn-plan-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  min-height: 44px;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), #FF8C42);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(255, 107, 44, 0.30);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 107, 44, 0.40);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--surface);
  border-color: var(--orange);
}
.btn-large {
  padding: 16px 26px;
  font-size: 16px;
  min-height: 52px;
}
.btn-on-dark { box-shadow: 0 8px 28px rgba(255, 107, 44, 0.50); }
.btn-arrow { transition: transform 0.2s ease; }
.btn-primary:hover .btn-arrow,
.btn-plan-primary:hover .btn-arrow,
.btn-plan-secondary:hover .btn-arrow { transform: translateX(4px); }

/* mobile-first : burger visible par défaut, masqué ≥ 769px */
.burger {
  display: flex;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}
.burger-line {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.burger[aria-expanded="true"] .burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] .burger-line:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 16px 20px 20px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; } /* mobile-first ; ≥769px → none même ouvert */
.mobile-menu .btn-ghost,
.mobile-menu .btn-primary { width: 100%; }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 60px 20px 32px; /* mobile-first ; ≥481px → padding-bottom 40px */
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}
.hero-blob-1 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, var(--yellow) 0%, transparent 70%);
  top: -80px;
  right: -60px;
}
.hero-blob-2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 107, 44, 0.55) 0%, transparent 70%);
  bottom: -120px;
  left: -80px;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.hero-content { max-width: 580px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.hero-flag { font-size: 16px; line-height: 1; }
.hero-badge-text { color: var(--muted); }

.hero-title {
  font-size: clamp(38px, 7vw, 64px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.hero-title-accent {
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 520px;
}
/* mobile-first : actions empilées, pleine largeur ; horizontales ≥ 769px */
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-actions .btn-large { width: 100%; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--muted);
}
.trust-item { display: inline-flex; align-items: center; gap: 6px; }
.hero-connexion-link {
  display: inline-block;
  font-size: 14px;
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  margin-top: 6px;
}
.hero-connexion-link:hover { text-decoration: underline; }

.hero-mockup {
  position: relative;
  display: none; /* mobile-first ; ≥481px → flex */
  justify-content: center;
  align-items: center;
  min-height: 600px;
}
.phone-frame {
  position: relative;
  width: 280px;
  height: 580px;
  background: linear-gradient(160deg, #2D1F0A 0%, #1A1200 100%);
  border-radius: 40px;
  padding: 12px;
  box-shadow:
    0 30px 60px -20px rgba(255, 107, 44, 0.35),
    0 18px 36px -12px rgba(0, 0, 0, 0.20),
    inset 0 0 0 2px rgba(255, 217, 61, 0.10);
}
.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 18px;
  background: #1A1200;
  border-radius: 0 0 12px 12px;
  z-index: 2;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: 30px;
  padding: 36px 14px 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mock-header { padding: 4px 4px 8px; }
.mock-greeting { font-family: var(--font-display); font-weight: 800; font-size: 15px; }
.mock-month { font-size: 11px; color: var(--muted); }

.mock-solde {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  border-radius: 14px;
  padding: 14px;
  color: var(--white);
  text-align: center;
}
.mock-solde-label { font-size: 11px; opacity: 0.85; }
.mock-solde-value { font-family: var(--font-display); font-size: 26px; font-weight: 900; line-height: 1.1; }
.mock-solde-trend { font-size: 11px; margin-top: 4px; opacity: 0.95; }

.mock-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.mock-chip {
  background: var(--white);
  border-radius: 10px;
  padding: 8px;
  box-shadow: var(--shadow-sm);
}
.mock-chip-label { font-size: 10px; color: var(--muted); margin-bottom: 2px; }
.mock-chip-val { font-family: var(--font-display); font-size: 14px; font-weight: 800; }
.mock-chip-rev .mock-chip-val { color: var(--green); }
.mock-chip-dep .mock-chip-val { color: var(--red); }

.mock-budget {
  background: var(--white);
  border-radius: 12px;
  padding: 10px;
  box-shadow: var(--shadow-sm);
}
.mock-budget-title {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 8px;
}
.mock-budget-source { color: var(--muted); font-weight: 500; font-size: 9px; }
.mock-bar-row {
  display: grid;
  grid-template-columns: 70px 1fr 30px;
  align-items: center;
  gap: 6px;
  margin-bottom: 5px;
  font-size: 10px;
}
.mock-bar-track {
  height: 6px;
  background: var(--surface);
  border-radius: 4px;
  overflow: hidden;
}
.mock-bar {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
}
.mock-bar-green  { background: var(--green); }
.mock-bar-orange { background: var(--orange2); }
.mock-bar-w72 { width: 72%; }
.mock-bar-w55 { width: 55%; }
.mock-bar-w45 { width: 45%; }
.mock-bar-pct { font-weight: 700; color: var(--muted); text-align: right; }

.mock-tx-list {
  background: var(--white);
  border-radius: 12px;
  padding: 8px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mock-tx {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 4px;
  font-size: 11px;
}
.mock-tx-icon { font-size: 14px; }
.mock-tx-amount { font-family: var(--font-display); font-weight: 700; }
.mock-amount-rev { color: var(--green); }
.mock-amount-dep { color: var(--red); }

.mock-tabbar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--white);
  border-radius: 12px;
  padding: 6px;
  box-shadow: var(--shadow-sm);
  margin-top: auto;
}
.mock-tab {
  padding: 6px;
  text-align: center;
  font-size: 16px;
  border-radius: 8px;
}
.mock-tab.active { background: linear-gradient(135deg, var(--orange), var(--yellow)); }

/* ═══════════ RÉASSURANCE ═══════════ */
.reassurance {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.reassurance-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.reassurance-icon {
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
}
.reassurance-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 4px;
}
.reassurance-item p {
  font-size: 14px;
  color: var(--muted);
}

/* ═══════════ SECTIONS ═══════════ */
.section { padding: 64px 20px; }
.section-soft { background: var(--surface); }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-head { text-align: center; margin-bottom: 40px; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(28px, 4.5vw, 40px);
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
}
.section-sub-small { font-size: 14px; }

.grid-3, .grid-features { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: 1fr; }
.grid-features { grid-template-columns: 1fr; }

/* ═══════════ PROBLÈME / SOLUTION ═══════════ */
.problem-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  opacity: 0;
  transform: translateY(20px);
}
.problem-card.visible { opacity: 1; transform: translateY(0); }
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
.problem-emoji { font-size: 36px; line-height: 1; margin-bottom: 12px; display: block; }
.problem-quote {
  font-size: 16px;
  font-style: italic;
  color: var(--text);
  margin-bottom: 14px;
}
.problem-answer { font-size: 15px; color: var(--muted); }
.problem-answer strong { color: var(--text); }

/* ═══════════ FONCTIONNALITÉS ═══════════ */
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  opacity: 0;
  transform: translateY(20px);
}
.feature-card.visible { opacity: 1; transform: translateY(0); }
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-size: 24px;
  margin-bottom: 14px;
}
.feature-icon-orange { background: rgba(255, 107, 44, 0.12); }
.feature-icon-blue   { background: var(--blue-light); }
.feature-icon-purple { background: var(--purple-light); }
.feature-icon-green  { background: var(--green-light); }
.feature-icon-yellow { background: var(--yellow-light); }
.feature-icon-teal   { background: var(--teal-light); }

.feature-title { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.feature-desc  { font-size: 15px; color: var(--muted); }

/* ═══════════ STEPS ═══════════ */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.step.visible { opacity: 1; transform: translateY(0); }
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 6px;
  box-shadow: 0 4px 12px rgba(255, 107, 44, 0.30);
}
.step-title { font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.step-desc  { font-size: 15px; color: var(--muted); }

/* ═══════════ PAYS ═══════════ */
.pays-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  opacity: 0;
  transform: translateY(20px);
}
.pays-card.visible { opacity: 1; transform: translateY(0); }
.pays-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
.pays-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.pays-card-flag { font-size: 36px; line-height: 1; }
.pays-card-title { font-size: 22px; font-weight: 900; margin-bottom: 2px; }
.pays-card-source { font-size: 12px; color: var(--muted); }

.pays-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.pays-stats > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.pays-stats dt { color: var(--text); }
.pays-stats dd {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--orange);
}

.pays-card-foot {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 12px;
}
.pays-revenu { color: var(--text); font-weight: 600; }
.pays-regions { color: var(--muted); }
.pays-note {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin-top: 32px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════ TÉMOIGNAGES ═══════════ */
.temoignage-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.temoignage-card.visible { opacity: 1; transform: translateY(0); }
.temoignage-stars { color: var(--yellow); font-size: 18px; letter-spacing: 1px; }
.temoignage-text { font-size: 15px; color: var(--text); line-height: 1.6; flex: 1; }
.temoignage-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.temoignage-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
}
.temoignage-name { font-weight: 700; font-size: 14px; }
.temoignage-loc  { font-size: 12px; color: var(--muted); }

/* ═══════════ PLANS ═══════════ */
.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}
.plan-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  opacity: 0;
  transform: translateY(20px);
}
.plan-card.visible { opacity: 1; transform: translateY(0); }
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
.plan-card-featured {
  border-color: var(--orange);
  box-shadow: 0 12px 32px rgba(255, 107, 44, 0.15);
}
.plan-card-featured:hover { box-shadow: 0 18px 42px rgba(255, 107, 44, 0.22); }
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: var(--white);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 18px rgba(255, 107, 44, 0.30);
}
.plan-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 8px;
}
.plan-price {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1;
}
.plan-period { font-size: 16px; font-weight: 600; color: var(--muted); }
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.plan-features li {
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.plan-yes { color: var(--text); }
.plan-yes::before { content: '✓'; color: var(--green); font-weight: 900; flex-shrink: 0; }
.plan-no  { color: var(--muted); }
.plan-no::before { content: '○'; color: var(--muted); flex-shrink: 0; }
.plan-trial { font-size: 12px; color: var(--muted); text-align: center; margin-bottom: 14px; }

.btn-plan-secondary {
  width: 100%;
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}
.btn-plan-secondary:hover {
  background: var(--white);
  border-color: var(--orange);
  color: var(--orange);
}
.btn-plan-primary {
  width: 100%;
  background: linear-gradient(135deg, var(--orange), #FF8C42);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(255, 107, 44, 0.30);
}
.btn-plan-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 107, 44, 0.40);
}

/* ═══════════ CTA FINAL ═══════════ */
.cta-final {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange2) 50%, var(--yellow) 130%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: -120px; left: -80px;
  width: 320px; height: 320px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 50%;
  filter: blur(40px);
}
.cta-final::after {
  content: '';
  position: absolute;
  bottom: -160px; right: -100px;
  width: 380px; height: 380px;
  background: rgba(255, 217, 61, 0.20);
  border-radius: 50%;
  filter: blur(60px);
}
.cta-final-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}
.cta-final-title {
  font-size: clamp(32px, 5vw, 48px);
  color: var(--white);
  margin-bottom: 14px;
  font-weight: 900;
}
.cta-final-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 28px;
}
.cta-final .btn-primary {
  background: var(--white);
  color: var(--orange);
}
.cta-final .btn-primary:hover {
  background: var(--bg);
  transform: translateY(-2px);
}
.cta-final-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.92;
}
.cta-final-link:hover { opacity: 1; text-decoration: underline; }

/* ═══════════ FOOTER ═══════════ */
.footer {
  background: #1A1200;
  color: rgba(255, 255, 255, 0.85);
  padding: 56px 20px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  color: var(--yellow);
  margin-bottom: 6px;
}
.footer-logo span { color: var(--white); }
.footer-tagline { font-size: 13px; color: rgba(255, 255, 255, 0.55); }
.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--yellow); }
.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  max-width: 1200px;
  margin: 0 auto;
}
.footer-legal p { margin-bottom: 6px; }
.footer-copy { color: rgba(255, 255, 255, 0.30); }

/* ═══════════ BANDEAU CONNECTÉ ═══════════ */
.bandeau-connecte {
  background: linear-gradient(135deg, var(--green), #16a34a);
  color: var(--white);
  padding: 12px 20px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
.bandeau-lien { color: var(--white); text-decoration: underline; font-weight: 700; }
.bandeau-lien:hover { opacity: 0.9; }

/* ═══════════ RESPONSIVE ═══════════ */
@media (min-width: 640px) {
  .reassurance { grid-template-columns: repeat(3, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-features { grid-template-columns: repeat(2, 1fr); }
  .footer-nav { grid-template-columns: repeat(4, 1fr); }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-features { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 2fr; gap: 60px; }
}

@media (min-width: 1024px) {
  .hero { padding: 80px 20px 60px; }
  .hero-inner { grid-template-columns: 1.1fr 1fr; gap: 60px; }
  .section { padding: 96px 20px; }
}

/* ≥ 481px : on réaffiche le mockup hero et on retrouve le padding bas d'origine */
@media (min-width: 481px) {
  .hero-mockup { display: flex; }
  .hero { padding-bottom: 40px; }
}

/* ≥ 769px : on bascule en barre de navigation desktop (plus de burger / menu mobile) */
@media (min-width: 769px) {
  .nav-actions { display: flex; }
  .burger { display: none; }
  .mobile-menu.open { display: none; }
  .hero-actions { flex-direction: row; align-items: initial; }
  .hero-actions .btn-large { width: auto; }
}
