/* ==========================================================================
   ScaleUpYourCARD — Onepager
   Font note: Degular is a licensed font and its files are not in this repo.
   Drop Degular-*.woff2 files into assets/fonts/ and the @font-face rules
   below will pick them up automatically. Until then, the fallback stack
   (Inter-esque system sans / geometric grotesk) keeps proportions close.
   ========================================================================== */

@font-face {
  font-family: "Degular";
  src: url("../assets/fonts/Degular-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Degular";
  src: url("../assets/fonts/Degular-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Degular";
  src: url("../assets/fonts/Degular-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Degular";
  src: url("../assets/fonts/Degular-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --sand: rgb(207, 198, 193);
  --dark: rgb(64, 64, 64);
  --mid: rgb(110, 110, 112);
  --blue: #29ABE2;
  --blue-dark: #1c8fbf;
  --amber: #E8A33D;
  --amber-dark: #c9882a;
  --yellow: #FFFF00;
  --yellow-dark: #e0e000;
  --teal: #3FA796;
  --teal-dark: #338a7c;
  --orange: #FF6A00;
  --orange-dark: #e35e00;
  --beige: rgb(241, 227, 217);
  --white: #ffffff;

  --font: "Degular", "Inter", "Helvetica Neue", Arial, sans-serif;

  --container: 1180px;
  --gutter: clamp(1.5rem, 5vw, 4rem);
  --section-pad: clamp(4.5rem, 10vw, 8.5rem);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 300;
  color: var(--dark);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
}

h1, h2, h3 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

/* Grundschrift ist Light (300) — strong muss explizit auf Black,
   sonst rechnet der Browser "bolder" nur auf 400 hoch */
strong, b { font-weight: 900; }

a { color: inherit; }

img { max-width: 100%; display: block; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--dark);
  color: var(--white);
  padding: 1rem 1.5rem;
  z-index: 999;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

/* Left accent line across the whole page */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 3px;
  height: 100vh;
  background: var(--blue);
  z-index: 60;
  pointer-events: none;
}

/* ---------- Layout helpers ---------- */
.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
}
.section-inner--narrow { max-width: 820px; }

.section { position: relative; }
.section--sand { background: var(--sand); }
.section--beige { background: var(--beige); }
.section--dark { background: var(--dark); color: var(--white); }

.eyebrow {
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: var(--mid);
  margin: 0 0 1rem;
}
.eyebrow--light { color: rgba(255,255,255,0.85); }

.section-headline {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  max-width: 18ch;
  margin-bottom: 2rem;
}

/* Marker-Highlight hinter Schlüsselwörtern (ersetzt die blauen Balken) */
.marker { padding: 0 0.12em; }
.marker--blue {
  background: linear-gradient(transparent 55%, var(--blue) 55%, var(--blue) 96%, transparent 96%);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font);
  font-weight: 900;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  padding: 1rem 2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 24px -8px rgba(41, 171, 226, 0.6);
}
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 12px 28px -8px rgba(41, 171, 226, 0.7); }

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover { background: #2a2a2a; }

.btn-outline {
  background: transparent;
  border-color: var(--dark);
  color: var(--dark);
}
.btn-outline:hover { background: var(--dark); color: var(--white); }

.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn-amber { background: var(--amber); color: var(--white); }
.btn-amber:hover { background: var(--amber-dark); }
.btn-yellow { background: var(--yellow); color: var(--dark); }
.btn-yellow:hover { background: var(--yellow-dark); }
.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-dark); }
.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 26px -6px rgba(255, 106, 0, 0.75);
}
.btn-orange:hover {
  background: var(--orange-dark);
  box-shadow: 0 12px 30px -6px rgba(255, 106, 0, 0.85);
}

.btn-large { padding: 1.15rem 2.5rem; font-size: 1.1rem; }

/* Zweizeiliger Button (Hauptzeile + kleine Unterzeile) —
   kompakt gehalten, damit er so hoch ist wie einzeilige Buttons */
.btn-stacked {
  flex-direction: column;
  justify-content: center;
  gap: 0;
  line-height: 1.2;
  white-space: normal;
  text-align: center;
  padding-top: 0;
  padding-bottom: 0;
  /* exakt so hoch wie die einzeiligen btn-large daneben */
  min-height: 68px;
}
.btn-stacked .btn-subline {
  font-size: 0.8em;
  font-weight: 400;
  opacity: 0.92;
}
.btn-small { padding: 0.7rem 1.4rem; font-size: 0.9rem; }
.btn-block { width: 100%; justify-content: center; margin-top: auto; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(207, 198, 193, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(64, 64, 64, 0.08);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(207, 198, 193, 0.97);
  box-shadow: 0 4px 24px -8px rgba(0,0,0,0.15);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.9rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-logo img {
  height: 44px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.header-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.4rem;
}
.header-links a {
  text-decoration: none;
  font-weight: 400;
  font-size: 0.92rem;
  color: var(--dark);
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.header-links a:hover {
  color: var(--blue-dark);
  border-bottom-color: var(--blue);
}
.header-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}
.header-menu-toggle:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
.header-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.header-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .header-menu-toggle { display: flex; }
  .header-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgb(207, 198, 193);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.5rem var(--gutter) 1rem;
    border-bottom: 1px solid rgba(64, 64, 64, 0.1);
    box-shadow: 0 16px 28px -16px rgba(0,0,0,0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }
  .header-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .header-links a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(64, 64, 64, 0.08);
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(41,171,226,0.35), transparent 55%),
    linear-gradient(200deg, #1f2f38 0%, rgb(64,64,64) 55%, #2c2622 100%);
}
.hero-media-scene {
  position: absolute;
  inset: 0;
}
.hero-cloud {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  filter: blur(2px);
}
.hero-cloud--1 { width: 340px; height: 340px; top: 8%; left: 68%; animation: drift 22s ease-in-out infinite; }
.hero-cloud--2 { width: 220px; height: 220px; top: 55%; left: 82%; animation: drift 26s ease-in-out infinite reverse; }
.hero-cloud--3 { width: 160px; height: 160px; top: 70%; left: 12%; animation: drift 18s ease-in-out infinite; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-24px, 18px); }
}

.hero-plane {
  position: absolute;
  top: 8%;
  left: 74%;
  width: 90px;
  height: 90px;
  color: rgba(255,255,255,0.85);
  transform: rotate(45deg);
  animation: float-plane 8s ease-in-out infinite;
}
@keyframes float-plane {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(-16px); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 8rem var(--gutter) 6rem;
  width: 100%;
}

.hero-headline {
  font-size: clamp(2.4rem, 6.4vw, 4.6rem);
  max-width: 24ch;
  margin-bottom: 1.5rem;
}

.hero-subline {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  max-width: 40ch;
  margin-bottom: 1.25rem;
}

.hero-copy {
  color: rgba(255,255,255,0.72);
  max-width: 54ch;
  margin-bottom: 2.5rem;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 999px;
}
.hero-scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--yellow);
  animation: scroll-cue 1.8s ease-in-out infinite;
}
@keyframes scroll-cue {
  0% { opacity: 1; top: 8px; }
  70% { opacity: 0; top: 22px; }
  100% { opacity: 0; top: 22px; }
}

/* ---------- Cards grid ---------- */
.card-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1rem;
}
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 980px) {
  .card-grid--3, .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .card-grid--3, .card-grid--4 { grid-template-columns: 1fr; }
}

.pain-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.25rem 1.9rem;
  position: relative;
  box-shadow: 0 12px 32px -18px rgba(0,0,0,0.25);
}
.pain-card-number {
  display: block;
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--blue);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.pain-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  display: inline-block;
  position: relative;
  padding-bottom: 0.4rem;
}
/* Blaue Unterstreichung — waechst von links, sobald die Karte ins Bild scrollt */
.pain-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--blue);
  transform: scaleX(1);
  transform-origin: left;
}
html.has-reveal .pain-card h3::after {
  transform: scaleX(0);
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.4s;
}
html.has-reveal .pain-card.is-visible h3::after {
  transform: scaleX(1);
}
.pain-card p {
  color: var(--mid);
  font-size: 0.98rem;
}

/* ---------- Solution ---------- */
.solution-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  margin-top: 1rem;
}
@media (max-width: 900px) {
  .solution-layout { grid-template-columns: 1fr; }
}

.solution-lead {
  font-weight: 900;
  font-size: 1.2rem;
}
.solution-copy p { color: var(--dark); }
.solution-copy p:not(.solution-lead) { color: var(--mid); }

.pillar-grid {
  display: grid;
  gap: 1.25rem;
}

.pillar-card {
  background: var(--white);
  border-radius: 18px;
  padding: 1.6rem 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.pillar-check { font-size: 1.3rem; line-height: 1; margin-top: 0.15rem; }
.pillar-card h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.pillar-card p { color: var(--mid); font-size: 0.95rem; margin: 0; }

/* ---------- Video-Testimonials ---------- */
.video-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin: 2.5rem 0 3.25rem;
  align-items: start; /* Karten behalten ihre natuerliche Hoehe (gestaffelte Optik) */
}
@media (min-width: 981px) {
  /* mittlere Karte leicht versetzt — lockert das Raster auf */
  .vt-card:nth-child(2) { margin-top: 2.2rem; }
}
@media (max-width: 980px) {
  .video-testimonials { grid-template-columns: 1fr; max-width: 560px; }
}
.vt-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 32px -18px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
}
.vt-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  padding: 0;
  cursor: pointer;
  background:
    radial-gradient(circle at 72% 20%, rgba(41,171,226,0.45), transparent 60%),
    linear-gradient(200deg, #1f2f38 0%, rgb(64,64,64) 70%);
}
/* Hochformat-Videos (Handy-Aufnahmen) bekommen eine hoehere Medienflaeche */
.vt-media--portrait { aspect-ratio: 3 / 4; }
.vt-media img,
.vt-media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.vt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.88);
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.5);
  transition: transform 0.25s ease, background 0.25s ease;
  z-index: 1;
}
.vt-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent var(--dark);
}
.vt-media:hover .vt-play,
.vt-media:focus-visible .vt-play {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--white);
}
.vt-media.is-playing .vt-play { display: none; }
.vt-body {
  padding: 1.6rem 1.7rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.vt-body p {
  color: var(--mid);
  font-size: 0.98rem;
  margin-bottom: 1.1rem;
  flex-grow: 1;
}
.vt-body cite {
  font-style: normal;
  font-weight: 900;
  font-size: 1rem;
  color: var(--dark);
}
.vt-role {
  font-style: italic;
  color: var(--mid);
  font-size: 0.9rem;
  margin-top: 0.15rem;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem 1.6rem;
  margin: 0;
  box-shadow: 0 12px 32px -18px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-emoji { font-size: 1.6rem; }
.testimonial-avatar {
  position: relative;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(140deg, var(--blue), var(--blue-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-avatar span {
  color: var(--white);
  font-weight: 900;
  font-size: 1.05rem;
}
.testimonial-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.testimonial-card p {
  font-style: italic;
  color: var(--dark);
  font-size: 0.98rem;
  flex-grow: 1;
}
.testimonial-card cite {
  font-style: normal;
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--blue-dark);
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 6vw, 5rem);
  justify-content: center;
  margin-top: 4rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 1px solid rgba(64,64,64,0.15);
  border-bottom: 1px solid rgba(64,64,64,0.15);
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--blue-dark);
}
.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

/* ---------- About ---------- */
.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 900px) {
  .about-layout { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
}
.about-copy p { color: var(--mid); max-width: 46ch; }
.about-copy strong { font-weight: 900; color: var(--dark); }
.signature {
  font-style: italic;
  font-weight: 400;
  color: var(--dark) !important;
  margin-top: 1.5rem;
  font-size: 1.05rem;
}

.about-visual-frame {
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  background: linear-gradient(150deg, var(--dark) 0%, #2e2e2e 60%, var(--blue) 140%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(41,171,226,0.4), transparent 60%);
}
.about-visual-initials {
  position: relative;
  z-index: 1;
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 5rem);
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.02em;
}
.about-visual-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

/* ---------- About: Foto-Galerie (Masonry, natuerliche Seitenverhaeltnisse) ---------- */
.about-gallery-head {
  text-align: center;
  margin-top: clamp(3.5rem, 7vw, 5rem);
  margin-bottom: 1.75rem;
}
.about-gallery-head h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.about-gallery {
  column-count: 3;
  column-gap: 1rem;
}
.about-gallery figure {
  margin: 0 0 1rem;
  break-inside: avoid;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 32px -18px rgba(0,0,0,0.25);
}
.about-gallery img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}
.about-gallery figure:hover img { transform: scale(1.05); }

@media (max-width: 980px) {
  .about-gallery { column-count: 2; }
}
@media (max-width: 560px) {
  .about-gallery { column-count: 1; }
}

/* ---------- Vision ---------- */
.vision-title {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.vision-title .marker {
  background: linear-gradient(transparent 55%, var(--yellow) 55%, var(--yellow) 96%, transparent 96%);
}
/* Über uns und Vision rücken als ein Block zusammen */
#about .section-inner { padding-bottom: clamp(1.5rem, 3vw, 2.5rem); }
#vision .section-inner { padding-top: 0; }
.vision-sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--mid);
  margin: -0.75rem 0 0;
}
.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
@media (max-width: 900px) {
  .vision-grid { grid-template-columns: 1fr; }
}
.vision-pillar {
  /* Ton-in-Ton: etwas dunkleres Beige statt Weiß */
  background: rgb(233, 215, 202);
  border-radius: 20px;
  padding: 2.25rem 1.9rem;
  box-shadow: 0 10px 26px -20px rgba(0,0,0,0.25);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.vision-pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px -20px rgba(0,0,0,0.3);
}
/* Jede Kachel mit eigenem Akzent aus der Seiten-Palette */
.vision-pillar:nth-child(1) .vision-rule { background: var(--blue); }
.vision-pillar:nth-child(2) .vision-rule { background: var(--yellow); }
.vision-pillar:nth-child(3) .vision-rule { background: var(--orange); }
.vision-pillar h3 {
  font-size: 1.25rem;
  max-width: 16ch;
  /* Platz für 3 Zeilen, damit die Akzent-Striche aller Kacheln fluchten */
  min-height: 3.5em;
}
@media (max-width: 900px) {
  .vision-pillar h3 { min-height: 0; }
}
.vision-rule {
  display: block;
  width: 48px;
  height: 4px;
  border-radius: 999px;
  margin: 1rem 0 1.25rem;
}
.vision-pillar p {
  color: var(--mid);
  font-size: 0.98rem;
  max-width: 38ch;
}

/* Warum wir die Richtigen sind */
.why-us {
  text-align: center;
  margin-top: clamp(4rem, 8vw, 6.5rem);
}
.why-us h3 {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  max-width: 24ch;
  margin: 0 auto 1.5rem;
}
.why-us p {
  color: var(--mid);
  max-width: 68ch;
  margin: 0 auto;
  font-size: 1.05rem;
}
@media (max-width: 700px) {
  .why-us p br { display: none; }
}

/* Erfolgs-Checkliste in Über uns */
.about-checks {
  margin-top: 1.75rem;
}
.about-checks strong { color: var(--dark); }
/* Fließtext statt Flex, damit Kommas und Leerzeichen natürlich sitzen */
.check-list.about-checks li {
  display: block;
  position: relative;
  padding-left: 1.95rem;
}
.check-list.about-checks li::before {
  position: absolute;
  left: 0;
  top: 0.1rem;
  margin-top: 0;
}

/* ---------- Offers ---------- */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
@media (max-width: 1080px) {
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .offer-grid { grid-template-columns: 1fr; }
}

.offer-card {
  background: var(--white);
  border-radius: 22px;
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 12px 32px -18px rgba(0,0,0,0.25);
  border: 2px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -18px rgba(0,0,0,0.3);
}
.offer-card--highlight { border-color: var(--yellow); }
.offer-card--popular { background: var(--dark); color: var(--white); }
.offer-card--popular .offer-desc,
.offer-card--popular .offer-value { color: rgba(255,255,255,0.7); }

.offer-badge {
  position: absolute;
  top: -13px;
  left: 1.75rem;
  background: var(--blue);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
}

.offer-icon { font-size: 1.8rem; margin-bottom: 1rem; }
/* Feste Zeilenhöhen, damit Titel, Tagline und Text über alle Karten fluchten */
.offer-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  min-height: 2.3em;
}
.offer-price {
  font-weight: 900;
  font-size: 1.3rem;
  line-height: 1.25;
  margin-bottom: 0.6rem;
  min-height: 2.6em;
}
.offer-price span { font-size: 0.85rem; font-weight: 300; color: var(--mid); }
.offer-card--popular .offer-price span { color: rgba(255,255,255,0.6); }
.offer-desc { color: var(--mid); font-size: 0.92rem; margin-bottom: 0.5rem; }
.offer-value { font-size: 0.85rem; color: var(--blue-dark); font-weight: 900; margin-bottom: 1.25rem; }
.offer-card--popular .offer-value { color: var(--blue); }

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.faq-item {
  background: var(--white);
  border-radius: 16px;
  padding: 1.1rem 1.5rem;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--blue);
  transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  color: var(--mid);
  margin-top: 0.9rem;
  font-size: 0.96rem;
}

/* ---------- Final CTA ---------- */
.final-cta { text-align: center; }
.final-cta .section-inner {
  padding-top: var(--section-pad);
  /* Kompakter Abschluss unter dem Siegel */
  padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
}
.final-cta-headline {
  font-size: clamp(2rem, 5vw, 3rem);
  max-width: 20ch;
  margin: 0 auto 1.5rem;
  color: var(--white);
}
.final-cta-copy {
  color: rgba(255,255,255,0.78);
  max-width: 46ch;
  margin: 0 auto 0.5rem;
  font-size: 1.1rem;
}
.final-cta-copy--small { font-size: 0.95rem; margin-bottom: 2.25rem; color: rgba(255,255,255,0.6); }
.final-cta-secondary { margin-top: 1.75rem; }
.final-cta-secondary a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 900;
  font-size: 0.95rem;
}
.final-cta-secondary a:hover { text-decoration: underline; }

/* ProvenExpert-Siegel (transparentes PNG direkt auf dunklem Grund) */
.final-cta-seal {
  display: inline-block;
  margin-top: 2.5rem;
  transition: transform 0.35s var(--ease);
}
.final-cta-seal:hover { transform: translateY(-4px); }
.final-cta-seal img {
  width: 180px;
  height: auto;
  display: block;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 3.5rem var(--gutter) 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.footer-logo { height: 34px; width: auto; }
.footer-claim {
  color: rgba(255,255,255,0.85);
  font-style: italic;
  margin: 0;
}
.footer-social {
  display: flex;
  gap: 1.1rem;
  justify-content: center;
  margin-top: 0.25rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.75);
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.88rem;
}
.footer-links a:hover { color: var(--white); }
.footer-copyright {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  margin-top: 1rem;
}

/* ---------- Hero video ---------- */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Overlay nur wenn wirklich ein Video läuft (JS setzt .has-video) */
.hero-video-overlay { display: none; }
.hero.has-video .hero-video-overlay {
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(20,30,38,0.55) 0%, rgba(64,64,64,0.45) 55%, rgba(44,38,34,0.6) 100%);
}
.hero:not(.has-video) .hero-video { display: none; }

/* ---------- Hero CTA-Reihe ---------- */
.hero-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ---------- Dein Weg (vertikale Timeline mit Scroll-Fortschritt) ---------- */
.timeline {
  position: relative;
  margin-top: 3rem;
}
.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(64,64,64,0.18);
}
.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--blue);
}
.timeline-plane {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  border-radius: 50%;
  font-size: 1.1rem;
  box-shadow: 0 6px 18px -4px rgba(41,171,226,0.7);
  z-index: 2;
}

.timeline-steps {
  list-style: none;
  margin: 0;
  padding: 2rem 0 3rem;
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 7vw, 5.5rem);
}
.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
}
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(64,64,64,0.25);
  color: var(--mid);
  font-weight: 900;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.timeline-step.is-done .timeline-dot {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
/* Karten abwechselnd rechts / links der Linie */
.timeline-step:nth-child(odd) .timeline-card { grid-column: 2; }
.timeline-step:nth-child(even) .timeline-card {
  grid-column: 1;
  justify-self: end;
  text-align: right;
}
.timeline-step:nth-child(even) .check-list li { flex-direction: row-reverse; }

.timeline-card { max-width: 460px; }
.timeline-kicker {
  font-weight: 300;
  color: var(--mid);
  margin-bottom: 0.35rem;
}
.timeline-card h3 {
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  margin-bottom: 1rem;
}
.check-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.check-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: var(--mid);
  font-size: 0.95rem;
}
.check-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 6px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

@media (max-width: 860px) {
  .timeline-line { left: 1.2rem; }
  .timeline-plane { left: 1.2rem; }
  .timeline-step { grid-template-columns: 1fr; padding-left: 3.4rem; }
  .timeline-dot { left: 1.2rem; }
  .timeline-step:nth-child(odd) .timeline-card,
  .timeline-step:nth-child(even) .timeline-card {
    grid-column: 1;
    justify-self: start;
    text-align: left;
  }
  .timeline-step:nth-child(even) .check-list li { flex-direction: row; }
}

/* ---------- Community Erfolge (Marquee) ---------- */
.community-band {
  padding: var(--section-pad) 0;
  overflow: hidden;
}
.community-band-head {
  text-align: center;
  max-width: var(--container);
  margin: 0 auto 3rem;
  padding: 0 var(--gutter);
}
.band-stars {
  color: var(--amber);
  font-size: 1.2rem;
  letter-spacing: 0.25em;
  display: block;
  margin-bottom: 0.75rem;
}
.community-band-head h2 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 0.75rem;
}
.community-band-head p { color: rgba(255,255,255,0.65); }

.marquee { overflow: hidden; }
.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding: 0 0.75rem;
}
.marquee-group {
  display: flex;
  gap: 1.5rem;
}
.marquee.is-ready .marquee-track {
  animation: marquee-scroll 55s linear infinite;
}
.marquee.is-ready:hover .marquee-track,
.marquee.is-ready:focus-within .marquee-track {
  animation-play-state: paused;
}
@keyframes marquee-scroll {
  to { transform: translateX(calc(-50% - 0.75rem)); }
}
/* Ohne JS/Animation: horizontal scrollbar */
.marquee:not(.is-ready) { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.post-card {
  width: 340px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  color: var(--dark);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  box-shadow: 0 12px 32px -16px rgba(0,0,0,0.5);
}
.post-card header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.post-avatar {
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(140deg, var(--blue), var(--blue-dark));
  color: var(--white);
  font-weight: 900;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.post-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-card header strong { display: block; font-size: 0.92rem; }
.post-card header span:not(.post-avatar) {
  display: block;
  font-size: 0.78rem;
  color: var(--mid);
}
.post-card h3 { font-size: 1.02rem; }
.post-card p {
  font-size: 0.88rem;
  color: var(--mid);
  flex-grow: 1;
  margin: 0;
}
.post-card footer {
  font-size: 0.82rem;
  color: var(--mid);
  border-top: 1px solid rgba(64,64,64,0.1);
  padding-top: 0.7rem;
}

/* ---------- ProvenExpert Widget ---------- */
.provenexpert-wrap {
  margin-top: 3rem;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 32px -18px rgba(0,0,0,0.2);
}

/* ---------- Community feedback ---------- */
.community-block { margin-top: 4.5rem; }
.community-headline {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin-bottom: 2rem;
}
.community-card {
  background: var(--white);
  border-radius: 20px;
  padding: 0 0 1.75rem;
  margin: 0;
  overflow: hidden;
  box-shadow: 0 12px 32px -18px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
/* Bild-Slot: echtes Foto als <img> einsetzen, solange zeigt der Verlauf Initialen */
.community-media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(140deg, var(--dark) 0%, #55606a 70%, var(--blue) 160%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.community-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* Post-Screenshots komplett zeigen statt beschneiden */
  object-fit: contain;
  background: var(--white);
  z-index: 1;
}
.community-avatar {
  font-weight: 900;
  font-size: 1.8rem;
  color: rgba(255,255,255,0.9);
}
.community-card p {
  font-style: italic;
  padding: 0 1.6rem;
  font-size: 0.95rem;
  color: var(--dark);
  flex-grow: 1;
}
.community-card cite {
  font-style: normal;
  font-weight: 900;
  font-size: 0.88rem;
  color: var(--blue-dark);
  padding: 0 1.6rem;
}
.community-card cite span {
  display: block;
  font-weight: 300;
  color: var(--mid);
  font-size: 0.8rem;
  margin-top: 0.15rem;
}

/* ---------- Offer media ---------- */
.offer-media {
  width: 100%;
  height: 170px;
  border-radius: 14px;
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.offer-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.offer-media .offer-icon { font-size: 2.2rem; margin: 0; }
.offer-media--blue  { background: linear-gradient(140deg, #cfe9f5, var(--blue) 160%); }
.offer-media--amber { background: linear-gradient(140deg, #f7e3c4, var(--amber) 160%); }
.offer-media--yellow { background: linear-gradient(140deg, #fdfdc9, var(--yellow) 170%); }
.offer-badge--yellow { background: var(--yellow); color: var(--dark); }
.offer-media--teal  { background: linear-gradient(140deg, #cdeae5, var(--teal) 160%); }
.offer-media--orange { background: linear-gradient(140deg, #ffd9bd, var(--orange) 150%); }

/* ---------- Newsletter ---------- */
.newsletter-inner { text-align: left; }
.newsletter-copy { color: var(--mid); max-width: 62ch; }
.newsletter-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.75rem;
  max-width: 400px;
}
.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  width: 100%;
}
/* Honeypot-Feld: fuer Menschen unsichtbar, Bots fuellen es trotzdem aus */
.newsletter-form .newsletter-trap {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0;
  pointer-events: none;
}
.newsletter-form .btn { margin-top: 0.5rem; }
.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  flex: 0 0 auto;
  font-family: var(--font);
  font-weight: 300;
  font-size: 1rem;
  padding: 1rem 1.4rem;
  border-radius: 999px;
  border: 2px solid rgba(64,64,64,0.2);
  background: var(--white);
  color: var(--dark);
  transition: border-color 0.25s ease;
}
.newsletter-form input[type="text"]:focus,
.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--blue);
}
.newsletter-hint {
  font-size: 0.82rem;
  color: var(--mid);
  margin-top: 1rem;
}
.newsletter-hint a { color: var(--blue-dark); }
.newsletter-status {
  margin-top: 1.75rem;
  font-weight: 700;
  color: var(--blue-dark);
}
.newsletter-status.is-error { color: #C0392B; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Test mode (?noanim): fixed hero height so full-page screenshots work */
html.noanim .hero { min-height: 900px; }

/* ---------- Scroll reveal ----------
   Elements are only hidden once JS confirms it will reveal them
   (html.has-reveal) — content stays visible if JS fails to run. */
html.has-reveal .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
html.has-reveal .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-inner.reveal { transition-delay: 0.15s; }
