
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fbfcfa;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.skip-link { position: fixed; left: 16px; top: -50px; z-index: 999; background: #fff; padding: 12px 16px; border-radius: 10px; box-shadow: var(--shadow); }
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  padding: 12px 0;
  transition: .3s ease;
}
.site-header.scrolled {
  background: rgba(251, 252, 250, .78);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(24, 33, 29, .06);
}
.nav { display:flex; align-items:center; justify-content:space-between; min-height: 54px; }
.brand { display:flex; align-items:center; gap:11px; font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; font-size:18px; font-weight:800; letter-spacing:-.03em; }
.brand img { width: 42px; height: 42px; }
.nav-links { display:flex; align-items:center; gap: 31px; font-size: 14px; font-weight: 600; }
.nav-links > a:not(.nav-cta) { position:relative; color:#445049; }
.nav-links > a:not(.nav-cta)::after { content:""; position:absolute; height:1.5px; left:0; right:100%; bottom:-7px; background:var(--green); transition:.25s; }
.nav-links > a:hover::after { right:0; }
.nav-cta { padding: 12px 18px; border-radius:999px; color:#fff; background:var(--ink); transition:.25s; }
.nav-cta:hover { transform:translateY(-2px); background:var(--green-dark); }
.menu-button { display:none; width:44px; height:44px; border:0; background:transparent; padding:10px; }
.menu-button span:not(.sr-only) { display:block; height:2px; width:23px; margin:5px auto; background:var(--ink); transition:.25s; }

.hero {
  min-height: 100vh;
  padding: 260px 0 76px;
  position:relative;
  overflow:hidden;
  background: linear-gradient(180deg, rgba(15, 27, 43, 0.45) 0%, rgba(23, 59, 109, 0.4) 100%), url('assets/hero-bg.jpg') center/cover no-repeat;
  color: #fff;
}
.hero-inner { position:relative; z-index:2; text-align:center; }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 27, 43, 0.2) 0%, rgba(23, 59, 109, 0.12) 100%);
  z-index: 1;
}
.hero-glow { position:absolute; border-radius:50%; filter:blur(4px); opacity:.75; }
.hero-glow-one { width:520px; height:520px; background:radial-gradient(circle,rgba(175,215,187,.62),rgba(175,215,187,0) 70%); left:-180px; top:100px; }
.hero-glow-two { width:570px; height:570px; background:radial-gradient(circle,rgba(239,219,179,.45),rgba(239,219,179,0) 70%); right:-210px; top:45px; }
.eyebrow { font-size:13px; font-weight:800; letter-spacing:.14em; text-transform:uppercase; color:#8fb1dc; margin:0 0 17px; }
.hero h1, .section-heading h2, .split-copy h2, .faq-intro h2, .contact-card h2 {
  font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing:-.055em;
  line-height:.98;
  margin:0;
}
.hero h1 { font-size:clamp(52px,8vw,104px); font-weight:800; max-width:1040px; margin-inline:auto; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero h1 span { color:#8fb1dc; }
.hero-copy { max-width:720px; margin:28px auto 0; color:rgba(255,255,255,0.9); font-size:clamp(18px,2vw,22px); line-height:1.55; }
.hero-actions { display:flex; justify-content:center; gap:12px; margin-top:32px; flex-wrap:wrap; }
.button { display:inline-flex; align-items:center; justify-content:center; min-height:52px; padding:0 23px; border-radius:999px; font-weight:700; font-size:15px; transition:.25s; border:1px solid transparent; }
.button:hover { transform:translateY(-2px); }
.button-primary { color:#fff; background:var(--green); box-shadow:0 12px 30px rgba(47,116,85,.24); }
.button-primary:hover { background:var(--green-dark); }
.button-secondary { background:rgba(255,255,255,.25); border-color:rgba(255,255,255,0.5); backdrop-filter:blur(10px); color: #fff; }
.button-secondary:hover { background:rgba(255,255,255,0.4); box-shadow:0 8px 25px rgba(20,35,27,.15); }
.hero-card { margin:62px auto 0; max-width:1040px; border-radius:var(--radius-xl); overflow:hidden; background:rgba(255,255,255,0.15); border:1px solid rgba(255,255,255,0.25); box-shadow:0 25px 50px rgba(0,0,0,0.25); backdrop-filter:blur(20px); }
.hero-badges { display:grid; grid-template-columns:repeat(3,1fr); background:rgba(255,255,255,0.95); }
.hero-badges span { padding:23px 16px; color:var(--muted); font-size:14px; border-right:1px solid var(--line); }
.hero-badges span:last-child { border:0; }
.hero-badges b { color:var(--green); font-size:18px; margin-right:6px; }

.trust-strip { background:#fff; border-bottom:1px solid var(--line); }
.trust-grid { display:grid; grid-template-columns:repeat(4,1fr); }
.trust-grid > div { display:flex; align-items:center; gap:13px; padding:25px 20px; border-right:1px solid var(--line); }
.trust-grid > div:last-child { border:0; }
.trust-icon { width:38px; height:38px; flex:0 0 38px; display:grid; place-items:center; background:var(--green-soft); color:var(--green); border-radius:50%; font-weight:800; }
.trust-grid p { margin:0; color:var(--muted); font-size:12px; line-height:1.55; }
.trust-grid b { color:var(--ink); font-size:14px; }

.section { padding:130px 0; }
.section-heading { max-width:720px; margin-bottom:54px; }
.section-heading.centered { text-align:center; margin:0 auto 58px; }
.section-heading h2, .split-copy h2, .faq-intro h2 { font-size:clamp(42px,6vw,72px); font-weight:800; }
.section-heading > p:last-child, .split-copy > p, .faq-intro > p { color:var(--muted); font-size:18px; line-height:1.65; }
.service-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.service-card { min-height:365px; padding:34px; border-radius:var(--radius-lg); border:1px solid var(--line); background:#fff; position:relative; overflow:hidden; display:flex; flex-direction:column; justify-content:flex-end; box-shadow:0 15px 45px rgba(36,52,43,.05); }
.service-card-large { grid-column:span 2; min-height:520px; justify-content:flex-start; }
.service-card-large > div:nth-child(2) { max-width:52%; }
.service-icon { position:absolute; top:30px; right:32px; width:50px; height:50px; display:grid; place-items:center; border-radius:16px; background:var(--green-soft); color:var(--green); font-size:24px; }
.card-label { color:var(--green); text-transform:uppercase; letter-spacing:.13em; font-size:12px; font-weight:800; margin:0 0 13px; }
.service-card h3 { font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; letter-spacing:-.04em; font-size:clamp(27px,3vw,40px); line-height:1.08; margin:0 0 16px; }
.service-card p:last-child { color:var(--muted); line-height:1.65; max-width:570px; margin-bottom:0; }
.dark-card { background:#18211d; color:#fff; }
.dark-card .service-icon { background:rgba(255,255,255,.12); color:#fff; }
.dark-card .card-label,.dark-card p:last-child { color:#aebbb4; }
.green-card { background:#dfece2; border-color:transparent; }
.mini-room { position:absolute; right:0; bottom:0; width:48%; height:100%; background:linear-gradient(150deg,#dfe8dd,#f3e5cf); overflow:hidden; }
.mini-room::before { content:""; position:absolute; left:0; right:0; bottom:0; height:35%; background:#c8b399; clip-path:polygon(0 34%,100% 0,100% 100%,0 100%); }
.mini-table { position:absolute; left:27%; bottom:27%; width:44%; height:20px; border-radius:50%; background:#826c56; z-index:3; }
.mini-table::after { content:""; position:absolute; width:10px; height:95px; left:calc(50% - 5px); top:10px; background:#826c56; }
.mini-vase { position:absolute; left:44%; bottom:33%; width:35px; height:52px; background:#f7f2e8; border-radius:45% 45% 35% 35%; z-index:4; }
.mini-vase::before { content:""; position:absolute; width:5px; height:70px; left:15px; bottom:42px; background:#477255; transform:rotate(-12deg); }
.mini-vase::after { content:""; position:absolute; width:45px; height:25px; left:8px; bottom:83px; background:#6a986f; border-radius:100% 0 100% 0; transform:rotate(-30deg); }
.mini-chair { position:absolute; right:9%; bottom:13%; width:115px; height:145px; border:13px solid #c98a68; border-radius:58px 58px 15px 15px; z-index:2; }
.mini-light { position:absolute; width:110px; height:110px; top:14%; left:12%; border-radius:50%; background:rgba(255,248,209,.85); box-shadow:0 0 55px rgba(255,241,175,.9); }

.soft-section { background:var(--cream); }
.split-layout { display:grid; grid-template-columns:.9fr 1.1fr; gap:70px; align-items:center; }
.check-list { list-style:none; padding:0; margin:31px 0 18px; display:grid; gap:17px; }
.check-list li { display:flex; gap:12px; align-items:center; font-weight:600; }
.check-list span { width:26px; height:26px; display:grid; place-items:center; border-radius:50%; color:#fff; background:var(--green); font-size:13px; }
.split-copy small { color:var(--muted); line-height:1.5; }
.benefit-panel { border-radius:var(--radius-xl); overflow:hidden; box-shadow:var(--shadow); background:#fff; }
.benefit-top { min-height:390px; padding:48px; display:flex; flex-direction:column; justify-content:space-between; background:linear-gradient(145deg,#1d533c,#2f7455); color:#fff; }
.big-number { font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; font-size:clamp(110px,15vw,190px); line-height:.8; font-weight:800; letter-spacing:-.08em; }
.big-number span { font-size:.32em; vertical-align:top; margin-left:4px; }
.benefit-top p { max-width:470px; font-size:18px; line-height:1.6; color:#dcebe1; }
.benefit-bottom { display:grid; grid-template-columns:1fr 1fr; }
.benefit-bottom > div { padding:34px; min-height:245px; border-right:1px solid var(--line); }
.benefit-bottom > div:last-child { border:0; }
.benefit-symbol { width:44px; height:44px; display:grid; place-items:center; border-radius:14px; background:var(--green-soft); color:var(--green); font-size:23px; font-weight:800; }
.benefit-bottom h3 { margin:24px 0 8px; font-size:21px; }
.benefit-bottom p { color:var(--muted); line-height:1.55; margin:0; }

.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; align-items:stretch; }
.price-card { border:1px solid var(--line); border-radius:var(--radius-lg); padding:31px; background:#fff; display:flex; flex-direction:column; position:relative; min-height:610px; }
.price-card.featured { background:var(--ink); color:#fff; transform:translateY(-12px); box-shadow:0 30px 70px rgba(24,33,29,.18); }
.popular-badge { position:absolute; right:22px; top:22px; padding:7px 11px; border-radius:999px; background:#dbeadb; color:var(--green-dark); font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:.08em; }
.price-kicker { color:var(--green); font-size:12px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
.featured .price-kicker { color:#9fd0ae; }
.price-card h3 { margin:12px 0 20px; font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; letter-spacing:-.04em; font-size:32px; }
.price { margin:0; color:var(--muted); }
.price span { color:var(--ink); font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; font-weight:800; font-size:38px; letter-spacing:-.05em; }
.featured .price span { color:#fff; }
.featured .price,.featured .price-note,.featured li { color:#bac4be; }
.price-note { min-height:54px; color:var(--muted); line-height:1.5; }
.price-card ul { list-style:none; padding:25px 0; margin:25px 0 auto; border-top:1px solid var(--line); display:grid; gap:16px; }
.featured ul { border-color:rgba(255,255,255,.12); }
.price-card li { color:#4e5b54; padding-left:26px; position:relative; }
.price-card li::before { content:"✓"; position:absolute; left:0; color:var(--green); font-weight:800; }
.featured li::before { color:#9fd0ae; }
.full-button { width:100%; }
.price-card .button-secondary { background:transparent; border-color:rgba(23,59,109,.35); color:var(--ink); backdrop-filter:none; }
.price-card .button-secondary:hover { background:var(--green-soft); box-shadow:none; }
.price-card small { margin-top:15px; color:var(--muted); line-height:1.45; }
.pricing-footnote { margin:28px auto 0; text-align:center; max-width:830px; color:var(--muted); font-size:13px; line-height:1.6; }

.numbers-section { padding:95px 0; background:var(--ink); color:#fff; }
.numbers-grid { display:grid; grid-template-columns:repeat(4,1fr); }
.number-item { text-align:center; border-right:1px solid rgba(255,255,255,.13); padding:20px; }
.number-item:last-child { border:0; }
.number-item strong,.number-item > span { font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; font-size:clamp(48px,6vw,76px); letter-spacing:-.06em; }
.number-item > span { color:#8bc09a; }
.number-item p { color:#aebbb4; margin:9px 0 0; }

.faq-section { background:#fff; }
.faq-layout { display:grid; grid-template-columns:.7fr 1.3fr; gap:80px; align-items:start; }
.faq-intro { position:sticky; top:120px; }
.text-link { color:var(--green); font-weight:700; display:inline-block; margin-top:10px; }
.accordion details { border-bottom:1px solid var(--line); }
.accordion summary { cursor:pointer; list-style:none; padding:25px 0; display:flex; justify-content:space-between; gap:20px; font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; font-weight:700; font-size:20px; }
.accordion summary::-webkit-details-marker { display:none; }
.accordion summary span { font-size:26px; transition:.25s; color:var(--green); }
.accordion details[open] summary span { transform:rotate(45deg); }
.accordion details p { margin:-4px 50px 26px 0; color:var(--muted); line-height:1.7; }

.contact-section { padding:0 0 55px; }
.contact-card { padding:65px; border-radius:var(--radius-xl); background:linear-gradient(135deg,#194b36,#2f7455); color:#fff; display:grid; grid-template-columns:1.25fr .75fr; gap:35px; align-items:center; position:relative; overflow:hidden; }
.contact-card::after { content:""; position:absolute; width:420px; height:420px; border-radius:50%; right:-130px; bottom:-230px; background:rgba(255,255,255,.08); }
.eyebrow.light { color:#b8ddc3; }
.contact-card h2 { font-size:clamp(42px,6vw,70px); }
.contact-card p { max-width:690px; color:#d8e9dd; font-size:18px; line-height:1.6; }
.contact-actions { display:flex; flex-direction:column; gap:11px; position:relative; z-index:2; }
.button-white { background:#fff; color:var(--green-dark); }
.button-outline-light { border-color:rgba(255,255,255,.35); color:#fff; }
.button-outline-light:hover { background:rgba(255,255,255,.1); }
.contact-details { grid-column:1/-1; display:flex; gap:25px; padding-top:24px; border-top:1px solid rgba(255,255,255,.18); color:#c6ddce; font-size:14px; position:relative; z-index:2; }

.footer { padding:70px 0 28px; background:#f1f2ee; }
.footer-grid { display:grid; grid-template-columns:1.5fr repeat(3,1fr); gap:45px; }
.footer-brand { margin-bottom:18px; }
.footer-grid p,.footer-grid span,.footer-grid a { color:var(--muted); font-size:14px; line-height:1.7; }
.footer-grid h3 { font-size:14px; margin:4px 0 14px; }
.footer-grid > div:not(:first-child) { display:flex; flex-direction:column; align-items:flex-start; }
.footer-grid a:hover { color:var(--green); }
.footer-bottom { display:flex; justify-content:space-between; padding-top:30px; margin-top:50px; border-top:1px solid var(--line); color:var(--muted); font-size:12px; }

.reveal { opacity:0; transform:translateY(24px); transition:opacity .75s ease,transform .75s ease; }
.reveal.visible { opacity:1; transform:none; }

@media (max-width: 940px) {
  .menu-button { display:block; z-index:102; }
  .nav-links { position:fixed; inset:0; background:rgba(250,251,248,.97); backdrop-filter:blur(25px); flex-direction:column; justify-content:center; font-size:24px; gap:25px; opacity:0; visibility:hidden; transform:translateY(-20px); transition:.3s; }
  .nav-links.open { opacity:1; visibility:visible; transform:none; }
  .menu-button.active span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
  .menu-button.active span:nth-child(2) { opacity:0; }
  .menu-button.active span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
  .nav-cta { margin-top:10px; font-size:16px; }
  .trust-grid { grid-template-columns:repeat(2,1fr); }
  .trust-grid > div:nth-child(2) { border-right:0; }
  .split-layout,.faq-layout { grid-template-columns:1fr; gap:48px; }
  .faq-intro { position:static; }
  .pricing-grid { grid-template-columns:1fr; max-width:650px; margin:auto; }
  .price-card,.price-card.featured { min-height:auto; transform:none; }
  .numbers-grid { grid-template-columns:repeat(2,1fr); }
  .number-item:nth-child(2) { border-right:0; }
  .number-item:nth-child(-n+2) { border-bottom:1px solid rgba(255,255,255,.13); }
  .contact-card { grid-template-columns:1fr; }
  .contact-details { grid-column:auto; flex-wrap:wrap; }
  .footer-grid { grid-template-columns:1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column:2; }
}
@media (max-width: 700px) {
  .container { width:min(100% - 28px,1180px); }
  .site-header { padding:8px 0; }
  .brand span { font-size:16px; }
  .hero { padding-top:170px; min-height:auto; }
  .hero-copy { font-size:17px; }
  .hero-actions { flex-direction:column; align-items:stretch; max-width:360px; margin-inline:auto; margin-top:26px; }
  .hero-badges { grid-template-columns:1fr; }
  .hero-badges span { border-right:0; border-bottom:1px solid var(--line); }
  .trust-grid { grid-template-columns:1fr; }
  .trust-grid > div { border-right:0; border-bottom:1px solid var(--line); }
  .section { padding:90px 0; }
  .service-grid { grid-template-columns:1fr; }
  .service-card-large { grid-column:auto; min-height:600px; }
  .service-card-large > div:nth-child(2) { max-width:100%; }
  .mini-room { width:100%; height:46%; }
  .benefit-top { min-height:310px; padding:32px; }
  .benefit-bottom { grid-template-columns:1fr; }
  .benefit-bottom > div { border-right:0; border-bottom:1px solid var(--line); }
  .numbers-grid { grid-template-columns:1fr; }
  .number-item { border-right:0; border-bottom:1px solid rgba(255,255,255,.13); }
  .contact-card { padding:40px 25px; border-radius:28px; }
  .contact-actions { align-items:stretch; }
  .contact-details { flex-direction:column; gap:8px; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-grid > div:first-child { grid-column:1/-1; }
  .footer-grid > div:last-child { grid-column:auto; }
  .footer-bottom { flex-direction:column; gap:7px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *,*::before,*::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
  .reveal { opacity:1; transform:none; }
}

/* ===== Dunkelblaues Marken-Farbsystem ===== */
:root {
  --green: #173b6d;
  --green-dark: #0b2548;
  --green-soft: #e7eef8;
  --cream: #f4f6fa;
  --ink: #101b2b;
  --muted: #667388;
  --line: rgba(16, 27, 43, .12);
}
/* Hero background with image - keep these styles */
.hero {
  background: linear-gradient(180deg, rgba(15, 27, 43, 0.45) 0%, rgba(23, 59, 109, 0.4) 100%), url('assets/hero-bg.jpg') center/cover no-repeat;
  color: #fff;
}
.hero-glow-one {
  background: radial-gradient(circle, rgba(90,137,194,.32), rgba(90,137,194,0) 70%);
}
.hero-glow-two {
  background: radial-gradient(circle, rgba(185,204,229,.38), rgba(185,204,229,0) 70%);
}
.dark-card { background: #0f2748; }
.blue-soft-card { background: #e5edf7; border-color: transparent; }
.benefit-top, .contact-card {
  background: linear-gradient(145deg, #0b2548, #173b6d);
}
.numbers-section { background: #0d203c; }
.number-item > span { color: #8fb1dc; }
.featured { color: inherit; }

/* Preise vollständig weiß */
.price-card.premium-card {
  background: #fff;
  color: var(--ink);
  transform: none;
  box-shadow: 0 22px 60px rgba(23,59,109,.14);
  border: 2px solid rgba(23,59,109,.32);
}
.premium-card .price-kicker,
.premium-card .price,
.premium-card .price-note,
.premium-card li {
  color: var(--muted);
}
.premium-card .price span { color: var(--ink); }
.premium-card ul { border-color: var(--line); }
.premium-card li::before { color: var(--green); }
.friends-card { position: relative; }
.tree-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: #173b6d;
  font-size: 24px;
  box-shadow: 0 10px 24px rgba(23,59,109,.18);
}
.price-card.featured { transform:none; }

/* ===== Kalender ===== */
.booking-section { background: #f4f6fa; }
.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, .65fr);
  gap: 22px;
  align-items: stretch;
}
.calendar-card,
.appointment-panel,
.service-area-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 55px rgba(23,59,109,.08);
}
.calendar-card { padding: 30px; }
.calendar-toolbar,
.panel-head,
.calendar-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.calendar-toolbar h3,
.panel-head h3 {
  margin: 5px 0 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 30px;
  letter-spacing: -.04em;
}
.calendar-controls { display: flex; gap: 8px; }
.icon-button {
  min-width: 42px;
  height: 42px;
  padding: 0 13px;
  border-radius: 13px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}
.icon-button:hover { background: var(--green-soft); color: var(--green); }
.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin: 24px 0;
  color: var(--muted);
  font-size: 13px;
}
.calendar-legend span { display: inline-flex; align-items: center; gap: 7px; }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; }
.legend-dot.appointment { background: var(--green); }
.legend-dot.available { background: #fff; border: 2px solid #8ca3c1; }
.legend-dot.blocked { background: #d9dfe7; }
.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.calendar-weekdays {
  margin-bottom: 8px;
  color: #7b8798;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}
.calendar-day {
  position: relative;
  aspect-ratio: 1.2 / 1;
  min-height: 62px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
  transition: .2s ease;
}
.calendar-day:hover:not(.blocked):not(.outside) {
  transform: translateY(-2px);
  border-color: var(--green);
  box-shadow: 0 8px 22px rgba(23,59,109,.11);
}
.calendar-day.outside { opacity: .35; }
.calendar-day.blocked {
  color: #9aa3b1;
  background: #f0f2f5;
  cursor: not-allowed;
  text-decoration: line-through;
}
.calendar-day.appointment {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}
.calendar-day.appointment::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  transform: translateX(-50%);
}
.calendar-day.today { outline: 3px solid rgba(23,59,109,.18); }
.calendar-day.selected {
  border-color: var(--green);
  box-shadow: inset 0 0 0 2px var(--green);
}
.calendar-footer {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.calendar-footer p {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.appointment-panel { padding: 28px; display: flex; flex-direction: column; }
.appointment-count {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 800;
}
.appointment-list { display: grid; gap: 14px; margin-top: 25px; }
.appointment-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.appointment-item time {
  min-height: 68px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #fff;
}
.appointment-item time b { font-size: 24px; line-height: 1; }
.appointment-item time span { margin-top: 4px; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.appointment-item h4 { margin: 2px 0 6px; font-size: 15px; }
.appointment-item p { margin: 0 0 9px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.status-badge {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}
.status-badge.confirmed { color: #0b5c3e; background: #e1f3ea; }
.status-badge.requested { color: #735308; background: #fff3cd; }
.login-note {
  margin-top: auto;
  padding: 17px;
  display: flex;
  gap: 11px;
  border-radius: 17px;
  background: #f4f6fa;
  color: var(--muted);
}
.login-note p { margin: 0; font-size: 12px; line-height: 1.5; }

.service-area-card {
  margin-top: 22px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  overflow: hidden;
}
.service-area-copy { padding: 48px; align-self: center; }
.service-area-copy h2 {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1;
  letter-spacing: -.055em;
}
.service-area-copy > p:not(.eyebrow) { color: var(--muted); font-size: 17px; line-height: 1.65; }
.area-facts { display: grid; gap: 12px; margin: 26px 0; color: var(--muted); }
.area-facts span { display: flex; align-items: center; gap: 10px; }
.area-facts b { color: var(--green); }
.radius-map { min-height: 470px; background: #edf2f7; }
.radius-map svg { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ===== Buchungsdialog ===== */
.booking-modal {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.booking-modal.open { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7,17,31,.68);
  backdrop-filter: blur(9px);
}
.booking-dialog {
  position: relative;
  z-index: 1;
  width: min(850px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 36px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 38px 110px rgba(0,0,0,.3);
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #eef2f7;
  color: var(--ink);
  font-size: 27px;
  cursor: pointer;
}
.booking-dialog .button-secondary { background:transparent; border-color:rgba(23,59,109,.35); color:var(--ink); backdrop-filter:none; }
.booking-dialog .button-secondary:hover { background:var(--green-soft); box-shadow:none; }
.modal-heading { max-width: 650px; margin-bottom: 28px; }
.modal-heading h2 {
  margin: 0 0 12px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: clamp(34px, 5vw, 55px);
  line-height: 1;
  letter-spacing: -.05em;
}
.modal-heading > p:last-child { color: var(--muted); line-height: 1.6; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid > label,
.task-field {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}
.full-field { grid-column: 1 / -1; }
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid #cfd7e2;
  border-radius: 14px;
  padding: 14px 15px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  outline: none;
}
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(23,59,109,.10);
}
.task-field {
  margin: 0;
  padding: 18px;
  border: 1px solid #cfd7e2;
  border-radius: 16px;
}
.task-field legend { padding: 0 7px; }
.check-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.check-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.check-options input,
.consent-field input { accent-color: var(--green); }
.consent-field {
  display: flex;
  gap: 10px;
  margin: 20px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.form-actions { display: flex; justify-content: flex-end; gap: 10px; }
.form-success {
  margin-top: 18px;
  padding: 15px;
  border-radius: 14px;
  color: #0b5c3e;
  background: #e1f3ea;
  line-height: 1.55;
}
body.modal-open { overflow: hidden; }

@media (max-width: 940px) {
  .booking-layout, .service-area-card { grid-template-columns: 1fr; }
  .radius-map { min-height: 390px; }
}
@media (max-width: 700px) {
  .calendar-card, .appointment-panel { padding: 20px; }
  .calendar-toolbar, .calendar-footer { align-items: flex-start; flex-direction: column; }
  .calendar-controls { width: 100%; }
  .calendar-controls .icon-button:nth-child(2) { flex: 1; }
  .calendar-day { min-height: 45px; border-radius: 10px; font-size: 12px; }
  .calendar-weekdays, .calendar-grid { gap: 5px; }
  .calendar-legend { gap: 10px; }
  .service-area-copy { padding: 32px 23px; }
  .radius-map { min-height: 320px; }
  .booking-dialog { padding: 28px 19px; border-radius: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .full-field { grid-column: auto; }
  .check-options { grid-template-columns: 1fr 1fr; }
  .form-actions { flex-direction: column-reverse; }
  .form-actions .button { width: 100%; }
}


/* Richtige Baum-Icons und Nachhaltigkeitszähler */
.tree-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}
.tree-counter-section {
  padding: 0 0 34px;
  background: #f1f2ee;
}
.tree-counter-card {
  min-height: 190px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 34px 40px;
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(135deg, #0b2548, #173b6d);
  box-shadow: 0 22px 60px rgba(23,59,109,.16);
  overflow: hidden;
  position: relative;
}
.tree-counter-card::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  right: -70px;
  bottom: -160px;
  background: rgba(255,255,255,.07);
}
.tree-counter-icon {
  flex: 0 0 92px;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: #173b6d;
  background: #fff;
  position: relative;
  z-index: 1;
}
.tree-counter-icon svg {
  width: 58px;
  height: 58px;
}
.tree-counter-copy {
  position: relative;
  z-index: 1;
}
.tree-counter-copy .eyebrow {
  color: #b7cce8;
  margin-bottom: 10px;
}
.tree-counter-copy h2 {
  margin: 0 0 10px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -.05em;
}
.tree-counter-copy p:last-child {
  margin: 0;
  max-width: 720px;
  color: #dbe5f2;
  line-height: 1.6;
}
@media (max-width: 700px) {
  .tree-counter-card {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 24px;
  }
  .tree-counter-icon {
    width: 76px;
    height: 76px;
    flex-basis: 76px;
  }
  .tree-counter-icon svg {
    width: 46px;
    height: 46px;
  }
}


/* Zusätzliche Buchungsbereiche */
.section-inline-cta,.faq-booking-box,.calendar-launch-card{margin-top:42px;padding:28px 32px;border:1px solid var(--line);border-radius:24px;background:#fff;box-shadow:0 16px 45px rgba(23,59,109,.08);display:flex;align-items:center;justify-content:space-between;gap:24px}.section-inline-cta h3,.faq-booking-box h3,.calendar-launch-card h2{margin:0;font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif,sans-serif;letter-spacing:-.04em}.section-inline-cta h3,.faq-booking-box h3{font-size:clamp(24px,3vw,36px)}.faq-booking-box{grid-column:1/-1;margin-top:12px;background:#f4f6fa}.faq-booking-box p:last-child,.calendar-launch-card p:last-child{color:var(--muted);line-height:1.6;margin-bottom:0}.calendar-launch-section{background:#f4f6fa;padding-bottom:0}.calendar-launch-card h2{font-size:clamp(34px,5vw,58px);line-height:1}.calendar-collapsible{margin-top:36px;animation:calendarReveal .35s ease}.calendar-collapsible>.container{padding-bottom:130px}@keyframes calendarReveal{from{opacity:0;transform:translateY(16px)}to{opacity:1;transform:none}}
/* Cookie-Popup */
.cookie-popup{position:fixed;z-index:900;inset:0;display:flex;align-items:flex-end;justify-content:center;padding:20px;background:rgba(7,17,31,.42);backdrop-filter:blur(8px)}.cookie-popup[hidden]{display:none}.cookie-card{width:min(980px,100%);padding:24px;display:grid;grid-template-columns:auto 1fr auto;gap:20px;align-items:center;border-radius:26px;background:#fff;box-shadow:0 30px 100px rgba(0,0,0,.28);position:relative}.cookie-icon{width:68px;height:68px;display:grid;place-items:center;border-radius:20px;background:var(--green-soft);font-size:34px}.cookie-copy h2{margin:0 0 8px;font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif,sans-serif;font-size:28px;letter-spacing:-.04em}.cookie-copy p{margin:0 0 8px;color:var(--muted);line-height:1.55}.cookie-copy a{color:var(--green);font-weight:700;font-size:13px}.cookie-actions{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end}.cookie-close{position:absolute;top:12px;right:14px;width:34px;height:34px;border:0;border-radius:50%;background:#eef2f7;font-size:22px;cursor:pointer}
.cookie-card .button-secondary{background:transparent;border-color:rgba(23,59,109,.35);color:var(--ink);backdrop-filter:none}
.cookie-card .button-secondary:hover{background:var(--green-soft);box-shadow:none}@media(max-width:800px){.section-inline-cta,.faq-booking-box,.calendar-launch-card{align-items:flex-start;flex-direction:column}.section-inline-cta .button,.faq-booking-box .button,.calendar-launch-card .button{width:100%}.cookie-card{grid-template-columns:1fr;padding:22px}.cookie-icon{width:56px;height:56px}.cookie-actions{flex-direction:column-reverse}.cookie-actions .button{width:100%}}


/* ===== Heimfee Chatbot ===== */
.heimfee-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 850;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
.chat-launcher {
  width: 72px;
  height: 72px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, #173b6d, #0b2548);
  box-shadow: 0 18px 46px rgba(11,37,72,.35);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.chat-launcher:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 24px 58px rgba(11,37,72,.42);
}
.chat-launcher img {
  position: absolute;
  width: 69px;
  height: 82px;
  object-fit: contain;
  left: 2px;
  bottom: -13px;
  filter: drop-shadow(0 5px 7px rgba(0,0,0,.2));
}
.chat-launcher-sparkle {
  position: absolute;
  z-index: 2;
  top: 7px;
  left: 10px;
  color: #fff1a8;
  font-size: 17px;
  animation: chatSparkle 1.7s ease-in-out infinite;
}
.chat-notification {
  position: absolute;
  z-index: 3;
  top: -2px;
  right: -2px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 3px solid #fff;
  background: #ef5350;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}
.chat-window {
  position: absolute;
  right: 0;
  bottom: 88px;
  width: min(390px, calc(100vw - 28px));
  height: min(620px, calc(100vh - 130px));
  display: none;
  grid-template-rows: auto 1fr auto auto auto;
  overflow: hidden;
  border: 1px solid rgba(16,27,43,.13);
  border-radius: 27px;
  background: #fff;
  box-shadow: 0 32px 90px rgba(7,17,31,.27);
  transform-origin: bottom right;
}
.chat-window.open {
  display: grid;
  animation: chatOpen .28s ease both;
}
.chat-header {
  min-height: 78px;
  padding: 14px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  background: linear-gradient(135deg, #0b2548, #173b6d);
}
.chat-avatar {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.55);
  border-radius: 50%;
  background: #eef3f9;
}
.chat-avatar img {
  width: 47px;
  height: 58px;
  object-fit: contain;
  transform: translateY(5px);
}
.online-dot {
  position: absolute;
  right: 1px;
  bottom: 2px;
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #49c477;
}
.chat-header h2 {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  letter-spacing: -.02em;
}
.chat-header p {
  margin: 3px 0 0;
  color: #d5e1f0;
  font-size: 11px;
}
.chat-close {
  margin-left: auto;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.11);
  font-size: 25px;
  cursor: pointer;
}
.chat-messages {
  min-height: 0;
  padding: 18px 16px;
  overflow-y: auto;
  background: linear-gradient(180deg, #f7f9fc, #fff);
}
.chat-message {
  display: flex;
  flex-direction: column;
  margin-bottom: 13px;
}
.chat-message time {
  margin-top: 4px;
  color: #929cac;
  font-size: 9px;
}
.message-bubble {
  max-width: 86%;
  padding: 12px 14px;
  border-radius: 17px;
  font-size: 13px;
  line-height: 1.55;
  white-space: pre-line;
}
.bot-message { align-items: flex-start; }
.bot-message .message-bubble {
  border-bottom-left-radius: 5px;
  color: #273448;
  background: #e9eff7;
}
.user-message { align-items: flex-end; }
.user-message .message-bubble {
  border-bottom-right-radius: 5px;
  color: #fff;
  background: #173b6d;
}
.chat-action {
  display: inline-flex;
  margin-top: 9px;
  padding: 8px 11px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #173b6d;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}
.quick-questions {
  padding: 10px 12px 7px;
  display: flex;
  gap: 7px;
  overflow-x: auto;
  border-top: 1px solid var(--line);
  background: #fff;
}
.quick-questions button {
  flex: 0 0 auto;
  padding: 8px 11px;
  border: 1px solid #cfd8e5;
  border-radius: 999px;
  color: #173b6d;
  background: #fff;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}
.quick-questions button:hover { background: #e7eef8; }
.chat-input-row {
  padding: 9px 11px;
  display: grid;
  grid-template-columns: 1fr 42px;
  gap: 8px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.chat-input-row input {
  min-width: 0;
  height: 42px;
  padding: 0 13px;
  border: 1px solid #ccd5e2;
  border-radius: 13px;
  outline: none;
  font: inherit;
  font-size: 13px;
}
.chat-input-row input:focus {
  border-color: #173b6d;
  box-shadow: 0 0 0 3px rgba(23,59,109,.10);
}
.chat-input-row button {
  border: 0;
  border-radius: 13px;
  color: #fff;
  background: #173b6d;
  font-size: 17px;
  cursor: pointer;
}
.chat-disclaimer {
  margin: 0;
  padding: 0 12px 10px;
  color: #8a95a5;
  background: #fff;
  text-align: center;
  font-size: 9px;
}
.typing-bubble {
  display: inline-flex;
  gap: 4px;
  padding: 13px 16px;
  border-radius: 17px 17px 17px 5px;
  background: #e9eff7;
}
.typing-bubble i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #65758c;
  animation: typingDot 1s ease-in-out infinite;
}
.typing-bubble i:nth-child(2) { animation-delay: .15s; }
.typing-bubble i:nth-child(3) { animation-delay: .3s; }
@keyframes chatOpen {
  from { opacity: 0; transform: translateY(16px) scale(.96); }
  to { opacity: 1; transform: none; }
}
@keyframes chatSparkle {
  0%,100% { transform: scale(.8) rotate(0); opacity: .65; }
  50% { transform: scale(1.25) rotate(25deg); opacity: 1; }
}
@keyframes typingDot {
  0%,100% { transform: translateY(0); opacity: .45; }
  50% { transform: translateY(-4px); opacity: 1; }
}
@media (max-width: 560px) {
  .heimfee-chat { right: 14px; bottom: 14px; }
  .chat-launcher { width: 64px; height: 64px; }
  .chat-launcher img { width: 62px; height: 74px; }
  .chat-window {
    position: fixed;
    inset: 10px;
    width: auto;
    height: auto;
    max-height: none;
    border-radius: 23px;
  }
}


/* ===== Finaler Mobile-Fix ===== */
.big-number small {
  display: block;
  margin-bottom: 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: clamp(18px, 2.4vw, 28px);
  line-height: 1;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-weight: 800;
}
@media (max-width: 940px) {
  .menu-button {
    display: grid;
    place-content: center;
    gap: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,.82);
    box-shadow: 0 8px 24px rgba(16,27,43,.10);
  }
  .menu-button span:not(.sr-only) {
    width: 5px;
    height: 5px;
    margin: 0 auto;
    border-radius: 50%;
    background: var(--ink);
  }
  .menu-button.active span:nth-child(1),
  .menu-button.active span:nth-child(2),
  .menu-button.active span:nth-child(3) {
    transform: none;
    opacity: 1;
  }
  .menu-button.active { background: var(--green); }
  .menu-button.active span:not(.sr-only) { background: #fff; }
  .nav-links { padding: 100px 24px 42px; }
}
@media (max-width: 700px) {
  .section { padding: 104px 0; }
  .section + .section { border-top: 1px solid rgba(16,27,43,.05); }
  .section-heading { margin-bottom: 44px; }
  .service-grid, .pricing-grid, .appointment-list { gap: 24px; }
  .service-card { min-height: auto; padding: 29px 24px; }
  .service-card:not(.service-card-large) { padding-top: 92px; }
  .service-card-large { min-height: 650px; }
  .trust-strip { padding: 18px 0; }
  .trust-grid { gap: 0; }
  .trust-grid > div { padding: 24px 8px; }
  .split-layout, .faq-layout { gap: 64px; }
  .benefit-panel, .price-card, .calendar-card, .appointment-panel, .service-area-card { border-radius: 24px; }
  .price-card { padding: 28px 23px; }
  .price-card + .price-card { margin-top: 10px; }
  .accordion details { padding: 4px 0; }
  .accordion summary { padding: 27px 0; font-size: 18px; line-height: 1.35; }
  .faq-booking-box, .section-inline-cta, .calendar-launch-card { margin-top: 48px; padding: 30px 23px; }
  .contact-section { padding-top: 36px; }
  .contact-card { gap: 30px; }
  .tree-counter-section { padding-top: 30px; }
  .footer { padding-top: 82px; }
  .chat-window { inset: 8px; border-radius: 20px; }
  .chat-header { padding: 15px; }
  .chat-messages { padding: 16px 14px; }
  .quick-questions { padding: 8px 12px; gap: 8px; }
  .quick-questions button { min-height: 38px; }
}

/* ===== Korrigiertes mobiles Dropdown-Menü ===== */
@media (max-width: 940px) {
  .site-header {
    padding: 8px 0;
  }

  .nav {
    position: relative;
  }

  .menu-button {
    position: relative;
    z-index: 1002;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
  }

  .nav-links {
    position: absolute;
    inset: auto 0 auto auto;
    top: calc(100% + 10px);
    width: min(310px, calc(100vw - 28px));
    max-height: calc(100vh - 95px);
    overflow-y: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 5px;
    padding: 12px;
    border: 1px solid rgba(16,27,43,.10);
    border-radius: 22px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 24px 70px rgba(16,27,43,.20);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    opacity: 1;
    visibility: visible;
    transform: none;
    font-size: 17px;
    z-index: 1001;
  }

  .nav-links.open {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-links > a {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    text-align: left;
  }

  .nav-links > a:not(.nav-cta) {
    color: var(--ink);
  }

  .nav-links > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-links > a:not(.nav-cta):hover,
  .nav-links > a:not(.nav-cta):focus-visible {
    background: var(--green-soft);
    color: var(--green);
  }

  .nav-cta {
    margin-top: 5px;
    padding: 15px 16px !important;
    text-align: center !important;
  }

  body.menu-open {
    overflow: auto;
  }
}

@media (max-width: 700px) {
  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand span {
    max-width: 165px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .hero {
    padding-top: 170px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 62px);
    line-height: .98;
    overflow-wrap: anywhere;
  }

  .section-heading h2,
  .split-copy h2,
  .faq-intro h2,
  .contact-card h2 {
    font-size: clamp(38px, 11vw, 55px);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .service-card h3 {
    padding-right: 52px;
    font-size: clamp(25px, 7.8vw, 34px);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .service-card .service-icon {
    top: 24px;
    right: 22px;
    width: 48px;
    height: 48px;
  }

  .service-card:not(.service-card-large) {
    padding: 88px 23px 27px;
  }

  .service-card-large {
    min-height: 610px;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .service-grid,
  .pricing-grid {
    gap: 20px;
  }

  .chat-launcher {
    right: 0;
  }
}


/* ===== Finale Paket-Reihenfolge und Einsatzgebiet ===== */
.price-card.recommended-card {
  background: #fff;
  color: var(--ink);
  border: 2px solid rgba(23,59,109,.34);
  box-shadow: 0 28px 72px rgba(23,59,109,.17);
  transform: translateY(-12px);
}
.recommended-card .price-kicker,
.recommended-card .price,
.recommended-card .price-note,
.recommended-card li { color: var(--muted); }
.recommended-card .price span { color: var(--ink); }
.recommended-card ul { border-color: var(--line); }
.recommended-card li::before { color: var(--green); }
.service-area-section { background: #f4f6fa; }
.service-area-section .service-area-card { margin-top: 0; }
.radius-map svg { width: 100%; height: 100%; display: block; }
@media (max-width: 940px) {
  .price-card.recommended-card { transform: none; }
}
@media (max-width: 700px) {
  .service-area-section { padding-top: 92px; padding-bottom: 92px; }
  .radius-map { min-height: 320px; }
}

/* ===== Fix: Friends-Green Badge und Baum überlappen nicht ===== */
.friends-card .popular-badge {
  top: 22px;
  left: 30px;
  right: auto;
  z-index: 3;
}
.friends-card .tree-icon {
  top: 20px;
  right: 24px;
  z-index: 3;
}
.friends-card > div:nth-of-type(3) {
  padding-top: 38px;
}
@media (max-width: 700px) {
  .friends-card .popular-badge {
    left: 23px;
    top: 20px;
  }
  .friends-card .tree-icon {
    right: 20px;
    top: 18px;
    width: 44px;
    height: 44px;
  }
  .friends-card > div:nth-of-type(3) {
    padding-top: 42px;
  }
}


/* Paket-Detailseiten */
.package-page { background:#f6f8fb; }
.package-page .site-header { position:sticky; background:rgba(255,255,255,.92); backdrop-filter:blur(18px); border-bottom:1px solid var(--line); }
.package-page .site-header .button-secondary { background:transparent; border-color:rgba(23,59,109,.35); color:var(--ink); backdrop-filter:none; }
.package-page .site-header .button-secondary:hover { background:var(--green-soft); box-shadow:none; }
.package-main { padding:70px 0 110px; }
.package-back { display:inline-flex; align-items:center; gap:8px; color:var(--green); font-weight:750; margin-bottom:34px; }
.package-hero { display:grid; grid-template-columns:1.05fr .95fr; gap:28px; align-items:stretch; }
.package-summary,.package-selection { border:1px solid var(--line); border-radius:32px; background:#fff; box-shadow:0 20px 65px rgba(23,59,109,.08); }
.package-summary { padding:44px; }
.package-summary h1 { margin:0 0 18px; font-size:clamp(44px,7vw,76px); letter-spacing:-.06em; line-height:.96; }
.package-summary .package-price { margin:20px 0; font-size:18px; color:var(--muted); }
.package-summary .package-price strong { font-size:clamp(38px,5vw,58px); color:var(--ink); letter-spacing:-.05em; }
.package-summary ul { list-style:none; padding:24px 0 0; border-top:1px solid var(--line); display:grid; gap:14px; }
.package-summary li::before { content:'✓'; color:var(--green); font-weight:900; margin-right:11px; }
.package-selection { padding:34px; background:linear-gradient(145deg,#0b2548,#173b6d); color:#fff; }
.package-selection h2 { margin:0 0 12px; font-size:32px; letter-spacing:-.04em; }
.package-selection > p { color:#d8e4f2; line-height:1.6; }
.addon-grid { display:grid; gap:14px; margin-top:24px; }
.addon-option { display:grid; grid-template-columns:auto 1fr auto; gap:13px; align-items:start; padding:17px; border:1px solid rgba(255,255,255,.2); border-radius:18px; background:rgba(255,255,255,.08); cursor:pointer; }
.addon-option input { margin-top:5px; accent-color:#fff; }
.addon-option b { display:block; margin-bottom:5px; }
.addon-option small { color:#c9d8e9; line-height:1.45; display:block; }
.addon-price { white-space:nowrap; font-weight:850; }
.package-selection .button { width:100%; margin-top:22px; }
.addon-info { margin-top:18px; font-size:12px; color:#c9d8e9; line-height:1.55; }
.package-extra-section { padding:85px 0 0; }
.package-extra-section h2 { font-size:clamp(36px,5vw,58px); margin:0 0 14px; letter-spacing:-.05em; }
.extra-offers { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:34px; }
.extra-card { padding:28px; border:1px solid var(--line); border-radius:24px; background:#fff; }
.extra-card .extra-icon { width:48px;height:48px;border-radius:15px;background:var(--green-soft);color:var(--green);display:grid;place-items:center;font-size:23px;margin-bottom:20px; }
.extra-card h3 { margin:0 0 10px; font-size:23px; }
.extra-card p { color:var(--muted); line-height:1.6; }
.extra-card strong { display:block; color:var(--green); font-size:22px; margin-top:18px; }
.footer-legal-inline a { color:var(--green); font-weight:700; }
.legal-content { margin-top:36px; padding-bottom:60px; }
.legal-content h2 { font-size:22px; letter-spacing:-.02em; margin:34px 0 10px; color:var(--ink); }
.legal-content h2:first-child { margin-top:0; }
.legal-content h3 { font-size:16px; margin:18px 0 4px; color:var(--ink); }
.legal-content p { color:var(--muted); line-height:1.7; margin:0 0 8px; }
.legal-content a { color:var(--green); font-weight:700; }
.legal-content .legal-back { display:inline-block; margin-top:12px; }
.legal-content pre { white-space:pre-wrap; word-wrap:break-word; background:#f5f4ef; border-radius:12px; padding:16px 18px; font-family:inherit; font-size:14px; line-height:1.6; color:var(--muted); margin:0 0 8px; }
@media(max-width:820px){.package-hero{grid-template-columns:1fr}.extra-offers{grid-template-columns:1fr}.package-main{padding-top:45px}.package-summary{padding:30px 23px}.package-selection{padding:28px 22px}.addon-option{grid-template-columns:auto 1fr}.addon-price{grid-column:2}.footer-legal-inline{display:block;margin-top:8px}}
