
:root {
  /* --------- Farb-Tokens --------- */
  --brand: #49a5a2;           /* Primärfarbe – bei Bedarf seitenweise ändern */
  --ink-h: #3c3c3c;           /* Überschriften */
  --ink-t: #4a4a4a;           /* Fließtext */
  --muted: #6b7280;           /* sekundärer Text */
  --bg: #ffffff;              /* Standard-Hintergrund */
  --card-bg: #ffffff;
  --border: rgba(0, 0, 0, .08);

  /* --------- Typografie-Skala --------- */
  /* Basis: mobil-first, wächst fluid */
  --fs-body: clamp(1rem, 0.95rem + 0.2vw, 1.05rem);
  --lh-body: 1.6;
  --lh-title: 1.25;

  /* Headings */
  --fs-h1: clamp(2.2rem, 1.4rem + 2.5vw, 3.2rem);
  --fs-h2: clamp(1.7rem, 1.2rem + 1.8vw, 2.4rem);
  --fs-h3: clamp(1.35rem, 1.05rem + 1.2vw, 1.8rem);
  --fs-h4: clamp(1.15rem, 1.0rem + 0.6vw, 1.35rem);

  /* Section title + body tokens (unified) */
  --fs-h2: clamp(1.6rem, 3.0vw, 2.5rem);
  --fs-h3: clamp(1.2rem, 2.4vw, 1.6rem);
  --fs-lead: clamp(1rem, 1.6vw, 1.08rem);           /* Intro text under h2 */
  --fs-info: clamp(13px, 1.5vw, 17px);              /* Information text size */

  /* Hero-Text (hell auf dunklem Hintergrund) */
  --hero-h1-size: clamp(2rem, 5.4vw, 3.2rem);
  --hero-h1-weight: 400;
  --hero-h1-color: #ffffff;
  --hero-p-size: clamp(1rem, 1.2vw, 1.1rem);
  --hero-p-weight: 100;
  --hero-p-color: #ffffff;
  --hero-eyebrow-color: #d6d6d6;

  /* Eyebrows (Standard / nicht Hero) */
  --eyebrow-color: var(--brand);
  --eyebrow-size: clamp(0.9rem, 1.6vw, 1.1rem);
  --eyebrow-letterspace: .12em;

  /* Cards */
  --card-title-size: clamp(1.5rem, 1.8vw, 1.6rem);
  --card-title-weight: 300;
  --card-title-color: var(--ink-h);
  --card-text-size: clamp(.98rem, 1.2vw, 1.05rem);
  --card-text-weight: 200;
  --card-text-color: var(--ink-t);
  --card-lineheight: 1.65;

  /* --------- Font Weights --------- */
  --fw-100: 100;
  --fw-200: 200;
  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;

  /* --------- Spacing & Radius --------- */
  --space-2: .5rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-14: clamp(2.5rem, 2rem + 2vw, 4rem);
  --radius-l: 1rem;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, .06);
}

/* =========================================
   Globale Grundtypografie (optional)
   Greift automatisch, wenn du willst.
   ========================================= */
body {
  color: var(--ink-t);
  background: var(--bg);
  font-weight: var(--fw-400);
  line-height: var(--lh-body);
  font-size: var(--fs-body);
}

h1, h2, h3, h4 {
  color: var(--ink-h);
  line-height: var(--lh-title);
  font-weight: var(--fw-600);
}

a { color: var(--brand); text-decoration: none; }

/* Eyebrow */
.eyebrow {
  color: var(--eyebrow-color);
  text-transform: uppercase;
  letter-spacing: var(--eyebrow-letterspace);
  font-size: var(--eyebrow-size);
  font-weight: var(--fw-500);
}

/* Hero-Spezialfälle */
.hero h1 {
  font-size: var(--hero-h1-size);
  font-weight: var(--hero-h1-weight);
  color: var(--hero-h1-color);
}

.hero p {
  font-size: var(--hero-p-size);
  line-height: var(--lh-body);
  color: var(--hero-p-color);
  font-weight: var(--hero-p-weight);
}

/* Cards */
.card .title {
  font-size: var(--card-title-size);
  font-weight: var(--card-title-weight);
  color: var(--card-title-color);
}

.card p {
  font-size: var(--card-text-size);
  font-weight: var(--card-text-weight);
  line-height: var(--card-lineheight);
  color: var(--card-text-color);
}



/* ===== Variablen / Basics ===== */
:root {
  --line: #e7e7e7;
  --text: #2b2b2b;
  --muted: #4a4a4a;
  --card-bg: #ffffff;
  --radius: 6px;
  --hero-img: url("/assets/images/h3.png");
  --hero-reveal-bg: #49a5a22d;
  --hero-ink: #1f6e6a; 
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.mini-divider{
  display: flex;
  justify-content: center;
  padding: clamp(20px, 4vw, 36px) 0;
}


.hero-underline{
  display: block;
  width: clamp(160px, 18vw, 280px);
  height: 2px;
  margin: 16px auto 0;
  background: radial-gradient(circle at center, rgba(58,166,160,1) 0%, rgba(58,166,160,0.6) 40%, rgba(58,166,160,0) 100%);
  border-radius: 2px;
  opacity: 0.9;
}



/* =========================
   HERO – Grundlayout
   ========================= */

.about-hero.parallax {
  --p: 0;
  --heroShift: calc(12px * var(--p));
  --heroRadius: calc(26px * var(--p));
  position: relative;
  background: var(--hero-reveal-bg, #49a5a22d);
  overflow: visible;       /* war hidden – raus */
  isolation: auto;         /* war isolate – raus */
  transform: none !important; /* falls JS es setzt */
}

/* Sticky-Bildebene: Grid → Content exakt mittig, Radius + Shrink */
.about-hero.parallax .ah-top{
  position: sticky;
  top: 0;
  height: var(--heroFixedH);
  min-height: var(--heroFixedH);

  display: grid;
  place-items: end start;

  overflow: hidden;
  border-bottom-left-radius:  var(--heroRadius);
  border-bottom-right-radius: var(--heroRadius);

  transform: scale(calc(1 - 0.035 * var(--p)));
  will-change: transform, border-radius;
  backface-visibility: hidden;
  z-index: 1;
  padding: clamp(18px, 3vw, 32px);        /* Innenabstand wie Immobilien/Baufi */
}

/* Bild-Layer */
.about-hero.parallax .ah-media{
  position: absolute;
  inset: 0;
  background: var(--hero-img) center/cover no-repeat, #dfe7ee;
  transform: translateY(calc(var(--heroShift) * -1)) scale(calc(1 + 0.18 * var(--p)));
  transform-origin: center;
  will-change: transform;
  border-bottom-left-radius:  inherit;       /* Radius mitnehmen */
  border-bottom-right-radius: inherit;
  z-index: 0;
}

/* Overlay: gleicher Shift wie Bild → keine helle Kante mehr */
.about-hero.parallax .ah-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
              to top,
              rgba(0,0,0,.72) 0%,
    rgba(0,0,0,.54) 38%,
    rgba(0,0,0,.34) 70%,
    rgba(0,0,0,0.15) 100%);
  transform: translateY(calc(var(--heroShift) * -1)) scale(calc(1 + 0.18 * var(--p)));
  transform-origin: center;
  will-change: transform;
  border-bottom-left-radius:  inherit;
  border-bottom-right-radius: inherit;
  z-index: 1;
}

/* Feines Korn (optional) */
.about-hero.parallax .ah-top::before{
  content:"";
  position: absolute;
  inset: 0;
  background-image: url("assets/ui/grain-128.png");
  background-repeat: repeat;
  background-size: 140px 140px;
  opacity: .12;
  pointer-events: none;
  z-index: 2;
}

/* Text im Hero */
.about-hero.parallax .ah-content{
  position: relative;
  z-index: 3;
  text-align: left;                                     /* linksbündig */
  padding: 0 clamp(18px, 3vw, 32px)                     /* seitlich */
           clamp(28px, 10vh, 120px);                    /* unten */
  will-change: opacity, transform;
  opacity: calc(1 - 0.9 * var(--p));
  transform: translateY(calc(-12px * var(--p)));
  align-self: end;                                       /* unten andocken */
  justify-self: start;                                   /* links andocken */
  width: min(900px, 92vw);
}

#about-hero-title{
  margin: 12px 0 20px;
  font-family: "Kaisei Tokumin", serif;
  font-weight: 300 !important;
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,.14);
}
.about-hero.parallax .ah-content p{
  margin: 0 0 12px 0;
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 60ch;
  opacity: 1.0;
  font-weight: 100;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,.14);
}
.about-hero.parallax .ah-kicker{
  margin: 0;
  max-width: 60ch;
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 200;
  letter-spacing: .01em;
  color: rgba(235,235,235,.95);
  text-align: left;
  opacity: 1;
}



/* =========================
   Glass CTA Button (Hero & Reveal)
   ========================= */
.glass-btn{
  --glass-bg: rgba(255,255,255,.16);
  --glass-bd: rgba(255,255,255,.28);
  --glass-tx: #fff;

  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 56px 16px 28px !important;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1;
  font-weight: 200;
  color: var(--glass-tx);
  background: var(--glass-bg);
  box-shadow: 0 8px 32px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.18);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  margin-top: 15px;
}

.glass-btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.24);
  border-color: rgba(255,255,255,.38);
  box-shadow: 0 12px 36px rgba(0,0,0,.22);
}
.glass-btn:active{ transform: translateY(0); }

/* Dark-on-light variant (Reveal auf hellem Hintergrund) */
.glass-btn.glass-btn--ink{
  --glass-bg: color-mix(in srgb, var(--hero-ink) 10%, transparent);
  --glass-bd: color-mix(in srgb, var(--hero-ink) 24%, transparent);
  --glass-tx: var(--hero-ink);
}
.glass-btn.glass-btn--ink:hover{
  background: color-mix(in srgb, var(--hero-ink) 16%, transparent);
  border-color: color-mix(in srgb, var(--hero-ink) 36%, transparent);
}

/* Positionierung im Hero & in der Reveal-Sektion */
.about-hero.parallax .ah-cta{ margin-top: clamp(14px, 2.2vw, 24px); }
.about-hero.parallax .ah-reveal .glass-btn{ margin-top: clamp(10px, 1.8vw, 18px); }

/* Gleiches Linksalignment für Titel, Lead & CTA */
.about-hero.parallax .ah-content #about-hero-title{ margin-left: 0; }
.about-hero.parallax .ah-cta{ margin-top: clamp(14px, 2.2vw, 24px); }



/* =========================
   REVEAL-BEREICH (unter dem Bild)
   ========================= */
.about-hero.parallax .ah-reveal{
  position: relative;
  z-index: 0;                           /* unter der sticky-Bildebene */
  padding: clamp(44px, 7vw, 96px) 0 clamp(64px, 9vw, 120px);
}

.about-hero.parallax .ah-reveal__wrap{
  width: min(1100px, 92%);
  margin: 0 auto;
  text-align: left;                  /* linksbündig wie im Screenshot */
}

/* Eyebrow / Headline / Lead */
.about-hero.parallax .ah-eyebrow{
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .85rem;
  font-weight: 300;
  color: var(--hero-ink);
  max-width: 44ch;                   /* im linken Drittel “spaltenartig” */
}
.about-hero.parallax .ah-subtitle{
  margin: 0 0 8px;
  font-family: "Kaisei Tokumin", serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.2;
  color: var(--hero-ink);
  max-width: 44ch;
  margin-top: 30px;
}
.about-hero.parallax .ah-lead{
  margin: 0 0 clamp(22px, 4vw, 34px);
  max-width: 64ch;                   /* Text unter dem Titel, links ausgerichtet */
  color: var(--hero-ink);
  line-height: 1.65;
  font-weight: 300;
  margin-top: 30px;
}

/* Feature-Grid (3 Karten) */
/* =========================
   Feature-Blocks – Reset & Layout
   ========================= */
.about-hero.parallax .ah-feats {
  list-style: none;
  margin: clamp(10px, 2vw, 16px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 36px);
  align-items: start;
  justify-items: start;
  margin-top: 100px;
}
@media (max-width: 900px) {
  .about-hero.parallax .ah-feats {
    grid-template-columns: 1fr;
  }
}

/* Einzel-Feature */
.about-hero.parallax .ah-feat {
  display: block;                 /* Icon oben, dann Titel, dann Text */
  text-align: left;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  width: 100%;
  max-width: 420px;
}

.about-hero.parallax .ah-feat-ico {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
  margin: 0 0 10px 0;            /* Abstand unter dem Icon */
  filter: saturate(0.95);
  filter: grayscale(20%);
}

.about-hero.parallax .ah-feat h3 {
  margin: 0 0 6px 0;
  font-family: "Kaisei Tokumin", serif;
  font-weight: 300;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--hero-ink);
  line-height: 1.3;
  margin-top: 20px;
}

.about-hero.parallax .ah-feat p {
  margin: 0;
  color: var(--hero-ink);
  line-height: 1.6;
  font-weight: 300;
  font-size: 0.95rem;
  max-width: 55ch;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  margin-top: 30px;
}

.about-hero.parallax .ah-content {
  transform: translateY(calc(-12px * var(--p)));
  opacity: calc(1 - 0.9 * var(--p));
  transition: transform .25s ease-out, opacity .25s ease-out;
}

/* =========================
   Responsive Tweaks
   ========================= */
@media (max-width: 1199px){
  #about-hero-title,
  .about-hero.parallax .ah-content h1{ max-width: 22ch; margin-inline: 0; text-align: left; }
  .about-hero.parallax .ah-kicker{ max-width: 54ch; margin-inline: 0; text-align: left; }
  .about-hero.parallax .ah-eyebrow,
  .about-hero.parallax .ah-subtitle,
  .about-hero.parallax .ah-lead{ max-width: 44ch; }
}
@media (max-width: 767px){
  .about-hero.parallax .ah-content{
    width: min(92vw, 640px);
    text-align: left;
  }

  #about-hero-title,
  .about-hero.parallax h1{
    font-size: clamp(2.5rem, 7.2vw, 2.5rem) !important;
    line-height: 1.15;
    max-width: 50ch !important;
    margin: 0 0 8px 0;      /* nicht zentrieren */
    text-align: left;
  }
  .about-hero.parallax .ah-kicker{
    font-size: 1.1rem !important;
    max-width: 75ch !important;
    font-weight: 300 !important;
    margin: 0;
    text-align: left;
    line-height: 1.3;
  }
  .about-hero.parallax .ah-eyebrow,
  .about-hero.parallax .ah-subtitle,
  .about-hero.parallax .ah-lead{ max-width: 34ch; }
}

/* =========================
   Falls irgendwo eine CSS-ViewTimeline aktiv ist:
   hier explizit deaktivieren, damit nichts kollidiert.
   ========================= */
@supports (animation-timeline: view()){
  .about-hero.parallax .ah-top{ animation: none !important; }
}

/* Motion-Respect */
@media (prefers-reduced-motion: reduce){
  .about-hero.parallax .ah-top{ transform: none !important; box-shadow: none !important; }
  .about-hero.parallax .ah-media{ transform: none !important; }
}



/* =========================
   Kundenbewertung im Hero (Versicherungen)
   ========================= */
.hero-quote {
  position: absolute;
  top: 70%;
  right: clamp(40px, 6vw, 80px);
  transform: translateY(-50%);
  color: #fff;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 5;
}

.hero-quote .quote-card {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: clamp(16px, 2vw, 24px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.hero-quote .quote-rating {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-quote .lead-rating__stars {
  color: #fbbf24;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.hero-quote .quote-rating img {
  width: clamp(80px, 6vw, 100px);
  height: auto;
  display: block;
}

.hero-quote .quote-text {
  color: rgba(255,255,255,0.9);
  line-height: 1.55;
  font-weight: 200;
  font-size: 1rem;
  margin: 0;
}

.hero-quote .quote-meta {
  margin-top: 10px;
}

.hero-quote .quote-author {
  font-weight: 400;
  font-size: 1rem;
  color: #fff;
}

.hero-quote .quote-role {
  font-size: 0.85rem;
  font-weight: 200;
  color: rgba(255,255,255,0.7);
}

/* =========================
   Hero Stats – Versicherungen (unter der Quote)
   ========================= */
.hq-stats{
  margin-top: clamp(18px, 2vw, 26px);
  display: flex;
  flex-direction: row;
  gap: clamp(14px, 2vw, 20px);
  flex-wrap: nowrap;
  z-index: 6;
  width: 100%;
}

.hq-stat-card{
  background: none;
  border-radius: 14px;
  padding: clamp(14px,1.8vw,22px) clamp(20px,2.2vw,26px);
  text-align:center;
  color:#fff;
  min-width: 140px;
  flex: 1 1 0;
  max-width: 200px;
}

.hq-stat-number{
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  line-height:1;
  margin:0 0 4px 0;
}

.hq-stat-label{
  margin:0;
  font-size: clamp(.75rem,1.1vw,.9rem);
  font-weight:300;
  opacity:.9;
}

/* Mobile: unter Quote + kleiner */
@media(max-width:900px){
  .hq-stats{
    margin-top: -80px;
    display: flex;
    flex-direction: row;
    gap: 12px;
    padding-left: clamp(16px,4vw,26px);
    justify-content: flex-start;
    flex-wrap: wrap;
    transform: scale(.92);
  }
  .hq-stat-card{
    min-width: 100px;
    padding: 10px 12px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background: linear-gradient(
      to top,
      rgba(73,165,162,0.65) 0%,
      rgba(73,165,162,0.32) 40%,
      rgba(73,165,162,0.1) 65%,
      rgba(73,165,162,0.00) 100%
    ) !important;
  }
  .hq-stat-number{
    font-size: clamp(1.4rem,3.2vw,2rem);
  }
}

/* Mobile */
@media (max-width: 900px) {
 .hero-quote {
  position: relative !important;
  margin-top: clamp(-110px, -25vh, -60px) !important;
  margin-bottom: 0 !important;
  display: none !important;
}

  .hero-quote .quote-card {
    background: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0 !important;
  }

  .hero-quote .quote-text {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
    color: rgba(255,255,255,0.9);
  }

  .about-hero.insurance-hero .ah-content {
    display: flex;
    flex-direction: column;
    gap: 2px !important;
    margin-bottom: -100px;
  }

  .about-hero.parallax .ah-content {
    text-align: left !important;
    padding: 0 clamp(18px, 3vw, 32px) clamp(28px, 10vh, 120px) !important;
    align-self: end !important;
    justify-self: start !important;
    width: min(900px, 92vw) !important;
  }
}


/* =========================
   Abschnitt "About" unter dem Hero
   ========================= */
.about-lead {
  position: relative;
  background: #fff;
  padding-top: clamp(28px, 6vw, 48px);
  padding-bottom: clamp(10px, 6vw, 10px);
  margin-top: -28px;
}

/* Vertikale Linie in der Mitte */
.about-divider {
  width: 2px;
  height: clamp(36px, 6vw, 56px);
  background: #3aa6a0;
  margin-left: auto;
  margin-right: auto;
  border-radius: 2px;
  margin-top: -75px;
}


/* ========== Versicherungen – Hero: Mobile & Tablet Optimierung ========== */

/* Tablet (≤ 1199px) */
@media (max-width: 1199px){
  .about-hero.insurance-hero,
  .insurance-hero,
  .about-hero{
    --cut-depth: 16%;
  }

  .about-hero.insurance-hero .ah-content,
  .insurance-hero .ah-content,
  .about-hero .ah-content{
    padding-inline: 24px;
  }

  .about-hero.insurance-hero .ah-content h1,
  .insurance-hero .ah-content h1,
  .about-hero .ah-content h1{
    max-width: 22ch;                 /* keine Vollbreite */
    margin-inline: auto;
  }

  .about-hero.insurance-hero .ah-kicker,
  .insurance-hero .ah-kicker,
  .about-hero .ah-kicker{
    max-width: 54ch;
    margin-inline: auto;
  }

  .about-lead{
    margin-top: -22px;
    padding-top: clamp(22px, 4.8vw, 36px);
    padding-bottom: clamp(24px, 5.2vw, 42px);
  }
  .about-divider{
    height: 48px;
    margin-top: -52px;
  }
}

/* Phone (≤ 767px) */
@media (max-width: 767px){
  .about-hero.insurance-hero,
  .insurance-hero,
  .about-hero{
    --cut-depth: 14%;
    --hero-min-h: clamp(360px, 56vh, 560px);
  }

  .about-hero.insurance-hero .ah-content,
  .insurance-hero .ah-content,
  .about-hero .ah-content{
    padding-inline: 16px;
    width: min(92vw, 640px);
    text-align: center;
  }

  .about-hero.insurance-hero .ah-content h1,
  .insurance-hero .ah-content h1,
  .about-hero .ah-content h1{
    font-size: clamp(1.4rem, 6.2vw, 1.9rem);
    line-height: 1.15;
    max-width: 20ch;                 /* schöne Zeilenlänge */
    margin: 0 auto 8px;
  }

  .about-hero.insurance-hero .ah-kicker,
  .insurance-hero .ah-kicker,
  .about-hero .ah-kicker{
    color: rgba(215,215,215,.9);
    margin: 0 auto;
  }

}

/* Sehr klein (≤ 360px) */
@media (max-width: 360px){
  #about-hero-title,
  .about-hero.insurance-hero .ah-content h1,
  .insurance-hero .ah-content h1,
  .about-hero .ah-content h1{
    font-size: 1.5rem;
  }

  .about-hero.insurance-hero .ah-kicker,
  .insurance-hero .ah-kicker,
  .about-hero .ah-kicker{
    font-size: .9rem;
  }
}




/* =========================
   INS-STEPS — Header / Title Block (inline, non-intrusive)
   ========================= */
.ins-header {
  position: relative;
  width: min(1200px, 92%);
  margin: 0 auto clamp(40px, 6vw, 80px);
  padding-inline: clamp(16px, 3vw, 32px);
  text-align: left;
}

.ins-header .ins-eyebrow {
  margin: 0 0 6px 0;
  text-transform: uppercase;
  font-size: var(--eyebrow-size);
  color:  #ffffff00 !important;
  font-weight: 200;
}

.ins-header .ins-title {
  margin: 0;
  font-family: "Kaisei Tokumin", serif !important;
  font-weight: var(--fw-500);
  font-size: var(--fs-h1);
  line-height: var(--lh-title);
  color: var(--ink-h);
}
.ins-highlight {
  color: #b0b0b0; /* helles Grau */
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* Section padding neutral (keine Verschiebung für Sticky) */
.ins-steps {
  position: relative;
  padding-top: clamp(80px, 12vw, 140px);
  padding-bottom: clamp(80px, 12vw, 140px);
}

.ins-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(40px, 6vw, 80px);
  width: min(1200px, 92%);
  margin: 0 auto;
  padding-inline: clamp(16px, 3vw, 32px);
}

/* Linke Spalte: Scrollbare Karten */
/* Adjusted width: slightly narrower left cards */
.ins-left {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(80px, 12vh, 140px);
  min-height: 180vh;
}

.ins-card {
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .08);
  overflow: hidden;
  opacity: 0.85;
  transform: scale(.96);
  transition: transform .3s ease, box-shadow .3s ease, opacity .3s ease;
}
.ins-card.active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 16px 40px rgba(0,0,0,.15);
}
.ins-card img {
  width: 100%;
  height: clamp(240px, 30vh, 360px);
  object-fit: cover;
  display: block;
  vertical-align: middle;
  transform: translateY(0);
}
.ins-card-body {
  padding: clamp(20px, 2vw, 28px);
}
.ins-card-body h3 {
  margin-bottom: 6px;
  color: #222;
}
.ins-card-body p {
  color: #555;
  font-weight: 300;
  line-height: 1.6;
}

/* Rechte Spalte: Sticky Block */
/* Sticky Block: bleibt sauber innerhalb der Sektion, kein Sprung */
.ins-sticky {
  position: sticky;
  top: 45vh;
  background: #fff;
  z-index: 5;
  padding: clamp(24px, 3vw, 36px);
  border-radius: 12px;
  max-width: 650px;
  width: 100%;
  align-self: flex-start;
  transition: none;
}

/* sorgt dafür, dass sticky innerhalb der Sektion aufhört */
/* Adjusted width: slightly wider sticky block */
.ins-right {
  display: flex;
  align-items: flex-start;
  flex: 0 0 65%;
  position: relative;
  height: fit-content;
}

/* Remove duplicate (overriding) .ins-left rule, keep only the above with updated flex-basis */

/* Verhindert, dass Sticky über die Sektion hinausragt */
.ins-steps {
  position: relative;
  overflow: hidden; /* blockiert Überlauf */
}

.ins-wrap {
  align-items: stretch; /* sorgt für sauberes Scrollverhalten */
}

.ins-right {
  position: relative;
  flex: 0 0 45%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
.ins-sticky h2 {
  margin: 0 0 6px;
  font-family: "Kaisei Tokumin", serif !important;
  font-weight: var(--fw-300) !important;
  font-size: var(--fs-h2);
  line-height: var(--lh-title);
  color: var(--ink-h);
  margin-top: 20px;
}
.ins-sticky p {
  margin-top: auto;
  margin-bottom: 30px;
  margin-top: 20px;
  color: var(--ink-t);
  line-height: var(--lh-body);
  font-size: var(--fs-info);
  font-weight: var(--fw-300);
}

/* === Sticky Fix: context + height alignment === */
.ins-steps,
.ins-wrap,
.ins-right {
  overflow: visible !important;
  transform: none !important;
  contain: none !important;
}

/* Liste im Sticky-Bereich */
.ins-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ins-list li {
  position: relative;
  padding-left: 18px;
  color: #777;
  transition: color .3s ease;
  line-height: var(--lh-body);
  font-size: var(--fs-info);
  font-weight: var(--fw-300);
}
.ins-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ccc;
}
.ins-list li.active {
  color: #49a5a2;
}
.ins-list li.active::before {
  color: #49a5a2;
}

/* Mobile Fallback (Sticky unter dem Header, Karten scrollen vorbei) */
@media (max-width: 900px) {
  .ins-wrap {
    flex-direction: column;
    position: relative;
  }

  .ins-right {
    order: 1;
    position: sticky;
    top: 5vh;
    z-index: 5;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,.15);
    padding: clamp(24px, 5vw, 40px);
    padding-left: clamp(32px, 6vw, 56px);
    padding-right: clamp(32px, 6vw, 56px);
    width: 100%;
    max-width: 100% !important;
    margin: 0 auto;
    box-sizing: border-box;
    color: #ffffff; /* Textfarbe weiß */
    text-align: left;
  }

  .ins-sticky {
    background: #2c2c2c !important;
    border-radius: 12px;
    padding: clamp(24px, 5vw, 40px);
    width: min(84vw, 600px) !important;
    margin: 0 auto !important;
    box-sizing: border-box;
  }

  .ins-right {
    padding-inline: 16px;
  }

  .ins-sticky h2,
  .ins-list li {
    color: #ffffff;
  }

  .ins-list li::before {
    color: rgba(255,255,255,0.6);
  }

  .ins-sticky p {
    display: none; /* Text im Sticky-Block ausblenden */
  }

  .ins-card {
    margin-bottom: clamp(16px, 5vw, 28px);
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,.08);
    overflow: hidden;
  }
  .ins-card-body {
    padding: clamp(16px, 3vw, 20px);
  }

  .ins-left {
    order: 2;
    margin-top: clamp(16px, 4vw, 24px);
    flex: 1 1 auto;
  }

  .ins-card {
    margin-bottom: clamp(24px, 6vw, 40px);
  }

  .ins-steps {
    overflow: visible;
  }
}









.alt-section {
  background: #fff;
  padding: clamp(60px, 8vw, 120px) 0;
}

.alt-section-title {
  width: min(1200px, 92%);
  margin: 0 auto clamp(32px, 5vw, 64px);
  text-align: left;
  font-family: "Kaisei Tokumin", serif;
  font-size: var(--fs-h1);
  font-weight: var(--fw-500);
  line-height: var(--lh-title);
  color: var(--ink-h);
}

.alt-section-title span {
  color: #a6a6a6;
  font-weight: var(--fw-500);
}

.alt-wrap {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 2.0vw, 22px);
}

/* ======= GRID-GRUNDAUFBAU ======= */
.alt-row {
  display: grid;
  grid-template-columns: 2fr 1fr; /* 2/3 - 1/3 Verhältnis */
  gap: clamp(10px, 2vw, 22px);
  align-items: stretch;
}

.alt-row--reverse {
  grid-template-columns: 1fr 2fr;
}

/* CTA-Zeile */
.alt-row--cta {
  grid-template-columns: 2fr 1fr;
  align-items: stretch;
}

/* ======= CARD-STYLE ======= */
.alt-card {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
  overflow: hidden;
  background: #f8f8f8;
  padding: clamp(32px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  height: clamp(500px, 50vh, 640px);
}

.alt-card--img {
  padding: 0;
}

.alt-card--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* Textkarten */
/* ===== ALT-CARD--TEXT: Haupttitel oben, Subtitel und Text unten ===== */
.alt-card--text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.alt-card--text h2 {
  font-family: "Kaisei Tokumin", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 200 !important;
  line-height: 1.2;
  color: #1b1b1b;
  align-self: flex-start;
  margin-bottom: 18px;
  margin-top: 0;
}

.alt-card--text .alt-sub {
  margin-top: auto;
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 1.05rem;
  color: #222;
  line-height: 1.4;
}

.alt-card--text p {
  margin-top: 0;
  color: #444;
  font-weight: 300;
  line-height: 1.65;
  max-width: 60ch;
}

/* CTA-Buttons */
.alt-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

/* =========================
   CTA Button (wie global Hero/CTA)
   ========================= */
/* Exakter globaler Button-Stil wie im Immobilien-Teaser */
.btn-primary1 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #3aa6a0;
  color: #fff;
  text-decoration: none;
  font-weight: 300;
  font-size: 1rem;
  padding: 14px 56px 14px 28px; /* Platz für Pfeil rechts */
  border-radius: 999px;
  border: none;
  transition: background .25s ease, transform .2s ease, box-shadow .25s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  overflow: hidden;
}

.btn-primary1:hover {
  background: #2f918b !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

/* Pfeilposition & Animation */
.btn-primary1 .cta-arrow {
  position: absolute;
  right: 24px;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translate(0, -50%);
  opacity: 1;
  transition: transform .25s ease, opacity .25s ease;
  pointer-events: none;
}

.btn-primary1:hover .cta-arrow {
  animation: cta-arrow-loop .45s cubic-bezier(.22, .8, .25, 1) both;
}

@keyframes cta-arrow-loop {
  0%   { transform: translate(0, -50%); opacity: 1; }
  40%  { transform: translate(10px, -70%); opacity: 0; }
  50%  { transform: translate(-12px, -30%); opacity: 0; }
  100% { transform: translate(0, -50%); opacity: 1; }
}

/* ======= Farbkarte (rechte CTA-Karte) ======= */
.alt-card--color {
  background: #49a5a2;
  color: #fff;
  text-align: center;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  height: 100%;
}

.alt-card--color h3 {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.1;
  margin: 0;
}

.alt-card--color span {
  display: block;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: .02em;
}

/* ======= Responsive ======= */

@media (max-width: 1000px) {
  .alt-row,
  .alt-row--reverse,
  .alt-row--cta {
    grid-template-columns: 1fr;
  }

  .alt-card--color {
    min-height: 180px;
  }
}

/* =====================================================
   MOBILE – ALT-SECTION (bis 900px)
   ===================================================== */
@media (max-width: 900px){

  .alt-section-title{
    text-align:left;
    font-size: clamp(1.8rem, 6vw, 2.2rem);
    margin-bottom: 28px;
  }

  .alt-wrap{
    gap: 32px !important;
  }

  /* 1‑Spalten-Layout */
  .alt-row,
  .alt-row--reverse,
  .alt-row--cta{
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  /* Cards */
  .alt-card{
    height: auto !important;
    padding: 24px 22px !important;
  }

  .alt-card--img{
    height: auto !important;
    padding: 0 !important;
  }

  .alt-card--img img{
    height: 240px !important;
    object-fit: cover !important;
    width: 100% !important;
    border-radius: 12px !important;
  }

  /* Textkarten */
  .alt-card--text h2{
    font-size: clamp(1.4rem, 5.2vw, 1.9rem) !important;
    margin-bottom: 12px !important;
  }

  .alt-card--text p{
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
  }

  .alt-card--text .alt-sub{
    font-size: 1rem !important;
  }

  /* CTA‑Zeile */
  .alt-cta-buttons{
    flex-direction: column;
    width: 100%;
    gap: 14px;
  }

  .alt-card--color{
    min-height: 180px !important;
    padding: 34px 20px !important;
  }

  .alt-card--color h3{
    font-size: clamp(2.1rem, 10vw, 3.2rem) !important;
  }

  /* Erzwingt: TEXT → BILD Reihenfolge auf Mobile */
  .alt-row .alt-card--text,
  .alt-row--reverse .alt-card--text,
  .alt-row--cta .alt-card--text{
    order: 1 !important;
  }

  .alt-row .alt-card--img,
  .alt-row--reverse .alt-card--img,
  .alt-row--cta .alt-card--img{
    order: 2 !important;
  }
}




/* ===== Highlighted Stats (namespaced: hs-*) ===== */
:root{
  --hs-brand: #3aa6a0;
  --hs-ink:   #1b1b1b;
  --hs-muted: #6a6f78;
  --hs-bg:    #ffffff;

  --hs-card:  #f6f7f8;
  --hs-surface:#f9fafb;
  --hs-radius: 18px;
  --hs-shadow: 0 14px 34px rgba(0,0,0,.10);
}

.hs-section{
  background: var(--hs-bg);
  color: var(--hs-ink);
  padding: clamp(40px, 8vw, 96px) 0;
}

.hs-wrap {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* statt center */
  text-align: left; /* statt center */
}

/* ----- Lead / Eyebrow + Statement + Logos ----- */

.hs-eyebrow {
  text-transform: uppercase;
  letter-spacing: var(--eyebrow-letterspace);
  font-size: var(--eyebrow-size);
  color: var(--brand);
  text-align: left;
  margin: 0 0 10px;
  font-weight: var(--fw-200);
}

.hs-title {
  text-align: left;
  margin: 0 auto;
  font-size: var(--fs-h1);
  line-height: var(--lh-title);
 font-family: "Kaisei Tokumin", serif;
  font-weight: var(--fw-500);
  color: var(--ink-h);
}

.hs-title .dot {
  color: #3aa6a0;
  font-weight: 700;
}

.hs-title-line{
  display: block;
}

.hs-mark{
  background: linear-gradient(0deg,
    color-mix(in srgb, var(--hs-brand) 28%, #c9fff2) 0%,
    color-mix(in srgb, var(--hs-brand) 18%, #49a5a274) 100%);
  border-radius: .35em;
  padding: 0 .25em;
}

.hs-inklink{
  color: var(--hs-brand);
  text-decoration: none; /* remove underline accent */
  border-bottom: none;
}

/* Logos row */
.hs-logos{
  margin: 18px auto 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: clamp(16px, 3vw, 32px);
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.hs-logos img{
  height: 40px;
  width: auto;
  opacity: .8;
  transition: opacity .2s ease, filter .2s ease;
}


/* ----- Grid ----- */
.hs-grid{
  margin-top: clamp(26px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: auto auto; /* 2 rows for the four stat cards */
  gap: clamp(16px, 2.2vw, 22px);
  grid-auto-rows: 1fr;
}

/* Left feature spans two rows */
.hs-feature{
  grid-column: 1;
  grid-row: 1 / span 2;

  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: clamp(420px, 50vw, 560px);
  background: var(--hs-surface);
  box-shadow: var(--hs-shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* image */
  text-align: left;
}
.hs-feature::before{
  content:"";
  position: absolute; inset:0;
  background: var(--bg, var(--hs-card)) center/cover no-repeat;
  z-index:0;
}
.hs-feature::after{
  /* leichte Scrim für Lesbarkeit */
  content:""; position:absolute; inset:0; z-index:0;
  background: radial-gradient(120% 80% at 0% 100%, rgba(0,0,0,.28), transparent 60%)
              ,linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.25));
}

.hs-feature-top,
.hs-feature-bottom{
  position: relative; z-index:1;
  padding: clamp(16px, 2vw, 22px) clamp(18px, 2.4vw, 26px);
  color:#3c3c3c;
  text-align: left;
}

.hs-chip{
  display:inline-block;
  padding: 6px 10px;
  font-size: .8rem;
  border-radius: 8px;;
  background: rgba(171, 171, 171, 0.18);
  backdrop-filter: blur(6px);
  margin-bottom: 8px;
}

.hs-feature-eyebrow{
  margin: 0 0 6px;
  opacity: 1.0;
  font-size: .9rem;
  letter-spacing: .02em;
  color: #3c3c3c;
  text-align: left;
}

.hs-feature-title{
  margin: 0;
  font-family: "Kaisei Tokumin", serif;
  font-weight: 600;
  font-size: var(--fs-h3);
  line-height: 1.25;
  color: #2e2f33;
  text-align: left;
}

.hs-feature-copy{
  margin: 0 0 10px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #3c3c3c;
  font-weight: 300;
  margin-top: 15px;
  text-align: left;
}


/* CTA in der Card */
.hs-btn{
  position: relative;                 /* needed for arrow */
  display: inline-block;
  padding: 10px 100px 10px 30px;       /* right space for arrow */
  margin-top: 20px;
  border-radius: 999px;
  background-color: #000000 !important;
  color: #ffffff;
  text-decoration: none;
  background: transparent;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.hs-btn:hover{
  border-color: color-mix(in srgb, #3c3c3c 75%, white);
  background-color: #303030 !important;
  box-shadow: 0 10px 22px rgba(0,0,0,.20);
}






/* ----- Stat cards (2x2 rechts) ----- */
.hs-stat{
  background: var(--hs-card);
  border-radius: 8px;
  border: 1px solid #3c3c3c26;
  box-shadow: var(--hs-shadow);
  padding: clamp(16px, 2vw, 20px);
  display:flex; flex-direction:column; gap:10px;
  height: 100%;
  text-align: left;
}
/* Kleine Icon-Boxen in den Stat-Karten (ersetzt Emojis) */
.hs-stat .hs-stat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Kaisei Tokumin", serif;
  text-align: left;
  justify-content: flex-start;
}



.hs-ico-box img{
  width: 35px;
  height: 35px;
  object-fit: contain;
  opacity: .95;
}

/* etwas mehr Präsenz für KPIs */
.hs-stat-kpi{
  font-weight: 700;
  letter-spacing: .1px;
  text-align: left;
}

.hs-stat-ico{ font-size: 1.1rem; }
.hs-stat-kpi{
  font-weight: 500;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  ffont-family: "Kaisei Tokumin", serif;
  text-align: left;
}
.hs-stat-copy{
  margin: 4px 0 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #4b4f55;
  font-weight: 300;
  margin-top: 130px;
  text-align: left;
}

/* ----- Responsive ----- */
@media (max-width: 1024px){
  .hs-grid{
    grid-template-columns: 1fr 1fr;
  }
  .hs-feature{ grid-column: 1 / span 2; grid-row: 1; }
  .hs-stat:nth-of-type(1){ grid-column: 1; grid-row: 2; }
  .hs-stat:nth-of-type(2){ grid-column: 2; grid-row: 2; }
  .hs-stat:nth-of-type(3){ grid-column: 1; grid-row: 3; }
  .hs-stat:nth-of-type(4){ grid-column: 2; grid-row: 3; }
}

@media (max-width: 640px) {
  .hs-section {
    padding-inline: 5vw; /* gleiche Abstände links/rechts */
    padding-inline: 4vw;
  }

  .hs-wrap {
    width: 100%;
    margin: 0 auto;
    padding-inline: 0;
  }

  .hs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin: 0 auto;
    gap: 10px; /* leicht reduziertes Gap */
    justify-content: center;
    align-items: stretch;
  }

  .hs-feature,
  .hs-stat {
    width: 100%;
    max-width: 100%;
    margin: 0;
    height: auto;
    aspect-ratio: unset; /* entfernt festes Verhältnis */
    box-sizing: border-box;
  }

  .hs-stat {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 18px 14px;
    overflow: hidden;
  }

  /* Icons/Logos in den kleinen Cards (2x2) ausblenden */
  .hs-stat .hs-ico-box img,
  .hs-stat .hs-stat-head img {
    display: none !important;
  }

  .hs-feature {
    grid-column: 1 / -1; /* über beide Spalten */
    min-height: 380px;
  }

  .hs-stat-copy {
    margin-top: 10px;
  }
}






/* ===== FAQ (scoped) ===== */
.faq{
  --faq-ink: #0f1115;
  --faq-muted:#5d616a;
  --faq-border: rgba(15,17,21,.08);
  --faq-hover:#1b1f24;
  --faq-accent:#3aa6a0;

  background:#fff;
  color:var(--faq-ink);
  padding: clamp(40px, 6vw, 96px) 0;
}
.faq__wrap{
  width: min(1200px, 92%);
  margin: 0 auto;
}
.faq__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:.9rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--faq-muted);
}
.faq__eyebrow::before{
  content:"";
  width:8px;height:8px;border-radius:50%;
  background:var(--faq-ink);
  display:inline-block;
}
.faq__title{
  font-family: "Kaisei Tokumin", serif;
  font-size: var(--fs-h1);
  font-weight:400;
  line-height:1.05;
  letter-spacing:-.01em;
  margin: 12px 0 32px;
}

.faq__list{
  margin: 16px 0 0;
  padding: 0;
  list-style:none;
}
.faq__item{
  border-bottom:1px solid var(--faq-border);
}

.faq__question{
  width:100%;
  background:none;
  border:0;
  text-align:left;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: clamp(16px, 2.2vw, 22px) 0;
  font: inherit;
  color: var(--faq-ink);
  cursor:pointer;
  transition: transform .22s ease, color .22s ease;
  will-change: transform, color;
}
.faq__question:hover{
  color:var(--faq-hover);
  transform: translateX(10px);
}
.faq__question:focus-visible{
  outline: 2px solid color-mix(in srgb, var(--faq-accent) 60%, #fff);
  outline-offset: 2px;
  border-radius: 8px;
}

/* Plus/Minus Icon */
.faq__icon{
  flex:0 0 auto;
  width:34px; height:34px;
  border-radius:50%;
  background: #f4f6f8;
  position:relative;
  transition: background .2s ease, transform .2s ease;
}
.faq__question:hover .faq__icon{ background:#eef2f4; }
.faq__icon::before,
.faq__icon::after{
  content:"";
  position:absolute;
  top:50%; left:50%;
  width:14px; height:2px;
  background:#0f1115;
  transform: translate(-50%,-50%);
  border-radius:2px;
}
.faq__icon::after{ /* vertikaler Strich → Plus */
  transform: translate(-50%,-50%) rotate(90deg);
}
.faq__question[aria-expanded="true"] .faq__icon::after{
  opacity:0; /* wird zu Minus */
}
.faq__question[aria-expanded="true"] .faq__icon{
  background:#e9f5f3;
}

/* Antwort mit sanfter Höhen-Animation */
.faq__answer{
  overflow:hidden;
  max-height:0;
  transition: max-height .28s ease;
  will-change: max-height;
}
.faq__answer p{
  color:var(--faq-muted);
  line-height:1.7;
  margin: 0 0 clamp(16px,2vw,18px);
  padding-right: clamp(8px,2vw,12px);
  /* zusätzlicher Innenabstand oberhalb */
  padding-top: 4px;
}

/* Offen-State (per JS) */
.faq__item.is-open .faq__answer{
  /* max-height wird inline vom Script gesetzt; diese Klasse dient nur als Hook */
}

/* FAQ Footnote */
.faq__footnote{
  margin: clamp(14px, 2.2vw, 20px) 0 0;
  color: var(--faq-muted);
  line-height: 1.65;
  font-size: .95rem;
}

.faq__footnote a{
  color: var(--faq-accent);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color .2s ease, border-color .2s ease;
}

.faq__footnote a:hover{
  color: var(--faq-ink);
  border-bottom-color: transparent;
}


/* kleinere Screens */
@media (max-width: 640px){
  .faq__title{ font-size: clamp(1.8rem, 8vw, 2.4rem); }
}




/* =========================
   Kontakt-Teaser (Versicherungen)
   ========================= */
.contact-teaser.contact-teaser--overlay {
  padding: clamp(24px, 4vw, 40px) 0;
}

.contact-teaser.contact-teaser--overlay .ct-wrap {
  position: relative;
  width: min(1280px, 92%);
  height: 650px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  display: block;
  z-index: 1;
}

/* Bild vollflächig */
.contact-teaser.contact-teaser--overlay .ct-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-teaser.contact-teaser--overlay .ct-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

/* Panel (rechter Bereich) */
.contact-teaser.contact-teaser--overlay .ct-panel {
  position: absolute;
  top: clamp(50px, 2.5vw, 50px);
  right: clamp(50px, 5.2vw, 80px);
  bottom: clamp(50px, 2.5vw, 42px);
  width: 50%;
  min-width: 420px;
  max-width: 600px;

  background: var(--ct-bg, #b1d7d6);
  color: var(--ct-ink, #1f6e6a);
  border-radius: 12px;
  display: grid;
  grid-template-rows: 1fr auto auto;
  align-items: start;
  justify-items: start;
  gap: clamp(12px, 2vw, 18px);
  padding: clamp(24px, 4vw, 48px);
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  outline: 1px solid rgba(0, 0, 0, 0.06);
}

/* Typo */
.ct-title {
  margin: 0 0 8px 0;
  font-family: "Kaisei Tokumin", serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.15;
  color: #1f6e6a;
}

.ct-lead {
  margin: 0 0 clamp(16px, 2.4vw, 22px) 0;
  font-weight: 300;
  line-height: 1.65;
  color: #1f6e6a;
  max-width: 46ch;
}

.ct-btn {
  display: inline-block;
  background: #1f6e6a !important;
  color: #b1d7d6 !important;
  text-decoration: none;
  border-radius: 999px;
  border: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  padding: 0.9rem 1.8rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ct-btn:hover {
  background: #2f918b !important;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

/* =====================================================
   MOBILE – bis 900px
   Bild oben, Card unten, beide 94% breit, zentriert
   ===================================================== */
@media (max-width: 900px) {

  /* Wrapper komplett neutralisieren */
  .contact-teaser.contact-teaser--overlay .ct-wrap {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;

    gap: 20px !important;
    height: auto !important;
    overflow: visible !important;
    border-radius: 0 !important;
  }

  /* Bild */
  .contact-teaser.contact-teaser--overlay .ct-media {
    width: 94% !important;
    margin: 0 auto !important;
    height: auto !important;
    position: relative !important;
    border-radius: 12px !important;
    overflow: hidden !important;
  }

  .contact-teaser.contact-teaser--overlay .ct-media img {
    width: 100% !important;
    height: 220px !important; /* Höhe wie gewünscht kleiner */
    object-fit: cover !important;
    border-radius: 12px !important;
  }

  /* Card */
  .contact-teaser.contact-teaser--overlay .ct-panel {
    width: 94% !important;
    max-width: 94% !important;
    min-width: unset !important;

    position: relative !important;
    inset: auto !important;

    background: var(--ct-bg, #b1d7d6) !important;
    border-radius: 12px !important;

    margin: 0 auto !important;
    padding: 24px 28px !important;
    box-sizing: border-box !important;

    display: grid !important;
    grid-template-rows: auto auto auto !important;
    gap: 16px !important;
  }
}


/* =====================================================
   TABLET – 900px bis 1200px
   Bild oben 94%, Card unten 94%, gleichbreit
   ===================================================== */
@media (min-width: 901px) and (max-width: 1200px) {

  .contact-teaser.contact-teaser--overlay .ct-wrap {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;

    gap: 28px !important;
    height: auto !important;
  }

  /* Bild */
  .contact-teaser.contact-teaser--overlay .ct-media {
    width: 94% !important;
    margin: 0 auto !important;
    height: auto !important;
    border-radius: 16px !important;
    overflow: hidden !important;
  }

  .contact-teaser.contact-teaser--overlay .ct-media img {
    width: 100% !important;
    height: 260px !important; /* Tablet etwas höher */
    object-fit: cover !important;
    border-radius: 16px !important;
  }

  /* Card */
  .contact-teaser.contact-teaser--overlay .ct-panel {
    width: 94% !important;
    max-width: 94% !important;
    min-width: unset !important;

    position: relative !important;
    inset: auto !important;

    border-radius: 16px !important;
    padding: 32px !important;
    margin: 0 auto !important;
  }
}



/* =========================
   RELATED LINKS SECTION (Footer-Navigation)
   ========================= */
.related-links {
  background: #000;
  color: #fff;
  text-align: left;
  padding: clamp(80px, 10vh, 120px) 0;
}

.related-wrap {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.related-title {
  margin: 0 0 50px 10px;
  font-size: var(--fs-h1);
  line-height: var(--lh-title);
  font-family: "Kaisei Tokumin", serif;
  font-weight: var(--fw-500);
  color: #fff;
}

.related-title .dot {
  color: #49a5a2;
  font-weight: 700;
}

/* === Grid === */
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  justify-content: center;
  align-items: start;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* === Cards === */
/* === Cards (benefits style) === */
.related-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  border-radius: 10px;
  overflow: visible;
  background: transparent;
  transition: transform .3s ease, box-shadow .3s ease;
}

.related-card:hover {
  transform: translateY(-6px);
}

.related-top,
.related-img {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.related-top {
  background: var(--bg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.4rem;
  color: #222;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  margin-bottom: 12px;
  min-height: 95px;
  height: 95px;
  box-sizing: border-box;
}

.related-top h3 {
  font-size: 1.33rem;
  margin: 0;
  text-align: left;
  font-weight: 300 !important;
  line-height: 1.3;
  word-wrap: break-word;
}

.related-img {
  width: 100%;
  height: 440px;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  margin: 0 auto;
  position: relative;
}

.related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  transition: transform .6s ease;
}

.related-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0) 100%);
  z-index: 1;
}


.related-card:hover {
  transform: none;
}

.related-top {
  transition: background-color .3s ease, transform .3s ease;
}

.related-card:hover .related-top {
  background: color-mix(in srgb, var(--bg) 80%, #000);
  transform: scale(0.97);
}

/* === Caption === */
.related-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.18rem;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.22;
  font-weight: 200;
  z-index: 2;
  text-align: left;
  background: transparent;
}

.related-caption p {
  margin: 0;
}

/* === Responsive === */
@media (max-width: 900px) {
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
  .related-img {
    height: 300px;
  }
}





/* BUTTON */

/* === GLOBAL CTA BUTTONS (angepasst an Versicherungsseite) === */
.glass-btn,
.ct-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 56px 14px 28px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 300;
  text-decoration: none;
  color: #fff;
  background: #49a5a2;
  border: none;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.glass-btn:hover,
.ct-btn:hover{
  background: #2f918b;
  box-shadow: 0 10px 22px rgba(0,0,0,.20);
}

/* Pfeil */
.glass-btn .cta-arrow,
.ct-btn .cta-arrow,
.hs-btn .cta-arrow,
 .cta-arrow {
  position: absolute;
  right: 22px;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translate(0,-50%);
  opacity: 1;
  transition: opacity .2s ease;
  pointer-events: none;
}

/* Animation */
.glass-btn:hover .cta-arrow,
.ct-btn:hover .cta-arrow,
.hs-btn:hover .cta-arrow {
  animation: cta-arrow-loop .45s cubic-bezier(.22, .8, .25, 1) both;
}

@keyframes cta-arrow-loop {
  0%   { transform: translate(0,-50%); opacity: 1; }
  40%  { transform: translate(10px,-70%); opacity: 0; }
  50%  { transform: translate(-12px,-30%); opacity: 0; }
  100% { transform: translate(0,-50%); opacity: 1; }
}
