/* =====================================================================
   Ilir Selmanaj – Mediation | Stylesheet
   WinWebDesign – Vorschau / Preview
   Farbwelt: Petrol (Vertrauen) · Sand (Wärme) · Gold (Wertigkeit)
   ===================================================================== */

/* ---------- Design-Tokens ---------- */
:root {
  --petrol:        #16433f;
  --petrol-dark:   #0e302d;
  --petrol-soft:   #235a55;
  --gold:          #bf9b5f;
  --gold-dark:     #a8853f;
  --sand:          #f7f2e9;
  --sand-deep:     #efe7d7;
  --cream:         #fcfaf5;
  --ink:           #23272a;
  --muted:         #5e6b66;
  --line:          #e3dccd;
  --white:         #ffffff;

  --maxw: 1140px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(20, 50, 45, .06);
  --shadow:    0 14px 40px rgba(20, 50, 45, .10);
  --shadow-lg: 0 30px 70px rgba(20, 50, 45, .16);

  --font-head: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --t: .28s cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  color: var(--petrol);
  letter-spacing: -.01em;
}

/* ---------- Layout-Helfer ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 70px 0; }
.center { text-align: center; }
.lead { font-size: 1.2rem; color: var(--muted); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 18px;
}
.section-title { font-size: clamp(1.9rem, 4vw, 2.75rem); margin-bottom: 18px; }
.section-intro { max-width: 640px; margin: 0 auto 56px; }
.section-intro.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 50px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--gold); color: #2a2008; box-shadow: 0 10px 24px rgba(191, 155, 95, .35); }
.btn--primary:hover { background: var(--gold-dark); color: #fff; transform: translateY(-3px); box-shadow: 0 16px 32px rgba(168, 133, 63, .42); }
.btn--ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }
.btn--dark { background: var(--petrol); color: #fff; }
.btn--dark:hover { background: var(--petrol-dark); transform: translateY(-3px); box-shadow: var(--shadow); }
.btn--outline { border-color: var(--petrol); color: var(--petrol); }
.btn--outline:hover { background: var(--petrol); color: #fff; transform: translateY(-3px); }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 250, 245, .85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--petrol), var(--petrol-soft));
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.25rem;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: var(--font-head); font-weight: 600; font-size: 1.18rem; color: var(--petrol); }
.brand__role { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-dark); }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-weight: 500;
  font-size: .98rem;
  padding: 9px 16px;
  border-radius: 8px;
  color: var(--ink);
  transition: color var(--t), background var(--t);
}
.nav-links a:hover { color: var(--petrol); background: var(--sand); }
.nav-links a.active { color: var(--petrol); font-weight: 600; }
.nav-cta { margin-left: 10px; }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; height: 2px; width: 24px; background: var(--petrol); border-radius: 2px; transition: var(--t); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--petrol) 0%, var(--petrol-dark) 100%);
  color: #fff;
  overflow: hidden;
  padding: clamp(80px, 12vw, 140px) 0 clamp(90px, 13vw, 150px);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(191,155,95,.22), transparent 42%),
    radial-gradient(circle at 12% 88%, rgba(35,90,85,.55), transparent 45%);
  pointer-events: none;
}
.hero__bg {
  position: absolute; right: -8%; top: 50%; transform: translateY(-50%);
  width: 620px; max-width: 60%; opacity: .5; pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.hero__eyebrow { color: var(--gold); }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 5.5vw, 4rem); margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p { font-size: 1.2rem; color: rgba(255,255,255,.82); max-width: 520px; margin-bottom: 36px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 44px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.16); }
.hero__trust div { display: flex; flex-direction: column; }
.hero__trust b { font-family: var(--font-head); font-size: 1.7rem; color: var(--gold); }
.hero__trust span { font-size: .85rem; color: rgba(255,255,255,.7); }

/* Hero-Bildkarte */
.hero__card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: linear-gradient(150deg, var(--sand-deep), var(--sand));
  display: grid; place-items: center;
}
.placeholder-photo {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  color: var(--petrol-soft);
  background:
    repeating-linear-gradient(45deg, rgba(35,90,85,.04) 0 12px, transparent 12px 24px),
    linear-gradient(150deg, var(--sand-deep), var(--sand));
  text-align: center; padding: 24px;
}
.placeholder-photo svg { width: 64px; height: 64px; opacity: .55; }
.placeholder-photo small { font-size: .8rem; color: var(--muted); max-width: 220px; }
.hero__badge {
  position: absolute; bottom: 18px; left: 18px; right: 18px;
  background: rgba(252,250,245,.95);
  border-radius: 14px; padding: 16px 18px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow);
}
.hero__badge .dot { width: 10px; height: 10px; border-radius: 50%; background: #3aa676; box-shadow: 0 0 0 4px rgba(58,166,118,.18); flex: none; }
.hero__badge span { font-size: .92rem; color: var(--ink); line-height: 1.4; }
.hero__badge b { color: var(--petrol); }

/* ---------- Logos / Trust-Leiste ---------- */
.trustbar { background: var(--sand); border-bottom: 1px solid var(--line); }
.trustbar .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 40px; padding-top: 26px; padding-bottom: 26px; }
.trustbar span { display: inline-flex; align-items: center; gap: 9px; font-size: .92rem; font-weight: 500; color: var(--muted); }
.trustbar svg { width: 20px; height: 20px; color: var(--gold-dark); }

/* ---------- Karten-Grid (Leistungen) ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card__icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 22px;
  background: var(--sand); color: var(--petrol);
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .98rem; }
.card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 600; color: var(--gold-dark); font-size: .95rem; }
.card__link svg { width: 16px; height: 16px; transition: transform var(--t); }
.card:hover .card__link svg { transform: translateX(4px); }

/* ---------- Split / Bild + Text ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5 / 6;
  box-shadow: var(--shadow);
  background: linear-gradient(150deg, var(--sand-deep), var(--sand));
}
.split__body h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); margin-bottom: 20px; }
.split__body p { color: var(--muted); margin-bottom: 16px; }

/* ---------- Werte / Check-Liste ---------- */
.checklist { display: grid; gap: 16px; margin: 24px 0; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; }
.checklist .tick {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--petrol); color: var(--gold);
  display: grid; place-items: center; margin-top: 2px;
}
.checklist .tick svg { width: 15px; height: 15px; }
.checklist b { color: var(--ink); }
.checklist span { color: var(--muted); display: block; font-size: .96rem; }

/* ---------- Ablauf / Prozess ---------- */
.process { background: var(--petrol); color: #fff; position: relative; overflow: hidden; }
.process::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(191,155,95,.18), transparent 45%);
}
.process .container { position: relative; z-index: 2; }
.process .section-title, .process .eyebrow { color: #fff; }
.process .eyebrow { color: var(--gold); }
.process .section-intro { color: rgba(255,255,255,.78); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 30px 24px;
  position: relative;
  transition: background var(--t), transform var(--t);
}
.step:hover { background: rgba(255,255,255,.09); transform: translateY(-5px); }
.step__num {
  font-family: var(--font-head); font-size: 2.4rem; font-weight: 600;
  color: var(--gold); line-height: 1; margin-bottom: 14px;
}
.step h3 { color: #fff; font-size: 1.18rem; margin-bottom: 8px; }
.step p { color: rgba(255,255,255,.72); font-size: .94rem; }

/* ---------- Referenzen / Testimonials ---------- */
.quote-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  height: 100%;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.quote-card .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 16px; font-size: 1.05rem; }
.quote-card blockquote { font-family: var(--font-head); font-size: 1.18rem; color: var(--petrol); line-height: 1.5; margin-bottom: 22px; flex: 1; }
.quote-card .person { display: flex; align-items: center; gap: 14px; }
.quote-card .avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--petrol), var(--petrol-soft));
  color: var(--gold); display: grid; place-items: center; font-weight: 600; font-family: var(--font-head);
}
.quote-card .person b { display: block; color: var(--ink); font-size: .98rem; }
.quote-card .person span { color: var(--muted); font-size: .85rem; }
.note-banner {
  margin-top: 30px; text-align: center;
  background: var(--sand); border: 1px dashed var(--gold);
  border-radius: var(--radius); padding: 18px 24px;
  color: var(--muted); font-size: .92rem;
}

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px; text-align: left;
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 600; color: var(--petrol);
}
.faq-q .icon { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--sand); color: var(--petrol); display: grid; place-items: center; transition: var(--t); }
.faq-q .icon svg { width: 16px; height: 16px; transition: transform var(--t); }
.faq-item.open .faq-q .icon { background: var(--petrol); color: var(--gold); }
.faq-item.open .faq-q .icon svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--t); }
.faq-a p { padding: 0 4px 24px; color: var(--muted); }

/* ---------- CTA-Band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 64px);
  text-align: center;
  color: #2a2008;
  position: relative; overflow: hidden;
}
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 18% 20%, rgba(255,255,255,.3), transparent 40%); }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #2a2008; font-size: clamp(1.7rem, 4vw, 2.5rem); margin-bottom: 14px; }
.cta-band p { color: #4a3a12; max-width: 540px; margin: 0 auto 30px; font-size: 1.1rem; }
.cta-band .btn--dark { background: var(--petrol); }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.contact-info h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); margin-bottom: 18px; }
.contact-info p { color: var(--muted); margin-bottom: 30px; }
.contact-list { display: grid; gap: 20px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-list .ci {
  flex: none; width: 48px; height: 48px; border-radius: 12px;
  background: var(--sand); color: var(--petrol); display: grid; place-items: center;
}
.contact-list .ci svg { width: 22px; height: 22px; }
.contact-list b { display: block; color: var(--ink); }
.contact-list a, .contact-list span { color: var(--muted); }
.contact-list a:hover { color: var(--gold-dark); }

.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 7px; color: var(--ink); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px;
  border: 1.5px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: 1rem; color: var(--ink); background: var(--cream);
  transition: border-color var(--t), box-shadow var(--t);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--petrol-soft); box-shadow: 0 0 0 4px rgba(35,90,85,.1);
}
.field textarea { resize: vertical; min-height: 130px; }
.form .btn { width: 100%; justify-content: center; }
.form__note { font-size: .82rem; color: var(--muted); margin-top: 14px; text-align: center; }

/* ---------- Über-mich Profil ---------- */
.profile-head { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: center; }
.timeline { position: relative; margin-top: 10px; padding-left: 30px; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.timeline li { position: relative; padding-bottom: 30px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: ''; position: absolute; left: -30px; top: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--gold);
}
.timeline .year { font-size: .82rem; font-weight: 700; letter-spacing: .06em; color: var(--gold-dark); text-transform: uppercase; }
.timeline h4 { font-family: var(--font-body); font-weight: 700; color: var(--ink); font-size: 1.05rem; margin: 3px 0 4px; }
.timeline p { color: var(--muted); font-size: .96rem; }

/* ---------- Stat-Band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat b { display: block; font-family: var(--font-head); font-size: clamp(2rem, 4vw, 2.8rem); color: var(--petrol); }
.stat span { color: var(--muted); font-size: .95rem; }

/* ---------- Page-Hero (Unterseiten) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--petrol), var(--petrol-dark));
  color: #fff; padding: clamp(70px, 10vw, 110px) 0 clamp(60px, 8vw, 90px);
  position: relative; overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 85% 15%, rgba(191,155,95,.2), transparent 45%); }
.page-hero .container { position: relative; z-index: 2; max-width: 760px; }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.82); font-size: 1.18rem; }
.breadcrumb { font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--gold); }

/* ---------- Footer ---------- */
.site-footer { background: var(--petrol-dark); color: rgba(255,255,255,.74); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 20px; }
.site-footer .brand__name { color: #fff; }
.site-footer .brand__mark { background: rgba(255,255,255,.08); }
.footer-about p { margin-top: 18px; font-size: .95rem; max-width: 320px; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: .95rem; transition: color var(--t); }
.footer-links a:hover { color: var(--gold); }
.footer-contact li { margin-bottom: 12px; font-size: .95rem; display: flex; gap: 10px; }
.footer-contact svg { width: 17px; height: 17px; flex: none; color: var(--gold); margin-top: 3px; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
  font-size: .85rem; color: rgba(255,255,255,.55);
}
.footer-bottom a:hover { color: var(--gold); }
.footer-credit { font-size: .82rem; }
.footer-credit a { color: var(--gold); }

/* ---------- Reveal-Animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Skip-Link / A11y ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--petrol); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__card { max-width: 420px; }
  .split, .contact-grid, .profile-head, .hero__grid { gap: 44px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .split, .contact-grid, .profile-head { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media, .profile-head .split__media { max-width: 480px; margin: 0 auto; }
}

@media (max-width: 760px) {
  .section { padding: 70px 0; }
  .nav-links {
    position: fixed; inset: 76px 0 auto 0;
    background: var(--cream);
    flex-direction: column; align-items: stretch;
    gap: 2px; padding: 18px 24px 30px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-130%); transition: transform var(--t);
    max-height: calc(100vh - 76px); overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 16px; font-size: 1.05rem; border-radius: 10px; }
  .nav-links a:hover { background: var(--sand); }
  .nav-cta { margin: 8px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .nav-toggle { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .stats, .grid-3, .grid-2, .steps { grid-template-columns: 1fr 1fr; }
  .hero__trust { gap: 18px 24px; }
}

@media (max-width: 480px) {
  body { font-size: 1rem; }
  .container { padding: 0 18px; }
  .stats, .grid-3, .grid-2, .steps { grid-template-columns: 1fr; }
  .form { padding: 26px 20px; }
  .hero__actions .btn, .cta-band .btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
