/* =========================================================
   CAMERIA — Design System
   Palette : Cloud White / Forest Green / Slate Dark
   ========================================================= */

/* --- Variables CSS --- */
:root {
  --bg:            #F6F8FB;
  --bg-dark:       #0F172A;
  --bg-card:       #FFFFFF;
  --accent:        #16A34A;
  --accent-hover:  #15803D;
  --accent-light:  #DCFCE7;
  --text:          #1E293B;
  --text-muted:    #4B5563;
  --text-on-dark:  #F1F5F9;
  --text-muted-dk: #94A3B8;
  --border:        #E2E8F0;
  --danger:        #EF4444;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius:     12px;
  --radius-sm:   6px;
  --shadow-card: 0 10px 25px rgba(0,0,0,0.05);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08);
  --transition:  0.25s ease;

  --container: 1100px;
  --nav-h:      70px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; }

/* --- Container --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── HEADER ─────────────────────────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}
#header.scrolled {
  background: rgba(246,248,251,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
#header > nav { height: var(--nav-h); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark { flex-shrink: 0; }
.logo-wordmark {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  text-shadow: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-cta a.btn { color: #fff !important; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  padding: 4px;
}

/* ─── BOUTONS ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  border: none;
  font-family: var(--font);
  line-height: 1;
}
.btn-primary {
  background: var(--accent);
  color: #FFFFFF;
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(22,163,74,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--text-muted);
  color: var(--text);
  transform: translateY(-1px);
}
/* Variante outline sur fond sombre */
.btn-outline-dark {
  background: transparent;
  color: var(--text-on-dark);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-outline-dark:hover {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

/* ─── SECTIONS — base ─────────────────────────────────────────────────────── */
section {
  padding: 88px 0;
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(22,163,74,0.25);
  background: rgba(22,163,74,0.06);
  padding: 5px 13px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.section-label--dark {
  color: #86EFAC;
  border-color: rgba(134,239,172,0.3);
  background: rgba(134,239,172,0.08);
}
h2 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}
h2.on-dark { color: var(--text-on-dark); }
.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}
.section-header p.on-dark { color: var(--text-muted-dk); }
.section-header strong { font-weight: 600; color: var(--text); }
.section-header strong.on-dark { color: var(--text-on-dark); }

/* ─── HERO ─────────────────────────────────────────────────────────────────── */
#hero {
  background: var(--bg);
  padding: 0 0 88px;
  overflow: visible;
}
.hero-bg { display: none; }

#hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 22px;
  letter-spacing: -0.025em;
}
#hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 10px;
  max-width: 480px;
}
.hero-sub-badges {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}
.hero-sub-badge {
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-sub-badge::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}
.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 28px 0 0;
  animation: hero-bounce 2.2s ease-in-out infinite;
}
@keyframes hero-bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(7px); }
}
.hero-label { margin-bottom: 20px; }
.label-sep { opacity: 0.5; }
.cf-notif-time { display: block; color: var(--text-muted-dk); font-size: 0.65rem; margin-top: 2px; }

/* ─── PROBLÈME ───────────────────────────────────────────────────────────── */
#probleme {
  background: var(--bg-dark);
  padding: 88px 0;
}
#probleme .section-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
#probleme h2 {
  color: var(--text-on-dark);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 32px;
}
#probleme .probleme-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
#probleme p {
  color: var(--text-muted-dk);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ─── SOLUTION ────────────────────────────────────────────────────────────── */
#solution {
  background: var(--bg);
  padding: 88px 0;
}
#solution .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.solution-text h2 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 24px;
}
.solution-text .solution-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.solution-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}
.solution-visual {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  text-align: center;
}
.solution-stat-value {
  display: block;
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.solution-stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}
.solution-stat-sub {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.solution-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: left;
}
.solution-check svg { flex-shrink: 0; color: var(--accent); }

/* ─── CONCEPT / FONCTIONNEMENT ──────────────────────────────────────────── */
#concept {
  background: var(--bg-dark);
  padding: 88px 0;
}
#concept .section-header h2 { color: var(--text-on-dark); }
#concept .section-header p  { color: var(--text-muted-dk); }

.connection-flow {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}
.cf-node {
  flex: 1;
  max-width: 300px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: border-color var(--transition);
}
.cf-node:hover { border-color: rgba(22,163,74,0.4); }
.cf-node-main {
  background: rgba(22,163,74,0.07);
  border-color: rgba(22,163,74,0.2);
}
.cf-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: var(--accent);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50%;
  margin-bottom: 16px;
}
.cf-icon { margin-bottom: 12px; }
.cf-label {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-on-dark);
  margin-bottom: 10px;
}
.cf-desc {
  font-size: 0.875rem;
  color: var(--text-muted-dk);
  line-height: 1.65;
}
.cf-arrow {
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 64px;
}

/* ─── BÉNÉFICES ──────────────────────────────────────────────────────────── */
#benefices {
  background: var(--bg);
  padding: 88px 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.08);
}
.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--accent-light);
  border-radius: 10px;
  margin-bottom: 16px;
  color: var(--accent);
}
.benefit-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.benefit-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ─── MODULES ─────────────────────────────────────────────────────────────── */
#modules {
  background: #F8FAFC;
  padding: 88px 0;
}
.module-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.module-card:hover { box-shadow: 0 18px 36px rgba(0,0,0,0.08); }
.module-protect {
  border-left: 3px solid var(--accent);
  margin-bottom: 24px;
}
.module-protect-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.module-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.badge-main {
  background: rgba(22,163,74,0.1);
  color: var(--accent);
}
.badge-option {
  background: rgba(100,116,139,0.09);
  color: var(--text-muted);
}
.module-icon-svg { margin: 16px 0 12px; }
.module-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.module-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.module-features { margin-top: 14px; }
.module-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.module-feature:last-child { border-bottom: none; }
.module-feature::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.module-protect-stat {
  text-align: center;
  padding: 28px 24px;
  background: rgba(22,163,74,0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(22,163,74,0.15);
  min-width: 130px;
}
.protect-stat-value {
  display: block;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}
.protect-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  max-width: 100px;
  text-align: center;
  line-height: 1.45;
  margin-top: 6px;
  display: block;
}
.modules-addons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}
.module-addon { margin-bottom: 0; }
.modules-footer {
  text-align: center;
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.modules-footer p {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.modules-footer a { color: var(--accent); font-weight: 500; }

/* ─── ROI ─────────────────────────────────────────────────────────────────── */
#roi {
  background: var(--bg-dark);
  padding: 88px 0;
}
#roi .section-header h2      { color: var(--text-on-dark); }
#roi .section-header p       { color: var(--text-muted-dk); }
#roi .section-header strong  { color: var(--text-on-dark); font-weight: 600; }

.roi-table-wrap {
  max-width: 840px;
  margin: 0 auto;
}
.roi-toggle {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-bottom: 14px;
}
.roi-toggle-btn {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(255,255,255,0.07);
  color: var(--text-muted-dk);
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
}
.roi-toggle-btn.active,
.roi-toggle-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.roi-intro-note {
  font-size: 0.82rem;
  color: rgba(148,163,184,0.75);
  margin-bottom: 12px;
  font-style: italic;
}
.roi-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-md);
}
.roi-table th {
  background: rgba(255,255,255,0.05);
  color: var(--text-on-dark);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.roi-table td {
  padding: 13px 20px;
  font-size: 0.9rem;
  color: var(--text-muted-dk);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  background: rgba(255,255,255,0.02);
}
.roi-table tr:last-child td { border-bottom: none; }
.roi-table tr:hover td { background: rgba(255,255,255,0.04); }
.roi-ca { color: var(--text-on-dark) !important; font-weight: 500; }
.roi-saving { color: #4ADE80 !important; font-weight: 700; }
.roi-row-hl td { background: rgba(22,163,74,0.09) !important; }
.roi-row-hl .roi-ca { color: #86EFAC !important; }
.roi-note {
  font-size: 0.77rem;
  color: rgba(148,163,184,0.65);
  margin-top: 16px;
  line-height: 1.65;
}
.roi-cta-wrap {
  text-align: center;
  margin-top: 36px;
}

/* ─── PREUVES / CRÉDIBILITÉ ─────────────────────────────────────────────── */
#preuves {
  background: var(--bg);
  padding: 88px 0;
}
.trust-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}
.trust-tech-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  box-shadow: var(--shadow-card);
}
.trust-tech-badge svg { color: var(--accent); }
.trust-quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trust-quote-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
.trust-quote-card-icon {
  width: 44px; height: 44px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}
.trust-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.trust-quote-sector {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── ÉTHIQUE / CONFORMITÉ ──────────────────────────────────────────────── */
#ethique {
  background: #F0FDF4;
  padding: 88px 0;
}
.ethique-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.ethique-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid #BBF7D0;
}
.ethique-card-icon {
  width: 44px; height: 44px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}
.ethique-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.ethique-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}
.ethique-card p:last-child { margin-bottom: 0; }

/* ─── CONTACT ─────────────────────────────────────────────────────────────── */
#contact {
  background: var(--bg-dark);
  padding: 88px 0;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-on-dark);
  margin: 16px 0 16px;
  line-height: 1.28;
}
.contact-info > p {
  color: var(--text-muted-dk);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 28px;
}
.contact-what-you-get { margin-bottom: 24px; }
.contact-what-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted-dk);
  margin-bottom: 14px;
}
.promise-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #CBD5E1;
  line-height: 1.55;
}
.promise-item svg { flex-shrink: 0; margin-top: 1px; }
.contact-reassurance {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted-dk);
}
.contact-reassurance svg { flex-shrink: 0; color: var(--text-muted-dk); }

/* ─── FORMULAIRE ─────────────────────────────────────────────────────────── */
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-row .form-group { margin-bottom: 0; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #CBD5E1;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.9rem;
  font-family: var(--font);
  color: var(--text-on-dark);
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none;
}
.form-group input::placeholder { color: rgba(148,163,184,0.5); }
.form-group select option { background: var(--bg-dark); color: var(--text-on-dark); }
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.08);
}
.req { color: var(--danger); margin-left: 2px; }
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: #CBD5E1;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 16px; height: 16px;
  border-radius: 4px;
  flex-shrink: 0;
  padding: 0;
  cursor: pointer;
  accent-color: var(--accent);
}
.hp-field { display: none !important; }
.rgpd-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-muted-dk);
  line-height: 1.6;
  margin: 16px 0 20px;
}
.rgpd-consent input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0; margin-top: 3px;
  cursor: pointer; padding: 0;
  accent-color: var(--accent);
}
.rgpd-consent a { color: #86EFAC; }
.btn-submit {
  width: 100%;
  padding: 14px 24px;
  background: var(--accent);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font);
}
.btn-submit:hover:not(:disabled) {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(22,163,74,0.35);
}
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.spinner {
  display: none;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.btn-submit.loading .spinner { display: block; }
.btn-submit.loading .btn-text { opacity: 0.6; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-error {
  display: none;
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: #FCA5A5;
  line-height: 1.55;
}
.form-error.visible { display: block; }

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.footer-brand .logo-wordmark { color: var(--text-on-dark); }
.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted-dk);
  line-height: 1.6;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted-dk);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--text-on-dark); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy    { font-size: 0.8rem;  color: var(--text-muted-dk); }
.footer-compliance { font-size: 0.78rem; color: rgba(148,163,184,0.55); }

/* ─── PAGES LÉGALES (prose) ──────────────────────────────────────────────── */
.page-hero {
  background: var(--bg-dark);
  padding: calc(var(--nav-h) + 48px) 0 56px;
}
.page-hero .section-label { margin-bottom: 14px; }
.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}
.page-hero p {
  color: var(--text-muted-dk);
  font-size: 0.9rem;
}
.prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}
.prose h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin: 36px 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.prose h2:first-child { margin-top: 0; }
.prose p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 12px;
}
.prose p strong { color: var(--text); font-weight: 600; }
.prose ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 12px;
}
.prose ul li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 4px;
}
.prose ul li strong { color: var(--text); }
.prose a { color: var(--accent); }
.prose a:hover { color: var(--accent-hover); }
.prose em { color: var(--text-muted); font-style: italic; }
.prose-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* ─── ANIMATIONS ─────────────────────────────────────────────────────────── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-illustration { width: 380px !important; }
}

@media (max-width: 960px) {
  #solution .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .benefits-grid { grid-template-columns: 1fr; }
  .ethique-grid  { grid-template-columns: 1fr; }
  .trust-quotes-grid { grid-template-columns: 1fr; }
  .modules-addons-grid { grid-template-columns: 1fr; }
  .module-protect-inner { grid-template-columns: 1fr; }
  .protect-stat-value { font-size: 2.5rem; }
  #hero > .container {
    flex-direction: column !important;
  }
  .hero-content  { max-width: 100%; text-align: center; }
  .hero-subtitle { max-width: 100%; }
  .hero-sub-badges { justify-content: center; }
  .hero-ctas  { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-illustration { width: 100% !important; max-width: 480px !important; }
  .cf-notif   { top: -10px !important; right: 0 !important; }
}

@media (max-width: 768px) {
  h2 { font-size: 1.8rem; }
  #hero h1 { font-size: 2.2rem; }
  #probleme h2  { font-size: 1.8rem; }
  .solution-text h2 { font-size: 1.8rem; }
  section { padding: 64px 0; }

  .connection-flow {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .cf-arrow {
    margin-top: 0;
    transform: rotate(90deg);
    padding: 8px 0;
  }
  .cf-node { max-width: 100%; width: 100%; }

  .form-row { grid-template-columns: 1fr; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(246,248,251,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }

  .roi-table-wrap { overflow-x: auto; }
  .roi-table { min-width: 500px; }

  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-trust { gap: 10px; }
  .contact-form { padding: 20px 16px; }
}
