/* ============================================================
   PRIVATPRAXIS SPETH – Design System: Moss Grey Edition
   ============================================================ */

/* === FONTS (lokal) === */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('fonts/manrope.woff2') format('woff2');
}

/* === DESIGN TOKENS === */
:root {
  --moss:        #4E6A57;
  --fern:        #2F4A3A;
  --deep-forest: #1F2E25;
  --forest-ink:  #0E1713;
  --forest-teal: #0F2C30;
  --cream:       #F8F9FA;
  --mist:        #f4f5f2;
  --text:        #1F2E25;
  --text-muted:  #5a6b5e;
  --cta:         #C47B2B;
  --cta-dark:    #A36220;
  --radius:      1rem;
  --radius-sm:   0.5rem;
  --shadow:      0 4px 24px rgba(15, 30, 18, 0.1);
  --shadow-lg:   0 12px 48px rgba(15, 30, 18, 0.18);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* verhindert horizontales Überlaufen */
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--mist);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
  overflow-x: hidden; /* extra Absicherung */
  max-width: 100vw;
}

/* === LAYOUT === */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 6rem 0; }
section:not(.hero):not(.why-private):not(.contact-section):nth-child(even) {
  background: white;
}

/* === NAV === */
nav.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(78,106,87,0.12);
}

nav.site-nav .inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Logo */
nav.site-nav .logo {
  display: block;
  line-height: 0;
  text-decoration: none;
  flex-shrink: 0;
}
nav.site-nav .logo img {
  height: 56px;
  width: auto;
}

/* Desktop nav links */
nav.site-nav .nav-links {
  display: none;
  list-style: none;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  flex: 1;
}
nav.site-nav .nav-links a {
  display: block;
  padding: 0.45rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 0.5rem;
  transition: color 0.15s, background 0.15s;
}
nav.site-nav .nav-links a:hover {
  color: var(--deep-forest);
  background: rgba(78,106,87,0.08);
}

/* Right cluster */
nav.site-nav .nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

/* Phone link */
nav.site-nav .nav-phone {
  display: none;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(78,106,87,0.2);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
}
nav.site-nav .nav-phone:hover {
  background: rgba(78,106,87,0.08);
  border-color: var(--moss);
  color: var(--moss);
}
nav.site-nav .nav-phone svg { color: var(--moss); flex-shrink: 0; }

/* Social icons */
nav.site-nav .nav-social {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
nav.site-nav .nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
nav.site-nav .nav-social a:hover {
  color: var(--moss);
  background: rgba(78,106,87,0.08);
}

/* CTA Button */
nav.site-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--moss);
  color: white;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.6rem 1.2rem;
  border-radius: 99px;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(78,106,87,0.35);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
nav.site-nav .nav-cta:hover {
  background: var(--fern);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(78,106,87,0.45);
}

/* Hamburger */
nav.site-nav .nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0.35rem;
  background: none;
  border: 1px solid rgba(78,106,87,0.2);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.15s;
}
nav.site-nav .nav-hamburger:hover { background: rgba(78,106,87,0.08); }
nav.site-nav .nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--deep-forest);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.25s, opacity 0.2s;
}
nav.site-nav .nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.site-nav .nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
nav.site-nav .nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu Overlay */
nav.site-nav .nav-mobile {
  background: white;
  border-top: 1px solid rgba(78,106,87,0.1);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s;
}
nav.site-nav .nav-mobile.is-open {
  max-height: 600px;
  opacity: 1;
}
nav.site-nav .nav-mobile ul {
  list-style: none;
  padding: 1rem 1.5rem 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
nav.site-nav .nav-mobile ul a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-radius: 0.75rem;
  transition: background 0.15s, color 0.15s;
}
nav.site-nav .nav-mobile ul a:hover {
  background: rgba(78,106,87,0.07);
  color: var(--moss);
}

.nav-mobile-contact {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.nav-mobile-phone {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(78,106,87,0.2);
  transition: background 0.15s, color 0.15s;
}
.nav-mobile-phone:hover { background: rgba(78,106,87,0.05); color: var(--moss); }
.nav-mobile-phone svg { color: var(--moss); flex-shrink: 0; }

.nav-cta--mobile {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 0.85rem 1.5rem;
  border-radius: 12px;
}

.nav-mobile-social {
  display: flex;
  gap: 0.5rem;
  padding-top: 0.25rem;
}
.nav-mobile-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(78,106,87,0.15);
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}
.nav-mobile-social a:hover { color: var(--moss); background: rgba(78,106,87,0.07); border-color: var(--moss); }

/* === DESKTOP NAV (≥ 900px) === */
@media (min-width: 900px) {
  nav.site-nav .nav-links    { display: flex; }
  nav.site-nav .nav-phone    { display: flex; }
  nav.site-nav .nav-social   { display: flex; }
  nav.site-nav .nav-hamburger { display: none; }
  nav.site-nav .nav-mobile   { display: none !important; }
}

/* === HERO === */
.hero {
  background: #2F4A3A !important;
  color: white !important;
  padding: 7rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(78,106,87,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.hero-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a8d5b5;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(168,213,181,0.4);
  padding: 0.3rem 0.8rem;
  border-radius: 99px;
}
.hero h1 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #ffffff !important;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: normal;
  color: #7ec99a;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 400;
}
.hero-pills {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.95);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cta);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 99px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(196,123,43,0.45);
}
.btn-primary:hover {
  background: var(--cta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196,123,43,0.55);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.btn-ghost:hover { color: white; }

/* === HERO IMAGE === */
.hero-image {
  position: relative;
}
.hero-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
}
.hero-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: white;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-badge-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--moss);
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.hero-badge-text { line-height: 1.3; }
.hero-badge-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--deep-forest);
}
.hero-badge-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* === ABSCHNITT-HEADER === */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--deep-forest);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}
.section-header {
  margin-bottom: 3.5rem;
}

/* === INDIKATIONEN === */
.indication-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.indication-card {
  background: #F4F5F2;
  border: 1px solid rgba(47,74,58,0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: box-shadow 0.2s, transform 0.15s, background 0.2s;
}
.indication-card:hover {
  background: #eaece7;
  transform: translateY(-3px);
}
.indication-icon {
  width: 2.25rem;
  height: 2.25rem;
  background: #e8f5ec;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2F4A3A;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.indication-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #2F4A3A;
  margin-bottom: 0.25rem;
}
.indication-card p {
  font-size: 0.85rem;
  color: rgba(47,74,58,0.7);
  line-height: 1.55;
}

/* === WHY PRIVATE === */
.why-private {
  background: #2F4A3A !important;
  color: white !important;
}
.why-private .section-title { color: white; }
.why-private .section-sub { color: rgba(255,255,255,0.6); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.benefit-item {
  padding: 1.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  transition: background 0.2s;
}
.benefit-item:hover {
  background: rgba(255,255,255,0.1);
}
.benefit-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(255,255,255,0.1);
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7ec99a;
  margin-bottom: 1.1rem;
}
.benefit-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}
.benefit-item p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* === PROZESS === */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 2.25rem;
  left: calc(16.66% + 1rem);
  right: calc(16.66% + 1rem);
  height: 2px;
  background: linear-gradient(90deg, var(--moss), rgba(78,106,87,0.2));
  z-index: 0;
}
.step-card {
  position: relative;
  z-index: 1;
  text-align: center;
}
.step-number {
  width: 4.5rem;
  height: 4.5rem;
  background: var(--moss);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(78,106,87,0.4);
}
.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep-forest);
  margin-bottom: 0.5rem;
}
.step-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === PERSON === */
.person-section .container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}
.person-image-wrap {
  position: relative;
}
.person-image-wrap img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
}
.person-image-wrap::after {
  content: '';
  position: absolute;
  inset: -12px;
  border: 2px solid rgba(78,106,87,0.2);
  border-radius: 2rem;
  z-index: -1;
}
.credentials {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.5rem 0 2rem;
}
.credential {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}
.credential::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--moss);
  border-radius: 50%;
  flex-shrink: 0;
}

blockquote {
  border-left: 3px solid var(--moss);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
}

/* === CONTACT === */
.contact-section {
  background: #2F4A3A !important;
  color: white !important;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
.contact-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-section .section-title { color: white; }
.contact-section .section-sub { color: rgba(255,255,255,0.65); }
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(126,201,154,0.18);
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7ec99a;
  flex-shrink: 0;
}
.contact-item h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #a8d5b5;
  margin-bottom: 0.25rem;
}
.contact-item p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.contact-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.25rem;
  padding: 2rem;
  box-sizing: border-box; /* immer — nicht erst im @media */
  max-width: 100%;
}
.contact-form h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--moss);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0.625rem;
  padding: 0.75rem 1rem;
  color: white;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--moss); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.btn-submit {
  width: 100%;
  background: var(--cta);
  color: white;
  border: none;
  padding: 0.9rem;
  border-radius: 99px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(196,123,43,0.45);
}
.btn-submit:hover {
  background: var(--cta-dark);
  transform: translateY(-1px);
}

/* === FOOTER === */
footer {
  background: #0F2C30 !important;
  color: rgba(255,255,255,0.5);
  padding: 3rem 0;
  text-align: center;
  font-size: 0.875rem;
}
footer .logo-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
footer .logo-footer img { height: 36px; width: auto; opacity: 0.7; }
footer .logo-footer span {
  font-weight: 700;
  color: rgba(255,255,255,0.6);
}
footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.25rem;
}
footer .footer-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.8rem;
}
footer .footer-links a:hover { color: var(--moss); }

/* Footer Social + Telefon */
.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: color 0.2s, border-color 0.2s;
}
.footer-phone:hover { color: white; border-color: var(--moss); }
.footer-phone svg { color: var(--moss); flex-shrink: 0; }
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
.footer-social a:hover { color: var(--moss); border-color: var(--moss); }
footer .footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.25); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  /* --- Sections --- */
  section { padding: 3rem 0; }

  /* --- Header / Nav --- */
  nav.site-nav .inner {
    padding: 0 1rem;
    height: auto;          /* kein fixes height — verhindert Abschneiden */
    min-height: 60px;
    gap: 0.75rem;
  }
  nav.site-nav .logo img {
    height: 36px;
  }
  nav.site-nav .logo span {
    font-size: 0.95rem;
  }
  /* Desktop CTA ausblenden — erscheint im Hamburger-Menü */
  nav.site-nav .nav-cta {
    display: none;
  }
  nav.site-nav .nav-hamburger {
    display: flex;
  }

  /* --- Hero --- */
  .hero { padding: 4rem 0 3rem; }
  .hero .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-image { display: none; }
  .hero h1 { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .hero-sub { font-size: 1rem; }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
    box-sizing: border-box;
  }

  /* --- Container volle Breite --- */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* --- Indication Grid --- */
  .indication-grid {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }

  /* --- Benefits --- */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }
  .benefit-item { padding: 1.25rem; }

  /* --- Prozess --- */
  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .process-steps::before { display: none; }
  .step-card { text-align: left; display: flex; align-items: flex-start; gap: 1rem; }
  .step-number { margin: 0; flex-shrink: 0; width: 3.25rem; height: 3.25rem; font-size: 1rem; }

  /* --- Person --- */
  .person-section .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .person-image-wrap {
    max-width: 260px;
    margin: 0 auto;
  }

  /* --- Contact Section --- */
  .contact-section .container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contact-form {
    padding: 1.5rem 1rem;
    width: 100%;
    box-sizing: border-box;
  }
  .form-group input,
  .form-group textarea {
    font-size: 1rem;      /* ≥16px verhindert iOS-Zoom */
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    width: 100%;
    box-sizing: border-box;
  }
  .btn-submit {
    padding: 1rem;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
  }

  /* --- Footer --- */
  footer .footer-links {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
}

/* Extra small (iPhone SE etc.) */
@media (max-width: 390px) {
  nav.site-nav .logo img { height: 30px; }
  nav.site-nav .logo span { font-size: 0.85rem; }
  .hero h1 { font-size: 1.65rem; }
}

/* === EXTRACTED FROM INLINE STYLES === */

/* Hintergrund-Utilities */
.bg-mist  { background: var(--mist); }
.bg-white { background: #ffffff; }

/* Centered CTA block unterhalb von Prozess-Steps */
.section-cta-center {
  text-align: center;
  margin-top: 3.5rem;
}

/* section-sub auf dunkelm Hintergrund (why-private, contact) */
.section-sub--light { color: rgba(255,255,255,0.6); }
.section-sub--contact { color: rgba(255,255,255,0.82); margin-bottom: 2.5rem; }

/* section-label auf dunkelm Hintergrund */
.section-label--light { color: #a8d5b5; }
.section-label--moss  { color: rgba(78,106,87,0.9); }

/* Person-Section: Bio-Text und CTA-Wrapper */
.person-bio {
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 1rem;
}
.person-cta { margin-top: 2rem; }

/* Inline strong auf dunklem Hintergrund */
.text-light-strong { color: rgba(255,255,255,0.9); }
.text-light-em     { color: rgba(255,255,255,0.8); }

/* Footer-Links: Hervorhebung */
a.link-moss { color: var(--moss); }
a.link-moss:hover { color: var(--fern); }


