/* ============================================================
   Thomas Bopp – FINANZBERATER DRESDEN
   Main Stylesheet v1.0
   Design System: Navy / Gold / Premium Finance
   ============================================================ */

/* --------------------------------------------------------
   DESIGN TOKENS
   -------------------------------------------------------- */
:root {
  /* Color Palette */
  --navy:          #0B1F3A;
  --navy-mid:      #132D50;
  --navy-light:    #1E4080;
  --navy-subtle:   #243B55;
  --gold:          #C9A96E;
  --gold-light:    #DDB97A;
  --gold-pale:     #F5EDD8;
  --gold-bg:       #FBF6EC;
  --white:         #FFFFFF;
  --bg:            #F7F9FC;
  --bg-alt:        #EEF1F6;
  --text:          #1A2B3C;
  --text-mid:      #3D5166;
  --text-muted:    #6B7B8D;
  --border:        #DDE3EA;
  --border-light:  #EEF1F6;
  --error:         #E53E3E;
  --success:       #38A169;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing Scale (rem) */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-14: 3.5rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Border Radius */
  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-2xl:  32px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 4px rgba(11,31,58,0.06);
  --shadow-sm: 0 2px 12px rgba(11,31,58,0.08);
  --shadow-md: 0 6px 24px rgba(11,31,58,0.11);
  --shadow-lg: 0 12px 48px rgba(11,31,58,0.14);
  --shadow-xl: 0 20px 80px rgba(11,31,58,0.18);

  /* Transitions */
  --t-fast: 0.15s ease;
  --t-base: 0.25s ease;
  --t-slow: 0.4s cubic-bezier(0.4,0,0.2,1);

  /* Layout */
  --max-w:      1200px;
  --max-w-text: 720px;
  --header-h:   76px;
}

/* --------------------------------------------------------
   RESET & BASE
   -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-base); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
h1,h2,h3,h4,h5,h6 { font-weight: 600; line-height: 1.25; }

/* --------------------------------------------------------
   LAYOUT UTILITIES
   -------------------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}
.container--narrow {
  max-width: var(--max-w-text);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}
.section             { padding: var(--sp-24) 0; }
.section--sm         { padding: var(--sp-16) 0; }
.section--lg         { padding: var(--sp-32) 0; }
.section--dark       { background: var(--navy); color: var(--white); }
.section--alt        { background: var(--bg); }
.section--navy-mid   { background: var(--navy-mid); color: var(--white); }

/* --------------------------------------------------------
   SECTION HEADER (shared pattern)
   -------------------------------------------------------- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--sp-16);
}
.section-header .overline {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.375rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-4);
  line-height: 1.2;
}
.section--dark .section-header h2,
.section--navy-mid .section-header h2 { color: var(--white); }
.section-header .lead {
  font-size: clamp(1rem, 1.5vw, 1.0625rem);
  color: var(--text-mid);
  line-height: 1.75;
}
.section--dark .section-header .lead,
.section--navy-mid .section-header .lead { color: rgba(255,255,255,0.72); }

/* --------------------------------------------------------
   TYPOGRAPHY HELPERS
   -------------------------------------------------------- */
.overline {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lead {
  font-size: clamp(1rem, 1.5vw, 1.0625rem);
  line-height: 1.75;
  color: var(--text-mid);
}
.text-gold   { color: var(--gold); }
.text-navy   { color: var(--navy); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }

/* --------------------------------------------------------
   BUTTONS
   -------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.875rem 2rem;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--t-base);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--navy);
}
.btn--ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn--lg {
  padding: 1.0625rem 2.75rem;
  font-size: 1rem;
}
.btn--sm {
  padding: 0.625rem 1.375rem;
  font-size: 0.875rem;
}
.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* --------------------------------------------------------
   CARD
   -------------------------------------------------------- */
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--t-base);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(201,169,110,0.25);
}

/* --------------------------------------------------------
   HEADER / NAVIGATION
   -------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--t-base), box-shadow var(--t-base);
}
.site-header--transparent { background: transparent; }
.site-header--scrolled {
  background: rgba(11,31,58,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(11,31,58,0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}
.site-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1;
}
.logo-tagline {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-main {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  transition: color var(--t-base);
  position: relative;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--t-base);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }
.nav-cta { margin-left: var(--sp-2); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  cursor: pointer;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t-base);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: rgba(11,31,58,0.98);
  backdrop-filter: blur(20px);
  padding: var(--sp-6) clamp(1rem,4vw,2rem) var(--sp-8);
  z-index: 999;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link {
  font-size: 1.0625rem;
  padding: var(--sp-4) 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.85);
}
.mobile-nav .nav-link::after { display: none; }
.mobile-nav .btn { margin-top: var(--sp-5); align-self: flex-start; }
.mobile-nav-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: var(--sp-4);
  padding: var(--sp-3) var(--sp-5);
  border: 1px solid rgba(201,169,110,0.35);
  border-radius: var(--r-sm);
  color: var(--gold);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--t-base), color var(--t-base);
  min-height: 48px;
}
.mobile-nav-phone:hover,
.mobile-nav-phone:focus { background: var(--gold); color: var(--navy); }

/* --------------------------------------------------------
   HERO
   -------------------------------------------------------- */
.hero {
  min-height: 100vh;
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-mid) 55%, var(--navy-subtle) 100%);
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 25% 55%, rgba(201,169,110,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(30,64,128,0.4) 0%, transparent 55%);
  pointer-events: none;
}
.hero-bg-shape {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  height: 90%;
  background: radial-gradient(ellipse at center, rgba(201,169,110,0.04) 0%, transparent 70%);
  border: 1px solid rgba(201,169,110,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,169,110,0.5) 50%, transparent 100%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: var(--sp-16);
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-24) clamp(1rem,4vw,2rem);
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: var(--r-full);
  padding: var(--sp-2) var(--sp-4);
  margin-bottom: var(--sp-6);
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 2.5s ease-in-out infinite;
}
.hero-badge span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.8vw, 3.75rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: var(--sp-6);
}
.hero-headline .accent { color: var(--gold); }
.hero-subline {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
  margin-bottom: var(--sp-10);
  max-width: 500px;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-12);
}
.hero-stats {
  display: flex;
  gap: var(--sp-10);
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-number {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
  margin-top: 4px;
  display: block;
}
.hero-visual { display: flex; justify-content: flex-end; align-items: center; }
.hero-portrait-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 420px;
  gap: 0;
}
.hero-portrait {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  background: transparent;
  border: 1px solid rgba(201,169,110,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.portrait-placeholder {
  display: flex; flex-direction: column;
  align-items: center; gap: var(--sp-3);
  color: rgba(255,255,255,0.28);
  padding: var(--sp-8);
  text-align: center;
}
.portrait-placeholder svg { width: 72px; height: 72px; }
.portrait-placeholder p { font-size: 0.8125rem; font-style: italic; line-height: 1.5; }
.hero-portrait-card {
  position: static;
  background: rgba(11,31,58,0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,169,110,0.25);
  border-top: none;
  border-radius: 0 0 var(--r-md) var(--r-md);
  padding: var(--sp-4) var(--sp-5);
}
.portrait-card-name {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 600;
  color: var(--white); line-height: 1.2;
}
.portrait-card-title {
  font-size: 0.8rem; color: var(--gold);
  margin-top: 3px;
}
.portrait-card-loc {
  display: flex; align-items: center;
  gap: 5px; margin-top: var(--sp-2);
  font-size: 0.8rem; color: rgba(255,255,255,0.45);
}

/* --------------------------------------------------------
   TRUST SECTION
   -------------------------------------------------------- */
.trust-section { padding: var(--sp-20) 0; background: var(--white); }
.trust-intro {
  display: block;
  width: 100%;
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--sp-20);
}
.trust-intro .overline { color: var(--gold); display: block; margin-bottom: var(--sp-3); }
.trust-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.625rem,3vw,2.125rem);
  font-weight: 700; color: var(--navy);
  margin-bottom: var(--sp-4); line-height: 1.2;
}
.trust-intro p { font-size: 1rem; color: var(--text-mid); line-height: 1.75; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  justify-items: center;
}
.trust-item {
  text-align: center;
  padding: var(--sp-8) var(--sp-6);
  border-radius: var(--r-lg);
  border: 1px solid var(--border-light);
  background: var(--white);
  transition: all var(--t-base);
}
.trust-item:hover {
  border-color: rgba(201,169,110,0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.trust-icon {
  width: 58px; height: 58px;
  background: var(--gold-bg);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-5);
  color: var(--gold);
  transition: all var(--t-base);
}
.trust-item:hover .trust-icon {
  background: var(--navy);
  color: var(--gold);
}
.trust-icon svg { width: 26px; height: 26px; }
.trust-item h4 {
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 700;
  color: var(--navy); margin-bottom: var(--sp-3); line-height: 1.35;
}
.trust-item p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }

/* --------------------------------------------------------
   ZIELGRUPPEN
   -------------------------------------------------------- */
.zielgruppen-section { padding: var(--sp-24) 0; background: var(--bg); }
.zielgruppen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}
.zielgruppe-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  border: 1px solid var(--border-light);
  transition: all var(--t-base);
  position: relative; overflow: hidden;
}
.zielgruppe-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-slow);
}
.zielgruppe-card:hover::before { transform: scaleX(1); }
.zielgruppe-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.zielgruppe-icon {
  width: 52px; height: 52px;
  background: var(--bg);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-5);
  font-size: 1.5rem;
  transition: all var(--t-base);
}
.zielgruppe-card:hover .zielgruppe-icon {
  background: var(--gold-bg);
}
.zielgruppe-card h3 {
  font-family: var(--font-body);
  font-size: 1.125rem; font-weight: 700;
  color: var(--navy); margin-bottom: var(--sp-3);
}
.zielgruppe-card p { font-size: 0.9375rem; color: var(--text-mid); line-height: 1.7; margin-bottom: var(--sp-5); }
.zielgruppe-link {
  font-size: 0.875rem; font-weight: 700;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: var(--sp-2);
  transition: gap var(--t-base), color var(--t-base);
}
.zielgruppe-link:hover { gap: var(--sp-3); }

/* --------------------------------------------------------
   LEISTUNGEN
   -------------------------------------------------------- */
.leistungen-section { padding: var(--sp-24) 0; background: var(--white); }
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.leistung-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  border: 1px solid var(--border);
  transition: all var(--t-base);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.leistung-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  transform: scaleX(0);
  transition: transform var(--t-slow);
}
.leistung-card:hover::after { transform: scaleX(1); }
.leistung-card:hover {
  border-color: rgba(201,169,110,0.2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.leistung-icon-wrap {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-5);
  color: var(--gold); font-size: 1.5rem;
  flex-shrink: 0;
}
.leistung-card h3 {
  font-family: var(--font-body);
  font-size: 1.0625rem; font-weight: 700;
  color: var(--navy); margin-bottom: var(--sp-3); line-height: 1.35;
}
.leistung-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: var(--sp-4); flex-grow: 1; }
.leistung-tags {
  display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-5);
}
.leistung-tag {
  font-size: 0.75rem; font-weight: 500;
  padding: 3px 10px;
  background: var(--bg); color: var(--text-mid);
  border-radius: var(--r-full);
  border: 1px solid var(--border-light);
}
.leistung-link {
  font-size: 0.875rem; font-weight: 700;
  color: var(--navy);
  display: inline-flex; align-items: center; gap: var(--sp-2);
  margin-top: auto;
  transition: color var(--t-base), gap var(--t-base);
}
.leistung-link:hover { color: var(--gold); gap: var(--sp-3); }

/* --------------------------------------------------------
   ÜBER MICH TEASER
   -------------------------------------------------------- */
.ueber-mich-section {
  padding: var(--sp-24) 0;
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-subtle) 100%);
  position: relative; overflow: hidden;
}
.ueber-mich-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.ueber-mich-inner {
  display: grid;
  grid-template-columns: 42fr 58fr;
  gap: var(--sp-16);
  align-items: center;
}
.portrait-frame {
  width: 100%; max-width: 380px;
  aspect-ratio: 3/4;
  border-radius: var(--r-xl);
  background: transparent;
  border: 1px solid rgba(201,169,110,0.15);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative; overflow: hidden;
}
.portrait-frame-corner {
  position: absolute;
  width: 70px; height: 70px;
  opacity: 0.35;
}
.portrait-frame-corner--tl {
  top: var(--sp-4); left: var(--sp-4);
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  border-radius: var(--r-sm) 0 0 0;
}
.portrait-frame-corner--br {
  bottom: var(--sp-4); right: var(--sp-4);
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-radius: 0 0 var(--r-sm) 0;
}
.portrait-inner-placeholder {
  color: rgba(255,255,255,0.25);
  text-align: center; font-style: italic;
  font-size: 0.8125rem; padding: var(--sp-6); line-height: 1.6;
}
.experience-badge {
  position: absolute;
  bottom: calc(-1 * var(--sp-5));
  right: calc(-1 * var(--sp-5));
  width: 115px; height: 115px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.experience-badge .num {
  font-family: var(--font-display);
  font-size: 2.125rem; font-weight: 700;
  color: var(--navy); line-height: 1;
}
.experience-badge .lbl {
  font-size: 0.65rem; font-weight: 700;
  color: var(--navy-mid); letter-spacing: 0.03em;
  line-height: 1.3; margin-top: 2px;
}
.ueber-mich-content .overline { color: var(--gold); display: block; margin-bottom: var(--sp-3); }
.ueber-mich-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.375rem);
  font-weight: 700; color: var(--white);
  margin-bottom: var(--sp-5); line-height: 1.2;
}
.ueber-mich-content p {
  font-size: 1rem; color: rgba(255,255,255,0.72);
  line-height: 1.8; margin-bottom: var(--sp-5);
}
.highlights-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp-3); margin: var(--sp-8) 0;
}
.highlight-item {
  display: flex; align-items: flex-start; gap: var(--sp-3);
}
.highlight-check {
  width: 22px; height: 22px; flex-shrink: 0;
  background: rgba(201,169,110,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px; color: var(--gold); font-size: 0.75rem;
}
.highlight-text { font-size: 0.9rem; color: rgba(255,255,255,0.78); line-height: 1.55; }

/* --------------------------------------------------------
   ABLAUF / PROZESS
   -------------------------------------------------------- */
.ablauf-section { padding: var(--sp-24) 0; background: var(--bg); }
.ablauf-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-4);
  position: relative;
}
.ablauf-connector {
  position: absolute;
  top: 40px; left: calc(10% + 24px); right: calc(10% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  opacity: 0.25; z-index: 0;
}
.ablauf-step {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  position: relative; z-index: 1;
  padding: var(--sp-4);
  transition: all var(--t-base);
}
.ablauf-step:hover { transform: translateY(-4px); }
.step-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-5);
  position: relative;
  transition: all var(--t-base);
}
.ablauf-step:hover .step-circle {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.step-num {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  color: var(--navy);
  transition: color var(--t-base);
}
.step-icon-small {
  position: absolute;
  bottom: -5px; right: -5px;
  width: 26px; height: 26px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.8rem;
  box-shadow: var(--shadow-sm);
}
.ablauf-step h4 {
  font-size: 0.9375rem; font-weight: 700;
  color: var(--navy); margin-bottom: var(--sp-2); line-height: 1.3;
}
.ablauf-step p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* --------------------------------------------------------
   TESTIMONIALS
   -------------------------------------------------------- */
.testimonials-section { padding: var(--sp-24) 0; background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.testimonial-card {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  border: 1px solid var(--border-light);
  position: relative;
  transition: all var(--t-base);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.quote-mark {
  font-family: var(--font-display);
  font-size: 4rem; line-height: 0.8;
  color: var(--gold); opacity: 0.3;
  margin-bottom: var(--sp-3); display: block;
}
.testimonial-text {
  font-size: 0.9375rem; color: var(--text-mid);
  line-height: 1.75; font-style: italic;
  margin-bottom: var(--sp-6);
}
.testimonial-author { display: flex; align-items: center; gap: var(--sp-3); }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem;
  color: var(--navy); flex-shrink: 0;
  border: 2px solid var(--border);
}
.author-name { font-size: 0.9375rem; font-weight: 700; color: var(--navy); line-height: 1.2; }
.author-role { font-size: 0.8125rem; color: var(--text-muted); margin-top: 1px; }
.placeholder-notice {
  margin-top: var(--sp-8);
  padding: var(--sp-4) var(--sp-6);
  background: var(--gold-pale);
  border-radius: var(--r-md);
  border: 1px solid rgba(201,169,110,0.3);
  text-align: center;
  font-size: 0.875rem; color: var(--text-mid);
}
.placeholder-notice strong { color: var(--navy); }

/* --------------------------------------------------------
   FAQ
   -------------------------------------------------------- */
.faq-section { padding: var(--sp-10) 0 var(--sp-24) 0; background: var(--bg); }
.faq-list {
  max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column; gap: var(--sp-3);
}
.faq-item {
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: box-shadow var(--t-base), border-color var(--t-base);
}
.faq-item:hover { border-color: rgba(201,169,110,0.25); }
.faq-item.open {
  border-color: rgba(201,169,110,0.4);
  box-shadow: var(--shadow-md);
}
.faq-trigger {
  width: 100%;
  display: flex; align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  background: none; cursor: pointer;
  text-align: left; gap: var(--sp-4);
}
.faq-trigger-text {
  font-size: 1rem; font-weight: 600;
  color: var(--navy); flex: 1; line-height: 1.4;
}
.faq-toggle-btn {
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all var(--t-base); font-size: 1.25rem; line-height: 1;
}
.faq-item.open .faq-toggle-btn {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(45deg);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.faq-item.open .faq-body { max-height: 500px; }
.faq-body-inner {
  padding: 0 var(--sp-6) var(--sp-6);
  font-size: 0.9375rem; color: var(--text-mid); line-height: 1.8;
}

/* --------------------------------------------------------
   CONTACT SECTION
   -------------------------------------------------------- */
.kontakt-section {
  padding: var(--sp-24) 0;
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-subtle) 100%);
  position: relative; overflow: hidden;
}
.kontakt-section::before {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.kontakt-inner {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: var(--sp-14);
  align-items: start;
}
.kontakt-content .overline { color: var(--gold); display: block; margin-bottom: var(--sp-3); }
.kontakt-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.375rem);
  font-weight: 700; color: var(--white);
  margin-bottom: var(--sp-5); line-height: 1.2;
}
.kontakt-content .lead { color: rgba(255,255,255,0.72); margin-bottom: var(--sp-8); font-size: 1rem; }
.kontakt-info-list { display: flex; flex-direction: column; gap: var(--sp-5); }
.kontakt-info-item { display: flex; align-items: flex-start; gap: var(--sp-4); }
.kontakt-info-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(201,169,110,0.12);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.kontakt-info-icon svg { width: 20px; height: 20px; }
.kontakt-info-label {
  font-size: 0.72rem; font-weight: 700;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase; letter-spacing: 0.1em;
  display: block; margin-bottom: 3px;
}
.kontakt-info-value { font-size: 0.9375rem; color: rgba(255,255,255,0.85); }
.kontakt-info-value a { color: inherit; transition: color var(--t-base); }
.kontakt-info-value a:hover { color: var(--gold); }
/* Form */
.form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-xl);
}
.form-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  color: var(--navy); margin-bottom: 4px; line-height: 1.2;
}
.form-card-sub {
  font-size: 0.9rem; color: var(--text-muted);
  margin-bottom: var(--sp-7);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.span-2 { grid-column: 1 / -1; }
.form-label {
  font-size: 0.875rem; font-weight: 600; color: var(--text);
}
.form-label .req { color: var(--error); margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--t-base), box-shadow var(--t-base);
  outline: none;
  appearance: none;
}
.form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,31,58,0.07);
}
.form-control:hover:not(:focus) { border-color: var(--text-muted); }

/* Browser-native :valid/:invalid komplett unterdrücken –
   Validierungsstyles werden nur nach Submit via JS-Klasse gesetzt */
.form-control:valid,
.form-control:invalid {
  box-shadow: none;
  border-color: var(--border);
}
.form-control:focus:valid,
.form-control:focus:invalid {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,31,58,0.07);
}
/* Nach Submit: Fehlerfelder rot markieren (Klasse via JS) */
.form--submitted .form-control:invalid {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(220,53,69,0.08);
}
.form--submitted .form-control:valid {
  border-color: var(--border);
  box-shadow: none;
}
textarea.form-control { resize: vertical; min-height: 110px; }
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236B7B8D' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.75rem;
}
.form-check-group {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  grid-column: 1 / -1;
}
.form-check {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  accent-color: var(--navy); cursor: pointer;
}
.form-check-label { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.55; }
.form-check-label a { color: var(--navy); text-decoration: underline; }
.form-submit-row { grid-column: 1 / -1; margin-top: var(--sp-2); }
.honeypot { display: none !important; position: absolute; left: -9999px; }
.form-message {
  display: none;
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-md);
  font-size: 0.9375rem;
  margin-top: var(--sp-4);
}
.form-message.success { background: #F0FFF4; color: #276749; border: 1px solid #9AE6B4; display: block; }
.form-message.error   { background: #FFF5F5; color: #9B2C2C; border: 1px solid #FEB2B2; display: block; }

/* --------------------------------------------------------
   FOOTER
   -------------------------------------------------------- */
.site-footer { background: #060E1C; color: rgba(255,255,255,0.65); padding-top: var(--sp-16); }
.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo .logo-name { font-size: 1.4rem; }
.footer-logo .logo-tagline { display: block; margin-bottom: var(--sp-5); }
.footer-about {
  font-size: 0.875rem; color: rgba(255,255,255,0.48);
  line-height: 1.75; margin-bottom: var(--sp-6); max-width: 270px;
}
.footer-social { display: flex; gap: var(--sp-3); }
.footer-social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); font-size: 1rem;
  transition: all var(--t-base); text-decoration: none;
}
.footer-social-link:hover { background: var(--gold); color: var(--navy); }
.footer-col-title {
  font-size: 0.8rem; font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: var(--sp-5);
}
.footer-links { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-links a {
  font-size: 0.875rem; color: rgba(255,255,255,0.5);
  transition: color var(--t-base);
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  padding: var(--sp-5) 0;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: var(--sp-4); flex-wrap: wrap;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: var(--sp-5); }
.footer-legal a {
  font-size: 0.8rem; color: rgba(255,255,255,0.3);
  transition: color var(--t-base);
}
.footer-legal a:hover { color: var(--gold); }

/* --------------------------------------------------------
   PAGE HERO (inner pages)
   -------------------------------------------------------- */
.page-hero {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: calc(var(--header-h) + var(--sp-16)) 0 var(--sp-16);
  text-align: center; position: relative;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.4), transparent);
}
.page-hero .overline { color: var(--gold); display: block; margin-bottom: var(--sp-3); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--white);
  margin-bottom: var(--sp-4); line-height: 1.15;
}
.page-hero .lead { color: rgba(255,255,255,0.68); max-width: 560px; margin: 0 auto; }

/* --------------------------------------------------------
   SCROLL REVEAL ANIMATION
   -------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  /* Verhindert, dass margin: 0 auto durch display-Änderung bricht */
  display: block;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
/* Inline-/Flex-Kinder behalten ihre eigene display-Eigenschaft */
.trust-item.reveal,
.zielgruppe-card.reveal,
.leistung-card.reveal,
.ablauf-step.reveal,
.testimonial-card.reveal { display: flex; flex-direction: column; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* --------------------------------------------------------
   BACK TO TOP
   -------------------------------------------------------- */
.back-to-top {
  position: fixed; bottom: var(--sp-6); right: var(--sp-6);
  width: 46px; height: 46px;
  background: var(--gold); color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0; transform: translateY(12px) scale(0.9);
  transition: all var(--t-base);
  z-index: 500; border: none; font-size: 1.125rem;
}
.back-to-top.visible { opacity: 1; transform: translateY(0) scale(1); }
.back-to-top:hover { background: var(--gold-light); transform: translateY(-3px) scale(1.05); }

/* --------------------------------------------------------
   ANIMATIONS
   -------------------------------------------------------- */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * {
  animation: fadeIn 0.75s ease forwards;
}
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.25s; }
.hero-content > *:nth-child(3) { animation-delay: 0.4s; }
.hero-content > *:nth-child(4) { animation-delay: 0.55s; }
.hero-content > *:nth-child(5) { animation-delay: 0.7s; }

/* --------------------------------------------------------
   RESPONSIVE – DESKTOP LARGE (1400px+)
   -------------------------------------------------------- */
@media (min-width: 1400px) {
  :root { --max-w: 1320px; }
  .hero-headline { font-size: 4rem; }
}

/* --------------------------------------------------------
   RESPONSIVE – LAPTOP / SMALL DESKTOP (1100px)
   -------------------------------------------------------- */
@media (max-width: 1100px) {
  .trust-grid       { grid-template-columns: repeat(2, 1fr); }
  .ablauf-steps     { grid-template-columns: repeat(3, 1fr); }
  .ablauf-connector { display: none; }
  .footer-top       { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .leistungen-grid  { grid-template-columns: repeat(2, 1fr); }
}

/* --------------------------------------------------------
   RESPONSIVE – TABLET LANDSCAPE (900px – 1100px)
   -------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-inner          { gap: var(--sp-10); }
  .hero-portrait-wrap  { max-width: 340px; }
  .hero-headline       { font-size: clamp(2rem, 4vw, 3rem); }
  .ueber-mich-inner    { gap: var(--sp-10); }
  .kontakt-inner       { gap: var(--sp-10); }
  .zielgruppen-grid    { gap: var(--sp-4); }
  .leistungen-grid     { gap: var(--sp-4); }
}

/* --------------------------------------------------------
   RESPONSIVE – TABLET PORTRAIT (768px – 900px)
   -------------------------------------------------------- */
@media (max-width: 900px) {
  /* Layout */
  .hero-inner          { grid-template-columns: 1fr; text-align: center; }
  .hero-visual         { display: none; }
  .hero-cta-group      { justify-content: center; }
  .hero-stats          { justify-content: center; }
  .hero-subline        { margin: 0 auto var(--sp-10); }
  .hero-badge          { margin: 0 auto var(--sp-6); }
  .ueber-mich-inner    { grid-template-columns: 1fr; }
  .ueber-mich-portrait { display: none; }
  .ueber-mich-content  { text-align: left; }
  .kontakt-inner       { grid-template-columns: 1fr; }
  .testimonials-grid   { grid-template-columns: repeat(2, 1fr); }

  /* Navigation */
  .nav-main            { display: none; }
  .hamburger           { display: flex; }

  /* Sections */
  .trust-grid          { grid-template-columns: repeat(2, 1fr); }
  .zielgruppen-grid    { grid-template-columns: repeat(2, 1fr); }
  .leistungen-grid     { grid-template-columns: repeat(2, 1fr); }
  .ablauf-steps        { grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
  .ablauf-connector    { display: none; }
  .footer-top          { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }

  /* Touch targets – min 44px for all interactive elements */
  .btn          { min-height: 44px; }
  .nav-link     { min-height: 44px; display: inline-flex; align-items: center; }
  .faq-trigger  { min-height: 52px; }
  .form-control { min-height: 48px; }
}

/* --------------------------------------------------------
   RESPONSIVE – MOBILE LARGE (641px – 768px)
   -------------------------------------------------------- */
@media (max-width: 768px) {
  :root {
    --header-h: 68px;
    --sp-24: 4.5rem;
    --sp-20: 3.5rem;
  }

  /* Hero */
  .hero { min-height: auto; padding-bottom: var(--sp-16); }
  .hero-inner { padding: var(--sp-16) clamp(1rem, 4vw, 1.5rem); }
  .hero-headline { font-size: clamp(1.875rem, 6vw, 2.75rem); }
  .hero-subline  { font-size: 1rem; }
  .hero-stats    { gap: var(--sp-6); padding-top: var(--sp-6); flex-wrap: wrap; }
  .hero-stat-number { font-size: 1.625rem; }

  /* Form */
  .form-card { padding: var(--sp-6); }
  .form-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
  .form-group.span-2 { grid-column: 1; }
  .form-submit-row   { grid-column: 1; }

  /* Sections */
  .section-header { margin-bottom: var(--sp-10); }
  .section-header h2 { font-size: clamp(1.5rem, 4.5vw, 2rem); }
  .trust-item   { padding: var(--sp-6) var(--sp-5); }
  .leistung-card { padding: var(--sp-6); }
  .zielgruppe-card { padding: var(--sp-6); }
  .ablauf-step  { padding: var(--sp-3); }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Kontakt */
  .kontakt-content h2 { font-size: clamp(1.625rem, 5vw, 2.125rem); }
  .kontakt-info-list { gap: var(--sp-4); }
}

/* --------------------------------------------------------
   RESPONSIVE – MOBILE STANDARD (max 640px)
   -------------------------------------------------------- */
@media (max-width: 640px) {
  :root {
    --sp-24: 3.75rem;
    --sp-20: 3rem;
    --sp-16: 2.5rem;
    --sp-12: 2.25rem;
  }

  /* Grids → Single column */
  .zielgruppen-grid  { grid-template-columns: 1fr; }
  .leistungen-grid   { grid-template-columns: 1fr; }
  .trust-grid        { grid-template-columns: 1fr; }
  .highlights-grid   { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .ablauf-steps      { grid-template-columns: repeat(2, 1fr); }
  .footer-top        { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer-bottom     { flex-direction: column; text-align: center; }
  .footer-legal      { flex-wrap: wrap; justify-content: center; gap: var(--sp-4); }

  /* Hero */
  .hero-stats        { gap: var(--sp-5); flex-wrap: wrap; justify-content: center; }
  .hero-badge span   { font-size: 0.75rem; }
  .hero-cta-group    { flex-direction: column; align-items: center; width: 100%; }
  .hero-cta-group .btn { width: 100%; max-width: 340px; justify-content: center; }

  /* Cards */
  .leistung-card   { padding: var(--sp-6) var(--sp-5); }
  .zielgruppe-card { padding: var(--sp-6) var(--sp-5); }
  .trust-item      { padding: var(--sp-6) var(--sp-5); }
  .testimonial-card { padding: var(--sp-6) var(--sp-5); }
  .card             { padding: var(--sp-6) var(--sp-5); }

  /* Ablauf */
  .ablauf-step .step-circle { width: 68px; height: 68px; }
  .ablauf-step .step-num    { font-size: 1.25rem; }

  /* Form */
  .form-card        { border-radius: var(--r-lg); padding: var(--sp-5); }
  .form-control     { padding: 0.8125rem 0.875rem; font-size: 0.9375rem; }

  /* Typography */
  .page-hero h1     { font-size: clamp(1.75rem, 6vw, 2.5rem); }

  /* Footer */
  .footer-about   { max-width: 100%; }
  .footer-social  { justify-content: flex-start; }

  /* Back to top – higher position on mobile (above any bars) */
  .back-to-top { bottom: calc(var(--sp-5) + env(safe-area-inset-bottom, 0px)); right: var(--sp-5); }
}

/* --------------------------------------------------------
   RESPONSIVE – MOBILE SMALL (max 480px)
   -------------------------------------------------------- */
@media (max-width: 480px) {
  :root {
    --sp-24: 3.25rem;
    --sp-20: 2.75rem;
    --sp-16: 2.25rem;
    --header-h: 64px;
  }

  /* Full-column ablauf */
  .ablauf-steps { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }

  /* Buttons */
  .btn--lg { padding: 0.9375rem 1.75rem; font-size: 0.9375rem; }
  .btn     { min-height: 48px; }

  /* Hero */
  .hero-headline   { font-size: clamp(1.75rem, 7vw, 2.375rem); letter-spacing: -0.015em; }
  .hero-stat-number { font-size: 1.5rem; }

  /* Trust icons smaller */
  .trust-icon { width: 50px; height: 50px; }
  .trust-icon svg { width: 22px; height: 22px; }

  /* Kontakt info */
  .kontakt-info-icon { width: 40px; height: 40px; }

  /* Section header */
  .section-header h2 { font-size: clamp(1.375rem, 5.5vw, 1.875rem); }

  /* Form */
  .form-grid { gap: var(--sp-3); }
  .form-card-title { font-size: 1.25rem; }
}

/* --------------------------------------------------------
   RESPONSIVE – VERY SMALL (max 360px)
   -------------------------------------------------------- */
@media (max-width: 360px) {
  :root { --header-h: 60px; }
  .hero-headline   { font-size: 1.625rem; }
  .hero-cta-group .btn { font-size: 0.875rem; padding: 0.875rem 1.5rem; }
  .logo-name       { font-size: 1.1875rem; }
  .container       { padding: 0 var(--sp-4); }
}

/* --------------------------------------------------------
   TOUCH DEVICE IMPROVEMENTS
   -------------------------------------------------------- */
@media (hover: none) and (pointer: coarse) {
  /* Remove hover effects that cause stuck states on touch */
  .card:hover,
  .leistung-card:hover,
  .zielgruppe-card:hover,
  .trust-item:hover,
  .testimonial-card:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
  }

  /* Larger touch targets */
  .faq-trigger  { padding: var(--sp-5) var(--sp-5); min-height: 56px; }
  .nav-link     { padding: var(--sp-1) 0; }
  .footer-links a { padding: var(--sp-1) 0; display: inline-block; }
  .form-check   { width: 22px; height: 22px; }

  /* Faster transitions on touch */
  :root {
    --t-base: 0.15s ease;
    --t-slow: 0.25s ease;
  }
}

/* --------------------------------------------------------
   PRINT STYLES
   -------------------------------------------------------- */
@media print {
  .site-header, .hamburger, .mobile-nav,
  .hero-cta-group, .back-to-top,
  .ablauf-section .btn,
  .site-footer .footer-social { display: none !important; }

  body { font-size: 12pt; color: #000; background: #fff; }
  .hero { background: #0B1F3A; -webkit-print-color-adjust: exact; print-color-adjust: exact; min-height: auto; padding: 2rem 0; }
  .container { max-width: 100%; padding: 0 1rem; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
  .card, .leistung-card, .zielgruppe-card { box-shadow: none; border: 1pt solid #ccc; break-inside: avoid; }
}

/* --------------------------------------------------------
   SAFE AREA / NOTCH SUPPORT (iPhone X+, foldables)
   -------------------------------------------------------- */
.site-header { padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); }
.site-footer .container { padding-bottom: env(safe-area-inset-bottom, 0px); }
.mobile-nav { padding-left: calc(1rem + env(safe-area-inset-left)); padding-right: calc(1rem + env(safe-area-inset-right)); }

/* --------------------------------------------------------
   REDUCED MOTION
   -------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-content > * { animation: none; opacity: 1; }
  .hero-badge-dot { animation: none; }
}

/* --------------------------------------------------------
   FOCUS VISIBLE (Keyboard navigation / accessibility)
   -------------------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}
:focus:not(:focus-visible) { outline: none; }
.btn:focus-visible { outline-color: var(--gold); outline-offset: 4px; }
.form-control:focus-visible { outline: none; } /* handled by box-shadow */
.faq-trigger:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }
/* WordPress Admin Bar Fix */
body.admin-bar .site-header {
  top: 32px;
}
@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}
body.admin-bar .mobile-nav {
  top: calc(var(--header-h) + 32px);
}
@media (max-width: 782px) {
  body.admin-bar .mobile-nav {
    top: calc(var(--header-h) + 46px);
  }
}
