:root {
  --blue: #1E3A5F;
  --dark: #0F253D;
  --teal: #006F78;
  --sand: #F7F3EA;
  --white: #FFFFFF;
  --ink: #243447;
  --muted: #6B7787;
  --coral: #EB5B60;
  --coral-dark: #B44A4F;
  --ochre: #D88A3D;
  --ochre-dark: #A6632A;
  --sage: #4F7F5A;
  --sage-dark: #466F50;
  --line: rgba(30, 58, 95, .12);
  --shadow: 0 24px 70px rgba(15, 37, 61, .10);
  --shadow-strong: 0 35px 100px rgba(15, 37, 61, .20);
  --radius: 32px;
  --radius-lg: 56px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
ul,
ol,
h1,
h2,
h3 {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

::selection {
  background: rgba(235, 91, 96, .25);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  color: var(--white);
  transition: background .25s ease, border .25s ease, box-shadow .25s ease;
}

.navbar.scrolled,
.navbar.open {
  background: rgba(15, 37, 61, .94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  box-shadow: 0 14px 50px rgba(15, 37, 61, .20);
}

.nav-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.04em;
  white-space: nowrap;
}

.logo span {
  color: var(--coral);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 26px;
  font-size: .92rem;
  font-weight: 800;
  color: rgba(255, 255, 255, .76);
}

.nav-links a,
.mobile-menu a,
.footer a {
  transition: color .18s ease, opacity .18s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.mobile-menu a:hover,
.footer a:hover {
  color: var(--white);
}

.nav-cta {
  display: none;
}

.menu-button {
  display: inline-flex;
  width: 46px;
  height: 46px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  cursor: pointer;
}

.menu-button span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .22s ease, opacity .22s ease;
}

.navbar.open .menu-button span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar.open .menu-button span:nth-child(2) {
  opacity: 0;
}

.navbar.open .menu-button span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  background: rgba(15, 37, 61, .98);
  box-shadow: var(--shadow-strong);
}

.mobile-menu.open {
  display: grid;
  gap: 8px;
}

.mobile-menu a {
  display: block;
  padding: 14px 16px;
  border-radius: 16px;
  color: rgba(255, 255, 255, .82);
  font-weight: 800;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  background: rgba(255, 255, 255, .08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition: transform .22s ease, background .22s ease, color .22s ease, border .22s ease, box-shadow .22s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--coral-dark);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(180, 74, 79, .24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--coral);
  box-shadow: 0 18px 38px rgba(180, 74, 79, .32);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .08);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, .14);
}

.btn-outline {
  color: var(--blue);
  border-color: rgba(30, 58, 95, .18);
  background: rgba(30, 58, 95, .04);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--blue);
  color: var(--white);
}

/* CTA premium visible sur fond bleu nuit */
.btn-light,
.offer-premium .btn-outline {
  color: var(--dark);
  background: var(--white);
  border-color: rgba(255, 255, 255, .92);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .24);
}

.btn-light:hover,
.btn-light:focus-visible,
.offer-premium .btn-outline:hover,
.offer-premium .btn-outline:focus-visible {
  color: var(--white);
  background: var(--ochre);
  border-color: var(--ochre);
}

.full {
  width: 100%;
}

.section {
  padding-block: clamp(76px, 9vw, 132px);
  position: relative;
}

.section-white {
  background: var(--white);
}

.section-sand {
  background: var(--sand);
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.soft-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 44px 44px;
}

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: 120px 80px;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(0, 111, 120, .32), transparent 34%),
    radial-gradient(circle at 88% 10%, rgba(216, 138, 61, .15), transparent 28%),
    linear-gradient(135deg, rgba(15, 37, 61, 1), rgba(15, 37, 61, .88));
}

.shape {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.shape-1 {
  right: -180px;
  top: 120px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, .14);
}

.shape-2 {
  right: 120px;
  bottom: 80px;
  width: 230px;
  height: 230px;
  background: rgba(79, 127, 90, .18);
  filter: blur(60px);
}

.shape-3 {
  left: -120px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  background: rgba(235, 91, 96, .12);
  filter: blur(70px);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .72fr);
  align-items: center;
  gap: clamp(36px, 7vw, 86px);
}

.hero-content {
  max-width: 780px;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--teal);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .20em;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(255, 255, 255, .86);
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .08);
}

h1,
h2,
h3 {
  font-family: Manrope, Inter, sans-serif;
  margin: 0;
  font-weight: 900;
  letter-spacing: -.055em;
}

h1 {
  max-width: 920px;
  color: var(--white);
  font-size: clamp(2.2rem, 4.6vw, 4.4rem);
  line-height: .92;
  text-transform: uppercase;
}

h2 {
  max-width: 940px;
  color: var(--blue);
  font-size: clamp(1.65rem, 3.2vw, 2.9rem);
  line-height: .96;
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

h3 {
  color: var(--blue);
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  line-height: 1.04;
}

.hero-text,
.lead {
  margin-top: 24px;
  color: rgba(36, 52, 71, .76);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.82;
}

.hero-text {
  max-width: 740px;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
}

.lead.light {
  color: rgba(255, 255, 255, .74);
}

.hero-actions,
.cta-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-proof {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .10);
  font-weight: 800;
}

.hero-panel {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-strong);
}

.panel-topline {
  padding: 10px 12px 18px;
  color: rgba(255, 255, 255, .74);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.panel-card {
  padding: 30px;
  border-radius: 40px;
  background: var(--white);
  color: var(--ink);
}

.panel-icon {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--coral-dark);
  font-weight: 900;
}

.panel-card h2 {
  color: var(--blue);
  font-size: clamp(1.75rem, 3vw, 3rem);
}

.panel-card p {
  margin-top: 20px;
  color: rgba(36, 52, 71, .72);
  line-height: 1.7;
}

.panel-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.mini-card {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
}

.mini-card strong {
  color: var(--blue);
  font-family: Manrope, Inter, sans-serif;
  font-size: 1.1rem;
}

.mini-card span {
  color: rgba(36, 52, 71, .66);
  font-size: .92rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(34px, 7vw, 82px);
}

.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
}

.section-head {
  max-width: 930px;
}

.problem-list {
  display: grid;
  gap: 14px;
}

.problem,
.trust-card,
.service,
.cost-card,
.step,
.result,
.offer,
.faq {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.problem {
  padding: 20px 24px;
  color: var(--blue);
  font-weight: 900;
}

.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-card {
  padding: 28px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.trust-card p {
  margin-top: 18px;
  color: rgba(36, 52, 71, .72);
  line-height: 1.72;
}

.trust-icon {
  margin-bottom: 38px;
  color: var(--coral-dark);
  font-size: 2rem;
  line-height: 1;
}

.teal {
  color: var(--teal) !important;
}

.sage,
.sage-label {
  color: var(--sage-dark) !important;
}

.ochre {
  color: var(--ochre-dark) !important;
}

.coral {
  color: var(--coral) !important;
}

.service-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.service {
  min-height: 260px;
  padding: 24px;
  background: rgba(255, 255, 255, .94);
  transition: transform .25s ease, box-shadow .25s ease, border .25s ease;
}

.service:hover,
.offer:hover,
.trust-card:hover,
.result:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.service span,
.step span {
  color: var(--teal);
  font-weight: 900;
  font-size: .84rem;
  letter-spacing: .10em;
}

.service h3 {
  margin-top: 42px;
  color: var(--blue);
}

.service p,
.step p,
.result p,
.offer li,
.faq p {
  margin-top: 16px;
  color: rgba(36, 52, 71, .72);
  line-height: 1.72;
}

.comparison-card {
  padding: clamp(26px, 4vw, 46px);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.comparison-grid {
  display: grid;
  gap: 18px;
}

.cost-card {
  padding: 28px;
}

.cost-card-dark {
  background: var(--dark);
  color: var(--white);
  border-color: rgba(255, 255, 255, .10);
}

.cost-card-dark h3,
.cost-card-dark li {
  color: var(--white);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--ochre-dark);
  color: var(--white);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.badge-light {
  background: rgba(255, 255, 255, .12);
}

.badge-reco {
  background: var(--ochre-dark);
}

.badge-premium {
  background: var(--coral-dark);
}

.cost-card h3 {
  margin-top: 22px;
  font-size: clamp(1.16rem, 1.55vw, 1.55rem);
}

.cost-card ul,
.offer ul {
  margin-top: 24px;
  display: grid;
  gap: 12px;
  list-style: none;
}

.cost-card li,
.offer li {
  position: relative;
  padding-left: 24px;
}

.cost-card li::before,
.offer li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--coral-dark);
}

.cost-card-dark li::before {
  background: var(--coral);
}

.steps {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.step {
  min-height: 230px;
  padding: 24px;
  box-shadow: none;
}

.step strong {
  display: block;
  margin-top: 36px;
  color: var(--blue);
  font-family: Manrope, Inter, sans-serif;
  font-size: 1.24rem;
  line-height: 1.04;
}

.result-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.result {
  min-height: 230px;
  padding: 28px;
  box-shadow: none;
}

.result h3 {
  color: var(--sage-dark);
  font-size: clamp(1.28rem, 2vw, 1.85rem);
}

.offers-transition {
  max-width: 900px;
  margin: 30px auto 0;
  padding: 22px 26px;
  border-radius: 24px;
  background: var(--sand);
  color: rgba(36, 52, 71, .78);
  line-height: 1.75;
  text-align: center;
  font-weight: 650;
}

.offers {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.offer {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
}

.offer::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(0, 111, 120, .08);
}

.offer-highlight {
  border: 2px solid var(--ochre);
  transform: translateY(-12px);
  box-shadow: var(--shadow-strong);
}

.offer h3 {
  margin-top: 28px;
  position: relative;
  z-index: 1;
  font-size: clamp(1.22rem, 1.75vw, 1.65rem);
}

.offer-description {
  margin-top: 18px;
  color: rgba(36, 52, 71, .72);
  line-height: 1.7;
}

.offer-ideal {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--blue);
  line-height: 1.65;
  font-weight: 800;
}

.offer-premium {
  background: var(--dark);
  color: var(--white);
  border-color: rgba(255, 255, 255, .12);
}

.offer-premium::after {
  background: rgba(216, 138, 61, .18);
}

.offer-premium h3,
.offer-premium .price,
.offer-premium .price-main,
.offer-premium .offer-ideal,
.offer-premium li {
  color: var(--white);
}

.offer-premium .offer-description,
.offer-premium .price-period {
  color: rgba(255, 255, 255, .72);
}

.offer-premium .offer-ideal {
  border-top-color: rgba(255, 255, 255, .16);
}

.offer-premium li::before {
  background: var(--ochre);
}

.offer-simple {
  box-shadow: var(--shadow);
}

.price {
  margin-top: 24px;
  color: var(--blue);
  font-family: Manrope, Inter, system-ui, sans-serif;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  line-height: 1.05;
  letter-spacing: -.03em;
}

.price-main {
  white-space: nowrap;
  font-size: clamp(1.55rem, 1.9vw, 2rem);
  font-weight: 900;
}

.price-prefix {
  flex-basis: 100%;
  color: var(--muted);
  font-family: Inter, system-ui, sans-serif;
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: 0;
}

.price-period {
  color: rgba(36, 52, 71, .58);
  font-family: Inter, system-ui, sans-serif;
  font-size: .9rem;
  letter-spacing: 0;
  font-weight: 800;
  white-space: nowrap;
}

.pricing-note {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.7;
  text-align: center;
}

.offer .btn {
  margin-top: auto;
}

.faq-list {
  margin-top: 48px;
  display: grid;
  gap: 14px;
}

.faq {
  padding: 22px 26px;
  background: var(--sand);
  box-shadow: none;
}

.faq summary {
  cursor: pointer;
  color: var(--blue);
  font-family: Manrope, Inter, sans-serif;
  font-size: 1.22rem;
  font-weight: 900;
  letter-spacing: -.025em;
}

.faq summary::marker {
  color: var(--coral-dark);
}

.cta-box {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 7vw, 78px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 86% 20%, rgba(235, 91, 96, .22), transparent 28%),
    linear-gradient(135deg, var(--blue), var(--dark));
  box-shadow: var(--shadow-strong);
}

.cta-box h2 {
  color: var(--white);
}

.cta-box p:not(.section-label) {
  max-width: 780px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .76);
  font-size: 1.12rem;
  line-height: 1.8;
}

.contact-line {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-line a,
.contact-line span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .84);
  border: 1px solid rgba(255, 255, 255, .12);
  font-weight: 800;
}

.signature {
  font-family: Manrope, Inter, sans-serif;
  font-weight: 900;
  letter-spacing: -.03em;
}

.footer {
  padding-block: 48px;
  background: var(--dark);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 34px;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, .68);
  line-height: 1.7;
}

.footer strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
}

.footer a {
  display: block;
  margin-top: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s cubic-bezier(.22, 1, .36, 1), transform .75s cubic-bezier(.22, 1, .36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: .12s;
}


.legal-page .navbar {
  position: sticky;
  top: 0;
}

.legal-hero {
  min-height: 42vh;
  padding-top: 120px;
}

.legal-content {
  display: grid;
  gap: 22px;
  max-width: 980px;
}

.legal-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow);
}

.legal-block h2 {
  font-size: clamp(1.28rem, 2vw, 1.85rem);
  margin-bottom: 20px;
}

.legal-block p {
  color: rgba(36, 52, 71, .78);
  line-height: 1.75;
}

.legal-block p + p {
  margin-top: 10px;
}

.legal-block a {
  color: var(--teal);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

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

  .menu-button {
    display: inline-flex !important;
    visibility: visible;
    opacity: 1;
    flex: 0 0 46px;
    position: relative;
    z-index: 3;
  }

  .hero-grid,
  .split,
  .reverse {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 900px;
  }

  .hero-panel {
    max-width: 660px;
  }

  .cards-4,
  .service-grid,
  .steps,
  .result-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offers {
    grid-template-columns: 1fr;
  }

  .offer-highlight {
    transform: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-inner {
    height: 72px;
  }

  .logo {
    font-size: 1.18rem;
  }

  .hero {
    padding-block: 104px 62px;
  }

  h1 {
    font-size: clamp(1.78rem, 8.6vw, 2.65rem);
  }

  h2 {
    font-size: clamp(1.42rem, 6.8vw, 2rem);
  }

  .offers-transition {
    padding: 18px 20px;
    text-align: left;
  }

  .price-main {
    font-size: clamp(1.42rem, 7vw, 1.82rem);
  }

  .price-period {
    font-size: .82rem;
  }

  .hero-actions,
  .cta-actions,
  .contact-line {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .contact-line a,
  .contact-line span {
    width: 100%;
  }

  .panel-grid,
  .cards-4,
  .service-grid,
  .steps,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .panel-card,
  .cta-box {
    border-radius: 30px;
  }

  .section {
    padding-block: 68px;
  }

  .trust-card,
  .service,
  .step,
  .result,
  .offer,
  .comparison-card,
  .cost-card {
    border-radius: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Correctif spécifique page mentions légales */
.legal-page .navbar,
.legal-page .navbar.scrolled,
.legal-page .navbar.open {
  position: sticky;
  top: 0;
  background: rgba(15, 37, 61, .96);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  box-shadow: 0 14px 50px rgba(15, 37, 61, .20);
  backdrop-filter: blur(18px);
}

.legal-page .logo,
.legal-page .nav-links,
.legal-page .nav-links a {
  color: var(--white);
}

.legal-page .nav-links {
  color: rgba(255, 255, 255, .76);
}

.legal-page .menu-button {
  color: var(--white);
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .08);
}

.legal-hero {
  position: relative;
  min-height: auto;
  padding-top: clamp(76px, 8vw, 110px);
  padding-bottom: clamp(76px, 8vw, 110px);
  overflow: hidden;
  background: var(--dark);
}

.legal-hero .hero-pattern {
  z-index: 0;
  pointer-events: none;
}

.legal-hero .container {
  position: relative;
  z-index: 2;
}

.legal-hero h1,
.legal-hero .eyebrow,
.legal-hero .hero-text {
  color: var(--white);
}

.legal-hero .hero-text {
  color: rgba(255, 255, 255, .82);
}


/* Blog et article */
.content-page .navbar,
.content-page .navbar.scrolled,
.content-page .navbar.open {
  position: sticky;
  top: 0;
  background: rgba(15, 37, 61, .96);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  box-shadow: 0 14px 50px rgba(15, 37, 61, .20);
  backdrop-filter: blur(18px);
}

.content-page .logo,
.content-page .nav-links,
.content-page .nav-links a {
  color: var(--white);
}

.nav-links a[aria-current="page"],
.mobile-menu a[aria-current="page"] {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

.blog-hero,
.article-hero {
  position: relative;
  overflow: hidden;
  min-height: auto;
  padding-top: clamp(76px, 8vw, 110px);
  padding-bottom: clamp(76px, 8vw, 110px);
}

.blog-hero-inner,
.article-hero-inner {
  position: relative;
  z-index: 2;
}

.blog-hero h1 {
  font-size: clamp(2rem, 4.2vw, 4rem);
}

.article-hero h1 {
  max-width: 1040px;
  font-size: clamp(1.9rem, 4vw, 3.65rem);
  line-height: 1;
  text-transform: none;
}

.article-intro {
  max-width: 820px;
  margin-top: 24px;
  color: rgba(255, 255, 255, .80);
  font-size: clamp(1.06rem, 1.5vw, 1.25rem);
  line-height: 1.7;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 800;
}

.article-meta span,
.article-meta time {
  display: inline-flex;
  align-items: center;
}

.article-meta span + span::before,
.article-meta span + time::before,
.article-meta time + span::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-right: 18px;
  border-radius: 999px;
  background: var(--ochre);
}

.article-meta-light {
  margin-top: 26px;
  color: rgba(255, 255, 255, .72);
}

.blog-feature {
  margin-top: 48px;
  display: grid;
  grid-template-columns: minmax(240px, .68fr) minmax(0, 1.32fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.blog-feature-mark,
.blog-card-visual {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 18%, rgba(216, 138, 61, .34), transparent 27%),
    radial-gradient(circle at 20% 82%, rgba(0, 111, 120, .38), transparent 34%),
    var(--dark);
}

.blog-feature-mark::after,
.blog-card-visual::after {
  content: "";
  position: absolute;
  right: -72px;
  bottom: -72px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
}

.blog-feature-mark span,
.blog-card-number {
  position: relative;
  z-index: 1;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(3.4rem, 7vw, 7rem);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.08em;
  color: rgba(255, 255, 255, .16);
}

.blog-feature-mark strong,
.blog-card-category {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--ochre-dark);
  color: var(--white);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.blog-feature-content {
  padding: clamp(30px, 5vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-feature-content h3 {
  margin-top: 20px;
  max-width: 780px;
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  line-height: 1.05;
}

.blog-feature-content p,
.blog-card-body p {
  margin-top: 18px;
  color: rgba(36, 52, 71, .72);
  line-height: 1.75;
}

.blog-feature-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.blog-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.blog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.blog-card-visual {
  min-height: 300px;
}

.blog-card-body {
  padding: 30px;
}

.blog-card-body h3 {
  margin-top: 18px;
  font-size: clamp(1.22rem, 1.8vw, 1.65rem);
}

.blog-card-body h3 a:hover,
.blog-card-body h3 a:focus-visible {
  color: var(--teal);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--teal);
  font-weight: 900;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, .62);
  font-size: .84rem;
  font-weight: 800;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--white);
}

.article-section {
  padding-top: clamp(52px, 7vw, 88px);
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
}

.article-content {
  padding: clamp(26px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.article-content > p,
.article-content > ul,
.article-content > ol,
.article-content > blockquote,
.article-content > .table-scroll {
  margin-top: 22px;
}

.article-content > p,
.article-content li {
  color: rgba(36, 52, 71, .82);
  font-size: 1.04rem;
  line-height: 1.85;
}

.article-content > h2 {
  margin-top: 64px;
  padding-top: 8px;
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
  line-height: 1.08;
  scroll-margin-top: 120px;
}

.article-content > h3 {
  margin-top: 42px;
  color: var(--teal);
  font-size: clamp(1.16rem, 1.75vw, 1.5rem);
  line-height: 1.15;
  scroll-margin-top: 120px;
}

.article-content ul,
.article-content ol {
  padding-left: 1.35rem;
}

.article-content li + li {
  margin-top: 7px;
}

.article-content blockquote {
  padding: 26px 28px;
  border-left: 5px solid var(--ochre);
  border-radius: 0 24px 24px 0;
  background: var(--sand);
}

.article-content blockquote p {
  color: var(--blue);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.75;
}

.article-content a:not(.btn) {
  color: var(--teal);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.source-ref {
  margin-left: 2px;
  font-size: .72em;
  vertical-align: super;
}

.article-toc {
  margin-bottom: 42px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--sand);
}

.article-toc summary {
  cursor: pointer;
  color: var(--blue);
  font-family: Manrope, Inter, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
}

.article-toc ol {
  margin-top: 18px;
  columns: 2;
  column-gap: 42px;
  padding-left: 1.2rem;
}

.article-toc li {
  break-inside: avoid;
  margin: 0 0 8px;
  font-size: .92rem;
  line-height: 1.55;
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.article-content table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: var(--white);
}

.article-content th,
.article-content td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  line-height: 1.55;
}

.article-content th {
  background: var(--blue);
  color: var(--white);
  font-size: .86rem;
  letter-spacing: .02em;
}

.article-content tr:last-child td {
  border-bottom: 0;
}

.article-sources {
  margin-top: 64px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.article-sources h2 {
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
}

.article-sources ol {
  margin-top: 20px;
  padding-left: 1.35rem;
}

.author-box,
.article-cta {
  margin-top: 54px;
  padding: clamp(26px, 4vw, 40px);
  border-radius: 30px;
}

.author-box {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  background: var(--sand);
  border: 1px solid var(--line);
}

.author-monogram {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-family: Manrope, Inter, sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
}

.author-box .section-label {
  margin-bottom: 10px;
}

.author-box h2 {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
}

.author-box p:last-child {
  margin-top: 12px;
  color: rgba(36, 52, 71, .74);
  line-height: 1.7;
}

.article-cta {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 18%, rgba(235, 91, 96, .22), transparent 30%),
    var(--dark);
}

.article-cta h2 {
  color: var(--white);
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}

.article-cta p:not(.section-label) {
  max-width: 680px;
  margin-top: 18px;
  color: rgba(255, 255, 255, .76);
  line-height: 1.75;
}

.article-cta .btn {
  margin-top: 24px;
}

@media (max-width: 900px) {
  .blog-feature {
    grid-template-columns: 1fr;
  }

  .blog-feature-mark {
    min-height: 260px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .blog-hero,
  .article-hero {
    padding-top: 64px;
    padding-bottom: 66px;
  }

  .article-hero h1 {
    font-size: clamp(1.72rem, 8.3vw, 2.5rem);
  }

  .article-meta {
    flex-direction: column;
    gap: 8px;
  }

  .article-meta span + span::before,
  .article-meta span + time::before,
  .article-meta time + span::before {
    display: none;
  }

  .blog-feature-actions {
    flex-direction: column;
  }

  .blog-feature-actions .btn {
    width: 100%;
  }

  .article-content {
    padding: 24px 20px;
    border-radius: 26px;
  }

  .article-content > h2 {
    margin-top: 48px;
  }

  .article-content > h3 {
    margin-top: 34px;
  }

  .article-toc ol {
    columns: 1;
  }

  .author-box {
    grid-template-columns: 1fr;
  }
}


/* Navigation mobile-first : le bouton est visible par défaut.
   La navigation complète n'est rétablie que sur les écrans de bureau. */
@media (min-width: 1121px) {
  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: inline-flex;
  }

  .menu-button {
    display: none !important;
  }

  .mobile-menu,
  .mobile-menu.open {
    display: none !important;
  }

  body.menu-open {
    overflow: auto;
  }
}

/* Correctif V19 : navigation mobile maintenue dans le viewport */
@media (max-width: 1120px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .navbar {
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
  }

  .navbar .nav-inner {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-left: calc(14px + env(safe-area-inset-left));
    padding-right: calc(14px + env(safe-area-inset-right));
    gap: 12px;
  }

  .navbar .logo {
    min-width: 0;
    max-width: calc(100% - 76px);
    overflow: hidden;
  }

  .navbar .menu-button {
    position: absolute;
    top: 50%;
    right: calc(14px + env(safe-area-inset-right));
    margin: 0;
    transform: translateY(-50%);
    flex: 0 0 46px;
  }

  .navbar.open .menu-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .navbar.open .menu-button span:nth-child(2) {
    opacity: 0;
  }

  .navbar.open .menu-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .navbar .mobile-menu {
    position: fixed;
    top: 72px;
    left: calc(14px + env(safe-area-inset-left));
    right: calc(14px + env(safe-area-inset-right));
    width: auto;
    max-width: none;
    max-height: calc(100dvh - 88px);
    margin: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}
