/* ============================================================
   evionnaz.com — Domaine à vendre — Couleurs du blason communal : azur (bleu) et argent (blanc).
   ============================================================ */

:root {
  --bg: #06060b;
  --bg-2: #0c0c14;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f4f4f8;
  --text-2: #b8b8c8;
  --text-3: #7d7d92;
  --orange: #38bdf8;
  --pink: #2563eb;
  --violet: #94a3b8;
  --green: #34d399;
  --grad: linear-gradient(120deg, #7dd3fc 0%, #38bdf8 30%, #2563eb 65%, #94a3b8 100%);
  --grad-btn: linear-gradient(120deg, #38bdf8 0%, #2563eb 100%);
  --radius: 20px;
  --radius-sm: 12px;
  --font: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.modal-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
h1, h2, h3 { margin: 0; font-weight: 600; letter-spacing: -0.02em; line-height: 1.12; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
strong { font-weight: 600; color: var(--text); }
::selection { background: rgba(37,99,235, .35); }

/* ---------- Background ---------- */
.bg { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.blob {
  position: absolute; border-radius: 50%; opacity: .6;
  will-change: transform; animation: float 22s ease-in-out infinite alternate;
}
.blob-1 { width: 90vw; height: 90vw; top: -45vw; left: -30vw; background: radial-gradient(circle at 50% 50%, rgba(56,189,248,.7) 0%, rgba(56,189,248,.28) 25%, rgba(56,189,248,.08) 48%, rgba(56,189,248,0) 70%); }
.blob-2 { width: 85vw; height: 85vw; top: -10vh; right: -40vw; background: radial-gradient(circle at 50% 50%, rgba(37,99,235,.65) 0%, rgba(37,99,235,.25) 25%, rgba(37,99,235,.07) 48%, rgba(37,99,235,0) 70%); animation-delay: -8s; animation-duration: 28s; }
.blob-3 { width: 80vw; height: 80vw; bottom: -40vw; left: 15vw; background: radial-gradient(circle at 50% 50%, rgba(148,163,184,.65) 0%, rgba(148,163,184,.25) 25%, rgba(148,163,184,.07) 48%, rgba(148,163,184,0) 70%); animation-delay: -15s; animation-duration: 26s; opacity: .55; }
@keyframes float {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(6vw, -4vh, 0) scale(1.08); }
  100% { transform: translate3d(-4vw, 5vh, 0) scale(.96); }
}
.grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, #000 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, #000 20%, transparent 100%);
}
.grain {
  position: absolute; inset: -50%; opacity: .06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  max-width: 1120px; margin: 0 auto; padding: 18px 24px;
}
.nav::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, rgba(6,6,11,.85), rgba(6,6,11,0));
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  mask-image: linear-gradient(to bottom, #000 60%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: -0.02em; }
.brand-mark {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px;
  background: var(--grad-btn); color: #fff; font-weight: 700; font-size: 17px;
  box-shadow: 0 6px 20px -6px rgba(37, 99, 235, .7);
}
.brand-name { font-size: 18px; }
.brand-tld { color: var(--text-3); }
.nav-links { display: flex; gap: 28px; font-size: 15px; color: var(--text-2); }
.nav-links a { transition: color .2s; }
.nav-links a:hover { color: var(--text); }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 22px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 600; font-size: 15px; letter-spacing: -0.005em; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, border-color .25s, color .25s;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: translateY(1px) scale(.985); }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-block { width: 100%; }
.btn-primary {
  color: #fff; background: var(--grad-btn);
  box-shadow: 0 10px 30px -8px rgba(37, 99, 235, .65), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-primary::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(120deg, rgba(255,255,255,.28), transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -8px rgba(37, 99, 235, .8), inset 0 1px 0 rgba(255,255,255,.3); }
.btn-primary:hover::after { opacity: 1; }
.btn-primary svg { transition: transform .3s var(--ease); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-ghost {
  color: var(--text); background: var(--surface); border-color: var(--border-strong);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: var(--surface-2); border-color: rgba(255,255,255,.28); transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.link-btn { background: none; border: 0; padding: 0; color: var(--text-2); text-decoration: underline; text-underline-offset: 3px; }
.link-btn:hover { color: var(--text); }

/* ---------- Hero ---------- */
.hero {
  position: relative; max-width: 1120px; margin: 0 auto; padding: 72px 24px 40px; text-align: center;
}
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 12px; border-radius: 999px; font-size: 14px; font-weight: 500;
  color: var(--text-2); background: var(--surface); border: 1px solid var(--border);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.pill-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 0 rgba(52, 211, 153, .7); animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, .6); }
  70% { box-shadow: 0 0 0 10px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}
.hero-title { margin-top: 28px; font-size: clamp(56px, 11vw, 136px); font-weight: 700; letter-spacing: -0.045em; line-height: 1; }
.hero-domain {
  display: inline-block;
  background: var(--grad); background-size: 200% 200%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 8s ease-in-out infinite;
}
.hero-tld { color: transparent; background: linear-gradient(120deg, rgba(255,255,255,.95), rgba(255,255,255,.55)); -webkit-background-clip: text; background-clip: text; font-weight: 500; }
@keyframes shimmer { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.hero-sub {
  max-width: 640px; margin: 26px auto 0; font-size: clamp(17px, 2vw, 20px); color: var(--text-2); line-height: 1.55;
}
.hero-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 36px; }
.stats {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 0; margin: 44px auto 0; max-width: 760px;
}
.stats li {
  display: flex; flex-direction: column; align-items: center; flex: 1 1 150px; padding: 12px 18px;
  border-left: 1px solid var(--border);
}
.stats li:first-child { border-left: 0; }
.stat-num { font-size: 28px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.stat-label { margin-top: 6px; font-size: 13px; color: var(--text-3); text-transform: uppercase; letter-spacing: .08em; }

/* Hero mock browser */
.hero-card { max-width: 820px; margin: 56px auto 0; perspective: 1400px; }
.browser {
  border-radius: 18px; border: 1px solid var(--border-strong); background: rgba(14,14,22,.7);
  box-shadow: 0 40px 100px -30px rgba(0,0,0,.9), 0 0 0 1px rgba(255,255,255,.03) inset, 0 30px 80px -40px rgba(37,99,235,.35);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  transform: rotateX(8deg); transform-origin: top; transition: transform .8s var(--ease);
  overflow: hidden;
}
.hero-card:hover .browser { transform: rotateX(0deg); }
.browser-bar {
  display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.03);
}
.browser-bar > span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.14); }
.browser-bar > span:nth-child(1) { background: #ff5f57; } .browser-bar > span:nth-child(2) { background: #febc2e; } .browser-bar > span:nth-child(3) { background: #28c840; }
.browser-url {
  display: flex; align-items: center; gap: 8px; flex: 1; margin-left: 10px; padding: 7px 14px;
  border-radius: 8px; background: rgba(0,0,0,.35); font-size: 13px; color: var(--text-3);
}
.browser-url b { color: var(--text); font-weight: 600; }
.browser-body { position: relative; padding: 36px 40px 44px; text-align: left; }
.skeleton { border-radius: 8px; background: linear-gradient(90deg, rgba(255,255,255,.06), rgba(255,255,255,.12), rgba(255,255,255,.06)); background-size: 200% 100%; animation: shine 2.4s linear infinite; }
@keyframes shine { to { background-position: -200% 0; } }
.skeleton-title { width: 46%; height: 28px; }
.skeleton-line { width: 72%; height: 12px; margin-top: 18px; }
.skeleton-line.short { width: 52%; margin-top: 10px; }
.skeleton-row { display: flex; gap: 14px; margin-top: 28px; }
.skeleton-box { flex: 1; height: 86px; border-radius: 12px; }
.skeleton-tag {
  position: absolute; right: 28px; bottom: 28px; padding: 8px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 600; color: #fff; background: var(--grad-btn);
  box-shadow: 0 10px 30px -8px rgba(37, 99, 235, .7); transform: rotate(-3deg);
}

/* ---------- Sections ---------- */
.section { position: relative; max-width: 1120px; margin: 0 auto; padding: 96px 24px 0; }
.section-head { max-width: 640px; margin-bottom: 40px; }
.eyebrow {
  display: inline-block; margin-bottom: 14px; font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  background: var(--grad-btn); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section h2 { font-size: clamp(30px, 4.2vw, 44px); }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.card {
  position: relative; padding: 28px; border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--surface); overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s, background .35s;
}
.card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .4s;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 0%), rgba(255,255,255,.08), transparent 45%);
  pointer-events: none;
}
.card:hover { transform: translateY(-4px); border-color: var(--border-strong); background: var(--surface-2); }
.card:hover::before { opacity: 1; }
.card h3 { margin-top: 20px; font-size: 19px; }
.card p { margin-top: 10px; font-size: 15px; color: var(--text-2); line-height: 1.55; }
.card-icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; }
.card-icon svg { width: 22px; height: 22px; }
.i-orange { background: rgba(56,189,248,.14); color: #7dd3fc; box-shadow: inset 0 0 0 1px rgba(56,189,248,.3); }
.i-pink   { background: rgba(37,99,235,.14); color: #93c5fd; box-shadow: inset 0 0 0 1px rgba(37,99,235,.3); }
.i-violet { background: rgba(148,163,184,.16); color: #e2e8f0; box-shadow: inset 0 0 0 1px rgba(148,163,184,.35); }
.i-green  { background: rgba(52,211,153,.14); color: #6ee7b7; box-shadow: inset 0 0 0 1px rgba(52,211,153,.3); }

/* Ideas */
.ideas { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 0 40px; border-top: 1px solid var(--border); }
.idea { display: flex; gap: 22px; padding: 30px 0; border-bottom: 1px solid var(--border); }
.idea-num {
  flex: 0 0 auto; font-size: 14px; font-weight: 700; letter-spacing: .06em; padding-top: 4px;
  background: var(--grad-btn); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.idea h3 { font-size: 20px; }
.idea p { margin-top: 8px; font-size: 15px; color: var(--text-2); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; counter-reset: step; }
.step {
  position: relative; padding: 32px 28px; border-radius: var(--radius); border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
}
.step-badge {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  font-weight: 700; font-size: 16px; color: #fff; background: var(--grad-btn);
  box-shadow: 0 8px 24px -8px rgba(37, 99, 235, .8);
}
.step h3 { margin-top: 22px; font-size: 20px; }
.step p { margin-top: 10px; font-size: 15px; color: var(--text-2); }

/* CTA final */
.cta-final { padding-bottom: 40px; }
.cta-box {
  position: relative; overflow: hidden; text-align: center; padding: 72px 28px;
  border-radius: 28px; border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
}
.cta-glow {
  position: absolute; left: 50%; top: 50%; width: 700px; height: 700px; transform: translate(-50%, -40%);
  background: radial-gradient(circle, rgba(37,99,235,.28), rgba(148,163,184,.12) 40%, transparent 65%);
  pointer-events: none;
}
.cta-box > * { position: relative; }
.cta-box h2 { font-size: clamp(30px, 4.5vw, 48px); }
.cta-box p { margin: 16px auto 32px; color: var(--text-2); max-width: 480px; }

/* Footer */
.footer {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; align-items: center;
  max-width: 1120px; margin: 0 auto; padding: 40px 24px 48px; font-size: 14px; color: var(--text-3);
}
.footer-sep { opacity: .5; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0s); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .blob, .hero-domain, .pill-dot, .skeleton { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 16px; }
.modal[hidden] { display: none; }
.modal-backdrop {
  position: absolute; inset: 0; background: rgba(4,4,8,.6);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  opacity: 0; transition: opacity .35s;
}
.modal-panel {
  position: relative; width: 100%; max-width: 560px; max-height: calc(100vh - 32px); max-height: calc(100dvh - 32px); overflow: auto;
  border-radius: 24px; border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, rgba(20,20,30,.96), rgba(12,12,20,.98));
  box-shadow: 0 50px 120px -30px rgba(0,0,0,.9), 0 0 0 1px rgba(255,255,255,.04) inset, 0 40px 100px -50px rgba(37,99,235,.45);
  opacity: 0; transform: translateY(24px) scale(.96);
  transition: opacity .4s var(--ease), transform .45s var(--ease);
}
.modal-panel::before {
  content: ""; position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
}
.modal.is-open .modal-backdrop { opacity: 1; }
.modal.is-open .modal-panel { opacity: 1; transform: none; }
.modal-close {
  position: absolute; top: 14px; right: 14px; z-index: 2; display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--surface); color: var(--text-2); transition: background .2s, color .2s, transform .2s;
}
.modal-close:hover { background: var(--surface-2); color: var(--text); transform: rotate(90deg); }
.modal-body { padding: 36px 36px 32px; }
.modal-body h2 { font-size: 30px; }
.modal-lead { margin-top: 10px; font-size: 15px; color: var(--text-2); }

form { margin-top: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 14px; }
.field label { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 600; color: var(--text-2); letter-spacing: .02em; }
.field .opt { font-weight: 400; color: var(--text-3); }
.field input, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: var(--radius-sm); border: 1px solid var(--border);
  background: rgba(0,0,0,.3); color: var(--text); font: inherit; font-size: 15px;
  transition: border-color .2s, box-shadow .2s, background .2s; outline: none;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-3); }
.field input:focus, .field textarea:focus {
  border-color: rgba(56,189,248,.7); background: rgba(0,0,0,.4);
  box-shadow: 0 0 0 4px rgba(56,189,248,.15);
}
.field input.is-invalid, .field textarea.is-invalid { border-color: rgba(37,99,235,.8); box-shadow: 0 0 0 4px rgba(37,99,235,.15); }
.field textarea { resize: vertical; min-height: 110px; }

.captcha-row { display: flex; gap: 12px; align-items: stretch; }
.captcha-img-wrap { display: flex; align-items: center; gap: 8px; flex: 0 0 auto; }
.captcha-img-wrap img {
  display: block; width: 160px; height: 56px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: #f6f4ef;
}
.captcha-refresh {
  display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--surface); color: var(--text-2);
  transition: transform .4s var(--ease), color .2s, background .2s;
}
.captcha-refresh:hover { transform: rotate(180deg); color: var(--text); background: var(--surface-2); }
.captcha-row input { flex: 1; min-width: 0; text-transform: uppercase; letter-spacing: .2em; font-weight: 600; }
.captcha-row input::placeholder { text-transform: none; letter-spacing: normal; font-weight: 400; }

.hp { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; }

.form-error {
  margin: 4px 0 14px; padding: 12px 14px; border-radius: var(--radius-sm); font-size: 14px;
  color: #ffb3c8; background: rgba(37,99,235,.12); border: 1px solid rgba(37,99,235,.35);
}
.form-note { margin-top: 14px; font-size: 12.5px; color: var(--text-3); text-align: center; }

.btn-spinner {
  display: none; width: 18px; height: 18px; border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,.35); border-top-color: #fff; animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.btn.is-loading { pointer-events: none; opacity: .85; }
.btn.is-loading .btn-label { display: none; }
.btn.is-loading .btn-spinner { display: inline-block; }

/* Success view */
.modal-success { text-align: center; padding-top: 48px; padding-bottom: 44px; }
.modal-success p { margin: 12px auto 28px; max-width: 380px; color: var(--text-2); }
.success-check { width: 84px; height: 84px; margin: 0 auto 22px; }
.success-check svg { width: 100%; height: 100%; }
.success-check circle { stroke: var(--green); stroke-width: 2.5; stroke-dasharray: 160; stroke-dashoffset: 160; animation: draw .7s var(--ease) forwards; }
.success-check path { stroke: var(--green); stroke-width: 3.5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 40; stroke-dashoffset: 40; animation: draw .5s .45s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav { padding: 14px 16px; }
  .nav-links { display: none; }
  .hero { padding: 48px 16px 24px; }
  .hero-title { margin-top: 22px; }
  .hero-cta .btn { width: 100%; }
  .stats { margin-top: 32px; }
  .stats li { flex: 1 1 45%; border-left: 0; padding: 12px 8px; }
  .hero-card { margin-top: 40px; }
  .browser { transform: none; }
  .browser-body { padding: 24px 20px 32px; }
  .section { padding: 72px 16px 0; }
  .cta-box { padding: 52px 20px; }
  .footer { padding: 32px 16px 40px; }
  .modal { padding: 10px; align-items: end; }
  .modal-panel { max-height: calc(100dvh - 20px); border-radius: 22px; }
  .modal-body { padding: 28px 20px 24px; }
  .modal-body h2 { font-size: 26px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .captcha-row { flex-direction: column; }
  .captcha-img-wrap { align-self: flex-start; }
}
