/* ─── KONFIG — Landing Page Theme ───────────────────────── */
:root {
  --bg:        #0c0c10;
  --surface:   #141418;
  --surface2:  #1c1c22;
  --border:    rgba(255,255,255,0.07);
  --border2:   rgba(255,255,255,0.12);
  --accent:    #e8ff6e;
  --accent2:   #b8e000;
  --text:      #f0ede8;
  --muted:     #888899;
  --danger:    #ff4d4d;
  --success:   #4ade80;
  --max-width: 1080px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─────────────────────────────────────────────── */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(12,12,16,0.92);
  backdrop-filter: blur(12px);
  z-index: 100;
}
.logo {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--accent);
  letter-spacing: -0.5px;
  text-decoration: none;
}
.logo span { color: var(--text); opacity: 0.5; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--bg);
  background: var(--accent);
  padding: 10px 22px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.nav-cta:hover { background: var(--accent2); transform: translateY(-1px); }

/* ─── NAV DROPDOWN ────────────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { font-size: 14px; color: var(--muted); text-decoration: none; transition: color 0.2s; cursor: pointer; display: flex; align-items: center; gap: 4px; background: none; border: none; font-family: 'DM Sans', sans-serif; padding: 0; }
.nav-dropdown-toggle:hover { color: var(--text); }
.nav-dropdown-toggle svg { width: 12px; height: 12px; transition: transform 0.2s; }

.nav-dropdown-menu { display: none; position: absolute; top: calc(100% + 8px); left: 0; background: rgba(12,12,16,0.98); backdrop-filter: blur(12px); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 6px; min-width: 200px; z-index: 200; box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-item { display: block; padding: 8px 12px; font-size: 13px; color: var(--muted); text-decoration: none; border-radius: 4px; transition: all 0.15s; white-space: nowrap; }
.nav-dropdown-item:hover { background: var(--surface2); color: var(--text); }
.nav-mobile-section { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); padding: 8px 12px 4px; margin-top: 4px; }

/* ─── HERO ─────────────────────────────────────────────── */
.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 40px 80px;
}
.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(232,255,110,0.1);
  border: 1px solid rgba(232,255,110,0.2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero h1 {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 6vw, 70px);
  line-height: 1.04;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--accent); }
.hero .lede {
  font-size: 19px;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 60px; }
.btn-hero-primary {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--bg);
  background: var(--accent);
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-hero-primary:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(232,255,110,0.25); }
.btn-hero-secondary {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-hero-secondary:hover { color: var(--text); }
.hero-proof {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}
.hero-proof span { display: flex; align-items: center; gap: 6px; }
.hero-proof span::before { content: '✓'; color: var(--accent); font-weight: 700; }

/* ─── SIMULATOR PREVIEW ─────────────────────────────────── */
.sim-preview {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 16px;
  overflow: hidden;
  margin: 60px 40px;
  max-width: calc(var(--max-width) - 80px);
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 32px 64px rgba(0,0,0,0.5);
}
.sim-preview-bar {
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sim-dot { width: 10px; height: 10px; border-radius: 50%; }
.sim-dot.red { background: #ff5f57; }
.sim-dot.yellow { background: #febc2e; }
.sim-dot.green { background: #28c840; }
.sim-preview-body {
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
@media (max-width: 700px) { .sim-preview-body { grid-template-columns: 1fr; } }
.sim-preview-left .sim-step-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 8px;
}
.sim-preview-left .sim-q {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}
.sim-preview-cards { display: flex; flex-direction: column; gap: 10px; }
.sim-preview-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 24px 28px;
  font-size: 17px;
  letter-spacing: -0.2px;
  min-height: 64px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
}
.sim-preview-card.selected {
  border-color: var(--accent);
  background: rgba(232,255,110,0.05);
}
.sim-preview-card .rate { margin-left: auto; font-size: 11px; color: var(--accent); font-weight: 700; }
.sim-preview-right { display: flex; flex-direction: column; gap: 12px; }
.sim-result-card {
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 16px 20px;
}
.sim-result-card .rc-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.sim-result-card .rc-val {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.sim-result-card .rc-val.accent { color: var(--accent); }
.sim-result-card .rc-val.danger { color: #ff4d4d; }
.sim-result-card .rc-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.sim-preview-cta {
  text-align: center;
  padding: 24px;
  border-top: 1px solid var(--border);
  background: rgba(232,255,110,0.03);
}
.sim-preview-cta a {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--bg);
  background: var(--accent);
  padding: 12px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.sim-preview-cta a:hover { background: var(--accent2); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(232,255,110,0.25); }
.sim-preview-cta p { font-size: 12px; color: var(--muted); margin-top: 10px; }

/* ─── SIM PREVIEW EXTRAS ─────────────────────────────────── */
.sim-preview-bar-steps {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 16px;
  flex: 1;
}
.sim-bar-step {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  padding: 2px 8px;
  border-radius: 4px;
  transition: all 0.2s;
}
.sim-bar-step.active {
  background: rgba(232,255,110,0.12);
  color: var(--accent);
}
.sim-result-card-net {
  border-color: rgba(232,255,110,0.15) !important;
  background: rgba(232,255,110,0.03) !important;
}
.rc-val-net {
  font-size: 28px !important;
  letter-spacing: -0.5px;
}
.sim-preview-facturation {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: rgba(255,183,77,0.06);
  border-top: 1px solid rgba(255,183,77,0.15);
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
}
.sim-preview-facturation span:first-child { font-size: 14px; }
.sim-preview-facturation a {
  color: var(--warning);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}
.sim-preview-facturation a:hover { opacity: 0.8; }

/* ─── TJM TEASER ─────────────────────────────────────────── */
.tjm-teaser {
  max-width: 680px;
  margin: 16px auto 0;
  background: rgba(232,255,110,0.04);
  border: 1px solid rgba(232,255,110,0.15);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.tjm-teaser-left { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 200px; }
.tjm-teaser-icon { font-size: 28px; flex-shrink: 0; }
.tjm-teaser-title { font-family: 'Nunito Sans', sans-serif; font-weight: 700; font-size: 15px; color: var(--text); margin-bottom: 4px; }
.tjm-teaser-sub { font-size: 13px; color: var(--muted); line-height: 1.5; }
.tjm-teaser-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: var(--bg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
  flex-shrink: 0;
}
.tjm-teaser-btn:hover { background: var(--accent2); transform: translateY(-1px); }
@media (max-width: 640px) {
  .tjm-teaser { flex-direction: column; margin: 12px 20px 0; }
  .tjm-teaser-btn { width: 100%; justify-content: center; }
}

/* ─── PROBLEM ───────────────────────────────────────────── */
.problem {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 40px;
}
.problem-inner { max-width: var(--max-width); margin: 0 auto; }

/* Quote block */
.problem-quote-block {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.problem-quote-mark {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 80px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.25;
  line-height: 0.6;
  margin-bottom: 24px;
}
.problem-quote-text {
  font-family: 'Nunito Sans', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.problem-quote-text em {
  font-style: normal;
  color: var(--accent);
}
.problem-quote-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

/* Pills */
.problem-pills {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.problem-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}
.pill-icon { font-size: 15px; flex-shrink: 0; }
@media (max-width: 700px) {
  .problem-pills { flex-direction: column; align-items: center; }
  .problem-pill { white-space: normal; text-align: center; }
}

/* ─── HOW ───────────────────────────────────────────────── */
.how { padding: 80px 40px; }
.how-inner { max-width: var(--max-width); margin: 0 auto; }
.how h2 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 48px;
}
.steps { display: flex; flex-direction: column; }
.step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.25;
  min-width: 70px;
  line-height: 1;
}
.step-content h3 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}
.step-content p { color: var(--muted); font-size: 15px; max-width: 520px; line-height: 1.65; }
.step-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: rgba(232,255,110,0.08);
  border: 1px solid rgba(232,255,110,0.15);
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 10px;
}
@media (max-width: 640px) {
  .step { flex-direction: column; gap: 12px; }
  .step-num { font-size: 32px; min-width: auto; }
}

/* ─── FEATURES ──────────────────────────────────────────── */
.features {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 40px;
}
.features-inner { max-width: var(--max-width); margin: 0 auto; }
.features h2 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 48px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 640px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.2s ease;
}
.feature-card:hover { border-color: rgba(232,255,110,0.2); }
.feature-icon { font-size: 28px; margin-bottom: 14px; }
.feature-card h3 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-card p { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ─── CLOSING ────────────────────────────────────────────── */
.closing { padding: 100px 40px; text-align: center; }
.closing-inner { max-width: 640px; margin: 0 auto; }
.closing h2 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.closing h2 .accent { color: var(--accent); }
.closing-sub { color: var(--muted); font-size: 16px; line-height: 1.7; margin-bottom: 36px; }
.closing-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-closing-primary {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--bg);
  background: var(--accent);
  padding: 15px 36px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-closing-primary:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(232,255,110,0.25); }
.btn-closing-note { font-size: 13px; color: var(--muted); margin-top: 16px; }

/* ─── TRICOLOR BAR (French identity) ─────────────────────── */
.tricolor-bar {
  height: 3px;
  background: linear-gradient(to right, #002395 33%, #FFFFFF 33%, #FFFFFF 66%, #ED2939 66%);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 40px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
.footer-brand {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
}
.footer-tagline { font-size: 14px; color: var(--muted); }
.footer-links { font-size: 13px; color: var(--muted); }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--text); }
.footer-meta { font-size: 12px; color: var(--muted); opacity: 0.7; }
.footer-meta a { color: var(--muted); text-decoration: none; }
.footer-meta a:hover { color: var(--text); }
.footer-france { font-size: 13px; color: var(--muted); margin-top: 4px; }
.footer-tricolor {
  height: 3px;
  width: 120px;
  background: linear-gradient(to right, #002395 33%, #FFFFFF 33%, #FFFFFF 66%, #ED2939 66%);
  border-radius: 2px;
  opacity: 0.4;
  margin-top: 8px;
}

/* ─── HAMBURGER MOBILE ───────────────────────────────────── */
.nav-hamburger{display:none;background:none;border:none;cursor:pointer;padding:4px;color:var(--text);}
.nav-hamburger svg{width:22px;height:22px;display:block;}
.nav-mobile{display:none;position:absolute;top:100%;left:0;right:0;background:rgba(12,12,16,0.98);backdrop-filter:blur(12px);border-bottom:1px solid var(--border);padding:16px 20px;flex-direction:column;gap:4px;z-index:99;}
.nav-mobile.open{display:flex;}
.nav-mobile a{font-size:15px;color:var(--muted);text-decoration:none;padding:10px 12px;border-radius:var(--radius-sm);transition:all 0.2s;}
.nav-mobile a:hover{color:var(--text);background:var(--surface2);}
.nav-mobile .nav-mobile-cta{background:var(--accent);color:var(--bg);font-weight:700;text-align:center;margin-top:8px;border-radius:100px;}
.nav-mobile .nav-mobile-cta:hover{background:var(--accent2);}

@media (max-width: 640px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: block; }
  .hero, .problem, .how, .features, .closing, .site-footer { padding-left: 20px; padding-right: 20px; }
  .sim-preview { margin: 40px 20px; }
  .footer-inner { gap: 10px; }
}/* ─── KONFIG — Landing Page Theme ───────────────────────── */
:root {
  --bg:        #0c0c10;
  --surface:   #141418;
  --surface2:  #1c1c22;
  --border:    rgba(255,255,255,0.07);
  --border2:   rgba(255,255,255,0.12);
  --accent:    #e8ff6e;
  --accent2:   #b8e000;
  --text:      #f0ede8;
  --muted:     #888899;
  --danger:    #ff4d4d;
  --success:   #4ade80;
  --max-width: 1080px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif; /* body font */
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─────────────────────────────────────────────── */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(12,12,16,0.92);
  backdrop-filter: blur(12px);
  z-index: 100;
}
.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-stretch: normal;
  font-size: 22px;
  color: var(--accent);
  letter-spacing: -0.5px;
  text-decoration: none;
}
.logo span { color: var(--text); opacity: 0.5; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  font-family: 'DM Sans', sans-serif; /* body font */
  font-size: 14px;
  font-weight: 700;
  color: var(--bg);
  background: var(--accent);
  padding: 10px 22px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.nav-cta:hover { background: var(--accent2); transform: translateY(-1px); }

/* ─── HERO ─────────────────────────────────────────────── */
.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 40px 80px;
}
.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(232,255,110,0.1);
  border: 1px solid rgba(232,255,110,0.2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-stretch: normal;
  font-size: clamp(40px, 6vw, 70px);
  line-height: 1.04;
  letter-spacing: -2.5px;
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--accent); }
.hero .lede {
  font-size: 19px;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 60px; }
.btn-hero-primary {
  font-family: 'DM Sans', sans-serif; /* body font */
  font-size: 16px;
  font-weight: 700;
  color: var(--bg);
  background: var(--accent);
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-hero-primary:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(232,255,110,0.25); }
.btn-hero-secondary {
  font-family: 'DM Sans', sans-serif; /* body font */
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-hero-secondary:hover { color: var(--text); }
.hero-proof {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}
.hero-proof span { display: flex; align-items: center; gap: 6px; }
.hero-proof span::before { content: '✓'; color: var(--accent); font-weight: 700; }

/* ─── SIMULATOR PREVIEW ─────────────────────────────────── */
.sim-preview {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 16px;
  overflow: hidden;
  margin: 60px 40px;
  max-width: calc(var(--max-width) - 80px);
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 32px 64px rgba(0,0,0,0.5);
}
.sim-preview-bar {
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sim-dot { width: 10px; height: 10px; border-radius: 50%; }
.sim-dot.red { background: #ff5f57; }
.sim-dot.yellow { background: #febc2e; }
.sim-dot.green { background: #28c840; }
/* URL text removed from sim-preview-bar — window dots only */
.sim-preview-body {
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
@media (max-width: 700px) { .sim-preview-body { grid-template-columns: 1fr; } }
.sim-preview-left .sim-step-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 8px;
}
.sim-preview-left .sim-q {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  font-stretch: normal;
  margin-bottom: 16px;
}
.sim-preview-cards { display: flex; flex-direction: column; gap: 8px; }
.sim-preview-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
}
.sim-preview-card.selected {
  border-color: var(--accent);
  background: rgba(232,255,110,0.05);
}
.sim-preview-card .rate { margin-left: auto; font-size: 11px; color: var(--accent); font-weight: 700; }
.sim-preview-right { display: flex; flex-direction: column; gap: 12px; }
.sim-result-card {
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 16px 20px;
}
.sim-result-card .rc-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.sim-result-card .rc-val {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 800;
  font-stretch: normal;
  letter-spacing: -0.5px;
}
.sim-result-card .rc-val.accent { color: var(--accent); }
.sim-result-card .rc-val.danger { color: #ff4d4d; }
.sim-result-card .rc-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.sim-preview-cta {
  text-align: center;
  padding: 24px;
  border-top: 1px solid var(--border);
  background: rgba(232,255,110,0.03);
}
.sim-preview-cta a {
  font-family: 'DM Sans', sans-serif; /* body font */
  font-size: 16px;
  font-weight: 700;
  color: var(--bg);
  background: var(--accent);
  padding: 12px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.sim-preview-cta a:hover { background: var(--accent2); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(232,255,110,0.25); }
.sim-preview-cta p { font-size: 12px; color: var(--muted); margin-top: 10px; }

/* ─── PROBLEM ───────────────────────────────────────────── */
.problem {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 40px;
}
.problem-inner { max-width: var(--max-width); margin: 0 auto; }
.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  font-stretch: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 32px;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 700px) { .stat-grid { grid-template-columns: 1fr; } }
.stat-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  font-stretch: normal;
  letter-spacing: -1.5px;
  color: var(--accent);
  margin-bottom: 8px;
}
.stat-desc { color: var(--muted); font-size: 14px; line-height: 1.5; }
.problem-statement {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  font-stretch: normal;
  color: var(--text);
  line-height: 1.45;
  max-width: 680px;
  letter-spacing: -0.5px;
}

/* ─── HOW ───────────────────────────────────────────────── */
.how { padding: 80px 40px; }
.how-inner { max-width: var(--max-width); margin: 0 auto; }
.how h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  font-stretch: normal;
  letter-spacing: -1.5px;
  margin-bottom: 48px;
}
.steps { display: flex; flex-direction: column; }
.step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.25;
  min-width: 70px;
  line-height: 1;
}
.step-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  font-stretch: normal;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}
.step-content p { color: var(--muted); font-size: 15px; max-width: 520px; line-height: 1.65; }
.step-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: rgba(232,255,110,0.08);
  border: 1px solid rgba(232,255,110,0.15);
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 10px;
}
@media (max-width: 640px) {
  .step { flex-direction: column; gap: 12px; }
  .step-num { font-size: 32px; min-width: auto; }
}

/* ─── FEATURES ──────────────────────────────────────────── */
.features {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 40px;
}
.features-inner { max-width: var(--max-width); margin: 0 auto; }
.features h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  font-stretch: normal;
  letter-spacing: -1.5px;
  margin-bottom: 48px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 640px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.2s ease;
}
.feature-card:hover { border-color: rgba(232,255,110,0.2); }
.feature-icon { font-size: 28px; margin-bottom: 14px; }
.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  font-stretch: normal;
  margin-bottom: 8px;
}
.feature-card p { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ─── CLOSING ────────────────────────────────────────────── */
.closing { padding: 100px 40px; text-align: center; }
.closing-inner { max-width: 640px; margin: 0 auto; }
.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800;
  font-stretch: normal;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.closing h2 .accent { color: var(--accent); }
.closing-sub { color: var(--muted); font-size: 16px; line-height: 1.7; margin-bottom: 36px; }
.closing-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-closing-primary {
  font-family: 'DM Sans', sans-serif; /* body font */
  font-size: 16px;
  font-weight: 700;
  color: var(--bg);
  background: var(--accent);
  padding: 15px 36px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-closing-primary:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(232,255,110,0.25); }
.btn-closing-note { font-size: 13px; color: var(--muted); margin-top: 16px; }

/* ─── TRICOLOR BAR (French identity) ─────────────────────── */
.tricolor-bar {
  height: 3px;
  background: linear-gradient(to right, #002395 33%, #FFFFFF 33%, #FFFFFF 66%, #ED2939 66%);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 40px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  font-stretch: normal;
  color: var(--accent);
}
.footer-tagline { font-size: 14px; color: var(--muted); }
.footer-links { font-size: 13px; color: var(--muted); }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--text); }
.footer-meta { font-size: 12px; color: var(--muted); opacity: 0.7; }
.footer-meta a { color: var(--muted); text-decoration: none; }
.footer-meta a:hover { color: var(--text); }
.footer-france { font-size: 13px; color: var(--muted); margin-top: 4px; }
.footer-tricolor {
  height: 3px;
  width: 120px;
  background: linear-gradient(to right, #002395 33%, #FFFFFF 33%, #FFFFFF 66%, #ED2939 66%);
  border-radius: 2px;
  opacity: 0.4;
  margin-top: 8px;
}

@media (max-width: 640px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .hero, .problem, .how, .features, .closing, .site-footer { padding-left: 20px; padding-right: 20px; }
  .sim-preview { margin: 40px 20px; }
  .footer-inner { gap: 10px; }
}

/* ═══════════════════════════════════════════════════════
   QUICK WINS UX — micro-interactions & polish premium
   ═══════════════════════════════════════════════════════ */

/* Transitions globales fluides */
*, *::before, *::after { box-sizing: border-box; }

/* Cartes sim-preview — élévation au hover */
.sim-preview-card {
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color 0.2s ease,
              box-shadow 0.2s ease !important;
}
.sim-preview-card:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25) !important;
}
.sim-preview-card.selected {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(232,255,110,0.15) !important;
}

/* Boutons hero — rebond élastique */
.btn-hero-primary {
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.2s ease,
              box-shadow 0.2s ease !important;
}
.btn-hero-primary:active { transform: scale(0.97) !important; }

.btn-hero-secondary {
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.15s ease !important;
}
.btn-hero-secondary:hover { transform: translateY(-1px) !important; }

/* Nav CTA */
.nav-cta {
  transition: background 0.2s ease, transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}
.nav-cta:active { transform: scale(0.97) !important; }

/* TJM teaser bloc */
.tjm-teaser {
  transition: border-color 0.2s ease, background 0.2s ease !important;
}
.tjm-teaser:hover {
  border-color: rgba(232,255,110,0.3) !important;
  background: rgba(232,255,110,0.06) !important;
}
.tjm-teaser-btn {
  transition: background 0.2s ease, transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}
.tjm-teaser-btn:active { transform: scale(0.97) !important; }

/* Closing CTA */
.btn-closing-primary {
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.2s ease,
              box-shadow 0.2s ease !important;
}
.btn-closing-primary:active { transform: scale(0.97) !important; }

/* Features cards hover */
.feature-card {
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color 0.2s ease,
              box-shadow 0.2s ease !important;
}
.feature-card:hover {
  transform: translateY(-3px) !important;
  border-color: rgba(232,255,110,0.2) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2) !important;
}

/* Animations d'apparition au scroll */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in {
  animation: fadeSlideUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.animate-in-delay-1 { animation-delay: 0.1s; opacity: 0; }
.animate-in-delay-2 { animation-delay: 0.2s; opacity: 0; }
.animate-in-delay-3 { animation-delay: 0.3s; opacity: 0; }

/* Focus rings améliorés */
input:focus, select:focus, textarea:focus, button:focus-visible {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(232,255,110,0.15) !important;
}

/* ─── SCROLL REVEAL (fade-in-up + blur) ──────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(4px);
  transition: opacity 0.65s ease, transform 0.65s ease, filter 0.65s ease;
  will-change: opacity, transform, filter;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0px);
}

/* Désactive le flou sur mobile pour les perfs */
@media (max-width: 640px) {
  .reveal {
    filter: none;
    transition: opacity 0.55s ease, transform 0.55s ease;
  }
}

/* ─── SPOTLIGHT EFFECT ────────────────────────────────── */
.spotlight {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(
    600px circle at var(--mx, -9999px) var(--my, -9999px),
    rgba(232, 255, 110, 0.045) 0%,
    transparent 70%
  );
}

/* ─── SCROLL LINES — lignes verticales animées ────────── */
.scroll-line {
  position: fixed;
  top: 0;
  width: 1px;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.scroll-line::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 1px;
  height: 60%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(232, 255, 110, 0) 0%,
    rgba(232, 255, 110, 0.5) 50%,
    rgba(232, 255, 110, 0) 100%
  );
  animation: scrollLineDown 3s ease-in-out infinite;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    rgba(232, 255, 110, 0.08) 0px,
    rgba(232, 255, 110, 0.08) 4px,
    transparent 4px,
    transparent 12px
  );
}
.scroll-line-left  { left: calc(50% - 680px); }
.scroll-line-right { right: calc(50% - 680px); }

@keyframes scrollLineDown {
  0%   { top: -60%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* Délai décalé sur la ligne droite */
.scroll-line-right::before {
  animation-delay: 1.5s;
}

/* Masquer sur mobile — trop étroit */
@media (max-width: 1400px) {
  .scroll-line { display: none; }
}
