/*
Theme Name: MeineMonte
Theme URI: https://meinemonte.de
Author: MeineMonte
Description: Marketing-Theme der MeineMonte Montessori-Web-App. Enthaelt alle Seiten, SEO, selbstgehostete Schrift und Assets. Beim Aktivieren werden die Seiten automatisch angelegt.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: Proprietary
Text Domain: meine-monte
*/

/* ============================================================
   meine Monte — Marketing-Website (Mockup)
   Marken-Stil aus der Web-App: warmes Creme, Fredoka,
   dicke gerundete Ränder, harte Offset-Schatten.
   ============================================================ */
@font-face {
  font-family: 'Fredoka';
  src: url('assets/fonts/fredoka.woff2') format('woff2');
  font-weight: 300 700; font-style: normal; font-display: swap;
}

:root {
  --navy:        #052a75;
  --navy-soft:   #1f4a9e;
  --bg-page:     #fff7ed;
  --bg-cream:    #f5ead0;
  --card-bg:     #ffffff;
  --card-border: #fbdfbf;
  --card-shadow: #ffefdc;

  --green-soft:  #b8d96e;
  --teal:        #8dd4d6;
  --orange-card: #f7a23d;
  --pink:        #f5a3b8;
  --coral:       #f47565;
  --news-red:    #f96155;
  --orange:      #f59330;
  --yellow:      #f5c542;

  --text-muted:  #f5a86a;
  --text-body:   #4a5568;

  --shadow-hard: 6px 6px 0 var(--card-shadow);
  --shadow-soft: 0 9px 12px -7px rgba(5,42,117,0.22);
  --maxw: 1120px;
}

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Fredoka', sans-serif;
  color: var(--navy);
  background:
    radial-gradient(circle at 18% 6%, rgba(245,168,106,0.12), transparent 46%),
    radial-gradient(circle at 84% 92%, rgba(184,217,110,0.10), transparent 48%),
    var(--bg-cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------------- Header / Nav ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,247,237,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--card-border);
  box-shadow: var(--shadow-soft);
}
.nav {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  height: 76px; gap: 14px;
}
.brand { justify-self: start; flex-shrink: 0; }
.brand img { width: 150px; height: auto; filter: drop-shadow(0 3px 4px rgba(5,42,117,0.15)); }
@keyframes logo-bounce { 0%,100%{transform:translateY(0)} 25%{transform:translateY(-6px)} 75%{transform:translateY(6px)} }
.brand:hover img { animation: logo-bounce .55s ease-in-out infinite; }
.nav-links { justify-self: center; display: flex; align-items: center; gap: 6px; list-style: none;
  overflow: visible; flex-wrap: nowrap; max-width: 100%; }
.nav-links::-webkit-scrollbar { display: none; }
.nav-links li { flex-shrink: 0; }
.nav-links a { white-space: nowrap; }
.nav-cta { justify-self: end; white-space: nowrap; flex-shrink: 0; }
.nav-links a {
  font-weight: 600; font-size: 15px; color: var(--navy);
  padding: 9px 13px; border-radius: 12px; transition: background .15s, color .15s;
}
.nav-links a:hover { background: var(--card-shadow); }
.nav-links a.active { color: var(--coral); }
.nav-links .has-sub { position: relative; }
.nav-links .caret { font-size: .66em; opacity: .8; }
.submenu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  margin-top: 6px; min-width: 210px; background: var(--bg-page);
  border: 3px solid var(--card-border); border-radius: 16px; box-shadow: var(--shadow-soft);
  padding: 8px; list-style: none; display: none; flex-direction: column; gap: 2px; z-index: 120; }
.nav-links .has-sub:hover .submenu, .nav-links .has-sub:focus-within .submenu { display: flex; }
.submenu a { display: block; padding: 9px 14px; border-radius: 10px; font-size: 14.5px; }
.submenu a:hover { background: var(--cream); }
.aud-bar { display: flex; justify-content: center; margin: 2px 0 22px; }
.aud-toggle { display: inline-flex; gap: 6px; background: var(--card-bg);
  border: 3px solid var(--card-border); border-radius: 999px; padding: 5px; margin-top: 0;
  box-shadow: var(--shadow-soft); }
.aud-toggle a { padding: 8px 18px; border-radius: 999px; font-weight: 700; font-size: 14.5px; color: var(--navy); }
.aud-toggle a.active { background: var(--coral); color: #fff; }
.nav-cta {
  background: var(--green-soft);
  border: 3px solid var(--navy);
  border-radius: 14px;
  padding: 9px 18px; font-weight: 700; font-size: 15px; color: var(--navy);
  box-shadow: 3px 3px 0 var(--navy);
  transition: transform .12s, box-shadow .12s;
  position: relative; top: -2.5px;
}
.cta-balloons { position: absolute; top: -17px; right: -13px; width: 36px; height: auto; pointer-events: none; }
.nav-cta:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--navy); }
.nav-cta:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--navy); }
.hamburger { display: none; align-items: center; gap: 8px; background: #fff; border: 3px solid var(--navy);
  border-radius: 12px; padding: 6px 13px 6px 10px; cursor: pointer; box-shadow: 3px 3px 0 var(--navy);
  font-family: 'Fredoka', sans-serif; font-weight: 700; color: var(--navy); line-height: 1; }
.hamburger img { width: 26px; height: 26px; display: block; }
.hamburger .hb-text { font-size: 15px; }
.hamburger:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--navy); }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-block; font-family: inherit; font-weight: 700; font-size: 16px;
  border: 3px solid var(--navy); border-radius: 16px; padding: 13px 26px;
  cursor: pointer; box-shadow: 4px 4px 0 var(--navy);
  transition: transform .12s, box-shadow .12s; color: var(--navy); background: var(--card-bg);
}
.btn:hover { transform: translate(-1px,-1px); box-shadow: 5px 5px 0 var(--navy); }
.btn:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--navy); }
.btn-coral  { background: var(--coral);  color: #fff; }
.btn-green  { background: var(--green-soft); }
.btn-teal   { background: var(--teal); }
.btn-white  { background: #fff; }
.btn-ghost  { background: transparent; box-shadow: none; }
.btn-ghost:hover { background: var(--card-shadow); transform: none; box-shadow: none; }
.btn-soft {
  background: rgba(255,255,255,0.10); color: #fff;
  border: 2px solid rgba(255,255,255,0.55); box-shadow: none;
}
.btn-soft:hover { background: rgba(255,255,255,0.20); box-shadow: none; }
.btn-soft:active { background: rgba(255,255,255,0.16); transform: translate(1px,1px); box-shadow: none; }
.btn-lg { font-size: 19px; padding: 16px 34px; }

/* ---------------- Sticker word-art (Flyer-Stil) ---------------- */
.sticker {
  display: inline-block;
  font-weight: 700;
  -webkit-text-stroke: 7px #fff;
  paint-order: stroke fill;
  text-shadow: 3px 4px 0 rgba(5,42,117,0.18);
  line-height: 1;
}
.sticker-coral { color: var(--coral); transform: rotate(-2.5deg); }
.sticker-teal  { color: var(--teal);  transform: rotate(-1.5deg); }
.sticker-green { color: var(--green-soft); transform: rotate(1.5deg); }

/* ---------------- Hero ---------------- */
.hero { padding: 30px 0 40px; position: relative; text-align: center; }
.hero .eyebrow { display: flex; justify-content: flex-start; text-align: left; }
.hero h1, .hero .lead { margin-left: auto; margin-right: auto; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
/* Auto-fade slider */
.mm-slider { position: relative; overflow: hidden; width: 100%; height: 100%; }
.mm-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1s ease-in-out; }
.mm-slider img.active { opacity: 1; }
.mm-dots { position: absolute; left: 0; right: 0; bottom: 12px; z-index: 3;
  display: flex; justify-content: center; gap: 8px; }
.mm-dots button { width: 12px; height: 12px; padding: 0; border-radius: 50%;
  border: 2px solid #fff; background: rgba(255,255,255,.55); cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,.35); transition: background .2s, transform .2s; }
.mm-dots button:hover { transform: scale(1.15); }
.mm-dots button.active { background: var(--coral); }
/* Hero V1: text left, slider card right */
.hero-v1 { text-align: left; }
.hero-v1 .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.hero-v1 .slide-card { order: 1; }
.hero-v1-text { order: 2; }
.hero-v1-text { display: flex; flex-direction: column; }
.hero-v1 h1 { margin: 0; font-size: clamp(22px,2.5vw,31px); line-height: 1.12; }
.hero-v1 .lead { margin: 14px 0 20px; font-size: clamp(15px,1.5vw,17px); }
.hero-v1 .hero-cta { justify-content: flex-start; margin-top: auto; }
.hero-v1 .slide-card { height: 100%; min-height: 340px; border: 5px solid var(--teal); border-radius: 24px;
  box-shadow: var(--shadow-hard); overflow: hidden; }
@media (max-width: 820px) {
  .hero-v1 .wrap { grid-template-columns: 1fr; gap: 26px; align-items: start; }
  .hero-v1 .slide-card { height: 300px; min-height: 0; order: 2; }
  .hero-v1-text { order: 1; }
  .hero-v1 .hero-cta { margin-top: 8px; }
}
/* Herzstück hero figure (boy with map) */
/* Einheitliche Hoehe + Personenbild-Groesse fuer alle Unterseiten-Heroes (ausser Startseite) */
.herz-hero, .ds-hero, .person-hero, .fam-hero { min-height: 345px; }
.herz-hero .wrap, .ds-hero .wrap, .person-hero .wrap { position: relative; min-height: 312px; }
.herz-hero-text { max-width: 64%; }
.herz-hero-boy { position: absolute; right: 0; bottom: -10px; width: 300px; max-width: 34%; height: auto; pointer-events: none; }
@media (max-width: 760px) {
  .herz-hero, .ds-hero, .person-hero, .page-hero { min-height: 0; }
  .herz-hero-text { max-width: 100%; }
  .herz-hero-boy { position: static; width: 210px; margin: 14px auto 0; max-width: 58%; display: block; }
}
/* Person hero figure (preise, referenzen) */
.person-hero .wrap { position: relative; }
.person-hero-text { max-width: 64%; }
.person-hero-img { position: absolute; right: 0; bottom: -10px; width: 300px; max-width: 34%; height: auto; pointer-events: none; }
@media (max-width: 760px) {
  .person-hero-text { max-width: 100%; }
  .person-hero-img { position: static; width: 210px; margin: 14px auto 0; max-width: 58%; display: block; }
}
.hero h1 {
  font-size: clamp(34px, 5.4vw, 60px); font-weight: 700; letter-spacing: -1px;
  line-height: 1.08; max-width: 760px;
}
.hero .lead {
  font-size: clamp(17px,2vw,21px); color: var(--text-body); font-weight: 500;
  max-width: 620px; margin: 22px auto 30px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px;
  color: var(--coral); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
}
.eyebrow::before { content:""; width: 26px; height: 3px; background: var(--coral); border-radius: 3px; }
.hero-tagline {
  font-size: clamp(17px,2vw,21px); font-weight: 500; color: var(--text-body);
  margin-bottom: 14px;
}
.divider { width: 80%; max-width: 820px; height: 4px; border-radius: 999px;
  background: #f7dfc0; margin: 8px auto 0; }
/* Trenner zwischen aufeinanderfolgenden Sektionen (ohne Mehrabstand) */
section { position: relative; }
section + section::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 80%; max-width: 820px; height: 4px; border-radius: 999px; background: #f7dfc0;
}

/* ---------------- Sections ---------------- */
.section { padding: 56px 0; }
.section-tight { padding: 36px 0; }
.section h2, .section h1.as-h2 {
  font-size: clamp(27px,3.5vw,40px); font-weight: 700; letter-spacing: -0.6px; line-height: 1.12;
  max-width: 720px;
}
.section .sub { font-size: 18px; color: var(--text-body); font-weight: 500; max-width: 640px; margin-top: 14px; }
.center { text-align: center; }
.center h2, .center .sub, h2.center, .sub.center, .center h1.as-h2, h1.as-h2.center { margin-left: auto; margin-right: auto; }

/* ---------------- Cards ---------------- */
.card {
  background: var(--card-bg); border: 5px solid var(--card-border); border-radius: 22px;
  padding: 26px 24px; box-shadow: var(--shadow-hard);
  transition: transform .15s, box-shadow .15s; text-align: center;
}
.card .feature-row { text-align: left; }
.card .pills { justify-content: center; }
.card.link:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--card-shadow); }
.card .icon { width: 96px; height: 96px; object-fit: contain; margin: 0 auto 10px; }
.card .icon-sm { width: 64px; height: 64px; object-fit: contain; margin: 0 auto 10px; }
.card h3 { font-size: 23px; font-weight: 700; letter-spacing: -0.3px; }
.card p { color: var(--text-body); font-weight: 500; margin-top: 8px; font-size: 15.5px; }

.grid { display: grid; gap: 22px; align-items: stretch; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }

/* split path cards on home */
.path-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; text-align: center; }
.path-photo { width: 100%; height: auto; display: block; border-radius: 16px 16px 0 0; }
.path-body { padding: 26px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.path-head { display: flex; align-items: center; gap: 12px; justify-content: center; }
.path-head img { width: 50px; height: 50px; object-fit: contain; flex-shrink: 0; }
.path-head h3 { font-size: 26px; letter-spacing: -0.3px; }
.path-card p { color: var(--text-body); font-weight: 500; margin-top: 12px; font-size: 15.5px; }
.path-card .btn { align-self: center; margin-top: 22px; }
.path-card.eltern { border-color: var(--teal); }
.path-card.schule { border-color: var(--green-soft); }
.path-card.eltern .path-photo { border-bottom: 5px solid var(--teal); box-shadow: var(--shadow-soft); }
.path-card.schule .path-photo { border-bottom: 5px solid var(--green-soft); box-shadow: var(--shadow-soft); }

/* ---------------- Steps (1-2-3) ---------------- */
.steps { counter-reset: step; display: grid; gap: 20px; }
.step {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--card-bg); border: 5px solid var(--card-border); border-radius: 20px;
  padding: 22px 24px; box-shadow: var(--shadow-hard);
}
.step-num {
  counter-increment: step; flex-shrink: 0;
  width: 54px; height: 54px; border-radius: 50%; background: var(--coral); color: #fff;
  border: 3px solid var(--navy); display: grid; place-items: center;
  font-size: 24px; font-weight: 700; box-shadow: 3px 3px 0 var(--navy);
}
.step-num::before { content: counter(step); }
.step h4 { font-size: 20px; font-weight: 700; }
.step p { color: var(--text-body); font-weight: 500; margin-top: 4px; }

/* ---------------- Checklist pills ---------------- */
.pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.pill {
  display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 15px;
  background: var(--card-bg); border: 3px solid var(--card-border); border-radius: 999px;
  padding: 9px 18px; box-shadow: 3px 3px 0 var(--card-shadow);
}
.pill::before { content: "✓"; color: var(--green-soft); font-weight: 700; }

/* ---------------- Principle cards (Datenschutz) ---------------- */
.principle { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.principle-photo { width: 100%; height: auto; display: block; box-shadow: var(--shadow-soft); }
.principle-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.principle .tag {
  display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: .4px;
  color: var(--navy); background: var(--teal); border: 2px solid var(--navy);
  border-radius: 8px; padding: 3px 10px; margin: 0 auto 12px;
}
.principle .ref { font-size: 13px; color: var(--text-muted); font-weight: 600; margin-top: 10px; }
.principle:nth-child(1) .principle-photo { border-bottom: 5px solid var(--teal); }
.principle:nth-child(2) .principle-photo { border-bottom: 5px solid var(--coral); }
.principle:nth-child(3) .principle-photo { border-bottom: 5px solid var(--green-soft); }
.principle:nth-child(4) .principle-photo { border-bottom: 5px solid var(--orange); }
.principle:nth-child(2) .tag { background: var(--coral); color: #fff; }
.principle:nth-child(3) .tag { background: var(--green-soft); }
.principle:nth-child(4) .tag { background: var(--orange); color: #fff; }
.ds-photo { width: 100%; height: 100%; min-height: 300px; object-fit: cover; display: block;
  border: 5px solid var(--teal); border-radius: 22px; box-shadow: var(--shadow-hard); }
.ds-b-coral  { border-color: var(--coral); }
.ds-b-teal   { border-color: var(--teal); }
.ds-b-green  { border-color: var(--green-soft); }
.ds-b-orange { border-color: var(--orange); }
.ds-b-pink   { border-color: var(--pink); }
.ds-b-yellow { border-color: var(--yellow); }
.ds-b-navy   { border-color: var(--navy-soft); }
/* ---------------- FAQ ---------------- */
.faq-wrap { max-width: 840px; }
.faq-topic { margin-top: 42px; }
.faq-topic:first-child { margin-top: 0; }
.faq-h { display: flex; align-items: center; gap: 13px; color: var(--navy);
  font-size: clamp(21px,2.6vw,27px); font-weight: 700; letter-spacing: -0.4px; margin-bottom: 14px; }
.faq-ico { width: 40px; height: 40px; object-fit: contain; flex: none; }
details.faq-item { background: var(--card-bg); border: 2px solid var(--card-border);
  border-radius: 12px; margin-bottom: 10px; padding: 0 18px; }
details.faq-item summary { cursor: pointer; list-style: none; padding: 15px 0;
  font-weight: 600; color: var(--navy); font-size: 16.5px;
  display: flex; justify-content: space-between; align-items: center; gap: 14px; }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after { content: "+"; color: var(--coral); font-weight: 700;
  font-size: 24px; line-height: 1; flex: none; transition: transform .15s; }
details.faq-item[open] summary::after { content: "\2013"; }
details.faq-item[open] { border-color: var(--coral); }
.faq-a { padding: 0 0 16px; color: var(--text-body); font-weight: 500; font-size: 15.5px; }
.faq-a p { margin: 0; }
/* Data-handling cards (Datenschutz) with image banner */
.data-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.data-photo { width: 100%; height: auto; display: block; box-shadow: var(--shadow-soft); }
.data-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; align-items: center; text-align: center; }
.data-card .icon-sm { margin: 0 auto 8px; }
.data-card:nth-child(1) .data-photo { border-bottom: 5px solid var(--teal); }
.data-card:nth-child(2) .data-photo { border-bottom: 5px solid var(--coral); }
.data-card:nth-child(3) .data-photo { border-bottom: 5px solid var(--green-soft); }
.data-card:nth-child(4) .data-photo { border-bottom: 5px solid var(--orange); }
.data-card:nth-child(5) .data-photo { border-bottom: 5px solid var(--pink); }
.data-card:nth-child(6) .data-photo { border-bottom: 5px solid var(--navy-soft); }

/* ---------------- Feature list ---------------- */
.feature-row {
  display: flex; gap: 16px; align-items: flex-start; padding: 18px 0;
  border-bottom: 2px dashed var(--card-border);
}
.feature-row:last-child { border-bottom: none; }
.features-compact { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 32px; padding: 22px 26px; }
.features-compact .feature-row { padding: 9px 0; border-bottom: 2px dotted var(--card-border); align-items: flex-start; }
.features-compact .feature-row:nth-last-child(-n+2) { border-bottom: none; }
.features-compact .feature-row .dot { width: 22px; height: 22px; }
.features-compact .feature-row strong { font-size: 15.5px; }
.features-compact .feature-row span { font-size: 13px; margin-top: 1px; }
@media (max-width: 640px) { .features-compact { grid-template-columns: 1fr; } }
.feature-row .dot { flex-shrink: 0; width: 26px; height: 26px; margin-top: 1px;
  background: url('assets/yes.png') center/contain no-repeat; }
.feature-row strong { font-size: 18px; }
.feature-row span { display: block; color: var(--text-body); font-weight: 500; margin-top: 2px; }

/* ---------------- Interests chips ---------------- */
.interests { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.interest {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  background: var(--card-bg); border: 3px solid var(--card-border); border-radius: 18px;
  padding: 14px 10px; width: 104px; box-shadow: 3px 3px 0 var(--card-shadow); font-weight: 600; font-size: 13px;
}
.interest img { width: 46px; height: 46px; object-fit: contain; }

/* ---------------- Big call band ---------------- */
.band {
  background: var(--navy); color: #fff; border-radius: 28px; padding: 48px 40px; text-align: center;
  box-shadow: 8px 8px 0 rgba(5,42,117,0.25);
}
.band h2 { color: #fff; margin: 0 auto; }
.band .sub { color: #d8e3f7; }
/* Buttons in blauen Baendern: Rahmen in Footer-Menue-Farbe + weicher Schatten wie das Logo */
.band .btn { border-color: #1e3f83; box-shadow: 0 3px 5px rgba(5,42,117,0.30); }
.band .btn:hover { transform: translateY(-2px); box-shadow: 0 5px 9px rgba(5,42,117,0.40); }
.band .btn:active { transform: translateY(1px); box-shadow: 0 2px 4px rgba(5,42,117,0.30); }
/* Klickbare Karten: Hover-Feedback */
.card-link { transition: transform .14s, box-shadow .14s; position: relative; }
.card-link:hover { transform: scale(1.15); z-index: 10; box-shadow: 8px 8px 0 var(--card-shadow); }

/* ---------------- Forms ---------------- */
.form-card { background: var(--card-bg); border: 5px solid var(--green-soft); border-radius: 24px;
  padding: 34px; box-shadow: var(--shadow-hard); }
.form-card.dsgvo { border-color: var(--coral); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 15px; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 16px; color: var(--navy);
  background: var(--bg-page); border: 3px solid var(--card-border); border-radius: 14px;
  padding: 13px 15px; font-weight: 500;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--coral); }
.field textarea { resize: vertical; min-height: 120px; }
.field .hint { font-size: 13px; color: var(--text-muted); margin-top: 6px; font-weight: 500; }
.checkbox-row { display: flex; gap: 12px; align-items: flex-start; font-size: 14px;
  color: var(--text-body); font-weight: 500; margin-bottom: 18px; }
.checkbox-row input { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.mockup-note {
  font-size: 13px; font-weight: 600; color: var(--text-muted);
  background: var(--card-shadow); border: 2px dashed var(--card-border); border-radius: 12px;
  padding: 10px 14px; margin-bottom: 22px; text-align: center;
}

/* ---------------- Mini cards (Herzstück, 7 Felder) ---------------- */
.mini-grid { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }
.mini-card { width: 210px; background: var(--card-bg); border: 4px solid var(--card-border);
  border-radius: 18px; overflow: hidden; box-shadow: 4px 4px 0 var(--card-shadow);
  display: flex; flex-direction: column; }
.mini-photo { width: 100%; height: auto; display: block; box-shadow: var(--shadow-soft); }
.mini-body { padding: 14px 14px 18px; text-align: center; display: flex; flex-direction: column; flex: 1; align-items: center; }
.mini-ico { width: 46px; height: 46px; object-fit: contain; margin: 0 auto 6px; }
.mini-body h4 { font-size: 16px; font-weight: 700; letter-spacing: -0.2px; }
.mini-body p { font-size: 12.5px; color: var(--text-body); font-weight: 500; margin-top: 5px; line-height: 1.35; }
.mini-card:nth-child(7n+1) .mini-photo { border-bottom: 4px solid var(--teal); }
.mini-card:nth-child(7n+2) .mini-photo { border-bottom: 4px solid var(--coral); }
.mini-card:nth-child(7n+3) .mini-photo { border-bottom: 4px solid var(--green-soft); }
.mini-card:nth-child(7n+4) .mini-photo { border-bottom: 4px solid var(--orange); }
.mini-card:nth-child(7n+5) .mini-photo { border-bottom: 4px solid var(--pink); }
.mini-card:nth-child(7n+6) .mini-photo { border-bottom: 4px solid var(--yellow); }
.mini-card:nth-child(7n+7) .mini-photo { border-bottom: 4px solid var(--navy-soft); }

/* ---------------- Prose (legal/info) ---------------- */
.prose { max-width: 760px; }
.prose h2 { margin-top: 38px; }
.prose h3 { font-size: 21px; font-weight: 700; margin-top: 26px; }
.prose p { color: var(--text-body); font-weight: 500; margin-top: 12px; font-size: 16.5px; }
.answer-card { margin: 22px 0 8px; border-color: var(--teal); }
.answer-ico { display: block; width: 64px; height: auto; margin: 8px auto 14px; }
.banner-card { text-align: left; margin: 22px 0; }
.banner-card .check-list { margin: 14px 0 0; }

.check-list { list-style: none; margin: 16px 0 4px; padding: 0; max-width: 640px; }
.check-list li { position: relative; padding: 9px 0 9px 34px; font-size: 16.5px;
  font-weight: 500; color: var(--text-body); border-bottom: 2px dotted var(--card-border); }
.check-list li:last-child { border-bottom: none; }
.check-list li::before { content: "\2713"; position: absolute; left: 0; top: 8px;
  width: 22px; height: 22px; border-radius: 50%; background: var(--green-soft);
  color: #fff; font-weight: 700; font-size: 13px; text-align: center; line-height: 22px; }
.prose ul { margin: 12px 0 0 20px; color: var(--text-body); font-weight: 500; }
.prose li { margin-top: 7px; }
.prose .muted { color: var(--text-muted); font-size: 14px; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--navy); color: #fff; margin-top: 60px; padding: 48px 0 30px;
  position: relative; box-shadow: inset 0 14px 16px -10px rgba(0,0,0,0.55); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.site-footer h5 { font-size: 14px; text-transform: uppercase; letter-spacing: .6px; color: #f2e9cf; margin-bottom: 14px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: #d8e3f7; font-weight: 500; font-size: 15px; }
.site-footer a:hover { color: #fff; }
.footer-brand { align-self: start; background: var(--card-bg);
  border: 5px solid var(--card-border); border-radius: 22px;
  padding: 22px 22px 24px; box-shadow: var(--shadow-hard); }
.footer-brand { text-align: center; }
.footer-brand img { display: block; width: 160px; margin: 0 auto 14px; filter: drop-shadow(0 3px 4px rgba(5,42,117,0.15)); }
.footer-brand p { color: var(--text-body); font-size: 14px; font-weight: 500; max-width: 280px; margin: 0 auto; }
.footer-col-left { align-self: start; }
.footer-copy-row { margin: 28px 0 12px; text-align: center; }
.footer-badges { margin-top: 18px; }
.footer-badges .badge { background: var(--bg-cream); color: var(--navy); }
.footer-copy { color: #aebfe0; font-size: 13px; font-weight: 500; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); margin-top: 0; padding-top: 18px;
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
  color: #aebfe0; font-size: 13.5px; font-weight: 500; }
.badge-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; align-items: center; }
.card-link { text-decoration: none; color: inherit; display: block; }
.site-footer .wrap { position: relative; }
.cookie-fab { position: absolute; top: -96px; right: 0; width: 80px; height: 80px;
  border-radius: 50%; background: #fff; border: 3px solid var(--card-border);
  box-shadow: var(--shadow-hard); display: flex; align-items: center; justify-content: center;
  overflow: hidden; z-index: 6; transition: transform .12s, box-shadow .12s; }
.cookie-fab:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--card-shadow); }
.cookie-fab img { width: auto; height: 50px; object-fit: contain; }
@keyframes cookie-wobble { 0%,100%{transform:rotate(0)} 20%{transform:rotate(-9deg)} 60%{transform:rotate(7deg)} 80%{transform:rotate(-4deg)} }
.cookie-fab img { animation: cookie-wobble 2.6s ease-in-out infinite; transform-origin: 50% 55%; }
.answer-ico { animation: cookie-wobble 2.6s ease-in-out infinite; transform-origin: 50% 60%; }
.footer-menu { background: rgba(255,255,255,.1); border-radius: 10px; padding: 18px 20px; }
.footer-menu li a { position: relative; display: inline-block; padding-left: 20px; transition: transform .14s ease, color .14s; transform-origin: left center; }
.footer-menu li a::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--green-soft); font-weight: 700; }
.footer-menu li a:hover { transform: scale(1.12); color: #fff; }
.footer-legal li a::before { content: "\2022"; color: rgba(255,255,255,.38); }
.footer-menu h5 { margin-bottom: 12px; }
.badge { display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  background: rgba(255,255,255,.1); border-radius: 8px; padding: 5px 11px;
  font-size: 12.5px; font-weight: 600; color: #f2e9cf; }
.badge img { width: 18px; height: 18px; object-fit: contain; flex: none; margin-top: auto; margin-bottom: auto; }

/* page hero (subpages) */
.page-hero { padding: 26px 0 10px; min-height: 345px; }
.ds-hero .wrap { position: relative; }
.ds-hero-text { max-width: 64%; }
.ds-hero-girl { position: absolute; right: 0; bottom: -10px; width: 300px; max-width: 34%;
  height: auto; pointer-events: none; }
@media (max-width: 760px) {
  .ds-hero-text { max-width: 100%; }
  .ds-hero-girl { position: static; width: 210px; margin: 14px auto 0; max-width: 58%; display: block; }
}
.page-hero .eyebrow { margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(30px,4.4vw,48px); font-weight: 700; letter-spacing: -0.8px; max-width: 760px; }
.page-hero .lead { font-size: 18px; color: var(--text-body); font-weight: 500; max-width: 660px; margin-top: 16px; }

/* dummy banner */
.dummy-banner { background: var(--yellow); border: 3px solid var(--navy); border-radius: 14px;
  padding: 10px 18px; font-weight: 700; font-size: 14px; text-align: center; box-shadow: 3px 3px 0 var(--navy); }

/* ---------------- Responsive ---------------- */
.keep-3 { grid-template-columns: repeat(3,minmax(0,1fr)); }
@media (max-width: 900px) {
  .brand img { width: 120px; }
  .nav { grid-template-columns: auto 1fr auto; }
  .nav-links { justify-self: stretch; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .nav-links a { font-size: 14px; padding: 8px 10px; }
  .nav-links .has-sub { display: flex; align-items: center; gap: 4px; }
  .nav-links .caret { display: none; }
  .submenu { position: static; transform: none; display: flex; flex-direction: row; gap: 4px;
    margin: 0 0 0 4px; padding: 0; border: none; box-shadow: none; background: transparent; min-width: 0; }
  .submenu a { padding: 8px 10px; font-size: 14px; }
  .nav-cta { padding: 8px 14px; font-size: 14px; }
  .grid-3:not(.keep-3), .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 18px; }
  .brand { position: relative; z-index: 120; }
  .brand img { width: 146px; transform: translateY(12px); }
  .grid-2, .grid-3:not(.keep-3), .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .step { flex-direction: column; gap: 12px; }
  .band { padding: 34px 22px; }
  .hero { padding: 18px 0 28px; }
  /* keep-3 bleibt nebeneinander, aber kompakter */
  .keep-3 { gap: 8px; }
  .keep-3 .card { padding: 13px 8px; }
  .keep-3 .icon { width: 52px; height: 52px; }
  .keep-3 .card h3 { font-size: 15px; }
  .keep-3 .card p { font-size: 11.5px; line-height: 1.3; }
  .keep-3 .card p, .keep-3 .card h3 { overflow-wrap: break-word; hyphens: auto; }
}

/* Schulen-Hero: Text zentriert (keine Person) */
.hero-centered { text-align: center; }
.hero-centered h1 { margin-left: auto; margin-right: auto; }
.hero-centered .lead { max-width: 680px; margin-left: auto; margin-right: auto; }
.hero-centered .eyebrow { display: flex; justify-content: flex-start; }

/* Familien-Hero: zwei Personen links/rechts, Text zentriert dazwischen */
.fam-hero .wrap { position: relative; min-height: 312px; }
.fam-hero-text { max-width: 540px; margin-left: auto; margin-right: auto; text-align: center; }
.fam-hero-text .eyebrow { display: flex; justify-content: flex-start; }
.fam-hero-text .lead { margin-left: auto; margin-right: auto; }
.fam-person { position: absolute; bottom: -10px; width: 235px; height: auto; pointer-events: none; }
.fam-person-left { left: 0; }
.fam-person-right { right: 0; }
@media (max-width: 980px) { .fam-person { width: 175px; } .fam-hero-text { max-width: 52%; } }
@media (max-width: 760px) { .fam-person { display: none; } .fam-hero-text { max-width: 100%; } }

/* Plan-Icons in Preisboxen */
.plan-ico { width: 60px; height: 60px; object-fit: contain; display: block; margin: 0 auto 10px; }
/* 7-Punkte Gestaltungs-Uebersicht (wie Interessen) */
.cap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 16px; margin-top: 30px; }
.cap-item { background: var(--card-bg); border: 3px solid var(--card-border); border-radius: 16px; padding: 18px 20px; box-shadow: var(--shadow-soft); }
.cap-item h4 { font-size: 16.5px; color: var(--navy); margin-bottom: 5px; }
.cap-item p { font-size: 14px; color: var(--text-body); line-height: 1.45; }
.cap-num { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 999px; background: var(--coral); color: #fff; font-weight: 700; font-size: 14px; margin-bottom: 8px; }

/* Preise: Punkt-Listen mit Haekchen */
.plan-list { list-style: none; text-align: left; max-width: 300px; margin: 18px auto 0; }
.plan-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: var(--text-body); line-height: 1.4; margin-bottom: 10px; }
.plan-list li img { width: 19px; height: 19px; flex-shrink: 0; margin-top: 1px; }

/* Preisstaffelung S/M/L/XL */
.tier-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:58px; align-items:stretch; }
.tier { background:#fff; border-radius:16px; box-shadow:var(--shadow-hard); border:3px solid var(--card-border);
  position:relative; z-index:1; display:flex; flex-direction:column; transition:transform .25s ease, box-shadow .25s ease; }
.tier-head { padding:16px; text-align:center; font-family:"Fredoka",sans-serif; font-size:30px; font-weight:600; color:#fff; line-height:1; border-radius:13px 13px 0 0; }
.tier-body { padding:20px 16px 24px; text-align:center; display:flex; flex-direction:column; flex:1; }
.tier-size { font-size:14px; color:var(--text-muted); }
.tier-price { font-family:"Fredoka",sans-serif; font-size:38px; font-weight:700; color:var(--navy); margin:12px 0 2px; line-height:1; }
.tier-price .cur { font-size:20px; }
.tier-year { font-size:13px; color:var(--text-muted); font-style:italic; }
.tier-div { border:none; border-top:1px solid var(--card-border); margin:14px 18px; }
.tier-pupil { font-weight:700; font-size:15px; color:var(--navy); }
.tier-feats { list-style:none; text-align:left; margin:16px 4px 0; padding:0; display:flex; flex-direction:column; gap:9px; }
.tier-feats li { position:relative; padding-left:24px; font-size:13px; line-height:1.35; color:var(--text-body); font-weight:500; }
.tier-feats li::before { content:"✓"; position:absolute; left:0; top:0; color:var(--green-soft); font-weight:700; }
.tier-badge { position:absolute; top:-17px; left:50%; transform:translateX(-50%); background:var(--navy); color:#fff; font-family:"Fredoka",sans-serif; font-weight:600; font-size:13px; padding:5px 16px; border-radius:999px; white-space:nowrap; }
.tier-s .tier-head { background:var(--teal); color:var(--navy); }
.tier-m .tier-head { background:var(--coral); }
.tier-l .tier-head { background:var(--green-soft); color:var(--navy); }
.tier-xl .tier-head { background:var(--orange); }
.setup-band { background:#fcefdc; border:3px solid var(--card-border); color:#8a8a8a; border-radius:16px; padding:14px 24px; margin-top:34px; display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:center; font-size:15px; text-align:center; }
/* Hover: aktive Box +15%, Nachbarn weichen aus */
.tier:hover { transform:scale(1.15); z-index:10; box-shadow:8px 8px 0 var(--card-shadow); }
.tier:hover ~ .tier { transform:translateX(30px); }
.tier:has(~ .tier:hover) { transform:translateX(-30px); }
@media (max-width:880px){ .tier-grid{grid-template-columns:1fr 1fr;} }
@media (max-width:440px){ .tier-grid{grid-template-columns:1fr;} }

/* Ressourcen/Dokumentation: Hero mit Foto-Box links (25% kleiner) */
.hero-photo-grid { align-items: center; margin-top: 6px; grid-template-columns: 0.72fr 1fr; }
.hero-photo-grid .ds-photo { min-height: 195px; max-height: 240px; }
.hero-photo-grid h1 { margin-top: 0; }
.hero-photo-grid .ds-photo.ds-fit { min-height: 0; max-height: none; height: auto; object-fit: contain; }
@media (max-width: 760px){ .hero-photo-grid { grid-template-columns: 1fr; } .hero-photo-grid .ds-photo { min-height: 175px; max-height: 220px; } }

/* Separator nicht ueber padding-top:0-Sektionen (sonst Ueberlapp mit blauen Baendern) */
section[style*="padding-top:0"]::before { display: none; }

/* Preise: groesseres Gruppenbild im Hero (wie gewuenscht) */


/* Datenschutz: dreistufiger Zugang als nummerierte Liste */
.access-steps { list-style: decimal; padding-left: 26px; }
.access-steps li { margin: 8px 0; line-height: 1.4; }
.access-steps li::marker { color: var(--coral); font-weight: 700; }

/* Icons in den Sicherheits-Karten (fuer-eltern) */
.card .sec-ico { width: 54px; height: 54px; object-fit: contain; margin: 0 auto 12px; display: block; }

/* Icon ohne Box: weisser GIF-Hintergrund laeuft per Maske weich zu transparent aus (steht so auf cream) */
.icon-fade {
  width: 104px; height: 104px; object-fit: contain; display: block;
  margin: 16px auto 6px; padding: 0; background: none; border: none; box-shadow: none; border-radius: 0;
  -webkit-mask-image: radial-gradient(circle, #000 56%, rgba(0,0,0,0) 76%);
          mask-image: radial-gradient(circle, #000 56%, rgba(0,0,0,0) 76%);
}

/* Sicherheits-Karten (fuer-eltern) mit Foto-Banner */
.sec-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.sec-photo { width: 100%; height: auto; display: block; box-shadow: var(--shadow-soft); }
.sec-body { padding: 22px 24px 26px; text-align: center; display: flex; flex-direction: column; flex: 1; }
.sec-body h3 { margin-top: 0; }
.sec-card:nth-child(1) .sec-photo { border-bottom: 4px solid var(--teal); }
.sec-card:nth-child(2) .sec-photo { border-bottom: 4px solid var(--coral); }
.sec-card:nth-child(3) .sec-photo { border-bottom: 4px solid var(--green-soft); }
.sec-card:nth-child(4) .sec-photo { border-bottom: 4px solid var(--orange); }

/* Klickbare Preis-Boxen (Stretched Link zum Kontaktformular) */
.tier-link { position: absolute; inset: 0; z-index: 4; border-radius: 16px; }
/* Sektion ohne Auto-Trenner */
.no-sep::before { display: none !important; }

/* Slogan-Claim: Fredoka SemiBold, kursiv (Fliesstext + Ueberschriften) */
.slogan { font-family: "Fredoka", sans-serif; font-weight: 600; font-style: italic; }

/* Ueberschrift mit freigestelltem Lottie-Icon daneben */
.hero-head-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-ico { width: 88px; height: 88px; flex-shrink: 0; display: block; }

/* datenschutz-Hero: Icon links neben (ggf. mehrzeiliger) H1 halten */
.ds-hero .hero-head-row { flex-wrap: nowrap; align-items: center; }
.ds-hero .hero-head-row h1 { min-width: 0; }

/* Hero-Zusatzelemente: nur auf dem Handy sichtbar */
.hero-mcta { display: none; }
.hero-balloon { display: none; position: absolute; bottom: -16px; right: 6px; width: 102px; height: 102px; z-index: 4;
  background: transparent; box-shadow: none;
  align-items: center; justify-content: center; }
.hero-balloon img { width: 90px; height: auto; animation: cookie-wobble 2.6s ease-in-out infinite; transform-origin: 50% 60%; }

/* ===== Mobile Startseite (<=600px): Hero nach Design (Teil 1) ===== */
@media (max-width: 600px) {
  .hero-v1 .wrap { gap: 16px; }
  .hero-v1 .eyebrow { display: none; }
  .hero-v1-text { order: 1; }
  .hero-v1 h1 { font-size: 27px; line-height: 1.28; }
  .hero-v1 h1 .sticker { -webkit-text-stroke-width: 4px; transform: rotate(0deg); }
  .hero-v1 .lead { font-size: 15px; margin: 10px 0 0; }
  .hero-v1 .hero-cta { display: none; }
  .hero-v1 .slide-card { order: 2; height: 320px; min-height: 0; border-width: 4px;
    border-radius: 22px; position: relative; overflow: hidden; }
  .hero-balloon { display: flex; }
  .hero-mcta { order: 3; display: block; width: 100%; text-align: center; box-sizing: border-box; margin-top: 6px; }
}

/* "So funktioniert"-Pills mobil komprimieren: 2-Spalten-Raster */
@media (max-width: 600px) {
  .pills { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .pill { font-size: 12.5px; padding: 8px 9px; border-width: 2px; box-shadow: 2px 2px 0 var(--card-shadow); gap: 5px; justify-content: center; }
  .pill:last-child { grid-column: 1 / -1; }
}

/* ===== Footer-Menüs als Reiter-Tabs (nur Handy) ===== */
.fcol-radio { display: none; }
.footer-tabs-bar { display: none; }
@media (max-width: 600px) {
  .footer-tabs-bar {
    display: flex; gap: 6px; margin: 6px 0 0;
  }
  .footer-tabs-bar label {
    flex: 1; text-align: center; padding: 11px 4px; cursor: pointer;
    background: rgba(255,255,255,.06); color: #c2cfe8; font-weight: 700; font-size: 12.5px;
    border-radius: 10px 10px 0 0;
  }
  .footer-grid .footer-menu {
    display: none; background: rgba(255,255,255,.06);
    border-radius: 0 0 10px 10px; padding: 10px 18px 18px; margin-top: -30px;
  }
  .footer-grid .footer-menu h5 { display: none; }
  #fcol1:checked ~ .footer-menu.col1,
  #fcol2:checked ~ .footer-menu.col2,
  #fcol3:checked ~ .footer-menu.col3 { display: block; }
  #fcol1:checked ~ .footer-tabs-bar label[for="fcol1"],
  #fcol2:checked ~ .footer-tabs-bar label[for="fcol2"],
  #fcol3:checked ~ .footer-tabs-bar label[for="fcol3"] { background: rgba(255,255,255,.16); color: #fff; }
}

/* Layout-stoerende Hero-Bilder mobil ausblenden + Interessen 2 pro Zeile */
@media (max-width: 600px) {
  .herz-hero-boy, .ds-hero-girl, .person-hero-img { display: none; }
  .mini-grid { gap: 12px; }
  .mini-card { width: calc(50% - 6px); }
}

/* Gruppenbild mobil ueber dem Footer */
.footer-group { display: none; }
@media (max-width: 600px) {
  .footer-group { display: block; width: 100%; max-width: 440px; margin: 10px auto 0; }
  .site-footer { margin-top: 0; }
}

/* ================= Mobiles Vollbild-Menue (Variante 2) ================= */
.nav-toggle { display: none; }
.mm-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh; height: 100dvh; z-index: 200;
  background: var(--bg-page);
  display: none; flex-direction: column; align-items: stretch;
  padding: 84px 26px 36px; overflow-y: auto;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.nav-toggle:checked ~ .mm-overlay { opacity: 1; pointer-events: auto; }
html:has(.nav-toggle:checked) { overflow: hidden; }
.mm-close {
  position: absolute; top: 16px; right: 18px;
  width: 46px; height: 46px; border: 3px solid var(--navy); border-radius: 12px;
  background: #fff; color: var(--navy); font-size: 30px; line-height: 40px;
  text-align: center; cursor: pointer; font-family: 'Fredoka', sans-serif;
}
.mm-menu { list-style: none; display: flex; flex-direction: column; gap: 4px; margin-top: 14px; }
.mm-link, .mm-grp-btn {
  display: block; width: 100%; text-align: left; font-weight: 600; font-size: 20px;
  color: var(--navy); text-decoration: none; padding: 15px 8px; border-radius: 12px;
  cursor: pointer; font-family: 'Fredoka', sans-serif; background: none; border: none;
}
.mm-grp-btn { display: flex; align-items: center; justify-content: space-between; }
.mm-link:hover, .mm-grp-btn:hover { background: var(--card-shadow); }
.mm-grp-btn .caret { font-size: .58em; opacity: .75; display: inline-block; transition: transform .25s; }
.mm-sub-toggle { display: none; }
.mm-sub { max-height: 0; overflow: hidden; transition: max-height .28s ease;
  display: flex; flex-direction: column; align-items: flex-start; }
.mm-sub a { display: block; text-align: left; color: var(--navy-soft);
  font-weight: 500; font-size: 17px; text-decoration: none; padding: 11px 8px 11px 26px; }
.mm-sub-toggle:checked ~ .mm-sub { max-height: 300px; }
.mm-sub-toggle:checked ~ .mm-grp-btn .caret { transform: rotate(180deg); }
.mm-cta {
  position: relative; display: flex; width: max-content; max-width: 100%; align-items: center;
  margin: 24px auto 0; background: var(--green-soft); border: 3px solid var(--navy);
  border-radius: 16px; padding: 14px 32px; font-weight: 700; font-size: 19px;
  color: var(--navy); text-decoration: none; box-shadow: 4px 4px 0 var(--navy);
  font-family: 'Fredoka', sans-serif;
}
.mm-cta .cta-balloons { position: absolute; top: -20px; right: -16px; width: 44px; height: auto; pointer-events: none; }

@media (max-width: 600px) {
  .nav { grid-template-columns: auto 1fr; }
  .nav-links { display: none; }
  .nav > .nav-cta { display: none; }
  .hamburger { display: flex; align-items: center; justify-content: center; justify-self: stretch; }
  .mm-overlay { display: flex; }
}

/* (2) Statische Interessen-Icons (PNG) auf Herzstueck mitbewegen */
@keyframes ico-bob { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-5px); } }
.mini-ico[src$=".png"] { animation: ico-bob 2.8s ease-in-out infinite; }

/* (4) Kontakt + DSGVO-Anfrage: Icon und Ueberschrift zentrieren */
.hero-head-row:has(img[src*="school.webp"]),
.hero-head-row:has(img[src*="newspaper.webp"]) {
  justify-content: center; text-align: center;
}

/* Ballons auf den "Jetzt loslegen"-Button (mobil), alter Slider-Ballon entfaellt */
.hero-cta-bal { display: none; }
@media (max-width: 600px) {
  .hero-balloon { display: none; }
  .hero-mcta { position: relative; overflow: visible; }
  .hero-cta-bal { display: block; position: absolute; right: 8px; top: -46px; width: 101px; height: auto;
    pointer-events: none; transform-origin: 50% 85%; animation: cookie-wobble 2.6s ease-in-out infinite; z-index: 6; }
}

/* Rahmen um das aktive Footer-Menue in der Farbe des aktiven Tabs */
@media (max-width: 600px) {
  #fcol1:checked ~ .footer-tabs-bar label[for="fcol1"],
  #fcol2:checked ~ .footer-tabs-bar label[for="fcol2"],
  #fcol3:checked ~ .footer-tabs-bar label[for="fcol3"] {
    border: 2px solid rgba(255,255,255,.5); border-bottom: none;
    position: relative; z-index: 1; margin-bottom: -2px;
  }
  #fcol1:checked ~ .footer-menu.col1,
  #fcol2:checked ~ .footer-menu.col2,
  #fcol3:checked ~ .footer-menu.col3 {
    border: 2px solid rgba(255,255,255,.5); border-radius: 0 10px 10px 10px;
  }
}

/* Slider-Pfeile (Desktop) - mobil nur Swipe */
.mm-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border: none; border-radius: 0; cursor: pointer;
  background: none; color: var(--bg-page); font-size: 40px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; padding: 0; line-height: 1;
  filter: drop-shadow(0 2px 3px rgba(5,42,117,.55)); font-family: 'Fredoka', sans-serif;
  transition: transform .15s; }
.mm-arrow:hover { background: none; transform: translateY(-50%) scale(1.12); }
.mm-arrow-prev { left: 12px; }
.mm-arrow-next { right: 12px; }
@media (max-width: 600px) { .mm-arrow { display: none; } }


/* === Utility-Klassen (ehem. Inline-Styles, fuer Block-Inhalte) === */
.mm-s1{max-width:860px!important;margin:0 auto!important;text-align:center!important}
.mm-s2{margin:0 auto!important}
.mm-s3{font-size:25px!important}
.mm-s4{max-width:620px!important;margin:10px auto 0!important}
.mm-s5{align-items:stretch!important}
.mm-s6{text-align:center!important}
.mm-s7{font-size:28px!important}
.mm-s8{margin-left:auto!important;margin-right:auto!important}
.mm-s9{text-align:left!important;max-width:600px!important;margin:12px auto 0!important}
.mm-s10{margin:14px auto 0!important}
.mm-s11{margin-top:20px!important}
.mm-s12{margin-top:32px!important}
.mm-s13{margin-top:30px!important;max-width:860px!important;margin-left:auto!important;margin-right:auto!important}
.mm-s14{margin-top:30px!important;text-align:left!important}
.mm-s15{margin:14px auto 26px!important}
.mm-s16{color:var(--coral)!important;font-weight:600!important}
.mm-s17{font-size:16px!important;margin-top:14px!important}
.mm-s18{font-size:16px!important;margin-top:12px!important}
.mm-s19{min-height:auto!important;padding-bottom:0!important}
.mm-s20{max-width:680px!important;margin:0 auto!important}
.mm-s21{width:100%!important}
.mm-s22{max-width:820px!important;margin:0 auto!important}
.mm-s23{margin-top:30px!important}
.mm-s24{display:flex!important;gap:14px!important;justify-content:center!important;flex-wrap:wrap!important}
.mm-s25{padding-top:22px!important;padding-bottom:22px!important}
.mm-s26{margin-top:34px!important}
.mm-s27{margin-top:18px!important}
.mm-s28{margin-top:26px!important;max-width:880px!important;margin-left:auto!important;margin-right:auto!important}
.mm-s29{margin-top:0!important}
.mm-s30{justify-content:center!important;margin-top:18px!important}
.mm-s31{padding-bottom:0!important}
.mm-s32{margin:48px auto!important}
.mm-s33{padding-top:0!important;padding-bottom:0!important}
.mm-s34{margin-top:22px!important;text-align:center!important}
.mm-s35{padding-top:0!important}
.mm-s36{display:none!important}
.mm-s37{display:flex!important;gap:10px!important;margin-top:10px!important;flex-wrap:wrap!important}
.mm-s38{flex:1!important;min-width:150px!important}
.mm-s39{flex:1!important;min-width:120px!important}
.mm-s40{margin-top:14px!important}
.mm-s41{color:inherit!important;text-decoration:underline!important}
.mm-s42{color:var(--text-muted)!important;font-weight:600!important;margin-top:10px!important}
.mm-s43{text-align:left!important}
.mm-s44{font-weight:700!important;color:var(--coral)!important;margin-top:12px!important}
.mm-s45{max-width:820px!important;margin-top:30px!important}
.mm-s46{margin-top:38px!important}
.mm-s47{max-width:820px!important;margin-top:34px!important}
.mm-s48{max-width:912px!important;margin:34px auto 0!important}
