/* ==========================================================================
   Lukas John — Finanzplanung
   Design an der Bonnfinanz-Markenwelt ausgerichtet:
   tiefes Blau (#2C517F) · helles Teal (#B4D6D4) · zarter Teal-Ton (#ECF5F4)
   auf Weiß, mit ruhiger, klarer Sans-Typografie.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@400;500;600;700&family=Open+Sans:wght@400;500;600;700&display=swap');

:root{
  --blue:        #2C517F;
  --blue-dark:   #223F63;
  --blue-900:    #1B3350;
  --teal:        #B4D6D4;
  --teal-mid:    #55759A;
  --teal-tint:   #ECF5F4;
  --ink:         #1E2A38;
  --text:        #4C5866;
  --muted:       #6E7A86;
  --white:       #FFFFFF;
  --surface:     #F7F9FB;
  --line:        rgba(44,81,127,0.14);
  --line-soft:   rgba(44,81,127,0.09);

  --display: 'Noto Serif', Georgia, 'Times New Roman', serif;
  --body:    'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max: 1160px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 12px;
  --shadow-sm: 0 4px 14px -8px rgba(27,51,80,0.30);
  --shadow: 0 24px 50px -30px rgba(27,51,80,0.45);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--white);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; }

h1,h2,h3,h4{
  font-family: var(--display);
  color: var(--blue);
  line-height: 1.18;
  margin: 0 0 0.5em;
  letter-spacing: -0.004em;
  font-weight: 700;
}
h1{ font-size: clamp(2.3rem, 4.8vw, 3.6rem); }
h2{ font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3{ font-size: 1.25rem; font-weight: 600; }
h4{ font-size: 1.02rem; font-weight: 600; }
em{ font-style: normal; color: var(--teal-mid); }
p{ margin: 0 0 1em; max-width: 62ch; }

.wrap{ max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
main [id]{ scroll-margin-top: 92px; }
.section{ padding: clamp(56px, 8vw, 108px) 0; }
.section--tight{ padding: clamp(40px, 6vw, 72px) 0; }
.section--tint{ background: var(--teal-tint); }
.section--surface{ background: var(--surface); }
.section--dark{ background: var(--blue); color: rgba(255,255,255,0.86); }
.section--dark h1,.section--dark h2,.section--dark h3,.section--dark h4{ color:#fff; }
.section--dark p{ color: rgba(255,255,255,0.82); }
.section--dark em{ color: var(--teal); }
.section--dark .eyebrow{ color: var(--teal); }
.section--dark .eyebrow::before{ background: var(--teal); }

.eyebrow{
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-mid);
  display:flex; align-items:center; gap:10px;
  margin-bottom: 1.1em;
}
.eyebrow::before{
  content:""; width:26px; height:2px; background: var(--teal-mid); display:inline-block; border-radius:2px;
}
.center{ text-align:center; }
.center .eyebrow{ justify-content:center; }
.lead{ font-size: 1.15rem; color: var(--text); max-width: 60ch; }
.section--dark .lead{ color: rgba(255,255,255,0.9); }

/* ---------- Layout helpers ---------- */
.grid{ display:grid; gap: 28px; }
.grid--2{ grid-template-columns: repeat(2,1fr); }
.grid--3{ grid-template-columns: repeat(3,1fr); }
.grid--4{ grid-template-columns: repeat(4,1fr); }
@media (max-width: 900px){ .grid--3,.grid--4{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px){ .grid--2,.grid--3,.grid--4{ grid-template-columns: 1fr; } }

/* ---------- Header / Nav ---------- */
.site-header{
  position: sticky; top:0; z-index:60;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .wrap{ display:flex; align-items:center; justify-content:space-between; height:78px; }
.brand{
  font-family: var(--display); font-weight:700; font-size:1.28rem;
  text-decoration:none; color: var(--blue); display:flex; flex-direction:column; line-height:1.05;
}
.brand span{
  font-family: var(--body); font-size:0.62rem; font-weight:600; letter-spacing:0.18em;
  text-transform:uppercase; color: var(--teal-mid); margin-top:4px;
}
.nav{ display:flex; align-items:center; gap: clamp(18px,3vw,34px); }
.nav a{
  text-decoration:none; font-size:0.94rem; font-weight:500; color: var(--ink);
  position:relative; padding:6px 0;
}
.nav a.active{ color: var(--blue); font-weight:600; }
.nav a::after{
  content:""; position:absolute; left:0; bottom:0; width:0; height:2px; background: var(--blue);
  transition: width .25s ease;
}
.nav a:hover::after, .nav a.active::after{ width:100%; }
.nav .btn{ padding:10px 20px; }
.nav a.btn::after{ display:none; }
.nav-toggle{ display:none; }

@media (max-width: 820px){
  .nav{
    position: fixed; inset:78px 0 0 0; background: var(--white);
    flex-direction: column; justify-content:flex-start; align-items:flex-start;
    padding: 28px var(--pad); gap:20px; transform: translateX(100%); transition: transform .3s ease;
    border-top:1px solid var(--line-soft);
  }
  .nav.open{ transform: translateX(0); }
  .nav a{ font-size:1.15rem; }
  .nav-toggle{
    display:flex; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:8px;
  }
  .nav-toggle span{ width:24px; height:2px; background: var(--blue); display:block; border-radius:2px; }
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:9px; justify-content:center;
  font-family: var(--body); font-weight:600; font-size:0.95rem;
  padding: 14px 28px; border-radius: 999px; text-decoration:none;
  border:1.5px solid transparent; cursor:pointer; transition: all .2s ease;
}
.btn svg{ width:17px; height:17px; }
.btn--primary{ background: var(--blue); color:#fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover{ background: var(--blue-dark); transform: translateY(-2px); }
.btn--ghost{ border-color: var(--blue); color: var(--blue); }
.btn--ghost:hover{ background: var(--blue); color:#fff; }
.btn--light{ background:#fff; color: var(--blue); }
.btn--light:hover{ background: var(--teal-tint); transform: translateY(-2px); }
.section--dark .btn--ghost{ border-color: rgba(255,255,255,0.6); color:#fff; }
.section--dark .btn--ghost:hover{ background:#fff; color: var(--blue); }
.btn-row{ display:flex; gap:14px; flex-wrap:wrap; margin-top: 1.7em; }
.center .btn-row{ justify-content:center; }

/* ---------- Hero ---------- */
.hero{
  padding: clamp(52px,8vw,92px) 0 clamp(44px,6vw,76px);
  background:
    radial-gradient(circle at 88% 8%, rgba(180,214,212,0.35), transparent 42%),
    linear-gradient(180deg, var(--white), var(--teal-tint));
}
.hero-grid{ display:grid; grid-template-columns: 1.08fr 0.92fr; gap:52px; align-items:center; }
@media (max-width: 900px){ .hero-grid{ grid-template-columns:1fr; gap:40px; } }
.hero h1{ max-width: 15ch; }
.hero .lead{ max-width: 48ch; }

.portrait{
  aspect-ratio: 4/5; background: var(--teal-tint);
  border:1px solid var(--line); border-radius: var(--radius);
  position:relative; overflow:hidden; box-shadow: var(--shadow);
}
.portrait svg{ position:absolute; inset:0; width:100%; height:100%; }
.portrait-img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center 18%; }
.portrait .ph-note{
  position:absolute; left:16px; bottom:14px; font-size:0.72rem; color: var(--blue);
  background: rgba(255,255,255,0.8); padding:5px 10px; border-radius:6px;
}

/* ---------- Trust bar ---------- */
.trust-bar{
  border-top:1px solid var(--line-soft);
  margin-top: 34px; padding-top: 26px;
  display:flex; flex-wrap:wrap; gap: 14px 26px; align-items:center;
}
.trust-item{ display:flex; align-items:center; gap:9px; font-size:0.86rem; font-weight:500; color: var(--ink); }
.trust-item svg{ width:20px; height:20px; color: var(--teal-mid); flex:none; }
.rating{ display:flex; align-items:center; gap:8px; font-weight:600; color: var(--ink); font-size:0.9rem; }
.stars{ color:#E8B54B; letter-spacing:1px; }

/* ---------- Principle / check list ---------- */
.principle{
  background:#fff; border:1px solid var(--line-soft); border-radius: var(--radius);
  padding: 30px 28px; transition: transform .2s ease, box-shadow .25s ease;
}
.principle:hover{ transform: translateY(-4px); box-shadow: var(--shadow); }
.principle .ico{
  width:46px; height:46px; border-radius:10px; background: var(--teal-tint);
  display:flex; align-items:center; justify-content:center; margin-bottom:18px;
}
.principle .ico svg{ width:23px; height:23px; color: var(--blue); }
.principle h3{ margin-bottom:8px; }
.principle p{ margin:0; color: var(--muted); font-size:0.97rem; }
.section--dark .principle{ background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.16); }
.section--dark .principle .ico{ background: rgba(255,255,255,0.10); }
.section--dark .principle .ico svg{ color: var(--teal); }
.section--dark .principle p{ color: rgba(255,255,255,0.78); }

/* ---------- Compare (Problem vs. Lösung) ---------- */
.compare{ display:grid; grid-template-columns:1fr 1fr; gap:28px; margin-top:44px; }
@media (max-width: 780px){ .compare{ grid-template-columns:1fr; } }
.compare-col{ border-radius: var(--radius); padding: 32px 30px; }
.compare-col h3{ font-size:1.15rem; margin-bottom:18px; }
.compare-col.problem{ background:#fff; border:1px solid var(--line); }
.compare-col.solution{ background: var(--blue); color:#fff; }
.compare-col.solution h3{ color:#fff; }
.compare-list{ list-style:none; margin:0; padding:0; }
.compare-list li{ display:flex; gap:12px; padding:11px 0; font-size:0.96rem; border-bottom:1px solid var(--line-soft); }
.compare-col.solution .compare-list li{ border-bottom-color: rgba(255,255,255,0.14); color: rgba(255,255,255,0.92); }
.compare-list li:last-child{ border-bottom:none; }
.compare-list .mk{ flex:none; width:20px; height:20px; margin-top:2px; }
.compare-col.problem .mk{ color:#C2795F; }
.compare-col.solution .mk{ color: var(--teal); }

/* ---------- Service cards ---------- */
.service-card{
  background:#fff; border:1px solid var(--line-soft); border-top:3px solid var(--blue);
  border-radius: var(--radius); padding: 30px 28px;
  transition: transform .2s ease, box-shadow .25s ease;
}
.service-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card .num{
  font-family: var(--display); font-weight:700; font-size:0.86rem; color: var(--teal-mid);
  letter-spacing:0.08em; margin-bottom:10px;
}
.service-card h3{ margin-bottom:10px; }
.service-card ul{ margin:14px 0 0; padding-left:0; list-style:none; }
.service-card li{ position:relative; padding:6px 0 6px 24px; font-size:0.95rem; color: var(--text); }
.service-card li::before{
  content:""; position:absolute; left:0; top:12px; width:9px; height:9px; border-radius:50%;
  background: var(--teal); box-shadow: 0 0 0 3px var(--teal-tint);
}

/* ---------- Steps (Ablauf) ---------- */
.steps{ counter-reset: step; display:grid; grid-template-columns: repeat(4,1fr); gap:26px; margin-top:44px; }
@media (max-width: 900px){ .steps{ grid-template-columns:1fr 1fr; } }
@media (max-width: 560px){ .steps{ grid-template-columns:1fr; } }
.step{ position:relative; }
.step .n{
  width:44px; height:44px; border-radius:50%; background: var(--teal-tint); color: var(--blue);
  font-family: var(--display); font-weight:700; display:flex; align-items:center; justify-content:center;
  margin-bottom:16px; font-size:1.05rem;
}
.section--dark .step .n{ background: rgba(255,255,255,0.12); color:#fff; }
.step h3{ font-size:1.08rem; margin-bottom:6px; }
.step p{ font-size:0.94rem; color: var(--muted); margin:0; }
.section--dark .step p{ color: rgba(255,255,255,0.78); }

/* ---------- Testimonials ---------- */
.quote-card{
  background:#fff; border:1px solid var(--line-soft); border-radius: var(--radius);
  padding: 28px 26px; display:flex; flex-direction:column; gap:14px;
}
.quote-card .stars{ font-size:1rem; }
.quote-card p{ margin:0; color: var(--ink); font-size:1rem; line-height:1.6; }
.quote-card cite{
  font-style:normal; font-weight:600; font-size:0.9rem; color: var(--blue);
  display:flex; align-items:center; gap:8px;
}
.quote-card cite small{ font-weight:400; color: var(--muted); }
.section--tint .quote-card{ border-color: var(--line-soft); box-shadow: var(--shadow-sm); }

/* ---------- FAQ ---------- */
.faq{ max-width: 820px; margin: 40px auto 0; }
.faq details{ border-bottom:1px solid var(--line); }
.faq summary{
  cursor:pointer; list-style:none; padding: 20px 0; font-family: var(--display);
  font-weight:600; font-size:1.05rem; color: var(--blue); display:flex; justify-content:space-between; gap:16px;
}
.faq summary::-webkit-details-marker{ display:none; }
.faq summary::after{ content:"+"; color: var(--teal-mid); font-weight:400; font-size:1.4rem; line-height:1; }
.faq details[open] summary::after{ content:"–"; }
.faq details p{ margin:0 0 20px; color: var(--text); }

/* ---------- Info lines / Contact ---------- */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:52px; }
@media (max-width: 900px){ .contact-grid{ grid-template-columns:1fr; } }
.field{ margin-bottom:18px; }
.field label{
  display:block; font-size:0.78rem; font-weight:600; letter-spacing:0.06em; text-transform:uppercase;
  color: var(--blue); margin-bottom:7px;
}
.field input, .field textarea{
  width:100%; border:1px solid var(--line); background:#fff; padding:13px 14px;
  font-family: var(--body); font-size:0.98rem; color: var(--ink); border-radius:8px;
}
.field textarea{ min-height:130px; resize:vertical; }
.field input:focus, .field textarea:focus{ outline:2px solid var(--teal-mid); outline-offset:1px; border-color: var(--teal-mid); }
.info-line{ display:flex; gap:16px; padding:14px 0; border-bottom:1px solid var(--line-soft); }
.info-line .k{ font-size:0.76rem; font-weight:600; letter-spacing:0.05em; text-transform:uppercase; color: var(--teal-mid); min-width:120px; }
.info-line a{ color: var(--blue); text-decoration:none; }
.info-line a:hover{ text-decoration:underline; }
.map-frame{
  border:1px solid var(--line); border-radius: var(--radius); aspect-ratio:16/10; background: var(--teal-tint);
  display:flex; align-items:center; justify-content:center; text-align:center; padding:24px; margin-top:26px;
}
.socials{ display:flex; gap:12px; margin-top:20px; }
.socials a{
  width:42px; height:42px; border-radius:50%; border:1px solid var(--line); color: var(--blue);
  display:flex; align-items:center; justify-content:center; text-decoration:none; transition: all .2s ease;
}
.socials a:hover{ background: var(--blue); color:#fff; border-color: var(--blue); }
.socials svg{ width:19px; height:19px; }

/* ---------- Page hero (subpages) ---------- */
.page-hero{ padding: clamp(48px,7vw,88px) 0 clamp(20px,3vw,32px); background: linear-gradient(180deg,#fff,var(--teal-tint)); }
.page-hero h1{ max-width: 20ch; }

/* ---------- Portrait block on subpages ---------- */
.split{ display:grid; grid-template-columns:0.9fr 1.1fr; gap:52px; align-items:center; }
@media (max-width: 900px){ .split{ grid-template-columns:1fr; gap:36px; } }

/* ---------- Qualification badges ---------- */
.quals{ list-style:none; margin:20px 0 0; padding:0; display:grid; gap:10px; }
.quals li{ display:flex; gap:12px; align-items:flex-start; font-size:0.98rem; color: var(--ink); }
.quals svg{ width:20px; height:20px; color: var(--teal-mid); flex:none; margin-top:3px; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--blue-900); color: rgba(255,255,255,0.75); padding: 56px 0 28px; }
.site-footer a{ text-decoration:none; color: rgba(255,255,255,0.75); }
.site-footer a:hover{ color: var(--teal); }
.footer-grid{ display:grid; grid-template-columns:1.6fr 1fr; gap:36px; margin-bottom:34px; }
@media (max-width: 780px){ .footer-grid{ grid-template-columns:1fr; gap:28px; } }
.footer-grid h4{ color:#fff; font-size:0.76rem; letter-spacing:0.12em; text-transform:uppercase; margin-bottom:14px; font-weight:600; }
.footer-grid p{ font-size:0.93rem; margin:0 0 8px; }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.14); padding-top:20px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  font-size:0.8rem; color: rgba(255,255,255,0.55);
}
.footer-bottom a{ color: rgba(255,255,255,0.55); }

/* ---------- Interaktiver Finanz-Check ---------- */
.check-grid{ display:grid; grid-template-columns: 0.9fr 1.1fr; gap:44px; align-items:start; margin-top:40px; }
@media (max-width: 900px){ .check-grid{ grid-template-columns:1fr; gap:28px; } }
.check-chips{ display:flex; flex-wrap:wrap; gap:12px; }
.chip{
  font-family: var(--body); font-size:0.95rem; font-weight:500; color: var(--ink);
  background:#fff; border:1.5px solid var(--line); border-radius:999px; padding:12px 20px;
  cursor:pointer; transition: all .18s ease; display:inline-flex; align-items:center; gap:9px;
}
.chip:hover{ border-color: var(--teal-mid); transform: translateY(-1px); }
.chip[aria-pressed="true"]{ background: var(--blue); color:#fff; border-color: var(--blue); box-shadow: var(--shadow-sm); }
.chip svg{ width:18px; height:18px; flex:none; }

.check-panel{
  background:#fff; border:1px solid var(--line-soft); border-radius: var(--radius);
  padding: 34px 32px; box-shadow: var(--shadow); min-height: 260px;
}
.check-panel .ph-empty{ color: var(--muted); }
.check-sub{ font-size:0.8rem; font-weight:600; letter-spacing:0.06em; text-transform:uppercase; color: var(--teal-mid); margin:18px 0 8px; }
.check-points{ list-style:none; margin:0 0 4px; padding:0; }
.check-points li{ position:relative; padding:6px 0 6px 26px; font-size:0.97rem; color: var(--text); }
.check-points li::before{ content:"✓"; position:absolute; left:0; top:6px; color: var(--teal-mid); font-weight:700; }
.check-panel h3{ margin-bottom:10px; }
.check-panel .p-lead{ color: var(--text); }
.check-tags{ display:flex; flex-wrap:wrap; gap:10px; margin:18px 0 22px; }
.check-tag{
  font-size:0.86rem; font-weight:600; color: var(--blue); background: var(--teal-tint);
  border-radius:999px; padding:7px 15px; text-decoration:none; display:inline-flex; align-items:center; gap:7px;
  transition: all .18s ease;
}
.check-tag:hover{ background: var(--teal); }
.check-tag svg{ width:14px; height:14px; }
.check-panel.is-active{ animation: fadeUp .35s ease; }
@keyframes fadeUp{ from{ opacity:0; transform: translateY(10px);} to{ opacity:1; transform:none; } }

/* ---------- Warum / persönliche Sektion ---------- */
.why-grid{ display:grid; grid-template-columns: 0.85fr 1.15fr; gap:52px; align-items:center; }
@media (max-width: 900px){ .why-grid{ grid-template-columns:1fr; gap:36px; } }
.why-quote{
  font-family: var(--display); font-weight:600; font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height:1.3; color: var(--blue); letter-spacing:-0.01em; margin:0 0 20px; max-width: 26ch;
}
.why-quote::before{ content:"„"; color: var(--teal-mid); }
.why-quote::after{ content:"\201C"; }
.why-sign{ font-weight:600; color: var(--ink); }
.why-sign small{ display:block; font-weight:400; color: var(--muted); font-size:0.9rem; margin-top:2px; }
.ph-fill{
  border:1.5px dashed var(--teal-mid); background: var(--teal-tint);
  border-radius:10px; padding:14px 16px; color: var(--blue); font-size:0.9rem; margin-top:8px;
}

/* ---------- Rechtsseiten (Impressum / Datenschutz) ---------- */
.legal{ max-width: 820px; }
.legal h2{ font-size: 1.3rem; margin: 40px 0 12px; }
.legal h2:first-of-type{ margin-top: 8px; }
.legal p, .legal li{ color: var(--text); }
.legal a{ color: var(--blue); }
.legal ul{ padding-left: 20px; }
.legal address{ font-style: normal; line-height: 1.8; }
.legal-table{ width:100%; border-collapse: collapse; margin: 14px 0 6px; font-size: 0.94rem; }
.legal-table th, .legal-table td{ text-align:left; padding: 12px 14px; border: 1px solid var(--line); vertical-align: top; }
.legal-table th{ background: var(--teal-tint); color: var(--blue); font-weight: 600; }
.legal-table td .reg{ font-family: ui-monospace, Menlo, monospace; }
@media (max-width: 640px){
  .legal-table, .legal-table thead, .legal-table tbody, .legal-table tr, .legal-table th, .legal-table td{ display:block; }
  .legal-table th{ margin-top: 12px; }
}
.legal .todo{
  border:1.5px dashed var(--teal-mid); background: var(--teal-tint); color: var(--blue);
  border-radius:10px; padding:14px 16px; font-size:0.92rem; margin: 12px 0;
}
.legal .stand{ color: var(--muted); font-size:0.9rem; margin-top: 36px; }

/* ---------- Google-Bewertungen (Slider) ---------- */
.reviews-head{ display:flex; align-items:center; justify-content:center; gap:10px; margin-top:6px; }
.reviews-head .g{ width:22px; height:22px; }
.reviews-head .stars{ font-size:1.05rem; }
.reviews{ position:relative; max-width:760px; margin:30px auto 0; }
.review{
  display:none; background:#fff; border:1px solid var(--line-soft); border-radius:12px;
  padding:32px 30px; box-shadow: var(--shadow-sm); text-align:center;
}
.review.is-active{ display:block; animation: reviewIn .55s ease; }
@keyframes reviewIn{ from{ opacity:0; transform: translateY(12px); } to{ opacity:1; transform:none; } }
.review .stars{ font-size:1.05rem; }
.review p{ font-family: var(--display); font-style: italic; font-size:1.12rem; line-height:1.6; color: var(--ink); margin:14px auto 16px; max-width:60ch; }
.review cite{ font-style:normal; font-weight:600; color: var(--blue); font-size:0.95rem; }
.review cite small{ display:block; font-weight:400; color: var(--muted); font-size:0.82rem; margin-top:2px; }
.review-dots{ display:flex; gap:8px; justify-content:center; margin-top:22px; }
.review-dot{ width:9px; height:9px; border-radius:50%; border:0; background:var(--line); cursor:pointer; padding:0; transition: background .2s ease, transform .2s ease; }
.review-dot:hover{ transform: scale(1.2); }
.review-dot.active{ background: var(--blue); }
@media (prefers-reduced-motion: reduce){ .review.is-active{ animation:none; } }

/* ---------- Kennzahlen-Band ---------- */
.stats-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 34px; text-align: center; }
@media (max-width: 780px){ .stats-grid{ grid-template-columns: 1fr 1fr; gap: 32px 20px; } }
.stat-num{
  display: block; font-family: var(--display); font-weight: 700; line-height: 1;
  font-size: clamp(2.3rem, 4.4vw, 3.1rem); color: #fff; font-variant-numeric: tabular-nums;
}
.stat-num .unit{ color: var(--teal); }
.stat-label{ display: block; margin-top: 12px; font-size: 0.96rem; color: rgba(255,255,255,0.82); }

/* ---------- Terminbuchung einbetten + Kontakt-Kacheln ---------- */
.booking-embed{
  margin-top: 36px; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: #fff; box-shadow: var(--shadow);
}
.booking-embed iframe{ width: 100%; height: 760px; border: 0; display: block; }
.booking-fallback{ font-size: 0.9rem; color: var(--muted); margin-top: 12px; }
.booking-fallback a{ color: var(--blue); font-weight: 600; text-decoration: none; }
.booking-fallback a:hover{ text-decoration: underline; }

.contact-tiles{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px; }
@media (max-width: 780px){ .contact-tiles{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px){ .contact-tiles{ grid-template-columns: 1fr; } }
.contact-tile{
  display: flex; flex-direction: column; gap: 10px; padding: 22px 20px;
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius);
  text-decoration: none; color: var(--ink); transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}
.contact-tile:hover{ transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--teal); }
.contact-tile .ico{
  width: 44px; height: 44px; border-radius: 10px; background: var(--teal-tint);
  display: flex; align-items: center; justify-content: center;
}
.contact-tile .ico svg{ width: 22px; height: 22px; color: var(--blue); }
.contact-tile .t-label{ font-family: var(--display); font-weight: 600; font-size: 1.05rem; color: var(--blue); }
.contact-tile .t-val{ font-size: 0.9rem; color: var(--muted); }

.contact-address{
  margin-top: 32px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 16px; padding: 22px 24px; background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius);
}
.contact-address p{ margin: 0; }

/* ---------- Schwebender Call-to-Action ---------- */
.floating-cta{
  position: fixed; right: clamp(14px,3vw,28px); bottom: clamp(14px,3vw,28px); z-index: 80;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--blue); color: #fff; text-decoration: none;
  font-family: var(--body); font-weight: 600; font-size: 0.95rem;
  padding: 14px 22px; border-radius: 999px;
  box-shadow: 0 14px 32px -10px rgba(27,51,80,0.55);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.floating-cta:hover{ background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 18px 38px -12px rgba(27,51,80,0.6); }
.floating-cta svg{ width: 18px; height: 18px; flex: none; }
@media (max-width: 520px){
  .floating-cta{ padding: 15px; right: 16px; bottom: 16px; }
  .floating-cta span{ display: none; }
}
@media print{ .floating-cta{ display: none; } }

/* ---------- Erweitertes Hover-Feedback ---------- */
.principle{ transition: transform .22s ease, box-shadow .28s ease, border-color .22s ease; }
.principle .ico{ transition: background .25s ease, transform .25s ease; }
.principle .ico svg{ transition: color .25s ease; }
.principle:hover{ border-color: var(--teal); }
.principle:hover .ico{ background: var(--blue); transform: translateY(-3px); }
.principle:hover .ico svg{ color: #fff; }
.section--dark .principle:hover .ico{ background: var(--teal); }
.section--dark .principle:hover .ico svg{ color: var(--blue); }

.service-card{ transition: transform .22s ease, box-shadow .28s ease, border-color .22s ease; }
.service-card:hover{ border-top-color: var(--teal-mid); }
.service-card:hover .num{ color: var(--blue); }
.service-card .num{ transition: color .25s ease; }
.service-card li::before{ transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover li::before{ transform: scale(1.25); }

.contact-tile .ico{ transition: background .25s ease, transform .25s ease; }
.contact-tile .ico svg{ transition: color .25s ease; }
.contact-tile:hover .ico{ background: var(--blue); transform: translateY(-3px); }
.contact-tile:hover .ico svg{ color: #fff; }

.step .n{ transition: background .25s ease, color .25s ease, transform .25s ease; }
.step:hover .n{ background: var(--teal); color: var(--blue); transform: translateY(-3px); }

.chip{ transition: all .2s ease, transform .18s ease; }
.chip:hover{ box-shadow: var(--shadow-sm); }
.check-tag{ transition: background .18s ease, transform .18s ease; }
.check-tag:hover{ transform: translateY(-2px); }

.quote-card, .review{ transition: transform .22s ease, box-shadow .28s ease, border-color .22s ease; }
.review:hover{ transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--teal); }

.info-line{ transition: background .2s ease; border-radius: 6px; }
.info-line:hover{ background: var(--teal-tint); }

.compare-col{ transition: transform .22s ease, box-shadow .28s ease, border-color .22s ease; }
.compare-col.problem:hover{ transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--teal); }
.compare-col.solution:hover{ transform: translateY(-4px); box-shadow: 0 26px 52px -22px rgba(27,51,80,0.65); }
.compare-list .mk{ transition: transform .2s ease; }
.compare-col:hover .mk{ transform: scale(1.18); }

.brand{ transition: opacity .2s ease; }
.brand:hover{ opacity: 0.8; }

/* ---------- Scroll-Animationen ---------- */
html.js :where(.hero-grid > div, .principle, .service-card, .quote-card, .step, .compare-col, .why-grid > div, .split > div, .faq details, .legal h2, .legal address, .legal .legal-table, .legal .todo, .legal .stand, .section > .wrap > .eyebrow, .section > .wrap > h2, .section > .wrap > .lead){
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.16,.7,.3,1), transform .7s cubic-bezier(.16,.7,.3,1);
  will-change: opacity, transform;
}
html.js :where(.hero-grid > div, .principle, .service-card, .quote-card, .step, .compare-col, .why-grid > div, .split > div, .faq details, .legal h2, .legal address, .legal .legal-table, .legal .todo, .legal .stand, .section > .wrap > .eyebrow, .section > .wrap > h2, .section > .wrap > .lead).in{
  opacity: 1;
  transform: none;
}

/* ---------- Warme Gold-Akzente ---------- */
:root{ --gold: #C2A15B; --gold-light: #D9BD86; }
.eyebrow::before{ background: var(--gold); }
.section--dark .eyebrow::before{ background: var(--gold-light); }
em{ color: var(--gold); }
.section--dark em{ color: var(--gold-light); }
.brand span{ color: var(--gold); }
.service-card .num{ color: var(--gold); }
.stat-num .unit{ color: var(--gold-light); }
.why-quote::before, .why-quote::after{ color: var(--gold); }
.reviews-head strong{ color: var(--gold); }
.hero{
  background:
    radial-gradient(circle at 88% 8%, rgba(180,214,212,0.35), transparent 42%),
    radial-gradient(circle at 4% 94%, rgba(194,161,91,0.16), transparent 40%),
    linear-gradient(180deg, var(--white), var(--teal-tint));
}
.btn--primary:hover{ box-shadow: 0 12px 26px -12px rgba(194,161,91,0.55); }

/* Header-CTA heller & warm hervorgehoben */
.site-header .nav .btn--primary{ background: var(--gold); color: var(--blue-900); border-color: var(--gold); box-shadow: 0 10px 22px -12px rgba(194,161,91,0.6); }
.site-header .nav .btn--primary:hover{ background: var(--gold-light); color: var(--blue-900); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 14px 28px -12px rgba(194,161,91,0.7); }

/* ---------- Motion ---------- */
@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior:auto; }
  .check-panel.is-active{ animation:none; }
  html.js :where(.hero-grid > div, .principle, .service-card, .quote-card, .step, .compare-col, .why-grid > div, .split > div, .faq details, .legal h2, .legal address, .legal .legal-table, .legal .todo, .legal .stand, .section > .wrap > .eyebrow, .section > .wrap > h2, .section > .wrap > .lead){
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
}
