/* ==========================================
   HerNext! Landing Page — Dark Luxury Design
   ========================================== */

/* ---------- Self-Hosted Fonts (DSGVO-konform) ---------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('../assets/fonts/inter-variable.woff2') format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../assets/fonts/playfair-display-variable.woff2') format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url('../assets/fonts/playfair-display-italic-variable.woff2') format('woff2');
}

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors */
  --black: #0A0A0A;
  --charcoal: #141414;
  --charcoal-light: #1E1E1E;
  --card-bg: #181818;
  --gold: #C9A96E;
  --gold-hover: #D4BA85;
  --gold-dark: #A8894E;
  --cream: #F5F0EB;
  --white: #FFFFFF;
  --gray: #8A8A8A;
  --gray-light: #B0B0B0;
  --border: rgba(201, 169, 110, 0.15);
  --border-strong: rgba(201, 169, 110, 0.3);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: 120px;
  --container-width: 1100px;
  --container-narrow: 800px;

  /* Transitions */
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--cream);
  background-color: var(--black);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ---------- Utility ---------- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: var(--container-narrow);
}

.gold {
  color: var(--gold);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn--primary {
  background: var(--gold);
  color: var(--black);
}

.btn--primary:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
}

.btn--large {
  padding: 18px 48px;
  font-size: 15px;
  letter-spacing: 0.1em;
}

.btn--full {
  width: 100%;
}

.btn--nav {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 10px 24px;
  font-size: 12px;
}

.btn--nav:hover {
  background: var(--gold);
  color: var(--black);
}

/* ---------- Availability Ticker ---------- */
.ticker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  background: var(--charcoal);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  text-align: center;
  transition: transform 0.3s ease;
}

.ticker__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ticker__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.ticker__dot--filled {
  background: var(--gold);
  box-shadow: 0 0 6px rgba(201, 169, 110, 0.4);
}

.ticker__dot--empty {
  background: transparent;
  border: 1px solid var(--gray);
}

.ticker__text {
  font-size: 12px;
  color: var(--gray-light);
  letter-spacing: 0.05em;
  margin-left: 6px;
}

.ticker__text strong {
  color: var(--gold);
  font-weight: 600;
}

/* Subtle pulse on the last filled dot (4th dot) */
.ticker__dot:nth-child(4) {
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 6px rgba(201, 169, 110, 0.4); }
  50% { box-shadow: 0 0 12px rgba(201, 169, 110, 0.8); }
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all var(--transition);
}

.nav--scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.nav__container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo-text {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav__logo-img {
  height: 72px;
  width: auto;
  margin-top: 8px;
}

.footer__logo-img {
  height: 48px;
  width: auto;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 156px 0 80px;
  background: var(--black);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 30%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.hero__content {
  max-width: 55%;
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

.hero__image {
  position: absolute;
  left: 50%;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, rgba(0,0,0,0.3) 12%, rgba(0,0,0,0.7) 25%, black 40%),
    linear-gradient(to top, transparent 0%, rgba(0,0,0,0.5) 8%, black 22%),
    linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 3%, black 10%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, rgba(0,0,0,0.3) 12%, rgba(0,0,0,0.7) 25%, black 40%),
    linear-gradient(to top, transparent 0%, rgba(0,0,0,0.5) 8%, black 22%),
    linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 3%, black 10%);
  mask-composite: intersect;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: grayscale(10%) brightness(0.88) contrast(1.08);
}

.hero__label {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  font-weight: 500;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: var(--gray-light);
  margin-bottom: 48px;
  font-weight: 300;
}

.hero__cta {
  margin-bottom: 24px;
}

.hero__note {
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 0.05em;
}

.hero__gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--black));
  pointer-events: none;
}

/* ---------- Sections ---------- */
.section {
  padding: var(--section-padding) 0;
}

.section--dark {
  background: var(--black);
}

.section--alt {
  background: var(--charcoal);
}

.section--cta {
  background: var(--black);
  padding: 140px 0;
  text-align: center;
}

.section__label {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
  text-align: center;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 24px;
  text-align: center;
  letter-spacing: -0.01em;
}

.section__title--left {
  text-align: left;
}

.section__intro {
  font-size: 18px;
  line-height: 1.8;
  color: var(--gray-light);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
  font-weight: 300;
}

.section__intro--small {
  font-size: 15px;
  color: var(--gray);
  margin: -40px auto 64px;
}

/* ---------- Pain Grid ---------- */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}

.pain-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  padding: 40px;
  position: relative;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark), transparent 90%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.pain-card:hover::before {
  transform: scaleX(1);
}

/* Flash glow on hover */
.pain-card::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--gold);
  filter: blur(6px);
  opacity: 0;
  transform: translateX(-100%);
  transition: none;
}

.pain-card:hover::after {
  opacity: 1;
  transform: translateX(calc(100vw));
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.1s;
}

.pain-card__label {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 24px;
  font-style: italic;
}

.pain-card__list li {
  padding: 12px 0;
  padding-left: 20px;
  position: relative;
  color: var(--cream);
  font-size: 15px;
  line-height: 1.7;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pain-card__list li:last-child {
  border-bottom: none;
}

.pain-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.pain-transition {
  text-align: center;
  margin-top: 64px;
}

.pain-transition__text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--gray-light);
  font-weight: 300;
}

.pain-transition__text strong {
  font-size: 18px;
  font-weight: 600;
  display: block;
  margin-top: 8px;
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  margin-top: 64px;
  padding-left: 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 90px;
  bottom: 0;
  width: 1px;
  background: rgba(201, 169, 110, 0.1);
}

/* Animated gold progress line */
.timeline::after {
  content: '';
  position: absolute;
  top: 0;
  left: 90px;
  width: 1px;
  height: 0;
  background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
  transition: none;
  z-index: 1;
}

.timeline__item {
  display: flex;
  gap: 40px;
  padding: 32px 0;
  position: relative;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: 84px;
  top: 44px;
  width: 13px;
  height: 13px;
  background: var(--charcoal);
  border: 2px solid rgba(201, 169, 110, 0.2);
  border-radius: 50%;
  z-index: 2;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.timeline__item.tl-active::before {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 0 12px rgba(201, 169, 110, 0.5);
}

/* Content slides in */
.timeline__item .timeline__content,
.timeline__item .timeline__week {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline__item.tl-active .timeline__content,
.timeline__item.tl-active .timeline__week {
  opacity: 1;
  transform: translateY(0);
}

.timeline__item.tl-active .timeline__week {
  transition-delay: 0s;
}

.timeline__item.tl-active .timeline__content {
  transition-delay: 0.1s;
}

.timeline__week {
  flex-shrink: 0;
  width: 60px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 4px;
}

.timeline__content {
  padding-left: 48px;
}

.timeline__content h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}

.timeline__content p {
  color: var(--gray-light);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
}

/* ---------- Transformation ---------- */
.transformation {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
  text-align: center;
}

.transformation__before,
.transformation__after {
  flex: 1;
  max-width: 320px;
  padding: 40px 32px;
  border: 1px solid var(--border);
}

.transformation__before {
  background: var(--charcoal);
}

.transformation__after {
  background: var(--charcoal-light);
  border-color: var(--gold);
}

.transformation__label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
  font-weight: 500;
}

.transformation__label--gold {
  color: var(--gold);
}

.transformation__before p,
.transformation__after p {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.4;
  color: var(--cream);
}

.transformation__after p {
  color: var(--white);
}

.transformation__arrow {
  font-size: 32px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ---------- Option A: Statement-Style ---------- */
.transf-a {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.transf-a__before {
  font-family: var(--font-serif);
  font-size: 24px;
  font-style: italic;
  line-height: 1.5;
  color: var(--gray);
  text-decoration: line-through;
  text-decoration-color: var(--gray);
}

.transf-a__divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 32px auto;
}

.transf-a__after {
  font-family: var(--font-serif);
  font-size: 28px;
  font-style: italic;
  line-height: 1.5;
  color: var(--gold);
}

/* ---------- Option B: Karten mit Headline ---------- */
.transf-b {
  display: flex;
  align-items: stretch;
  gap: 0;
  justify-content: center;
  margin-top: 40px;
}

.transf-b__card {
  flex: 1;
  max-width: 400px;
  padding: 48px 40px;
  text-align: center;
}

.transf-b__card--before {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 8px 0 0 8px;
}

.transf-b__card--after {
  background: var(--charcoal-light);
  border: 1px solid var(--gold);
  border-radius: 0 8px 8px 0;
}

.transf-b__label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
  font-weight: 500;
}

.transf-b__label--gold {
  color: var(--gold);
}

.transf-b__card p {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.5;
  color: var(--cream);
}

.transf-b__card--after p {
  color: var(--white);
}

.transf-b__line {
  width: 2px;
  background: linear-gradient(to bottom, var(--border), var(--gold), var(--border));
  flex-shrink: 0;
}

/* ---------- Option C: Fullwidth-Banner ---------- */
.transf-c {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
}

.transf-c__side {
  flex: 1;
  padding: 60px 48px;
}

.transf-c__side--before {
  background: var(--charcoal);
  text-align: right;
  border-right: 2px solid var(--gold);
}

.transf-c__side--after {
  background: linear-gradient(135deg, var(--charcoal-light) 0%, rgba(201, 169, 110, 0.08) 100%);
  text-align: left;
}

.transf-c__label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
  font-weight: 500;
}

.transf-c__side--after .transf-c__label {
  color: var(--gold);
}

.transf-c__side--before p {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.5;
  color: var(--gray-light);
}

.transf-c__side--after p {
  font-family: var(--font-serif);
  font-size: 24px;
  font-style: italic;
  line-height: 1.5;
  color: var(--white);
}

/* Mobile: alle 3 Optionen */
@media (max-width: 768px) {
  .transf-b {
    flex-direction: column;
  }

  .transf-b__card {
    max-width: 100%;
    padding: 32px 24px;
  }

  .transf-b__card--before {
    border-right: 1px solid var(--border);
    border-bottom: none;
    border-radius: 8px 8px 0 0;
  }

  .transf-b__card--after {
    border-radius: 0 0 8px 8px;
  }

  .transf-b__line {
    width: 100%;
    height: 2px;
  }

  .transf-c {
    flex-direction: column;
  }

  .transf-c__side {
    padding: 36px 24px;
  }

  .transf-c__side--before {
    text-align: center;
    border-right: none;
    border-bottom: 2px solid var(--gold);
  }

  .transf-c__side--after {
    text-align: center;
  }

  .transf-a__before {
    font-size: 20px;
  }

  .transf-a__after {
    font-size: 24px;
  }
}

/* ---------- Features Grid ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.feature {
  background: var(--charcoal);
  border: 1px solid var(--border);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark), transparent 90%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(201, 169, 110, 0.08);
}

.feature:hover::before {
  transform: scaleX(1);
}

.feature:hover .feature__title {
  color: var(--gold);
}

.feature__title {
  transition: color 0.3s ease;
}

.feature__icon {
  color: var(--gold);
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 300;
}

.feature__title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}

.feature__text {
  color: var(--gray-light);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.about__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  filter: grayscale(10%) brightness(0.95) contrast(1.05);
  border: 1px solid var(--border);
}

.about__text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--cream);
  margin-bottom: 20px;
  font-weight: 300;
}

.about__text:first-of-type {
  font-size: 20px;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--white);
  font-weight: 400;
}

.about__text--highlight {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--gold);
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* About expandable */
.about__expandable {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
  margin-top: 0;
}

.about__expandable.is-open {
  max-height: 2000px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.about__expandable-content {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.about__expandable-content .about__text:first-of-type {
  font-size: 16px;
  font-family: var(--font-sans);
  font-style: normal;
  color: var(--cream);
  font-weight: 300;
}

.about__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 0;
  background: none;
  border: none;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: var(--transition);
}

.about__toggle:hover {
  color: var(--gold-hover);
}

.about__toggle-icon {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 12px;
}

.about__toggle--bottom {
  display: none;
  margin: 32px auto 0;
}

.about__expandable.is-open ~ .about-grid .about__toggle--bottom,
.about__expandable.is-open .about__toggle--bottom {
  display: inline-flex;
}

.about__toggle.is-open .about__toggle-icon {
  transform: rotate(180deg);
}

/* ---------- Fit Grid (Für wen / nicht) ---------- */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}

.fit-card {
  padding: 40px;
  border: 1px solid var(--border);
}

.fit-card--yes {
  background: var(--charcoal);
  border-top: 2px solid var(--gold);
}

.fit-card--no {
  background: var(--charcoal);
  border-top: 2px solid var(--gray);
}

.fit-card__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 24px;
}

.fit-card__list li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  line-height: 1.6;
  color: var(--cream);
}

.fit-card--yes .fit-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

.fit-card--no .fit-card__list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--gray);
  font-weight: 600;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}

.testimonial {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 36px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}

.testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark), transparent 90%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.testimonial:hover::before {
  transform: scaleX(1);
}

.testimonial__text {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  line-height: 1.8;
  color: var(--cream);
  margin-bottom: 24px;
  font-weight: 400;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.03em;
}

/* ---------- Pricing ---------- */
.pricing {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 64px;
  background: var(--charcoal-light);
  border: 1px solid var(--border);
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 169, 110, 0.3) 20%,
    var(--gold) 50%,
    rgba(201, 169, 110, 0.3) 80%,
    transparent 100%
  );
  pointer-events: none;
}

.pricing__label {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
}

/* Pricing Availability */
.pricing__availability {
  margin-bottom: 32px;
  padding: 20px 24px;
  background: rgba(201, 169, 110, 0.06);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.pricing__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.pricing__dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.pricing__dot--filled {
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201, 169, 110, 0.4);
}

.pricing__dot--empty {
  background: transparent;
  border: 2px solid var(--gray);
}

.pricing__avail-text {
  font-size: 14px;
  color: var(--gray-light);
  letter-spacing: 0.03em;
}

.pricing__avail-text strong {
  color: var(--gold);
  font-weight: 600;
}

.pricing__amount {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
}

.pricing__currency {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--gold);
  padding-top: 12px;
}

.pricing__number {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing__netto {
  display: block;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-light);
  margin-top: 4px;
}

.pricing__note {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 40px;
}

.pricing__includes {
  text-align: left;
  margin-bottom: 40px;
  padding: 32px;
  background: rgba(201, 169, 110, 0.04);
  border: 1px solid var(--border);
}

.pricing__includes li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 15px;
  color: var(--cream);
}

.pricing__includes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.pricing__guarantee {
  font-size: 14px;
  color: var(--gold);
  font-style: italic;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  line-height: 1.7;
}

.pricing__disclaimer {
  font-size: 13px;
  color: var(--gray);
  margin-top: 12px;
}

/* ---------- FAQ ---------- */
.faq-list {
  margin-top: 48px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition);
}

.faq-item__question:hover {
  color: var(--gold);
}

.faq-item__icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: transform var(--transition);
}

.faq-item__icon::before {
  top: 50%;
  left: 0;
  width: 16px;
  height: 1px;
}

.faq-item__icon::after {
  top: 0;
  left: 50%;
  width: 1px;
  height: 16px;
}

.faq-item__question[aria-expanded="true"] .faq-item__icon::after {
  transform: rotate(90deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item__answer.open {
  max-height: 300px;
}

.faq-item__answer p {
  padding-bottom: 24px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-light);
  font-weight: 300;
}

/* ---------- Final CTA ---------- */
.final-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 0;
  letter-spacing: -0.01em;
}

.final-cta__jetzt {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 700;
  color: var(--gold);
  margin-top: 16px;
  margin-bottom: 24px;
  opacity: 0;
  transform: scale(0.3);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.final-cta__jetzt.is-visible {
  opacity: 1;
  transform: scale(1);
}

.final-cta__text {
  font-size: 18px;
  color: var(--gray-light);
  margin-bottom: 40px;
  font-weight: 300;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--charcoal);
  padding: 48px 0 32px;
  border-top: 1px solid var(--border);
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.footer__tagline {
  font-size: 13px;
  color: var(--gray);
  margin-top: 4px;
  font-style: italic;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.footer__social-label {
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 0.05em;
}

.footer__social a {
  color: var(--gray);
  transition: color var(--transition);
}

.footer__social a:hover {
  color: var(--gold);
}

.footer__links {
  display: flex;
  gap: 32px;
}

.footer__links a {
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
}

.footer__bottom p {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.05em;
}

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  overflow-y: auto;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
}

.modal__container {
  position: relative;
  background: var(--charcoal);
  border: 1px solid var(--border);
  max-width: 640px;
  width: 100%;
  padding: 48px;
  z-index: 1;
  margin: auto;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.modal.is-open .modal__container {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--gray);
  font-size: 28px;
  cursor: pointer;
  transition: color var(--transition);
  line-height: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__close:hover {
  color: var(--white);
}

.modal__header {
  margin-bottom: 36px;
}

.modal__title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.modal__subtitle {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.7;
  font-weight: 300;
}

/* ---------- Form ---------- */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}

.form-hint {
  font-weight: 300;
  color: var(--gray);
  font-size: 13px;
  display: block;
  margin-top: 2px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 14px 16px;
  transition: border-color var(--transition);
  border-radius: 0;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
  font-weight: 300;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-divider {
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}

.form-required-note {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 24px;
}

/* Consent Box (DSGVO) */
.form-consent-box {
  margin-top: 20px;
  padding: 16px;
  border: 1px solid rgba(200, 168, 110, 0.3);
  border-radius: 6px;
  background: rgba(200, 168, 110, 0.05);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--white);
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}

.checkbox-label a {
  color: var(--gold);
  text-decoration: underline;
}

.checkbox-label a:hover {
  color: var(--white);
}

.form-consent-box__hint {
  font-size: 12px;
  color: var(--gray);
  margin-top: 8px;
  margin-left: 28px;
  line-height: 1.4;
}

/* Trust Badge (Brevo) */
.form-trust {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
  padding: 14px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
}

.form-trust__icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.form-trust__text {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
}

.form-trust__text strong {
  color: var(--white);
}

.form-trust__text a {
  color: var(--gold);
  text-decoration: underline;
}

.form-trust__text a:hover {
  color: var(--white);
}

/* Brevo form overrides — keep our design */
.sib-form,
#sib-form-container,
#sib-container {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  max-width: none !important;
  text-align: left !important;
}

.sib-form-message-panel {
  border-radius: 6px;
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 14px;
  font-family: var(--font-sans);
}

#success-message {
  background: rgba(200, 168, 110, 0.1);
  border: 1px solid var(--gold);
  color: var(--gold);
}

#error-message {
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid #ff6b6b;
  color: #ff6b6b;
}

.entry__field {
  width: 100%;
}

/* Modal Success */
.modal__success {
  text-align: center;
  padding: 40px 0;
}

.modal__success-icon {
  width: 64px;
  height: 64px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
  color: var(--gold);
}

.modal__success h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--white);
  margin-bottom: 12px;
}

.modal__success p {
  color: var(--gray-light);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 300;
}

/* ---------- Typewriter ---------- */
.typewriter__cursor {
  color: var(--gold);
  font-weight: 300;
  animation: blink 0.8s step-end infinite;
}

.typewriter__cursor.hidden {
  opacity: 0;
  animation: none;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* ---------- Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for grid items */
.pain-grid .fade-in:nth-child(2),
.features-grid .fade-in:nth-child(2),
.fit-grid .fade-in:nth-child(2),
.testimonials-grid .fade-in:nth-child(2) {
  transition-delay: 0.1s;
}

.features-grid .fade-in:nth-child(3),
.testimonials-grid .fade-in:nth-child(3) {
  transition-delay: 0.2s;
}

.features-grid .fade-in:nth-child(4),
.testimonials-grid .fade-in:nth-child(4) {
  transition-delay: 0.15s;
}

.features-grid .fade-in:nth-child(5) {
  transition-delay: 0.25s;
}

.features-grid .fade-in:nth-child(6) {
  transition-delay: 0.35s;
}

/* ---------- Body scroll lock for modal ---------- */
body.modal-open {
  overflow: hidden;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
  }

  /* Ticker mobile */
  .ticker {
    padding: 6px 0;
  }

  .ticker__dot {
    width: 6px;
    height: 6px;
  }

  .ticker__text {
    font-size: 11px;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 136px 0 48px;
  }

  .hero__content {
    max-width: 100%;
    text-align: center;
  }

  /* Pain Grid */
  .pain-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pain-card {
    padding: 32px;
  }

  /* Timeline */
  .timeline::before,
  .timeline::after {
    left: 16px;
  }

  .timeline__item {
    flex-direction: column;
    gap: 8px;
    padding-left: 44px;
  }

  .timeline__item::before {
    left: 10px;
    top: 36px;
  }

  .timeline__week {
    width: auto;
  }

  .timeline__content {
    padding-left: 0;
  }

  /* Transformation */
  .transformation {
    flex-direction: column;
    gap: 16px;
  }

  .transformation__before,
  .transformation__after {
    max-width: 100%;
    width: 100%;
    padding: 28px 24px;
  }

  .transformation__arrow {
    transform: rotate(90deg);
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature {
    padding: 28px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__image {
    max-width: 350px;
    margin: 0 auto;
  }

  .section__title--left {
    text-align: center;
  }

  .about__content {
    text-align: center;
  }

  .section__label {
    text-align: center;
  }

  /* Fit Grid */
  .fit-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .fit-card {
    padding: 32px;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonial {
    padding: 28px;
  }

  /* Pricing */
  .pricing {
    padding: 40px 24px;
  }

  .pricing__number {
    font-size: 56px;
  }

  .pricing__includes {
    padding: 24px;
  }

  /* Footer */
  .footer__content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  /* Modal */
  .modal {
    padding: 20px 16px;
  }

  .modal__container {
    padding: 32px 24px;
  }

  .modal__title {
    font-size: 22px;
  }

  /* Hero adjustments */
  .hero__grid {
    max-width: 100%;
    text-align: center;
  }

  .hero__image {
    display: none;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__subtitle br {
    display: none;
  }

  .btn--large {
    padding: 16px 36px;
    font-size: 14px;
  }

  /* Nav */
  .btn--nav {
    padding: 8px 16px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .hero__label {
    font-size: 11px;
  }

  .hero__title {
    font-size: 32px;
  }

  .section__title {
    font-size: 26px;
  }

  .final-cta__title {
    font-size: 26px;
  }

  .nav__logo-text {
    font-size: 20px;
  }
}
