/* =========================================================
   Leonardo Goncalves Coaching – Design System
   ========================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  --color-bg: #ffffff;
  --color-bg-alt: #faf8f3;
  --color-bg-dark: #111111;
  --color-text: #4a4a4a;
  --color-text-soft: #6b6b6b;
  --color-heading: #111111;
  --color-accent: #c9a942;
  --color-accent-hover: #b08f30;
  --color-accent-soft: #e4c76a;
  --color-line: #e6e6e6;
  --color-line-soft: #efece5;

  --font-heading: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  --container: 1200px;
  --container-narrow: 820px;
  --section-py: clamp(4.5rem, 9vw, 7.5rem);

  --radius: 4px;
  --radius-lg: 12px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(17, 17, 17, 0.08);
  --shadow-lg: 0 20px 60px rgba(17, 17, 17, 0.12);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 90px;
}
section[id] { scroll-margin-top: 90px; }

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 2px;
}
.btn:focus-visible {
  outline-offset: 4px;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }
a { color: var(--color-heading); text-decoration: none; transition: color .2s var(--ease); }
a:hover, a:focus { color: var(--color-accent); }
ul { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--color-heading);
  letter-spacing: -0.01em;
  line-height: 1.18;
  margin: 0 0 .6em;
}
p { margin: 0 0 1.1em; }
blockquote { margin: 0; }
address { font-style: normal; }

/* ---------- 3. Helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.container--narrow { max-width: var(--container-narrow); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-heading);
  color: #fff;
  padding: .75rem 1rem;
  z-index: 9999;
}
.skip-link:focus { left: 1rem; top: 1rem; color: #fff; }

.eyebrow {
  font-family: var(--font-body);
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-accent);
  margin: 0 0 1.2rem;
}
.eyebrow--light { color: var(--color-accent-soft); }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.8rem;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
  transition: left .7s var(--ease);
  z-index: -1;
  pointer-events: none;
}
.btn:hover::before { left: 130%; }
.btn--primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 6px 18px rgba(201, 169, 66, 0.28);
}
.btn--primary:hover, .btn--primary:focus {
  background: var(--color-accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(201, 169, 66, 0.36);
}
.btn--outline {
  background: transparent;
  color: var(--color-heading);
  border-color: var(--color-heading);
}
.btn--outline:hover, .btn--outline:focus {
  background: var(--color-heading);
  color: #fff;
}
.btn--lg { padding: 1.15rem 2.4rem; font-size: 1rem; }
.btn--sm { padding: .65rem 1.2rem; font-size: .8rem; }

/* ---------- 5. Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--color-line-soft);
  box-shadow: 0 2px 24px rgba(17, 17, 17, 0.05);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 1.5rem;
  transition: min-height .35s var(--ease);
}
.site-header.is-scrolled .site-header__inner { min-height: 70px; }
.site-header.is-scrolled .brand__logo { height: 36px; }
.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand__logo {
  height: 44px;
  width: auto;
  display: block;
  transition: height .35s var(--ease);
}
@media (max-width: 600px) {
  .brand__logo { height: 38px; }
}
.brand__name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: .02em;
  color: var(--color-heading);
}
.brand__sub {
  font-family: var(--font-body);
  font-size: .68rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-top: .15rem;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.primary-nav a {
  font-size: .9rem;
  letter-spacing: .04em;
  color: var(--color-heading);
  position: relative;
}
.primary-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.primary-nav a:not(.btn):hover::after,
.primary-nav a:not(.btn):focus::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--color-heading);
  margin: 5px auto;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--color-line-soft);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }
  .primary-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.5rem 2rem;
  }
  .primary-nav li { border-bottom: 1px solid var(--color-line-soft); }
  .primary-nav li:last-child { border-bottom: 0; padding-top: 1rem; }
  .primary-nav a:not(.btn) {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }
  .primary-nav a:not(.btn)::after { display: none; }
  .primary-nav .btn { width: 100%; }
}

/* ---------- 6. Sections ---------- */
.section {
  padding-block: var(--section-py);
}
.section--alt { background: var(--color-bg-alt); }

.section__head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section__head .eyebrow { display: inline-block; }
.section__title {
  font-size: clamp(1.85rem, 3.6vw, 2.8rem);
  max-width: 820px;
  margin-inline: auto;
}

.prose {
  font-size: 1.05rem;
  color: var(--color-text);
}
.prose p { margin-bottom: 1.2em; }
.prose strong { color: var(--color-heading); font-weight: 600; }

/* ---------- 7. Hero (Pangea-Style: Text links, Foto rechts) ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
  padding-block: clamp(3rem, 8vw, 6rem);
  overflow: hidden;
  isolation: isolate;
}

/* Dezente Gold-Lichtkegel im Hintergrund (premium feel) */
.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 50%;
  height: 70%;
  background: radial-gradient(circle, rgba(201, 169, 66, 0.08) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* Stagger entrance fuer alle direkten Hero-Kinder */
.hero__content > *,
.hero__media {
  opacity: 0;
  transform: translateY(24px);
  animation: heroEnter .9s var(--ease) forwards;
}
.hero__content > *:nth-child(1) { animation-delay: .1s; }
.hero__content > *:nth-child(2) { animation-delay: .2s; }
.hero__content > *:nth-child(3) { animation-delay: .3s; }
.hero__content > *:nth-child(4) { animation-delay: .4s; }
.hero__content > *:nth-child(5) { animation-delay: .5s; }
.hero__content > *:nth-child(6) { animation-delay: .6s; }
.hero__media { animation-delay: .35s; }
@keyframes heroEnter {
  to { opacity: 1; transform: translateY(0); }
}

.hero__title {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  font-weight: 400;
  margin-bottom: 1.4rem;
  letter-spacing: -0.018em;
  line-height: 1.1;
  color: var(--color-heading);
  position: relative;
}
.hero__title::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent) 0%, transparent 100%);
  margin-top: 1.4rem;
  animation: heroLineDraw 1.4s var(--ease) 1.1s forwards;
}
@keyframes heroLineDraw {
  to { width: 96px; }
}

.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 1.6rem;
}

.hero__bullets {
  margin: 0 0 2rem;
  display: grid;
  gap: .7rem;
  list-style: none;
  padding: 0;
}
.hero__bullets li {
  position: relative;
  padding-left: 2rem;
  font-size: 1rem;
  color: var(--color-heading);
  font-weight: 500;
  line-height: 1.4;
}
.hero__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .15em;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: var(--color-accent);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='5 12 10 17 19 8'/></svg>");
  background-size: 65% 65%;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.hero__cta { margin: 0 0 .9rem; }

.hero__hint {
  margin: 0;
  font-size: .85rem;
  color: var(--color-text-soft);
  letter-spacing: .04em;
}

/* Portrait rechts (transparent, gross, keine Chrome) */
.hero__media {
  position: relative;
}
.hero__portrait {
  position: relative;
  background: transparent;
  aspect-ratio: 1 / 1;
  /* Das Bild bekommt einen weichen Drop-Shadow direkt am Subjekt
     (funktioniert mit transparentem PNG) */
  filter: drop-shadow(0 20px 40px rgba(17, 17, 17, 0.2));
}
.hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
}
@media (max-width: 880px) {
  .hero__portrait { max-width: 520px; margin: 0 auto; }
}

/* ---------- 8. Check-Lists ---------- */
.check-list {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}
.check-list li {
  position: relative;
  padding-left: 2.5rem;
  font-size: 1.05rem;
  color: var(--color-text);
  line-height: 1.6;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 1.6rem;
  height: 1px;
  background: var(--color-accent);
}
.check-list--problem li {
  padding-block: .6rem;
  border-bottom: 1px solid var(--color-line-soft);
}
.check-list--problem li:last-child { border-bottom: 0; }

.bullet-list {
  margin: 1rem 0 1.4rem;
  display: grid;
  gap: .55rem;
}
.bullet-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 1rem;
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
}
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .85em;
  width: .55rem;
  height: 1px;
  background: var(--color-accent);
}

/* ---------- 9. Vorteile-Cards ---------- */
.cards {
  display: grid;
  gap: 1.5rem;
}
.cards--3col { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 960px) { .cards--3col { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cards--3col { grid-template-columns: 1fr; } }

.card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(201, 169, 66, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(17, 17, 17, 0.08), 0 8px 16px rgba(201, 169, 66, 0.12);
  border-color: rgba(201, 169, 66, 0.5);
}
.card:hover::before { opacity: 1; }
.card:hover .card__num { transform: translateX(4px); color: var(--color-accent-hover); }
.card__num {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-accent);
  letter-spacing: .1em;
  margin-bottom: 1rem;
  transition: transform .4s var(--ease), color .4s var(--ease);
}
.card__title {
  font-size: 1.3rem;
  margin-bottom: .8rem;
  color: var(--color-heading);
}
.card p {
  font-size: .98rem;
  line-height: 1.65;
  margin: 0;
  color: var(--color-text);
}

/* ---------- 10. Split-Sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.split--reverse .split__media { order: -1; }
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split--reverse .split__media { order: 0; }
}
.split__content .section__title { margin-inline: 0; max-width: none; }

.image-frame {
  position: relative;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
}
.image-frame--portrait {
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, #f0ebde 100%);
}
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-frame--portrait img {
  object-fit: contain;
  object-position: center bottom;
}
.image-frame::after {
  content: "";
  position: absolute;
  inset: auto -1.5rem -1.5rem auto;
  width: 60%;
  height: 60%;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.pullquote {
  margin-top: 1.6rem;
  padding: 1.6rem 1.8rem;
  border-left: 3px solid var(--color-accent);
  background: rgba(228, 199, 106, 0.08);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--color-heading);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ---------- 11. Topics (Coaching-Schwerpunkte) ---------- */
.topics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
}
@media (max-width: 880px) { .topics { grid-template-columns: 1fr; gap: 2.5rem; } }

.topic {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
  align-items: start;
}
.topic__num {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  flex-shrink: 0;
  transition: background .4s var(--ease), color .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}
.section--alt .topic__num { background: var(--color-bg-alt); }
.topic:hover .topic__num {
  background: var(--color-accent);
  color: #fff;
  transform: scale(1.08) rotate(-6deg);
  box-shadow: 0 8px 20px rgba(201, 169, 66, 0.35);
}
.topic__title {
  font-size: 1.35rem;
  margin-bottom: .6rem;
}
.topic p {
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 1rem;
}
.topic__example {
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  background: var(--color-bg-alt);
  border-left: 2px solid var(--color-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.section--alt .topic__example { background: #fff; }
.topic__example-label {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: .35rem;
}
.topic__example p {
  font-style: italic;
  color: var(--color-text-soft);
  font-size: .95rem;
  margin: 0;
}

/* ---------- 12. Timeline (7-Schritte) ---------- */
.timeline {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 26px;
  width: 1px;
  height: var(--timeline-progress, 0%);
  background: linear-gradient(to bottom, var(--color-accent) 0%, var(--color-accent-soft) 100%);
  opacity: .55;
  transition: height 1s var(--ease);
  z-index: 1;
}
.timeline::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 26px;
  width: 1px;
  background: var(--color-line);
  opacity: .6;
  z-index: 0;
}
.timeline__step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.6rem;
  padding-bottom: 2.4rem;
}
.timeline__step:last-child { padding-bottom: 0; }
.timeline__num {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 0 0 0 6px var(--color-bg-alt);
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.timeline__num::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--color-accent);
  opacity: 0;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.timeline__step:hover .timeline__num {
  transform: scale(1.1);
  box-shadow: 0 0 0 6px var(--color-bg-alt), 0 8px 22px rgba(201, 169, 66, 0.4);
}
.timeline__step:hover .timeline__num::after {
  opacity: 1;
  transform: scale(1.2);
}
.timeline__content h3 {
  font-size: 1.35rem;
  margin: .35rem 0 .6rem;
}
.timeline__content p {
  margin: 0 0 .8rem;
  font-size: 1rem;
  line-height: 1.65;
}
.timeline__detail {
  font-size: .95rem;
  color: var(--color-text-soft);
  background: #fff;
  padding: .9rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-line-soft);
}
.timeline__detail strong {
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .78rem;
  font-weight: 600;
  display: inline-block;
  margin-right: .4rem;
}

/* ---------- 13. Closing-Quote ---------- */
.closing-quote {
  margin-top: 2.5rem;
  text-align: center;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--color-heading);
  line-height: 1.5;
}
.closing-quote p { margin: 0; }
.closing-quote p + p { margin-top: .5rem; }
.closing-quote strong {
  font-style: normal;
  color: var(--color-accent);
  font-weight: 500;
}

/* ---------- 14. CTA-Block ---------- */
.cta-block {
  background: var(--color-bg-dark);
  color: #fff;
  text-align: center;
  padding-block: clamp(5rem, 10vw, 8rem);
  position: relative;
  overflow: hidden;
}
.cta-block::before,
.cta-block::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 66, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-block::before { top: -100px; left: -100px; }
.cta-block::after { bottom: -100px; right: -100px; }
.cta-block__title {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.2rem;
}
.cta-block__text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto 2.2rem;
}
.cta-block__hint {
  margin-top: 1.4rem;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- 15. FAQ ---------- */
.faq {
  display: grid;
  gap: .75rem;
}
.faq__item {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: #fff;
  overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq__item[open] {
  border-color: rgba(201, 169, 66, 0.5);
  box-shadow: var(--shadow-sm);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.3rem 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-heading);
  position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "";
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
  background-size: 100% 1.5px, 1.5px 100%;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-accent);
  transition: transform .35s var(--ease);
}
.faq__item[open] summary::after {
  background-size: 100% 1.5px, 0 100%;
  transform: rotate(180deg);
}
.faq__item summary:hover { color: var(--color-accent); }
.faq__body {
  padding: 0 1.6rem 1.4rem;
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.7;
  animation: faqBodyEnter .35s var(--ease) both;
}
.faq__body p { margin: 0; }
@keyframes faqBodyEnter {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- 16. Footer ---------- */
.site-footer {
  background: #0d0d0d;
  color: rgba(255, 255, 255, 0.7);
  padding: clamp(3.5rem, 6vw, 5rem) 0 1.8rem;
  font-size: .95rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 760px) { .site-footer__grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.brand--footer .brand__name { color: #fff; font-size: 1.25rem; }
.brand--footer .brand__sub { color: var(--color-accent); }
.brand--footer { display: inline-block; transition: opacity .25s var(--ease); }
.brand--footer:hover { opacity: .85; }
.brand--footer .brand__logo {
  height: 56px;
  width: auto;
}
.site-footer__address { margin-top: 1.2rem; line-height: 1.8; }
.site-footer__address a { color: rgba(255, 255, 255, 0.85); }
.site-footer__address a:hover { color: var(--color-accent); }

.site-footer__heading {
  color: #fff;
  font-family: var(--font-body);
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 1.2rem;
}
.site-footer__list { display: grid; gap: .55rem; }
.site-footer__list a {
  color: rgba(255, 255, 255, 0.7);
  font-size: .95rem;
}
.site-footer__list a:hover { color: var(--color-accent); }

.site-footer__base {
  padding-top: 1.5rem;
  text-align: center;
  font-size: .82rem;
  color: rgba(255, 255, 255, 0.45);
}
.site-footer__base p { margin: 0; }

/* ---------- 17. Testimonials ---------- */
.testimonials {
  display: grid;
  gap: clamp(3rem, 6vw, 5rem);
}

.testimonial {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-areas:
    "media content"
    "cards cards";
  column-gap: clamp(2rem, 5vw, 4rem);
  row-gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}
.testimonial--reverse {
  grid-template-areas:
    "content media"
    "cards cards";
}
.testimonial__media { grid-area: media; }
.testimonial__content { grid-area: content; }
.testimonial__cards { grid-area: cards; }
@media (max-width: 880px) {
  .testimonial,
  .testimonial--reverse {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "content"
      "cards";
    row-gap: 1.8rem;
  }
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #1a1a1a;
  box-shadow: var(--shadow-md);
  isolation: isolate;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-frame::after {
  content: "";
  position: absolute;
  inset: auto -1.2rem -1.2rem auto;
  width: 55%;
  height: 55%;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.testimonial__content { position: relative; }
.quote-mark {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(4rem, 7vw, 6rem);
  line-height: .8;
  color: var(--color-accent);
  margin-bottom: 1rem;
  font-weight: 600;
}
.testimonial__quote {
  margin: 0 0 1.6rem;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  line-height: 1.55;
  color: var(--color-heading);
}
.testimonial__quote p { margin: 0; }
.testimonial__author {
  margin: 0;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.testimonial__author strong {
  color: var(--color-heading);
  font-weight: 600;
  letter-spacing: .01em;
}
.testimonial__role {
  color: var(--color-text-soft);
  font-size: .92rem;
}
.testimonial__note {
  margin: 1.2rem 0 0;
  padding-top: 1.1rem;
  border-top: 1px solid var(--color-line);
  font-size: .88rem;
  color: var(--color-text-soft);
  letter-spacing: .01em;
}

/* ---------- 17b. Testimonial-Cards (Problem · Ziel · Lösung) ---------- */
.testimonial__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 760px) {
  .testimonial__cards { grid-template-columns: 1fr; }
}

.t-card {
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.5rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.t-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 169, 66, 0.4);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}
.t-card__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  margin-bottom: 1rem;
}
.t-card__icon svg { width: 100%; height: 100%; }
.t-card__title {
  font-family: var(--font-body);
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  margin: 0 0 .8rem;
}
.t-card p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

/* ---------- 18. Legal Pages ---------- */
.legal-page {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  background: var(--color-bg);
}
.legal-page .container { max-width: 820px; }
.legal-page h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--color-accent);
}
.legal-page h2 {
  font-size: 1.55rem;
  margin: 2.5rem 0 1rem;
  color: var(--color-heading);
}
.legal-page h3 {
  font-size: 1.2rem;
  margin: 1.8rem 0 .6rem;
  color: var(--color-heading);
}
.legal-page h4 {
  font-size: 1.05rem;
  margin: 1.4rem 0 .5rem;
  color: var(--color-heading);
  font-weight: 500;
}
.legal-page p,
.legal-page li {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text);
}
.legal-page ul {
  list-style: disc;
  padding-left: 1.4rem;
  margin-bottom: 1.2rem;
}
.legal-page ul li { margin-bottom: .4rem; }
.legal-page strong { color: var(--color-heading); }
.legal-page hr {
  border: 0;
  height: 1px;
  background: var(--color-line);
  margin: 3rem 0;
}
.legal-page .legal-back {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: .9rem;
  letter-spacing: .04em;
  color: var(--color-accent);
}
.legal-page .legal-back::before { content: "← "; }

/* ---------- 19. Scroll-Progress, Sticky CTA, Reveal-System ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-soft) 100%);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 1000;
  pointer-events: none;
  transition: transform .12s linear;
}

.sticky-cta {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: none;
  opacity: 0;
  transform: translateY(120%);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.sticky-cta .btn {
  width: 100%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18), 0 6px 18px rgba(201, 169, 66, 0.32);
}
.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 760px) {
  .sticky-cta { display: block; }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal="fade"] { transform: none; }
[data-reveal="left"] { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

/* Stagger helpers for grid items */
.cards--3col [data-reveal]:nth-child(2) { --reveal-delay: 80ms; }
.cards--3col [data-reveal]:nth-child(3) { --reveal-delay: 160ms; }
.cards--3col [data-reveal]:nth-child(4) { --reveal-delay: 240ms; }
.cards--3col [data-reveal]:nth-child(5) { --reveal-delay: 320ms; }
.cards--3col [data-reveal]:nth-child(6) { --reveal-delay: 400ms; }

.topics [data-reveal]:nth-child(2) { --reveal-delay: 80ms; }
.topics [data-reveal]:nth-child(3) { --reveal-delay: 160ms; }
.topics [data-reveal]:nth-child(4) { --reveal-delay: 240ms; }
.topics [data-reveal]:nth-child(5) { --reveal-delay: 320ms; }
.topics [data-reveal]:nth-child(6) { --reveal-delay: 400ms; }

.timeline [data-reveal]:nth-child(2) { --reveal-delay: 60ms; }
.timeline [data-reveal]:nth-child(3) { --reveal-delay: 120ms; }
.timeline [data-reveal]:nth-child(4) { --reveal-delay: 180ms; }
.timeline [data-reveal]:nth-child(5) { --reveal-delay: 240ms; }
.timeline [data-reveal]:nth-child(6) { --reveal-delay: 300ms; }
.timeline [data-reveal]:nth-child(7) { --reveal-delay: 360ms; }

.testimonial__cards [data-reveal]:nth-child(2) { --reveal-delay: 100ms; }
.testimonial__cards [data-reveal]:nth-child(3) { --reveal-delay: 200ms; }

.check-list [data-reveal]:nth-child(2) { --reveal-delay: 60ms; }
.check-list [data-reveal]:nth-child(3) { --reveal-delay: 120ms; }
.check-list [data-reveal]:nth-child(4) { --reveal-delay: 180ms; }
.check-list [data-reveal]:nth-child(5) { --reveal-delay: 240ms; }
.check-list [data-reveal]:nth-child(6) { --reveal-delay: 300ms; }
.check-list [data-reveal]:nth-child(7) { --reveal-delay: 360ms; }

/* ---------- 20. Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }
  html { scroll-behavior: auto; }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
  .scroll-progress { display: none; }
}
