/* ══════════════════════════════════
   BASE STYLES – Mobile-First
   Standard-Layout = Mobile.
   Desktop wird über min-width hinzugefügt.
   ══════════════════════════════════ */

/* ── HERO SECTION WRAPPER ── */
.hero-section-wrap {
  position: relative;
  background: radial-gradient(ellipse 80% 55% at 65% 30%, rgba(var(--glow-color), 0.10) 0%, transparent 70%), #FFFFFF;
  min-height: auto;
  display: flex;
  align-items: center;
}
.hero-section-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--creme));
  pointer-events: none;
  z-index: 1;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--creme-dark);
  padding: 18px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.nav-logo span {
  color: var(--terra);
}
.nav-cta {
  display: none;
  background: var(--terra);
  color: var(--terra-text);
  border: none;
  border-radius: 50px;
  padding: 12px 24px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--terra-light); transform: scale(1.02); }

/* ── HERO ── */
.hero {
  background: transparent;
  min-height: auto;
  width: 95%;
  margin: 0 auto;
  padding: 32px 0 0 0;
  display: flex;
  align-items: center;
}
.hero-content {
  width: 100%;
}
.hero-top {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 24px;
  margin-bottom: 0;
}
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  order: 1;
}
.hero-badge {
  width: fit-content;
  display: inline-block;
  background: var(--terra-pale);
  color: #966d16;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 0;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 0;
  letter-spacing: -0.02em;
}
.hero h1 em {
  color: var(--terra);
  font-style: italic;
  font-weight: 700;
}
.hero-sub {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-mid);
  max-width: 500px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 8px;
  position: relative;
  z-index: 10;
}
.hero-stats-desktop {
  display: none;
}
.hero-stats-mobile {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 16px;
  width: 100%;
  padding: 0px 0 24px 0;
  order: 3;
}
.hero-stats-mobile > div {
  flex: 1;
  text-align: center;
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: #edb84a;
  display: block;
  letter-spacing: -0.02em;
}
.hero-stat-label {
  font-size: 12px;
  color: #1E1208;
  opacity: 1;
  word-break: keep-all;
  white-space: nowrap;
}

.hero-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: start;
  margin-top: 0;
  padding-top: 0;
  order: 2;
  width: 100%;
}
.hero-img-placeholder {
  width: 75%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  object-fit: cover;
  object-position: center;
}
.hero-float-card {
  display: none;
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 8px 40px rgba(44,26,14,0.12);
  align-items: center;
  gap: 12px;
  font-size: 13px;
  width: fit-content;
}
.float-icon { font-size: 22px; flex-shrink: 0; }
.float-text strong { display: block; font-weight: 600; font-size: 13px; color: var(--text); margin-bottom: 2px; }
.float-text span { color: var(--text-mid); font-size: 14px; font-weight: 400; display: block; line-height: 1.5; white-space: nowrap; }

/* Mobile: Buttons volle Breite */
a.btn-primary,
button.btn-primary {
  display: block;
  width: 100%;
  font-size: 16px;
  padding: 18px 20px;
  text-align: center;
  box-sizing: border-box;
}

/* ── ZIELGRUPPE CARDS ── */
.zielgruppe {
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(var(--glow-color), 0.15) 0%, transparent 70%),
              var(--creme);
  padding-left: 0;
  padding-right: 0;
}
section.zielgruppe {
  padding-top: 40px;
  padding-bottom: 40px;
}
.zielgruppe-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 50px;
  width: 100%;
}
.zielgruppe-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--creme-dark);
  transition: box-shadow 0.2s, transform 0.2s;
  width: 100%;
}
.zielgruppe-card:hover {
  box-shadow: 0 8px 32px rgba(44,26,14,0.09);
  transform: translateY(-3px);
}
.zg-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  color: var(--terra);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.zg-icon svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.zg-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.zg-text { font-size: 14px; color: var(--text-mid); line-height: 1.65; }
.zg-card {
  width: 100%;
  margin: 0;
}

.zielgruppe-cta {
  text-align: center;
  margin-top: 56px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.zielgruppe-cta p {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
  padding: 24px 0 0 0;
  letter-spacing: -0.01em;
}
.zielgruppe-cta p em { color: var(--terra); font-style: italic; }
.zielgruppe-cta a.btn-primary,
.zielgruppe-cta button.btn-primary {
  width: auto;
  display: inline-block;
  padding: 18px 36px;
  font-size: 16px;
}

/* ── ERGEBNISSE ── */
.ergebnisse {
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(var(--glow-color), 0.15) 0%, transparent 70%),
              var(--creme);
  padding-left: 0;
  padding-right: 0;
}
.ergebnisse .section-title { color: var(--text); }
.ergebnisse .section-label { color: var(--terra); }
.ergebnisse .section-sub { color: var(--text-mid); }
.ergebnisse-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 50px;
  width: 100%;
}
.ergebnisse-grid,
.prozess .section-inner,
.ergebnisse .section-inner {
  padding: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 95%;
  box-sizing: border-box;
}
.ergebnis-item {
  background: var(--white);
  border: 1px solid var(--creme-dark);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
}
.ergebnis-check {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--terra);
}
.ergebnis-check svg {
  width: 22px;
  height: 22px;
}
.ergebnis-text { font-size: 15px; color: var(--text-mid); line-height: 1.65; }
.ergebnis-text strong { display: block; width: fit-content; font-weight: 700; margin-bottom: 8px; font-size: 16px; color: var(--text); border-bottom: 2px solid #ddaa40; padding-bottom: 4px; }

/* ── PROZESS ── */
.prozess { background: var(--white); padding-left: 30px; padding-right: 30px; }
.prozess-timeline {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.prozess-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 52px;
  bottom: 52px;
  width: 2px;
  background: linear-gradient(to bottom, var(--terra), var(--terra-light), var(--creme-dark));
}
.tl-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  position: relative;
  padding-bottom: 48px;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
}
.tl-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--terra);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--terra);
  flex-shrink: 0;
}
.tl-right { padding-top: 6px; }
.tl-badge {
  display: inline-block;
  background: var(--terra);
  color: var(--terra-text);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 6px;
}
.tl-subtitle {
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 20px;
  font-style: italic;
}
.tl-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tl-point {
  background: var(--creme);
  border: 1px solid var(--creme-dark);
  border-radius: 14px;
  padding: 16px 20px;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
}
.tl-point-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tl-point-title::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terra);
  flex-shrink: 0;
}
.tl-point-text {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  padding-left: 15px;
}

/* ── ÜBER DIANA ── */
.ueber {
  background: radial-gradient(ellipse 80% 60% at 80% 50%, rgba(var(--glow-color), 0.13) 0%, transparent 65%),
              var(--creme);
}
.ueber-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: start;
  text-align: center;
}
.ueber-img {
  order: 2;
  position: static;
  align-self: start;
  width: 55%;
  max-width: 200px;
  margin: 0 auto 24px;
  aspect-ratio: 4/5;
  border-radius: 60px;
  overflow: hidden;
  object-fit: cover;
}
.ueber-content {
  display: contents;
  text-align: center;
}
.ueber-content .section-label {
  order: 1;
  margin-bottom: 24px;
  width: 100%;
  text-align: center;
}
.ueber-content .section-title {
  order: 3;
  margin-bottom: 10px;
  width: 100%;
  text-align: center;
}
.ueber-content p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 9px;
  order: 4;
  text-align: center;
}
.ueber-content .ueber-highlight {
  order: 4;
  text-align: left;
  margin: 14px 0;
}
.ueber-content-body {
  order: 4;
}
.ueber-highlight {
  background: var(--terra-pale);
  border-left: 3px solid var(--terra);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-size: 17px;
  font-style: italic;
  font-weight: 500;
  color: var(--text);
  line-height: 1.6;
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--creme); padding-left: 0; padding-right: 0; }
section.testimonials {
  overflow: visible;
}
.testimonials .section-inner {
  padding-left: 0;
  padding-right: 0;
  overflow: visible;
  width: 100%;
  max-width: 100%;
}

/* Masonry-Layout (legacy) */
.testi-masonry {
  columns: 3;
  column-gap: 20px;
  margin-top: 50px;
}
.testi-screenshot {
  break-inside: avoid;
  margin-bottom: 20px;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--creme-dark);
  box-shadow: 0 4px 20px rgba(30,18,8,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.testi-screenshot:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(30,18,8,0.13);
}
.testi-screen-header {
  background: var(--creme-dark);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.testi-screen-dots {
  display: flex;
  gap: 5px;
}
.testi-screen-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-light);
  opacity: 0.4;
}
.testi-screen-platform {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-left: auto;
}
.testi-screen-body {
  padding: 20px;
}
.testi-screen-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 6px;
}
.testi-screen-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}
.testi-screen-text em {
  color: var(--terra);
  font-style: normal;
  font-weight: 600;
}
.testi-screen-footer {
  padding: 12px 20px;
  border-top: 1px solid var(--creme-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testi-stars { color: var(--terra); font-size: 13px; letter-spacing: 1px; }
.testi-date { font-size: 11px; color: var(--text-light); }

/* Testimonials Grid – auf Mobile versteckt */
.testi-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  align-items: start;
}
.testi-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testi-card {
  border-radius: 16px;
  overflow: hidden;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--creme-dark);
  position: relative;
}
.testi-card img {
  width: 100%;
  aspect-ratio: unset;
  height: auto;
  object-fit: contain;
  display: block;
  padding: 0;
  border-radius: 8px;
}
.testi-card-inner {
  max-height: 280px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}
.testi-card-inner.expanded {
  max-height: 2000px;
}
.testi-card-fade {
  display: none;
}
.testi-expand-btn {
  display: block;
  width: calc(100% + 16px);
  margin: 0 -8px;
  background: none;
  border: none;
  border-top: 1px solid #ffffff;
  border-left: none;
  border-right: none;
  border-bottom: none;
  border-radius: 0;
  padding: 10px;
  font-size: 12px;
  color: var(--terra);
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  font-family: inherit;
}
.testi-expand-btn:hover {
  background: var(--creme);
}
.testi-mehr-btn {
  display: none;
  width: fit-content;
  background: var(--terra-pale);
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 13px;
  color: var(--terra);
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  font-family: inherit;
  margin: 32px auto 0;
}
.testi-mehr-btn:hover {
  background: var(--creme);
}

/* Testimonials Slider – auf Mobile sichtbar */
.testi-slider {
  display: flex;
  flex-direction: row;
  padding: 0 7.5%;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 12px;
  scroll-snap-type: x mandatory;
  align-items: flex-start;
}
.testi-slider::-webkit-scrollbar {
  display: none;
}
.testi-slide {
  min-width: 85vw;
  max-width: 85vw;
  flex-shrink: 0;
  scroll-snap-align: center;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--creme-dark);
  display: flex;
  flex-direction: column;
}
.testi-slide-img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.testi-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.testi-slide-img.expanded {
  aspect-ratio: unset;
  height: auto;
  overflow: visible;
}
.testi-slide-img.expanded img {
  height: auto;
  object-fit: unset;
}
.testi-slide-btn {
  display: block;
  width: 100%;
  background: none;
  border: none;
  border-top: 1px solid var(--creme-dark);
  padding: 10px;
  font-size: 13px;
  color: var(--terra);
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  font-family: inherit;
}

/* ── FINAL CTA ── */
.final-cta {
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(var(--glow-color), 0.12) 0%, transparent 70%),
              var(--creme);
  text-align: center;
  padding-left: 30px;
  padding-right: 30px;
}
.final-cta .section-title { margin-bottom: 16px; }
.final-cta p {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ── FOOTER ── */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 40px 5%;
  font-size: 13px;
  line-height: 1.8;
}
footer a { color: rgba(255,255,255,0.5); text-decoration: underline; }
.footer-disclaimer {
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 16px 24px;
  max-width: 700px;
  margin: 0 auto 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ── CALENDLY ── */
.calendly-section {
  background: var(--creme);
  padding: 80px 0;
}

/* ── SCROLL CONTAINER ── */
.scroll-container {
  overflow-x: visible;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0;
  margin: 0;
}
.scroll-container::-webkit-scrollbar {
  display: none;
}

/* Mobile: Sections zentriert */
.section-title {
  text-align: center;
}
.section-label {
  text-align: center;
  display: block;
}
.zielgruppe .section-inner,
.ergebnisse .section-inner,
.prozess .section-inner,
.ueber .section-inner,
.testimonials .section-inner,
.final-cta .section-inner {
  text-align: center;
}
.ergebnis-text,
.tl-point-text,
.zg-text {
  text-align: left;
}


/* ══════════════════════════════════
   TABLET & DESKTOP (≥ 769px)
   ══════════════════════════════════ */
@media screen and (min-width: 769px) {

  /* Nav */
  .nav-cta {
    display: inline-block;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 60px 5%;
    align-items: stretch;
  }
  .hero-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-text {
    align-items: center;
    order: initial;
  }
  .hero-sub {
    max-width: 600px;
  }
  .hero-img-wrap {
    order: 2;
    display: flex;
    justify-content: center;
    margin-top: 0;
  }
  .hero-img-placeholder {
    width: 100%;
    max-width: 360px;
    border-radius: 100px;
    object-position: center 55%;
  }
  .hero-float-card {
    display: inline-flex;
    left: 50%;
    transform: translateX(-50%);
  }
  .hero-stats-desktop {
    display: flex;
  }
  .hero-stats {
    width: 100%;
    justify-content: center;
    gap: 24px;
  }
  .hero-stats-mobile {
    display: none;
  }
  .hero-stat-label {
    font-size: 13px;
    word-break: normal;
    white-space: normal;
  }

  /* Buttons: zurück auf inline */
  a.btn-primary,
  button.btn-primary {
    display: inline-block;
    width: auto;
    padding: 18px 36px;
  }

  /* Zielgruppe */
  section.zielgruppe {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .zielgruppe-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .zielgruppe-cta {
    width: 100%;
  }

  /* Ergebnisse */
  .ergebnisse-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: none;
    padding: 0;
    margin: 0;
  }
  .ergebnisse .section-inner,
  .prozess .section-inner {
    max-width: var(--container);
    padding: 0 40px;
    width: 100%;
  }

  /* Timeline */
  .prozess-timeline {
    margin-top: 48px;
  }
  .prozess-timeline::before {
    left: 35px;
  }
  .tl-item {
    grid-template-columns: 72px 1fr;
    gap: 24px;
    padding-bottom: 40px;
  }
  .tl-num {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }

  /* Über Diana */
  .ueber-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }
  .ueber-content {
    display: block;
    text-align: left;
  }
  .ueber-img {
    order: initial;
    position: static;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    display: block;
    border-radius: 160px;
    aspect-ratio: 4/5;
  }
  .ueber-content .section-label {
    order: initial;
    width: auto;
    margin-bottom: 14px;
    text-align: center;
  }
  .ueber-content .section-title {
    order: initial;
    width: auto;
    margin-bottom: 24px;
    text-align: center;
  }
  .ueber-content p {
    order: initial;
    text-align: left;
    margin-bottom: 18px;
  }
  .ueber-content .ueber-highlight {
    order: initial;
    margin: 28px 0;
  }
  .ueber-content-body {
    order: initial;
  }

  /* Testimonials */
  .testimonials {
    padding-left: 30px;
    padding-right: 30px;
  }
  .testimonials .section-inner {
    width: 100%;
    max-width: var(--container);
    padding: 0 40px;
  }
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-col {
    display: contents;
  }
  .testi-mehr-btn {
    display: block;
  }
  .testi-slider {
    display: none;
  }

  /* Scroll Container */
  .scroll-container {
    overflow-x: auto;
    padding: 0 20px;
    margin: 0 -20px;
  }

  /* Section Text-Alignment: Titles zentriert, Rest links */
  .section-title {
    text-align: center;
  }
  .section-label {
    text-align: center;
    display: block;
  }
  .zielgruppe .section-inner,
  .ergebnisse .section-inner,
  .prozess .section-inner,
  .ueber .section-inner,
  .testimonials .section-inner {
    text-align: left;
  }
  .final-cta .section-inner {
    text-align: center;
  }
}


/* ══════════════════════════════════
   DESKTOP ONLY (≥ 1025px)
   ══════════════════════════════════ */
@media screen and (min-width: 1025px) {

  /* Hero */
  .hero-section-wrap {
    min-height: 100vh;
  }
  .hero {
    min-height: 90vh;
    width: 100%;
    max-width: var(--container);
    padding: 0;
  }
  .hero-top {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    text-align: left;
    align-items: start;
  }
  .hero-text {
    align-items: flex-start;
  }
  .hero-sub {
    max-width: 500px;
  }
  .hero-img-wrap {
    order: initial;
    margin-top: 52px;
  }
  .hero-img-placeholder {
    max-width: 470px;
    border-radius: 100px;
    object-position: center 55%;
  }
  .hero-float-card {
    left: -20px;
    transform: none;
  }
  .hero-stats {
    width: auto;
    justify-content: flex-start;
    gap: 40px;
  }

  /* Zielgruppe */
  section.zielgruppe {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .zielgruppe-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Ergebnisse */
  .ergebnisse {
    padding-left: 30px;
    padding-right: 30px;
  }
  .ergebnisse-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ergebnisse .section-inner,
  .prozess .section-inner {
    padding: 0 60px;
  }

  /* Timeline */
  .prozess-timeline {
    margin-top: 60px;
  }
  .tl-item {
    gap: 32px;
    padding-bottom: 48px;
  }

  /* Über Diana */
  .ueber-inner {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
  .ueber-img {
    position: sticky;
    top: 100px;
    align-self: start;
    width: 500px;
    max-width: none;
    margin: 0;
    border-radius: 160px;
  }
  .ueber-content .section-label {
    text-align: left;
  }
  .ueber-content .section-title {
    text-align: left;
  }

  /* Testimonials */
  .testimonials .section-inner {
    padding: 0 60px;
  }
  .testi-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .testi-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* Section Text-Alignment: Desktop links */
  .section-title {
    text-align: left;
  }
  .section-label {
    text-align: left;
    display: inline-block;
  }
}


/* ══════════════════════════════════
   SMALL MOBILE (≤ 390px)
   ══════════════════════════════════ */
@media screen and (max-width: 390px) {
  .hero h1 {
    font-size: 34px;
  }
  .hero-sub {
    font-size: 14px;
  }
}


/* ══════════════════════════════════
   MOBILE SAFETY NET (max-device-width)
   Absicherung für In-App Browser
   (Instagram, Facebook, TikTok etc.)
   ══════════════════════════════════ */
@media screen and (max-device-width: 768px) {

  /* Hero Layout */
  .hero-section-wrap { min-height: auto; }
  .hero {
    width: 95%;
    min-height: auto;
    padding: 32px 0 0 0;
    align-items: center;
  }
  .hero-top {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .hero-text {
    align-items: center;
    order: 1;
  }
  .hero-img-wrap {
    order: 2;
    width: 100%;
    margin-top: 0;
  }
  .hero-img-placeholder {
    width: 75%;
    max-width: 100%;
    border-radius: 24px;
  }
  .hero-float-card { display: none; }
  .hero-stats-desktop { display: none; }
  .hero-stats-mobile {
    display: flex;
    flex-direction: column;
    order: 3;
  }

  /* Nav */
  .nav-cta { display: none; }

  /* Buttons */
  a.btn-primary,
  button.btn-primary {
    display: block;
    width: 100%;
    padding: 18px 20px;
  }
  .zielgruppe-cta a.btn-primary,
  .zielgruppe-cta button.btn-primary {
    width: auto;
    display: inline-block;
    padding: 18px 36px;
  }

  /* Zielgruppe */
  section.zielgruppe { padding-top: 40px; padding-bottom: 40px; }
  .zielgruppe-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Ergebnisse */
  .ergebnisse { padding-left: 0; padding-right: 0; }
  .ergebnisse-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .ergebnisse-grid,
  .prozess .section-inner,
  .ergebnisse .section-inner {
    max-width: 95%;
    padding: 0;
  }

  /* Timeline */
  .prozess-timeline::before { left: 20px; }
  .tl-item {
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }
  .tl-num { width: 40px; height: 40px; font-size: 16px; }

  /* Über Diana */
  .ueber-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: center;
  }
  .ueber-content { display: contents; text-align: center; }
  .ueber-img {
    order: 2;
    position: static;
    width: 55%;
    max-width: 200px;
    margin: 0 auto 24px;
    border-radius: 60px;
  }

  /* Testimonials */
  .testimonials { padding-left: 0; padding-right: 0; }
  .testimonials .section-inner {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .testi-grid { display: none; }
  .testi-mehr-btn { display: none; }
  .testi-slider { display: flex; }

  /* Scroll Container */
  .scroll-container {
    overflow-x: visible;
    padding: 0;
    margin: 0;
  }

  /* Alignment */
  .section-title { text-align: center; }
  .section-label { text-align: center; display: block; }
  .zielgruppe .section-inner,
  .ergebnisse .section-inner,
  .prozess .section-inner,
  .ueber .section-inner,
  .testimonials .section-inner,
  .final-cta .section-inner {
    text-align: center;
  }
  .ergebnis-text,
  .tl-point-text,
  .zg-text {
    text-align: left;
  }
}
