/* ============================================================
   Hydra Glow™ Landingpage – v3
   Klinisch · visionär · Weiß als Primärfläche · Braun als Akzent
   Display: Space Grotesk · Body: Inter
   ============================================================ */

:root {
  /* Farben */
  --white: #ffffff;
  --snow: #faf8f6;            /* alternierende Sections, minimal warm */
  --brown: #3e2b1d;           /* Headlines */
  --brown-deep: #2a1d12;      /* dunkle Sections, Buttons */
  --bronze: #a06a48;          /* Akzent */
  --bronze-soft: #c79c7f;
  --text: #5c4d40;            /* Fließtext, warmes Graubraun */
  --line: rgba(62, 43, 29, 0.12);
  --line-strong: rgba(62, 43, 29, 0.55);

  /* Typo */
  --display: "Poppins", sans-serif;
  --sans: "Inter", -apple-system, sans-serif;

  /* Layout */
  --container: 1280px;
  --radius: 16px;
  --radius-lg: 24px;
  --nav-h: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 128px 0; }
.section--cream { background: var(--snow); }
.section--dark { background: var(--brown-deep); color: #f5efe9; }

/* ---------- Typografie ---------- */
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--brown);
}

h1 { font-size: clamp(2.9rem, 5.4vw, 5rem); }
h2 { font-size: clamp(2.1rem, 3.8vw, 3.4rem); margin-bottom: 24px; max-width: 17em; }
h3 { font-size: 1.16rem; font-weight: 500; letter-spacing: -0.015em; }

.section--dark h2, .section--dark h3 { color: #f5efe9; }

h1 em, h2 em {
  font-style: normal;
  font-weight: 300;
  color: var(--bronze);
}
.section--dark h2 em { color: var(--bronze-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 28px;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bronze);
  flex-shrink: 0;
}
.eyebrow--cream {
  color: #f5efe9;
  border-color: rgba(245, 239, 233, 0.22);
}
.eyebrow--light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
}

.section__lead {
  max-width: 530px;
  color: var(--text);
  font-size: 1.06rem;
  margin-bottom: 52px;
}

.finehint {
  font-size: 0.78rem;
  color: var(--text);
  opacity: 0.75;
  max-width: 760px;
  margin-top: 28px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 999px;
  padding: 17px 36px;
  border: 1px solid transparent;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

.btn--dark {
  background: var(--brown-deep);
  color: #fff;
}
.btn--dark:hover { background: var(--bronze); }

.btn--cream {
  background: #fff;
  color: var(--brown-deep);
}
.btn--cream:hover { background: var(--bronze-soft); color: var(--brown-deep); }

.btn--outline {
  border-color: var(--line-strong);
  color: var(--brown);
  background: transparent;
}
.btn--outline:hover { background: var(--brown-deep); color: #fff; border-color: var(--brown-deep); }

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.16); border-color: #fff; }

.btn--phone {
  border-color: var(--line-strong);
  color: var(--brown);
  background: transparent;
}
.btn--phone:hover { background: var(--snow); border-color: var(--bronze); color: var(--bronze); }

.btn--sm { padding: 11px 26px; font-size: 0.86rem; }
.btn--lg { padding: 19px 42px; font-size: 1rem; }
.btn--xl { padding: 20px 46px; font-size: 1.02rem; width: 100%; }

/* ---------- Logos (Klarna / Google) ---------- */
.klarna {
  height: 12px;
  width: auto;
  display: inline-block;
  vertical-align: -1px;
}
.klarna--sm { height: 10px; }
.glogo {
  width: 15px;
  height: 15px;
  display: inline-block;
  vertical-align: -2px;
  margin-right: 6px;
}
.glogo--lg {
  width: 24px;
  height: 24px;
  align-self: center;
  margin-right: 0;
  flex-shrink: 0;
}

/* ---------- Announcement ---------- */
.announce {
  background: var(--brown-deep);
  color: #f5efe9;
  height: 40px;
  position: relative;
  overflow: hidden;
  z-index: 60;
}
.announce__msg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  padding: 0 16px;
  text-align: center;
}
.announce__msg.is-active { opacity: 1; transform: translateY(0); }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.nav__logo img { height: 36px; width: auto; }
.nav__logo span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brown);
  transform: translateY(1px);
}
.nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav__links { display: flex; gap: 2px; }
.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--brown);
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 999px;
  transition: background 0.2s;
}
.nav__links a:hover { background: var(--snow); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px;
}
.nav__burger span { width: 24px; height: 1.5px; background: var(--brown); }

.mobilemenu {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 auto 0;
  background: var(--white);
  z-index: 49;
  padding: 28px 32px 36px;
  flex-direction: column;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}
.mobilemenu a {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--brown);
  text-decoration: none;
}
.mobilemenu a.btn--dark { color: #fff; }
.mobilemenu a.btn { font-size: 0.98rem; }
.mobilemenu.is-open { display: flex; }

/* ---------- Hero (Fullscreen Video) ---------- */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h) - 40px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__bg video, .hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(80deg, rgba(31, 21, 13, 0.82) 0%, rgba(31, 21, 13, 0.52) 45%, rgba(31, 21, 13, 0.14) 100%),
    linear-gradient(to top, rgba(31, 21, 13, 0.45) 0%, transparent 32%);
}
.hero__content {
  width: 100%;
  padding-top: 104px;
  padding-bottom: 104px;
  color: #fff;
}
.hero__content h1 {
  max-width: 11em;
  color: #fff;
}
.hero__content h1 em { color: var(--bronze-soft); }
.hero__sub {
  max-width: 480px;
  margin-top: 28px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.88);
}
.hero__cta {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.hero__ctanote {
  width: 100%;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
}
.hero__ctanote s { margin-right: 2px; }
.hero__proof {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
}
.hero__proof strong {
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 500;
  color: #fff;
  margin-right: 2px;
}
.hero__proofdiv { width: 1px; height: 24px; background: rgba(255, 255, 255, 0.25); }

.hero__chip {
  position: absolute;
  top: 24px;
  right: 32px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 11px 20px;
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}
.hero__chiplabel {
  font-family: var(--display);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--bronze);
}
.hero__chipprice {
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--brown);
}
.hero__chipprice s {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 400;
  color: var(--text);
  margin-left: 6px;
}

/* ---------- Ticker ---------- */
.ticker {
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 44px;
  width: max-content;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brown);
  will-change: transform;
}
.ticker__track i {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--bronze);
  flex-shrink: 0;
}

/* ---------- Stats ---------- */
.stats { padding: 76px 0; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  text-align: center;
  padding: 10px 20px;
}
.stat + .stat { border-left: 1px solid var(--line); }
.stat strong {
  font-family: var(--display);
  font-size: clamp(2.3rem, 4.2vw, 3.7rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--brown);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.18em;
  line-height: 1.05;
  margin-bottom: 10px;
  white-space: nowrap;
}
.stat strong small {
  font-size: 0.38em;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bronze);
}
.stat span:last-child { font-size: 0.84rem; }

/* ---------- Warum ---------- */
.why { border-top: 1px solid var(--line); }
.why__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 88px;
  align-items: start;
}
.why__intro {
  position: sticky;
  top: calc(var(--nav-h) + 48px);
}
.why__intro .section__lead { margin-bottom: 38px; }
.why__list { list-style: none; }
.why__item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}
.why__item:last-child { border-bottom: 1px solid var(--line); }
.why__icon {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--bronze);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.why__item:hover .why__icon {
  background: var(--snow);
  border-color: var(--bronze-soft);
}
.why__icon svg { width: 30px; height: 30px; }
.why__body h3 { margin-bottom: 10px; }
.why__body p { font-size: 0.94rem; max-width: 440px; }
.why__num {
  margin-left: auto;
  font-family: var(--display);
  font-weight: 300;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--bronze);
  padding-top: 4px;
}

/* ---------- System ---------- */
.system__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.system__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3.4;
}
.system__media video { width: 100%; height: 100%; object-fit: cover; }
.system__copy > p { margin-bottom: 38px; max-width: 460px; }
.syslist { list-style: none; }
.syslist li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}
.syslist li:last-child { border-bottom: 1px solid var(--line); }
.syslist span {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--brown);
}
.syslist small { font-size: 0.84rem; text-align: right; }

/* ---------- Features im Detail ---------- */
.features__list { display: grid; gap: 96px; margin-top: 24px; }
.feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}
.feature:nth-child(even) .feature__media { order: 2; }
.feature__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--snow);
}
.feature__media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  will-change: transform;
}
.feature__idx {
  font-family: var(--display);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
  color: var(--bronze);
  margin-bottom: 14px;
}
.feature__text h3 {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  margin-bottom: 16px;
  max-width: 12em;
}
.feature__text p { max-width: 440px; }

/* ---------- Galerie ---------- */
.gallery__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 44px;
}
.gallery__head h2 { margin-bottom: 0; }
.gallery__nav { display: flex; gap: 10px; }
.gallery__stage {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 8.5;
  background: var(--brown-deep);
}
.gallery__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}
.gallery__slide.is-active { opacity: 1; pointer-events: auto; }
.gallery__slide img, .gallery__slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}
.gallery__slide figcaption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: min(420px, 70%);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 14px 20px;
  font-size: 0.88rem;
  color: var(--brown);
}
.gallery__slide figcaption span {
  display: block;
  font-family: var(--display);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--bronze);
  margin-bottom: 3px;
}
.gallery__count {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: #fff;
  background: rgba(42, 29, 18, 0.45);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 999px;
}
.gallery__dots {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.gallery__dots button {
  flex: 1;
  height: 3px;
  border: none;
  border-radius: 2px;
  background: var(--line);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  padding: 0;
}
.gallery__dots button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: left;
}
.gallery__dots button.is-active::after {
  transform: scaleX(1);
  transition: transform var(--gal-dur, 5s) linear;
}

/* ---------- Hautbilder ---------- */
.skins__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 52px;
}
.skins__head .section__lead { margin-bottom: 0; }
.skins__arrows { display: flex; gap: 10px; }
.arrowbtn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--brown);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.arrowbtn:hover { background: var(--brown-deep); border-color: var(--brown-deep); color: #fff; }

.skins__row {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 max(32px, calc((100vw - var(--container)) / 2 + 32px));
  scrollbar-width: none;
}
.skins__row::-webkit-scrollbar { display: none; }
.skincard {
  flex: 0 0 min(290px, 78vw);
  scroll-snap-align: start;
}
.skincard__img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 3.6;
  margin-bottom: 20px;
  background: var(--snow);
}
.skincard__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.skincard:hover .skincard__img img { transform: scale(1.04); }
.skincard__idx {
  font-family: var(--display);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--bronze);
  margin-bottom: 8px;
}
.skincard h3 { margin-bottom: 8px; }
.skincard p:last-child { font-size: 0.86rem; }
.skins__note {
  margin-top: 48px;
  font-size: 0.78rem;
  opacity: 0.75;
}

/* ---------- Wirkungsweise ---------- */
.science__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 88px;
  align-items: start;
}
.science__lead { color: rgba(245, 239, 233, 0.66); max-width: 440px; margin-bottom: 48px; }
.science__steps { list-style: none; }
.science__step {
  display: flex;
  gap: 30px;
  padding: 30px 4px;
  border-top: 1px solid rgba(245, 239, 233, 0.14);
  opacity: 0.4;
  transition: opacity 0.45s ease;
}
.science__step:last-child { border-bottom: 1px solid rgba(245, 239, 233, 0.14); }
.science__step.is-active { opacity: 1; }
.science__num {
  font-family: var(--display);
  font-weight: 300;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: var(--bronze-soft);
  min-width: 52px;
}
.science__step h3 { margin-bottom: 8px; }
.science__step p { color: rgba(245, 239, 233, 0.64); font-size: 0.92rem; max-width: 440px; }

.science__media {
  position: sticky;
  top: calc(var(--nav-h) + 48px);
}
.science__media img { border-radius: var(--radius-lg); }
.science__badge {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(245, 239, 233, 0.16);
  border-radius: var(--radius);
  padding: 16px 22px;
  margin-top: 18px;
}
.science__badge strong {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--bronze-soft);
  white-space: nowrap;
}
.science__badge span { font-size: 0.84rem; color: rgba(245, 239, 233, 0.66); }

/* ---------- Verdienst ---------- */
.earnings { border-top: 1px solid var(--line); }
.earnings__head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: end;
}
.earnings__head .section__lead { margin-bottom: 12px; }

.calc {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  margin: 28px 0 44px;
  overflow: hidden;
}
.calc__controls {
  padding: 56px 60px;
  display: grid;
  gap: 42px;
  align-content: center;
}
.calc__field label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brown);
  margin-bottom: 20px;
}
.calc__field output {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--bronze);
}
.calc__hint { font-size: 0.8rem; opacity: 0.8; }

input[type="range"] {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  height: 2px;
  background: var(--line-strong);
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--brown-deep);
  cursor: pointer;
  transition: background 0.2s;
}
input[type="range"]::-webkit-slider-thumb:hover { background: var(--bronze-soft); }
input[type="range"]::-moz-range-thumb {
  width: 24px; height: 24px; border-radius: 50%;
  background: #fff; border: 1.5px solid var(--brown-deep);
  cursor: pointer;
}

.calc__results {
  background: var(--brown-deep);
  color: #f5efe9;
  padding: 56px 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}
.calc__main { padding-bottom: 8px; }
.calc__main span {
  display: block;
  font-family: var(--display);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(245, 239, 233, 0.58);
  margin-bottom: 12px;
}
.calc__main strong {
  font-family: var(--display);
  font-size: clamp(2.7rem, 4.2vw, 3.9rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
}
.calc__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid rgba(245, 239, 233, 0.14);
  padding-top: 15px;
  font-size: 0.9rem;
  color: rgba(245, 239, 233, 0.68);
}
.calc__row strong {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 400;
  color: #f5efe9;
}
.calc__cta { margin-top: 18px; background: #fff; color: var(--brown-deep); }
.calc__cta:hover { background: var(--bronze-soft); }

.earnings__table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.earnings__table table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}
.earnings__table th, .earnings__table td {
  text-align: left;
  padding: 17px 18px;
  font-size: 0.93rem;
}
.earnings__table thead th {
  font-family: var(--display);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text);
  border-bottom: 1px solid var(--line-strong);
  font-weight: 500;
}
.earnings__table tbody tr { border-bottom: 1px solid var(--line); }
.earnings__table tbody tr.is-highlight {
  background: var(--snow);
  box-shadow: inset 3px 0 0 var(--bronze);
}
.earnings__table td { color: var(--text); }
.earnings__table td strong {
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--brown);
}

/* ---------- Vergleich ---------- */
.compare__wrap { overflow-x: auto; }
.compare__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 760px;
}
.compare__table th, .compare__table td {
  padding: 17px 20px;
  text-align: center;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--line);
}
.compare__table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--brown);
}
.compare__table thead th { border-bottom: 1px solid var(--line-strong); padding-bottom: 22px; vertical-align: bottom; }
.compare__brand {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
  color: var(--brown);
}
.compare__sub { display: block; font-size: 0.74rem; color: var(--text); font-weight: 400; margin-top: 4px; }
.compare__table .is-hero { background: var(--white); }
.compare__table thead .is-hero {
  border-top: 2px solid var(--brown-deep);
  border-left: 1px solid var(--line-strong);
  border-right: 1px solid var(--line-strong);
  border-radius: var(--radius) var(--radius) 0 0;
}
.compare__table tbody .is-hero {
  border-left: 1px solid var(--line-strong);
  border-right: 1px solid var(--line-strong);
}
.compare__table tbody tr:last-child .is-hero { border-bottom: 1px solid var(--line-strong); }
.compare__last td { border-bottom: none; }
.compare__last td:not(:first-child) { font-size: 0.88rem; }
.compare__last .is-hero strong {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--brown);
}
.yes, .no {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 0.8rem;
}
.yes { background: var(--brown-deep); color: #fff; }
.no { color: var(--text); opacity: 0.6; font-size: 1rem; }
.part { font-style: italic; font-size: 0.84rem; color: var(--text); }

/* ---------- Garantie ---------- */
.guarantee { padding: 96px 0; border-top: 1px solid var(--line); }
.guarantee__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 60px;
  align-items: center;
}
.guarantee__seal {
  width: 122px;
  color: var(--bronze);
}
.guarantee__ring {
  transform-origin: 60px 60px;
  animation: sealspin 26s linear infinite;
}
@keyframes sealspin {
  to { transform: rotate(360deg); }
}
.guarantee__copy h2 { margin-bottom: 14px; }
.guarantee__copy p { max-width: 540px; }

/* ---------- Telefonische Beratung ---------- */
.consult__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 88px;
  align-items: center;
}
.consult__copy .section__lead { margin-bottom: 44px; }
.consult__topics { list-style: none; display: grid; gap: 0; }
.consult__topics li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.consult__topics li:last-child { border-bottom: 1px solid var(--line); }
.consult__topics svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--bronze);
  margin-top: 2px;
}
.consult__topics strong {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--brown);
  margin-bottom: 2px;
}
.consult__topics span { font-size: 0.86rem; }

.consult__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.consult__badge {
  width: 64px;
  height: 64px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--bronze);
  margin-bottom: 22px;
}
.consult__label {
  font-family: var(--display);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
  color: var(--bronze);
  margin-bottom: 12px;
}
.consult__number {
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--brown);
  text-decoration: none;
  white-space: nowrap;
}
.consult__number:hover { color: var(--bronze); }
.consult__free {
  font-size: 0.84rem;
  margin: 12px 0 26px;
}
.consult__call { width: 100%; }
.consult__alt {
  font-size: 0.78rem;
  opacity: 0.75;
  margin-top: 16px;
  max-width: 280px;
}

/* ---------- Experten ---------- */
.experts__quote { max-width: 920px; margin-bottom: 60px; }
.experts__quote blockquote {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--brown);
}
.experts__quote figcaption {
  margin-top: 24px;
  font-size: 0.88rem;
}
.experts__quote figcaption strong { color: var(--brown); }
.experts__proofrow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 60px;
}
.proof {
  padding: 28px 28px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.proof + .proof { border-left: 1px solid var(--line); }
.proof strong {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--brown);
}
.proof span { font-size: 0.86rem; }

.experts__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  background: var(--white);
  transition: border-color 0.3s ease;
}
.quote:hover { border-color: var(--bronze-soft); }
.quote__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.quote__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--snow);
  border: 1px solid var(--line);
}
.quote__name {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--brown);
  line-height: 1.2;
}
.quote__role {
  display: block;
  font-size: 0.78rem;
  color: var(--text);
  margin-top: 1px;
}
.quote__stars {
  display: block;
  margin-top: 3px;
  color: #E8A33D;
  font-size: 0.86rem;
  letter-spacing: 1px;
}
.quote p {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.02rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--brown);
  margin-bottom: 0;
}

/* ---------- FAQ ---------- */
.faq__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 88px;
  align-items: start;
}
.faq__intro { position: sticky; top: calc(var(--nav-h) + 48px); }
.faq__list details { border-top: 1px solid var(--line); }
.faq__list details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
  color: var(--brown);
  padding: 26px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--bronze);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  padding-bottom: 28px;
  font-size: 0.95rem;
  max-width: 600px;
}

/* ---------- Buy ---------- */
.buy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.buy__media img {
  filter: drop-shadow(0 36px 50px rgba(0, 0, 0, 0.4));
}
.buy__price {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin: 28px 0 18px;
}
.buy__finance {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(245, 239, 233, 0.18);
  border-radius: 14px;
  padding: 14px 20px;
  margin-bottom: 30px;
  color: rgba(245, 239, 233, 0.8);
  font-size: 0.9rem;
}
.buy__finance .klarna { height: 15px; flex-shrink: 0; }
.buy__finance strong { color: #f5efe9; font-weight: 600; }
.buy__price strong {
  font-family: var(--display);
  font-size: 3.4rem;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: #f5efe9;
  line-height: 1;
}
.buy__compare { display: flex; flex-direction: column; line-height: 1.4; }
.buy__compare s { color: rgba(245, 239, 233, 0.5); font-size: 1rem; }
.buy__compare em {
  font-style: normal;
  font-family: var(--display);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze-soft);
  font-weight: 500;
}
.buylist {
  list-style: none;
  margin-bottom: 36px;
}
.buylist li {
  padding: 13px 0 13px 30px;
  position: relative;
  font-size: 0.95rem;
  color: rgba(245, 239, 233, 0.85);
  border-top: 1px solid rgba(245, 239, 233, 0.12);
}
.buylist li:last-child { border-bottom: 1px solid rgba(245, 239, 233, 0.12); }
.buylist li::before {
  content: "✓";
  position: absolute;
  left: 2px;
  color: var(--bronze-soft);
  font-weight: 600;
}
.pays {
  display: flex;
  flex-flow: row wrap;
  gap: 6px;
  margin-top: 16px;
  justify-content: center;
}
.pay {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 22px;
  padding: 0 7px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1;
  color: #000;
}
.pay b { font-weight: 700; font-size: 10.5px; }
.pay__apple { height: 11px; width: auto; }
.pay b.pay__visa {
  color: #1434CB;
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.3px;
}
.pay__mc { height: 15px; width: auto; }
.pay b.pay__pp { font-style: italic; font-size: 10.5px; }
.pay__pp span:first-child { color: #003087; }
.pay__pp span:last-child { color: #0070E0; }
.pay b.pay__klarna {
  color: #0A0B09;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: -0.2px;
}
.pay__klarna i { font-style: normal; color: #FFB3C7; }

.buy__note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: rgba(245, 239, 233, 0.55);
  text-align: center;
}

/* ---------- Sticky Buy Bar ---------- */
.stickybar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  z-index: 55;
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.stickybar.is-visible { transform: translateY(0); }
.stickybar__trust {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px 16px;
  background: var(--snow);
  border-bottom: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--brown);
}
.stickybar__trust span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.stickybar__trust svg {
  width: 13px;
  height: 13px;
  color: var(--bronze);
  flex-shrink: 0;
}
.stickybar__trust .klarna { width: auto; height: 9px; color: var(--brown); }
.stickybar__trust i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--line-strong);
}
.stickybar__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.stickybar__thumb { width: 44px; height: 44px; object-fit: contain; }
.stickybar__info {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
  margin-right: auto;
}
.stickybar__info strong {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--brown);
}
.stickybar__info span { font-size: 0.78rem; }
.stickybar__info s { margin-right: 2px; }

/* ---------- Consent-Banner ---------- */
.consent {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 70;
  max-width: 380px;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: 0 18px 50px -18px rgba(36, 28, 21, 0.35);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.consent.is-visible { opacity: 1; transform: translateY(0); }
.consent p { font-size: 0.82rem; margin-bottom: 14px; }
.consent a { color: var(--bronze); }
.consent__actions { display: flex; gap: 10px; flex-wrap: wrap; }
@media (max-width: 540px) {
  .consent { left: 12px; right: 12px; bottom: 12px; max-width: none; }
}

/* ---------- Footer ---------- */
.footer {
  padding: 60px 0 116px;
  border-top: 1px solid var(--line);
}
.footer__inner {
  display: grid;
  gap: 20px;
  justify-items: center;
  text-align: center;
}
.footer nav { display: flex; flex-wrap: wrap; gap: 26px; justify-content: center; }
.footer nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.86rem;
}
.footer nav a:hover { color: var(--bronze); }
.footer p { font-size: 0.76rem; opacity: 0.75; max-width: 620px; }

/* ---------- Motion: Word-Reveals & CTA-Shine ---------- */
.w {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.2em;
  margin-bottom: -0.2em;
}
.wi { display: inline-block; will-change: transform; }

.btn--shine { position: relative; overflow: hidden; }
.btn--shine::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 36%;
  left: -60%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  animation: btnshine 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btnshine {
  0%, 74% { left: -60%; }
  86%, 100% { left: 130%; }
}

/* ---------- Reveal Defaults ---------- */
.reveal { opacity: 0; transform: translateY(28px); }
[data-hero] { opacity: 0; transform: translateY(22px); }
@media (prefers-reduced-motion: reduce) {
  .reveal, [data-hero] { opacity: 1 !important; transform: none !important; }
  .guarantee__ring { animation: none; }
  .btn--shine::after { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1320px) {
  .nav__cta .btn--phone span { display: none; }
  .nav__cta .btn--phone {
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
  }
  .nav__links { gap: 0; }
  .nav__links a { padding: 8px 11px; font-size: 0.85rem; }
}

@media (max-width: 1080px) {
  .feature { grid-template-columns: 1fr; gap: 32px; }
  .feature:nth-child(even) .feature__media { order: 0; }
  .features__list { gap: 72px; }
  .gallery__head { flex-direction: column; align-items: flex-start; }
  .gallery__stage { aspect-ratio: 16 / 10; }
  .why__grid, .faq__grid { grid-template-columns: 1fr; gap: 44px; }
  .why__intro, .faq__intro { position: static; }
  .science__grid { grid-template-columns: 1fr; gap: 48px; }
  .science__media { position: static; max-width: 520px; }
  .system__grid { grid-template-columns: 1fr; gap: 44px; }
  .earnings__head { grid-template-columns: 1fr; gap: 8px; }
  .experts__cards { grid-template-columns: 1fr; }
  .guarantee__inner { grid-template-columns: 1fr; gap: 32px; justify-items: start; }
}

@media (max-width: 860px) {
  .section { padding: 80px 0; }
  .nav__inner { justify-content: flex-start; gap: 12px; }
  .nav__links { display: none; }
  .nav__cta { margin-left: auto; }
  .nav__cta .btn--dark { display: none; }
  .nav__cta .btn--phone span { display: none; }
  .nav__cta .btn--phone {
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
  }
  .nav__burger { display: flex; }
  .nav__logo img { height: 32px; }
  .nav__logo span { font-size: 1.1rem; letter-spacing: 0.24em; }
  .consult__grid { grid-template-columns: 1fr; gap: 44px; }
  .consult__card { padding: 40px 28px; }
  .buy__grid { grid-template-columns: 1fr; gap: 44px; }
  .calc { grid-template-columns: 1fr; }
  .calc__controls, .calc__results { padding: 38px 28px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .stat:nth-child(3) { border-left: none; }
  .experts__proofrow { grid-template-columns: 1fr; }
  .proof + .proof { border-left: none; border-top: 1px solid var(--line); }
  .skins__head { flex-direction: column; align-items: flex-start; }
  .why__num { display: none; }
  .compare__table { min-width: 660px; }
  .compare__table th, .compare__table td { padding: 13px 12px; }
  .compare__table td:first-child { font-size: 0.85rem; }
  .compare__table th:first-child { width: 26%; }
}

@media (max-width: 540px) {
  .stickybar__trust { display: flex; }
  .stickybar__thumb { width: 36px; height: 36px; }
  .stickybar__info strong { white-space: nowrap; font-size: 0.88rem; }
  .stickybar__inner { gap: 12px; }
  .hero { min-height: calc(100svh - var(--nav-h)); }
  .hero__overlay {
    background:
      linear-gradient(rgba(31, 21, 13, 0.6), rgba(31, 21, 13, 0.6)),
      linear-gradient(to top, rgba(31, 21, 13, 0.5) 0%, transparent 40%);
  }
  .hero__content { padding-top: 84px; padding-bottom: 72px; }
  .hero__chip { top: 16px; right: 16px; padding: 9px 16px; }
  .hero__chipprice { font-size: 1rem; }
  .hero__cta .btn { width: 100%; }
  .hero__proofdiv { display: none; }
  .hero__proof li { width: 100%; }
  .why__item { gap: 18px; }
  .why__icon { width: 48px; height: 48px; border-radius: 13px; }
  .why__icon svg { width: 25px; height: 25px; }
  .stickybar__info span { display: none; }
}
