/* =========================================================
   FleetSight by BY Conseil — Landing
   Palette navy + gold premium executive (cohérent byconseil.eu)
   ========================================================= */

:root {
  --navy: #0A1F44;
  --navy-2: #112F66;
  --ink: #152A52;
  --gold: #C8A24B;
  --gold-light: #E5C870;
  --white: #FFFFFF;
  --off: #F7F8FA;
  --soft: #E5E9F0;
  --grey: #64748B;
  --dark: #0F172A;
  --line: #E2E8F0;
  --green: #16A34A;
  --red: #DC2626;

  --font-h: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-b: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --container: 1200px;
  --pad-x: clamp(1.25rem, 4vw, 2.5rem);
  --shadow-sm: 0 1px 2px rgba(10, 31, 68, .06), 0 2px 8px rgba(10, 31, 68, .04);
  --shadow-md: 0 2px 4px rgba(10, 31, 68, .08), 0 8px 24px rgba(10, 31, 68, .08);
  --shadow-lg: 0 4px 12px rgba(10, 31, 68, .12), 0 12px 40px rgba(10, 31, 68, .12);
  --radius: 8px;
}

/* =================== RESET =================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* =================== NAV =================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(10, 31, 68, .04);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem; padding-bottom: 1rem;
}
.brand {
  display: inline-flex; align-items: center; gap: .65rem;
  text-decoration: none; font-family: var(--font-b);
}
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--navy); color: var(--gold);
  width: 2.2rem; height: 2.2rem; border-radius: 6px;
  font-size: .9rem; font-weight: 700; letter-spacing: .03em;
}
.brand-name {
  color: var(--navy); font-weight: 600; letter-spacing: .04em;
  font-size: .95rem;
}
.brand-name em { font-style: normal; color: var(--grey); font-weight: 400; font-size: .82em; }

.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a {
  text-decoration: none; color: var(--navy); font-weight: 500;
  font-size: .92rem; transition: color .2s; position: relative;
}
.nav-links a:not(.btn-mini)::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  height: 1px; width: 0; background: var(--gold); transition: width .25s;
}
.nav-links a:not(.btn-mini):hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }

.btn-mini {
  background: var(--gold); color: var(--navy) !important;
  padding: .55rem 1rem; border-radius: 4px;
  border: 1px solid var(--gold);
  font-size: .88rem; font-weight: 600;
  transition: background .2s, color .2s;
}
.btn-mini:hover { background: var(--navy); color: var(--white) !important; border-color: var(--navy); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: .5rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); transition: transform .25s, opacity .25s; }

/* =================== HERO =================== */
.hero {
  position: relative; min-height: 100vh;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; overflow: hidden;
  padding: 8rem 0 4rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(200, 162, 75, .15) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(17, 47, 102, .8) 0%, transparent 50%);
}
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero-inner { position: relative; z-index: 1; }
.hero-mark {
  font-size: .8rem; letter-spacing: .25em; font-weight: 600;
  color: var(--gold); margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-h); font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.05; margin: 0 0 1.5rem;
}
.hero-title .line-1 { display: block; }
.hero-title .line-2 { display: block; color: var(--gold); font-style: italic; }
.hero-tag {
  font-size: clamp(1rem, 2vw, 1.2rem); color: var(--soft);
  font-weight: 400; margin: 0 0 1rem; letter-spacing: .02em;
}
.hero-sub {
  font-size: clamp(.95rem, 1.6vw, 1.05rem); color: rgba(255, 255, 255, .8);
  max-width: 720px; margin: 0 0 2.5rem;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
  margin-bottom: 3rem;
}
.btn-primary {
  display: inline-block; padding: 1rem 1.8rem;
  background: var(--gold); color: var(--navy);
  text-decoration: none; font-weight: 600;
  border-radius: 4px; border: 2px solid var(--gold);
  transition: background .2s, color .2s, transform .2s;
}
.btn-primary:hover { background: transparent; color: var(--gold); transform: translateY(-1px); }
.btn-primary.btn-large { padding: 1.15rem 2.2rem; font-size: 1.05rem; }
.btn-primary.btn-block { display: block; text-align: center; margin-top: 1rem; }
.btn-ghost {
  display: inline-block; padding: 1rem 1.8rem;
  color: var(--white); text-decoration: none; font-weight: 500;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 4px; transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(200, 162, 75, .08); }
.btn-ghost-light {
  display: inline-block; padding: 1rem 1.8rem;
  color: var(--white); text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 4px; transition: border-color .2s, background .2s;
}
.btn-ghost-light:hover { border-color: var(--gold); }
.btn-link {
  color: var(--gold); text-decoration: none; font-size: .92rem; font-weight: 500;
  border-bottom: 1px dashed rgba(200, 162, 75, .4);
}
.btn-link:hover { border-bottom-color: var(--gold); }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, .12);
  max-width: 720px;
}
.hero-stats div { display: flex; flex-direction: column; gap: .25rem; }
.hero-stats strong {
  font-family: var(--font-h); font-size: 1.8rem; color: var(--gold); font-weight: 500;
}
.hero-stats span { font-size: .82rem; color: rgba(255, 255, 255, .65); }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  width: 24px; height: 40px; border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 12px; opacity: .6; transition: opacity .2s;
}
.hero-scroll:hover { opacity: 1; }
.hero-scroll span {
  display: block; width: 4px; height: 8px; background: var(--gold);
  border-radius: 2px; margin: 6px auto;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot { 0%, 100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(12px); opacity: 0; } }

/* =================== SECTIONS =================== */
.section { padding: 5rem 0; }
.section-light { background: var(--off); }
.section-dark { background: var(--navy); color: var(--white); }
.section-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white); padding: 6rem 0;
}

.section-head {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2rem; flex-wrap: wrap;
}
.section-num {
  font-size: .8rem; letter-spacing: .25em; color: var(--gold); font-weight: 600;
}
.section-title {
  font-family: var(--font-h); font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15; margin: 0; color: inherit;
}
.section-dark .section-title { color: var(--white); }
.section-rule {
  flex: 1; height: 1px; background: var(--gold);
  margin-left: .5rem; opacity: .35;
}
.section-dark .section-rule { background: var(--gold); opacity: .55; }

.section-lead {
  font-size: clamp(1rem, 1.6vw, 1.15rem); max-width: 880px;
  margin: 0 0 3rem; color: var(--ink); line-height: 1.65;
}
.section-dark .section-lead { color: rgba(255, 255, 255, .82); }
.section-source {
  font-size: .82rem; color: var(--grey); margin-top: 2rem; font-style: italic;
}
.section-dark .section-source { color: rgba(255, 255, 255, .55); }

.sub-title {
  font-family: var(--font-h); font-size: 1.5rem; font-weight: 500;
  margin: 3rem 0 1.5rem; color: var(--navy);
}
.section-dark .sub-title { color: var(--white); }

.link-light { color: var(--gold); text-decoration: none; border-bottom: 1px dashed var(--gold); }
.link-light:hover { color: var(--gold-light); }

/* =================== CARDS =================== */
.cards-grid-4 {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.cards-grid-3 {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.cards-grid-2 {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.card-flat {
  padding: 2rem 1.5rem;
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--line); transition: transform .2s, box-shadow .2s;
}
.card-flat:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.card-flat .card-icon {
  font-size: 2rem; margin-bottom: .75rem;
}
.card-flat h3 {
  font-family: var(--font-h); font-size: 1.25rem; font-weight: 600;
  color: var(--navy); margin: 0 0 .5rem;
}
.card-flat p { font-size: .92rem; color: var(--grey); margin: 0; line-height: 1.55; }

.card-block {
  position: relative;
  padding: 2.5rem 1.75rem 2rem;
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--line); transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card-block:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card-block.highlighted {
  background: var(--navy); color: var(--white); border-color: var(--gold);
}
.card-block.highlighted h3, .card-block.highlighted .card-num { color: var(--gold); }
.card-block .card-num {
  font-size: .85rem; letter-spacing: .2em; color: var(--gold); font-weight: 600;
  margin-bottom: .75rem;
}
.card-block h3 {
  font-family: var(--font-h); font-size: 1.55rem; font-weight: 600;
  color: var(--navy); margin: 0 0 .25rem;
}
.card-block .card-duree {
  font-size: .85rem; color: var(--grey); margin: 0 0 1.25rem; font-style: italic;
}
.card-block.highlighted .card-duree { color: rgba(255, 255, 255, .65); }
.card-bullets {
  display: flex; flex-direction: column; gap: .55rem;
  font-size: .92rem; color: var(--ink);
}
.card-block.highlighted .card-bullets { color: rgba(255, 255, 255, .85); }
.card-bullets li { padding-left: 1.2rem; position: relative; line-height: 1.45; }
.card-bullets li::before {
  content: "→"; position: absolute; left: 0; color: var(--gold); font-weight: 600;
}

/* =================== ENJEUX (numbered list) =================== */
.enjeux-list { display: flex; flex-direction: column; gap: 1.25rem; }
.enjeux-list li {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 1.5rem 1.75rem;
  background: rgba(255, 255, 255, .04); border-left: 3px solid var(--gold);
  border-radius: 4px; transition: background .2s;
}
.enjeux-list li:hover { background: rgba(255, 255, 255, .07); }
.enj-num {
  font-family: var(--font-h); font-size: 2rem; color: var(--gold);
  line-height: 1; min-width: 2.5rem;
}
.enjeux-list h3 {
  font-family: var(--font-h); font-size: 1.35rem; font-weight: 600;
  color: var(--white); margin: 0 0 .35rem;
}
.enjeux-list p { color: rgba(255, 255, 255, .75); margin: 0; }

/* =================== PHASES =================== */
.phases {
  display: grid; gap: 1rem; margin: 2rem 0;
  grid-template-columns: 1fr auto 1fr auto 1fr; align-items: stretch;
}
.phase {
  background: var(--white); border-radius: var(--radius);
  padding: 1.75rem; border: 1px solid var(--line);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.phase:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.phase-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.phase-tag {
  font-size: .75rem; letter-spacing: .2em; color: var(--gold); font-weight: 700;
  background: rgba(200, 162, 75, .1); padding: .25rem .65rem; border-radius: 3px;
}
.phase-when { font-size: .8rem; color: var(--grey); font-weight: 500; }
.phase h3 {
  font-family: var(--font-h); font-size: 1.35rem; font-weight: 600;
  color: var(--navy); margin: 0 0 1rem;
}
.phase ul { display: flex; flex-direction: column; gap: .5rem; font-size: .9rem; color: var(--ink); }
.phase ul li { padding-left: 1rem; position: relative; line-height: 1.5; }
.phase ul li::before { content: "•"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.phase-arrow {
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--gold); padding: 0 .5rem;
}

/* =================== DASHBOARD MOCKUP =================== */
.dashboard-mockup {
  background: var(--white); color: var(--dark);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); margin: 2rem 0 3rem;
}
.dash-header {
  display: flex; align-items: center; gap: .5rem;
  background: #F1F5F9; padding: .75rem 1.25rem;
  border-bottom: 1px solid var(--line);
}
.dash-dot { width: 12px; height: 12px; border-radius: 50%; background: #CBD5E0; }
.dash-dot:first-child { background: #FF5F57; }
.dash-dot:nth-child(2) { background: #FFBD2E; }
.dash-dot:nth-child(3) { background: #28C940; }
.dash-title {
  font-size: .82rem; color: var(--grey); margin-left: 1rem; font-weight: 500;
}
.dash-grid {
  display: grid; gap: 1rem; padding: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 2fr;
}
.dash-kpi {
  display: flex; flex-direction: column; gap: .25rem; padding: 1.25rem;
  background: var(--off); border-radius: 6px; border: 1px solid var(--line);
}
.kpi-label { font-size: .7rem; letter-spacing: .15em; color: var(--grey); font-weight: 600; }
.kpi-value {
  font-family: var(--font-h); font-size: 1.8rem; font-weight: 600; color: var(--navy);
}
.kpi-delta {
  font-size: .82rem; font-weight: 600;
}
.kpi-delta.down { color: var(--green); }
.kpi-delta.up { color: var(--red); }
.dash-chart {
  background: var(--off); border-radius: 6px; border: 1px solid var(--line);
  padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: .75rem;
}
.bars {
  display: flex; align-items: flex-end; gap: 4px;
  height: 80px; padding-top: 8px;
}
.bar {
  flex: 1; background: linear-gradient(to top, var(--navy), var(--navy-2));
  border-radius: 2px 2px 0 0;
  height: var(--h);
}
.bar:nth-child(2n) { background: linear-gradient(to top, var(--gold), var(--gold-light)); }
.chart-caption { font-size: .78rem; color: var(--grey); }

@media (max-width: 720px) {
  .dash-grid { grid-template-columns: repeat(3, 1fr); }
  .dash-chart { grid-column: 1/-1; }
}

/* =================== MODULES (outil) =================== */
.modules-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 2rem;
}
.module {
  display: flex; flex-direction: column; gap: .35rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12); border-radius: 4px;
  transition: background .2s, border-color .2s;
}
.module:hover { background: rgba(255, 255, 255, .07); border-color: var(--gold); }
.module span { font-size: 1.5rem; }
.module h4 {
  font-size: 1rem; font-weight: 600; color: var(--white); margin: 0;
}
.module p { font-size: .85rem; color: rgba(255, 255, 255, .65); margin: 0; }

/* =================== KPIS GRID =================== */
.kpis-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.kpi-card {
  padding: 2rem 1.75rem;
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--line); border-top: 3px solid var(--gold);
}
.kpi-card h3 {
  font-family: var(--font-h); font-size: 1.4rem; font-weight: 600;
  color: var(--navy); margin: 0;
}
.kpi-when {
  font-size: .82rem; color: var(--grey); margin: .35rem 0 1.25rem;
  text-transform: uppercase; letter-spacing: .08em;
}
.kpi-card ul { display: flex; flex-direction: column; gap: .55rem; font-size: .92rem; color: var(--ink); }
.kpi-card li { padding-left: 1.2rem; position: relative; line-height: 1.5; }
.kpi-card li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* =================== PRICING =================== */
.pricing-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.pricing-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--line); transition: transform .2s, box-shadow .2s;
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pricing-card.highlighted { border: 2px solid var(--gold); background: linear-gradient(180deg, var(--white), var(--off)); }
.pricing-tag {
  display: inline-block;
  font-size: .75rem; letter-spacing: .15em; color: var(--gold);
  font-weight: 700; text-transform: uppercase; margin-bottom: 1rem;
}
.pricing-price { display: flex; align-items: baseline; gap: .5rem; margin-bottom: .75rem; }
.price-amount {
  font-family: var(--font-h); font-size: 3rem; font-weight: 600; color: var(--navy); line-height: 1;
}
.price-unit { font-size: .85rem; color: var(--grey); font-weight: 500; }
.pricing-bornes {
  font-size: .82rem; color: var(--grey); margin: 0 0 1.5rem; font-style: italic;
}
.pricing-card ul {
  display: flex; flex-direction: column; gap: .55rem;
  font-size: .92rem; color: var(--ink); margin-bottom: 1.5rem;
}
.pricing-card li { padding-left: 1.2rem; position: relative; line-height: 1.45; }

/* =================== OPTIONS TABLE =================== */
.options-table {
  width: 100%; border-collapse: collapse;
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.options-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--line); font-size: .95rem;
}
.options-table td:last-child { text-align: right; color: var(--gold); }
.options-table tr:last-child td { border-bottom: 0; }
.options-table tr:hover td { background: var(--off); }

/* =================== ROI =================== */
.roi-layout {
  display: grid; gap: 2rem;
  grid-template-columns: 2fr 1fr; align-items: center;
}
@media (max-width: 760px) { .roi-layout { grid-template-columns: 1fr; } }

.roi-table { background: rgba(255, 255, 255, .04); border-radius: var(--radius); padding: 1.5rem; }
.roi-table table { width: 100%; border-collapse: collapse; }
.roi-table th, .roi-table td {
  padding: .75rem 1rem; text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  font-size: .92rem;
}
.roi-table th {
  font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
}
.roi-table td:last-child { text-align: right; font-weight: 500; }
.roi-table tr.row-total td { font-weight: 700; border-top: 2px solid var(--gold); padding-top: 1rem; }
.roi-table tr.row-bene td {
  font-weight: 700; color: var(--gold); font-size: 1.05rem;
  border-top: 2px solid var(--gold);
}

.roi-callout {
  text-align: center; padding: 2.5rem 1.5rem;
  border: 2px solid var(--gold); border-radius: var(--radius);
  background: rgba(200, 162, 75, .08);
}
.roi-label {
  display: block; font-size: .8rem; letter-spacing: .2em;
  color: var(--gold); font-weight: 700;
}
.roi-big {
  display: block; font-family: var(--font-h);
  font-size: 4rem; font-weight: 600; color: var(--gold);
  line-height: 1; margin: .5rem 0;
}
.roi-sub {
  display: block; font-size: 1rem; color: rgba(255, 255, 255, .8); font-style: italic;
}
.roi-note {
  font-size: .82rem; color: rgba(255, 255, 255, .55);
  margin: 1.5rem 0 0; font-style: italic; line-height: 1.5;
}

/* =================== QUOTE =================== */
.quote {
  margin: 3rem 0 0; padding: 1.75rem 2rem;
  background: var(--navy); color: var(--white); border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  font-family: var(--font-h); font-size: 1.4rem; line-height: 1.5;
  font-style: italic; font-weight: 500;
}
.quote cite {
  display: block; font-style: normal; font-family: var(--font-b);
  font-size: .85rem; color: var(--gold); margin-top: 1rem; font-weight: 500;
}

/* =================== REFERENCES =================== */
.refs-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.ref-card {
  padding: 1.75rem 1.5rem; background: var(--white);
  border-radius: var(--radius); border: 1px solid var(--line);
  transition: transform .2s, box-shadow .2s;
}
.ref-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.ref-card h3 {
  font-family: var(--font-h); font-size: 1.25rem; font-weight: 600;
  color: var(--navy); margin: 0 0 .15rem;
}
.ref-sector {
  font-size: .75rem; letter-spacing: .15em; color: var(--gold);
  font-weight: 700; text-transform: uppercase; margin: 0 0 .9rem;
}
.ref-card p { font-size: .9rem; color: var(--grey); margin: 0; line-height: 1.5; }

/* =================== SLA =================== */
.sla-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.sla-card {
  padding: 1.5rem 1.25rem; text-align: center;
  background: rgba(255, 255, 255, .04); border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .12);
}
.sla-card strong {
  display: block; font-family: var(--font-h);
  font-size: 2.5rem; color: var(--gold); font-weight: 600;
  line-height: 1; margin-bottom: .5rem;
}
.sla-card h4 {
  font-size: .95rem; color: var(--white); margin: 0 0 .25rem; font-weight: 600;
}
.sla-card p { font-size: .8rem; color: rgba(255, 255, 255, .6); margin: 0; }

/* =================== CTA SIMULATION =================== */
.cta-box {
  text-align: center; padding: 3rem 2rem;
  border: 1px solid rgba(200, 162, 75, .3); border-radius: var(--radius);
  background: rgba(200, 162, 75, .05);
}
.cta-pill {
  display: inline-block; padding: .35rem 1rem;
  background: var(--gold); color: var(--navy); font-weight: 700;
  font-size: .75rem; letter-spacing: .15em; border-radius: 99px;
  margin-bottom: 1.5rem;
}
.cta-title {
  font-family: var(--font-h); font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600; color: var(--white); margin: 0 0 1rem;
}
.cta-sub {
  font-size: 1.05rem; color: rgba(255, 255, 255, .85);
  max-width: 760px; margin: 0 auto 2.5rem; line-height: 1.65;
}
.cta-grid {
  display: grid; gap: 1rem; margin: 0 auto 2.5rem; max-width: 920px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.cta-step {
  padding: 1.5rem 1.25rem; text-align: left;
  background: rgba(255, 255, 255, .05);
  border-radius: var(--radius); border-top: 2px solid var(--gold);
}
.cta-step span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  font-weight: 700; font-size: .9rem; margin-bottom: .75rem;
}
.cta-step h4 { font-size: .95rem; color: var(--white); margin: 0 0 .35rem; font-weight: 600; }
.cta-step p { font-size: .82rem; color: rgba(255, 255, 255, .65); margin: 0; line-height: 1.45; }
.cta-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 1.5rem;
}
.cta-trust {
  font-size: .82rem; color: rgba(255, 255, 255, .55); font-style: italic; margin: 0;
}

/* =================== STEPS (prochaines étapes) =================== */
.steps-grid {
  display: grid; gap: 1.25rem; margin-bottom: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.step-card {
  padding: 1.75rem 1.5rem; background: var(--white);
  border-radius: var(--radius); border: 1px solid var(--line);
  transition: transform .2s, box-shadow .2s;
}
.step-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.step-num {
  font-family: var(--font-h); font-size: 2rem; color: var(--gold);
  font-weight: 600; line-height: 1; display: block; margin-bottom: .75rem;
}
.step-card h3 {
  font-family: var(--font-h); font-size: 1.2rem; font-weight: 600;
  color: var(--navy); margin: 0 0 .25rem;
}
.step-when {
  font-size: .8rem; color: var(--gold); font-weight: 600;
  margin: 0 0 .75rem; letter-spacing: .05em;
}
.step-card p { font-size: .9rem; color: var(--grey); margin: 0; line-height: 1.5; }

/* =================== CONTACT =================== */
.contact-box {
  padding: 2.5rem 2rem; background: var(--navy); color: var(--white);
  border-radius: var(--radius); text-align: center;
}
.contact-box h3 {
  font-family: var(--font-h); font-size: 1.6rem; font-weight: 600;
  color: var(--gold); margin: 0 0 1.5rem;
}
.contact-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.contact-link {
  display: flex; flex-direction: column; gap: .25rem; align-items: center;
  padding: 1.25rem 1rem; text-decoration: none;
  background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius); color: var(--white);
  transition: background .2s, border-color .2s;
}
.contact-link:hover { background: rgba(255, 255, 255, .08); border-color: var(--gold); }
.contact-icon { font-size: 1.5rem; margin-bottom: .35rem; color: var(--gold); }
.contact-link strong { font-size: 1rem; color: var(--gold); }
.contact-link span { font-size: .82rem; color: rgba(255, 255, 255, .65); }

/* =================== FOOTER =================== */
.footer { background: var(--dark); color: rgba(255, 255, 255, .8); padding: 3rem 0 1.5rem; }
.footer-inner {
  display: grid; gap: 2rem;
  grid-template-columns: 1.5fr repeat(3, 1fr); margin-bottom: 2rem;
}
@media (max-width: 760px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
.footer-brand {
  display: flex; align-items: center; gap: .65rem; margin-bottom: 1rem;
}
.footer-brand .brand-mark { background: var(--gold); color: var(--navy); }
.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-name em { color: rgba(255, 255, 255, .5); }
.footer h5 {
  font-size: .85rem; letter-spacing: .15em; color: var(--gold);
  font-weight: 700; text-transform: uppercase; margin: 0 0 1rem;
}
.footer ul { display: flex; flex-direction: column; gap: .55rem; }
.footer ul li { font-size: .88rem; color: rgba(255, 255, 255, .7); }
.footer ul li a { text-decoration: none; transition: color .2s; }
.footer ul li a:hover { color: var(--gold); }
.footer p { font-size: .9rem; color: rgba(255, 255, 255, .6); margin: 0; line-height: 1.55; }
.footer-bottom { padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, .08); text-align: center; }
.footer-bottom small { font-size: .8rem; color: rgba(255, 255, 255, .5); }

/* =================== REVEAL ANIMATION =================== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* =================== RESPONSIVE =================== */
@media (max-width: 880px) {
  .nav-links { display: none; flex-direction: column; gap: 1rem; }
  .nav-links.open {
    display: flex; position: absolute; top: 100%; right: 0; left: 0;
    background: var(--white); padding: 1.5rem; border-bottom: 1px solid var(--line);
  }
  .nav-toggle { display: flex; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .phases { grid-template-columns: 1fr; }
  .phase-arrow { transform: rotate(90deg); margin: -.5rem 0; }
}
@media (max-width: 480px) {
  .hero { padding: 6rem 0 3rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { text-align: center; }
}
