/* ===========================================
   Gemeinsam Jung - Stylesheet
   Zentrale CSS-Datei für alle Seiten
   =========================================== */

:root {
  --green: #1a5c2a;
  --green-light: #2d8a42;
  --green-pale: #e8f5ec;
  --green-dark: #0f3d1a;
  --gold: #c9a253;
  --gold-pale: #f7efde;
  --cream: #faf8f4;
  --warm: #f5f0e8;
  --text: #1a1a1a;
  --text-light: #5a5a5a;
  --text-muted: #8a8a8a;
  --white: #ffffff;
  --red: #c0392b;
  --shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
  line-height: 1.6;
}

/* =================
   NAVIGATION
   ================= */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--green);
}
.logo svg { width: 36px; height: 36px; }
.logo-text { font-family: 'DM Serif Display', serif; font-size: 1.4rem; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text-light);
  font-weight: 500; font-size: 0.95rem; letter-spacing: 0.02em;
  transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--green);
  border-radius: 2px; transition: width 0.3s;
}
.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--green); font-weight: 600; }
.nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--green); color: var(--white);
  padding: 11px 26px; border-radius: 50px; text-decoration: none;
  font-weight: 600; font-size: 0.92rem; letter-spacing: 0.02em;
  transition: all 0.3s; border: 2px solid var(--green);
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-cta:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-1px); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--text);
  margin: 5px 0; transition: 0.3s;
}

/* =================
   SHARED COMPONENTS
   ================= */
section { padding: 100px 32px; }
.section-label {
  font-size: 0.82rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--green); margin-bottom: 14px;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 18px; line-height: 1.2;
}
.section-title em { font-style: italic; color: var(--green); }
.section-subtitle {
  font-size: 1.1rem; color: var(--text-light);
  max-width: 600px; line-height: 1.7;
}

.btn-primary {
  background: var(--green); color: var(--white);
  padding: 16px 36px; border-radius: 50px; text-decoration: none;
  font-weight: 600; font-size: 1rem;
  border: 2px solid var(--green);
  transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--green-dark); border-color: var(--green-dark);
  transform: translateY(-2px); box-shadow: 0 8px 25px rgba(26, 92, 42, 0.25);
}
.btn-secondary {
  background: transparent; color: var(--green);
  padding: 16px 36px; border-radius: 50px; text-decoration: none;
  font-weight: 600; font-size: 1rem;
  border: 2px solid var(--green); transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { background: var(--green-pale); transform: translateY(-2px); }

/* =================
   PAGE HEADER (Sub-Pages)
   ================= */
.page-hero {
  padding: 160px 32px 80px; text-align: center;
  background: var(--white); position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -100px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26, 92, 42, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 18px; position: relative;
  line-height: 1.15;
}
.page-hero h1 em { font-style: italic; color: var(--green); }
.page-hero p {
  font-size: 1.15rem; color: var(--text-light);
  max-width: 640px; margin: 0 auto;
  line-height: 1.7; position: relative;
}
.page-hero-image {
  max-width: 720px;
  margin: 48px auto 0;
  position: relative; z-index: 1;
}
.page-hero-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  display: block;
}
@media (max-width: 600px) {
  .page-hero-image { margin-top: 32px; }
  .page-hero-image img { aspect-ratio: 4 / 3; border-radius: 14px; }
}

/* =================
   HOME HERO
   ================= */
.hero {
  min-height: 92vh; display: flex; align-items: center;
  padding: 160px 32px 80px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -100px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(26, 92, 42, 0.08) 0%, transparent 70%);
  border-radius: 50%; animation: float 8s ease-in-out infinite;
}
.hero::after {
  content: ''; position: absolute; bottom: -50px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245, 240, 232, 0.8) 0%, transparent 70%);
  border-radius: 50%; animation: float 10s ease-in-out infinite reverse;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 2;
}
.hero-content { animation: slideUp 1s ease-out; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-pale); color: var(--green);
  padding: 8px 18px; border-radius: 50px;
  font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 24px;
}
.hero-badge .dot {
  width: 8px; height: 8px; background: var(--green);
  border-radius: 50%; animation: pulse 2s infinite;
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.15; margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--green); }
.hero p {
  font-size: 1.18rem; line-height: 1.7;
  color: var(--text-light); max-width: 500px; margin-bottom: 36px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* HERO IMAGE */
.hero-visual { position: relative; animation: slideUp 1s ease-out 0.2s both; }
.hero-image {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 460px;
  margin: 0 auto;
}
.hero-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}
.floating-tag {
  position: absolute; background: var(--white);
  padding: 12px 20px; border-radius: 14px;
  box-shadow: var(--shadow); font-size: 0.85rem; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  animation: floatTag 4s ease-in-out infinite;
}
.floating-tag.t1 { top: -20px; right: -10px; }
.floating-tag.t2 { bottom: 40px; left: -30px; animation-delay: 1s; }

/* TRUST BAR */
.trust-bar {
  background: var(--white); padding: 36px 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.trust-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-wrap: wrap; justify-content: space-around;
  align-items: center; gap: 24px;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  color: var(--text-light); font-size: 0.95rem; font-weight: 500;
}
.trust-item svg { color: var(--green); width: 24px; height: 24px; flex-shrink: 0; }
.trust-item strong { color: var(--text); font-weight: 600; }

/* TAGS ROW */
.tags-row {
  max-width: 1200px; margin: 56px auto 0;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.tag {
  background: var(--green-pale); color: var(--green);
  padding: 10px 22px; border-radius: 50px;
  font-weight: 600; font-size: 0.88rem;
  display: flex; align-items: center; gap: 6px;
  transition: all 0.3s;
}
.tag:hover { background: var(--green); color: white; transform: scale(1.05); }

/* =================
   WELCOME / PHOTO BANNER
   ================= */
.welcome-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 0;
  background: var(--cream); border-radius: 24px;
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.welcome-image-col { position: relative; min-height: 460px; overflow: hidden; }
.welcome-content-col { display: flex; align-items: center; }
.welcome-card { padding: 56px 60px; }
.welcome-card .section-title { margin-bottom: 22px; }
.welcome-card p {
  color: var(--text-light); font-size: 1.05rem;
  line-height: 1.8; margin-bottom: 18px;
}
.welcome-card p.highlight {
  color: var(--text); font-weight: 500; background: var(--green-pale);
  border-left: 4px solid var(--green); padding: 18px 22px;
  border-radius: 0 12px 12px 0; margin-bottom: 22px; font-size: 1rem;
}

.photo-banner { background: var(--cream); padding: 0 32px; }
.photo-banner-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
  background: var(--white); border-radius: 24px;
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.photo-banner-image { position: relative; min-height: 420px; overflow: hidden; }
.photo-banner-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-banner-content { padding: 60px 52px; display: flex; flex-direction: column; justify-content: center; }
.photo-banner-content .section-label { margin-bottom: 14px; }
.photo-banner-content h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.9rem; line-height: 1.3; margin-bottom: 18px;
}
.photo-banner-content p {
  color: var(--text-light); font-size: 1.02rem;
  line-height: 1.7; margin-bottom: 28px;
}
.photo-banner-content .btn-primary { align-self: flex-start; }

/* =================
   SERVICE CARDS
   ================= */
.services-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.service-card {
  background: var(--cream); border-radius: 20px; padding: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative; overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0.04);
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px); box-shadow: 0 24px 48px rgba(26, 92, 42, 0.12);
  border-color: var(--green);
}
.service-card-top { padding: 36px 32px 28px; display: flex; align-items: flex-start; gap: 20px; }
.service-icon {
  width: 64px; height: 64px; min-width: 64px;
  background: var(--green); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s, border-radius 0.4s;
}
.service-card:hover .service-icon { transform: scale(1.08) rotate(-3deg); border-radius: 20px; }
.service-icon svg { width: 30px; height: 30px; color: white; }
.service-card-top h3 { font-family: 'DM Serif Display', serif; font-size: 1.5rem; margin-bottom: 6px; line-height: 1.2; }
.service-card-top .service-tagline { font-size: 0.95rem; color: var(--text-light); line-height: 1.5; }
.service-card-body { padding: 0 32px 32px; flex: 1; display: flex; flex-direction: column; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; flex: 1; }
.service-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem; color: var(--text); line-height: 1.4;
  padding: 12px 14px; background: var(--white); border-radius: 10px;
  transition: background 0.2s;
}
.service-list-icon {
  width: 28px; height: 28px; min-width: 28px;
  background: var(--green-pale); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.service-list-icon svg { width: 15px; height: 15px; color: var(--green); }
.service-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.95rem; font-weight: 600;
  color: var(--green); text-decoration: none;
  padding: 10px 0; transition: gap 0.3s;
}
.service-cta:hover { gap: 12px; }

/* =================
   ANGEHÖRIGE SECTION (Neu!)
   ================= */
.angehoerige-section {
  background: linear-gradient(135deg, var(--warm) 0%, var(--cream) 100%);
  padding: 100px 32px;
}
.angehoerige-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.angehoerige-content .section-label { color: var(--gold); }
.angehoerige-list { list-style: none; margin-top: 28px; }
.angehoerige-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; font-size: 1.02rem; color: var(--text);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.angehoerige-list li:last-child { border-bottom: none; }
.angehoerige-list li svg {
  color: var(--green); width: 24px; height: 24px;
  flex-shrink: 0; margin-top: 2px;
}
.angehoerige-card {
  background: var(--white); border-radius: 24px; padding: 40px 36px;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(0, 0, 0, 0.04);
}
.angehoerige-card-icon {
  width: 56px; height: 56px; background: var(--green-pale);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.angehoerige-card-icon svg { width: 28px; height: 28px; color: var(--green); }
.angehoerige-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.5rem; margin-bottom: 14px; }
.angehoerige-card p { color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }

/* =================
   STEPS / PROCESS
   ================= */
.steps-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px;
}
.step-card {
  background: var(--white); border-radius: 20px; padding: 32px 28px;
  position: relative; transition: all 0.3s; border: 1px solid rgba(0, 0, 0, 0.04);
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step-card-num {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem; color: var(--green-pale);
  line-height: 1; position: absolute; top: 20px; right: 24px;
}
.step-card h4 {
  font-family: 'DM Serif Display', serif; font-size: 1.2rem;
  margin-bottom: 10px; line-height: 1.3; position: relative; z-index: 1;
}
.step-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; position: relative; z-index: 1; }

/* =================
   COST CARDS
   ================= */
.costs-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.cost-card {
  background: var(--cream); border-radius: var(--radius);
  padding: 36px 28px; text-align: center;
  border: 2px solid transparent; transition: all 0.3s; position: relative;
}
.cost-card.featured {
  border-color: var(--green); background: var(--white);
  transform: scale(1.04); box-shadow: var(--shadow-lg);
}
.cost-card.featured::before {
  content: 'Beliebt'; position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%); background: var(--green); color: white;
  padding: 4px 16px; border-radius: 50px; font-size: 0.75rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
}
.cost-card:hover { border-color: var(--green); transform: scale(1.02); }
.cost-card.featured:hover { transform: scale(1.06); }
.cost-region {
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--green); margin-bottom: 8px;
}
.cost-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.3rem; margin-bottom: 20px; }
.cost-price { font-family: 'DM Serif Display', serif; font-size: 2.8rem; color: var(--green); margin-bottom: 4px; }
.cost-price span { font-size: 1rem; color: var(--text-light); }
.cost-detail { font-size: 0.9rem; color: var(--text-light); margin-bottom: 20px; line-height: 1.6; }
.cost-features { list-style: none; text-align: left; margin-top: 20px; }
.cost-features li {
  padding: 10px 0; font-size: 0.92rem; color: var(--text-light);
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.cost-features li:last-child { border: none; }
.cost-check {
  width: 22px; height: 22px; min-width: 22px;
  background: var(--green-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.cost-check svg { width: 12px; height: 12px; color: var(--green); }
.cost-extra {
  margin-top: 18px; padding: 16px 18px;
  background: var(--gold-pale);
  border: 1px dashed var(--gold);
  border-radius: 12px;
  text-align: left;
  display: flex; flex-direction: column; gap: 2px;
}
.cost-extra-label {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--gold);
}
.cost-extra-value {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem; color: var(--text);
}
.cost-extra-hint {
  font-size: 0.78rem; color: var(--text-light);
  font-style: italic;
}

/* =================
   FAQ
   ================= */
.faq-layout {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: flex-start;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border-radius: var(--radius-sm);
  overflow: hidden; border: 1px solid rgba(0, 0, 0, 0.05);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item.active { border-color: var(--green); box-shadow: 0 4px 20px rgba(26, 92, 42, 0.08); }
.faq-question {
  width: 100%; background: none; border: none;
  padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; font-family: 'Outfit', sans-serif;
  font-size: 1.02rem; font-weight: 600; color: var(--text);
  text-align: left; transition: color 0.3s;
}
.faq-item.active .faq-question { color: var(--green); }
.faq-chevron {
  width: 24px; height: 24px; transition: transform 0.3s;
  color: var(--text-light); min-width: 24px;
}
.faq-item.active .faq-chevron { transform: rotate(180deg); color: var(--green); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 0 28px 22px; color: var(--text-light); font-size: 0.98rem; line-height: 1.75; }

.faq-category-tabs {
  display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap;
}
.faq-tab {
  padding: 10px 20px; background: var(--white);
  border: 2px solid rgba(0, 0, 0, 0.06); border-radius: 50px;
  font-family: 'Outfit', sans-serif; font-size: 0.9rem; font-weight: 600;
  color: var(--text-light); cursor: pointer; transition: all 0.25s;
}
.faq-tab:hover { border-color: var(--green); color: var(--green); }
.faq-tab.active { background: var(--green); color: white; border-color: var(--green); }

/* =================
   KONTAKT SECTION
   ================= */
.kontakt-section { background: var(--green); color: var(--white); }
.kontakt-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.kontakt-left .section-label { color: rgba(255, 255, 255, 0.6); }
.kontakt-left .section-title { color: white; }
.kontakt-left .section-title em { color: white; opacity: 0.85; }
.kontakt-left p { color: rgba(255, 255, 255, 0.85); font-size: 1.1rem; line-height: 1.7; max-width: 480px; }
.kontakt-steps { display: flex; flex-direction: column; gap: 22px; margin-top: 40px; }
.step { display: flex; align-items: flex-start; gap: 20px; }
.step-num {
  width: 44px; height: 44px; min-width: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif; font-size: 1.2rem;
}
.step h4 { margin-bottom: 4px; font-size: 1.05rem; }
.step p { font-size: 0.92rem; color: rgba(255, 255, 255, 0.75); line-height: 1.5; }
.kontakt-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px; padding: 48px 40px;
  backdrop-filter: blur(10px); text-align: center;
}
.kontakt-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.6rem; margin-bottom: 12px; }
.kontakt-card > p { color: rgba(255, 255, 255, 0.75); margin-bottom: 32px; font-size: 0.95rem; }
.phone-display { font-family: 'DM Serif Display', serif; font-size: 2.1rem; margin-bottom: 8px; }
.phone-display a { color: white; text-decoration: none; }
.phone-display a:hover { text-decoration: underline; }
.phone-hours { font-size: 0.88rem; color: rgba(255, 255, 255, 0.65); margin-bottom: 28px; }
.kontakt-card .btn-white {
  background: var(--white); color: var(--green);
  padding: 16px 36px; border-radius: 50px; text-decoration: none;
  font-weight: 700; font-size: 1rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s;
}
.kontakt-card .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); }
.kontakt-mail { margin-top: 22px; font-size: 0.95rem; }
.kontakt-mail a { color: rgba(255, 255, 255, 0.9); text-decoration: underline; }

/* =================
   ABOUT FEATURES
   ================= */
.about-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-card-stack { display: flex; flex-direction: column; gap: 16px; }
.about-feature {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 32px; box-shadow: var(--shadow);
  display: flex; align-items: flex-start; gap: 18px;
  transition: transform 0.3s;
}
.about-feature:hover { transform: translateX(8px); }
.about-feature-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: var(--green-pale); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.about-feature-icon svg { width: 24px; height: 24px; color: var(--green); }
.about-feature h4 { font-size: 1.05rem; margin-bottom: 6px; }
.about-feature p { font-size: 0.92rem; color: var(--text-light); line-height: 1.6; }

/* =================
   FORM
   ================= */
.form-section { max-width: 720px; margin: 0 auto; }
.form-card {
  background: var(--white); border-radius: 24px; padding: 48px;
  box-shadow: var(--shadow-lg);
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block; font-weight: 600; font-size: 0.95rem;
  margin-bottom: 8px; color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 14px 18px;
  border: 2px solid rgba(0, 0, 0, 0.08); border-radius: 12px;
  font-family: 'Outfit', sans-serif; font-size: 1rem;
  background: var(--white); transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-helper { font-size: 0.85rem; color: var(--text-muted); margin-top: 6px; }
.form-checkbox-group {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--text-light); line-height: 1.5;
}
.form-checkbox-group input[type="checkbox"] {
  width: 18px; height: 18px; min-width: 18px; margin-top: 2px;
  accent-color: var(--green);
}

/* =================
   CALCULATOR
   ================= */
.calculator-card { background: var(--white); border-radius: 20px; padding: 40px 36px; box-shadow: var(--shadow-lg); }
.calc-step { margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(0, 0, 0, 0.06); }
.calc-step:last-of-type { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.calc-step-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.calc-step-num {
  width: 36px; height: 36px; min-width: 36px;
  background: var(--green); color: white; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif; font-size: 1.1rem;
}
.calc-step-header h4 { font-size: 1.05rem; margin-bottom: 3px; }
.calc-step-header p { font-size: 0.88rem; color: var(--text-light); line-height: 1.4; }
.calc-options { display: flex; flex-wrap: wrap; gap: 10px; }
.calc-option {
  background: var(--cream); border: 2px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px; padding: 12px 22px;
  font-family: 'Outfit', sans-serif; font-size: 0.95rem; font-weight: 600;
  color: var(--text); cursor: pointer; transition: all 0.25s;
}
.calc-option:hover { border-color: var(--green); background: var(--green-pale); }
.calc-option.selected { background: var(--green); color: white; border-color: var(--green); }
.calc-suboption {
  display: none;
  margin-top: 16px;
  padding: 16px 20px;
  background: var(--green-pale);
  border-radius: 12px;
}
.calc-suboption.show { display: block; }
.calc-suboption label {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.calc-suboption-hint {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--text-light);
}
.calc-date-fields {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.calc-select {
  flex: 1 1 140px;
  min-width: 140px;
  max-width: 200px;
  padding: 10px 14px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text);
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
}
.calc-select:focus { border-color: var(--green); }
.calc-result { margin-top: 32px; padding-top: 32px; border-top: 2px solid var(--green-pale); }
.calc-result-inner { text-align: center; }
.calc-result-icon {
  width: 56px; height: 56px; background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.calc-result-inner h3 { font-family: 'DM Serif Display', serif; font-size: 1.5rem; margin-bottom: 20px; }
.calc-result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.calc-result-box { background: var(--green-pale); border-radius: 14px; padding: 24px 20px; }
.calc-result-label {
  display: block; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--green); margin-bottom: 6px;
}
.calc-result-value { display: block; font-family: 'DM Serif Display', serif; font-size: 2.2rem; color: var(--green); }
.calc-result-details { text-align: left; background: var(--cream); border-radius: 12px; padding: 20px 24px; font-size: 0.92rem; color: var(--text-light); line-height: 1.7; }
.calc-result-details p { margin-bottom: 4px; }

/* =================
   FOOTER
   ================= */
footer { background: #2a2a2a; color: rgba(255, 255, 255, 0.65); padding: 60px 32px 30px; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: flex-start; flex-wrap: wrap; gap: 40px;
}
.footer-logo { color: white; max-width: 320px; }
.footer-logo .logo-text { color: white; }
.footer-logo p { margin-top: 12px; font-size: 0.92rem; line-height: 1.6; }
.footer-links h4 {
  color: white; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px;
}
.footer-links a {
  display: block; color: rgba(255, 255, 255, 0.55);
  text-decoration: none; font-size: 0.92rem;
  padding: 5px 0; transition: color 0.2s;
}
.footer-links a:hover { color: white; }
.footer-contact-info { font-size: 0.92rem; line-height: 1.7; }
.footer-contact-info a { color: rgba(255, 255, 255, 0.85); text-decoration: none; display: inline; padding: 0; }
.footer-contact-info a:hover { color: white; text-decoration: underline; }
.footer-bottom {
  max-width: 1200px; margin: 40px auto 0; padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex; justify-content: space-between;
  font-size: 0.85rem; flex-wrap: wrap; gap: 12px;
}
.standorte { display: inline-flex; gap: 8px; flex-wrap: wrap; }
.standort-tag {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
  padding: 4px 14px; border-radius: 50px; font-size: 0.8rem;
}
.standort-tag.aktiv { background: var(--green); color: white; }
/* Legacy-Alias - falls noch .new im HTML steht */
.standort-tag.new { background: rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.55); }

/* =================
   COMPARE TABLE
   ================= */
.compare-table-wrapper { max-width: 900px; margin: 0 auto; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--white); border-radius: 16px;
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.compare-table th, .compare-table td { padding: 18px 24px; text-align: left; font-size: 0.95rem; }
.compare-table thead th {
  background: var(--cream); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--text-light); border-bottom: 2px solid rgba(0, 0, 0, 0.06);
}
.compare-table thead th.col-us {
  background: var(--green); color: white;
  text-align: center; border-bottom: 2px solid var(--green);
}
.compare-badge { font-family: 'DM Serif Display', serif; font-size: 1.1rem; text-transform: none; letter-spacing: 0; font-weight: 400; }
.compare-table thead th.col-them { text-align: center; }
.compare-table tbody tr { border-bottom: 1px solid rgba(0, 0, 0, 0.04); transition: background 0.2s; }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover { background: rgba(26, 92, 42, 0.02); }
.compare-table td.row-label { font-weight: 600; color: var(--text); min-width: 160px; }
.compare-table td.col-us { background: rgba(26, 92, 42, 0.03); text-align: center; color: var(--text); }
.compare-table td.col-them { text-align: center; color: var(--text-light); }
.compare-yes { color: var(--green); font-weight: 700; margin-right: 4px; }
.compare-no { color: var(--red); font-weight: 700; margin-right: 4px; }

/* =================
   DEADLINE / URGENCY
   ================= */
.urgency-banner {
  position: fixed; top: 68px; left: 0; right: 0; z-index: 90;
  background: linear-gradient(90deg, var(--red), #e74c3c);
  color: white; padding: 10px 32px;
  text-align: center; font-size: 0.9rem; font-weight: 500;
  animation: slideDown 0.5s ease-out;
}
.urgency-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap;
}
.urgency-banner a { color: white; font-weight: 700; text-decoration: underline; white-space: nowrap; }
.urgency-banner a:hover { opacity: 0.9; }
.urgency-banner svg { min-width: 22px; }

.deadline-card {
  max-width: 900px; margin: 0 auto;
  background: linear-gradient(135deg, #fef2f2, #fff5f5);
  border: 2px solid #f5c6cb; border-radius: 20px;
  padding: 40px 44px;
  display: flex; align-items: flex-start; gap: 24px;
}
.deadline-icon {
  width: 64px; height: 64px; min-width: 64px;
  background: var(--red); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
}
.deadline-content h3 { font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: var(--red); margin-bottom: 12px; line-height: 1.3; }
.deadline-content p { color: #5a3a3a; font-size: 0.98rem; line-height: 1.7; }

/* =================
   GALLERY
   ================= */
.gallery-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.gallery-item {
  position: relative; border-radius: 20px; overflow: hidden;
  background: var(--cream); min-height: 320px;
}
.gallery-item .img-placeholder { border-radius: 0; min-height: 100%; height: 100%; }
.gallery-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  color: white; font-weight: 600; font-size: 0.95rem;
}

.img-placeholder {
  width: 100%; height: 100%; min-height: 280px;
  background: linear-gradient(135deg, var(--green-pale) 0%, #d4edda 40%, var(--warm) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  color: var(--green); border-radius: 0; transition: background 0.3s;
}
.img-placeholder.tall { min-height: 460px; }
.img-placeholder svg { opacity: 0.35; }
.img-placeholder span { font-size: 0.82rem; font-weight: 600; opacity: 0.5; text-align: center; line-height: 1.4; padding: 0 16px; }
.img-placeholder img { width: 100%; height: 100%; object-fit: cover; display: block; }

.photo-placeholder {
  width: 100%; height: 100%; min-height: 400px;
  background: linear-gradient(135deg, var(--green-pale) 0%, #d4edda 50%, var(--warm) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  color: var(--green);
}
.photo-placeholder svg { opacity: 0.4; }
.photo-placeholder span { font-size: 0.85rem; font-weight: 600; opacity: 0.55; text-align: center; padding: 0 20px; line-height: 1.5; }

/* =================
   WHY US
   ================= */
.why-us-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.why-us-item {
  background: var(--cream); border-radius: 16px;
  padding: 32px 26px; text-align: center;
  transition: all 0.3s; border: 2px solid transparent;
}
.why-us-item:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: var(--shadow); }
.why-us-icon {
  width: 56px; height: 56px; background: var(--green-pale);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.why-us-icon svg { width: 28px; height: 28px; color: var(--green); }
.why-us-item h4 { font-family: 'DM Serif Display', serif; font-size: 1.15rem; margin-bottom: 8px; }
.why-us-item p { font-size: 0.92rem; color: var(--text-light); line-height: 1.6; }

/* Benefit Mini-Cards (Alltagsheld werden, in der Photo-Banner-Card) */
.benefit-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  width: 100%;
}
.benefit-mini-card {
  background: var(--cream);
  border-radius: 14px;
  padding: 20px 18px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: border-color 0.25s, transform 0.25s;
}
.benefit-mini-card:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}
.benefit-mini-card svg {
  width: 22px; height: 22px;
  color: var(--green);
  display: block;
  margin-bottom: 10px;
}
.benefit-mini-card h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--text);
  line-height: 1.2;
}
.benefit-mini-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

/* =================
   PRESSE
   ================= */
.press-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.press-card {
  background: var(--white);
  border-radius: 18px;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s;
  overflow: hidden;
}
.press-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(26, 92, 42, 0.12);
  border-color: rgba(26, 92, 42, 0.18);
}

/* Thumbnail container */
.press-thumb {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--green-pale) 0%, #d4edda 50%, var(--warm) 100%);
  overflow: hidden;
}

/* Placeholder content */
.press-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
}
.press-thumb-placeholder svg {
  width: 40px; height: 40px;
  opacity: 0.35;
  transition: opacity 0.3s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.press-card:hover .press-thumb-placeholder svg {
  opacity: 0.5;
  transform: scale(1.08);
}

/* Card body */
.press-card-body {
  padding: 22px 24px 26px;
  display: flex; flex-direction: column;
  flex: 1;
}
.press-card-meta {
  display: flex; align-items: baseline;
  gap: 10px; flex-wrap: wrap;
  margin-bottom: 8px;
}
.press-source {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem; line-height: 1;
  color: var(--text);
}
.press-date {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted);
}
.press-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem; font-weight: 500;
  line-height: 1.5; color: var(--text-light);
  margin: 0;
}

/* =================
   TESTIMONIALS
   ================= */
.testimonials-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial-card {
  background: var(--white); border-radius: 20px;
  padding: 36px 30px; box-shadow: var(--shadow);
  transition: transform 0.3s; position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-quote-mark {
  font-family: 'DM Serif Display', serif;
  font-size: 4rem; color: var(--green-pale);
  position: absolute; top: 8px; right: 22px; line-height: 1;
}
.testimonial-stars { font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; color: #f5b400; }
.testimonial-text { font-size: 1rem; color: var(--text); line-height: 1.7; font-style: italic; margin-bottom: 22px; position: relative; z-index: 1; }
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.testimonial-avatar {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--green); color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.05rem;
}
.testimonial-author strong { font-size: 0.95rem; }
.testimonial-author span { font-size: 0.82rem; color: var(--text-light); }

/* =================
   ANIMATIONS
   ================= */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-30px); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes floatTag { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

/* =================
   MOBILE MENU
   ================= */
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(250, 248, 244, 0.98); z-index: 99;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.3rem; text-decoration: none;
  color: var(--text); font-weight: 600; transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--green); }
.close-menu {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; font-size: 2rem;
  cursor: pointer; color: var(--text);
}

/* =================
   RESPONSIVE
   ================= */
@media (max-width: 900px) {
  body { font-size: 16px; }
  .page-hero { padding: 130px 20px 60px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .costs-grid { grid-template-columns: repeat(2, 1fr); }
  .cost-card.featured { transform: none; }
  .cost-card.featured:hover { transform: scale(1.02); }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .kontakt-inner { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: block; }
  .footer-inner { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .photo-banner-inner { grid-template-columns: 1fr; }
  .photo-banner-image { min-height: 280px; }
  .photo-banner-content { padding: 36px 28px; }
  .welcome-grid { grid-template-columns: 1fr; }
  .welcome-image-col { min-height: 280px; }
  .welcome-card { padding: 36px 28px; }
  .gallery-grid { grid-template-columns: 1fr; gap: 16px; }
  .gallery-item { min-height: 220px; }
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
  .press-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .angehoerige-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  section { padding: 60px 20px; }
  .nav-inner { padding: 14px 20px; }
  .kontakt-card { padding: 32px 24px; }
  .costs-grid { grid-template-columns: 1fr; }
  .phone-display { font-size: 1.5rem; }
  .compare-table th, .compare-table td { padding: 12px 14px; font-size: 0.85rem; }
  .compare-table td.row-label { min-width: 110px; }
  .deadline-card { flex-direction: column; padding: 28px 24px; }
  .urgency-banner { top: 60px; font-size: 0.82rem; padding: 8px 16px; }
  .calc-options { flex-direction: column; }
  .calc-result-grid { grid-template-columns: 1fr; }
  .calculator-card { padding: 28px 20px; }
  .calc-result-value { font-size: 1.8rem; }
  .why-us-grid { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr; }
  .benefit-mini-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .form-card { padding: 32px 24px; }
  .hero { padding: 100px 20px 60px; min-height: auto; }
  .hero-image { max-width: 360px; }
  .hero-image img { aspect-ratio: 4 / 5; }
}
