/* ══════════════════════════════════════════════════════════════
   VARIANTE 6 — Montserrat + Caveat | Salbei & Pink
   ══════════════════════════════════════════════════════════════

   FONT-KONZEPT:
   • Montserrat (Google)  → Navigation, Body, Buttons, Labels
     – Light 300   : Fließtext, Beschreibungen
     – Regular 400 : Standard-Body
     – Medium 500  : Zwischenüberschriften, Captions
     – SemiBold 600: CTAs, Rubriken
     – Bold 700    : Hero-Headline, starke Akzente
   • Caveat (Google)      → Persönliche Akzente, Handschrift-Feeling
     – 400 : dezente Begleittexte
     – 600 : Zitate, Pull-Quotes, Hero-Subline
     – 700 : emotionale Highlights, Tags
   ══════════════════════════════════════════════════════════════ */

/* ─── Globale Basis (aus globals.css übernommen) ─────────────── */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

/* ─── Custom Properties ─────────────────────────────────────── */
.v6 {
  /* Salbei-Palette */
  --sage-pale:   #EEF3ED;
  --sage-light:  #C8D9C4;
  --sage:        #7D9B77;
  --sage-mid:    #5C7A56;
  --sage-dark:   #3A5236;

  /* Pink-Palette */
  --pink-pale:   #FCF0F3;
  --pink-light:  #F2B8C6;
  --pink:        #D4728A;
  --pink-deep:   #B84D67;

  /* Neutrals */
  --cream:       #FAFAF8;
  --off-white:   #F5F3F0;
  --stone:       #E8E4DF;
  --ink-soft:    #6B6560;
  --ink:         #2A2520;

  /* Fonts */
  --font-body:   'Montserrat', sans-serif;
  --font-accent: 'Caveat', cursive;

  /* Spacing */
  --max-w:       1100px;
  --section-gap: 90px;
}

/* ─── Reset & Base ──────────────────────────────────────────── */
.v6 *, .v6 *::before, .v6 *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.v6 {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

/* ─── Navigation ────────────────────────────────────────────── */
.v6-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stone);
}

.v6-nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.v6-nav__brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.v6-nav__name {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--sage-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.v6-nav__tagline {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--pink);
}

.v6-nav__links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.v6-nav__links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
}

.v6-nav__links a:hover {
  color: var(--sage-mid);
}

.v6-nav__cta {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 22px;
  background: var(--pink);
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.v6-nav__cta:hover {
  background: var(--pink-deep);
  transform: translateY(-1px);
}

/* ─── Hero ──────────────────────────────────────────────────── */
.v6-hero {
  min-height: 90dvh;
  background: var(--sage-pale);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  overflow: hidden;
}

.v6-hero__text {
  padding: 80px 64px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.v6-hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-mid);
  display: flex;
  align-items: center;
  gap: 10px;
}

.v6-hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--pink);
}

.v6-hero__headline {
  font-family: var(--font-body);
  font-size: clamp(3.2rem, 6.2vw, 5.4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--sage-dark);
}

.v6-hero__headline em {
  font-style: normal;
  font-family: var(--font-accent);
  font-size: 1.25em;
  font-weight: 600;
  color: var(--pink);
}

.v6-hero__name {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 2px;
}

.v6-hero__name-main {
  font-family: var(--font-accent);
  font-size: clamp(2.4rem, 4.2vw, 3.4rem);
  font-weight: 700;
  color: var(--pink-deep);
  line-height: 1.1;
}

.v6-hero__name-sub {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--sage-mid);
}

.v6-hero__claim {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--sage-dark);
  max-width: 520px;
}

.v6-hero__claim-emotional {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 480px;
  margin-top: -6px;
}

.v6-hero__sub {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 480px;
}

.v6-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.v6-btn-primary {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  background: var(--sage-mid);
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.v6-btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
}

.v6-btn-ghost {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  background: transparent;
  color: var(--sage-mid);
  border: 2px solid var(--sage-light);
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}

.v6-btn-ghost:hover {
  border-color: var(--sage-mid);
  color: var(--sage-dark);
}

.v6-hero__hand-note {
  font-family: var(--font-accent);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--pink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.v6-hero__image {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.v6-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 34% 22%;
  display: block;
}

.v6-hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(238, 243, 237, 0.4) 0%,
    transparent 40%
  );
  pointer-events: none;
}

/* ─── Trust Strip ───────────────────────────────────────────── */
.v6-trust {
  background: var(--sage);
  padding: 22px 32px;
}

.v6-trust__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.v6-trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.v6-trust__icon {
  font-size: 1.1rem;
}

.v6-trust__text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
}

/* ─── Shared Section Styles ─────────────────────────────────── */
.v6-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-gap) 32px;
}

.v6-section-full {
  padding: var(--section-gap) 0;
}

.v6-section__header {
  text-align: center;
  margin-bottom: 56px;
}

.v6-overline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}

.v6-h2 {
  font-family: var(--font-body);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--sage-dark);
  line-height: 1.2;
  margin-bottom: 14px;
}

.v6-h2 em {
  font-style: normal;
  font-family: var(--font-accent);
  font-size: 1.2em;
  font-weight: 600;
  color: var(--pink);
}

.v6-lead {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto;
}

/* ─── Anliegen Grid ─────────────────────────────────────────── */
.v6-anliegen {
  background: var(--off-white);
}

.v6-anliegen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 32px;
}

.v6-anliegen-card {
  background: #fff;
  border-radius: 16px;
  padding: 8px 8px 8px 0;
  border: none;
  transition: transform 0.2s;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.v6-anliegen-card:hover {
  transform: translateY(-3px);
}

.v6-anliegen-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.v6-anliegen-card__icon svg {
  width: 26px;
  height: 26px;
}

.v6-anliegen-card--pink .v6-anliegen-card__icon {
  background: var(--pink-light);
}

.v6-anliegen-card--pink .v6-anliegen-card__icon svg {
  stroke: var(--pink-deep);
}

.v6-anliegen-card--sage .v6-anliegen-card__icon {
  background: var(--sage-light);
}

.v6-anliegen-card--sage .v6-anliegen-card__icon svg {
  stroke: var(--sage-dark);
}

.v6-anliegen-card__title {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 6px;
}

.v6-anliegen-card__text {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* ─── Über mich Split ───────────────────────────────────────── */
.v6-ueber {
  background: var(--cream);
}

.v6-ueber__grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: center;
}

.v6-ueber__img-wrap {
  position: relative;
}

.v6-ueber__img-frame {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.v6-ueber__img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v6-ueber__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--pink);
  color: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 8px 24px rgba(212, 114, 138, 0.35);
}

.v6-ueber__badge-num {
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.v6-ueber__badge-label {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 400;
}

.v6-ueber__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.v6-ueber__name {
  font-family: var(--font-accent);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--pink-deep);
}

.v6-ueber__body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-soft);
}

.v6-ueber__quote {
  border-left: 3px solid var(--pink-light);
  padding-left: 20px;
}

.v6-ueber__script {
  font-family: var(--font-accent);
  font-size: clamp(2.3rem, 3.6vw, 3.1rem);
  font-weight: 400;
  color: var(--pink-deep);
  line-height: 1.25;
}

.v6-ueber__certs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 34px;
  justify-content: center;
}

.v6-ueber__cert {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 10px;
  background: var(--sage-pale);
  color: var(--sage-dark);
  border: 1px dashed var(--sage);
}

.v6-ueber__quote-text {
  font-family: var(--font-accent);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--sage-mid);
  line-height: 1.4;
}

.v6-ueber__pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.v6-pill {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  background: var(--sage-pale);
  color: var(--sage-dark);
  border: 1px solid var(--sage-light);
}

/* ─── Reflexintegration ─────────────────────────────────────── */
.v6-reflex {
  background: var(--sage-pale);
}

.v6-reflex__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.v6-reflex__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.v6-reflex__intro {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-soft);
}

.v6-reflex__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.v6-reflex__list li {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.5;
}

.v6-reflex__list li::before {
  content: '✦';
  color: var(--pink);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 4px;
}

.v6-reflex__callout {
  background: var(--sage-dark);
  border-radius: 20px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.v6-reflex__callout-quote {
  font-family: var(--font-accent);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--sage-light);
  line-height: 1.4;
}

.v6-reflex__callout-sub {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(200, 217, 196, 0.7);
  line-height: 1.7;
}

/* ─── Methoden-Blöcke ───────────────────────────────────────── */
.v6-methode {
  margin-bottom: 72px;
}

.v6-methode:last-child {
  margin-bottom: 0;
}

.v6-methode__title {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700;
  color: var(--sage-dark);
  line-height: 1.2;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--sage-light);
}

.v6-methode__quote {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--pink-deep);
  line-height: 1.4;
  margin-top: 4px;
}

.v6-fragebogen-btn {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--pink);
  border-radius: 30px;
  padding: 13px 26px;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  margin-top: 8px;
  transition: background 0.2s;
}

.v6-fragebogen-btn:hover {
  background: var(--pink-deep);
}

.v6-methode__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.v6-methode__list li {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: #ffffff;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.5;
}

.v6-methode__list li::before {
  content: '✦';
  color: var(--pink-light);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 4px;
}

/* ─── Kontakt ───────────────────────────────────────────────── */
.v6-kontakt {
  background: var(--cream);
}

.v6-kontakt__card {
  background: linear-gradient(135deg, var(--pink-pale) 0%, var(--sage-pale) 100%);
  border-radius: 24px;
  padding: 64px;
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid var(--stone);
}

.v6-kontakt__title {
  font-family: var(--font-accent);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--sage-dark);
  margin-bottom: 12px;
}

.v6-kontakt__sub {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.v6-kontakt__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.v6-kontakt__line {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.v6-kontakt__line a {
  color: var(--pink-deep);
  text-decoration: none;
  font-weight: 600;
}

.v6-kontakt__line a:hover {
  text-decoration: underline;
}

/* ─── Footer ────────────────────────────────────────────────── */
.v6-footer {
  background: var(--sage-dark);
  padding: 40px 32px;
}

.v6-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.v6-footer__brand {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--sage-light);
}

.v6-footer__copy {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(200, 217, 196, 0.6);
}

.v6-footer__links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.v6-footer__links a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(200, 217, 196, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.v6-footer__links a:hover {
  color: var(--sage-light);
}

/* ─── Zwei-Wege-Chooser ─────────────────────────────────────── */
.v6-paths {
  background: var(--cream);
  padding: 0 32px;
}

.v6-paths__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  transform: translateY(-30px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.v6-path-card {
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 18px;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(42, 37, 32, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.v6-path-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(42, 37, 32, 0.1);
}

.v6-path-card__label {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--sage-dark);
}

.v6-path-card--alt .v6-path-card__label {
  color: var(--pink-deep);
}

.v6-path-card__text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 90%;
}

.v6-path-card__arrow {
  position: absolute;
  top: 26px;
  right: 26px;
  color: var(--sage-mid);
  font-size: 1.2rem;
}

.v6-path-card--alt .v6-path-card__arrow {
  color: var(--pink);
}

/* ─── Über-mich Trust-Badges & Raum ─────────────────────────── */
.v6-ueber__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.v6-badge-link {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sage-dark);
  background: var(--sage-pale);
  border: 1px solid var(--sage-light);
  border-radius: 20px;
  padding: 7px 16px;
  text-decoration: none;
  transition: background 0.2s;
}

.v6-badge-link:hover {
  background: var(--sage-light);
}

.v6-ueber__trust-note {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 480px;
}

.v6-raum {
  margin-top: 90px;
  text-align: center;
}

.v6-raum__title {
  font-family: var(--font-body);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 700;
  color: var(--sage-dark);
  margin-bottom: 10px;
}

.v6-raum__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.v6-raum__grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

/* ─── Kindergärten & Schulen ────────────────────────────────── */
.v6-kiga {
  background: var(--sage-pale);
}

.v6-kiga__program-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  font-style: italic;
  color: var(--sage-mid);
  margin-top: 18px;
  line-height: 1.6;
}

.v6-kiga__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.v6-kiga__tags span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: #fff;
  border: 1px solid var(--sage-light);
  border-radius: 20px;
  padding: 7px 16px;
}

.v6-kiga__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.v6-kiga__card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid var(--stone);
}

.v6-kiga__num {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--pink);
  display: block;
  margin-bottom: 10px;
}

.v6-kiga__card-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.v6-kiga__card-text {
  font-family: var(--font-body);
  font-size: 0.87rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--ink-soft);
}

.v6-kiga__cert {
  background: var(--sage-dark);
  border-radius: 20px;
  padding: 40px 44px;
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.v6-kiga__cert-title {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.v6-kiga__cert-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(238, 243, 237, 0.9);
}

.v6-kiga__note {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.v6-kiga__cta {
  text-align: center;
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .v6-nav__links { display: none; }
  .v6-hero { grid-template-columns: 1fr; min-height: auto; }
  .v6-hero__text { padding: 60px 32px 40px; }
  .v6-hero__image { height: 320px; }
  .v6-hero__image-overlay {
    background: linear-gradient(to top, rgba(238, 243, 237, 0.4) 0%, transparent 50%);
  }
  .v6-anliegen-grid { grid-template-columns: 1fr 1fr; }
  .v6-ueber__grid { grid-template-columns: 1fr; }
  .v6-ueber__img-wrap { max-width: 340px; margin: 0 auto; }
  .v6-ueber__badge { right: 0; }
  .v6-reflex__grid { grid-template-columns: 1fr; }
  .v6-kontakt__card { padding: 40px 24px; }
  .v6-footer__inner { flex-direction: column; text-align: center; }
  .v6-paths { padding-top: 32px; }
  .v6-paths__inner { grid-template-columns: 1fr; transform: translateY(0); }
  .v6-raum__grid { grid-template-columns: 1fr; }
  .v6-kiga__grid { grid-template-columns: 1fr; }
  .v6-kiga__cert { padding: 32px 24px; }
}

@media (max-width: 600px) {
  .v6-anliegen-grid { grid-template-columns: 1fr; }
  .v6-trust__inner { gap: 24px; }
  .v6-hero__headline { font-size: 2rem; }
}
