/* =========================================================
   Schmieder & Kollegen — Modern Redesign
   ========================================================= */

:root {
  --navy-900: #0a1628;
  --navy-800: #102541;
  --navy-700: #1a3560;
  --navy-600: #2a4a7f;
  --blue-accent: #2563eb;
  --blue-light: #3b82f6;
  --cream: #faf7f2;
  --cream-dark: #f0ebe1;
  --warm-white: #fdfcf9;
  --gold: #c9a961;
  --gold-light: #e5d4a5;
  --text-primary: #0a1628;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --border: #e2dcd0;
  --border-dark: #1a3560;
  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.04);
  --shadow-md: 0 8px 30px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.12);
  --radius: 4px;
  --max: 1320px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--cream);
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.serif {
  font-family: 'Geist', 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  letter-spacing: -0.02em;
}

/* =========================================================
   Top Announcement Bar
   ========================================================= */
.top-bar {
  background: var(--navy-900);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 0;
  overflow: hidden;
}

.top-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.top-bar-left { display: flex; gap: 28px; }
.top-bar-left span { opacity: 0.75; }
.top-bar-left span::before { content: '— '; color: var(--gold); }

.top-bar-right { display: flex; gap: 20px; }
.top-bar-right a {
  color: var(--cream);
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.top-bar-right a:hover { opacity: 1; color: var(--gold-light); }

/* =========================================================
   Header / Navigation
   ========================================================= */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(250, 247, 242, 0.92);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand {
  text-decoration: none;
  color: var(--navy-900);
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-mark {
  font-family: 'Geist', serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.brand-mark em {
  font-style: italic;
  color: var(--blue-accent);
  font-weight: 300;
}
.brand-sub {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav-menu > li { position: relative; }

.nav-menu a {
  text-decoration: none;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  display: block;
  border-radius: var(--radius);
  transition: all 0.2s;
  letter-spacing: 0.01em;
}
.nav-menu a:hover,
.nav-menu a.active {
  background: var(--navy-900);
  color: var(--cream);
}

.nav-menu .has-dropdown > a::after {
  content: ' ↓';
  font-size: 10px;
  opacity: 0.6;
  margin-left: 4px;
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 240px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s var(--ease);
  box-shadow: var(--shadow-lg);
  list-style: none;
}

.nav-menu > li.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  padding: 10px 14px;
  font-size: 13px;
  color: var(--navy-900);
}
.dropdown a:hover {
  background: var(--cream-dark);
  color: var(--navy-900);
}

.cta-nav {
  background: var(--navy-900);
  color: var(--cream) !important;
  padding: 12px 22px !important;
  border-radius: var(--radius);
  font-size: 13px !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.cta-nav:hover {
  background: var(--blue-accent) !important;
}

.burger {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: center;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy-900);
  transition: all 0.3s;
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Hero — Home
   ========================================================= */
.hero {
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--navy-900);
}

.hero h1 {
  font-family: 'Geist', serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--navy-900);
  margin-bottom: 32px;
}
.hero h1 em {
  font-style: italic;
  color: var(--blue-accent);
  font-weight: 300;
}

.hero-lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s var(--ease);
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--navy-900);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--blue-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-primary::after {
  content: '→';
  transition: transform 0.3s;
}
.btn-primary:hover::after { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  color: var(--navy-900);
  border: 1px solid var(--navy-900);
}
.btn-ghost:hover {
  background: var(--navy-900);
  color: var(--cream);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 520px;
  justify-self: end;
  width: 100%;
}
.hero-img-frame {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201, 169, 97, 0.2) 0%, transparent 50%);
}
.hero-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-floating-card {
  position: absolute;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  max-width: 280px;
}
.hero-floating-card.card-1 {
  top: 8%;
  left: -40px;
  animation: float 6s ease-in-out infinite;
}
.hero-floating-card.card-2 {
  bottom: 10%;
  right: -30px;
  animation: float 6s ease-in-out infinite reverse;
  animation-delay: -3s;
}

.floating-number {
  font-family: 'Geist', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--navy-900);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}
.floating-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-hint::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--navy-900), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* =========================================================
   Trust strip / marquee
   ========================================================= */
.marquee {
  background: var(--navy-900);
  color: var(--cream);
  padding: 24px 0;
  overflow: hidden;
  border-top: 1px solid var(--navy-700);
  border-bottom: 1px solid var(--navy-700);
}
.marquee-track {
  display: flex;
  gap: 64px;
  animation: scroll-x 40s linear infinite;
  white-space: nowrap;
  font-family: 'Geist', serif;
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
}
.marquee-track span::before {
  content: '✦';
  margin-right: 64px;
  color: var(--gold);
  font-style: normal;
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   Section base
   ========================================================= */
.section {
  padding: 120px 0;
}
.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--navy-900);
}

.section-title {
  font-family: 'Geist', serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--navy-900);
  margin-bottom: 28px;
}
.section-title em {
  font-style: italic;
  color: var(--blue-accent);
}

.section-lead {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.7;
}

/* =========================================================
   Greeting / Agenturleiter
   ========================================================= */
.greeting {
  background: var(--warm-white);
  position: relative;
}

.greeting-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.greeting-img {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.greeting-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
}

.greeting-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.85) 0%, rgba(10, 22, 40, 0.2) 35%, transparent 55%);
  z-index: 2;
}

.greeting-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  color: var(--cream);
  font-family: 'Geist', serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  z-index: 3;
}
.greeting-caption::after {
  content: '';
  display: block;
  font-family: 'Geist', sans-serif;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 8px;
  opacity: 0.7;
}

.greeting-content h2 {
  font-family: 'Geist', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}
.greeting-content h2 em {
  font-style: italic;
  color: var(--blue-accent);
}

.greeting-content p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.signature {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.signature-name {
  font-family: 'Geist', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--navy-900);
}
.signature-role {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* =========================================================
   Services cards (2-column feature)
   ========================================================= */
.services {
  background: var(--navy-900);
  color: var(--cream);
}

.services .section-label { color: var(--gold-light); }
.services .section-label::before { background: var(--gold); }

.services .section-title {
  color: var(--cream);
}
.services .section-title em { color: var(--gold); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 72px;
}

.service-card {
  padding: 48px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  text-decoration: none;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  min-height: 460px;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 97, 0.3);
  background: rgba(255, 255, 255, 0.05);
}
.service-card:hover::before { opacity: 1; }

.service-number {
  font-family: 'Geist', serif;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 24px;
}

.service-card h3 {
  font-family: 'Geist', serif;
  font-size: 42px;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.1;
}

.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(250, 247, 242, 0.75);
  margin-bottom: 32px;
  flex-grow: 1;
}

.service-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.service-list li {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  color: rgba(250, 247, 242, 0.85);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: auto;
}
.service-link::after {
  content: '→';
  transition: transform 0.3s;
}
.service-card:hover .service-link::after { transform: translateX(6px); }

css/* =========================================================
   Ausbildung block
   ========================================================= */
.ausbildung {
  background: var(--cream);
}
.ausbildung-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}

.ausbildung-visual {
  aspect-ratio: 5/4;
  background: linear-gradient(135deg, var(--blue-accent), var(--navy-700));
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ausbildung-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0.8;
}

.ausbildung-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 22, 40, 0.15), rgba(10, 22, 40, 0.55)),
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.03) 20px, rgba(255,255,255,0.03) 21px);
  z-index: 2;
}

.ausbildung-stamp {
  position: relative;
  z-index: 3;
  font-family: 'Geist', serif;
  color: var(--cream);
  text-align: center;
}
.ausbildung-stamp-big {
  font-size: clamp(38px, 6vw, 90px);
  font-weight: 300;
  line-height: 1;
  font-style: italic;
  letter-spacing: -0.03em;
}
.ausbildung-stamp-small {
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 12px;
  font-family: 'Geist', sans-serif;
  font-style: normal;
  opacity: 0.85;
}

/* =========================================================
   News / Highlights
   ========================================================= */
.news {
  background: var(--warm-white);
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 72px;
  gap: 40px;
  flex-wrap: wrap;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.news-card {
  text-decoration: none;
  color: var(--navy-900);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease);
}
.news-card:hover { transform: translateY(-6px); }

.news-image {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  background: var(--cream-dark);
}
.news-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(10, 22, 40, 0.6));
  opacity: 0;
  transition: opacity 0.3s;
}
.news-card:hover .news-image::after { opacity: 1; }

.news-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Geist', serif;
  font-style: italic;
  color: var(--cream);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.05em;
  padding: 20px;
  text-align: center;
}
.news-img-1 { background: linear-gradient(135deg, #1e3a8a, #3b82f6); }
.news-img-2 { background: linear-gradient(135deg, #0a1628, #2a4a7f); }
.news-img-3 { background: linear-gradient(135deg, #7c2d12, #c9a961); }
.news-img-4 { background: linear-gradient(135deg, #064e3b, #2563eb); }

.news-date {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.news-title {
  font-family: 'Geist', serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.news-excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =========================================================
   CTA Strip
   ========================================================= */
.cta-strip {
  background: var(--navy-900);
  color: var(--cream);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -200px;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.3), transparent 70%);
  border-radius: 50%;
}

.cta-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-strip h2 {
  font-family: 'Geist', serif;
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.cta-strip h2 em {
  font-style: italic;
  color: var(--gold);
}

.cta-strip p {
  font-size: 18px;
  color: rgba(250, 247, 242, 0.8);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-strip .btn-primary {
  background: var(--gold);
  color: var(--navy-900);
}
.cta-strip .btn-primary:hover {
  background: var(--cream);
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: #060f1d;
  color: var(--cream);
  padding: 100px 0 40px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .brand-mark { color: var(--cream); font-size: 32px; }
.footer-brand .brand-mark em { color: var(--gold); }
.footer-brand .brand-sub { color: rgba(250, 247, 242, 0.5); }

.footer-tagline {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(250, 247, 242, 0.6);
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h4 {
  font-family: 'Geist', serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--gold-light);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  color: rgba(250, 247, 242, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-contact-item {
  font-size: 14px;
  color: rgba(250, 247, 242, 0.7);
  line-height: 1.6;
}
.footer-contact-item strong {
  display: block;
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-legal {
  font-size: 12px;
  color: rgba(250, 247, 242, 0.4);
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 247, 242, 0.7);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s;
}
.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-900);
}

/* =========================================================
   Inner Page Hero (sub-pages)
   ========================================================= */
.page-hero {
  background: var(--navy-900);
  color: var(--cream);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25), transparent 60%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.1), transparent 60%);
}
/* Page-Hero mit Hintergrundbild (für firmen-industrie.html, privatkunden.html etc.) */
.page-hero.has-bg::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
  pointer-events: none;
}
.page-hero.has-bg::after {
  display: none;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.00);
  z-index: 0;
}
.page-hero.has-bg .page-hero-inner {
  position: relative;
  z-index: 2;
}

.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.5);
  margin-bottom: 40px;
}
.breadcrumb a {
  color: rgba(250, 247, 242, 0.7);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--gold); }

.page-hero h1 {
  font-family: 'Geist', serif;
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 32px;
  max-width: 1100px;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.page-hero-sub {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(250, 247, 242, 0.75);
  max-width: 680px;
}

/* =========================================================
   Content Page Layout
   ========================================================= */
.content-page {
  padding: 120px 0;
  background: var(--cream);
}

.content-layout {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: flex-start;
}

.content-sidebar {
  position: sticky;
  top: 140px;
}

.sidebar-title {
  font-family: 'Geist', serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.sidebar-meta {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding: 24px;
  background: var(--warm-white);
  border-left: 2px solid var(--blue-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 20px;
}

.content-main h2 {
  font-family: 'Geist', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 32px;
  margin-top: 60px;
}
.content-main h2:first-child { margin-top: 0; }

.content-main h3 {
  font-family: 'Geist', serif;
  font-size: 24px;
  font-weight: 400;
  margin: 40px 0 16px;
  letter-spacing: -0.01em;
}

.content-main p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.content-main p strong {
  color: var(--navy-900);
  font-weight: 600;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 60px 0;
  position: relative;
}
.divider::before {
  content: '✦';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--cream);
  padding: 0 16px;
  color: var(--gold);
}

.content-image {
  aspect-ratio: 1024 / 271;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  margin: 40px 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.content-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
}

.content-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.5) 0%, transparent 35%);
  z-index: 2;
}

.content-image-label {
  position: absolute;
  bottom: 16px;
  left: 24px;
  color: var(--cream);
  font-family: 'Geist', serif;
  font-style: italic;
  font-size: 18px;
  font-weight: 300;
  z-index: 3;
}

/* Feature grid for services pages */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.feature-item {
  padding: 28px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s;
}
.feature-item:hover {
  border-color: var(--navy-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.feature-item h4 {
  font-family: 'Geist', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  color: var(--navy-900);
}
.feature-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* =========================================================
   Stats row
   ========================================================= */
.stats {
  background: var(--cream);
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.stat {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Geist', serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 300;
  color: var(--navy-900);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.stat-num em { font-style: italic; color: var(--blue-accent); }
.stat-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* =========================================================
   Contact / Termin page
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info h3 {
  font-family: 'Geist', serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
}

.info-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.info-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.info-value {
  font-family: 'Geist', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}
.info-value a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.info-value a:hover { border-color: var(--navy-900); }

/* Form */
.form-wrap {
  background: var(--warm-white);
  padding: 48px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.form-wrap h3 {
  font-family: 'Geist', serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.form-wrap > p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream);
  font-family: inherit;
  font-size: 15px;
  color: var(--navy-900);
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--navy-900);
}
.form-field textarea { min-height: 120px; resize: vertical; }

.form-wrap .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* =========================================================
   Mobile
   ========================================================= */
/* Intermediate breakpoint — Hero einspaltig, bevor's bei schmalen Laptops quetscht */
/* =========================================================
   Testimonials (Auto-scrolling carousel)
   ========================================================= */
.testimonials {
  background: var(--cream);
  position: relative;
}
.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.testimonials-rating {
  text-align: right;
}
.rating-stars {
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 4px;
}
.rating-meta {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.testimonials-marquee {
  overflow: hidden;
  padding: 8px 0 24px;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.testimonials-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: scroll-x 90s linear infinite;
}
.testimonials-marquee:hover .testimonials-track {
  animation-play-state: paused;
}

.testimonial-card {
  flex: 0 0 420px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 3px;
}
.testimonial-text {
  font-family: 'Geist', serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--navy-900);
  font-weight: 300;
  margin: 0;
  flex: 1;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy-900);
  margin-bottom: 2px;
}
.testimonial-source {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .testimonial-card { flex: 0 0 320px; padding: 26px 24px 22px; }
  .testimonial-text { font-size: 15px; }
  .testimonials-track { animation-duration: 60s; }
  .testimonials-rating { text-align: left; }
}

/* =========================================================
   Feedback page — stacked Google reviews (left column)
   ========================================================= */
.feedback-rating-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 32px;
}
.feedback-rating-bar .rating-stars {
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 4px;
  line-height: 1;
}
.rating-score {
  font-family: 'Geist', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--navy-900);
  line-height: 1.2;
}
.feedback-rating-bar .rating-meta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

.feedback-reviews {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feedback-review {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.feedback-review:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.feedback-review-text {
  font-family: 'Geist', serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--navy-900);
  font-weight: 300;
  margin: 0;
}

@media (max-width: 1100px) {
  .hero { padding: 80px 0 100px; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero-visual {
    max-width: 560px;
    justify-self: center;
    margin: 0 auto;
  }
  .hero-floating-card { display: none; }
  .hero h1 { font-size: clamp(36px, 6vw, 60px); }
}

@media (max-width: 900px) {
  .top-bar-left { display: none; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    gap: 0;
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li { width: 100%; }
  .nav-menu a { padding: 14px 16px; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 16px; background: transparent; }
  .cta-nav { margin-top: 10px; }
  .burger { display: flex; }

  .hero { padding: 60px 0 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
   .hero-visual {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
    margin: 0;
    aspect-ratio: 4 / 5;
  }
  .hero-photo {
    width: 190%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
  }
  .hero-floating-card { display: none; }

  .section { padding: 70px 0; }
  .greeting-inner, .ausbildung-inner, .content-layout, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .service-card { padding: 32px; min-height: auto; }
  .service-card h3 { font-size: 32px; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 30px; }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
  .content-sidebar { position: static; }
  .feature-grid, .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 28px; }
  .page-hero { padding: 80px 0 60px; }
}

@media (max-width: 560px) {
  .news-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat { border: none; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
}

/* =========================================================
   Reveal animations
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.9s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.brand-logo {
  height: 72px;
  width: auto;
  display: block;
}

.footer-logo {
  height: 64px;
  width: auto;
  display: block;
  margin-bottom: 20px;
  margin-left: -12px;
}

@media (max-width: 768px) {
  .brand-logo {
    height: 44px;
  }
  .footer-logo {
    height: 52px;
  }
}
/* Social Media Post Grid */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0 50px;
}
.post-card {
  display: block;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.post-card img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .post-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}`

/* Azubi-Foto in voller Originalgröße */
.azubi-photo {
  margin: 40px 0 50px;
  position: relative;
  max-width: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow-lg);
}
.azubi-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.azubi-photo figcaption {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  color: white;
  font-family: 'Geist', sans-serif;
  font-style: italic;
  font-size: 16px;
  font-weight: 300;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
  z-index: 2;
}
.azubi-photo img + figcaption::before {
  content: '';
  position: absolute;
  left: -24px;
  right: -24px;
  bottom: -20px;
  height: 80px;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}
* =========================================================
   Flyout-Submenu (verschachteltes Dropdown)
   ========================================================= */
.dropdown .has-flyout {
  position: relative;
}
.dropdown .has-flyout > a {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.flyout-arrow {
  font-size: 14px;
  opacity: 0.6;
  transition: transform 0.25s var(--ease);
}
.dropdown .has-flyout:hover .flyout-arrow {
  transform: translateX(2px);
  opacity: 1;
}
 
.flyout {
  position: absolute;
  top: -9px;
  left: calc(100% + 4px);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 240px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-8px);
  transition: all 0.25s var(--ease);
  box-shadow: var(--shadow-lg);
  list-style: none;
}
.dropdown .has-flyout:hover > .flyout {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
 
.flyout-group {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 12px 14px 8px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}
 
.flyout a {
  padding: 10px 14px;
  font-size: 13px;
  color: var(--navy-900);
  display: block;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s;
  font-weight: 500;
}
.flyout a:hover {
  background: var(--cream-dark);
  color: var(--navy-900);
}
 
/* Mobile: Flyout flach darstellen */
@media (max-width: 900px) {
  .flyout {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 20px;
    background: transparent;
    min-width: 0;
  }
  .flyout-arrow { display: none; }
  .flyout-group {
    border-bottom: none;
    padding: 14px 16px 4px;
  }
  .dropdown .has-flyout > a {
    display: block !important;
  }
}
 
/* =========================================================
   Flyout-Submenu (verschachteltes Dropdown)
   ========================================================= */
.dropdown .has-flyout {
  position: relative;
}
.dropdown .has-flyout > a {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.flyout-arrow {
  font-size: 14px;
  opacity: 0.6;
  transition: transform 0.25s var(--ease);
}
.dropdown .has-flyout:hover .flyout-arrow {
  transform: translateX(2px);
  opacity: 1;
}
 
.flyout {
  position: absolute;
  top: -9px;
  left: calc(100% + 4px);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 240px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-8px);
  transition: all 0.25s var(--ease);
  box-shadow: var(--shadow-lg);
  list-style: none;
}
.dropdown .has-flyout:hover > .flyout {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
 
.flyout-group {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 12px 14px 8px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}
 
.flyout a {
  padding: 10px 14px;
  font-size: 13px;
  color: var(--navy-900);
  display: block;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s;
  font-weight: 500;
}
.flyout a:hover {
  background: var(--cream-dark);
  color: var(--navy-900);
}
 
/* Mobile: Flyout flach darstellen */
@media (max-width: 900px) {
  .flyout {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 20px;
    background: transparent;
    min-width: 0;
  }
  .flyout-arrow { display: none; }
  .flyout-group {
    border-bottom: none;
    padding: 14px 16px 4px;
  }
  .dropdown .has-flyout > a {
    display: block !important;
  }
}
 
/* =========================================================
   Altersvorsorge — Rentenrechner
   ========================================================= */
.rente-calc-section {
  padding: 40px 0 120px;
  background: var(--cream);
}
 
.calc-wrapper {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.rente-calc-section .section-inner {
  padding: 0 32px;
}
 
.calc-inputs {
  padding: 56px 48px;
  background: var(--warm-white);
}
.calc-inputs-header { margin-bottom: 40px; }
.calc-inputs-header .section-label { margin-bottom: 12px; }
.calc-inputs-header h3,
.calc-output-header h3 {
  font-family: 'Geist', serif;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -0.025em;
  color: var(--navy-900);
  line-height: 1.1;
}
 
.slider-group { margin-bottom: 32px; }
.slider-group:last-child { margin-bottom: 0; }
 
.slider-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
  gap: 16px;
}
.slider-name {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.slider-value {
  font-family: 'Geist', serif;
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: var(--blue-accent);
  white-space: nowrap;
}
 
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--cream-dark);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  margin: 0;
  padding: 0;
}
input[type="range"]::-webkit-slider-runnable-track { height: 4px; border-radius: 2px; background: transparent; }
input[type="range"]::-moz-range-track { height: 4px; border-radius: 2px; background: transparent; }
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  margin-top: -9px;
  background: var(--navy-900);
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
input[type="range"]::-webkit-slider-thumb:hover { background: var(--blue-accent); transform: scale(1.1); }
input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background: var(--navy-900);
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s var(--ease);
}
input[type="range"]::-moz-range-thumb:hover { background: var(--blue-accent); }
 
.calc-output {
  background: var(--navy-900);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.calc-output::before {
  content: '';
  position: absolute;
  top: -30%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25), transparent 60%);
  pointer-events: none;
}
.calc-output::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.12), transparent 60%);
  pointer-events: none;
}
 
.calc-output-inner {
  position: relative;
  z-index: 2;
  padding: 56px 48px;
}
.calc-output-header { margin-bottom: 36px; }
.calc-output-header .section-label { color: var(--gold-light); }
.calc-output-header .section-label::before { background: var(--gold); }
.calc-output-header h3 { color: var(--cream); }
 
.output-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(250, 247, 242, 0.12);
  gap: 16px;
}
 
.output-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.65);
  font-weight: 500;
}
.output-label em {
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 400;
}
 
.output-value {
  font-family: 'Geist', serif;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--cream);
  white-space: nowrap;
}
 
.gap-row {
  padding: 24px 0;
  border-bottom: none;
  align-items: center;
}
.gap-value {
  font-style: italic;
  color: var(--gold) !important;
  font-size: 40px !important;
}
 
.output-total {
  margin: 8px 0 32px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(250, 247, 242, 0.12);
}
.total-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.55);
  margin-bottom: 10px;
}
.output-total strong {
  font-family: 'Geist', serif;
  font-size: 44px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.03em;
  color: var(--gold);
  display: block;
}
 
.calc-cta.btn-primary {
  background: var(--gold);
  color: var(--navy-900);
  width: 100%;
  justify-content: center;
}
.calc-cta.btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy-900);
}
 
.calc-disclaimer {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(250, 247, 242, 0.5);
  margin-top: 18px;
  letter-spacing: 0.01em;
}
 
@media (max-width: 1100px) {
  .calc-wrapper { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .rente-calc-section { padding: 20px 0 80px; }
  .rente-calc-section .section-inner { padding: 0 16px; }
  .calc-inputs,
  .calc-output-inner { padding: 40px 28px; }
  .calc-inputs-header h3,
  .calc-output-header h3 { font-size: 24px; }
  .slider-value { font-size: 17px; }
  .output-value { font-size: 22px; }
  .gap-value { font-size: 30px !important; }
  .output-total strong { font-size: 34px; }
}

/* Ergänzung zu .output-total für Sub-Info-Zeile */
.output-total {
  position: relative;
}
.total-sub {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(250, 247, 242, 0.55);
  line-height: 1.6;
}
.total-sub span {
  color: var(--gold-light);
  font-weight: 500;
}
 