/* ============================================================
   MediKids – Kinder Intensivpflege | style.css
   Mediwerk GmbH · D3, 4 · 68159 Mannheim
   ============================================================ */

:root {
  --purple:       #9b3fa5;
  --purple-mid:   #b855c4;
  --purple-light: #e8bfed;
  --purple-pale:  #f8eef9;
  --pink:         #e0509a;
  --pink-light:   #f9d0e6;
  --red:          #e84848;
  --orange:       #f08030;
  --yellow:       #f5c800;
  --green:        #5cb85c;
  --green-light:  #d6f0d6;
  --blue:         #4a90d9;
  --blue-light:   #dceefb;
  --teal:         #3dbdbd;
  --white:        #ffffff;
  --text:         #3a2040;
  --text-mid:     #6a4070;
  --text-light:   #9a70a0;
  --border:       #e8d0ec;
  --bg-light:     #fdf5fe;
  --shadow:       0 6px 28px rgba(155,63,165,0.13);
  --shadow-lg:    0 16px 48px rgba(155,63,165,0.18);
  --radius:       20px;
  --radius-sm:    12px;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family:'Nunito', sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.7;
  overflow-x:hidden;
}

/* ─── NAVIGATION ─── */
nav {
  position:fixed; top:0; left:0; right:0; z-index:200;
  background:rgba(255,255,255,0.97);
  backdrop-filter:blur(16px);
  border-bottom:3px solid var(--purple-light);
  height:76px;
  display:flex; align-items:center;
  padding:0 40px;
  justify-content:space-between;
}
.logo-wrap { display:flex; align-items:center; gap:10px; text-decoration:none; }
.mascot-mini { width:50px; height:50px; flex-shrink:0; }
.logo-text-block { display:flex; flex-direction:column; line-height:1; }
.logo-medi { font-family:'Fredoka One', cursive; font-size:22px; color:var(--purple); }
.logo-kids { font-family:'Fredoka One', cursive; font-size:22px; color:var(--pink); }
.logo-sub-nav { font-size:10px; font-weight:700; letter-spacing:.06em; color:var(--purple-mid); text-transform:uppercase; margin-top:2px; }
.nav-links { display:flex; align-items:center; gap:28px; }
.nav-links a { font-size:14px; font-weight:700; color:var(--text-mid); text-decoration:none; transition:color .2s; }
.nav-links a:hover { color:var(--purple); }
.nav-cta {
  background:linear-gradient(135deg, var(--purple), var(--pink));
  color:white; padding:10px 24px; border-radius:100px;
  font-size:14px; font-weight:800; text-decoration:none;
  box-shadow:0 4px 14px rgba(155,63,165,.3); transition:all .2s;
}
.nav-cta:hover { transform:translateY(-2px); color:white; }

/* ─── HERO ─── */
.hero {
  padding:100px 40px 0;
  background:linear-gradient(180deg, var(--purple-pale) 0%, #fff 100%);
  position:relative; overflow:hidden;
  min-height:90vh; display:flex; align-items:center;
}
.hero-dot { position:absolute; border-radius:50%; opacity:.18; }
.hero-dot.d1 { width:180px; height:180px; background:var(--purple); top:-40px; right:80px; }
.hero-dot.d2 { width:120px; height:120px; background:var(--pink); bottom:120px; right:320px; }
.hero-dot.d3 { width:80px; height:80px; background:var(--yellow); top:180px; left:20px; }
.hero-dot.d4 { width:60px; height:60px; background:var(--teal); bottom:200px; left:380px; }
.hero-inner {
  max-width:1200px; margin:0 auto; width:100%;
  display:grid; grid-template-columns:1.1fr 0.9fr;
  gap:60px; align-items:center;
  position:relative; z-index:1; padding-bottom:60px;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:white; border:2px solid var(--purple-light);
  color:var(--purple); padding:6px 18px; border-radius:100px;
  font-size:13px; font-weight:800; margin-bottom:20px; box-shadow:var(--shadow);
}
.hero-badge .dot { width:8px; height:8px; background:var(--purple); border-radius:50%; animation:pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }
.hero-title { font-family:'Fredoka One', cursive; font-size:clamp(40px,5.5vw,68px); line-height:1.1; margin-bottom:22px; color:var(--purple); }
.hero-title .pink { color:var(--pink); }
.hero-tagline { font-size:20px; font-weight:700; color:var(--purple-mid); margin-bottom:14px; font-style:italic; }
.hero-desc { font-size:16px; color:var(--text-mid); line-height:1.8; margin-bottom:36px; max-width:480px; }
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; }
.btn-hero {
  background:linear-gradient(135deg, var(--purple), var(--pink));
  color:white; padding:15px 36px; border-radius:100px;
  font-size:15px; font-weight:800; text-decoration:none;
  box-shadow:0 6px 20px rgba(155,63,165,.35); transition:all .2s;
  display:inline-flex; align-items:center; gap:8px;
}
.btn-hero:hover { transform:translateY(-2px); color:white; }
.btn-hero-outline {
  border:3px solid var(--purple); color:var(--purple);
  padding:12px 30px; border-radius:100px;
  font-size:15px; font-weight:800; text-decoration:none; transition:all .2s;
}
.btn-hero-outline:hover { background:var(--purple); color:white; }
.hero-card {
  background:white; border-radius:28px; border:3px solid var(--purple-light);
  padding:36px; box-shadow:var(--shadow-lg); position:relative;
}
.hero-card::before { content:'♥'; position:absolute; top:-18px; right:28px; font-size:36px; color:var(--pink); }
.hero-card-title { font-family:'Fredoka One', cursive; font-size:22px; color:var(--purple); margin-bottom:20px; text-align:center; }
.hero-stat-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:16px; }
.hero-stat {
  background:var(--purple-pale); border:2px solid var(--purple-light);
  border-radius:var(--radius-sm); padding:18px 14px; text-align:center;
}
.stat-num { font-family:'Fredoka One', cursive; font-size:32px; color:var(--purple); line-height:1; }
.stat-num.pink { color:var(--pink); }
.stat-label { font-size:12px; font-weight:700; color:var(--text-light); margin-top:4px; }

/* ─── GRASS ─── */
.grass-strip { background:var(--purple-pale); position:relative; height:80px; overflow:hidden; margin-top:-2px; }
.grass-strip::before {
  content:''; position:absolute; bottom:0; left:0; right:0; height:30px;
  background:var(--green);
  clip-path:polygon(0 100%,0 50%,2% 30%,4% 50%,6% 20%,8% 50%,10% 35%,12% 55%,14% 25%,16% 50%,18% 30%,20% 55%,22% 20%,24% 50%,26% 35%,28% 55%,30% 25%,32% 50%,34% 30%,36% 55%,38% 20%,40% 50%,42% 35%,44% 55%,46% 25%,48% 50%,50% 30%,52% 55%,54% 20%,56% 50%,58% 35%,60% 55%,62% 25%,64% 50%,66% 30%,68% 55%,70% 20%,72% 50%,74% 35%,76% 55%,78% 25%,80% 50%,82% 30%,84% 55%,86% 20%,88% 50%,90% 35%,92% 55%,94% 25%,96% 50%,98% 30%,100% 50%,100% 100%);
}

/* ─── TRUST STRIP ─── */
.trust-strip {
  background:linear-gradient(135deg, var(--purple), var(--purple-mid));
  padding:18px 40px; display:flex; align-items:center;
  justify-content:center; gap:40px; flex-wrap:wrap;
}
.trust-item { display:flex; align-items:center; gap:8px; color:rgba(255,255,255,.9); font-size:13px; font-weight:700; }
.trust-item .ti { width:28px; height:28px; border-radius:50%; background:rgba(255,255,255,.2); display:flex; align-items:center; justify-content:center; font-size:14px; }

/* ─── SECTIONS ─── */
section { padding:80px 40px; }
.container { max-width:1200px; margin:0 auto; }
.section-label {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--purple-light); color:var(--purple);
  font-size:12px; font-weight:800; letter-spacing:.06em; text-transform:uppercase;
  padding:5px 16px; border-radius:100px; margin-bottom:14px;
}
.section-title { font-family:'Fredoka One', cursive; font-size:clamp(28px,3.5vw,44px); color:var(--purple); line-height:1.15; margin-bottom:14px; }
.section-title .pink { color:var(--pink); }
.section-desc { font-size:16px; color:var(--text-mid); line-height:1.8; max-width:580px; }
.section-header { margin-bottom:50px; }
.section-header.center { text-align:center; }
.section-header.center .section-desc { margin:0 auto; }

/* ─── WAS IST ─── */
.was-ist { background:var(--purple-pale); }
.was-ist-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.highlights { display:flex; flex-direction:column; gap:14px; margin-top:24px; }
.hl-item {
  display:flex; gap:14px; align-items:flex-start;
  background:white; border-radius:var(--radius-sm);
  border:2px solid var(--purple-light); padding:16px 20px;
  box-shadow:0 3px 12px rgba(155,63,165,.08); transition:transform .2s;
}
.hl-item:hover { transform:translateX(4px); }
.hl-emoji { font-size:24px; flex-shrink:0; margin-top:2px; }
.hl-item h4 { font-size:14px; font-weight:800; color:var(--purple); margin-bottom:3px; }
.hl-item p { font-size:13px; color:var(--text-mid); line-height:1.5; }
.law-bubble { background:linear-gradient(135deg, var(--purple), var(--purple-mid)); border-radius:var(--radius); padding:32px; color:white; }
.law-bubble h3 { font-family:'Fredoka One', cursive; font-size:22px; margin-bottom:14px; }
.law-bubble p { font-size:14px; color:rgba(255,255,255,.8); line-height:1.7; margin-bottom:12px; }
.law-pill { display:inline-block; background:rgba(255,255,255,.2); border:1px solid rgba(255,255,255,.35); color:white; font-size:11px; font-weight:800; padding:3px 12px; border-radius:100px; margin:3px; }
.info-bubble { background:white; border:2px solid var(--purple-light); border-radius:var(--radius-sm); padding:20px; margin-top:16px; font-size:13px; font-style:italic; color:var(--text-mid); line-height:1.7; box-shadow:var(--shadow); }
.info-bubble strong { color:var(--purple); }

/* ─── LEISTUNGEN ─── */
.leistungen-sec { background:white; }
.leistungen-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.leistung-card {
  background:var(--bg-light); border:2px solid var(--border);
  border-radius:var(--radius); padding:30px 24px;
  position:relative; overflow:hidden; transition:all .25s;
}
.leistung-card:hover { border-color:var(--purple-mid); box-shadow:var(--shadow-lg); transform:translateY(-4px); }
.leistung-card-top { position:absolute; top:0; left:0; right:0; height:6px; border-radius:var(--radius) var(--radius) 0 0; }
.lc-1 { background:linear-gradient(90deg, var(--purple), var(--purple-mid)); }
.lc-2 { background:linear-gradient(90deg, var(--pink), var(--orange)); }
.lc-3 { background:linear-gradient(90deg, var(--teal), var(--blue)); }
.lc-4 { background:linear-gradient(90deg, var(--green), var(--teal)); }
.lc-5 { background:linear-gradient(90deg, var(--orange), var(--yellow)); }
.lc-6 { background:linear-gradient(90deg, var(--blue), var(--purple)); }
.leistung-icon { font-size:36px; margin-bottom:14px; display:block; margin-top:6px; }
.leistung-card h3 { font-family:'Fredoka One', cursive; font-size:18px; color:var(--purple); margin-bottom:10px; }
.leistung-card p { font-size:13px; color:var(--text-mid); line-height:1.7; }
.leistung-pills { display:flex; flex-wrap:wrap; gap:8px; margin-top:40px; justify-content:center; }
.l-pill {
  display:inline-flex; align-items:center; gap:6px;
  background:var(--purple-pale); border:2px solid var(--purple-light);
  color:var(--purple); font-size:13px; font-weight:700;
  padding:7px 16px; border-radius:100px; transition:all .2s;
}
.l-pill:hover { background:var(--purple); color:white; border-color:var(--purple); }

/* ─── KRANKHEITSBILDER ─── */
.krankheiten-sec { background:var(--blue-light); }
.krankheit-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.k-card { background:white; border:2px solid #bde0f8; border-radius:var(--radius-sm); padding:20px 16px; transition:all .2s; }
.k-card:hover { border-color:var(--blue); box-shadow:0 6px 20px rgba(74,144,217,.15); transform:translateY(-2px); }
.k-dot { width:10px; height:10px; border-radius:50%; background:var(--purple); display:inline-block; margin-bottom:8px; }
.k-card h4 { font-size:13px; font-weight:800; color:var(--purple); margin-bottom:4px; }
.k-card p { font-size:12px; color:var(--text-light); line-height:1.5; }

/* ─── PHILOSOPHIE ─── */
.philosophie-sec { background:white; }
.phil-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.phil-quote { background:linear-gradient(135deg, var(--pink), var(--purple)); border-radius:var(--radius); padding:40px; color:white; text-align:center; position:relative; }
.phil-quote::before { content:'"'; position:absolute; top:10px; left:24px; font-size:80px; opacity:.2; font-family:'Fredoka One',cursive; line-height:1; }
.phil-quote blockquote { font-family:'Fredoka One', cursive; font-size:22px; line-height:1.5; margin-bottom:14px; position:relative; z-index:1; }
.phil-quote cite { font-size:13px; color:rgba(255,255,255,.7); }
.phil-points { display:flex; flex-direction:column; gap:16px; margin-top:8px; }
.phil-point { display:flex; gap:14px; align-items:flex-start; background:var(--purple-pale); border-radius:var(--radius-sm); padding:18px; border-left:4px solid var(--purple); }
.phil-emoji { font-size:24px; flex-shrink:0; }
.phil-point h4 { font-size:14px; font-weight:800; color:var(--purple); margin-bottom:3px; }
.phil-point p { font-size:13px; color:var(--text-mid); line-height:1.5; }

/* ─── FINANZIERUNG ─── */
.finanzierung-sec { background:var(--green-light); }
.finanz-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.finanz-cards-col { display:flex; flex-direction:column; gap:14px; }
.finanz-card { background:white; border:2px solid #b8e0b8; border-radius:var(--radius-sm); padding:20px 22px; display:flex; gap:14px; align-items:flex-start; transition:all .2s; }
.finanz-card:hover { border-color:var(--green); box-shadow:0 4px 16px rgba(92,184,92,.15); }
.finanz-emoji { font-size:28px; flex-shrink:0; }
.finanz-card h4 { font-size:14px; font-weight:800; color:var(--text); margin-bottom:4px; }
.finanz-card p { font-size:13px; color:var(--text-mid); line-height:1.6; }
.finanz-highlight { background:linear-gradient(135deg, var(--green), var(--teal)); border-radius:var(--radius-sm); padding:20px 22px; display:flex; gap:12px; align-items:flex-start; color:white; margin-top:4px; }
.finanz-highlight p { font-size:13px; line-height:1.6; color:rgba(255,255,255,.9); }

/* ─── PROZESS ─── */
.prozess-sec { background:white; }
.prozess-row { display:grid; grid-template-columns:repeat(5,1fr); gap:0; position:relative; }
.prozess-row::before { content:''; position:absolute; top:44px; left:10%; right:10%; height:4px; background:linear-gradient(90deg, var(--purple), var(--pink), var(--orange)); border-radius:4px; z-index:0; }
.prozess-step { display:flex; flex-direction:column; align-items:center; text-align:center; padding:0 8px; position:relative; z-index:1; }
.step-bubble { width:88px; height:88px; border-radius:50%; background:white; border:4px solid var(--purple); display:flex; align-items:center; justify-content:center; margin-bottom:16px; box-shadow:0 4px 16px rgba(155,63,165,.2); font-size:32px; position:relative; }
.step-bubble .step-n { position:absolute; top:-4px; right:-4px; width:24px; height:24px; border-radius:50%; background:var(--pink); color:white; font-size:12px; font-weight:900; display:flex; align-items:center; justify-content:center; }
.prozess-step h4 { font-size:13px; font-weight:800; color:var(--purple); margin-bottom:6px; }
.prozess-step p { font-size:12px; color:var(--text-mid); line-height:1.5; }

/* ─── FAMILIE ─── */
.familie-sec { background:var(--pink-light); }
.familie-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.familie-cards-wrap { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.fam-card { background:white; border:2px solid #f0a8c8; border-radius:var(--radius-sm); padding:22px 18px; transition:transform .2s; }
.fam-card:hover { transform:translateY(-3px); box-shadow:0 6px 20px rgba(224,80,154,.15); }
.fam-emoji { font-size:28px; margin-bottom:10px; }
.fam-card h4 { font-size:14px; font-weight:800; color:var(--purple); margin-bottom:6px; }
.fam-card p { font-size:13px; color:var(--text-mid); line-height:1.6; }

/* ─── QUALITÄT ─── */
.qualitaet-sec { background:white; }
.q-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.q-card { background:var(--purple-pale); border:2px solid var(--purple-light); border-radius:var(--radius); padding:30px 24px; text-align:center; transition:all .25s; }
.q-card:hover { background:var(--purple); border-color:var(--purple); }
.q-card:hover h3, .q-card:hover p { color:white; }
.q-emoji { font-size:40px; margin-bottom:14px; display:block; }
.q-card h3 { font-family:'Fredoka One', cursive; font-size:18px; color:var(--purple); margin-bottom:10px; transition:color .25s; }
.q-card p { font-size:13px; color:var(--text-mid); line-height:1.7; transition:color .25s; }

/* ─── FRANCHISE ─── */
.franchise-sec { background:var(--purple-pale); }
.franchise-banner { background:linear-gradient(135deg, var(--purple), var(--pink)); border-radius:var(--radius); padding:56px 52px; margin-bottom:60px; position:relative; overflow:hidden; color:white; }
.franchise-banner::after { content:'🚀'; position:absolute; right:48px; top:50%; transform:translateY(-50%); font-size:120px; opacity:.15; }
.franchise-banner h2 { font-family:'Fredoka One', cursive; font-size:clamp(28px,4vw,48px); margin-bottom:16px; }
.franchise-banner p { font-size:17px; color:rgba(255,255,255,.85); max-width:620px; line-height:1.75; margin-bottom:28px; }
.franchise-stats { display:flex; gap:24px; flex-wrap:wrap; }
.franchise-stat { background:rgba(255,255,255,.15); border:1px solid rgba(255,255,255,.25); border-radius:var(--radius-sm); padding:16px 24px; text-align:center; }
.fs-num { font-family:'Fredoka One', cursive; font-size:32px; }
.fs-label { font-size:11px; color:rgba(255,255,255,.7); margin-top:2px; }
.franchise-pillars { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-bottom:40px; }
.fp-card { background:white; border:2px solid var(--purple-light); border-radius:var(--radius); padding:28px; transition:all .25s; }
.fp-card:hover { border-color:var(--purple); box-shadow:var(--shadow); transform:translateY(-3px); }
.fp-num { font-family:'Fredoka One', cursive; font-size:44px; color:var(--purple-light); line-height:1; margin-bottom:10px; }
.fp-card h3 { font-size:16px; font-weight:800; color:var(--purple); margin-bottom:8px; }
.fp-card p { font-size:13px; color:var(--text-mid); line-height:1.7; }
.franchise-leistungen { background:white; border:2px solid var(--purple-light); border-radius:var(--radius); padding:40px; margin-bottom:32px; }
.franchise-leistungen h3 { font-family:'Fredoka One', cursive; font-size:26px; color:var(--purple); margin-bottom:28px; }
.fl-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.fl-item { display:flex; gap:12px; align-items:flex-start; background:var(--purple-pale); border-radius:var(--radius-sm); padding:18px; }
.fl-check { width:28px; height:28px; border-radius:50%; background:var(--purple); color:white; font-size:12px; font-weight:900; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.fl-item h4 { font-size:13px; font-weight:800; color:var(--purple); margin-bottom:3px; }
.fl-item p { font-size:12px; color:var(--text-mid); line-height:1.5; }
.franchise-reqs { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-bottom:32px; }
.req-box { border-radius:var(--radius); padding:30px; }
.req-voraus { background:white; border:2px solid var(--purple-light); }
.req-ideal { background:linear-gradient(135deg, var(--purple), var(--purple-mid)); color:white; }
.req-box h3 { font-size:17px; font-weight:800; margin-bottom:16px; color:var(--purple); }
.req-ideal h3 { color:white; }
.req-list { list-style:none; display:flex; flex-direction:column; gap:10px; }
.req-list li { display:flex; gap:10px; align-items:flex-start; font-size:13px; color:var(--text-mid); line-height:1.5; }
.req-ideal .req-list li { color:rgba(255,255,255,.85); }
.req-list li::before { content:'✓'; width:20px; height:20px; border-radius:50%; background:var(--purple-light); color:var(--purple); font-size:11px; font-weight:900; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.req-ideal .req-list li::before { background:rgba(255,255,255,.2); color:white; }
.franchise-cta-bar { background:white; border:2px solid var(--border); border-radius:var(--radius); padding:40px 44px; display:flex; align-items:center; justify-content:space-between; gap:32px; }
.franchise-cta-bar h3 { font-family:'Fredoka One', cursive; font-size:26px; color:var(--purple); margin-bottom:8px; }
.franchise-cta-bar p { font-size:15px; color:var(--text-mid); line-height:1.7; }
.cta-btns { display:flex; flex-direction:column; gap:10px; flex-shrink:0; }
.btn-cta-primary { background:linear-gradient(135deg, var(--purple), var(--pink)); color:white; padding:14px 32px; border-radius:100px; font-size:14px; font-weight:800; text-decoration:none; text-align:center; box-shadow:0 4px 14px rgba(155,63,165,.3); transition:all .2s; }
.btn-cta-primary:hover { transform:translateY(-2px); color:white; }
.btn-cta-outline { border:2px solid var(--border); color:var(--text-mid); padding:12px 28px; border-radius:100px; font-size:14px; font-weight:800; text-decoration:none; text-align:center; transition:all .2s; }
.btn-cta-outline:hover { border-color:var(--purple); color:var(--purple); }

/* ─── EMPFEHLUNGEN ─── */
.empf-sec { background:var(--blue-light); }
.empf-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.empf-card { background:white; border:2px solid #bde0f8; border-radius:var(--radius); padding:28px; transition:all .25s; }
.empf-card:hover { border-color:var(--blue); box-shadow:0 6px 24px rgba(74,144,217,.15); transform:translateY(-3px); }
.empf-badge { display:inline-flex; align-items:center; background:var(--orange); color:white; font-size:10px; font-weight:900; letter-spacing:.06em; text-transform:uppercase; padding:3px 10px; border-radius:100px; margin-bottom:12px; }
.empf-card h3 { font-size:15px; font-weight:800; color:var(--purple); margin-bottom:8px; }
.empf-card p { font-size:13px; color:var(--text-mid); line-height:1.7; }
.empf-link { font-size:13px; font-weight:800; color:var(--blue); text-decoration:none; display:inline-flex; align-items:center; gap:4px; margin-top:12px; }
.empf-link:hover { color:var(--purple); }

/* ─── KONTAKT ─── */
.kontakt-sec { background:linear-gradient(135deg, var(--purple), var(--purple-mid)); }
.kontakt-inner { display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:start; }
.kontakt-left { color:white; }
.kontakt-left .section-title { color:white; }
.kontakt-left .section-label { background:rgba(255,255,255,.2); color:white; }
.kontakt-left .section-desc { color:rgba(255,255,255,.8); max-width:100%; margin-bottom:32px; }
.k-info-list { display:flex; flex-direction:column; gap:12px; }
.k-info-item { display:flex; gap:12px; align-items:center; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.2); border-radius:var(--radius-sm); padding:14px 18px; }
.ki-icon { font-size:20px; flex-shrink:0; }
.k-info-item span { font-size:14px; font-weight:700; color:rgba(255,255,255,.9); }
.kontakt-form-box { background:white; border-radius:var(--radius); padding:40px; box-shadow:0 20px 60px rgba(0,0,0,.15); }
.kontakt-form-box h3 { font-family:'Fredoka One', cursive; font-size:24px; color:var(--purple); margin-bottom:24px; }
.form-group { margin-bottom:16px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:16px; }
label { font-size:13px; font-weight:800; color:var(--text-mid); display:block; margin-bottom:5px; }
input, select, textarea { width:100%; border:2px solid var(--border); border-radius:var(--radius-sm); padding:11px 16px; font-family:'Nunito',sans-serif; font-size:14px; font-weight:600; color:var(--text); background:var(--bg-light); outline:none; transition:border-color .2s; }
input:focus, select:focus, textarea:focus { border-color:var(--purple); background:white; }
textarea { resize:vertical; min-height:90px; }
.form-check { display:flex; gap:10px; align-items:flex-start; margin-bottom:18px; }
.form-check input { width:18px; height:18px; flex-shrink:0; margin-top:2px; }
.form-check label { font-size:12px; font-weight:600; margin:0; color:var(--text-mid); }
.form-submit { width:100%; background:linear-gradient(135deg, var(--purple), var(--pink)); color:white; padding:14px; border-radius:100px; border:none; font-family:'Nunito',sans-serif; font-size:15px; font-weight:900; cursor:pointer; box-shadow:0 4px 14px rgba(155,63,165,.3); transition:all .2s; }
.form-submit:hover { transform:translateY(-2px); }

/* ─── KINDER STRIP ─── */
.kinder-strip { background:var(--green); padding:16px 40px; display:flex; align-items:center; justify-content:center; gap:16px; flex-wrap:wrap; overflow:hidden; }
.kinder-strip span { font-size:32px; animation:bounce 2s infinite; }
.kinder-strip span:nth-child(2) { animation-delay:.2s; }
.kinder-strip span:nth-child(3) { animation-delay:.4s; }
.kinder-strip span:nth-child(4) { animation-delay:.6s; }
.kinder-strip span:nth-child(5) { animation-delay:.8s; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ─── FOOTER ─── */
footer { background:#1a0a22; padding:56px 40px 28px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; margin-bottom:40px; }
.footer-logo-name { font-family:'Fredoka One', cursive; font-size:26px; }
.footer-logo-name .m { color:var(--purple-mid); }
.footer-logo-name .k { color:var(--pink); }
.footer-sub { font-size:11px; font-weight:700; letter-spacing:.06em; color:rgba(255,255,255,.4); text-transform:uppercase; margin-bottom:12px; }
.footer-brand p { font-size:13px; color:rgba(255,255,255,.4); line-height:1.7; margin-top:10px; }
.footer-col h4 { font-size:11px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; color:rgba(255,255,255,.35); margin-bottom:14px; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:9px; }
.footer-col ul li a { font-size:13px; font-weight:600; color:rgba(255,255,255,.5); text-decoration:none; transition:color .2s; }
.footer-col ul li a:hover { color:white; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.07); padding-top:24px; display:flex; align-items:center; justify-content:space-between; }
.footer-bottom p { font-size:12px; color:rgba(255,255,255,.25); }
.footer-hotline { font-family:'Fredoka One', cursive; font-size:16px; color:var(--purple-mid); }

/* ─── SCROLL ANIMATION ─── */
.fade-up { opacity:0; transform:translateY(24px); transition:opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity:1; transform:translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width:1024px) {
  nav { padding:0 20px; }
  .nav-links { display:none; }
  section { padding:60px 20px; }
  .hero { padding:90px 20px 0; }
  .hero-inner, .was-ist-grid, .finanz-grid, .phil-grid, .familie-grid, .kontakt-inner { grid-template-columns:1fr; gap:40px; }
  .leistungen-grid, .q-grid, .franchise-pillars, .empf-grid { grid-template-columns:1fr 1fr; }
  .krankheit-grid { grid-template-columns:repeat(2,1fr); }
  .prozess-row { grid-template-columns:1fr 1fr 1fr; gap:20px; }
  .prozess-row::before { display:none; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .franchise-cta-bar { flex-direction:column; }
  .franchise-reqs, .fl-grid { grid-template-columns:1fr; }
  .trust-strip { gap:18px; padding:18px 20px; }
  .hero-inner { padding-bottom:40px; }
}
@media (max-width:600px) {
  .leistungen-grid, .q-grid, .franchise-pillars, .empf-grid { grid-template-columns:1fr; }
  .krankheit-grid { grid-template-columns:1fr 1fr; }
  .hero-stat-grid { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .familie-cards-wrap { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .prozess-row { grid-template-columns:1fr 1fr; }
  .franchise-banner { padding:32px 24px; }
  .franchise-banner::after { display:none; }
}
