/* ============================================
   SITE VITRINE — OPTIGEST
   Styles spécifiques à la landing page
   ============================================ */

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
section { padding: 96px 0; }
section.tight { padding: 56px 0; }

/* =========================== NAV =========================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--nav-bg, rgba(251, 246, 238, 0.88));
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--border-soft);
}
:root[data-theme="dark"] .nav { --nav-bg: rgba(21, 18, 14, 0.85); }

.nav-inner { display: flex; align-items: center; gap: 28px; height: 68px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; flex-shrink: 0; }
.brand-name {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.015em;
  font-variation-settings: 'opsz' 144;
  line-height: 1;
}
.brand-name em { font-style: italic; color: var(--terra-500); font-weight: 500; }
.brand-sub {
  display: block;
  font-family: var(--font-mono); font-size: 9.5px;
  color: var(--text-soft); letter-spacing: 0.14em;
  text-transform: uppercase; margin-top: 3px;
}
.nav-links { display: flex; align-items: center; gap: 28px; margin-left: 28px; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none; font-size: 14px; font-weight: 500;
  transition: color var(--t-fast);
}
.nav-links a:hover { color: var(--text); text-decoration: none; }
.nav-spacer { flex: 1; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--terra-500);
  color: #FFFAF1;
  border-radius: 10px;
  font-weight: 600; font-size: 13.5px;
  text-decoration: none;
  transition: all var(--t-fast);
}
.nav-cta:hover { background: var(--terra-400); text-decoration: none; }
.nav-ghost {
  color: var(--text); font-size: 13.5px; font-weight: 600;
  text-decoration: none;
}
.nav-ghost:hover { color: var(--terra-500); text-decoration: none; }

.theme-toggle {
  display: inline-grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  transition: all var(--t-fast);
}
.theme-toggle:hover { border-color: var(--terra-300); color: var(--terra-500); }
.theme-toggle svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 1.8; fill: none; }
.theme-toggle .icon-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: block; }

@media (max-width: 880px) { .nav-links { display: none; } }

/* =========================== HERO =========================== */
.hero { position: relative; padding: 80px 0 64px; overflow: hidden; }
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(229,181,71,0.22), transparent 40%),
    radial-gradient(circle at 88% 100%, rgba(176,85,47,0.16), transparent 50%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 980px) { .hero-inner { grid-template-columns: 1fr; gap: 40px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px; font-weight: 700;
  color: var(--terra-500);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px 6px 8px;
  background: var(--terra-50);
  border-radius: 999px;
  border: 1px solid var(--terra-100);
  margin-bottom: 20px;
}
:root[data-theme="dark"] .eyebrow { background: var(--primary-soft); border-color: rgba(197, 107, 67, 0.3); }
.eyebrow::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--terra-500);
  box-shadow: 0 0 0 3px rgba(176,85,47,0.18);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
  font-variation-settings: 'opsz' 144;
  color: var(--text);
  margin: 0;
}
.hero h1 em { font-style: italic; color: var(--terra-500); font-weight: 500; }
@media (max-width: 1100px) { .hero h1 { font-size: 56px; } }
@media (max-width: 600px)  { .hero h1 { font-size: 44px; } }

.hero-lead {
  margin: 32px 0 32px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 540px;
}
.hero-lead em { color: var(--terra-500); font-weight: 500; font-style: italic; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  height: 52px; padding: 0 24px;
  background: var(--terra-500);
  color: #FFFAF1;
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-weight: 600; font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 4px 12px rgba(176,85,47,0.25);
  transition: all var(--t-fast);
}
.btn-primary:hover { background: var(--terra-400); transform: translateY(-1px); text-decoration: none; color: #FFFAF1; }
.btn-primary svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  height: 52px; padding: 0 22px;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-weight: 600; font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--t-fast);
}
.btn-ghost:hover { border-color: var(--terra-300); color: var(--terra-500); text-decoration: none; }
.btn-ghost svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 1.8; fill: none; }

.hero-trust {
  margin-top: 36px;
  display: flex; align-items: center; gap: 16px;
  color: var(--text-muted); font-size: 13px;
}
.hero-trust-badge {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--terra-50);
  color: var(--terra-500);
  display: grid; place-items: center;
  flex-shrink: 0;
  border: 1px solid var(--terra-100);
}
:root[data-theme="dark"] .hero-trust-badge { background: var(--primary-soft); border-color: rgba(197, 107, 67, 0.3); }
.hero-trust-badge svg { width: 22px; height: 22px; }
.hero-trust b { color: var(--text); font-weight: 600; font-size: 14px; }
.hero-trust-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  margin-top: 2px;
}

/* === Hero device mockup === */
.hero-stage { position: relative; aspect-ratio: 5 / 4; display: grid; place-items: center; }
.device-laptop {
  width: 96%;
  aspect-ratio: 16/10;
  background: linear-gradient(180deg, #2A2520 0%, #1F1B17 100%);
  border-radius: 14px 14px 4px 4px;
  padding: 10px 10px 4px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 30px 60px rgba(45,35,20,0.25),
    0 8px 20px rgba(45,35,20,0.12);
  position: relative;
}
.device-laptop::after {
  content: '';
  position: absolute; left: -8%; right: -8%; bottom: -10px;
  height: 14px;
  background: linear-gradient(180deg, #2A2520 0%, #14110E 100%);
  border-radius: 0 0 14px 14px;
  box-shadow: 0 8px 20px rgba(45,35,20,0.15);
}
.device-laptop .screen {
  background: #FBF6EE;
  border-radius: 6px;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.device-phone {
  position: absolute;
  right: -2%; bottom: -6%;
  width: 22%;
  aspect-ratio: 9 / 19;
  background: #1F1B17;
  border-radius: 22px;
  padding: 6px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.1) inset,
    0 24px 48px rgba(45,35,20,0.35);
  z-index: 2;
  transform: rotate(4deg);
}
.device-phone .screen {
  background: #1F1B17;
  border-radius: 17px;
  aspect-ratio: 9/19;
  overflow: hidden;
  position: relative;
}
.device-phone::before {
  content: '';
  position: absolute;
  top: 11px; left: 50%; transform: translateX(-50%);
  width: 26%; height: 12px;
  background: #0B0907;
  border-radius: 999px;
  z-index: 3;
}

/* ----- mini screens inside devices ----- */
.mini-svg { display: block; width: 100%; height: 100%; }
.phone-svg { display: block; width: 100%; height: 100%; }
.mini-app { display: grid; grid-template-columns: 56px 1fr; height: 100%; font-family: var(--font-body); }
.mini-side { background: #1F1B17; padding: 14px 8px; display: flex; flex-direction: column; gap: 4px; }
.mini-logo {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--terra-500), var(--bread-300));
  margin: 0 auto 14px;
}
.mini-nav-it {
  display: grid; grid-template-columns: 12px 1fr;
  gap: 6px; height: 22px; align-items: center;
  padding: 0 6px; border-radius: 6px;
  color: rgba(245,238,224,0.5);
  position: relative;
}
.mini-nav-it i { width: 12px; height: 2px; background: currentColor; border-radius: 1px; justify-self: center; }
.mini-nav-it.active { background: rgba(229,181,71,0.12); color: var(--bread-200); }
.mini-nav-it.active::before {
  content: ''; position: absolute; width: 3px; height: 12px; background: var(--bread-300); border-radius: 2px;
  left: -2px; top: 5px;
}
.mini-content {
  background: #FBF6EE;
  padding: 14px 16px;
  display: flex; flex-direction: column; gap: 12px;
  overflow: hidden;
  color: var(--ink-700);
}
.mini-h {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600;
  color: var(--ink-700);
  letter-spacing: -0.01em;
  line-height: 1;
  font-variation-settings: 'opsz' 144;
}
.mini-h em { font-style: italic; color: var(--terra-500); font-weight: 500; }
.mini-sub { font-size: 8.5px; color: var(--ink-300); }
.mini-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.mini-kpi {
  background: #FFFAF1;
  border: 1px solid #EFE3CB;
  border-radius: 6px;
  padding: 6px 7px;
  position: relative; overflow: hidden;
}
.mini-kpi::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--clr, var(--terra-500));
}
.mini-kpi .l { font-size: 6px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-300); font-weight: 600; }
.mini-kpi .v {
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  color: var(--ink-700); letter-spacing: -0.02em; font-variant-numeric: tabular-nums;
  margin-top: 2px; line-height: 1;
}
.mini-chart {
  background: #FFFAF1;
  border: 1px solid #EFE3CB;
  border-radius: 8px;
  padding: 10px;
  flex: 1;
  display: flex; flex-direction: column; gap: 6px;
  min-height: 0;
}
.mini-chart .h { font-size: 8px; color: var(--ink-300); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.mini-bars { display: flex; align-items: flex-end; gap: 5px; flex: 1; min-height: 0; }
.mini-bars i { flex: 1; background: var(--terra-200); border-radius: 2px 2px 0 0; min-width: 4px; }
.mini-bars i.tall { background: var(--terra-500); }
.mini-bars i.gold { background: var(--bread-300); }

/* phone mini */
.phone-home {
  height: 100%;
  background: #1A1611;
  color: var(--sand-100);
  padding: 24px 12px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 14px;
}
.phone-time { font-family: var(--font-mono); font-size: 8px; color: var(--sand-200); opacity: 0.6; text-align: center; }
.phone-greet {
  font-family: var(--font-display); font-size: 12px; color: var(--sand-50);
  font-variation-settings: 'opsz' 36; font-weight: 600;
  line-height: 1.1;
}
.phone-greet em { color: var(--bread-300); font-style: italic; font-weight: 500; }
.phone-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.phone-tile {
  background: rgba(245,238,224,0.06);
  border: 1px solid rgba(245,238,224,0.06);
  border-radius: 8px;
  padding: 8px;
  aspect-ratio: 1;
  display: flex; flex-direction: column; justify-content: space-between;
}
.phone-tile .ico { width: 14px; height: 14px; background: var(--clr, var(--terra-400)); border-radius: 4px; }
.phone-tile .lbl {
  font-size: 8px; font-weight: 600; color: var(--sand-50);
  font-family: var(--font-display); font-variation-settings: 'opsz' 36;
}

/* =========================== TRUST BAR =========================== */
.trust-bar { background: var(--ink-700); color: var(--sand-100); padding: 28px 0; position: relative; overflow: hidden; }
.trust-inner { display: grid; grid-template-columns: auto repeat(4, 1fr); gap: 32px; align-items: center; }
.trust-inner-3 { grid-template-columns: auto repeat(3, 1fr); }
@media (max-width: 880px) {
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-inner-3 { grid-template-columns: repeat(2, 1fr); }
  .trust-inner .trust-h, .trust-inner-3 .trust-h { grid-column: 1 / -1; }
}
.trust-h {
  font-size: 11.5px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(245,238,224,0.45);
  max-width: 140px;
  line-height: 1.4;
}
.trust-stat {
  display: flex; flex-direction: column; gap: 2px;
  border-left: 1px solid rgba(245,238,224,0.1);
  padding-left: 22px;
}
.trust-stat .v {
  font-family: var(--font-display); font-size: 32px;
  font-weight: 600; letter-spacing: -0.025em;
  color: var(--sand-50);
  font-variation-settings: 'opsz' 144;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.trust-stat .v em { font-style: italic; color: var(--bread-300); font-weight: 500; }
.trust-stat .l { font-size: 11.5px; color: rgba(245,238,224,0.6); margin-top: 2px; }

/* =========================== SECTION HEADERS =========================== */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11.5px; font-weight: 700;
  color: var(--terra-500);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-h {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
  font-variation-settings: 'opsz' 144;
  margin: 0 0 16px;
  max-width: 18ch;
}
.section-h em { font-style: italic; color: var(--terra-500); font-weight: 500; }
@media (max-width: 600px) { .section-h { font-size: 36px; } }
.section-lead {
  color: var(--text-muted);
  font-size: 17px; line-height: 1.55;
  max-width: 62ch;
  margin: 0;
}

/* =========================== FEATURE PILLARS =========================== */
.pillars {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 56px; }
@media (max-width: 980px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pillars-grid { grid-template-columns: 1fr; } }

.pillar {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 28px 26px;
  display: flex; flex-direction: column;
  gap: 14px;
  transition: all var(--t-fast);
}
.pillar:hover {
  border-color: var(--terra-300);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(45,35,20,0.08);
}
.pillar-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--terra-50);
  color: var(--terra-500);
  display: grid; place-items: center;
}
.pillar:nth-child(2) .pillar-ico { background: var(--bread-50); color: var(--bread-500); }
.pillar:nth-child(3) .pillar-ico { background: var(--pistache-50); color: var(--pistache-500); }
.pillar:nth-child(4) .pillar-ico { background: var(--blueb-50); color: var(--blueb-400); }
:root[data-theme="dark"] .pillar-ico { background: var(--primary-soft); }
:root[data-theme="dark"] .pillar:nth-child(2) .pillar-ico { background: var(--warning-soft); }
:root[data-theme="dark"] .pillar:nth-child(3) .pillar-ico { background: var(--success-soft); }
:root[data-theme="dark"] .pillar:nth-child(4) .pillar-ico { background: var(--info-soft); }
.pillar-ico svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.pillar h3 {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0;
  line-height: 1.2;
  font-variation-settings: 'opsz' 36;
}
.pillar p { color: var(--text-muted); font-size: 14px; line-height: 1.55; margin: 0; }
.pillar-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed var(--border-soft);
}
.pillar-list li {
  font-size: 13px; color: var(--ink-400);
  display: flex; align-items: center; gap: 8px;
}
:root[data-theme="dark"] .pillar-list li { color: var(--text-muted); }
.pillar-list li::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--terra-400);
  flex-shrink: 0;
}

/* =========================== AI FEATURES =========================== */
.ai {
  background:
    radial-gradient(circle at 18% 0%, rgba(229,181,71,0.10), transparent 45%),
    radial-gradient(circle at 82% 100%, rgba(176,85,47,0.08), transparent 55%),
    var(--bg);
  border-top: 1px solid var(--border-soft);
}
.ai .section-eyebrow { color: var(--bread-400); }
.ai .section-eyebrow,
.ai .section-h,
.ai .section-lead {
  text-align: center;
  margin-left: auto; margin-right: auto;
}
.ai .section-h { max-width: none; }
.ai .section-lead { max-width: 68ch; margin-bottom: 56px; }
.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 880px) { .ai-grid { grid-template-columns: 1fr; } }

.ai-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  padding: 36px 32px 32px;
  display: flex; flex-direction: column;
  gap: 16px;
  transition: all var(--t-fast);
  overflow: hidden;
}
.ai-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terra-500), var(--bread-300));
}
.ai-card:hover {
  border-color: var(--bread-300);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(45,35,20,0.08);
}
.ai-badge {
  position: absolute;
  top: 18px; right: 20px;
  background: var(--ink-700);
  color: var(--bread-300);
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--bread-400);
}
.ai-ico {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--terra-50), var(--bread-50));
  color: var(--terra-500);
  display: grid; place-items: center;
  border: 1px solid var(--terra-100);
}
:root[data-theme="dark"] .ai-ico {
  background: linear-gradient(135deg, var(--primary-soft), rgba(229,181,71,0.1));
  border-color: rgba(197, 107, 67, 0.3);
}
.ai-ico svg { width: 26px; height: 26px; }
.ai-card h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0;
  line-height: 1.2;
  font-variation-settings: 'opsz' 36;
  padding-right: 50px;
}
.ai-card h3 em { font-style: italic; color: var(--terra-500); font-weight: 500; }
.ai-card p {
  color: var(--text-muted);
  font-size: 14.5px; line-height: 1.6;
  margin: 0;
}
.ai-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px dashed var(--border-soft);
}
.ai-list li {
  font-size: 13.5px; color: var(--ink-400);
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.45;
}
:root[data-theme="dark"] .ai-list li { color: var(--text-muted); }
.ai-list li::before {
  content: '';
  flex-shrink: 0;
  width: 14px; height: 14px;
  margin-top: 2px;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--bread-300) 3px, transparent 3.5px),
    var(--bread-50);
  border: 1px solid var(--bread-200);
}
:root[data-theme="dark"] .ai-list li::before {
  background:
    radial-gradient(circle, var(--bread-300) 3px, transparent 3.5px),
    rgba(229,181,71,0.15);
  border-color: rgba(229,181,71,0.3);
}

/* =========================== SHOWCASE =========================== */
.showcase { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%); }
.showcase-head { text-align: center; margin: 0 auto 64px; max-width: 720px; }
.showcase-head .section-h { margin-left: auto; margin-right: auto; }
.showcase-head .section-lead { margin: 0 auto; }

.device-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; }
@media (max-width: 980px) { .device-grid { grid-template-columns: 1fr; } }
.device-grid > div {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.device-grid .card-eyebrow {
  font-family: var(--font-mono); font-size: 10.5px;
  color: var(--terra-500); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
}
.device-grid h3 {
  font-family: var(--font-display); font-size: 28px;
  font-weight: 600; letter-spacing: -0.02em;
  color: var(--text);
  font-variation-settings: 'opsz' 144;
  margin: 0 0 10px; line-height: 1.05;
}
.device-grid h3 em { font-style: italic; color: var(--terra-500); font-weight: 500; }
.device-grid p { color: var(--text-muted); font-size: 14.5px; line-height: 1.55; margin: 0 0 22px; }
.device-stage { position: relative; margin: 12px -12px -16px; }

.device-tablet {
  background: #1F1B17;
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 24px 48px rgba(45,35,20,0.18);
  margin: 0 auto;
  max-width: 460px;
}
.device-tablet .screen {
  background: #FBF6EE;
  border-radius: 9px;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.device-phone-2 {
  background: #14110E;
  border-radius: 28px;
  padding: 8px;
  max-width: 240px;
  margin: 0 auto;
  box-shadow: 0 24px 48px rgba(45,35,20,0.22);
  position: relative;
}
.device-phone-2 .screen {
  background: #1F1B17;
  border-radius: 22px;
  aspect-ratio: 9/19.5;
  overflow: hidden;
  position: relative;
}
.device-phone-2::before {
  content: '';
  position: absolute;
  top: 13px; left: 50%; transform: translateX(-50%);
  width: 28%; height: 12px;
  background: #0B0907;
  border-radius: 999px;
  z-index: 3;
}

.scan-app {
  height: 100%;
  background: #FBF6EE;
  padding: 14px 18px;
  display: flex; flex-direction: column; gap: 12px;
  color: var(--ink-700);
}
.scan-h { display: flex; justify-content: space-between; align-items: baseline; }
.scan-h .t { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--ink-700); }
.scan-h .t em { font-style: italic; color: var(--terra-500); font-weight: 500; }
.scan-h .meta { font-family: var(--font-mono); font-size: 9px; color: var(--ink-300); }
.scan-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.scan-card {
  background: #FFFAF1;
  border: 1px solid #EFE3CB;
  border-radius: 10px;
  padding: 10px;
  display: flex; flex-direction: column; gap: 5px;
  position: relative;
}
.scan-card .qr {
  width: 100%; aspect-ratio: 1;
  background:
    conic-gradient(from 0deg at 50% 50%, var(--ink-700) 0 25%, transparent 0 50%, var(--ink-700) 0 75%, transparent 0),
    repeating-linear-gradient(0deg, var(--ink-700) 0 2px, transparent 2px 4px),
    repeating-linear-gradient(90deg, var(--ink-700) 0 2px, transparent 2px 4px);
  background-blend-mode: multiply;
  border-radius: 4px;
  opacity: 0.85;
}
.scan-card .nm {
  font-family: var(--font-display); font-size: 10px; font-weight: 600;
  color: var(--ink-700); line-height: 1.1;
}
.scan-card .nm em { font-style: italic; color: var(--terra-500); font-weight: 500; }
.scan-card .meta { font-size: 7.5px; color: var(--ink-300); font-family: var(--font-mono); }
.scan-card .pill {
  position: absolute; top: 4px; right: 4px;
  background: var(--pistache-50); color: var(--pistache-500);
  font-size: 6.5px; font-weight: 700; padding: 2px 5px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.1em;
}

.scan-strip { display: flex; gap: 6px; margin-top: auto; }
.scan-strip .btn {
  flex: 1; height: 24px; border-radius: 6px;
  display: grid; place-items: center;
  font-size: 8.5px; font-weight: 600;
}
.scan-strip .btn.primary { background: var(--terra-500); color: #FFFAF1; }
.scan-strip .btn.soft { background: #FFFAF1; color: var(--ink-700); border: 1px solid #EFE3CB; }

.home-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.cuisine-app {
  height: 100%;
  background: #14110E;
  color: var(--sand-100);
  padding: 22px 12px 14px;
  display: flex; flex-direction: column; gap: 10px;
}
.cuisine-app .top {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 7px; color: var(--sand-200);
  opacity: 0.6;
}
.cuisine-app .greet { font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--sand-50); line-height: 1.1; }
.cuisine-app .greet em { font-style: italic; color: var(--bread-300); font-weight: 500; }
.cuisine-app .sub { font-size: 8px; color: rgba(245,238,224,0.5); }
.cuisine-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; margin-top: 6px; flex: 1; }
.ct {
  background: rgba(245,238,224,0.06);
  border: 1px solid rgba(245,238,224,0.08);
  border-radius: 8px;
  padding: 8px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
}
.ct .ico {
  width: 18px; height: 18px;
  border-radius: 5px;
  background: var(--clr-soft, rgba(229,181,71,0.14));
  color: var(--clr, var(--bread-300));
  display: grid; place-items: center;
  font-size: 11px;
}
.ct .lbl { font-family: var(--font-display); font-size: 9px; font-weight: 600; color: var(--sand-50); line-height: 1.1; }
.ct .pop {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--bread-300);
  color: var(--ink-700);
  border-radius: 999px;
  padding: 1px 5px;
  font-size: 6.5px;
  font-weight: 700;
}

/* =========================== TRAÇABILITÉ =========================== */
.trace { background: var(--ink-700); color: var(--sand-100); }
.trace-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 980px) { .trace-inner { grid-template-columns: 1fr; } }
.trace h2 {
  font-family: var(--font-display);
  font-size: 48px; font-weight: 600;
  letter-spacing: -0.028em;
  color: var(--sand-50);
  line-height: 1.05;
  margin: 0 0 16px;
  font-variation-settings: 'opsz' 144;
}
.trace h2 em { font-style: italic; color: var(--bread-300); font-weight: 500; }
@media (max-width: 600px) { .trace h2 { font-size: 36px; } }
.trace p { color: rgba(245,238,224,0.7); font-size: 16px; line-height: 1.6; margin: 0 0 20px; }
.trace-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11.5px;
  color: var(--bread-300); font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 18px;
}
.trace-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--bread-300);
  box-shadow: 0 0 0 3px rgba(229,181,71,0.18);
}
.trace-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.trace-feat {
  background: rgba(245,238,224,0.04);
  border: 1px solid rgba(245,238,224,0.08);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex; flex-direction: column; gap: 4px;
}
.trace-feat .ico {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(229,181,71,0.14);
  color: var(--bread-300);
  display: grid; place-items: center;
  margin-bottom: 8px;
}
.trace-feat .ico svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 1.8; fill: none; stroke-linecap: round; }
.trace-feat .ttl { font-size: 14px; font-weight: 600; color: var(--sand-50); font-family: var(--font-display); }
.trace-feat .desc { font-size: 12px; color: rgba(245,238,224,0.55); line-height: 1.45; }

.trace-stage {
  background: linear-gradient(180deg, #2A241C 0%, #1A1611 100%);
  border-radius: 24px;
  padding: 32px 28px;
  border: 1px solid rgba(245,238,224,0.06);
}
.trace-track { display: flex; flex-direction: column; gap: 14px; position: relative; }
.trace-step {
  display: grid; grid-template-columns: 32px 1fr auto;
  gap: 14px;
  align-items: flex-start;
  position: relative;
}
.trace-step::before {
  content: '';
  position: absolute;
  left: 15px; top: 36px; bottom: -14px;
  width: 2px;
  background: linear-gradient(180deg, rgba(229,181,71,0.4), rgba(245,238,224,0.08));
}
.trace-step:last-child::before { display: none; }
.trace-dot {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--clr, var(--bread-300));
  color: var(--ink-700);
  display: grid; place-items: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-variation-settings: 'opsz' 36;
  font-size: 13px;
  box-shadow: 0 4px 10px rgba(229,181,71,0.2);
}
.trace-info { padding-top: 4px; min-width: 0; }
.trace-info .ttl { font-size: 14px; font-weight: 600; color: var(--sand-50); font-family: var(--font-display); }
.trace-info .ttl em { font-style: italic; color: var(--bread-300); font-weight: 500; }
.trace-info .meta { font-size: 11.5px; color: rgba(245,238,224,0.55); margin-top: 4px; font-family: var(--font-mono); letter-spacing: 0.04em; }
.trace-time { font-family: var(--font-mono); font-size: 11px; color: rgba(245,238,224,0.45); padding-top: 4px; white-space: nowrap; }

/* =========================== USE CASES =========================== */
.cases { background: var(--surface); border-top: 1px solid var(--border-soft); }
.cases-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 56px; }
@media (max-width: 980px) { .cases-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cases-grid { grid-template-columns: 1fr; } }
.case {
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 28px 24px 24px;
  display: flex; flex-direction: column;
  gap: 14px;
  transition: all var(--t-fast);
}
.case:hover {
  background: var(--surface);
  border-color: var(--terra-300);
  box-shadow: 0 12px 24px rgba(45,35,20,0.08);
}
.case-vis {
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--clr-light, var(--terra-50)) 0%, var(--clr-deep, var(--terra-100)) 100%);
  position: relative;
  display: grid; place-items: center;
}
.case-vis svg { width: 60%; height: 60%; }
.case h4 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.01em;
  font-variation-settings: 'opsz' 36;
}
.case p { font-size: 13.5px; color: var(--text-muted); line-height: 1.55; margin: 0; flex: 1; }
.case-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.case-tag {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--ink-400);
  font-weight: 500;
}
:root[data-theme="dark"] .case-tag { color: var(--text-muted); }

/* =========================== WORKFLOW =========================== */
.workflow { background: var(--bg-soft); border-top: 1px solid var(--border-soft); }
.workflow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 64px; position: relative; }
@media (max-width: 980px) { .workflow-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .workflow-grid { grid-template-columns: 1fr; } }
.wfstep { position: relative; }
.wfstep-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 96px;
  font-weight: 500;
  color: var(--terra-100);
  line-height: 0.8;
  font-variation-settings: 'opsz' 144;
  margin-bottom: 12px;
  user-select: none;
}
.wfstep:nth-child(2) .wfstep-num { color: var(--bread-200); }
.wfstep:nth-child(3) .wfstep-num { color: var(--pistache-200); }
.wfstep:nth-child(4) .wfstep-num { color: var(--blueb-100); }
:root[data-theme="dark"] .wfstep-num { color: var(--terra-700); }
:root[data-theme="dark"] .wfstep:nth-child(2) .wfstep-num { color: var(--bread-500); }
:root[data-theme="dark"] .wfstep:nth-child(3) .wfstep-num { color: var(--pistache-500); }
:root[data-theme="dark"] .wfstep:nth-child(4) .wfstep-num { color: var(--blueb-400); }
.wfstep h4 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  color: var(--text);
  margin: 0 0 10px;
  letter-spacing: -0.015em;
  line-height: 1.1;
  font-variation-settings: 'opsz' 36;
}
.wfstep h4 em { font-style: italic; color: var(--terra-500); font-weight: 500; }
.wfstep p { font-size: 14.5px; color: var(--text-muted); line-height: 1.55; margin: 0; }

/* =========================== TESTIMONIALS =========================== */
.testimonials { background: var(--surface); border-top: 1px solid var(--border-soft); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
@media (max-width: 980px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial {
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 28px 26px;
  display: flex; flex-direction: column;
  gap: 16px;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.4;
  color: var(--text);
  letter-spacing: -0.01em;
  margin: 0;
  font-variation-settings: 'opsz' 36;
}
.testimonial-quote em { font-style: italic; color: var(--terra-500); font-weight: 500; }
.testimonial-quote::before {
  content: '"';
  font-family: var(--font-display);
  color: var(--terra-300);
  font-size: 48px;
  font-style: italic;
  line-height: 0;
  vertical-align: -18px;
  margin-right: 4px;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px dashed var(--border-soft);
}
.testimonial-avatar {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--terra-100);
  color: var(--terra-700);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  flex-shrink: 0;
}
.testimonial:nth-child(2) .testimonial-avatar { background: var(--bread-100); color: var(--bread-500); }
.testimonial:nth-child(3) .testimonial-avatar { background: var(--pistache-100); color: var(--pistache-500); }
.testimonial-author .name { font-weight: 600; color: var(--text); font-size: 14px; }
.testimonial-author .role { font-size: 12px; color: var(--text-muted); }

/* =========================== PRICING =========================== */
.pricing { background: var(--bg); border-top: 1px solid var(--border-soft); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
@media (max-width: 980px) { .pricing-grid { grid-template-columns: 1fr; } }
.plan {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  padding: 36px 32px;
  display: flex; flex-direction: column;
  gap: 22px;
  position: relative;
}
.plan.featured {
  background: var(--ink-700);
  color: var(--sand-100);
  border: none;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 30px 50px rgba(45,35,20,0.18);
}
.plan.featured::before {
  content: 'Recommandé · le plus choisi';
  position: absolute;
  top: -12px; left: 32px;
  background: var(--bread-300);
  color: var(--ink-700);
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.plan .name {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 600;
  color: inherit;
  letter-spacing: -0.015em;
  font-variation-settings: 'opsz' 36;
  line-height: 1;
}
.plan.featured .name em { font-style: italic; color: var(--bread-300); font-weight: 500; }
.plan .name em { font-style: italic; color: var(--terra-500); font-weight: 500; }
.plan .for { font-size: 13px; color: var(--text-muted); }
.plan.featured .for { color: rgba(245,238,224,0.6); }
.plan .price { display: flex; align-items: baseline; gap: 6px; margin-top: -4px; }
.plan .price .v {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: inherit;
  font-variation-settings: 'opsz' 144;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.plan .price .u { font-size: 14px; color: var(--text-muted); }
.plan.featured .price .u { color: rgba(245,238,224,0.55); }
.plan-breakdown {
  display: flex; flex-wrap: wrap; gap: 6px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  margin-top: -14px;
  padding: 10px 14px;
  background: var(--bg-soft);
  border: 1px dashed var(--border-soft);
  border-radius: 10px;
}
.plan.featured .plan-breakdown {
  color: rgba(245,238,224,0.7);
  background: rgba(245,238,224,0.04);
  border-color: rgba(245,238,224,0.12);
}
.plan-breakdown .sep { color: var(--text-soft); }
.plan.featured .plan-breakdown .sep { color: rgba(245,238,224,0.3); }
.plan.featured .plan-feats li b { color: var(--bread-200); font-weight: 600; }
.plan-feats { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.plan-feats li {
  display: grid; grid-template-columns: 18px 1fr;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-400);
  line-height: 1.45;
  align-items: flex-start;
}
:root[data-theme="dark"] .plan-feats li { color: var(--text-muted); }
.plan.featured .plan-feats li { color: rgba(245,238,224,0.85); }
.plan-feats li svg {
  width: 16px; height: 16px;
  stroke: var(--pistache-400);
  stroke-width: 2;
  fill: none;
  margin-top: 1px;
}
.plan.featured .plan-feats li svg { stroke: var(--bread-300); }
.plan .cta {
  display: inline-flex; align-items: center; justify-content: center;
  height: 48px;
  background: var(--terra-500);
  color: #FFFAF1;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600; font-size: 15px;
  transition: all var(--t-fast);
  margin-top: auto;
}
.plan .cta:hover { background: var(--terra-400); text-decoration: none; color: #FFFAF1; }
.plan.featured .cta { background: var(--bread-300); color: var(--ink-700); }
.plan.featured .cta:hover { background: var(--bread-200); color: var(--ink-700); }
.plan-foot {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.05em;
}
.plan.featured .plan-foot { color: rgba(245,238,224,0.5); }

/* =========================== FAQ =========================== */
.faq { background: var(--surface); border-top: 1px solid var(--border-soft); }
.faq-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; }
@media (max-width: 980px) { .faq-inner { grid-template-columns: 1fr; gap: 32px; } }
.faq-list { display: flex; flex-direction: column; }
details.faq-item { border-top: 1px solid var(--border-soft); padding: 20px 0; }
details.faq-item:last-of-type { border-bottom: 1px solid var(--border-soft); }
details.faq-item summary {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  line-height: 1.3;
  letter-spacing: -0.005em;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '';
  width: 14px; height: 14px;
  flex-shrink: 0;
  background:
    linear-gradient(currentColor 0 0) center / 100% 1.5px no-repeat,
    linear-gradient(currentColor 0 0) center / 1.5px 100% no-repeat;
  color: var(--terra-500);
  transition: transform var(--t-fast);
}
details.faq-item[open] summary::after {
  background: linear-gradient(currentColor 0 0) center / 100% 1.5px no-repeat;
}
details.faq-item .a {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 64ch;
}

/* =========================== FINAL CTA =========================== */
.final-cta {
  background:
    radial-gradient(circle at 80% 20%, rgba(229,181,71,0.18), transparent 50%),
    linear-gradient(180deg, #1F1B17 0%, #2A2520 100%);
  color: var(--sand-100);
  text-align: center;
  border-top: 1px solid var(--border-soft);
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: 60px; font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--sand-50);
  margin: 0 auto 16px;
  max-width: 18ch;
  line-height: 1.05;
  font-variation-settings: 'opsz' 144;
}
.final-cta h2 em { font-style: italic; color: var(--bread-300); font-weight: 500; }
@media (max-width: 600px) { .final-cta h2 { font-size: 40px; } }
.final-cta p {
  color: rgba(245,238,224,0.7);
  font-size: 17px; line-height: 1.55;
  max-width: 54ch;
  margin: 0 auto 32px;
}
.final-cta-row { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.final-cta .btn-ghost {
  background: rgba(245,238,224,0.06);
  color: var(--sand-50);
  border-color: rgba(245,238,224,0.12);
}
.final-cta .btn-ghost:hover { border-color: var(--bread-300); color: var(--bread-200); }

/* =========================== FOOTER =========================== */
footer {
  background: var(--ink-700);
  color: rgba(245,238,224,0.6);
  padding: 64px 0 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 880px) {
  .foot-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid > div:first-child { grid-column: 1 / -1; }
}
.foot-brand { display: flex; flex-direction: column; gap: 16px; max-width: 320px; }
.foot-brand .name {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 600;
  color: var(--sand-50);
  letter-spacing: -0.015em;
  font-variation-settings: 'opsz' 144;
}
.foot-brand .name em { font-style: italic; color: var(--bread-300); font-weight: 500; }
.foot-brand p { font-size: 14px; line-height: 1.55; margin: 0; }
.foot-brand .sister {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,238,224,0.04);
  border: 1px solid rgba(245,238,224,0.08);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12.5px;
  align-self: flex-start;
  color: rgba(245,238,224,0.7);
}
.foot-brand .sister b { color: var(--bread-300); font-weight: 600; }
.foot-col h4 {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--bread-300);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-col ul a {
  color: rgba(245,238,224,0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--t-fast);
}
.foot-col ul a:hover { color: var(--sand-50); text-decoration: none; }
.foot-bottom {
  border-top: 1px solid rgba(245,238,224,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12.5px;
  font-family: var(--font-mono);
  color: rgba(245,238,224,0.4);
  letter-spacing: 0.04em;
}
.foot-bottom .right { display: flex; gap: 18px; }
.foot-bottom .right a { color: inherit; text-decoration: none; }
.foot-bottom .right a:hover { color: var(--sand-50); text-decoration: none; }

.wave-disc { width: 100%; height: 100%; display: block; }

/* Smooth scrolling pour les ancres */
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
