:root {
  --primary: #008272;
  --background: #0B1312;
  --ink: #EAF3F0;
  --ink-soft: #CFE5E0;
  --muted: #A9BCB7;
  --surface: #0F1716;
  --surface-2: #131D1B;
  --card-border: #1E2A27;

  /* Effets */
  --ring: 0 0 0 3px rgba(0, 175, 152, .28);
  --radius: 14px;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, .35);
  --shadow-md: 0 10px 28px rgba(0, 0, 0, .45);

  /* Typo + échelles fluides */
  --fs-xs: clamp(.82rem, .78rem + .3vw, .9rem);
  --fs-sm: clamp(.94rem, .9rem + .35vw, 1rem);
  --fs-base: clamp(1rem, .98rem + .4vw, 1.08rem);
  --fs-lg: clamp(1.08rem, 1rem + .8vw, 1.25rem);
  --fs-xl: clamp(1.6rem, 1.2rem + 2.2vw, 2.28rem);
  --fs-h2: clamp(1.28rem, 1.1rem + 1.4vw, 1.75rem);
  --fs-h3: clamp(1.02rem, .98rem + .3vw, 1.08rem);

  /* Rythme vertical */
  --space-1: clamp(6px, .6vw, 8px);
  --space-2: clamp(10px, 1.2vw, 12px);
  --space-3: clamp(14px, 1.6vw, 16px);
  --space-4: clamp(18px, 2.4vw, 24px);
  --space-5: clamp(24px, 3vw, 32px);
  --space-6: clamp(32px, 4vw, 40px);

  /* Timing */
  --speed: 160ms cubic-bezier(.48, .08, .52, .92);
}

@media (prefers-contrast: more) {
  :root { --ring: 0 0 0 3px rgba(0, 175, 152, .6); }
}

/* Base styles */
*, *::before, *::after { box-sizing: border-box; }
html, body { max-width: 100vw; overflow-x: hidden; }
html { font-size: 15px; }
@media (max-width: 500px) { html { font-size: 14px; } }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1400px 900px at 60% -10%, rgba(0, 175, 152, .22) 0%, rgba(0, 175, 152, 0) 60%),
    radial-gradient(900px 700px at 10% 100%, rgba(0, 175, 152, .16) 0%, rgba(0, 175, 152, 0) 70%),
    linear-gradient(180deg, #0B1312 0%, #0B1312 100%);
  min-height: 100vh;
  letter-spacing: .01em;
  line-height: 1.6;
  margin: 0;
}
img { max-width: 100%; display: block; border-radius: 12px; }
a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--speed), color var(--speed);
}
a:hover, a:focus-visible { border-color: var(--primary); }
mark {
  background: rgba(0, 175, 152, .18);
  color: inherit;
  padding: 0 .25em;
  border-radius: 8px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  padding: 8px 12px;
  background: #103430;
  border-radius: 8px;
  z-index: 10001;
}

/* Progress Bar */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--primary);
  width: 0;
  z-index: 9999;
  transition: width .15s;
}

/* Performance helpers */
.container {
  max-width: 1100px;
  width: min(96%, 1100px);
  margin-inline: auto;
  contain: layout style paint;
}
section {
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}
@supports not (content-visibility: auto) {
  section { contain: paint; }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-header .container {
  margin: 8px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-radius: var(--radius);
  padding: 8px 12px;
  background: rgba(16, 24, 23, .65);
  backdrop-filter: saturate(1.2) blur(8px);
  border: 1px solid var(--card-border);
}
.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img { width: 42px; height: 42px; border-radius: 10px; }
.brand {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -.3px;
}

/* Nav */
.nav-list {
  list-style: none;
  display: flex;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.nav-link {
  position: relative;
  color: var(--ink);
  font-weight: 700;
  font-size: .98rem;
  padding: 7px 10px;
  border-radius: 10px;
  transition: background var(--speed), transform var(--speed);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-link .nav-ic { width: 16px; height: 16px; opacity: .9; }
.nav-link::after {
  content: "";
  position: absolute;
  left: 10px; right: 10px;
  bottom: 5px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--speed);
}
.nav-link:hover { background: #0E1816; transform: translateY(-1px); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.is-active { background: #0E1816; }
.nav-link.is-active::after { transform: scaleX(1); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  font-weight: 800;
  font-size: .98rem;
  padding: 10px 16px;
  border: 1px solid var(--card-border);
  transition: transform var(--speed), box-shadow var(--speed), filter var(--speed);
  color: #fff;
}
.btn:focus-visible { box-shadow: var(--ring); }
.btn-primary {
  background: var(--primary);
  border-color: transparent;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.btn-dark {
  background: #0F1F1C;
  color: #fff;
}
.btn-dark:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.icon-discord {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: inline-block;
}

/* Layout sections */
section { isolation: isolate; }
.section { padding: var(--space-6) var(--space-2); }
section + section {
  border-top: 1px solid rgba(255, 255, 255, .06);
  box-shadow: 0 -1px 0 rgba(0, 0, 0, .35) inset;
}
section + section::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: -1px;
  height: 64px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: .6;
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  min-height: 72vh;
  padding: 8vh 0 6vh;
  background: transparent;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 40% at 60% 30%, rgba(0, 175, 152, .18) 0%, transparent 70%),
    radial-gradient(40% 70% at 10% 90%, rgba(0, 175, 152, .14) 0%, transparent 80%);
  animation: float 9s ease-in-out infinite alternate;
}
@keyframes float {
  from { transform: translateY(0); }
  to   { transform: translateY(10px); }
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(70% 55% at 50% 40%, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, 0) 70%);
}
.hero-grid { position: relative; z-index: 3; display: grid; align-items: center; }
.hero-content {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.hero-title {
  font-size: var(--fs-xl);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
  text-shadow: 0 10px 28px rgba(0, 0, 0, .55);
}
.hero-secondary {
  display: block;
  font-size: var(--fs-lg);
  font-weight: 600;
  margin-top: 6px;
  color: var(--ink-soft);
}
.hero-desc { font-size: var(--fs-base); color: var(--muted); }
.hero-certif {
  font-size: var(--fs-sm);
  padding: 6px 12px;
  background: #0E1816;
  border-radius: 10px;
  display: inline-block;
  border: 1px solid var(--card-border);
  color: #D9ECE7;
}
.certif-badge {
  background: #E50047;  /* Rouge assombri pour contraste AA */
  color: #FFFFFF;
  border-radius: 4px;
  padding: 2px 6px;
  margin: 0 2px;
}
.cta-buttons {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

/* Scroll down arrow */
.scroll-down {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.scroll-text {
  color: var(--ink-soft);
  font-size: .98rem;
  margin-bottom: 6px;
  font-weight: 600;
}
.arrow-circle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--primary);
}
.arrow {
  color: var(--primary);
  font-size: 20px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

/* Section Titles */
.section-title {
  font-size: var(--fs-h2);
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: -.3px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-wrap: balance;
}
.section-title span { color: var(--primary); }
.section-subtitle {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 1.05em;
}
.h2-ic {
  width: 22px;
  height: 22px;
  color: var(--primary);
  flex: 0 0 auto;
}

/* Pills */
.pill, .pill-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .95rem;
  border: 1px solid #21423E;
  background: #103430;
  color: #D6F2EC;
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, .12);
}
.pill-ic {
  width: 16px;
  height: 16px;
  opacity: .95;
}
.pill-cta {
  background: var(--primary);
  color: #fff;
  border-color: transparent;
  transition: transform var(--speed), box-shadow var(--speed), filter var(--speed);
}
.pill-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); filter: brightness(.98); }
.pill small {
  opacity: .85;
  font-weight: 700;
  letter-spacing: .01em;
}
.pill--ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--card-border);
}

/* Team section */
.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  max-width: 820px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 14px 10px;
  transition: transform var(--speed), box-shadow var(--speed), border-color var(--speed), background var(--speed);
  text-align: center;
  color: var(--ink);
}
.team-card:hover, .team-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 175, 152, .35);
}
.team-card img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 10px;
}
.team-card p {
  margin-top: 5px;
  font-size: .98rem;
  font-weight: 600;
}
.role {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: .92rem;
}
.role-ic {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

/* ===== Outil Live – teaser ===== */
.teaser-grid {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  gap: 14px;
  align-items: stretch;
}
@media (max-width: 900px) { .teaser-grid { grid-template-columns: 1fr; } }

.teaser-card, .teaser-cta {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 16px 14px;
  color: var(--ink);
  transition: transform var(--speed), box-shadow var(--speed), border-color var(--speed);
}
.teaser-card:hover, .teaser-cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(0,175,152,.35);
}

.kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.kpi { background: var(--surface-2); border: 1px solid var(--card-border); border-radius: 10px; padding: 10px; }
.kpi-label { font-size: var(--fs-xs); color: var(--muted); font-weight: 700; display: block; }
.kpi-val { font-size: 1.15rem; font-weight: 800; }

.spark { width: 100%; height: 54px; color: var(--primary); margin-top: 10px; opacity: .9; }

.teaser-title { font-size: var(--fs-h3); margin: 0 0 6px; font-weight: 800; }
.teaser-txt { color: var(--muted); margin: 0 0 10px; }
.teaser-bullets { margin: 0; padding-left: 18px; color: var(--ink-soft); }
.teaser-bullets li { margin: 6px 0; }

.teaser-cta { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 10px; }
.teaser-note { color: var(--muted); font-size: .9rem; }


/* Services cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.card {
  border-radius: 12px;
  padding: 18px 12px;
  background: var(--surface);
  border: 1px solid var(--card-border);
  transition: transform var(--speed), box-shadow var(--speed), border-color var(--speed), background var(--speed);
  color: var(--ink);
}
.card:hover, .card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 175, 152, .35);
}
.card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.card-ic {
  width: 18px;
  height: 18px;
  color: var(--primary);
}
.card h3 {
  font-size: var(--fs-h3);
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}
.card p {
  font-size: .97rem;
  color: var(--muted);
}

/* Steps */
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 12px;
}
.step {
  border-radius: 12px;
  padding: 16px 12px;
  min-width: 180px;
  max-width: 300px;
  flex: 1 1 180px;
  background: var(--surface);
  border: 1px solid var(--card-border);
  transition: transform var(--speed), box-shadow var(--speed), border-color var(--speed), background var(--speed);
}
.step:hover, .step:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 175, 152, .35);
}
.step h3 {
  color: var(--ink);
  font-size: 1rem;
  margin: 0 0 7px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.step-ic {
  width: 16px;
  height: 16px;
  color: var(--primary);
}
.step p {
  color: var(--muted);
  font-size: .98rem;
}

/* FAQ */
.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 740px;
  margin: 28px auto 0;
  list-style: none; /* pas de puces */
  padding: 0;
}
.faq {
  border-radius: 12px;
  padding: 16px 14px;
  background: var(--surface);
  border: 1px solid var(--card-border);
  transition: transform var(--speed), box-shadow var(--speed), border-color var(--speed), background var(--speed);
}
.faq:hover, .faq:focus-within {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(0, 175, 152, .35);
}
.faq h3 {
  color: var(--ink);
  font-size: 1rem;
  margin: 0 0 6px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}
.faq-ic {
  width: 16px;
  height: 16px;
  color: var(--primary);
}
.faq p {
  color: var(--muted);
  font-size: .98rem;
}

/* Form */
form {
  margin: 26px auto 0;
  max-width: 420px;
  background: var(--surface);
  padding: 16px 14px 12px;
  border-radius: 12px;
  border: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hp {
  position: absolute !important;
  left: -9999px !important;
}
.input {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.input label, .input legend {
  font-weight: 700;
  color: var(--ink);
}
.input input[type="text"], .input input[type="email"] {
  border-radius: 10px;
  border: 1px solid #1E2A27;
  padding: 10px 10px;
  font-size: .98rem;
  background: #0F1716;
  color: var(--ink);
  outline: none;
  transition: border-color var(--speed), box-shadow var(--speed);
}
.input input::placeholder { color: #6E8380; }
.input input:focus {
  border-color: var(--primary);
  box-shadow: var(--ring);
}
.hint {
  color: #8EAAA5;
  font-size: .85em;
}
.inline {
  display: flex;
  gap: 8px;
  align-items: center;
}
.info-button {
  background: var(--surface-2);
  color: var(--ink);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
}
.info-button:hover { transform: translateY(-1px); }
.segmented {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.seg {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 10px 16px;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
  transition: background var(--speed), color var(--speed), border-color var(--speed), transform var(--speed), box-shadow var(--speed);
}
.seg input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.seg:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.seg:has(input:focus-visible) { box-shadow: var(--ring); }
.seg:has(input:checked) {
  background: var(--primary);
  color: #fff;
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.submit-button { width: 100%; }
.form-msg {
  margin: 6px 0 0;
  font-size: .95em;
  color: #CFE5E0;
}
.form-msg.error { color: #FFB3B3; }

/* Overlay plein écran centré */
.modal {
  position: fixed;
  inset: 0;                 /* occupe tout le viewport */
  display: none;            /* sera "flex" quand ouvert */
  z-index: 10011;
  background: rgba(8, 12, 11, .7);
  backdrop-filter: blur(6px);
  align-items: center;      /* centrage vertical */
  justify-content: center;  /* centrage horizontal */
  padding: 6vh 0;
  overscroll-behavior: contain;
}
.modal[aria-hidden="true"] { display: none; }

/* Quand modal ouvert, neutralise la containment du parent */
body.modal-open .container { contain: initial; }
body.modal-open section { content-visibility: visible; }

/* Contenu du modal */
.modal-content {
  background: var(--surface);
  padding: 18px 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--card-border);
  position: relative;

  width: auto;
  max-width: min(420px, 96vw);
  margin: 0 16px;
  max-height: calc(100vh - 12vh);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/* Bouton close */
.modal .close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 1.4em;
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
  background: transparent;
  border: none;
}

/* Neutralise le style .step hérité */
.modal .step {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  margin: 16px 0;
  min-width: 0;
  max-width: none;
  flex: 0 0 auto;
  transform: none;
}

/* Titre dans le modal */
.modal .step h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 800;
  display: block;
}

/* Images: pas d'étirement, respect du ratio */
.modal .step picture,
.modal .step img {
  display: block;
  width: 100%;
  height: auto !important;   /* empêche toute déformation */
  max-width: 100%;
  max-height: 70vh;          /* limite verticale */
  object-fit: contain;       /* garde le ratio */
  border-radius: 12px;
  margin-inline: auto;
}

/* CTA sticky mobile */
.cta-mobile-discord {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 5001;
  background: var(--primary);
  color: #fff;
  padding: 11px 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 12px 12px 0 0;
}
.cta-mobile-discord .icon-discord { width: 25px; height: 25px; }

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(.98);
  transition: all .6s cubic-bezier(.44, .12, .35, 1.16);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Footer */
.site-footer {
  background: transparent;
  padding: 18px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .06);
}
.site-footer p {
  color: var(--muted);
  font-size: .92em;
}
.official-page {
  font-size: .98em;
  color: var(--ink);
  font-weight: 800;
  margin-bottom: 2px;
}

/* Glass helper (if needed elsewhere) */
.glass {
  background: rgba(16, 24, 23, .65);
  border: 1px solid var(--card-border);
}
.glass-hover { transition: transform var(--speed), box-shadow var(--speed); }

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

/* ================================
   Responsive Adjustments
================================== */
@media (max-width: 1100px) {
  .container { width: min(96%, 1000px); }
}

@media (max-width: 900px) {
  .hero { min-height: 60vh; padding: 32px 0 0; }
  .hero-content { text-align: center; align-items: center; }
  .scroll-down { align-items: center; }
  .site-header .container { flex-direction: column; gap: 8px; }
  .nav-list { flex-wrap: wrap; }
  main { padding-bottom: 70px; }
  /* Increase nav-link padding for better tap target on mobile */
  .nav-link { padding: 10px 12px; }
}

@media (max-width: 700px) {
  .section-title {
    display: block;
    line-height: 1.15;
    gap: 0;
  }
  .section-title .h2-ic {
    display: inline-block;
    width: 20px; height: 20px;
    margin-right: 8px;
    vertical-align: -3px;
  }
  /* H1 plus lisible sur 2 lignes max */
  .hero-title { word-break: normal; hyphens: auto; }
}

@media (max-width: 800px) {
  .team-members { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; }
  .team-card img { width: 56px; height: 56px; }
  .cards-grid { gap: 10px; }
}

@media (max-width: 600px) {
  .cta-buttons { flex-direction: column; width: 100%; }
  .btn { width: 100%; justify-content: center; }
  .cards-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  form { max-width: 98vw; }
  .modal-content { max-width: 98vw; }
}
