/* =============================================
   psychotherapie.axelmai.at – Shared Styles
   ============================================= */

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

:root {
  --forest-dark:  #1a2e1a;
  --forest-mid:   #2d4a2d;
  --forest-green: #3d6b3d;
  --moss:         #6b8f4e;
  --sage:         #8fae75;
  --cream:        #f5f0e8;
  --warm-white:   #fdfaf5;
  --gold:         #c9a84c;
  --text-dark:    #1c1c1c;
  --text-mid:     #4a4a4a;
  --text-light:   #7a7a7a;
  --border:       rgba(0,0,0,0.08);
  --nav-h:        64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  line-height: 1.7;
}

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(26,46,26,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 900;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  gap: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav-logo {
  font-family: Georgia, serif;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 1.25;
}
.nav-logo span {
  color: var(--gold);
  display: block;
  font-size: 0.68rem;
  font-family: inherit;
  letter-spacing: 0.06em;
  font-style: normal;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.81rem;
  font-weight: 500;
  padding: 0.38rem 0.68rem;
  border-radius: 20px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; background: rgba(255,255,255,0.1); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--forest-dark) !important;
  font-weight: 700 !important;
  margin-left: 0.5rem;
}
.nav-cta:hover { background: #d4b055 !important; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
  background: none;
  border: none;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform 0.22s, opacity 0.22s;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(26,46,26,0.98);
  padding: 1.5rem;
  z-index: 899;
  flex-direction: column;
  gap: 0.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-mobile a:last-child { border-bottom: none; }

/* ── HERO FULL (Startseite) ── */
.hero-full {
  min-height: 100vh;
  padding-top: var(--nav-h);
  background: linear-gradient(135deg, var(--forest-dark) 0%, #243824 60%, #1f3d1f 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 4rem;
}

/* ── HERO COMPACT (Unterseiten) ── */
.hero-compact {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 4rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest-mid) 100%);
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.16);
  border: 1px solid rgba(201,168,76,0.48);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.3rem;
}

.hero-full h1,
.hero-compact h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.18;
  max-width: 820px;
  margin: 0 auto 1rem;
  text-shadow: 0 2px 18px rgba(0,0,0,0.2);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(255,255,255,0.78);
  max-width: 580px;
  margin: 0 auto 2.2rem;
  font-weight: 300;
  line-height: 1.65;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.5rem;
  justify-content: center;
  margin-bottom: 2.6rem;
}
.hero-meta-item {
  color: rgba(255,255,255,0.88);
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

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

.breadcrumb {
  font-size: 0.77rem;
  color: rgba(255,255,255,0.44);
  margin-bottom: 1.2rem;
  text-align: center;
}
.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 0.4rem; opacity: 0.35; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--forest-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.95rem 2.4rem;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.38);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.5); }

.btn-secondary {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.48);
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.85rem 1.9rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--forest-mid);
  color: rgba(255,255,255,0.82);
  padding: 0.9rem 1.5rem;
}
.trust-bar-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: center;
  align-items: center;
  font-size: 0.86rem;
}
.trust-bar-inner strong { color: var(--gold); }
.trust-bar-inner a { color: var(--gold); text-decoration: none; }
.trust-bar-inner a:hover { text-decoration: underline; }

/* ── SECTIONS ── */
.section { padding: 5rem 1.5rem; }
.section-cream { background: var(--cream); }
.section-dark  { background: var(--forest-dark); color: #fff; }
.section-inner { max-width: 1060px; margin: 0 auto; }

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 0.65rem;
  display: block;
}
.section-dark .section-label { color: var(--sage); }

.section-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  line-height: 1.24;
  color: var(--forest-dark);
  margin-bottom: 1rem;
}
.section-dark .section-title { color: #fff; }

.section-intro {
  font-size: 1.04rem;
  color: var(--text-mid);
  max-width: 680px;
  margin-bottom: 3rem;
  line-height: 1.72;
}
.section-dark .section-intro { color: rgba(255,255,255,0.68); }

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.3rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.8rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.24s, box-shadow 0.24s;
  display: block;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.09); }
.service-icon { font-size: 2rem; margin-bottom: 0.9rem; }
.service-card h3 {
  font-family: Georgia, serif;
  font-size: 1.1rem;
  color: var(--forest-dark);
  margin-bottom: 0.5rem;
}
.service-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 0.8rem; }
.service-link { font-size: 0.82rem; font-weight: 600; color: var(--moss); }

/* ── PROFIL ── */
.profile-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: start;
}
.profile-img {
  width: 160px; height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 6px 24px rgba(0,0,0,0.14);
  flex-shrink: 0;
}
.profile-info h2 {
  font-family: Georgia, serif;
  font-size: 1.8rem;
  color: var(--forest-dark);
  margin-bottom: 0.2rem;
}
.profile-title { font-size: 0.89rem; color: var(--moss); font-weight: 600; margin-bottom: 0.8rem; }
.cred-list { display: flex; flex-wrap: wrap; gap: 0.38rem; margin-bottom: 1.1rem; }
.cred-badge {
  background: rgba(107,143,78,0.1);
  border: 1px solid rgba(107,143,78,0.28);
  color: var(--forest-mid);
  font-size: 0.73rem;
  font-weight: 600;
  padding: 0.18rem 0.68rem;
  border-radius: 20px;
}
.profile-info p { font-size: 0.97rem; color: var(--text-mid); line-height: 1.72; margin-bottom: 0.9rem; }

/* ── QUOTE BLOCK ── */
.quote-block {
  border-left: 4px solid var(--moss);
  padding: 1.1rem 1.4rem;
  background: rgba(107,143,78,0.07);
  border-radius: 0 12px 12px 0;
  margin: 1.8rem 0;
}
.quote-block p {
  font-family: Georgia, serif;
  font-size: 1.08rem;
  color: var(--forest-mid);
  font-style: italic;
  line-height: 1.5;
}
.quote-block cite { display: block; font-size: 0.81rem; color: var(--text-light); margin-top: 0.45rem; font-style: normal; }

/* ── METHODEN ── */
.methoden-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.2rem;
}
.methode-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 14px;
  padding: 1.8rem;
}
.methode-card h3 { font-family: Georgia, serif; font-size: 1.04rem; color: #fff; margin-bottom: 0.5rem; }
.methode-card p { font-size: 0.88rem; color: rgba(255,255,255,0.63); line-height: 1.62; }

/* ── KOSTEN ── */
.kosten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.2rem;
}
.kosten-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.8rem 1.6rem;
  text-align: center;
}
.kosten-price {
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest-dark);
  line-height: 1;
  margin: 0.5rem 0 0.3rem;
}
.kosten-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); }
.kosten-desc { font-size: 0.84rem; color: var(--text-mid); margin-top: 0.45rem; line-height: 1.5; }
.kosten-note {
  margin-top: 1.8rem;
  background: rgba(107,143,78,0.08);
  border: 1px solid rgba(107,143,78,0.2);
  border-radius: 12px;
  padding: 1.4rem 1.6rem;
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.68;
}
.kosten-note strong { color: var(--forest-dark); }

/* ── STEPS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
}
.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.6rem;
}
.step-number {
  display: inline-block;
  background: var(--forest-dark);
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  width: 36px; height: 36px;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  margin-bottom: 0.9rem;
}
.step-card h3 { font-family: Georgia, serif; font-size: 1.04rem; color: var(--forest-dark); margin-bottom: 0.4rem; }
.step-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }

/* ── FAQ ── */
.faq-list { max-width: 740px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-of-type { border-top: 1px solid var(--border); }
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--forest-dark);
  cursor: pointer;
  user-select: none;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--moss);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { font-size: 0.94rem; color: var(--text-mid); line-height: 1.67; padding-bottom: 1.2rem; }

/* ── SYMPTOM LIST ── */
.symptom-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.7rem;
  margin: 2rem 0;
}
.symptom-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  font-size: 0.91rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.symptom-item::before { content: "·"; color: var(--moss); font-size: 1.4rem; font-weight: 700; line-height: 1; flex-shrink: 0; }

/* ── KONTAKT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { font-family: Georgia, serif; font-size: 1.6rem; color: #fff; margin-bottom: 1rem; line-height: 1.28; }
.contact-info p { font-size: 0.94rem; color: rgba(255,255,255,0.68); margin-bottom: 0.5rem; line-height: 1.65; }
.contact-detail { display: flex; align-items: center; gap: 0.55rem; margin-bottom: 0.65rem; font-size: 0.93rem; color: rgba(255,255,255,0.84); }
.contact-detail a { color: var(--gold); text-decoration: none; }
.contact-detail a:hover { text-decoration: underline; }

.standorte-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.8rem;
}
.standort-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1.4rem;
}
.standort-card h4 { font-family: Georgia, serif; font-size: 0.95rem; color: #fff; margin-bottom: 0.5rem; }
.standort-card p { font-size: 0.84rem; color: rgba(255,255,255,0.58); line-height: 1.6; margin-bottom: 0.25rem; }
.standort-map-link { font-size: 0.8rem; color: var(--sage); text-decoration: none; font-weight: 600; }
.standort-map-link:hover { text-decoration: underline; }

/* ── LEAD FORM ── */
.lead-form {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 20px;
  padding: 2.4rem;
}
.lead-form h3 { font-family: Georgia, serif; font-size: 1.3rem; color: #fff; margin-bottom: 0.4rem; }
.form-note { font-size: 0.81rem; color: rgba(255,255,255,0.46); margin-bottom: 1.4rem; }
.form-group { margin-bottom: 0.9rem; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.66); margin-bottom: 0.35rem; letter-spacing: 0.04em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.17);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: #fff;
  font-size: 0.94rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.26); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--sage); background: rgba(255,255,255,0.13); }
.form-group select option { background: var(--forest-dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.form-consent { display: flex; align-items: flex-start; gap: 0.55rem; margin: 0.8rem 0; }
.form-consent input[type="checkbox"] { width: auto; margin-top: 0.2rem; flex-shrink: 0; accent-color: var(--sage); }
.form-consent label { font-size: 0.77rem; color: rgba(255,255,255,0.54); cursor: pointer; font-weight: 400; line-height: 1.5; }
.form-consent a { color: var(--sage); }
.form-submit-btn {
  width: 100%;
  background: var(--gold);
  color: var(--forest-dark);
  border: none;
  border-radius: 50px;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(201,168,76,0.3);
}
.form-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(201,168,76,0.44); }
.form-privacy { font-size: 0.7rem; color: rgba(255,255,255,0.28); text-align: center; margin-top: 0.9rem; line-height: 1.5; }

/* ── RELATED PAGES ── */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.related-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
}
.related-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.related-card h4 { font-family: Georgia, serif; font-size: 1rem; color: var(--forest-dark); margin-bottom: 0.35rem; }
.related-card p { font-size: 0.85rem; color: var(--text-light); }

/* ── DATENSCHUTZ ── */
.dsgvo-section { background: #0f0f0f; }
.dsgvo-details { max-width: 700px; margin: 0 auto; }
.dsgvo-details summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  font-size: 0.81rem;
  font-weight: 600;
  color: rgba(255,255,255,0.42);
  cursor: pointer;
  user-select: none;
}
.dsgvo-details summary::-webkit-details-marker { display: none; }
.dsgvo-details summary::after { content: "▸ Datenschutzerklärung lesen"; font-size: 0.75rem; color: rgba(255,255,255,0.25); flex-shrink: 0; }
.dsgvo-details[open] summary::after { content: "▾ Schließen"; }
.dsgvo-content { padding: 0 1.5rem 1.5rem; color: rgba(255,255,255,0.38); font-size: 0.79rem; line-height: 1.82; }
.dsgvo-content p { margin-bottom: 0.65rem; }
.dsgvo-content strong { color: rgba(255,255,255,0.58); }

/* ── FOOTER ── */
footer {
  background: var(--forest-dark);
  color: rgba(255,255,255,0.45);
  padding: 2.5rem 1.5rem;
  font-size: 0.82rem;
}
.footer-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
.footer-col h4 { font-family: Georgia, serif; font-size: 0.95rem; color: rgba(255,255,255,0.8); margin-bottom: 0.85rem; }
.footer-col p,
.footer-col li { color: rgba(255,255,255,0.46); margin-bottom: 0.38rem; font-size: 0.81rem; line-height: 1.6; }
.footer-col ul { list-style: none; }
.footer-col a { color: rgba(255,255,255,0.52); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1060px;
  margin: 2rem auto 0;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.28);
}
.footer-bottom a { color: rgba(255,255,255,0.38); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ── STICKY CTA ── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(26,46,26,0.97);
  backdrop-filter: blur(10px);
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 800;
  border-top: 1px solid rgba(255,255,255,0.08);
  transform: translateY(100%);
  transition: transform 0.3s;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-text { color: #fff; font-size: 0.86rem; }
.sticky-cta-text strong { display: block; font-size: 0.92rem; }
.sticky-cta-text span { color: rgba(255,255,255,0.52); font-size: 0.76rem; }

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.58s ease, transform 0.58s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .profile-grid { grid-template-columns: 1fr; text-align: center; }
  .profile-img { margin: 0 auto; }
  .cred-list { justify-content: center; }
  .standorte-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .sticky-cta { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero-full h1, .hero-compact h1 { font-size: 1.85rem; }
  .section { padding: 3.5rem 1.2rem; }
}
