/* ============================================================
   SOULWORKOUT.DE – Custom Stylesheet
   Navin Sarup · Spiritual Healing & Coaching
   ============================================================ */

/* ============================================================
   1. ROOT VARIABLES
   ============================================================ */
:root {
  --color-dark-teal:    #10414C;
  --color-black:        #080808;
  --color-deep-black:   #050505;
  --color-burgundy:     #8D3D50;
  --color-live-blue:    #2b3e7c;
  --color-live-blue-2:  #203969;
  --color-soft-white:   #f7f7f7;
  --color-ink:          #183633;
  --color-white:        #ffffff;
  --color-gold:         #C4921A;
  --color-coral:        #c43b20;
  --color-dark-green:   #123633;
  --color-text-light:   #e8e8e8;
  --color-text-muted:   rgba(255,255,255,0.6);
  --color-card-bg:      rgba(255,255,255,0.04);
  --color-card-border:  rgba(255,255,255,0.09);

  --font-display: 'Bricolage Grotesque', 'Helvetica Neue', sans-serif;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', 'Helvetica Neue', sans-serif;

  --container-max:     1200px;
  --section-pad:       110px;
  --border-radius:     12px;
  --border-radius-lg:  20px;
  --transition:        all 0.3s ease;
  --transition-slow:   all 0.55s ease;

  --shadow-card:  0 4px 30px rgba(0,0,0,0.35);
  --shadow-glow:  0 0 50px rgba(196,146,26,0.18);
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.78;
  color: var(--color-text-light);
  background: var(--color-deep-black);
  overflow-x: hidden;
  font-weight: 400;
  letter-spacing: 0.01em;
}

body::before {
  content: '';
  display: block;
  height: 118px;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; transition: var(--transition); }
ul  { list-style: none; }

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-white);
}
h1 { font-size: clamp(2.6rem, 7vw,  5.5rem); }
h2 { font-size: clamp(2rem,   4vw,  3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem);  }
h4 { font-size: clamp(1.1rem, 2vw,   1.4rem);}

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

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 1rem;
}

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: var(--section-pad) 0; position: relative; }

.section--dark     { background: var(--color-black); }
.section--deep     { background: var(--color-deep-black); }
.section--teal     { background: var(--color-dark-teal); }
.section--burgundy { background: var(--color-burgundy); }
.section--light    { background: var(--color-soft-white); color: var(--color-ink); }

.section--light h1,
.section--light h2,
.section--light h3,
.section--light h4,
.section--light .section-label,
.section--light .problem-card__title,
.section--light .testimonial-card__name,
.section--light .service-card__title {
  color: var(--color-ink);
}

.section--light .text-muted,
.section--light p,
.section--light .problem-card__text,
.section--light .testimonial-card__quote,
.section--light .testimonial-card__subtitle,
.section--light .service-card__text,
.section--light .service-card__features li {
  color: rgba(24,54,51,0.76);
}

/* ============================================================
   4B. TOPBAR
   ============================================================ */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: #2a155f;
  color: rgba(255,255,255,0.92);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.topbar__inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar__logo {
  height: 48px;
  width: auto;
}

.topbar__dots {
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
  letter-spacing: 0.26em;
}

.topbar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar__cta:hover {
  transform: translateY(-1px);
}

.text-center { text-align: center; }
.text-gold   { color: var(--color-gold); }
.text-muted  { color: var(--color-text-muted); }

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-burgundy) 100%);
  color: var(--color-white);
  box-shadow: 0 4px 22px rgba(196,59,32,0.38);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(196,59,32,0.5);
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, #9e7214 100%);
  color: var(--color-white);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196,146,26,0.42);
}

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

.btn-white {
  background: var(--color-white);
  color: var(--color-burgundy);
  font-size: 0.8rem;
  padding: 18px 52px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.3);
}

.btn-secondary {
  background: rgba(43,62,124,0.08);
  color: var(--color-live-blue);
  border-color: rgba(43,62,124,0.14);
  box-shadow: none;
}
.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(43,62,124,0.12);
  border-color: rgba(43,62,124,0.24);
}

/* ============================================================
   6. DIVIDER
   ============================================================ */
.divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-coral), var(--color-gold));
  border-radius: 2px;
  margin: 1.4rem auto;
}
.divider--left { margin: 1.4rem 0; }

/* ============================================================
   7. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 48px; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: var(--transition-slow);
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid rgba(16,65,76,0.08);
}
.nav.scrolled {
  background: rgba(255,255,255,0.98);
  padding: 10px 0;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(43,62,124,0.88);
  position: relative;
  padding-bottom: 4px;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--color-gold);
  transition: var(--transition);
}
.nav__links a:hover { color: var(--color-live-blue); }
.nav__links a:hover::after { width: 100%; }
.nav__links a:first-child::after { width: 100%; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.nav__mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 40, 48, 0.98);
  backdrop-filter: blur(12px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 80px 28px;
}
.nav__mobile-menu.open { display: flex; }
.nav__mobile-menu a {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  text-align: center;
}
.nav__mobile-menu a:hover { color: var(--color-gold); }

/* ============================================================
   8. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, rgb(28,26,90) 0%, rgb(54,83,151) 100%);
}

.hero__video-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero__video-container iframe {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(1.16);
  width: max(124vw, 220vh);
  height: max(124vh, 69.75vw);
  pointer-events: none;
  border: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,41,92,0.58) 0%,
    rgba(32,57,105,0.5) 40%,
    rgba(21,32,67,0.84) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(1280px, 100%);
  padding: 72px 32px 106px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 42px 54px;
  align-items: start;
}

.hero__copy {
  max-width: 1040px;
  grid-column: 1 / -1;
  margin: 0 auto;
  text-align: center;
}

.hero__mini-banner {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 18px 9px;
  background: rgba(245,239,223,0.96);
  color: #5f5130;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.05;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  opacity: 0;
  animation: fadeUp 1.05s 0.22s forwards;
}

.hero__headline {
  line-height: 0.9;
  margin-bottom: 0.5rem;
}

.hero__headline--live {
  font-family: 'Hind Madurai', var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.075em;
  font-size: clamp(4rem, 6.9vw, 6.15rem);
  text-indent: 0.075em;
  text-shadow: 0 2px 18px rgba(9,14,39,0.18);
}

.hero__subheadline--live {
  max-width: 840px;
  margin: 0 auto 0.9rem;
  color: rgba(255,255,255,0.95);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.95rem, 3.1vw, 2.72rem);
  font-weight: 500;
  line-height: 1.3;
}

.hero__keywords-line {
  margin: 0 auto;
  max-width: 880px;
  color: rgba(255,255,255,0.92);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.45;
}

.hero__media-stack {
  align-self: start;
  padding-top: 4px;
  opacity: 0;
  animation: fadeUp 1.15s 0.98s forwards;
}

.hero__video-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.18), transparent 42%),
    rgba(255,255,255,0.05);
  cursor: pointer;
  overflow: hidden;
  border-radius: 54px;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 18px 54px rgba(8,17,40,0.24);
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}

.hero__video-card picture {
  display: block;
}

.hero__video-card img {
  display: block;
  width: 100%;
  height: auto;
}

.hero__video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 64px rgba(8,17,40,0.3);
  border-color: rgba(255,255,255,0.26);
}

.hero__video-play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: rgb(44,108,142);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 10px 24px rgba(44,108,142,0.28);
}

.hero__lede-card {
  margin-top: 26px;
  padding: 22px 24px 20px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.16);
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  backdrop-filter: blur(8px);
  max-width: 565px;
  box-shadow: 0 18px 40px rgba(5,12,31,0.14);
}

.hero__lede-card p {
  color: rgba(255,255,255,0.92);
  font-size: 0.96rem;
  line-height: 1.63;
}

.hero__lede-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 9px;
  margin-top: 18px;
  align-items: center;
}

.hero__lede-points span {
  padding: 8px 13px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.92);
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.hero__benefits-panel {
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 28px;
  max-width: 510px;
  min-height: 100%;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 46px rgba(8,17,40,0.18);
  opacity: 0;
  animation: fadeUp 1.15s 1.14s forwards;
}

.hero__benefits-title {
  margin-bottom: 1.05rem;
  color: rgba(247,247,247,0.96);
  font-family: var(--font-heading);
  font-size: 1.38rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.hero__benefits {
  display: grid;
  gap: 14px;
}

.hero__benefits li {
  position: relative;
  padding-left: 36px;
  color: rgba(255,255,255,0.96);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.54;
}

.hero__benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.24), rgba(255,255,255,0.11));
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
}

.hero__cta-row {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1.05s 1.26s forwards;
}

.hero__trust-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  opacity: 0;
  animation: fadeUp 1.08s 1.4s forwards;
}

.hero__trust-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.9);
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: none;
}

.video-modal.is-open {
  display: block;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,10,24,0.78);
  backdrop-filter: blur(6px);
}

.video-modal__dialog {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(1280px, 96vw);
}

.video-modal__close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.94);
  color: #17223d;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0,0,0,0.24);
}

.video-modal__frame-wrap {
  overflow: hidden;
  border-radius: 26px;
  background: #000;
  box-shadow: 0 24px 80px rgba(0,0,0,0.42);
  aspect-ratio: 16 / 9;
  max-height: 90vh;
}

.video-modal__frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.hero__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 1.02s 0.38s forwards;
}
.lang-toggle {
  display: none;
}
.hero__headline {
  opacity: 0;
  animation: fadeUp 1.06s 0.66s forwards;
}
.hero__subheadline {
  opacity: 0;
  animation: fadeUp 1.08s 0.84s forwards;
}
.hero__cta-wrap {
  opacity: 0;
  animation: fadeUp 1.05s 1.04s forwards;
}

/* ============================================================
   9. INTRO / TRANSFORMATION SECTION
   ============================================================ */
.intro-light {
  border-top: 1px solid rgba(24,54,51,0.06);
  padding-top: 102px;
  padding-bottom: 44px;
}

.intro__content {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.intro__headline {
  margin-bottom: 1.6rem;
  font-size: clamp(2.55rem, 4.8vw, 4rem);
}

.intro__copy {
  max-width: 930px;
  margin: 0 auto;
}

.intro__copy p {
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
  line-height: 1.92;
  color: rgba(24,54,51,0.78);
}

.intro__sub {
  margin-top: 2rem;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: #5d6c7f;
  font-style: italic;
  margin-bottom: 0;
}

.benefit-list { margin: 1.5rem 0 2rem; }
.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.93rem;
  color: rgba(255,255,255,0.82);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.intro-light .benefit-list li {
  border-bottom-color: rgba(24,54,51,0.08);
  color: rgba(24,54,51,0.82);
}

.intro-light .benefit-icon {
  box-shadow: 0 8px 18px rgba(196,59,32,0.18);
}
.benefit-list li:last-child { border-bottom: none; }
.benefit-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--color-coral), var(--color-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #fff;
  margin-top: 3px;
  font-weight: 700;
}

/* ============================================================
   10. PROBLEM SECTION
   ============================================================ */
.problems__header {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 52px;
}

.problems-light {
  padding-top: 22px;
  padding-bottom: 96px;
}

.problems__eyebrow {
  font-family: var(--font-body);
  font-size: 1.28rem;
  font-style: italic;
  color: rgba(24,54,51,0.9);
  margin-bottom: 1.1rem;
}

.problems__lede {
  max-width: 830px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.02rem;
  line-height: 1.88;
}
.problems__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 26px;
}
/* Row 1: 3 equal cards (each spans 2 of 6 cols) */
.problems__grid .problem-card:nth-child(1) { grid-column: 1 / 3; }
.problems__grid .problem-card:nth-child(2) { grid-column: 3 / 5; }
.problems__grid .problem-card:nth-child(3) { grid-column: 5 / 7; }
/* Row 2: 2 cards centered (cols 2–4 and 4–6) */
.problems__grid .problem-card:nth-child(4) { grid-column: 2 / 4; }
.problems__grid .problem-card:nth-child(5) { grid-column: 4 / 6; }

.problem-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: 26px;
  padding: 34px 30px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.problems-light .problem-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  border: 1px solid rgba(24,54,51,0.09);
  box-shadow: 0 14px 32px rgba(12,32,35,0.05);
}

.problems-light .problem-card__num {
  color: rgba(24,54,51,0.07);
}

.problems-light .problem-card:hover {
  border-color: rgba(196,59,32,0.28);
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, rgba(44,108,142,0.94), rgba(80,107,174,0.84));
}
.problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(44,108,142,0.22);
  box-shadow: 0 18px 40px rgba(12,32,35,0.1);
}
.problem-card__num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255,255,255,0.05);
  position: absolute;
  top: 18px; right: 20px;
  line-height: 1;
}
.problem-card__title {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: var(--color-white);
}
.problem-card__text {
  font-size: 0.96rem;
  color: var(--color-text-muted);
  line-height: 1.78;
  margin: 0;
}

/* ============================================================
   10B. ROOT-CAUSE VIDEO BRIDGE
   ============================================================ */
.process-video {
  padding-top: 40px;
  padding-bottom: 84px;
  background:
    radial-gradient(circle at top left, rgba(196,146,26,0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(43,62,124,0.16), transparent 32%),
    linear-gradient(180deg, #143e47 0%, #103840 100%);
}

.process-video__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 460px);
  gap: 42px;
  align-items: center;
  padding: 42px;
  border-radius: 34px;
  background: rgba(8,8,8,0.18);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 26px 60px rgba(0,0,0,0.16);
  backdrop-filter: blur(8px);
}

.process-video__headline {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  max-width: 15ch;
}

.process-video__lede {
  margin-top: 1.2rem;
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.8);
  max-width: 62ch;
}

.process-video .block-de p,
.process-video .block-en p {
  color: rgba(255,255,255,0.76);
  line-height: 1.88;
}

.process-video__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 2rem;
}

.process-video__step {
  padding: 18px 16px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
}

.process-video__step strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  color: rgba(196,146,26,0.95);
}

.process-video__step p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
}

.process-video__actions {
  margin-top: 2rem;
}

.process-video__media {
  align-self: stretch;
}

.process-video__video {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: rgba(255,255,255,0.04);
  box-shadow: 0 22px 52px rgba(0,0,0,0.26);
  cursor: pointer;
}

.process-video__video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.process-video__video::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,24,30,0.02) 0%, rgba(10,24,30,0.3) 100%),
    radial-gradient(circle at 50% 42%, rgba(255,255,255,0.08), transparent 25%);
}

.process-video__video:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.32);
}

.process-video__play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.94);
  color: #203969;
  font-size: 1.6rem;
  box-shadow: 0 14px 34px rgba(0,0,0,0.24);
}

.process-video__caption {
  margin-top: 14px;
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  line-height: 1.7;
  font-style: italic;
}

/* ============================================================
   11. ÜBER NAVIN
   ============================================================ */
.about__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}
.section--dark#ueber-navin {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(46,115,118,0.22), transparent 38%),
    linear-gradient(180deg, #143e47 0%, #0f323a 100%);
}
.about__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.about__bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(124vw, 220vh);
  height: max(124vh, 69.75vw);
  transform: translate(-50%, -50%) scale(1.16);
  border: 0;
}

.about__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9,32,38,0.46) 0%, rgba(13,44,50,0.34) 100%),
    radial-gradient(circle at top right, rgba(46,115,118,0.24), transparent 40%);
  pointer-events: none;
}

.section--dark#ueber-navin .container {
  position: relative;
  z-index: 1;
}
.about__photo {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 54px rgba(0,0,0,0.34);
  object-fit: cover;
}
.about__caption {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-style: italic;
  text-align: center;
}
.about__kicker {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  margin-bottom: 0.75rem;
}

.about__headline {
  font-size: clamp(2.7rem, 4.6vw, 4rem);
}

.section--dark#ueber-navin .block-de p,
.section--dark#ueber-navin .block-en p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.84);
}

.about__video-wrap {
  margin-top: 32px;
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 46px rgba(0,0,0,0.22);
  cursor: pointer;
}

.about__video-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__video-play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.92);
  color: #203969;
  font-size: 1.3rem;
  box-shadow: 0 14px 32px rgba(0,0,0,0.2);
}
.about__video-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  font-size: 0.85rem;
}
.about__video-placeholder span { font-size: 2.5rem; }
.about__video-caption {
  margin-top: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.68);
  font-style: italic;
}

.about__prep-card {
  margin-top: 2rem;
  padding: 28px 28px 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 42px rgba(0,0,0,0.16);
}

.about__prep-card h3 {
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  margin-bottom: 0.9rem;
}

.about__prep-card .section-label {
  color: #f0d68d;
}

.about__prep-card p {
  color: rgba(255,255,255,0.84);
}

.about__prep-list {
  display: grid;
  gap: 10px;
  margin-top: 1.1rem;
}

.about__prep-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  line-height: 1.72;
}

.about__prep-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f0d68d;
}

/* ============================================================
   11A. MINI CTA
   ============================================================ */
.mini-cta {
  padding: 34px 0 30px;
  background: #143e47;
}

.mini-cta__inner {
  display: flex;
  justify-content: center;
}

/* ============================================================
   11B. TRUST STRIP
   ============================================================ */
.trust-strip {
  background: linear-gradient(180deg, #f8f8f6 0%, #ffffff 100%);
  border-top: 1px solid rgba(24,54,51,0.06);
  border-bottom: 1px solid rgba(24,54,51,0.06);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 34px;
  padding-bottom: 18px;
}

.trust-strip__item {
  text-align: center;
  padding: 18px 16px;
  border-radius: 14px;
  background: transparent;
  border: 1px solid rgba(43,62,124,0.08);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.trust-strip__icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4b5e8f;
  border: 1px solid rgba(75,94,143,0.22);
  background: rgba(75,94,143,0.05);
  font-size: 0.9rem;
}

.trust-strip__copy {
  max-width: 900px;
  padding-bottom: 36px;
}

.trust-strip__copy p {
  margin: 0 auto;
  text-align: center;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(24,54,51,0.78);
}

/* ============================================================
   11C. CONSULT SECTION
   ============================================================ */
.consult-section {
  border-top: 1px solid rgba(24,54,51,0.06);
}

.consult-section__header {
  max-width: 840px;
  margin: 0 auto 54px;
  text-align: center;
}

.consult-section .section-label {
  margin-bottom: 0.85rem;
}

.consult-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 30px;
}

.consult-step,
.consult-card {
  background: linear-gradient(180deg, #ffffff 0%, #fafaf8 100%);
  border: 1px solid rgba(24,54,51,0.08);
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 14px 32px rgba(12,32,35,0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.consult-step:hover,
.consult-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(12,32,35,0.08);
  border-color: rgba(43,62,124,0.14);
}

.consult-step__num {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(43,62,124,0.08);
  color: var(--color-live-blue);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.consult-step h3,
.consult-card h3,
.faq-mini__item h3 {
  color: var(--color-ink);
  font-size: 1.65rem;
  margin-bottom: 0.8rem;
}

.consult-step p,
.consult-card p,
.consult-list li {
  color: rgba(24,54,51,0.78);
}

.consult-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.consult-list {
  display: grid;
  gap: 10px;
}

.consult-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.94rem;
  line-height: 1.72;
}

.consult-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(43,62,124,0.88);
}

.consult-section__cta {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

.selfcheck {
  margin-top: 32px;
  padding: 34px 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f8f5 100%);
  border: 1px solid rgba(24,54,51,0.08);
  box-shadow: 0 18px 42px rgba(12,32,35,0.06);
}

.selfcheck__header {
  max-width: 820px;
  margin-bottom: 26px;
}

.selfcheck__header h3 {
  color: var(--color-ink);
  font-size: 2rem;
  margin-bottom: 0.7rem;
}

.selfcheck__header p,
.selfcheck__hint,
.selfcheck__result-text {
  color: rgba(24,54,51,0.8);
  line-height: 1.8;
  margin: 0;
}

.selfcheck__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.selfcheck__item {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(24,54,51,0.08);
}

.selfcheck__question {
  margin: 0 0 14px;
  color: var(--color-ink);
  font-size: 0.96rem;
  line-height: 1.65;
}

.selfcheck__actions {
  display: flex;
  gap: 10px;
}

.selfcheck__btn {
  appearance: none;
  border: 1px solid rgba(24,54,51,0.14);
  background: #fff;
  color: rgba(24,54,51,0.86);
  border-radius: 999px;
  padding: 10px 16px;
  min-width: 84px;
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.selfcheck__btn:hover {
  transform: translateY(-1px);
  border-color: rgba(43,62,124,0.28);
}

.selfcheck__btn.is-active[data-answer="yes"] {
  background: rgba(43,62,124,0.92);
  border-color: rgba(43,62,124,0.92);
  color: #fff;
}

.selfcheck__btn.is-active[data-answer="no"] {
  background: rgba(141,61,80,0.9);
  border-color: rgba(141,61,80,0.9);
  color: #fff;
}

.selfcheck__result {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(43,62,124,0.05);
  border: 1px solid rgba(43,62,124,0.12);
}

.selfcheck__result.is-good {
  background: rgba(36,112,84,0.07);
  border-color: rgba(36,112,84,0.18);
}

.selfcheck__result.is-mid {
  background: rgba(196,146,26,0.08);
  border-color: rgba(196,146,26,0.16);
}

.selfcheck__result.is-low {
  background: rgba(141,61,80,0.07);
  border-color: rgba(141,61,80,0.16);
}

.selfcheck__result-title {
  display: block;
  margin-bottom: 6px;
  color: var(--color-ink);
  font-size: 1rem;
}

.selfcheck__footer {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.selfcheck__hint {
  max-width: 680px;
}

/* ============================================================
   12. GOSHI SECTION
   ============================================================ */
#goshi {
  overflow: hidden;
  min-height: 860px;
}

.goshi__bg,
.goshi__bg-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.goshi__bg {
  z-index: 0;
  opacity: 1;
  overflow: hidden;
}

.goshi__bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: none;
  filter: brightness(0.96);
}

.goshi__bg-overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6,12,16,0.27) 0%, rgba(9,25,36,0.31) 40%, rgba(12,32,48,0.35) 100%),
    rgba(7,18,26,0.10);
}

.goshi__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}

.goshi__content {
  padding: 34px 36px 36px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(8, 24, 34, 0.5);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.24);
}

.goshi__content h2 {
  margin-bottom: 10px;
  font-size: clamp(2.5rem, 4.2vw, 3.7rem);
}

.goshi__content p {
  color: rgba(255,255,255,0.84);
}

.goshi__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,146,26,0.12);
  border: 1px solid rgba(196,146,26,0.3);
  border-radius: 50px;
  padding: 6px 18px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.4rem;
}
.goshi__subtitle {
  font-size: 1.15rem;
  color: var(--color-gold);
  font-style: italic;
  margin-bottom: 1.4rem;
}
.goshi__feature-list {
  margin: 1.4rem 0 2.3rem;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.goshi__roles {
  display: grid;
  gap: 14px;
  margin: 1.3rem 0 1.55rem;
}
.goshi__role {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.goshi__role h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  color: rgba(255,255,255,0.96);
}
.goshi__role p {
  margin-bottom: 0;
  font-size: 0.93rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
}
.goshi__feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.93rem;
  color: rgba(255,255,255,0.8);
}
.goshi__feature-list li::before { content: '✨'; flex-shrink: 0; }
.goshi__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.goshi__widget-hint {
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-card-border);
  border-radius: var(--border-radius);
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.goshi__image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  min-height: 100%;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}
.goshi__image-wrap::before {
  content: '';
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,146,26,0.14) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.goshi__img {
  width: 360px;
  max-width: 100%;
  filter: drop-shadow(0 20px 60px rgba(196,146,26,0.28));
  position: relative;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

/* ============================================================
   13. ESSENCES
   ============================================================ */
.essences-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(244,238,226,0.72) 0%, rgba(247,243,235,0.8) 100%),
    url('https://onecdn.io/media/f16aba21-d7d6-429b-b335-733ac219a486/lg2x') center center / cover no-repeat;
}

.essences-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.08)),
    radial-gradient(circle at top right, rgba(196,146,26,0.08), transparent 28%),
    radial-gradient(circle at bottom left, rgba(43,62,124,0.06), transparent 30%);
  pointer-events: none;
}

.essences-section .container {
  position: relative;
  z-index: 1;
}

.essences__header {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 56px;
}

.essences__header .text-muted {
  color: rgba(24,54,51,0.82);
}

.essences-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 52px;
}

.essence-card {
  padding: 0 0 18px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(24,54,51,0.12);
  box-shadow: none;
  backdrop-filter: none;
}

.essence-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  margin-bottom: 14px;
  color: rgba(127,88,19,0.92);
  font-size: 1.3rem;
  line-height: 1;
}

.essence-card h3 {
  color: var(--color-ink);
  font-size: 1.42rem;
  margin-bottom: 0.7rem;
  line-height: 1.3;
}

.essence-card p {
  margin: 0;
  color: rgba(24,54,51,0.84);
  line-height: 1.86;
  font-size: 0.99rem;
}

/* ============================================================
   14. TESTIMONIALS (SWIPER)
   ============================================================ */
.testimonials__header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.swiper-testimonials {
  padding-bottom: 56px !important;
}

.swiper-testimonials .swiper-slide {
  display: flex;
  height: auto;
}

.testimonial-card {
  position: relative;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 32px;
  padding: 42px 34px 36px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
  min-height: 540px;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(196,146,26,0.92), rgba(31,107,112,0.8));
}

.testimonials-light .testimonial-card {
  background: var(--color-white);
  border-color: rgba(24,54,51,0.08);
  box-shadow: 0 18px 44px rgba(12,32,35,0.07);
}

.testimonials-light .testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(24,54,51,0.14);
  box-shadow: 0 24px 52px rgba(12,32,35,0.11);
}

.testimonials-light .swiper-pagination-bullet {
  background: rgba(24,54,51,0.25) !important;
}

.testimonials-light .swiper-button-next,
.testimonials-light .swiper-button-prev {
  color: var(--color-ink) !important;
  background: rgba(24,54,51,0.06);
  border-color: rgba(24,54,51,0.08);
}

.testimonials-light .swiper-button-next:hover,
.testimonials-light .swiper-button-prev:hover {
  background: rgba(24,54,51,0.12);
}
.testimonial-card__stars {
  color: var(--color-gold);
  font-size: 1rem;
  letter-spacing: 5px;
}
.testimonial-card__quote {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.84;
  color: rgba(255,255,255,0.88);
  flex: 1;
  position: relative;
  padding-top: 14px;
  padding-right: 10px;
  font-style: italic;
  max-height: 310px;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(24,54,51,0.28) transparent;
}
.testimonial-card__quote::-webkit-scrollbar { width: 8px; }
.testimonial-card__quote::-webkit-scrollbar-thumb {
  background: rgba(24,54,51,0.24);
  border-radius: 999px;
}
.testimonial-card__quote::-webkit-scrollbar-track { background: transparent; }
.testimonial-card__quote::before {
  content: '\201C';
  font-size: 4.6rem;
  color: rgba(196,146,26,0.16);
  font-family: Georgia, serif;
  position: absolute;
  top: -18px; left: -6px;
  line-height: 1;
}
.testimonial-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 0;
}
.testimonial-card__subtitle {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(255,255,255,0.56);
  margin: -4px 0 2px 0;
}
/* Legacy aliases (kept for backwards compat) */
.testimonial-card__author {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-gold);
}
.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* ============================================================
   15. SERVICES / LEISTUNGEN (SWIPER)
   ============================================================ */
.services__header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.services-live {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #264e46 0%, #2e5d4e 100%);
}

.services-live::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14,44,39,0.52) 0%, rgba(22,60,51,0.46) 100%),
    url('https://onecdn.io/media/4094e527-9863-43b1-af5d-137484e60fd4/lg2x') center 18% / cover no-repeat;
  opacity: 0.24;
  transform: scale(1.01);
  pointer-events: none;
}

.services-live::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent 24%),
    linear-gradient(180deg, rgba(8,26,23,0.12) 0%, rgba(8,26,23,0.18) 100%);
  opacity: 1;
  pointer-events: none;
}

.services-live .container {
  position: relative;
  z-index: 1;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.pillar-card {
  min-height: 100%;
  padding: 0;
  border-radius: 20px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.17);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 20px 40px rgba(7,18,16,0.14);
  backdrop-filter: blur(4px);
  overflow: hidden;
}

.pillar-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
}

.pillar-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,34,35,0.02), rgba(13,31,29,0.34));
}

.pillar-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pillar-card__body {
  position: relative;
  padding: 22px 20px 24px;
}

.pillar-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: #f0d68d;
  font-size: 1rem;
}

.pillar-card__title {
  font-size: 1.02rem;
  line-height: 1.35;
  margin-bottom: 1rem;
  min-height: 56px;
}

.pillar-card__list {
  display: grid;
  gap: 10px;
}

.pillar-card__list li {
  position: relative;
  padding-left: 16px;
  color: rgba(255,255,255,0.82);
  font-size: 0.84rem;
  line-height: 1.65;
}

.pillar-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(243,217,147,0.88);
}

.pillar-card--music {
  position: relative;
}

.pillar-card--music .pillar-card__media::after {
  background: linear-gradient(180deg, rgba(34,62,54,0.08), rgba(21,39,37,0.54));
}

/* ============================================================
   16. SWIPER GLOBAL OVERRIDES
   ============================================================ */
.swiper-pagination-bullet {
  background: rgba(255,255,255,0.35) !important;
  opacity: 1 !important;
  transition: var(--transition) !important;
}
.swiper-pagination-bullet-active {
  background: var(--color-gold) !important;
  transform: scale(1.25);
}
.swiper-button-next,
.swiper-button-prev {
  color: var(--color-gold) !important;
  background: rgba(255,255,255,0.08);
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  transition: var(--transition) !important;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(196,146,26,0.2);
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px !important;
  font-weight: 800 !important;
}

/* ============================================================
   17. CTA SECTION
   ============================================================ */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #8a3f54 0%, #8a3f54 100%);
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -90px; left: -90px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(0,0,0,0.1);
}
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}
.cta-content h2 { margin-bottom: 1.4rem; }
.cta-content p {
  font-size: 1.04rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 1.5rem;
  line-height: 1.82;
}
.cta-question-flow {
  max-width: 760px;
  margin: 0 auto 1.6rem;
  text-align: left;
}
.cta-question-flow__lead,
.cta-question-flow__close {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.8;
}
.cta-question-flow__lead {
  margin-bottom: 0.55rem;
}
.cta-question-flow__close {
  margin-top: 0.7rem;
  margin-bottom: 0;
}
.cta-question-list {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.cta-question-list li {
  position: relative;
  padding-left: 20px;
  color: rgba(255,255,255,0.88);
  font-size: 1.02rem;
  line-height: 1.75;
}
.cta-question-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.82);
}
.cta-highlight-line {
  display: inline-block;
  margin: 0 auto 2rem;
  padding: 14px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 14px 34px rgba(0,0,0,0.12);
  font-family: var(--font-heading);
  font-size: 1.42rem;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
}
.cta-benefits {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}

.faq-mini {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 34px;
}

.faq-mini__item {
  padding: 22px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  text-align: left;
  transition: transform 0.28s ease, background 0.28s ease;
}

.faq-mini__item:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.11);
}

.faq-mini__item h3 {
  color: var(--color-white);
  font-size: 1.35rem;
}

.faq-mini__item p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.72;
}
.cta-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
}
.cta-check {
  width: 22px; height: 22px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ============================================================
   18. FOOTER
   ============================================================ */
.footer {
  position: relative;
  padding: 88px 0 40px;
  background:
    radial-gradient(circle at top left, rgba(196,146,26,0.08), transparent 24%),
    linear-gradient(180deg, rgba(9,39,47,0.94), rgba(8,26,31,1));
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__logo { height: 58px; width: auto; margin-bottom: 20px; }
.footer__brand-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
  max-width: 420px;
}

.footer__brand-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.footer__brand-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__col {
  padding-top: 8px;
}

.footer__col--contact {
  padding: 22px 24px 24px;
  border-radius: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.footer__col-title {
  position: relative;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.2rem;
}

.footer__col-title::after {
  content: "";
  display: block;
  width: 52px;
  height: 1px;
  margin-top: 12px;
  background: rgba(255,255,255,0.16);
}

.footer__col-title--spaced {
  margin-top: 2rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__links a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.62);
  transition: color 220ms ease, transform 220ms ease;
}
.footer__links a:hover {
  color: var(--color-white);
  transform: translateX(4px);
}

.footer__col--contact .footer__links:first-of-type li:last-child a {
  display: inline-flex;
  justify-content: center;
  margin-top: 8px;
  padding: 11px 16px;
  min-height: 44px;
  border-radius: 999px;
  background: rgba(196,146,26,0.16);
  border: 1px solid rgba(196,146,26,0.34);
  color: rgba(255,255,255,0.94);
}

.footer__col--contact .footer__links:first-of-type li:last-child a:hover {
  transform: translateY(-2px);
  background: rgba(196,146,26,0.22);
}
.footer__social { display: flex; flex-direction: column; gap: 10px; }
.footer__social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.62);
}
.footer__social-link:hover { color: var(--color-white); }
.footer__social-icon {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.footer__social-link:hover .footer__social-icon {
  background: var(--color-gold);
  color: #fff;
}
.footer__bottom {
  padding-top: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer__copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer__legal {
  display: flex;
  gap: 22px;
}
.footer__legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer__legal a:hover { color: rgba(255,255,255,0.85); }

.mobile-cta-bar {
  display: none;
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(196,146,26,0.08), transparent 22%),
    linear-gradient(180deg, #f9f4ea 0%, #f4efe2 42%, #eff5f3 100%);
}

.legal {
  padding: 72px 0 96px;
}

.legal__inner {
  max-width: 900px;
}

.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: #2f6670;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal__back::before {
  content: "←";
  font-size: 1rem;
}

.legal__title {
  margin: 0 0 20px;
  color: #17333b;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
}

.legal__notice {
  margin: 0 0 28px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(23,51,59,0.08);
  color: rgba(23,51,59,0.82);
  box-shadow: 0 16px 34px rgba(18,38,42,0.06);
}

.legal__section {
  margin-top: 18px;
  padding: 26px 28px;
  border-radius: 28px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(23,51,59,0.08);
  box-shadow: 0 18px 36px rgba(18,38,42,0.05);
}

.legal__section h2 {
  margin: 0 0 12px;
  color: #17333b;
  font-size: 1.5rem;
}

.legal__section p {
  margin: 0 0 12px;
  color: rgba(23,51,59,0.82);
  line-height: 1.78;
}

.legal__section p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   18. SECTION WAVE DIVIDERS
   ============================================================ */
.section-wave {
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  z-index: 4;
  pointer-events: none;
  line-height: 0;
}
.section-wave svg {
  display: block;
  width: 100%;
  height: 55px;
}

/* ============================================================
   18b. ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  filter: blur(2px);
  transition:
    opacity 1.08s cubic-bezier(.16,1,.3,1),
    transform 1.08s cubic-bezier(.16,1,.3,1),
    filter 1.08s cubic-bezier(.16,1,.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}
.reveal-delay-1 { transition-delay: 0.16s; }
.reveal-delay-2 { transition-delay: 0.26s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ============================================================
   19. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 88px; }

  body::before { height: 118px; }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .process-video__shell {
    grid-template-columns: 1fr;
  }

  .process-video__headline {
    max-width: none;
  }

  .about__grid,
  .goshi__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about__grid { grid-template-columns: 1fr; }
  .about__photo-wrap { max-width: 400px; margin: 0 auto; }

  .goshi__image-wrap { order: -1; }
  .goshi__img { width: 240px; }
  .goshi__content,
  .goshi__image-wrap {
    padding: 28px;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .essences-grid { grid-template-columns: 1fr 1fr; gap: 28px 34px; }
  .pillar-card--music {
    grid-column: 1 / -1;
  }

  .consult-steps,
  .faq-mini {
    grid-template-columns: 1fr;
  }

  .consult-grid {
    grid-template-columns: 1fr;
  }

  .selfcheck__grid {
    grid-template-columns: 1fr;
  }

  .selfcheck__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }

  .problems__grid { grid-template-columns: repeat(2, 1fr); }
  .problems__grid .problem-card:nth-child(1),
  .problems__grid .problem-card:nth-child(2),
  .problems__grid .problem-card:nth-child(3),
  .problems__grid .problem-card:nth-child(4) { grid-column: auto; }
  .problems__grid .problem-card:nth-child(5) { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --section-pad: 70px; }

  body::before { height: 108px; }
  body { padding-bottom: 88px; }

  .topbar__inner {
    min-height: 44px;
  }

  .topbar__logo {
    height: 42px;
  }

  .topbar__cta {
    font-size: 0.72rem;
    padding: 6px 12px;
  }

  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .lang-toggle {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

  .hero__content {
    padding-top: 48px;
    padding-bottom: 92px;
  }

  .video-modal__dialog {
    width: min(1040px, 94vw);
  }

  .hero__cta-row {
    margin-top: 28px;
  }

  .hero__trust-row {
    gap: 8px;
  }

  .hero__mini-banner {
    font-size: 0.76rem;
  }

  .hero__subheadline--live {
    font-size: 1.5rem;
  }

  .hero__headline--live {
    font-size: clamp(3.35rem, 10.4vw, 4.9rem);
    letter-spacing: 0.055em;
    text-indent: 0.055em;
  }

  .hero__keywords-line {
    font-size: 0.8rem;
  }

  .hero__video-card {
    border-radius: 34px;
  }

  .video-modal__close {
    top: -12px;
    right: -4px;
  }

  .about__video-play {
    width: 60px;
    height: 60px;
    font-size: 1.1rem;
  }

  .hero__lede-card p,
  .hero__benefits-title {
    font-size: 1rem;
  }

  .hero__lede-card,
  .hero__benefits-panel {
    max-width: none;
  }

  .hero__benefits-panel {
    min-height: 0;
  }

  .intro-light {
    padding-top: 84px;
    padding-bottom: 24px;
  }

  .process-video {
    padding-top: 28px;
    padding-bottom: 70px;
  }

  .process-video__shell {
    padding: 28px;
    gap: 28px;
    border-radius: 28px;
  }

  .process-video__steps {
    grid-template-columns: 1fr;
  }

  .process-video__play {
    width: 68px;
    height: 68px;
    font-size: 1.3rem;
  }

  .intro__copy p,
  .trust-strip__copy p {
    font-size: 0.98rem;
  }

  .about__headline {
    font-size: 2.5rem;
  }

  .problems__grid { grid-template-columns: 1fr; }
  .problems__grid .problem-card:nth-child(1),
  .problems__grid .problem-card:nth-child(2),
  .problems__grid .problem-card:nth-child(3),
  .problems__grid .problem-card:nth-child(4),
  .problems__grid .problem-card:nth-child(5) { grid-column: auto; }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .essences-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pillar-card--music {
    grid-column: auto;
  }

  .consult-step h3,
  .consult-card h3,
  .faq-mini__item h3 {
    font-size: 1.45rem;
  }

  .selfcheck {
    padding: 26px 22px;
    border-radius: 24px;
  }

  .selfcheck__header h3 {
    font-size: 1.7rem;
  }

  .goshi__buttons { flex-direction: column; }

  .cta-benefits {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .trust-strip__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer__top { grid-template-columns: 1fr; gap: 36px; }
  .footer__brand { grid-column: auto; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; }
  .footer__brand-badges { justify-content: center; }
  .footer__col--contact { padding: 20px; }

  .mobile-cta-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 1150;
    display: block;
  }

  .mobile-cta-bar .btn {
    width: 100%;
    box-shadow: 0 18px 34px rgba(0,0,0,0.22);
  }
}

@media (max-width: 480px) {
  .hero__subheadline--live { font-size: 1.18rem; }
  .hero__headline--live {
    font-size: 2.72rem;
    letter-spacing: 0.045em;
    text-indent: 0.045em;
  }
  .hero__video-play {
    width: 56px;
    height: 56px;
  }
  .video-modal__dialog {
    width: 94vw;
  }
  .video-modal__frame-wrap {
    border-radius: 18px;
  }
  .hero__trust-row span {
    width: calc(50% - 7px);
    justify-content: center;
    text-align: center;
  }
  .hero__lede-points span {
    width: 100%;
    justify-content: center;
  }
  .intro__headline {
    font-size: 2.1rem;
  }
  .process-video__shell {
    padding: 22px;
  }
  .process-video__headline {
    font-size: 2rem;
  }
  .process-video__video {
    border-radius: 22px;
  }
  .problem-card {
    padding: 28px 22px 24px;
  }
  .essence-card {
    padding: 0 0 16px;
  }
  .testimonial-card {
    padding: 28px 20px;
    min-height: 0;
  }
  .testimonial-card__quote { max-height: 260px; }
  .btn-white { padding: 16px 32px; font-size: 0.92rem; }
  .legal { padding: 48px 0 72px; }
  .legal__section { padding: 22px 20px; border-radius: 22px; }
  .legal__title { font-size: 2.45rem; }
}

/* Accessibility: reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .goshi__img { animation: none; }
  .hero__eyebrow, .hero__headline, .hero__subheadline, .hero__cta-wrap {
    opacity: 1; animation: none;
  }
}
