/* Typolu, par Typocity — feuille de style du mini-site
   Couleurs et tailles en variables : modifiez-les ici, le reste suit. */

:root {
  --vert-profond: #0f2e1f;
  --vert: #0e6b37;
  --vert-clair: #e3f0e6;
  --citron: #d9f55a;
  --citron-pale: #f1fbc9;
  --ambre: #855000;
  --ambre-pale: #fff4d6;
  --encre: #14171a;
  --encre-douce: #4d5a52;
  --trait: #d3dbd4;
  --fond: #f5f7f2;
  --papier: #ffffff;

  --police: "Avenir Next", "Segoe UI", "Helvetica Neue", system-ui, -apple-system, sans-serif;
  --largeur: 1200px;
  --rayon: 6px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--police);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--encre);
  background: var(--papier);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: var(--vert); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--vert-profond); }
:focus-visible { outline: 3px solid var(--vert-profond); outline-offset: 3px; border-radius: 2px; }
.dark :focus-visible, .dark a:focus-visible, .dark button:focus-visible { outline-color: var(--citron); }

.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 16px; top: -60px; background: var(--citron); color: var(--vert-profond); padding: 10px 14px; font-weight: 600; z-index: 20; }
.skip:focus { top: 12px; }

h1, h2, h3, h4 { margin: 0; line-height: 1.12; letter-spacing: -0.015em; text-wrap: balance; }
h1 { font-size: clamp(2.25rem, 4.4vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.3125rem; font-weight: 650; }
p { margin: 0; text-wrap: pretty; }

.container { width: min(var(--largeur), 100% - 48px); margin-inline: auto; }
@media (max-width: 640px) { .container { width: calc(100% - 40px); } }

/* Petites capitales d'introduction */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--vert);
}
.eyebrow::before { content: ""; width: 22px; height: 3px; background: var(--citron); }
.dark .eyebrow { color: var(--citron); }

.lead { font-size: 1.25rem; line-height: 1.5; color: var(--encre-douce); }
.small { font-size: 0.9375rem; color: var(--encre-douce); }
.note { font-size: 0.9375rem; color: var(--encre-douce); }

/* Boutons */
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 22px;
  border: 2px solid var(--vert-profond); border-radius: var(--rayon);
  background: var(--papier); color: var(--vert-profond);
  font: inherit; font-weight: 650; text-decoration: none; cursor: pointer;
}
.button:hover { background: var(--fond); color: var(--vert-profond); }
.button.primary { background: var(--vert); border-color: var(--vert); color: #fff; }
.button.primary:hover { background: var(--vert-profond); border-color: var(--vert-profond); color: #fff; }
.button.lemon { background: var(--citron); border-color: var(--citron); color: var(--vert-profond); }
.button.lemon:hover { background: #cbe94a; border-color: #cbe94a; }
.button.ghost-light { background: transparent; border-color: rgba(255,255,255,.55); color: #fff; }
.button.ghost-light:hover { background: rgba(255,255,255,.1); color: #fff; }
.text-link { font-weight: 650; color: var(--vert-profond); }
.text-link:hover { color: var(--vert); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* En-tête */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255,255,255,.94); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--trait);
}
.site-header .container {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px;
  min-height: 72px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--encre); }
.brand-mark { width: 40px; height: 40px; border-radius: 8px; }
.brand-name { display: block; font-weight: 750; font-size: 1.125rem; line-height: 1.1; }
.brand-credit { display: block; font-size: 0.8125rem; color: var(--encre-douce); }
.site-nav { display: flex; gap: 6px; justify-content: center; }
.site-nav a {
  padding: 10px 14px; border-radius: var(--rayon); text-decoration: none; font-weight: 600; color: var(--encre);
}
.site-nav a:hover { background: var(--fond); color: var(--vert-profond); }
.site-nav a[aria-current="page"] { box-shadow: inset 0 -3px 0 var(--citron); }
.header-contact { display: flex; align-items: center; gap: 14px; }
.header-mail { font-size: 0.9375rem; color: var(--encre-douce); }

.button .short { display: none; }
@media (max-width: 900px) {
  .site-header .container { grid-template-columns: 1fr auto; grid-template-rows: auto auto; row-gap: 0; min-height: 0; padding-top: 8px; column-gap: 12px; }
  .site-nav { grid-column: 1 / -1; justify-content: flex-start; margin: 0 -8px; padding: 2px 8px 6px; overflow-x: auto; scrollbar-width: none; }
  .site-nav::-webkit-scrollbar { display: none; }
  .site-nav a { white-space: nowrap; padding: 6px 10px; font-size: 0.9375rem; }
  .header-mail { display: none; }
  .header-contact { grid-column: 2; grid-row: 1; justify-self: end; }
  .site-nav { grid-row: 2; }
  .header-contact .button { min-height: 44px; padding: 8px 14px; font-size: 0.9375rem; }
  .brand-mark { width: 34px; height: 34px; }
  .brand-name { font-size: 1.0625rem; }
}
@media (max-width: 480px) {
  .button .long { display: none; }
  .button .short { display: inline; }
  .brand-credit { display: none; }
}

/* Allègement mobile : les détails existent dans les pages intérieures */
.mobile-only { display: none; }
@media (max-width: 720px) {
  .mobile-hide { display: none !important; }
  .mobile-only { display: block; }
}

/* Sections */
.section { padding: 88px 0; }
.section.soft { background: var(--fond); }
.section-head { max-width: 720px; display: grid; gap: 14px; margin-bottom: 40px; }
@media (max-width: 720px) { .section { padding: 60px 0; } .section-head { margin-bottom: 28px; } }

/* A01 — Promesse */
.hero { padding: 72px 0 88px; position: relative; overflow: hidden; }
.hero .container { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: 56px; align-items: center; }
.hero-copy { display: grid; gap: 22px; }
.funding {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 16px; border-left: 4px solid var(--citron); background: var(--citron-pale);
  font-weight: 600; color: var(--vert-profond);
}
.hero-visual { position: relative; }
.parcels { position: absolute; inset: -40px -60px -40px -20px; width: calc(100% + 80px); height: calc(100% + 80px); z-index: 0; pointer-events: none; }
.proof-stack { position: relative; z-index: 1; display: grid; gap: 14px; }
.proof-map {
  border-radius: 10px; overflow: hidden; border: 1px solid var(--trait);
  aspect-ratio: 4 / 3; background: var(--fond);
  box-shadow: 0 18px 50px -24px rgba(15,46,31,.45);
}
.proof-map img { width: 100%; height: 100%; object-fit: cover; object-position: 78% 62%; }
.proof-card {
  margin: -70px 20px 0 40px; background: var(--papier); border: 1px solid var(--trait); border-radius: 10px;
  padding: 18px 20px; display: grid; gap: 12px; box-shadow: 0 18px 50px -24px rgba(15,46,31,.35);
}
.proof-card .card-kicker { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--encre-douce); }
.status { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; }
.status-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8125rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; white-space: nowrap;
}
.status-badge.ok { background: var(--vert-clair); color: var(--vert); }
.status-badge.check { background: var(--ambre-pale); color: var(--ambre); }
.status-badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.status strong { display: block; font-size: 1rem; }
.status span { display: block; font-size: 0.9375rem; color: var(--encre-douce); }
.proof-source { font-size: 0.875rem; color: var(--encre-douce); border-top: 1px dashed var(--trait); padding-top: 10px; }
.proof-source code { font-family: ui-monospace, Menlo, Consolas, monospace; font-size: 0.8125rem; color: var(--vert-profond); }
.hero-caption { font-size: 0.8125rem; color: var(--encre-douce); margin-left: 40px; }

@media (max-width: 960px) {
  .hero { padding: 48px 0 64px; }
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .proof-card { margin: -48px 8px 0 16px; }
  .hero-caption { margin-left: 16px; }
}

/* A02 — Parcours */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; counter-reset: etape; }
.step { background: var(--papier); border: 1px solid var(--trait); border-radius: 10px; overflow: hidden; display: grid; grid-template-rows: auto 1fr; }
.step figure { margin: 0; position: relative; aspect-ratio: 16 / 11; background: var(--fond); border-bottom: 1px solid var(--trait); }
.step figure img { width: 100%; height: 100%; object-fit: cover; }
.step figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 6px 12px; font-size: 0.75rem; color: #fff; background: rgba(15,46,31,.82); }
.step-body { padding: 22px 24px 26px; display: grid; gap: 10px; align-content: start; }
.step-num {
  counter-increment: etape;
  width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%;
  background: var(--vert-profond); color: var(--citron); font-weight: 800; font-size: 0.9375rem;
}
.step-num::before { content: counter(etape); }
.steps-footer { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 16px 28px; align-items: center; justify-content: space-between; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } .step figure { aspect-ratio: 16 / 9; } }

/* A03 — Preuve */
.proof .container { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 56px; align-items: center; }
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.checks li { display: grid; grid-template-columns: 26px 1fr; gap: 12px; align-items: start; font-size: 1.0625rem; }
.checks li::before {
  content: ""; width: 22px; height: 22px; margin-top: 3px; border-radius: 50%;
  background: var(--vert) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d9f55a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.result-demo { background: var(--vert-profond); color: #fff; border-radius: 12px; padding: 28px; display: grid; gap: 18px; position: relative; overflow: hidden; }
.result-demo .card-kicker { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--citron); }
.result-row { background: var(--papier); color: var(--encre); border-radius: 8px; padding: 16px 18px; display: grid; gap: 8px; border-left: 5px solid var(--vert); }
.result-row.check { border-left-color: var(--ambre); }
.result-row header { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: space-between; }
.result-row h4 { font-size: 1.0625rem; font-weight: 650; }
.result-row p { font-size: 0.9375rem; color: var(--encre-douce); }
.result-row .source { font-size: 0.8125rem; color: var(--vert-profond); display: flex; gap: 8px; align-items: center; }
.result-row .source::before { content: "§"; font-weight: 700; color: var(--vert); }
.pdf-line { display: grid; grid-template-columns: 64px 1fr; gap: 16px; align-items: center; }
.pdf-line img { width: 64px; height: 88px; object-fit: cover; object-position: top; border-radius: 4px; border: 1px solid rgba(255,255,255,.3); }
.pdf-line strong { display: block; color: #fff; }
.pdf-line span { display: block; font-size: 0.9375rem; color: rgba(255,255,255,.82); }
.pdf-line a { color: var(--citron); }
@media (max-width: 960px) { .proof .container { grid-template-columns: 1fr; gap: 36px; } .result-demo { padding: 22px; } }

/* A04 — Deux acheteurs */
.audiences { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.audience {
  background: var(--papier); border: 1px solid var(--trait); border-top: 6px solid var(--vert-profond); border-radius: 10px;
  padding: 30px 30px 32px; display: grid; gap: 14px; align-content: start;
}
.audience h3 { font-size: 1.5rem; }
.audience ul { margin: 6px 0 0; padding-left: 0; list-style: none; display: grid; gap: 8px; color: var(--encre-douce); }
.audience ul li { display: grid; grid-template-columns: 14px 1fr; gap: 10px; }
.audience ul li::before { content: ""; width: 14px; height: 3px; background: var(--citron); margin-top: 11px; }
.audience .text-link { margin-top: 8px; }
@media (max-width: 800px) { .audiences { grid-template-columns: 1fr; } .audience { padding: 24px; } }

/* A05 — Prix */
.pricing { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.price-card { background: var(--papier); border: 1px solid var(--trait); border-radius: 10px; padding: 30px; display: grid; gap: 18px; align-content: start; }
.price-card h3 { font-size: 1.5rem; }
.price-table { width: 100%; border-collapse: collapse; font-size: 1rem; }
.price-table th { text-align: left; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--encre-douce); padding: 0 0 10px; border-bottom: 2px solid var(--vert-profond); }
.price-table td { padding: 14px 0; border-bottom: 1px solid var(--trait); vertical-align: top; }
.price-table th:not(:first-child), .price-table td:not(:first-child) { text-align: right; padding-left: 12px; white-space: nowrap; }
.price-table strong { font-size: 1.125rem; color: var(--vert-profond); }
.price-table small, .price-note small { display: block; font-size: 0.8125rem; color: var(--encre-douce); white-space: normal; }
.price-big { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.price-big strong { font-size: 2.5rem; line-height: 1; color: var(--vert-profond); letter-spacing: -0.02em; }
.price-big span { color: var(--encre-douce); }
.setup-rows { display: grid; gap: 0; }
.setup-row { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--trait); }
.setup-row:first-child { border-top: 2px solid var(--vert-profond); }
.setup-row strong { color: var(--vert-profond); text-align: right; }
.setup-row small { display: block; font-size: 0.8125rem; color: var(--encre-douce); font-weight: 400; }
.price-card .text-link { margin-top: 6px; }
.rule { font-size: 0.9375rem; color: var(--encre-douce); padding: 12px 14px; background: var(--fond); border-radius: var(--rayon); }
@media (max-width: 800px) { .pricing { grid-template-columns: 1fr; } .price-card { padding: 24px; } .price-table th:not(:first-child), .price-table td:not(:first-child) { white-space: normal; } }

/* A06 — FAQ */
.faq { display: grid; gap: 10px; max-width: 860px; }
.faq details { background: var(--papier); border: 1px solid var(--trait); border-radius: var(--rayon); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 56px 18px 20px; font-weight: 650; font-size: 1.0625rem; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 20px; top: 50%; width: 14px; height: 14px; transform: translateY(-50%);
  background: linear-gradient(var(--vert-profond), var(--vert-profond)) center / 14px 2px no-repeat, linear-gradient(var(--vert-profond), var(--vert-profond)) center / 2px 14px no-repeat;
}
.faq details[open] summary::after { background: linear-gradient(var(--vert-profond), var(--vert-profond)) center / 14px 2px no-repeat; }
.faq details p { padding: 0 20px 20px; color: var(--encre-douce); max-width: 68ch; }

/* A07 — Contact */
.contact { background: var(--vert-profond); color: #fff; position: relative; overflow: hidden; }
.contact .container { position: relative; display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 48px; align-items: center; }
.contact h2 { color: #fff; }
.contact p { color: rgba(255,255,255,.85); }
.contact-box { position: relative; background: #163b29; border: 1px solid rgba(255,255,255,.2); border-radius: 10px; padding: 26px; display: grid; gap: 14px; }
.contact-box .label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--citron); }
.mail-placeholder { font-family: ui-monospace, Menlo, Consolas, monospace; font-size: 1rem; color: #fff; padding: 12px 14px; border: 1px dashed rgba(255,255,255,.45); border-radius: var(--rayon); }
.contact .parcels-bg { position: absolute; left: -120px; top: -80px; width: 640px; height: 520px; opacity: .6; pointer-events: none; }
@media (max-width: 900px) { .contact .container { grid-template-columns: 1fr; gap: 32px; } }

/* Pied de page */
.site-footer { padding: 36px 0; border-top: 1px solid var(--trait); font-size: 0.9375rem; color: var(--encre-douce); }
.site-footer .container { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: start; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer-links a { color: var(--encre); }
.site-footer strong { color: var(--encre); }
@media (max-width: 720px) { .site-footer .container { grid-template-columns: 1fr; } }

/* Pages intérieures */
.page-hero { padding: 72px 0 64px; border-bottom: 1px solid var(--trait); }
.page-hero .container { display: grid; gap: 20px; max-width: 820px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; counter-reset: etape; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.card { background: var(--papier); border: 1px solid var(--trait); border-radius: 10px; padding: 26px 28px; display: grid; gap: 12px; align-content: start; }
.card h3 { font-size: 1.25rem; }
.card p { color: var(--encre-douce); }
.card .step-num { margin-bottom: 4px; }
.status-card { border-top: 6px solid var(--vert); }
.status-card.check { border-top-color: var(--ambre); }
.status-card.out { border-top-color: var(--encre-douce); }
.status-card .status-badge { justify-self: start; }
.status-badge.out { background: #e9ecea; color: var(--encre-douce); }
.inline-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; max-width: 720px; }
.inline-nav .button { width: 100%; }
.offer-card { background: var(--papier); border: 1px solid var(--trait); border-radius: 10px; padding: 28px; display: grid; gap: 16px; align-content: start; }
.offer-card .population { font-weight: 650; }
.offer-card .price-big strong { font-size: 2.75rem; }
.setup-line { padding: 14px 0; border-top: 1px solid var(--trait); border-bottom: 1px solid var(--trait); display: grid; gap: 2px; }
.setup-line small { font-size: 0.8125rem; color: var(--encre-douce); text-transform: uppercase; letter-spacing: .06em; font-weight: 700; }
.setup-line strong { color: var(--vert-profond); font-size: 1.125rem; }
.offer-card .button { margin-top: auto; }
.offer-wide { grid-column: 1 / -1; }
.domain { font-family: ui-monospace, Menlo, Consolas, monospace; font-size: 1.25rem; color: var(--vert-profond); background: var(--citron-pale); padding: 12px 16px; border-radius: var(--rayon); display: inline-block; }
@media (max-width: 960px) { .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 720px) { .grid-4, .grid-2, .inline-nav { grid-template-columns: 1fr; } .card, .offer-card { padding: 22px; } .page-hero { padding: 48px 0 44px; } }

/* Captures agrandissables */
a.zoom { display: block; position: relative; cursor: zoom-in; }
a.zoom::after {
  content: ""; position: absolute; right: 10px; top: 10px; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(15,46,31,.85) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d9f55a' stroke-width='2.4' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-5-5M11 8v6M8 11h6'/%3E%3C/svg%3E") center / 18px no-repeat;
}
.proof-map a.zoom, .proof-map a.zoom img { height: 100%; }
dialog.lightbox { border: 0; padding: 0; background: transparent; max-width: min(96vw, 1400px); max-height: 96vh; width: auto; }
dialog.lightbox::backdrop { background: rgba(15,46,31,.92); }
dialog.lightbox figure { margin: 0; display: grid; gap: 10px; justify-items: center; }
dialog.lightbox img { max-width: 96vw; max-height: 84vh; width: auto; height: auto; border-radius: 6px; background: #fff; }
dialog.lightbox figcaption { color: #fff; font-size: 0.875rem; text-align: center; padding: 0 12px; }
dialog.lightbox .close { position: fixed; top: 12px; right: 12px; min-height: 44px; }
@media (max-width: 720px) { dialog.lightbox img { max-height: 80vh; } }

/* Mentions légales et données personnelles */
.legal { max-width: 760px; display: grid; gap: 28px; }
.legal h2 { font-size: 1.375rem; margin-top: 8px; }
.legal > div { display: grid; gap: 12px; }
.legal a { overflow-wrap: anywhere; }
.legal p, .legal li { color: var(--encre-douce); }
.legal .todo { background: var(--citron-pale); border-left: 4px solid var(--citron); padding: 12px 14px; color: var(--vert-profond); font-size: 0.9375rem; }

@media (max-width: 400px) {
  .domain { font-size: 1rem; word-break: break-all; }
  .price-big strong { font-size: 2rem; }
  .offer-card .price-big strong { font-size: 2.25rem; }
}

/* Coordonnées confirmées : liens lisibles sur les fonds de contact. */
.mail-placeholder a { color: inherit; overflow-wrap: anywhere; }
.phone-contact { display: grid; gap: 6px; }
.phone-contact a { color: #fff; font-size: 1.125rem; font-weight: 650; justify-self: start; }
.phone-contact a:hover { color: var(--citron); }

/* Petits écrans : laisser les grilles et les cartes se réduire à leur conteneur. */
.hero-copy, .proof-stack, .proof-card, .step, .step-body {
  min-width: 0;
  grid-template-columns: minmax(0, 1fr);
}
.hero-visual, .proof-map, .step figure, .price-card { min-width: 0; }
.step figure > .zoom { height: 100%; }

@media (max-width: 960px) {
  .hero .container { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 480px) {
  .status { grid-template-columns: minmax(0, 1fr); gap: 6px; }
  .status-badge { justify-self: start; }
}
@media (max-width: 400px) {
  .site-nav { gap: 0; }
  .site-nav a { padding-inline: 6px; min-height: 44px; display: flex; align-items: center; }
  .price-card { padding: 16px; }
  .price-table { table-layout: fixed; font-size: 0.9375rem; }
  .price-table th { font-size: 0.625rem; letter-spacing: 0.025em; }
  .price-table th:not(:first-child), .price-table td:not(:first-child) { padding-left: 8px; overflow-wrap: anywhere; }
  .price-table strong { font-size: 1rem; }
  .setup-row { flex-direction: column; gap: 8px; }
  .setup-row strong { text-align: left; }
}
