/* Polices hébergées sur le site (pas d'appel à Google : respect de la vie privée des visiteurs) */
@font-face {
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/lexend-v26-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/lexend-v26-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/lexend-v26-latin-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/source-sans-3-v19-latin-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/source-sans-3-v19-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/source-sans-3-v19-latin-700.woff2') format('woff2');
}

:root {
  --color-navy: #0B2545;
  --color-blue: #1D6FD1;
  --color-blue-light: #4FA8E0;
  --color-cta: #EA580C;
  --color-cta-hover: #C2480A;
  --color-bg: #FFFFFF;
  --color-bg-alt: #EAF4FC;
  --color-text: #16233C;
  --color-text-secondary: #4B5A6E;
  --color-border: #D9E6F2;

  --font-heading: 'Lexend', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: 16px;
  font-variant-numeric: tabular-nums;
}

::selection {
  background: var(--color-navy);
  color: #FFFFFF;
}

section[id] {
  scroll-margin-top: 5rem;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-navy);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 600; }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); font-weight: 600; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; font-weight: 600; }

p { color: var(--color-text-secondary); }

a { color: var(--color-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--color-blue); outline-offset: 2px; }

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

section {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--color-cta);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.9rem 1.75rem;
  border-radius: 8px;
  min-height: 44px;
  box-shadow: 0 1px 2px rgba(11, 37, 69, 0.08);
  transition: background 180ms ease, transform 180ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 180ms cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-cta:hover {
  background: var(--color-cta-hover);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -8px rgba(234, 88, 12, 0.45);
}
.btn-cta:focus-visible { background: var(--color-cta-hover); text-decoration: none; }
.btn-cta:active { transform: translateY(0); }
.btn-cta svg { width: 22px; height: 22px; flex-shrink: 0; }

@media (prefers-reduced-motion: reduce) {
  .btn-cta { transition: background 180ms ease; }
  .btn-cta:hover { transform: none; }
}

.btn-cta--lg {
  font-size: clamp(1.1rem, 4vw, 1.4rem);
  padding: 1.25rem 2.25rem;
}

.btn-cta--outline {
  background: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-border);
  box-shadow: none;
}
.btn-cta--outline:hover, .btn-cta--outline:focus-visible {
  background: var(--color-bg-alt);
  border-color: var(--color-blue);
  color: var(--color-navy);
  box-shadow: none;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-bg-alt);
  color: var(--color-navy);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
}
.badge svg { width: 16px; height: 16px; }

.card {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 200ms cubic-bezier(0.16, 1, 0.3, 1), border-color 200ms ease;
}

.card svg {
  width: 32px;
  height: 32px;
  color: var(--color-blue);
  margin-bottom: 0.75rem;
}

.card--urgent {
  border-color: var(--color-cta);
  background: #FFF7F2;
}

a.card:hover, a.card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--color-blue);
  box-shadow: 0 16px 28px -16px rgba(11, 37, 69, 0.25);
}
a.card.card--urgent:hover, a.card.card--urgent:focus-visible {
  border-color: var(--color-cta);
  box-shadow: 0 16px 28px -16px rgba(234, 88, 12, 0.3);
}

@media (prefers-reduced-motion: reduce) {
  .card { transition: border-color 200ms ease; }
  a.card:hover, a.card:focus-visible { transform: none; }
}

.grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
}

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

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 600px) {
  .grid--2 { grid-template-columns: 1fr; }
}

.grid--single {
  grid-template-columns: 1fr;
  max-width: 420px;
}

/* Services columns (aperçu accueil) */
.services-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem 2rem;
}

@media (max-width: 900px) {
  .services-columns { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-columns { grid-template-columns: 1fr; gap: 2.5rem; }
}

.service-column-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-alt);
  border-radius: 14px;
  margin-bottom: 1rem;
}
.service-column-icon svg { width: 40px; height: 40px; }

.service-column--urgent .service-column-icon {
  background: #FFF2E9;
}

.service-column h3 { margin-bottom: 0.9rem; }

.checklist {
  list-style: none;
  margin-bottom: 1.1rem;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border);
}
.checklist li:last-child { border-bottom: none; }
.checklist svg {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  color: var(--color-blue);
  flex-shrink: 0;
}
.service-column--urgent .checklist svg { color: var(--color-cta); }

.column-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 600;
  color: var(--color-blue);
}

/* Top bar */
.topbar {
  background: var(--color-navy);
  color: #FFFFFF;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.45rem 1.25rem;
  font-size: 0.85rem;
  flex-wrap: wrap;
}
.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.topbar svg { width: 14px; height: 14px; flex-shrink: 0; }

.status-live {
  font-weight: 600;
}
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: status-pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
  vertical-align: middle;
}
.status-dot.is-closed {
  background: #94A3B8;
  animation: none;
  box-shadow: none;
}

@keyframes status-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
  50% { box-shadow: 0 0 0 5px rgba(34, 197, 94, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .status-dot { animation: none; }
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  background: #FFFFFF;
  z-index: 10;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.site-header .logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-navy);
  font-size: 1.1rem;
}
.site-header .logo img { height: 56px; width: auto; }
.logo-text { white-space: nowrap; }

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.site-nav a {
  color: var(--color-navy);
  font-weight: 600;
  font-size: 0.95rem;
}
.site-nav a[aria-current="page"] { color: var(--color-blue); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-status {
  white-space: nowrap;
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-cta);
  font-weight: 700;
  font-family: var(--font-heading);
  white-space: nowrap;
}
.header-call svg { width: 20px; height: 20px; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-navy);
  cursor: pointer;
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 859px) {
  .site-header .container {
    flex-wrap: nowrap;
    gap: 0.5rem;
    position: relative;
  }
  .site-header .logo {
    font-size: 0.95rem;
    flex: 1;
    min-width: 0;
  }
  .site-header .logo img { height: 40px; }

  .header-status { display: none; }

  .header-call {
    width: 44px;
    height: 44px;
    justify-content: center;
    background: var(--color-cta);
    color: #FFFFFF;
    border-radius: 8px;
    flex-shrink: 0;
  }
  .header-call .call-text { display: none; }

  .nav-toggle { display: inline-flex; flex-shrink: 0; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-bottom: 1px solid var(--color-border);
    padding: 0.5rem 0 1rem;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul {
    flex-direction: column;
    gap: 0;
  }
  .site-nav a {
    display: block;
    padding: 0.85rem 1.25rem;
  }
}

/* Footer */
.site-footer {
  background: var(--color-navy);
  color: #FFFFFF;
  margin-top: 4rem;
  padding: 2.5rem 0;
}
.site-footer .container {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.95rem;
}
.site-footer a { color: #FFFFFF; text-decoration: underline; }
.site-footer strong { font-family: var(--font-heading); font-size: 1.1rem; }

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--color-bg-alt) 0%, #FFFFFF 60%);
  padding: 4rem 0;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../assets/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.4;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.55) 40%, rgba(255,255,255,0.1) 100%);
  z-index: 0;
}
.hero > .container {
  position: relative;
  z-index: 1;
}
.hero .badge { margin-bottom: 1rem; }
.hero h1 { max-width: 800px; margin: 0 auto 1rem; }
.hero p.lead {
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 2rem;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
  margin-bottom: 2rem;
}

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero > .container > * {
  animation: hero-rise 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero > .container > *:nth-child(1) { animation-delay: 0ms; }
.hero > .container > *:nth-child(2) { animation-delay: 60ms; }
.hero > .container > *:nth-child(3) { animation-delay: 120ms; }
.hero > .container > *:nth-child(4) { animation-delay: 180ms; }
.hero > .container > *:nth-child(5) { animation-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
  .hero > .container > * { animation: none; }
}


/* Zones */
.zone-groups {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
}
.zone-group h3 {
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
}

@media (max-width: 600px) {
  .zone-groups { grid-template-columns: 1fr; }
}

/* Carte de zone en fond, fondu léger (vraie photo de carte OpenStreetMap) */
.zone-map {
  position: relative;
  overflow: hidden;
}
.zone-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../assets/zone-map-photo.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  z-index: 0;
}
.zone-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(234,244,252,0.65) 0%, rgba(234,244,252,0.35) 45%, rgba(234,244,252,0.05) 100%);
  z-index: 0;
}
.zone-map > .container {
  position: relative;
  z-index: 1;
}

.hero--map::before {
  background-image: url('../assets/zone-map-photo.webp');
  opacity: 0.55;
}

/* Avis clients (marquee défilant) */
.reviews-section { padding-bottom: 3rem; }
.reviews-heading { text-align: center; margin-bottom: 2rem; }
.reviews-google-badge svg { width: 18px; height: 18px; }
.reviews-google-badge { margin-bottom: 0.75rem; }

.reviews-marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

/* Un seul bandeau continu : les vrais avis + leur copie, mis bout à bout,
   glissent ensemble. C'est ce qui garde toujours du contenu à l'écran. */
.reviews-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: reviews-scroll 36s linear infinite;
}
.reviews-marquee:hover .reviews-track,
.reviews-marquee:focus-within .reviews-track,
.reviews-marquee:active .reviews-track {
  animation-play-state: paused;
}

@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.review-card {
  flex: 0 0 300px;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: 0 1px 2px rgba(11, 37, 69, 0.05);
}
.review-stars {
  color: #F5A623;
  font-size: 1.05rem;
  letter-spacing: 2px;
}
.review-text {
  color: var(--color-text);
  font-size: 0.95rem;
  flex-grow: 1;
}
.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--color-border);
}
.review-name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-navy);
  font-size: 0.9rem;
}
.review-source {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--color-text-secondary);
  white-space: nowrap;
  flex-shrink: 0;
}
.review-source svg { width: 14px; height: 14px; flex-shrink: 0; }

@media (max-width: 600px) {
  .review-card { flex-basis: 260px; }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-track { animation: none; }
  .reviews-marquee { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .review-card--dup { display: none; }
}

/* FAQ (accordéons natifs <details>) */
.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  margin-bottom: 0.9rem;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.4rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-blue);
  flex-shrink: 0;
  transition: transform 200ms ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] { border-color: var(--color-blue); }
.faq-item summary:focus-visible { outline: 3px solid var(--color-blue); outline-offset: -2px; border-radius: 8px; }
.faq-answer { padding: 0 1.4rem 1.3rem; }
.faq-answer p { margin-bottom: 0.75rem; }
.faq-answer p:last-child { margin-bottom: 0; }

@media (prefers-reduced-motion: reduce) {
  .faq-item summary::after { transition: none; }
}

/* Chip list (zones) */
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  color: var(--color-navy);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  transition: border-color 180ms ease, transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}
.section-alt .chip { background: #FFFFFF; }
.chip:hover { border-color: var(--color-blue); transform: translateY(-2px); }

@media (prefers-reduced-motion: reduce) {
  .chip:hover { transform: none; }
}

/* Formulaire de demande de devis */
.form { display: grid; gap: 1.25rem; }
.field { display: grid; gap: 0.4rem; }
.field label { font-weight: 600; color: var(--color-navy); }
.field .req { color: var(--color-cta-hover); }
.field .opt { font-weight: 400; color: var(--color-text-secondary); }
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.9rem;
  font: inherit;
  color: var(--color-text);
  background: #FFFFFF;
  border: 1.5px solid #9DB2C8;
  border-radius: 8px;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 3px solid var(--color-blue);
  outline-offset: 1px;
  border-color: var(--color-blue);
}
.field input:user-invalid,
.field select:user-invalid { border-color: #B42318; }
.hint { font-size: 0.88rem; color: var(--color-text-secondary); }
.field--check { grid-template-columns: auto 1fr; align-items: start; gap: 0.75rem; }
.field--check input { width: 22px; height: 22px; margin-top: 0.15rem; accent-color: var(--color-blue); }
.field--check label { font-weight: 400; color: var(--color-text); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form .btn-cta { justify-self: start; border: 0; cursor: pointer; }
.form .btn-cta:disabled { opacity: 0.7; cursor: wait; }
.form-status { min-height: 1.5em; font-weight: 600; }
.form-status--success { color: #0F6B3A; }
.form-status--error { color: #B42318; }
.legal-list { margin: 0 0 1rem 1.25rem; color: var(--color-text-secondary); }
.legal-list li { margin-bottom: 0.5rem; }

/* Icône d'un bouton placé dans une carte : garde la taille et la couleur du bouton */
.card .btn-cta svg { width: 22px; height: 22px; color: inherit; margin-bottom: 0; }
.site-nav a { white-space: nowrap; }

#devis-title { scroll-margin-top: 7rem; }

/* Formulaire de devis : carte et sections numérotées */
.form-card {
  gap: 0;
  padding: 2rem;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  box-shadow: 0 18px 40px -28px rgba(11, 37, 69, 0.35);
}
.form-section { display: grid; gap: 1.25rem; padding-bottom: 2rem; margin-bottom: 2rem; border-bottom: 1px solid var(--color-border); }
.form-section--last { padding-bottom: 0; margin-bottom: 0; border-bottom: 0; }
.form-section-head { display: flex; align-items: center; gap: 0.9rem; }
.form-section-head h3 { font-size: 1.2rem; margin: 0; }
.form-section-head .hint { margin: 0.1rem 0 0; }
.step {
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem;
  border-radius: 50%;
  background: var(--color-navy); color: #FFFFFF;
  font-family: var(--font-heading); font-weight: 600; font-size: 1rem;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.hint--tight { margin-top: -0.6rem; }

.field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.6rem;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230B2545' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 16px;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--color-blue); }
.field input::placeholder, .field textarea::placeholder { color: #7A8AA0; }

.consent {
  display: grid; grid-template-columns: auto 1fr; gap: 0.8rem; align-items: start;
  padding: 1rem 1.1rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 12px;
}
.consent input { width: 22px; height: 22px; margin-top: 0.15rem; accent-color: var(--color-blue); }
.consent label { font-size: 0.95rem; color: var(--color-text); }
.btn-block { width: 100%; justify-content: center; justify-self: stretch; }

@media (max-width: 640px) {
  .form-card { padding: 1.25rem; border-radius: 16px; }
  .field-row { grid-template-columns: 1fr; gap: 1.25rem; }
  .hint--tight { margin-top: 0; }
}
