/* ============================================================
   THE WORLD — Système de design "Plan de construction"
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  --ink: #0A1F44;
  --blue: #1E5AA8;
  --blue-bright: #2F7FD1;
  --grid: #B9D4EC;
  --paper: #FAFAF8;
  --mist: #EFF2F6;
  --graphite: #171A21;
  --graphite-soft: #4A5061;
  --line: #DCE2EA;
  --white: #FFFFFF;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --radius: 10px;
  --radius-sm: 6px;
  --max: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--graphite);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ---------- Utility: blueprint grid background ---------- */
.blueprint-bg {
  background-color: var(--ink);
  background-image:
    linear-gradient(rgba(185, 212, 236, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185, 212, 236, 0.09) 1px, transparent 1px);
  background-size: 42px 42px;
  position: relative;
}

/* Corner registration marks — like a drafting sheet */
.crop-mark {
  position: absolute;
  width: 18px;
  height: 18px;
  pointer-events: none;
}
.crop-mark::before, .crop-mark::after {
  content: '';
  position: absolute;
  background: rgba(185, 212, 236, 0.55);
}
.crop-mark::before { width: 100%; height: 1px; top: 50%; }
.crop-mark::after { height: 100%; width: 1px; left: 50%; }
.crop-mark.tl { top: 24px; left: 24px; }
.crop-mark.tr { top: 24px; right: 24px; }
.crop-mark.bl { bottom: 24px; left: 24px; }
.crop-mark.br { bottom: 24px; right: 24px; }

.sheet-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(185, 212, 236, 0.75);
  text-transform: uppercase;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.logo .mark {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--blue);
  border-radius: 2px;
  transform: rotate(45deg);
}
.logo .scale {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--graphite-soft);
  font-weight: 400;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 30px;
  font-size: 14.5px;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  color: var(--graphite);
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--blue); }
.nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 2px 0 rgba(10, 31, 68, 0.15);
}
.btn-primary:hover { background: var(--blue-bright); transform: translateY(-1px); }
.btn-donate {
  background: var(--ink);
  color: var(--white);
}
.btn-donate:hover { background: var(--blue); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-ghost-light {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.btn-light {
  background: var(--white);
  color: var(--ink);
}
.btn-light:hover { background: var(--grid); transform: translateY(-1px); }

.burger { display: none; }

/* ============================================================
   SECTIONS / TYPE
   ============================================================ */
section { padding: 96px 0; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--blue);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

h2 { font-size: clamp(28px, 3.4vw, 42px); line-height: 1.15; }
h3 { font-size: 21px; line-height: 1.3; }

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head p {
  color: var(--graphite-soft);
  font-size: 16.5px;
  margin-top: 14px;
}

/* ============================================================
   HERO (home)
   ============================================================ */
.hero {
  padding: 64px 0 0;
  color: var(--white);
  overflow: hidden;
}
.hero-inner {
  padding: 70px 0 90px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero .eyebrow { color: var(--grid); }
.hero .eyebrow::before { background: var(--grid); }

.hero h1 {
  font-size: clamp(44px, 6vw, 74px);
  line-height: 0.98;
  color: var(--white);
  letter-spacing: -0.02em;
}
.hero h1 .accent { color: var(--blue-bright); }

.hero .subtitle {
  font-family: var(--font-body);
  font-size: 19px;
  color: var(--grid);
  margin-top: 22px;
  max-width: 480px;
  font-weight: 400;
}

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

.hero-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(185, 212, 236, 0.25);
  aspect-ratio: 4/3.1;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .scale-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(10, 31, 68, 0.82);
  backdrop-filter: blur(6px);
  color: var(--grid);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 7px 12px;
  border-radius: 4px;
  border: 1px solid rgba(185,212,236,0.25);
}
.hero-visual .zone-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(10, 31, 68, 0.82);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 7px 12px;
  border-radius: 4px;
  border: 1px solid rgba(185,212,236,0.25);
}

.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid rgba(185, 212, 236, 0.2);
  padding-top: 28px;
}
.hero-stat { flex: 1; border-right: 1px solid rgba(185, 212, 236, 0.2); padding-right: 24px; }
.hero-stat:last-child { border-right: none; }
.hero-stat .num {
  font-family: var(--font-mono);
  font-size: 30px;
  color: var(--white);
  font-weight: 600;
}
.hero-stat .label {
  font-size: 13px;
  color: var(--grid);
  margin-top: 4px;
}

/* ============================================================
   SIGNATURE: SCALE / PROGRESS RULER
   ============================================================ */
.ruler-block {
  background: var(--ink);
  border: 1px solid rgba(185,212,236,0.2);
  border-radius: var(--radius);
  padding: 32px 32px 26px;
}
.ruler-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 22px;
  color: var(--white);
}
.ruler-top .ruler-title {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grid);
}
.ruler-top .ruler-pct {
  font-family: var(--font-mono);
  font-size: 34px;
  font-weight: 600;
  color: var(--white);
}
.ruler-track {
  position: relative;
  height: 34px;
}
.ruler-ticks {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
}
.ruler-ticks span {
  width: 1px;
  background: rgba(185,212,236,0.28);
  height: 100%;
}
.ruler-ticks span:nth-child(5n+1) { background: rgba(185,212,236,0.5); height: 100%; }
.ruler-base {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: rgba(185,212,236,0.15);
  border-radius: 3px;
}
.ruler-fill {
  position: absolute;
  bottom: 0; left: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  border-radius: 3px;
}
.ruler-marker {
  position: absolute;
  bottom: 0;
  width: 2px;
  height: 28px;
  background: var(--blue-bright);
}
.ruler-marker::after {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: var(--blue-bright);
  border-radius: 1px;
  transform: translateX(-50%) rotate(45deg);
}
.ruler-legend {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(185,212,236,0.6);
}

/* ============================================================
   CARDS
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(10, 31, 68, 0.08);
  border-color: var(--blue);
}
.card .code {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--blue);
  margin-bottom: 14px;
  letter-spacing: 0.06em;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--graphite-soft); font-size: 14.5px; }
.card .icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--mist);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}

/* ============================================================
   ABOUT / FOUNDERS
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-grid p { color: var(--graphite-soft); font-size: 16px; margin-top: 16px; }
.founders {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}
.founder-tag {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-family: var(--font-mono);
  font-size: 13px;
}
.founder-tag .name { font-weight: 600; color: var(--ink); display: block; font-family: var(--font-body); font-size: 14.5px; }
.founder-tag .role { color: var(--graphite-soft); font-size: 12px; }

.about-visual {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
}
.about-visual img { width: 100%; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(185,212,236,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(185,212,236,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h3 { color: var(--white); font-size: 26px; max-width: 440px; }
.cta-band .actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: var(--grid);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(185,212,236,0.15);
}
.footer-brand .logo { color: var(--white); }
.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(185,212,236,0.75);
  max-width: 260px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(185,212,236,0.85);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 12.5px;
  color: rgba(185,212,236,0.55);
}
.footer-bottom a:hover { color: var(--white); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-header {
  padding: 56px 0 64px;
  color: var(--white);
}
.page-header .eyebrow { color: var(--grid); }
.page-header .eyebrow::before { background: var(--grid); }
.page-header h1 { color: var(--white); font-size: clamp(34px, 4.4vw, 52px); }
.page-header p { color: var(--grid); font-size: 17px; margin-top: 16px; max-width: 560px; }

/* ============================================================
   ZONES (maquette page)
   ============================================================ */
.zone-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.zone-filter button {
  font-family: var(--font-mono);
  font-size: 12.5px;
  padding: 9px 16px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  color: var(--graphite-soft);
  transition: all 0.2s;
}
.zone-filter button.active, .zone-filter button:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--mist);
}

.zone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.zone-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.zone-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(10,31,68,0.08); }
.zone-media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.zone-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.zone-card:hover .zone-media img { transform: scale(1.05); }
.zone-status {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.status-termine { background: rgba(46, 138, 92, 0.9); color: white; }
.status-construction { background: rgba(30, 90, 168, 0.9); color: white; }
.status-preparation { background: rgba(200, 150, 20, 0.9); color: white; }
.status-avenir { background: rgba(74, 80, 97, 0.9); color: white; }

.zone-code {
  position: absolute;
  bottom: 12px; right: 12px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  background: rgba(10,31,68,0.75);
  color: var(--grid);
  padding: 5px 10px;
  border-radius: 4px;
}
.zone-body { padding: 22px; }
.zone-body h3 { margin-bottom: 8px; font-size: 18px; }
.zone-body p { font-size: 13.5px; color: var(--graphite-soft); margin-bottom: 16px; }
.zone-progress { display: flex; align-items: center; gap: 10px; }
.zone-progress .bar { flex: 1; height: 4px; background: var(--mist); border-radius: 2px; overflow: hidden; }
.zone-progress .bar span { display: block; height: 100%; background: var(--blue); border-radius: 2px; }
.zone-progress .pct { font-family: var(--font-mono); font-size: 12px; color: var(--ink); font-weight: 600; }

.category-strip {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding: 4px 0 14px;
  margin-bottom: 8px;
}
.category-strip::-webkit-scrollbar { display: none; }
.category-pill {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--graphite-soft);
  white-space: nowrap;
}
.category-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }

/* ============================================================
   PRESTATIONS
   ============================================================ */
.formule-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.formule-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  background: var(--white);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.formule-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(10,31,68,0.08); border-color: var(--blue); }
.formule-card.featured { border-color: var(--blue); background: var(--ink); color: var(--white); }
.formule-card.featured h3, .formule-card.featured .formule-price { color: var(--white); }
.formule-card.featured p, .formule-card.featured li { color: rgba(185,212,236,0.85); }
.formule-tag {
  position: absolute;
  top: -11px; left: 24px;
  background: var(--blue-bright);
  color: white;
  font-family: var(--font-mono);
  font-size: 10.5px;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.formule-card .code { font-family: var(--font-mono); font-size: 11.5px; color: var(--blue); letter-spacing: 0.06em; margin-bottom: 12px; }
.formule-card.featured .code { color: var(--blue-bright); }
.formule-price {
  font-family: var(--font-mono);
  font-size: 26px;
  color: var(--ink);
  margin: 14px 0 4px;
  font-weight: 600;
}
.formule-price span { font-size: 13px; color: var(--graphite-soft); font-weight: 400; }
.formule-card.featured .formule-price span { color: rgba(185,212,236,0.7); }
.formule-card p { font-size: 13.5px; color: var(--graphite-soft); margin-bottom: 20px; }
.formule-card ul { margin-bottom: 24px; }
.formule-card ul li {
  font-size: 13.5px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 8px;
}
.formule-card.featured ul li { border-color: rgba(185,212,236,0.15); }
.formule-card ul li::before { content: '—'; color: var(--blue); flex-shrink: 0; }
.formule-card.featured ul li::before { color: var(--blue-bright); }
.formule-card .btn { width: 100%; justify-content: center; }

.quote-band {
  background: var(--mist);
  border-radius: var(--radius);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.quote-band h3 { max-width: 420px; }
.quote-band p { color: var(--graphite-soft); margin-top: 10px; font-size: 14.5px; }

/* ============================================================
   BOUTIQUE
   ============================================================ */
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}
.shop-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.shop-cats button {
  font-size: 13.5px;
  padding: 9px 16px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  color: var(--graphite-soft);
  transition: all 0.2s;
}
.shop-cats button.active, .shop-cats button:hover { border-color: var(--blue); color: var(--blue); background: var(--mist); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(10,31,68,0.08); }
.product-media { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--mist); }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.product-card:hover .product-media img { transform: scale(1.06); }
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--ink);
  color: white;
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 5px 9px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.product-body { padding: 18px; }
.product-cat { font-family: var(--font-mono); font-size: 10.5px; color: var(--blue); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.product-body h3 { font-size: 15.5px; margin-bottom: 8px; }
.product-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; }
.product-price { font-family: var(--font-mono); font-weight: 600; color: var(--ink); font-size: 15px; }
.product-add {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--mist);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: background 0.2s, color 0.2s;
  font-size: 18px;
}
.product-add:hover { background: var(--blue); color: white; }

.license-band {
  background: var(--ink);
  border-radius: var(--radius);
  padding: 52px;
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.license-band h3 { color: white; font-size: 26px; }
.license-band p { color: rgba(185,212,236,0.8); margin-top: 12px; font-size: 14.5px; }
.license-plans { display: flex; flex-direction: column; gap: 10px; }
.license-plan {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid rgba(185,212,236,0.2);
  border-radius: var(--radius-sm);
}
.license-plan .name { font-weight: 600; font-size: 14.5px; }
.license-plan .period { font-family: var(--font-mono); font-size: 11.5px; color: rgba(185,212,236,0.65); margin-top: 2px; }
.license-plan .price { font-family: var(--font-mono); font-size: 17px; font-weight: 600; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .zone-grid { grid-template-columns: repeat(2, 1fr); }
  .formule-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .license-band { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .wrap { padding: 0 20px; }
  section { padding: 64px 0; }
  .card-grid, .zone-grid, .formule-grid, .product-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-stat { flex: 1 1 40%; border-right: none; }
  .quote-band, .cta-band { flex-direction: column; align-items: flex-start; padding: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .nav-actions .btn-outline { display: none; }
}
