:root {
  --black: #050507;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --soft: #f5f5f7;
  --white: #ffffff;
  --line: #d8d8df;
  --blue: #0071e3;
  --blue-dark: #005bb8;
  --cyan: #00c4cc;
  --violet: #7d2ae8;
  --sun: #f6b93b;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 18px 60px rgb(0 0 0 / 0.12);
  --shadow-dark: 0 24px 80px rgb(0 0 0 / 0.34);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.75rem, 8vw, 5.6rem);
  font-weight: 760;
}

h2 {
  font-size: clamp(2rem, 4.8vw, 4.25rem);
  font-weight: 740;
}

h3 {
  font-size: 1.25rem;
  font-weight: 720;
}

button,
summary {
  font: inherit;
}

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

.narrow {
  width: min(860px, calc(100% - 32px));
}

.section {
  padding: clamp(72px, 9vw, 132px) 0;
}

.section-dark {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 72% 18%, rgb(0 196 204 / 0.22), transparent 26%),
    radial-gradient(circle at 12% 22%, rgb(125 42 232 / 0.22), transparent 24%),
    linear-gradient(145deg, #020204 0%, #0a1019 52%, #020204 100%);
}

.section-light {
  background: var(--soft);
}

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

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 10px max(16px, calc((100vw - 1180px) / 2));
  color: var(--ink);
  background: rgb(255 255 255 / 0.82);
  border-bottom: 1px solid rgb(210 210 215 / 0.75);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 560;
}

.desktop-nav a:hover,
.site-footer a:hover,
.text-link:hover {
  color: var(--blue);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 720;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.nav-cta {
  padding: 0 17px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.9rem;
}

.button {
  padding: 0 22px;
  border: 1px solid transparent;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 10px 28px rgb(0 113 227 / 0.28);
}

.button-primary:hover,
.nav-cta:hover {
  background: var(--blue-dark);
}

.button-secondary-dark {
  color: var(--white);
  background: rgb(255 255 255 / 0.09);
  border-color: rgb(255 255 255 / 0.22);
}

.button-secondary-dark:hover {
  background: rgb(255 255 255 / 0.15);
}

.button-full {
  width: 100%;
}

.hero {
  min-height: calc(100vh - 64px);
  padding: clamp(56px, 7vw, 92px) 0 clamp(72px, 9vw, 132px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgb(255 255 255 / 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 72%, transparent);
  pointer-events: none;
}

.hero-grid,
.two-column,
.purchase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}

.hero-grid > *,
.two-column > *,
.purchase-grid > * {
  min-width: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.section-dark .eyebrow {
  color: #7eeaf0;
}

.hero-lede,
.section-lede {
  max-width: 720px;
  margin-top: 22px;
  color: rgb(255 255 255 / 0.72);
  font-size: clamp(1.08rem, 2.2vw, 1.35rem);
}

.section-lede {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.centered-actions {
  justify-content: center;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.trust-strip span {
  padding: 8px 12px;
  color: rgb(255 255 255 / 0.76);
  background: rgb(255 255 255 / 0.08);
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 999px;
  font-size: 0.86rem;
}

.hero-visual {
  position: relative;
  display: grid;
  justify-items: center;
}

.phone-shell {
  position: relative;
  width: min(340px, 80vw);
  padding: 16px;
  background: linear-gradient(145deg, #32343b, #050506);
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 48px;
  box-shadow: var(--shadow-dark);
}

.phone-speaker {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 76px;
  height: 8px;
  background: rgb(255 255 255 / 0.16);
  border-radius: 999px;
  transform: translateX(-50%);
  z-index: 2;
}

.phone-screen {
  aspect-ratio: 9 / 19.5;
  overflow: hidden;
  border-radius: 34px;
}

.floating-card {
  position: absolute;
  right: 0;
  bottom: 58px;
  width: min(250px, 62vw);
  padding: 18px;
  background: rgb(255 255 255 / 0.12);
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 22px;
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 60px rgb(0 0 0 / 0.28);
}

.floating-card strong {
  display: block;
  margin: 4px 0;
  font-size: 1rem;
}

.floating-card p,
.mini-label {
  color: rgb(255 255 255 / 0.66);
  font-size: 0.86rem;
}

.media-frame {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 220px;
  background: linear-gradient(135deg, #eef6ff, #f7f0ff);
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: var(--radius-lg);
}

.media-frame > img,
.media-frame > video,
.media-frame > .media-placeholder {
  grid-area: 1 / 1;
}

.media-frame img,
.media-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame img:not(.is-loaded),
.media-frame video:not(.is-loaded) {
  display: none;
}

.media-frame img.is-loaded + .media-placeholder,
.media-frame video.is-loaded + .media-placeholder {
  display: none;
}

.media-placeholder {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: inherit;
  padding: 28px;
  color: var(--ink);
}

.phone-screen .media-placeholder {
  color: var(--white);
  background:
    linear-gradient(180deg, rgb(0 0 0 / 0.1), rgb(0 0 0 / 0.68)),
    radial-gradient(circle at 50% 15%, rgb(0 196 204 / 0.36), transparent 30%),
    linear-gradient(155deg, #0d2945, #06111e 62%, #020204);
}

.media-placeholder strong {
  font-size: clamp(1.3rem, 4vw, 2rem);
  line-height: 1.08;
}

.media-placeholder p {
  max-width: 32ch;
  color: inherit;
  opacity: 0.72;
}

.placeholder-label {
  width: fit-content;
  padding: 6px 10px;
  color: var(--blue);
  background: rgb(0 113 227 / 0.1);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.phone-screen .placeholder-label,
.section-dark .placeholder-label {
  color: #8df8ff;
  background: rgb(0 196 204 / 0.16);
}

.ratio-video {
  aspect-ratio: 16 / 10;
}

.app-shot {
  aspect-ratio: 4 / 5;
}

.centered {
  text-align: center;
}

.centered .section-lede,
.centered.section-heading .section-lede,
.section-heading.centered .section-lede {
  margin-inline: auto;
}

.two-column p,
.purchase-grid p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #3f3f46;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 3px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 50%;
}

.before-after {
  display: grid;
  gap: 16px;
}

.compare-card {
  padding: 10px;
  background: var(--white);
  border: 1px solid rgb(210 210 215 / 0.8);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.compare-card p {
  margin: 10px 6px 4px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.bad {
  background: linear-gradient(135deg, #fff1ed, #fff8e6);
}

.good {
  background: linear-gradient(135deg, #eafff7, #eef7ff);
}

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

.steps article,
.feature-grid article,
.demo-card,
.price-card {
  background: var(--white);
  border: 1px solid rgb(210 210 215 / 0.82);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.04);
}

.steps article {
  padding: 24px;
  text-align: left;
}

.steps span {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--blue);
  font-weight: 800;
}

.steps p,
.feature-grid p,
.demo-card p,
.price-card li {
  margin-top: 10px;
  color: var(--muted);
}

.section-heading {
  margin-bottom: 42px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 32px;
  align-items: end;
}

.split-heading p:last-child {
  color: rgb(255 255 255 / 0.66);
}

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

.demo-card {
  padding: 12px;
  color: var(--ink);
}

.demo-card.featured {
  grid-row: span 2;
}

.demo-card h3 {
  margin: 18px 8px 0;
}

.demo-card p {
  margin: 8px 8px 10px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-grid article {
  min-height: 190px;
  padding: 26px;
}

.feature-grid article::before {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  content: "";
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 14px;
}

.muted {
  color: var(--muted);
}

.brand-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.brand-cloud span {
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid rgb(210 210 215 / 0.85);
  border-radius: 999px;
  font-weight: 720;
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.05);
}

.portrait-frame {
  aspect-ratio: 4 / 3;
  min-height: 320px;
  box-shadow: var(--shadow-soft);
}

.text-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--blue);
  font-weight: 760;
}

.purchase-grid {
  align-items: start;
}

.video-slot {
  margin-top: 28px;
}

.price-card {
  position: sticky;
  top: 88px;
  padding: 28px;
}

.offer-badge {
  display: inline-flex;
  padding: 7px 11px;
  color: var(--blue);
  background: rgb(0 113 227 / 0.1);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price-card h3 {
  margin-top: 20px;
  font-size: 1.7rem;
}

.price {
  margin-top: 14px;
  font-size: clamp(3.4rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 0.95;
}

.price span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

.price-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
}

.price-card li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--blue);
  font-weight: 900;
}

.fine-print {
  margin-top: 14px !important;
  text-align: center;
  font-size: 0.9rem !important;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid rgb(210 210 215 / 0.9);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.03);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 760;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  flex: 0 0 auto;
  content: "+";
  color: var(--blue);
  font-size: 1.35rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding: 0 22px 20px;
  color: var(--muted);
}

.final-cta {
  padding: clamp(72px, 9vw, 124px) 0;
}

.site-footer {
  padding: 28px 0;
  color: var(--muted);
  background: var(--black);
  border-top: 1px solid rgb(255 255 255 / 0.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-footer a {
  color: rgb(255 255 255 / 0.74);
  font-weight: 700;
}

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

  .hero-grid,
  .two-column,
  .purchase-grid,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .steps,
  .feature-grid,
  .demo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .price-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .site-header {
    width: 100vw;
    max-width: 100vw;
    min-height: 58px;
    justify-content: flex-start;
    overflow: hidden;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-cta {
    margin-left: auto;
    min-height: 38px;
    padding: 0 13px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.06em;
  }

  h1 {
    font-size: clamp(1.95rem, 8vw, 2.45rem);
    overflow-wrap: break-word;
  }

  .section,
  .hero {
    padding-block: 64px;
  }

  .hero-actions,
  .centered-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-strip span {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
    text-align: center;
  }

  .phone-shell {
    max-width: calc(100vw - 48px);
  }

  .floating-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 16px;
  }

  .steps,
  .feature-grid,
  .demo-grid {
    grid-template-columns: 1fr;
  }

  .demo-card.featured {
    grid-row: auto;
  }

  .feature-grid article {
    min-height: auto;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* =====================================================================
   v2 — additions : 2 piliers (posemètre + carte) & guide météo OpenWeather
   ===================================================================== */
:root {
  --ok: #2fb567;
  --warn: #f4a52b;
  --stop: #e5484d;
}

/* petit point de statut réutilisable */
.dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  vertical-align: middle;
}
.dot.ok { background: var(--ok); }
.dot.warn { background: var(--warn); }
.dot.stop { background: var(--stop); }

/* hero — 2e carte flottante (verdict de la carte) */
.floating-card.map-card {
  top: 22px;
  left: -6px;
  right: auto;
  bottom: auto;
}
.floating-card.result-card {
  right: -6px;
  bottom: 40px;
}
.floating-card.map-card strong .dot { margin-right: 6px; }

/* section "2 piliers" */
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 48px;
  text-align: left;
}
.pillar-card {
  position: relative;
  padding: 30px;
  background: var(--white);
  border: 1px solid rgb(210 210 215 / 0.82);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.pillar-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}
.pillar-card.is-map::before {
  background: linear-gradient(135deg, var(--ok), var(--cyan));
}
.pillar-index {
  display: inline-flex;
  padding: 6px 11px;
  color: var(--blue);
  background: rgb(0 113 227 / 0.1);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pillar-card.is-map .pillar-index {
  color: #0a7a45;
  background: rgb(47 181 103 / 0.14);
}
.pillar-q {
  margin: 16px 0 6px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
}
.pillar-card h3 { margin-bottom: 10px; }
.pillar-card > p { color: var(--muted); }
.pillar-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 18px 0 6px;
  list-style: none;
}
.pillar-list li {
  position: relative;
  padding-left: 24px;
  color: #3f3f46;
  font-size: 0.96rem;
}
.pillar-list li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--blue);
  font-weight: 900;
}
.pillar-card.is-map .pillar-list li::before { color: var(--ok); }

/* verdicts de la carte (fond sombre) */
.verdict-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.verdict {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: rgb(255 255 255 / 0.08);
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: 999px;
  font-weight: 720;
  font-size: 0.92rem;
}
.verdict.stop .dot { background: var(--stop); }
.verdict.warn .dot { background: var(--warn); }
.verdict.ok .dot { background: var(--ok); }

/* check-list claire sur fond sombre + paragraphes deux-colonnes sombres */
.check-list.light li { color: rgb(255 255 255 / 0.82); }
.section-dark .two-column p { color: rgb(255 255 255 / 0.72); }

/* badge de confiance (source officielle) */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  padding: 11px 16px;
  color: #0a7a45;
  background: rgb(47 181 103 / 0.16);
  border: 1px solid rgb(47 181 103 / 0.32);
  border-radius: 14px;
  font-weight: 720;
  font-size: 0.9rem;
}
.section-dark .trust-badge {
  color: #9af0c0;
  background: rgb(47 181 103 / 0.14);
  border-color: rgb(47 181 103 / 0.3);
}

/* encadrés d'honnêteté / d'astuce */
.note {
  margin-top: 22px !important;
  padding: 16px 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: 14px;
  color: var(--ink) !important;
  font-size: 0.98rem;
}
.note.tip { border-left-color: var(--cyan); }
.note strong { color: var(--ink); }
.section-dark .note {
  background: rgb(255 255 255 / 0.06);
  border-color: rgb(255 255 255 / 0.14);
  border-left-color: #7eeaf0;
  color: rgb(255 255 255 / 0.82) !important;
}
.section-dark .note strong { color: var(--white); }

/* visuel de la carte */
.map-frame {
  aspect-ratio: 4 / 5;
  min-height: 360px;
  box-shadow: var(--shadow-dark);
}

/* split-heading sur fond clair (section démo désormais blanche) */
.split-heading.dark-heading p:last-child { color: var(--muted); }

/* guide météo OpenWeather */
.guide-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 12px;
}
.guide-step {
  padding: 22px 20px;
  background: var(--white);
  border: 1px solid rgb(210 210 215 / 0.82);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.04);
}
.guide-step .num {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 50%;
  font-weight: 800;
}
.guide-step h3 { font-size: 1.05rem; }
.guide-step p { margin-top: 8px; color: var(--muted); font-size: 0.95rem; }

.meteo-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 26px;
}
.meteo-notes .note { margin-top: 0 !important; }

/* footer v2 */
.footer-legal { max-width: 760px; }
.footer-fine {
  margin-top: 8px;
  color: rgb(255 255 255 / 0.5);
  font-size: 0.82rem;
}

@media (max-width: 920px) {
  .pillars,
  .guide-steps,
  .meteo-notes {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .pillars,
  .guide-steps,
  .meteo-notes {
    grid-template-columns: 1fr;
  }
  .floating-card.map-card,
  .floating-card.result-card {
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
  .verdict { font-size: 0.86rem; }
  .map-frame { min-height: 300px; }
}

/* liens légaux du footer */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 12px;
}
.footer-links a {
  color: rgb(255 255 255 / 0.74);
  font-weight: 600;
  font-size: 0.88rem;
}
.footer-links a:hover {
  color: var(--blue);
}

/* =====================================================================
   Pages légales (mentions, CGV, confidentialité)
   ===================================================================== */
.legal {
  padding: clamp(40px, 6vw, 84px) 0 clamp(56px, 8vw, 110px);
}
.legal h1 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  margin-bottom: 6px;
}
.legal .updated {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 0.92rem;
}
.legal h2 {
  margin: 34px 0 8px;
  font-size: 1.35rem;
  font-weight: 740;
}
.legal p,
.legal li {
  margin-top: 10px;
  color: #3f3f46;
  line-height: 1.65;
}
.legal ul {
  margin: 6px 0 0;
  padding-left: 22px;
}
.legal a {
  color: var(--blue);
  font-weight: 600;
}
.legal a:hover {
  text-decoration: underline;
}
.legal .todo {
  padding: 2px 6px;
  background: rgb(246 185 59 / 0.18);
  border-radius: 6px;
  font-weight: 700;
  color: #8a5a00;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
}
.back-link:hover {
  color: var(--blue);
}
