/*
Theme Name: Gude Theme
Theme URI: https://spring-vor-glueck.de
Author: SPRING VOR GLÜCK
Description: Individuelles WordPress-Theme basierend auf der freigegebenen Startseite.
Version: 1.0.0
Text Domain: gude-theme
*/

@font-face {
  font-family: 'Nunito';
  src: url('assets/fonts/Nunito-VariableFont_wght.ttf') format('truetype');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Fredoka One';
  src: url('assets/fonts/Fredoka-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #1e3a5f;
  --cream:  #fff4bf;
  --white:  #ffffff;
  --dark:   #181818;
  --red:    #eb392b;
  --blue:   #2168a8;
  --yellow: #f4ba0e;
  --green:  #049d4a;
  --purple: #5d2880;
  --sky:    #1d9bd5;
  --radius-lg: 2rem;
  --radius-xl: 3rem;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--white);
  color: var(--dark);
  max-width: 100%;
  overflow-x: hidden;
}

h1, h2, h3, .display {
  font-family: 'Fredoka One', cursive;
  line-height: 1.1;
}

/* ── NAV ───────────────────────────────────────────── */
nav {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 2.5rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 2.5px solid var(--navy);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(30,58,95,.12); }

.nav-logo {
  font-family: 'Fredoka One', cursive;
  font-size: 1.45rem;
  color: var(--navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.nav-logo .nav-logo-img {
  display: block;
  width: auto;
  height: 75px;
  max-width: min(72vw, 340px);
}
.nav-logo .logo-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--red);
  display: inline-block;
  animation: bounce-dot 1.4s ease-in-out infinite;
}

@keyframes bounce-dot {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2.5px;
  background: var(--yellow);
  border-radius: 2px;
  transition: width .25s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: .62rem 1.3rem !important;
  border-radius: 999px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover { background: #c62e20; transform: scale(1.04); }
.nav-cta::after { display: none !important; }

/* ── HERO ──────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--cream);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 4.2rem 2.5rem 4rem;
}

/* decorative blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .35;
  pointer-events: none;
}
.blob-1 { width: 500px; height: 500px; background: var(--yellow); top: -120px; right: -100px; }
.blob-2 { width: 350px; height: 350px; background: var(--sky);    bottom: -80px; left: -80px; }
.blob-3 { width: 220px; height: 220px; background: var(--red);    top: 40%; left: 38%; }

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--green);
  color: var(--white);
  padding: .35rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: .85rem;
  margin-bottom: 1.2rem;
  animation: fade-up .6s ease both;
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  color: var(--navy);
  margin-bottom: 1.2rem;
  animation: fade-up .7s .1s ease both;
}
.hero-title .accent { color: var(--red); }
.hero-title .wave {
  display: inline-block;
  animation: wave 2s ease-in-out infinite;
}
@keyframes wave {
  0%, 100% { transform: rotate(0deg); }
  25%       { transform: rotate(15deg); }
  75%       { transform: rotate(-10deg); }
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--navy);
  opacity: .8;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 2rem;
  animation: fade-up .7s .2s ease both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fade-up .7s .3s ease both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 999px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }

.btn-primary { background: var(--red);  color: var(--white); }
.btn-secondary { background: var(--white); color: var(--navy); border: 2.5px solid var(--navy); }

/* hero visual side */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fade-up .8s .2s ease both;
}

.hero-cards-stack {
  position: relative;
  width: 430px;
  height: 450px;
}

.hcard {
  position: absolute;
  width: 210px;
  border-radius: 1.5rem;
  padding: 1.1rem 1.15rem;
  display: block;
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.25;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 12px 32px rgba(0,0,0,.14);
  transition: transform .3s ease;
  letter-spacing: .01em;
}
.hcard:hover { transform: scale(1.06) rotate(0deg) !important; }

.hc1 { background: var(--blue);   color: #fff; top: 0;   left: 8px;   transform: rotate(-5deg); z-index: 2; }
.hc2 { background: var(--yellow); color: var(--dark); top: 58px; left: 130px; transform: rotate(3deg); z-index: 4; }
.hc3 { background: var(--green);  color: #fff; top: 130px; left: 30px; transform: rotate(-2deg); z-index: 3; }
.hc4 { background: var(--purple); color: #fff; top: 200px; left: 160px; transform: rotate(5deg); z-index: 7; }
.hc5 { background: var(--sky);    color: #fff; top: 270px; left: 16px; transform: rotate(-6deg); z-index: 5; }

.hcard-icon { font-size: 1.95rem; margin-bottom: .45rem; display: block; }

.thank-you-cards {
  width: 470px;
  height: 430px;
}
.thank-you-cards .hcard {
  width: 230px;
  min-height: 104px;
  padding: 1.05rem 1.25rem;
}
.thank-you-cards .hc1 { top: 4px; left: 10px; transform: rotate(-5deg); z-index: 2; }
.thank-you-cards .hc2 { top: 72px; left: 238px; transform: rotate(3deg); z-index: 4; }
.thank-you-cards .hc3 { top: 188px; left: 34px; transform: rotate(-2deg); z-index: 3; }
.thank-you-cards .hc4 { top: 282px; left: 250px; transform: rotate(5deg); z-index: 7; }

/* floating confetti */
.confetti-wrap { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.confetti-piece {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 2px;
  animation: confetti-fall linear infinite;
}
@keyframes confetti-fall {
  0%   { transform: translateY(-20px) rotate(0deg);   opacity: 1; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

/* ── TRUST BAR ─────────────────────────────────────── */
.trust-bar {
  background: var(--navy);
  color: var(--white);
  padding: 1.2rem 2.5rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
  font-size: .95rem;
}
.trust-item .ti-icon {
  width: 32px; height: 32px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  flex-shrink: 0;
}
.trust-item .ti-icon svg {
  width: 16px;
  height: 16px;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── SECTION WRAPPER ──────────────────────────────── */
.section {
  padding: 6rem 2.5rem;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: .5rem;
  display: block;
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--dark);
  opacity: .7;
  line-height: 1.7;
  max-width: 600px;
}
.section-head {
  margin-bottom: 3.5rem;
}

/* ── MODULE GRID ──────────────────────────────────── */
.modules-section { background: var(--white); }

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.modules-more {
  margin-top: 2.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.modules-more .btn { margin: 0 auto; }

.module-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s;
  border: 2.5px solid transparent;
}
.module-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 40px rgba(0,0,0,.13);
  text-decoration: none;
}

.mc-red    { background: #fff0ef; border-color: var(--red);    }
.mc-blue   { background: #eff5ff; border-color: var(--blue);   }
.mc-yellow { background: #fffbe8; border-color: var(--yellow); }
.mc-green  { background: #edfff5; border-color: var(--green);  }
.mc-purple { background: #f5eeff; border-color: var(--purple); }
.mc-sky    { background: #eaf7ff; border-color: var(--sky);    }

.mc-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  display: block;
  animation: none;
  transition: transform .2s;
}
.module-card:hover .mc-icon { transform: scale(1.18) rotate(-5deg); }

.mc-title {
  font-family: 'Fredoka One', cursive;
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: .5rem;
}
.mc-desc {
  font-size: .9rem;
  color: var(--dark);
  opacity: .7;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.mc-tag {
  display: inline-block;
  padding: .25rem .8rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  background: var(--navy);
  color: var(--white);
}

/* ── WARUM WIR ────────────────────────────────────── */
.why-section { background: var(--cream); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  border-left: 5px solid var(--yellow);
  transition: transform .2s;
}
.why-card:hover { transform: translateY(-4px); }
.why-icon { font-size: 2rem; margin-bottom: .8rem; display: block; }
.why-title { font-family: 'Fredoka One', cursive; font-size: 1.1rem; color: var(--navy); margin-bottom: .4rem; }
.why-text  { font-size: .88rem; color: var(--dark); opacity: .7; line-height: 1.6; }

/* ── ZIELGRUPPEN ──────────────────────────────────── */
.audience-section { background: var(--white); }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.audience-card {
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .25s;
}
.audience-card:hover { transform: scale(1.03); }
.ac-1 { background: var(--blue);   color: var(--white); }
.ac-2 { background: var(--red);    color: var(--white); }
.ac-3 { background: var(--purple); color: var(--white); }
.audience-card .ac-emoji { font-size: 3.5rem; display: block; margin-bottom: 1rem; }
.audience-card h3 { font-family: 'Fredoka One', cursive; font-size: 1.5rem; margin-bottom: .6rem; }
.audience-card p  { font-size: .9rem; opacity: .9; line-height: 1.6; }

/* ── HOW IT WORKS ─────────────────────────────────── */
.how-section { background: var(--navy); color: var(--white); }
.how-section .section-title { color: var(--white); }
.how-section .section-sub   { color: rgba(255,255,255,.7); }
.how-section .section-label { color: var(--yellow); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: calc(16.66% + 1rem);
  right: calc(16.66% + 1rem);
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0, var(--yellow) 12px, transparent 12px, transparent 22px);
  border-radius: 2px;
}

.step {
  text-align: center;
  position: relative;
}
.step-num {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--dark);
  font-family: 'Fredoka One', cursive;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(244,186,14,.25);
}
.step h3 { font-family: 'Fredoka One', cursive; font-size: 1.2rem; margin-bottom: .5rem; }
.step p   { font-size: .9rem; opacity: .75; line-height: 1.6; }

/* ── REGIONEN ─────────────────────────────────────── */
.region-section { background: var(--cream); }

.region-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}
.region-pill {
  appearance: none;
  border: 2.5px solid var(--navy);
  padding: .6rem 1.4rem;
  background: var(--white);
  border-radius: 999px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.region-pill:hover, .region-pill.active {
  background: var(--navy);
  color: var(--white);
}

.region-details {
  margin-top: 1.2rem;
}
.region-detail {
  display: none;
  background: var(--white);
  border: 2.5px solid rgba(30,58,95,.12);
  border-radius: 1.2rem;
  padding: 1.2rem 1.4rem;
}
.region-detail.active {
  display: block;
}
.region-detail h3 {
  font-family: 'Fredoka One', cursive;
  color: var(--navy);
  margin-bottom: .5rem;
  font-size: 1.1rem;
}
.region-detail p {
  font-size: .95rem;
  line-height: 1.65;
  color: var(--dark);
}

/* ── TESTIMONIALS ─────────────────────────────────── */
.reviews-section { background: var(--white); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  position: relative;
  transition: transform .2s;
}
.review-card:hover { transform: translateY(-4px); }
.review-stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: .8rem; letter-spacing: 2px; }
.review-text  { font-size: .95rem; line-height: 1.7; color: var(--dark); font-style: italic; margin-bottom: 1rem; }
.review-author { font-weight: 800; font-size: .88rem; color: var(--navy); }
.review-badge {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  background: var(--green);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  padding: .2rem .6rem;
  border-radius: 999px;
}

/* ── ANFRAGE CTA ──────────────────────────────────── */
.cta-section {
  background: var(--red);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section .section-title { color: var(--white); }

.cta-bg-text {
  position: absolute;
  font-family: 'Fredoka One', cursive;
  font-size: 20vw;
  color: rgba(255,255,255,.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.cta-sub { font-size: 1.1rem; opacity: .9; margin-bottom: 2.5rem; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.btn-white { background: var(--white); color: var(--red); }
.btn-outline-white { background: transparent; color: var(--white); border: 2.5px solid var(--white); }

.contact-row {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
  font-size: 1rem;
}
.contact-item a { color: var(--white); text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }

/* ── ANFRAGE FORM ─────────────────────────────────── */
.form-section { background: var(--white); }

.form-card {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 3rem;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(30,58,95,.1);
}

.form-steps-indicator {
  display: flex;
  gap: .5rem;
  margin-bottom: 2rem;
}
.fsi-dot {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: rgba(30,58,95,.15);
  transition: background .3s;
}
.fsi-dot.active { background: var(--blue); }
.fsi-dot.done   { background: var(--green); }

.form-step { display: none; }
.form-step.active { display: block; }

.form-step-title { font-family: 'Fredoka One', cursive; font-size: 1.5rem; color: var(--navy); margin-bottom: 1.5rem; }

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: .8rem;
  margin-bottom: 1.5rem;
}
.option-btn {
  padding: .9rem;
  border-radius: 1rem;
  border: 2.5px solid rgba(30,58,95,.2);
  background: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  text-align: center;
  transition: all .2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  color: var(--dark);
}
.option-btn .ob-emoji { font-size: 1.5rem; }
.option-btn.selected {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}
@media (hover: hover) and (pointer: fine) {
  .option-btn:hover {
    border-color: var(--blue);
    background: var(--blue);
    color: var(--white);
  }
}

.form-field {
  margin-bottom: 1.2rem;
}
.form-field label {
  display: block;
  font-weight: 700;
  margin-bottom: .4rem;
  font-size: .9rem;
  color: var(--navy);
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 2.5px solid rgba(30,58,95,.2);
  border-radius: .9rem;
  font-family: 'Nunito', sans-serif;
  font-size: .95rem;
  background: var(--white);
  color: var(--dark);
  outline: none;
  transition: border-color .2s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--blue);
}
.form-field textarea { resize: vertical; min-height: 100px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-nav { display: flex; justify-content: space-between; margin-top: 1.5rem; }
.btn-nav-prev { background: transparent; color: var(--navy); border: 2.5px solid var(--navy); }
.btn-nav-next { background: var(--blue); color: var(--white); }

.form-success {
  text-align: center;
  padding: 2rem 0;
  display: none;
}
.form-success .success-icon { font-size: 4rem; margin-bottom: 1rem; }
.form-success h3 { font-family: 'Fredoka One', cursive; font-size: 1.8rem; color: var(--green); margin-bottom: .5rem; }
.form-success p { color: var(--dark); opacity: .7; }

/* ── FOOTER ───────────────────────────────────────── */
footer {
  background: var(--navy);
  color: var(--white);
  padding: 3rem 2.5rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1.5px solid rgba(255,255,255,.12);
  margin-bottom: 1.5rem;
}
.footer-brand .fb-logo {
  font-family: 'Fredoka One', cursive;
  font-size: 1.6rem;
  color: var(--yellow);
  margin-bottom: .5rem;
}
.footer-brand p {
  font-size: .88rem;
  color: var(--white);
  opacity: .88;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: .7rem;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}
.fl-col--modules {
  grid-column: span 2;
}
.fl-module-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}
.fl-col h4 {
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  color: var(--yellow);
  margin-bottom: .8rem;
}
.fl-col ul { list-style: none; }
.fl-col ul li { margin-bottom: .4rem; }
.fl-col ul a {
  color: var(--white);
  text-decoration: none;
  font-size: .88rem;
  transition: color .2s;
}
.fl-col ul a:hover { color: var(--white); }

/* Force consistent footer menu rendering (including WP menu classes). */
.footer-links .fl-col ul,
.footer-links .fl-col .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links .fl-col ul li,
.footer-links .fl-col .menu li {
  display: block;
  margin: 0 0 .4rem 0;
}
.footer-links .fl-col ul li a,
.footer-links .fl-col .menu li a,
.footer-links .fl-col ul li a:visited,
.footer-links .fl-col .menu li a:visited {
  color: var(--white);
  text-decoration: none;
}
.footer-links .fl-col ul li a:hover,
.footer-links .fl-col .menu li a:hover,
.footer-links .fl-col ul li a:focus,
.footer-links .fl-col .menu li a:focus {
  color: var(--white);
  text-decoration: none;
}
.fl-col ul li {
  color: var(--white);
}

.footer-socials {
  display: flex;
  gap: .6rem;
  align-items: center;
  margin-top: .8rem;
}
.footer-social-icon {
  width: 34px;
  height: 34px;
  border: 1.8px solid rgba(255,255,255,.7);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}
.footer-social-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  opacity: .5;
  flex-wrap: wrap;
  gap: .5rem;
}

/* ── SCROLL ANIMATIONS ────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 900px) {
  .hero {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .section {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .trust-bar {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  footer {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    width: 100%;
  }
  .hero-cards-stack {
    width: min(100%, 360px);
    height: 385px;
  }
  .hcard {
    width: 180px;
    padding: .95rem 1rem;
    font-size: .96rem;
  }
  .hcard-icon { font-size: 1.55rem; }
  .hc1 { top: 0;   left: 6px;   }
  .hc2 { top: 50px; left: 118px; }
  .hc3 { top: 118px; left: 20px; }
  .hc4 { top: 185px; left: 130px; }
  .hc5 { top: 252px; left: 10px; }
  .thank-you-cards {
    width: min(100%, 360px);
    height: 430px;
  }
  .thank-you-cards .hcard {
    width: 210px;
    min-height: 96px;
  }
  .thank-you-cards .hc1 { top: 0; left: 4px; }
  .thank-you-cards .hc2 { top: 94px; left: 132px; }
  .thank-you-cards .hc3 { top: 200px; left: 10px; }
  .thank-you-cards .hc4 { top: 306px; left: 116px; }
  .hero { padding-top: 3.2rem; }
  .audience-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .fl-col--modules { grid-column: 1 / -1; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar {
    justify-content: flex-start;
    align-items: flex-start;
  }
  .trust-item {
    width: 100%;
    justify-content: flex-start;
  }
}
@media (max-width: 600px) {
  nav { padding: 0.2rem 1.2rem; }
  .site-nav {
    padding: 0;
    --mobile-nav-offset: 78px;
  }
  .site-nav .nav-inner {
    height: var(--mobile-nav-offset);
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .site-nav .nav-logo .nav-logo-img {
    height: 66px;
    max-height: 66px;
  }
  .nav-links { display: none; }
  .section { padding: 4rem 1.2rem; }
  .trust-bar { gap: 1.2rem; }
  .form-card { padding: 1.5rem; }
  .footer-links { grid-template-columns: 1fr; }
  .fl-col--modules { grid-column: auto; }
  .fl-module-grid { grid-template-columns: 1fr; gap: .5rem; }
}

/* ── MODULE DETAIL SECTIONS ───────────────────────── */
.mod-detail {
  padding: 6rem 2.5rem;
  overflow: hidden;
}
.mod-detail:nth-child(odd)  { background: var(--white); }
.mod-detail.alt             { background: var(--cream); }

.mod-detail-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.mod-detail-inner.flipped { direction: rtl; }
.mod-detail-inner.flipped > * { direction: ltr; }

.mod-detail-visual {
  position: relative;
}
.mod-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  object-fit: cover;
  object-position: center;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,.13);
}

/* Teamfotos nur auf der Ueber-uns-Seite als Hochkant-Zuschnitt */
.team-detail .mod-img-main {
  aspect-ratio: 1;
  object-position: top;
}

/* placeholder styling */
.mod-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: .95rem;
  font-weight: 700;
  box-shadow: 0 20px 60px rgba(0,0,0,.10);
  position: relative;
  overflow: hidden;
}
.mod-img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,.06) 0px,
    rgba(255,255,255,.06) 10px,
    transparent 10px,
    transparent 20px
  );
}
.mip-icon { font-size: 4rem; }
.mip-label { opacity: .7; font-size: .85rem; }

.mod-img-thumb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-top: .75rem;
}
.mod-img-thumb {
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
}
.mod-img-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mod-img-thumb .mod-img-icon-box {
  height: 100%;
  min-height: 0;
  border-radius: 0;
}
.mod-img-thumb-row > .mod-img-icon-box {
  aspect-ratio: 1;
  min-height: 0;
  border-radius: 1rem;
}
.mod-img-icon-box {
  min-height: 110px;
  width: 100%;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  padding: 1rem;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(30,58,95,.96), rgba(33,104,168,.9)),
    var(--blue);
  box-shadow: 0 8px 25px rgba(0,0,0,.12);
  overflow: hidden;
}
.mod-img-icon-box--yellow {
  background:
    linear-gradient(135deg, rgba(244,186,14,.96), rgba(235,57,43,.88)),
    var(--yellow);
}
.mod-img-icon-box--red {
  background:
    linear-gradient(135deg, rgba(235,57,43,.96), rgba(244,186,14,.82)),
    var(--red);
}
.mod-img-icon-box--blue {
  background:
    linear-gradient(135deg, rgba(33,104,168,.96), rgba(29,155,213,.84)),
    var(--blue);
}
.mod-img-icon-box--green {
  background:
    linear-gradient(135deg, rgba(4,157,74,.96), rgba(29,155,213,.82)),
    var(--green);
}
.mod-img-icon-box--purple {
  background:
    linear-gradient(135deg, rgba(93,40,128,.96), rgba(33,104,168,.86)),
    var(--purple);
}
.mod-img-icon-box--sky {
  background:
    linear-gradient(135deg, rgba(29,155,213,.96), rgba(4,157,74,.82)),
    var(--sky);
}
.mod-img-icon-box--main {
  aspect-ratio: 4 / 3;
  min-height: 330px;
  margin: 0;
}
.mod-img-icon-box--main .mod-img-icon-box__icon {
  font-size: 4rem;
}
.mod-img-icon-box--main .mod-img-icon-box__title {
  font-size: 2rem;
}
.mod-img-icon-box--main .mod-img-icon-box__text {
  font-size: 1rem;
}
.mod-img-icon-box__icon {
  font-size: 2rem;
  line-height: 1;
}
.mod-img-icon-box__title {
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  line-height: 1.15;
}
.mod-img-icon-box__text {
  font-size: .76rem;
  font-weight: 800;
  line-height: 1.25;
  opacity: .92;
}

/* floating accent badge */
.mod-accent-badge {
  position: absolute;
  bottom: -1.6rem;
  right: -1rem;
  background: var(--yellow);
  color: var(--dark);
  border-radius: 999px;
  padding: .7rem 1.4rem;
  font-family: 'Fredoka One', cursive;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(244,186,14,.4);
  white-space: nowrap;
  z-index: 2;
}

.mod-detail-content {}
.mod-detail-label {
  display: inline-block;
  padding: .3rem .9rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .9rem;
  color: #fff;
}
.mod-detail-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--navy);
  margin-bottom: .8rem;
}
.mod-detail-sub {
  font-size: 1.05rem;
  color: var(--dark);
  opacity: .75;
  line-height: 1.75;
  margin-bottom: 1.8rem;
}

.mod-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
  margin-bottom: 2rem;
}
.mod-spec-item {
  background: var(--white);
  border-radius: 1rem;
  padding: .8rem 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.mod-spec-item .msi-icon { font-size: 1.2rem; flex-shrink: 0; }

.mod-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}
.mod-tag-pill {
  padding: .35rem .9rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  border: 2px solid currentColor;
}

@media (max-width: 900px) {
  .mod-detail {
    padding: 5rem 1.2rem;
    box-sizing: border-box;
  }
  .mod-detail-inner, .mod-detail-inner.flipped {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2.5rem;
    width: 100%;
    max-width: 100%;
  }
  .mod-detail-visual,
  .mod-detail-content {
    width: 100%;
    min-width: 0;
  }
  .mod-specs { grid-template-columns: 1fr; }
  .mod-accent-badge { bottom: -1.6rem; right: .5rem; }
}

/* ── ÜBER UNS ─────────────────────────────────────── */
.about-section { background: var(--navy); color: var(--white); overflow: hidden; }

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 5rem;
  align-items: center;
}

.about-content .section-label { color: var(--yellow); }
.about-content .section-title { color: var(--white); margin-bottom: 1.2rem; }

.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,.8);
  margin-bottom: 1.5rem;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  margin-bottom: 2rem;
}
.about-value {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  background: rgba(255,255,255,.06);
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--yellow);
  transition: background .2s;
}
.about-value:hover { background: rgba(255,255,255,.1); }
.av-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
.av-text strong { display: block; font-weight: 800; font-size: .95rem; margin-bottom: .2rem; color: var(--white); }
.av-text span   { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.5; }

.about-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-img-main {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 2 / 3;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-img-main .aim-icon  { font-size: 3.5rem; position: relative; z-index: 1; }
.about-img-main .aim-label { opacity: .65; font-size: .82rem; position: relative; z-index: 1; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}
.about-content .btn {
  margin-top: 1.4rem;
}
.about-stat {
  background: rgba(255,255,255,.07);
  border-radius: 1.2rem;
  padding: 1.2rem 1rem;
  text-align: center;
  border: 1.5px solid rgba(255,255,255,.1);
  transition: background .2s, transform .2s;
}
.about-stat:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }
.as-number {
  font-family: 'Fredoka One', cursive;
  font-size: 2rem;
  color: var(--yellow);
  display: block;
  line-height: 1;
  margin-bottom: .3rem;
}
.as-label { font-size: .78rem; color: rgba(255,255,255,.6); font-weight: 700; }

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-stats  { grid-template-columns: repeat(3, 1fr); }
  .about-img-main {
    max-width: 420px;
    margin-left: 0;
    margin-right: 0;
  }
}

/* ── PREISÜBERSICHT ───────────────────────────────── */
.pricing-section { background: var(--cream); }
.pricing-section--light { background: var(--white); }

.pricing-filter {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 2.8rem;
}
.pf-btn {
  padding: .55rem 1.3rem;
  border-radius: 999px;
  border: 2.5px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: .88rem;
  cursor: pointer;
  transition: all .2s;
}
.pf-btn:hover, .pf-btn.active {
  background: var(--navy);
  color: var(--white);
}

.pricing-group { margin-bottom: 2.8rem; }
.pricing-group:last-child { margin-bottom: 0; }

.pg-title {
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.pg-title::after {
  content: '';
  flex: 1;
  height: 2px;
  background: rgba(30,58,95,.12);
  border-radius: 2px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  box-shadow: 0 3px 14px rgba(0,0,0,.06);
  border-top: 4px solid transparent;
  transition: transform .2s, box-shadow .2s;
  position: relative;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,.1);
}

.pc-icon  { font-size: 1.8rem; line-height: 1; }
.pc-name  {
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.2;
}
.pc-price-brutto {
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem;
  color: var(--dark);
  margin-top: .3rem;
}
.pc-price-netto {
  font-size: .8rem;
  color: var(--dark);
  opacity: .5;
  font-weight: 700;
}
.pc-unit {
  font-size: .78rem;
  font-weight: 800;
  color: var(--dark);
  opacity: .45;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.pc-note {
  font-size: .78rem;
  color: var(--dark);
  opacity: .55;
  line-height: 1.5;
  margin-top: .2rem;
  font-style: italic;
}
.pc-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: .7rem;
  font-weight: 800;
  padding: .2rem .6rem;
  border-radius: 999px;
  color: #fff;
}

.pc-cta {
  margin-top: auto;
  padding-top: .8rem;
}
.pc-cta a {
  display: inline-block;
  font-size: .82rem;
  font-weight: 800;
  color: var(--blue);
  text-decoration: none;
  transition: color .2s;
}
.pc-cta a:hover { color: var(--navy); }

/* color accents per group */
.pg-huepf   .price-card { border-top-color: var(--blue); }
.pg-action  .price-card { border-top-color: var(--red); }
.pg-fussball .price-card { border-top-color: var(--green); }
.pg-interakt .price-card { border-top-color: var(--purple); }
.pg-foto    .price-card { border-top-color: var(--sky); }
.pg-kinder  .price-card { border-top-color: var(--yellow); }
.pg-kinder  .pc-price-brutto { color: var(--dark); }
.pg-snack   .price-card { border-top-color: var(--red); }

.pricing-hint {
  margin-top: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.8rem;
  font-size: .88rem;
  color: var(--dark);
  opacity: .75;
  line-height: 1.7;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.pricing-hint strong { color: var(--navy); opacity: 1; }

/* Central navigation override (desktop + mobile) */
.site-nav {
  z-index: 1000;
  width: 100%;
  max-width: 100%;
  left: 0;
  right: 0;
  transform: none;
  display: block;
  padding-left: 0;
  padding-right: 0;
  overflow-x: clip;
  --mobile-nav-offset: 88px;
}
.site-nav .nav-inner {
  width: 100%;
  max-width: 1200px;
  padding-left: 0;
  padding-right: 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-nav .nav-links { align-items: center; }
.site-nav .nav-links li { position: relative; }

.site-nav .nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 2.5px solid var(--navy);
  border-radius: 12px;
  background: var(--white);
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 1003;
}
.site-nav .nav-toggle span {
  display: block;
  height: 3px;
  border-radius: 3px;
  background: var(--navy);
  position: absolute;
  left: 8px;
  right: 8px;
  transition: transform .2s ease, opacity .2s ease;
}
.site-nav .nav-toggle span:nth-child(1) { top: 12px; }
.site-nav .nav-toggle span:nth-child(2) { top: 21px; }
.site-nav .nav-toggle span:nth-child(3) { top: 30px; }

.site-nav .has-submenu > a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.site-nav .has-submenu::after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 14px;
}
.site-nav .has-submenu > a::before {
  content: '\25BE';
  font-size: .72rem;
  color: var(--navy);
  order: 2;
  transform: translateY(-1px);
}
.site-nav .submenu {
  list-style: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 280px;
  background: var(--white);
  border: 2px solid rgba(30,58,95,.12);
  border-radius: 1rem;
  padding: .5rem;
  box-shadow: 0 14px 34px rgba(0,0,0,.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.site-nav .submenu li { width: 100%; }
.site-nav .submenu a {
  display: block;
  width: 100%;
  padding: .55rem .75rem;
  border-radius: .65rem;
  font-size: .88rem;
}
.site-nav .submenu a::after { display: none !important; }
.site-nav .submenu a:hover {
  background: rgba(33,104,168,.08);
  color: var(--blue);
}
.site-nav .has-submenu:hover .submenu,
.site-nav .has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav .nav-overlay { display: none; }

@media (max-width: 900px) {
  .site-nav {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    --mobile-nav-offset: 82px;
  }

  .site-nav .nav-inner {
    width: 100%;
    max-width: 100%;
    height: var(--mobile-nav-offset);
    min-height: 0;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    box-sizing: border-box;
    overflow: visible;
    gap: .8rem;
    position: relative;
    z-index: 1002;
  }

  .site-nav .nav-logo {
    min-width: 0;
    max-width: calc(100% - 58px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: clamp(1.05rem, 5.6vw, 1.35rem);
  }

  .site-nav .nav-logo .nav-logo-img {
    height: clamp(62px, 15vw, 76px);
    max-width: 100%;
    max-height: calc(var(--mobile-nav-offset) - 12px);
    object-fit: contain;
  }

  .site-nav .nav-toggle {
    display: inline-block;
    margin-left: auto;
    flex: 0 0 auto;
  }

  .site-nav .nav-links {
    position: absolute;
    top: 100%;
    bottom: auto;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    background: var(--white);
    border: 0;
    border-top: 2px solid rgba(30,58,95,.12);
    box-shadow: 0 14px 34px rgba(0,0,0,.16);
    display: block !important;
    gap: 0;
    padding: .75rem 1.2rem 1rem;
    transform: translateY(-10px);
    transition: transform .2s ease, opacity .2s ease;
    overflow-y: auto;
    height: calc(100dvh - var(--mobile-nav-offset));
    max-height: calc(100dvh - var(--mobile-nav-offset));
    min-height: calc(100dvh - var(--mobile-nav-offset));
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-sizing: border-box;
  }

  .site-nav .nav-links > li > a {
    display: block;
    padding: .85rem 0;
    border-bottom: 1px solid rgba(30,58,95,.08);
  }
  .site-nav .nav-links > li > a::after { display: none; }
  .site-nav .nav-cta {
    margin-top: .9rem;
    text-align: center;
    display: block;
  }

  /* Untermenü mobil als normale Liste (ohne Unterpunkt-Look). */
  .site-nav .has-submenu > a::before {
    display: none;
  }
  .site-nav .has-submenu > a {
    display: none;
  }
  .site-nav .has-submenu {
    display: contents;
  }
  .site-nav .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    margin: 0;
    padding: 0;
    min-width: 0;
    background: transparent;
  }
  .site-nav .submenu li {
    width: 100%;
  }
  .site-nav .submenu a {
    display: block;
    width: 100%;
    padding: .85rem 0;
    border-bottom: 1px solid rgba(30,58,95,.08);
    border-radius: 0;
    font-size: .95rem;
    color: var(--navy);
    background: transparent;
  }

  .site-nav.nav-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .site-nav.nav-open .nav-overlay {
    display: none;
  }

  .site-nav.nav-open .nav-toggle span:nth-child(1) { top: 21px; transform: rotate(45deg); }
  .site-nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-nav.nav-open .nav-toggle span:nth-child(3) { top: 21px; transform: rotate(-45deg); }
}

/* Final mobile nav height guard for iOS Safari. */

@media (max-width: 600px) {
  .site-nav {
    padding: 0;
    --mobile-nav-offset: 78px;
  }
  .site-nav .nav-inner {
    height: var(--mobile-nav-offset);
    min-height: 0;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .site-nav .nav-logo .nav-logo-img {
    height: 66px;
    max-height: 66px;
  }
}

/* ── LEGAL PAGES ───────────────────────────────────── */
.legal-hero {
  background: var(--cream);
  padding: 4.8rem 2.5rem 2.5rem;
}
.legal-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.legal-label {
  display: inline-block;
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .7rem;
}
.legal-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: .8rem;
}
.legal-subtitle {
  max-width: 760px;
  color: rgba(24,24,24,.78);
  font-size: 1.03rem;
  line-height: 1.65;
}
.legal-links {
  margin-top: 1.2rem;
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}
.legal-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(30,58,95,.22);
  border-radius: 999px;
  padding: .42rem .95rem;
  color: var(--navy);
  font-size: .85rem;
  font-weight: 800;
  text-decoration: none;
  background: rgba(255,255,255,.75);
}
.legal-links a:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.legal-content {
  background: #f7f9fd;
  padding: 2.2rem 2.5rem 4.5rem;
}
.legal-content-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.legal-card {
  margin-top: -1.2rem;
  background: var(--white);
  border-radius: 1.2rem;
  border: 1px solid rgba(30,58,95,.1);
  box-shadow: 0 10px 28px rgba(18,28,45,.07);
  padding: 1.9rem;
}
.legal-prose {
  color: #1a1a1a;
  font-size: .98rem;
  line-height: 1.72;
}
.legal-prose h2,
.legal-prose h3 {
  font-family: 'Fredoka One', cursive;
  color: var(--navy);
  line-height: 1.2;
  margin-top: 1.45rem;
  margin-bottom: .55rem;
}
.legal-prose h2 { font-size: 1.35rem; }
.legal-prose h3 { font-size: 1.12rem; }
.legal-prose p {
  margin: 0 0 .85rem 0;
}
.legal-prose ul,
.legal-prose ol {
  padding-left: 1.2rem;
  margin: .2rem 0 .95rem;
}
.legal-prose li {
  margin-bottom: .35rem;
}
.legal-prose a {
  color: var(--blue);
  font-weight: 700;
}
.legal-prose hr {
  border: 0;
  border-top: 1px solid rgba(30,58,95,.16);
  margin: 1.5rem 0;
}

@media (max-width: 900px) {
  .legal-hero {
    padding: 3.2rem 1.2rem 2rem;
  }
  .legal-content {
    padding: 1.4rem 1.2rem 3rem;
  }
  .legal-card {
    padding: 1.25rem;
  }
}



