:root{
  --bg:#0b0c10;
  --bg2:#0f1117;
  --card:#121524;
  --text:#e9ecf1;
  --muted:#a9b0bf;
  --line:#242842;
  --accent:#ff6a00;
  --accent2:#ff9a3c;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1100px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 20% 10%, rgba(255,106,0,.15), transparent 55%),
              radial-gradient(900px 500px at 80% 0%, rgba(255,154,60,.12), transparent 50%),
              var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{ color:inherit; text-decoration:none; }
.container{ width:min(var(--max), calc(100% - 2rem)); margin:0 auto; }
.skip{
  position:absolute; left:-999px; top:0;
  background:var(--accent); color:#000;
  padding:.6rem 1rem; border-radius:10px;
}
.skip:focus{ left:1rem; top:1rem; z-index:999; }

.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 8, 8, 0.42);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:.9rem 0;
}
.logo{ display:flex; align-items:center; gap:.6rem; font-weight:700; }
.logo__mark{
  width:38px; height:38px; display:grid; place-items:center;
  border-radius:12px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color:#000;
}
.logo__text{ letter-spacing:.2px; }

.nav__toggle{
  display:none;
  background:transparent;
  border:1px solid rgba(255,255,255,.18);
  color:var(--text);
  padding:.55rem .8rem;
  border-radius:12px;
}
.nav__menu{
  display:flex; gap:1rem; align-items:center;
  list-style:none; padding:0; margin:0;
}
.nav__menu a{ color:var(--muted); padding:.4rem .55rem; border-radius:10px; }
.nav__menu a:hover{ color:var(--text); background: rgba(255,255,255,.06); }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:.5rem;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color:#000;
  padding:.9rem 1.05rem;
  border-radius: 14px;
  font-weight:700;
  box-shadow: var(--shadow);
  border:0;
  cursor:pointer;
}
.btn--ghost{
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow:none;
}
.btn--small{ padding:.65rem .9rem; border-radius:12px; font-weight:700; }

.hero{ padding: 3.2rem 0 1.8rem; }
.hero__grid{
  display:grid;
  grid-template-columns: 1.35fr .9fr;
  gap: 1.4rem;
  align-items:stretch;
}
.eyebrow{ color:var(--muted); margin:0 0 .6rem; }
h1{ font-size: clamp(2rem, 3.2vw, 3rem); line-height:1.1; margin:.1rem 0 .8rem; }
.lead{ color:var(--muted); font-size:1.05rem; max-width: 55ch; }
.hero__cta{ display:flex; gap:.8rem; flex-wrap:wrap; margin:1.2rem 0 1rem; }

.trust{
  display:flex; gap:.9rem; flex-wrap:wrap;
  list-style:none; padding:0; margin:1.1rem 0 0;
  color:var(--muted);
}
.trust li{ background: rgba(255,255,255,.05); padding:.45rem .65rem; border-radius: 999px; }

.section{ padding: 3.2rem 0; }
.section--alt{ background: rgba(255,255,255,.03); border-top:1px solid rgba(255,255,255,.06); border-bottom:1px solid rgba(255,255,255,.06); }
h2{ font-size: clamp(1.5rem, 2.2vw, 2rem); margin:0 0 .4rem; }
.sub{ color:var(--muted); margin:.25rem 0 1.4rem; max-width: 70ch; }

.grid{ display:grid; gap:1rem; }
.grid--3{ grid-template-columns: repeat(3, 1fr); }

.card{
  background: rgba(18,21,36,.8);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}
.card__title{ margin:.2rem 0 .8rem; }
.card__list{ margin:.3rem 0 1rem; color:var(--muted); }
.card__meta{ display:flex; gap:.5rem; flex-wrap:wrap; }
.pill{
  display:inline-flex; align-items:center;
  padding:.35rem .6rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  color:var(--muted);
  font-size:.9rem;
}

.list{ margin:.7rem 0 1rem; padding-left: 1.1rem; color:var(--muted); }
.list li{ margin:.25rem 0; }

.step{
  background: rgba(18,21,36,.55);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 1.2rem;
}
.step__num{
  width:38px; height:38px; border-radius:12px;
  display:grid; place-items:center;
  background: rgba(255,106,0,.2);
  border: 1px solid rgba(255,106,0,.35);
  font-weight:800;
  margin-bottom:.7rem;
}

.about{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1rem;
  align-items:start;
}

.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items:start;
}
.contact__links{ display:flex; gap:.7rem; flex-wrap:wrap; margin: 1rem 0; }

.form label{ display:block; font-weight:650; margin:.75rem 0 .2rem; }
input, textarea{
  width:100%;
  margin-top:.35rem;
  padding:.85rem .9rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(10,12,20,.6);
  color: var(--text);
  outline: none;
}
input:focus, textarea:focus{
  border-color: rgba(255,154,60,.6);
  box-shadow: 0 0 0 4px rgba(255,154,60,.15);
}
.tiny{ color:var(--muted); font-size:.9rem; margin:.7rem 0 0; }

.footer{
  padding: 1.5rem 0;
  color: var(--muted);
}
.footer__inner{
  display:flex; justify-content:space-between; align-items:center;
  gap:1rem; flex-wrap:wrap;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.2rem;
}
.footer__links{ display:flex; gap:1rem; }
.footer__links a{ color:var(--muted); }
.footer__links a:hover{ color:var(--text); }

/* RESPONSIVE */
@media (max-width: 900px){
  .hero__grid{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr; }
  .about{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }

  .nav__toggle{ display:inline-flex; }
  .nav__menu{
    display:none;
    position:absolute;
    right:1rem;
    top:64px;
    flex-direction:column;
    background: rgba(18,21,36,.95);
    border: 1px solid rgba(255,255,255,.12);
    padding:.7rem;
    border-radius: 16px;
    width: min(260px, calc(100% - 2rem));
  }
  .nav__menu.is-open{ display:flex; }
}
.section { padding: 64px 0; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 16px; }

.h2 { font-size: 32px; margin: 0 0 8px; }
.sub { opacity: 0.85; margin: 0 0 18px; }

.guide {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 16px;
  margin: 18px 0 18px;
}
.h3 { margin: 0 0 10px; font-size: 18px; }
.guide-list { margin: 0; padding-left: 18px; }

.filters { display: grid; gap: 10px; margin: 14px 0 18px; }
.filter-group { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.filter-label { opacity: 0.8; margin-right: 6px; }

.chip {
  border: 1px solid rgba(255,255,255,0.16);
  background: transparent;
  color: inherit;
  padding: 10px 12px;
  border-radius: 999px;
  cursor: pointer;
}
.chip.is-active { border-color: rgba(255,255,255,0.5); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 980px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cards { grid-template-columns: 1fr; } }

.card {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 16px;
  display: grid;
  gap: 12px;
}
.card-top { display: flex; justify-content: space-between; align-items: center; }
.badge { opacity: 0.85; font-weight: 600; }
.price { font-weight: 700; }

.card-title { margin: 0; font-size: 18px; }
.card-list { margin: 0; padding-left: 18px; opacity: 0.9; }

.btn {
  display: inline-block;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  text-decoration: none;
}
.is-hidden { display: none !important; }
/* =========================
   STARTSEITE / HERO
========================= */

.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: transparent;
}

body {
  position: relative;
  background: #050505;
  color: #ffffff;
}

/* Festes Logo im Hintergrund */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("assets/site-background.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0.34;
  filter: saturate(0.95) contrast(1.02);
  z-index: -2;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.30), rgba(0, 0, 0, 0.58)),
    radial-gradient(circle at center, rgba(255, 122, 0, 0.06), transparent 42%);
  z-index: -1;
  pointer-events: none;
}
/* dunkler Overlay, damit Text gut lesbar bleibt */
/*
.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 122, 0, 0.14), transparent 35%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.92));
  z-index: 1;
}
*/


.home-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 80px;
}

.home-hero .eyebrow {
  margin-bottom: 18px;
  color: #ff8a1f;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.28em;

  line-height: 1;
  letter-spacing: -0.035em;
  text-transform: none;

  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.55));
}

/* MV etwas stärker, aber nicht zu klobig */
.hero-title__mv {
  font-size: clamp(3.1rem, 7vw, 6rem);
  font-weight: 800;

  background: linear-gradient(135deg, #ffffff 0%, #f3f3f3 45%, #ff8a1f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Personal Training eleganter und etwas ruhiger */
.hero-title__text {
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  font-weight: 600;

  background: linear-gradient(135deg, #ffffff 0%, #d9d9d9 65%, #ff8a1f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


.home-hero__subtitle {
  max-width: 720px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
}

.home-hero__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 56px auto 0;
}

.hero-choice {
  position: relative;
  min-height: 155px;
  padding: 28px 24px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  text-align: left;
  text-decoration: none;
  color: #ffffff;

  border: 1px solid rgba(255, 138, 31, 0.28);
  border-radius: 24px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.10),
      rgba(255, 255, 255, 0.03)
    ),
    rgba(10, 10, 10, 0.48);

  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  overflow: hidden;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}
.hero-choice::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 22px;
  height: 2px;

  background: linear-gradient(
    90deg,
    rgba(255, 138, 31, 0.95),
    rgba(255, 138, 31, 0.18),
    transparent
  );

  border-radius: 999px;
}
.hero-choice::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;

  background: linear-gradient(
    135deg,
    rgba(255, 138, 31, 0.75),
    rgba(255, 255, 255, 0.16),
    rgba(255, 138, 31, 0.18),
    rgba(255, 138, 31, 0.55)
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 0.65;
  pointer-events: none;
}
.hero-choice:hover {
  transform: translateY(-6px);

 border-color: rgba(255, 138, 31, 0.62);

  background:
    linear-gradient(
      145deg,
      rgba(255, 138, 31, 0.16),
      rgba(255, 255, 255, 0.04)
    ),
    rgba(12, 12, 12, 0.62);

  box-shadow:
  0 30px 90px rgba(0, 0, 0, 0.55),
  0 0 32px rgba(255, 138, 31, 0.14),
  inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-choice span {
  position: relative;
  z-index: 1;

  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.hero-choice small {
  position: relative;
  z-index: 1;

  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.45;
}

/* Handy-Ansicht */
@media (max-width: 800px) {
  .home-hero__content {
    padding-top: 100px;
  }

  .home-hero__cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-top: 42px;
  }

  .hero-choice {
    min-height: 120px;
  }

  .home-hero::before {
    background-size: 115vw;
    opacity: 0.12;
  }
}
/* =========================
   HEADER CTA
========================= */

.nav__toggle {
  display: none;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 11px 18px;
  border-radius: 999px;

  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.01em;

  border: 1px solid rgba(255, 138, 31, 0.55);

  background:
    linear-gradient(
      135deg,
      rgba(255, 138, 31, 0.82),
      rgba(180, 82, 10, 0.72)
    );

  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.38),
    0 0 24px rgba(255, 138, 31, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);

  border-color: rgba(255, 190, 120, 0.75);

  background:
    linear-gradient(
      135deg,
      rgba(255, 154, 49, 0.95),
      rgba(198, 91, 12, 0.86)
    );

  box-shadow:
    0 16px 44px rgba(0, 0, 0, 0.46),
    0 0 34px rgba(255, 138, 31, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
/* =========================
   ANGEBOT ÜBERSICHT
========================= */

.offer-section {
  position: relative;
  padding-top: 110px;
  padding-bottom: 110px;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.section-head {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-head .eyebrow {
  margin-bottom: 12px;
  color: #ff8a1f;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.section-head .sub {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
  line-height: 1.7;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.offer-card {
  position: relative;
  min-height: 280px;
  padding: 26px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  text-decoration: none;
  color: #ffffff;

  border-radius: 26px;
  border: 1px solid rgba(255, 138, 31, 0.28);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(12, 12, 12, 0.52);

  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  overflow: hidden;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  padding: 1px;

  background: linear-gradient(
    135deg,
    rgba(255, 138, 31, 0.72),
    rgba(255, 255, 255, 0.12),
    rgba(255, 138, 31, 0.16),
    rgba(255, 138, 31, 0.48)
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 0.55;
  pointer-events: none;
}

.offer-card::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 24px;
  height: 2px;

  background: linear-gradient(
    90deg,
    rgba(255, 138, 31, 0.9),
    rgba(255, 138, 31, 0.18),
    transparent
  );

  border-radius: 999px;
}

.offer-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 138, 31, 0.62);

  background:
    linear-gradient(
      145deg,
      rgba(255, 138, 31, 0.14),
      rgba(255, 255, 255, 0.035)
    ),
    rgba(14, 14, 14, 0.64);

  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.55),
    0 0 34px rgba(255, 138, 31, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.offer-card__number {
  position: absolute;
  top: 34px;
  left: 26px;

  color: rgba(255, 138, 31, 0.85);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.offer-card h3 {
  position: relative;
  z-index: 1;

  margin: 0;
  font-size: 1.45rem;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.offer-card p {
  position: relative;
  z-index: 1;

  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Tablet */
@media (max-width: 1050px) {
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Handy */
@media (max-width: 650px) {
  .offer-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-card {
    min-height: 220px;
  }
}
/* Angebot: 2x2 Anordnung */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.offer-card {
  min-height: 320px;
  padding: 34px;
}
/* Angebot-Karten: Text mittiger und hochwertiger */
.offer-card {
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 340px;
  padding: 42px 36px;
}

/* Nummer oben mittig */
.offer-card__number {
  top: 34px;
  left: 50%;
  transform: translateX(-50%);

  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: rgba(255, 138, 31, 0.9);
}

/* Titel größer und mittig */
.offer-card h3 {
  max-width: 360px;
  margin: 0 auto;

  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
  line-height: 1.05;
  font-weight: 750;
  letter-spacing: -0.045em;
}

/* Beschreibung etwas größer, aber dezent */
.offer-card p {
  max-width: 380px;
  margin: 18px auto 0;

  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

/* orange Linie oben etwas edler mittig */
.offer-card::after {
  left: 50%;
  right: auto;
  top: 76px;

  width: 120px;
  transform: translateX(-50%);

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 138, 31, 0.9),
    transparent
  );
}
.offer-section {
  background: rgba(5, 5, 5, 0.20);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
/* =========================
   PAKET-SEKTIONEN
========================= */

.package-section {
  position: relative;
  padding-top: 110px;
  padding-bottom: 120px;
  background: rgba(5, 5, 5, 0.24);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  scroll-margin-top: 90px;
}

.section-head--center {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 54px;
  text-align: center;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.package-card {
  position: relative;
  min-height: 430px;
  padding: 34px 30px;

  display: flex;
  flex-direction: column;

  color: #ffffff;

  border-radius: 28px;
  border: 1px solid rgba(255, 138, 31, 0.24);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02)
    ),
    rgba(12, 12, 12, 0.36);

  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  overflow: hidden;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.package-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 1px;

  background: linear-gradient(
    135deg,
    rgba(255, 138, 31, 0.68),
    rgba(255, 255, 255, 0.12),
    rgba(255, 138, 31, 0.12),
    rgba(255, 138, 31, 0.46)
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 0.55;
  pointer-events: none;
}

.package-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 138, 31, 0.58);

  background:
    linear-gradient(
      145deg,
      rgba(255, 138, 31, 0.12),
      rgba(255, 255, 255, 0.03)
    ),
    rgba(14, 14, 14, 0.48);

  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.55),
    0 0 34px rgba(255, 138, 31, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.package-card--highlight {
  border-color: rgba(255, 138, 31, 0.46);
  background:
    linear-gradient(
      145deg,
      rgba(255, 138, 31, 0.15),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(12, 12, 12, 0.42);
}

.package-card__tag {
  margin-bottom: 22px;

  color: rgba(255, 138, 31, 0.92);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.package-card h3 {
  margin: 0;

  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.package-card p {
  margin: 18px 0 0;

  color: rgba(255, 255, 255, 0.70);
  font-size: 1rem;
  line-height: 1.65;
}

.package-card ul {
  margin: 26px 0 0;
  padding: 0;

  list-style: none;
}

.package-card li {
  position: relative;
  margin-bottom: 13px;
  padding-left: 24px;

  color: rgba(255, 255, 255, 0.76);
  font-size: 0.96rem;
  line-height: 1.45;
}

.package-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;

  color: #ff8a1f;
  font-weight: 800;
}

.package-link {
  margin-top: auto;
  padding-top: 28px;

  display: inline-flex;
  align-items: center;

  color: #ff9a31;
  font-weight: 800;
  text-decoration: none;
}

.package-link::after {
  content: "→";
  margin-left: 10px;
  transition: transform 0.2s ease;
}

.package-link:hover::after {
  transform: translateX(4px);
}

/* Tablet */
@media (max-width: 1050px) {
  .package-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
  }

  .package-card {
    min-height: auto;
  }
}

/* Handy */
@media (max-width: 650px) {
  .package-section {
    padding-top: 80px;
    padding-bottom: 90px;
  }

  .package-card {
    padding: 30px 24px;
  }
}
.section-head--center {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head--center .sub {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
/* =========================
   DETAILBEREICH: ERNÄHRUNGS-CHECK
========================= */

.detail-section {
  position: relative;
  padding-top: 120px;
  padding-bottom: 130px;
  background: rgba(5, 5, 5, 0.22);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  scroll-margin-top: 90px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
  gap: 48px;
  align-items: start;
}

.detail-content {
  max-width: 820px;
}

.detail-content h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.detail-lead {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.12rem;
  line-height: 1.75;
}

.detail-block {
  margin-top: 42px;
}

.detail-block h3 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.detail-block p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.7;
}

.detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.detail-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff8a1f;
  font-weight: 900;
}

.detail-price-card {
  position: sticky;
  top: 110px;

  padding: 34px 30px;
  border-radius: 28px;
  border: 1px solid rgba(255, 138, 31, 0.34);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(12, 12, 12, 0.42);

  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.48),
    0 0 34px rgba(255, 138, 31, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.price-label {
  display: inline-flex;
  margin-bottom: 16px;

  color: rgba(255, 138, 31, 0.92);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.detail-price {
  color: #ffffff;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.detail-price-card p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.6;
}

.detail-price-card ul {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.detail-price-card li {
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.75);
}

.detail-cta {
  width: 100%;
  margin-top: 28px;
}

/* Tablet & Handy */
@media (max-width: 950px) {
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-price-card {
    position: relative;
    top: auto;
  }
}
.package-card {
  text-decoration: none;
  cursor: pointer;
}

.package-card:visited {
  color: #ffffff;
}

.package-card:hover h3,
.package-card:hover p,
.package-card:hover li {
  color: inherit;
}
/* SEITLICHE SCHNELLNAVIGATION */
.quick-nav {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quick-nav a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: #f97316;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid rgba(249, 115, 22, 0.35);
  border-radius: 999px;
  padding: 7px 10px;
  backdrop-filter: blur(10px);
  transition: 0.2s ease;
}

.quick-nav a span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #f97316;
  box-shadow: 0 0 12px rgba(249, 115, 22, 0.75);
  flex-shrink: 0;
}

.quick-nav a:hover {
  color: #ffffff;
  border-color: #f97316;
  transform: translateX(-4px);
  background: rgba(249, 115, 22, 0.18);
}

/* Auf Handy ausblenden, damit es nicht stört */
@media (max-width: 900px) {
  .quick-nav {
    display: none;
  }
}
/* ERFOLGE & TRANSFORMATIONEN */
.results-section {
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.12), transparent 34%),
    #080808;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.result-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  transition: 0.25s ease;
}

.result-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.45);
}

.result-card__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.result-card__images div {
  position: relative;
  min-height: 260px;
  background: #111;
  overflow: hidden;
}

.result-card__images span {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.7);
  color: #f97316;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  padding: 6px 10px;
}

.result-card__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.92;
}

.result-card__content {
  padding: 24px;
}

.result-card__tag {
  color: #f97316;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.result-card__content h3 {
  margin-bottom: 12px;
}

.result-card__content p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.result-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.result-stats span {
  border: 1px solid rgba(249, 115, 22, 0.35);
  color: #ffffff;
  background: rgba(249, 115, 22, 0.12);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.78rem;
  font-weight: 700;
}

.results-note {
  margin: 42px auto 0;
  max-width: 760px;
  text-align: center;
}

.results-note p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 20px;
}

@media (max-width: 1100px) {
  .results-grid {
    grid-template-columns: 1fr;
  }

  .result-card__images div {
    min-height: 340px;
  }
}

@media (max-width: 650px) {
  .result-card__images div {
    min-height: 220px;
  }

  .result-card__content {
    padding: 20px;
  }
}
/* EMPFEHLUNGSPROGRAMM */
.referral-section {
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.13), transparent 34%),
    #0a0a0a;
}

.referral-layout {
  display: grid;
  grid-template-columns: 1.7fr 0.8fr;
  gap: 28px;
  margin-top: 42px;
  align-items: start;
}

.referral-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.referral-step {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  padding: 24px;
  transition: 0.25s ease;
}

.referral-step:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 115, 22, 0.45);
}

.referral-step span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #f97316;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.35);
  font-weight: 900;
  margin-bottom: 18px;
}

.referral-step h3 {
  margin-bottom: 10px;
}

.referral-step p,
.referral-info p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.referral-info {
  margin-top: 22px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 26px;
}

.referral-info h3 {
  margin-bottom: 16px;
}

.referral-card {
  position: sticky;
  top: 110px;
  background:
    linear-gradient(180deg, rgba(249, 115, 22, 0.18), rgba(255, 255, 255, 0.04)),
    #111;
  border: 1px solid rgba(249, 115, 22, 0.35);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.referral-card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  margin: 14px 0 18px;
}

.referral-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.referral-card li {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.referral-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f97316;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .referral-layout {
    grid-template-columns: 1fr;
  }

  .referral-card {
    position: static;
  }

  .referral-steps {
    grid-template-columns: 1fr;
  }
}
/* ÜBER MICH */
.about-section {
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.13), transparent 34%),
    #080808;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 42px;
  align-items: start;
}

.about-content {
  max-width: 860px;
}

.about-credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 34px 0 24px;
}

.credential-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  padding: 26px;
  transition: 0.25s ease;
}

.credential-card:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 115, 22, 0.45);
}

.credential-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #f97316;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.35);
  font-weight: 900;
  margin-bottom: 18px;
}

.credential-card h3 {
  margin-bottom: 14px;
}

.credential-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.credential-card li {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.credential-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f97316;
  font-weight: 900;
}

.about-text-block {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 28px;
  margin-bottom: 28px;
}

.about-text-block h3 {
  margin-bottom: 14px;
}

.about-text-block p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin-bottom: 14px;
}

.about-text-block p:last-child {
  margin-bottom: 0;
}

.about-profile-card {
  position: sticky;
  top: 110px;
  background:
    linear-gradient(180deg, rgba(249, 115, 22, 0.18), rgba(255, 255, 255, 0.04)),
    #111;
  border: 1px solid rgba(249, 115, 22, 0.35);
  border-radius: 30px;
  padding: 26px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.about-profile-card__image {
  min-height: 320px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.45), transparent 34%),
    linear-gradient(145deg, #050505, #171717);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-profile-card__image span {
  color: #f97316;
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.about-profile-card__content {
  margin-top: 22px;
}

.about-profile-card__content h3 {
  margin-bottom: 10px;
}

.about-profile-card__content p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.about-tags span {
  border: 1px solid rgba(249, 115, 22, 0.35);
  color: #ffffff;
  background: rgba(249, 115, 22, 0.12);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.78rem;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-profile-card {
    position: static;
  }
}

@media (max-width: 750px) {
  .about-credentials {
    grid-template-columns: 1fr;
  }

  .about-profile-card__image {
    min-height: 240px;
  }
}
/* KONTAKT / ANFRAGEPROZESS */
.contact-section {
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.12), transparent 34%),
    #080808;
}

.contact-content {
  max-width: 760px;
}

.contact-process {
  margin: 30px 0;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 26px;
}

.contact-process h3 {
  margin-bottom: 18px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-grid div {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 20px;
  padding: 18px;
}

.process-grid span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #f97316;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.35);
  font-weight: 900;
  margin-bottom: 12px;
}

.process-grid h4 {
  margin-bottom: 8px;
}

.process-grid p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
  font-size: 0.92rem;
}

/* Damit ganze Preis-/Anfragekarten klickbar wirken */
.detail-price-card[data-offer],
.referral-card[data-offer] {
  cursor: pointer;
}

.detail-price-card[data-offer]:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.65);
}

#selectedOffer {
  border-color: rgba(249, 115, 22, 0.35);
}

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}
#selectedPrice {
  border-color: rgba(249, 115, 22, 0.35);
  color: #f97316;
  font-weight: 800;
  cursor: default;
}

#selectedPrice::placeholder {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}
.form-hint--success {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  color: #ffffff;
  background: rgba(255, 138, 31, 0.14);
  border: 1px solid rgba(255, 138, 31, 0.45);
}

.form-hint--error {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  color: #ffffff;
  background: rgba(255, 60, 60, 0.14);
  border: 1px solid rgba(255, 60, 60, 0.45);
}
.form-hint--success,
.form-hint--error,
.form-hint--loading {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  line-height: 1.5;
}

.form-hint--success {
  color: #ffffff;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.45);
}

.form-hint--error {
  color: #ffffff;
  background: rgba(239, 68, 68, 0.14);
  border: 1px solid rgba(239, 68, 68, 0.45);
}

.form-hint--loading {
  color: #ffffff;
  background: rgba(249, 115, 22, 0.14);
  border: 1px solid rgba(249, 115, 22, 0.45);
}

.form button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
.form-hint--success,
.form-hint--error,
.form-hint--loading {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  line-height: 1.5;
}

.form-hint--success {
  color: #ffffff;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.45);
}

.form-hint--error {
  color: #ffffff;
  background: rgba(239, 68, 68, 0.14);
  border: 1px solid rgba(239, 68, 68, 0.45);
}

.form-hint--loading {
  color: #ffffff;
  background: rgba(249, 115, 22, 0.14);
  border: 1px solid rgba(249, 115, 22, 0.45);
}

.form button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
/* Kontaktbereich finaler Feinschliff */
.contact-trust-box {
  margin: 26px 0;
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(249, 115, 22, 0.10), rgba(255, 255, 255, 0.035)),
    rgba(10, 10, 10, 0.45);
  border: 1px solid rgba(249, 115, 22, 0.28);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.contact-trust-box h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 1.2rem;
}

.contact-trust-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-trust-box li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

.contact-trust-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #f97316;
  font-weight: 900;
}

.form-intro {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.form-intro span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #f97316;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-intro h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1.45rem;
  line-height: 1.15;
}

.form-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.6;
  font-size: 0.95rem;
}

.form-hint--success,
.form-hint--error,
.form-hint--loading {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  line-height: 1.5;
}

.form-hint--success {
  color: #ffffff;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.45);
}

.form-hint--error {
  color: #ffffff;
  background: rgba(239, 68, 68, 0.14);
  border: 1px solid rgba(239, 68, 68, 0.45);
}

.form-hint--loading {
  color: #ffffff;
  background: rgba(249, 115, 22, 0.14);
  border: 1px solid rgba(249, 115, 22, 0.45);
}

.form button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
/* =========================
   BUCH-SEKTION
========================= */

.book-section {
  position: relative;
  padding-top: 110px;
  padding-bottom: 120px;
  background: rgba(5, 5, 5, 0.20);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  scroll-margin-top: 90px;
}

.book-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: center;
}

.book-content h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.book-subtitle {
  margin: 10px 0 24px;
  color: #f97316;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.book-highlights {
  display: grid;
  gap: 14px;
  margin: 32px 0;
}

.book-highlights div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.book-highlights span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #f97316;
  font-weight: 900;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.28);
}

.book-highlights p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.book-order-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
  padding: 24px;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(249, 115, 22, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(10, 10, 10, 0.52);
  border: 1px solid rgba(249, 115, 22, 0.32);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.book-order-box .detail-price {
  margin-top: 4px;
}

.book-order-box p {
  margin: 8px 0 0;
  max-width: 440px;
  color: rgba(255, 255, 255, 0.68);
}

.book-card {
  padding: 24px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(12, 12, 12, 0.62);
  border: 1px solid rgba(255, 138, 31, 0.28);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.50),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.book-cover {
  min-height: 520px;
  padding: 34px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 70% 15%, rgba(249, 115, 22, 0.34), transparent 34%),
    linear-gradient(155deg, #111111 0%, #050505 58%, #241006 100%);
  border: 1px solid rgba(249, 115, 22, 0.34);
}

.book-cover::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 18px;
  border: 1px solid rgba(249, 115, 22, 0.28);
  pointer-events: none;
}

.book-cover__top {
  color: #f97316;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.book-cover h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.book-cover p {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  color: #f97316;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.25;
}

.book-cover__author {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.book-card__info {
  padding: 24px 4px 4px;
}

.book-card__info h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1.35rem;
}

.book-card__info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.book-card__info ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.book-card__info li {
  padding: 7px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

@media (max-width: 900px) {
  .book-layout {
    grid-template-columns: 1fr;
  }

  .book-order-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .book-cover {
    min-height: 440px;
  }
}
/* =========================
   BUCH MINI-SHOP FINALER FEINSCHLIFF
========================= */

.book-shop-section {
  position: relative;
  overflow: hidden;
}

.book-shop-section::before {
  content: "";
  position: absolute;
  top: 8%;
  right: -12%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.10);
  filter: blur(20px);
  pointer-events: none;
}

.book-shop-section::after {
  content: "";
  position: absolute;
  left: -10%;
  bottom: 10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.06);
  filter: blur(18px);
  pointer-events: none;
}

.book-shop-layout {
  position: relative;
  z-index: 1;
}

.book-shop-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 34px;
}

.book-shop-badges span {
  padding: 9px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.80);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(249, 115, 22, 0.22);
  font-size: 0.86rem;
  font-weight: 700;
}

.book-shop-features article {
  min-height: 220px;
}

.book-shop-features article h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1.12rem;
  line-height: 1.2;
}

.book-shop-features article span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 14px;
  color: #f97316;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.28);
  font-weight: 950;
}

.book-product-card {
  position: relative;
}

.book-product-card::before {
  content: "Mini-Shop";
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 3;
  padding: 7px 11px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(249, 115, 22, 0.18);
  border: 1px solid rgba(249, 115, 22, 0.35);
  backdrop-filter: blur(8px);
}

.book-buy-button {
  text-align: center;
}

.book-buy-button::after {
  content: " →";
}

.book-product-smallprint {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.50);
  font-size: 0.82rem;
  line-height: 1.5;
  text-align: center;
}

.book-cover-pro {
  transform: perspective(1100px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.book-product-card:hover .book-cover-pro {
  transform: perspective(1100px) rotateY(0deg) rotateX(0deg) translateY(-4px);
  box-shadow: 0 28px 80px rgba(249, 115, 22, 0.12);
}

@media (max-width: 980px) {
  .book-cover-pro {
    transform: none;
  }

  .book-product-card:hover .book-cover-pro {
    transform: translateY(-4px);
  }
}
/* =========================
   BUCH MINI-SHOP FIX / FINAL
========================= */

.book-shop-section {
  position: relative;
  overflow: hidden;
  padding-top: 110px;
  padding-bottom: 120px;
  background: rgba(5, 5, 5, 0.22);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  scroll-margin-top: 90px;
}

.book-shop-section::before {
  content: "";
  position: absolute;
  top: 8%;
  right: -12%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.10);
  filter: blur(20px);
  pointer-events: none;
}

.book-shop-section::after {
  content: "";
  position: absolute;
  left: -10%;
  bottom: 10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.06);
  filter: blur(18px);
  pointer-events: none;
}

.book-shop-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 52px;
  align-items: center;
}

.book-shop-content h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.book-shop-subtitle {
  margin: 10px 0 24px;
  color: #f97316;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 850;
  letter-spacing: -0.025em;
}

.book-shop-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 34px;
}

.book-shop-badges span {
  padding: 9px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.80);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(249, 115, 22, 0.22);
  font-size: 0.86rem;
  font-weight: 700;
}

.book-shop-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 34px 0;
}

.book-shop-features article {
  min-height: 220px;
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(10, 10, 10, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
}

.book-shop-features article > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 14px;
  color: #f97316;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.28);
  font-weight: 950;
}

.book-shop-features article h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1.12rem;
  line-height: 1.2;
}

.book-shop-features article p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  font-size: 0.95rem;
}

.book-shop-note {
  margin-top: 30px;
  padding: 26px;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(249, 115, 22, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(10, 10, 10, 0.52);
  border: 1px solid rgba(249, 115, 22, 0.30);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.book-shop-note h3 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 1.25rem;
}

.book-shop-note ol {
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.78);
}

.book-shop-note li {
  margin-bottom: 9px;
  line-height: 1.5;
}

.book-shop-note p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Rechte Produktkarte */
.book-product-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.025)),
    rgba(12, 12, 12, 0.68);
  border: 1px solid rgba(255, 138, 31, 0.30);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.56),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.book-product-card::before {
  content: "Mini-Shop";
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 3;
  padding: 7px 11px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(249, 115, 22, 0.18);
  border: 1px solid rgba(249, 115, 22, 0.35);
  backdrop-filter: blur(8px);
}

.book-cover-pro {
  min-height: 520px;
  margin: 24px;
  padding: 32px;
  border-radius: 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 12%, rgba(249, 115, 22, 0.42), transparent 34%),
    radial-gradient(circle at 18% 88%, rgba(249, 115, 22, 0.18), transparent 38%),
    linear-gradient(155deg, #121212 0%, #050505 56%, #251006 100%);
  border: 1px solid rgba(249, 115, 22, 0.38);
  transform: perspective(1100px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.book-product-card:hover .book-cover-pro {
  transform: perspective(1100px) rotateY(0deg) rotateX(0deg) translateY(-4px);
  box-shadow: 0 28px 80px rgba(249, 115, 22, 0.12);
}

.book-cover-pro::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 20px;
  border: 1px solid rgba(249, 115, 22, 0.28);
  pointer-events: none;
}

.book-cover-pro::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -60px;
  bottom: -60px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.12);
  filter: blur(4px);
}

.book-cover-pro__badge {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  background: rgba(249, 115, 22, 0.20);
  border: 1px solid rgba(249, 115, 22, 0.38);
}

.book-cover-pro__title {
  position: relative;
  z-index: 1;
}

.book-cover-pro__title span {
  display: inline-flex;
  margin-bottom: 18px;
  color: #f97316;
  font-size: 1.15rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.book-cover-pro h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.1rem, 4vw, 3.45rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.book-cover-pro p {
  margin: 20px 0 0;
  color: #f97316;
  font-size: 1.25rem;
  font-weight: 850;
  line-height: 1.25;
}

.book-cover-pro__author {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 750;
}

.book-product-info {
  padding: 0 28px 30px;
}

.book-product-price {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin: 6px 0 18px;
}

.book-product-price span {
  color: #ffffff;
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.book-product-price small {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
}

.book-product-info ul {
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
}

.book-product-info li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.5;
}

.book-product-info li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #f97316;
  font-weight: 950;
}

.book-buy-button {
  width: 100%;
  min-height: 52px;
  font-size: 1rem;
  text-align: center;
}

.book-buy-button::after {
  content: " →";
}

.book-question-link {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.64);
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.book-question-link:hover {
  color: #ffffff;
}

.book-product-smallprint {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.50);
  font-size: 0.82rem;
  line-height: 1.5;
  text-align: center;
}

/* Responsive */
@media (max-width: 980px) {
  .book-shop-layout {
    grid-template-columns: 1fr;
  }

  .book-shop-features {
    grid-template-columns: 1fr;
  }

  .book-cover-pro {
    min-height: 440px;
    transform: none;
  }

  .book-product-card:hover .book-cover-pro {
    transform: translateY(-4px);
  }
}

@media (max-width: 620px) {
  .book-shop-section {
    padding-top: 80px;
    padding-bottom: 90px;
  }

  .book-cover-pro {
    margin: 16px;
    padding: 26px;
  }

  .book-product-info {
    padding: 0 22px 26px;
  }

  .book-product-price span {
    font-size: 2.55rem;
  }
}
/* Eigenes Buchcover im Mini-Shop */
.book-cover-pro {
  min-height: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.book-cover-pro__image-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
}

.book-cover-pro__image {
  width: 100%;
  max-width: 330px;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.50),
    0 0 28px rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.10);
}
/* =========================
   EINHEITLICHE SEKTIONSTRANSPARENZ
========================= */

.about-section,
.book-shop-section,
.offer-section,
.package-section,
.detail-section,
.contact-section,
.results-section,
.referral-section,
.testimonial-section,
.success-section {
  background: rgba(8, 8, 8, 0.18) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.offer-card,
.package-card,
.detail-price-card,
.book-product-card,
.about-profile-card,
.contact-trust-box,
.form.card,
.credential-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(10, 10, 10, 0.34) !important;
}
/* =========================
   ÜBER-MICH BILD
========================= */

.about-profile-card__image--photo {
  position: relative;
  min-height: 360px;
  padding: 0;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.32), transparent 36%),
    rgba(5, 5, 5, 0.55);
}

.about-profile-card__image--photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.04) saturate(0.95);
}

.about-profile-card__image--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.45)),
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.16), transparent 42%);
  pointer-events: none;
}
/* Ernährungskarten kompakter */
.nutrition-section .package-card {
  min-height: 300px;
  justify-content: flex-start;
}

.nutrition-section .package-card h3 {
  font-size: clamp(1.9rem, 2.8vw, 2.7rem);
  margin-bottom: 10px;
}

.nutrition-section .package-card ul {
  margin-top: 24px;
}

.nutrition-section .package-link {
  margin-top: auto;
}
/* Fix: abgeschnittene Buchstaben in Angebotskarten */
.nutrition-section .package-card {
  overflow: visible;
}

.nutrition-section .package-card h3 {
  line-height: 1.18;
  padding-bottom: 4px;
  overflow: visible;
}
/* Trainingskarten kompakter */
.training-section .package-card {
  min-height: 300px;
  justify-content: flex-start;
  overflow: visible;
}

.training-section .package-card h3 {
  font-size: clamp(1.75rem, 2.5vw, 2.45rem);
  line-height: 1.18;
  margin-bottom: 10px;
  padding-bottom: 4px;
  overflow: visible;
}

.training-section .package-card ul {
  margin-top: 24px;
}

.training-section .package-link {
  margin-top: auto;
}
/* Komplettpaket-Karten kompakter */
.complete-section .package-card {
  min-height: 300px;
  justify-content: flex-start;
  overflow: visible;
}

.complete-section .package-card h3 {
  font-size: clamp(1.65rem, 2.35vw, 2.35rem);
  line-height: 1.2;
  margin-bottom: 10px;
  padding-bottom: 6px;
  overflow: visible;
}

.complete-section .package-card ul {
  margin-top: 24px;
}

.complete-section .package-link {
  margin-top: auto;
}
/* Firmenangebot-Karten kompakter */
.company-section .package-card {
  min-height: 300px;
  justify-content: flex-start;
  overflow: visible;
}

.company-section .package-card h3 {
  font-size: clamp(1.55rem, 2.25vw, 2.25rem);
  line-height: 1.22;
  margin-bottom: 10px;
  padding-bottom: 6px;
  overflow: visible;
}

.company-section .package-card ul {
  margin-top: 24px;
}

.company-section .package-link {
  margin-top: auto;
}
/* =========================
   FIRMENFITNESS PREISSTRUKTUR
========================= */

.company-pricing-box {
  margin: 46px auto 0;
  padding: 28px;
  max-width: 980px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(249, 115, 22, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(10, 10, 10, 0.42);
  border: 1px solid rgba(249, 115, 22, 0.30);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.company-pricing-box h3 {
  margin: 0 0 22px;
  color: #ffffff;
  text-align: center;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.15;
}

.company-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.company-pricing-grid div {
  padding: 18px 14px;
  border-radius: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.company-pricing-grid span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.company-pricing-grid strong {
  display: block;
  color: #ffffff;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.company-pricing-grid small {
  display: block;
  margin-top: 6px;
  color: #f97316;
  font-weight: 800;
}

.company-pricing-box p {
  margin: 22px auto 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.66);
  text-align: center;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .company-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .company-pricing-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   ERFOLGE & TRANSFORMATIONEN FINAL
========================= */

.results-section {
  position: relative;
  overflow: hidden;
  padding-top: 110px;
  padding-bottom: 120px;
  background: rgba(5, 5, 5, 0.20) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  scroll-margin-top: 90px;
}

.results-section::before {
  content: "";
  position: absolute;
  top: 10%;
  left: -8%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.08);
  filter: blur(18px);
  pointer-events: none;
}

.results-grid--featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 46px;
}

.result-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(10, 10, 10, 0.38) !important;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.result-card:hover {
  transform: translateY(-7px);
  border-color: rgba(249, 115, 22, 0.46);
  box-shadow:
    0 34px 95px rgba(0, 0, 0, 0.46),
    0 0 28px rgba(249, 115, 22, 0.10);
}

.result-card--featured {
  grid-column: span 1;
}

.result-card__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.result-card__images div {
  position: relative;
  min-height: 300px;
  background: #111111;
  overflow: hidden;
}

.result-card__images img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.03) saturate(0.95);
  opacity: 0.95;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.result-card:hover .result-card__images img {
  transform: scale(1.035);
  opacity: 1;
}

.result-card__images span {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 7px 11px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(5, 5, 5, 0.72);
  border: 1px solid rgba(249, 115, 22, 0.34);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.result-card__content {
  padding: 26px;
}

.result-card__tag {
  display: inline-flex;
  margin: 0 0 12px;
  color: #f97316;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.result-card__content h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.result-card__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.65;
  font-size: 0.96rem;
}

.result-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.result-stats span {
  padding: 7px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.30);
  font-size: 0.8rem;
  font-weight: 700;
}

.results-note {
  max-width: 900px;
  margin: 44px auto 0;
  padding: 26px;
  border-radius: 26px;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(249, 115, 22, 0.10), rgba(255, 255, 255, 0.03)),
    rgba(10, 10, 10, 0.36);
  border: 1px solid rgba(249, 115, 22, 0.26);
}

.results-note p {
  margin: 0 auto 20px;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1050px) {
  .results-grid--featured {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .result-card__images div {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .results-section {
    padding-top: 80px;
    padding-bottom: 90px;
  }

  .result-card__images div {
    min-height: 260px;
  }

  .result-card__content {
    padding: 22px;
  }
}
/* =========================
   KUNDENBEWERTUNGEN / FEEDBACK
========================= */

.review-box {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 26px;
  align-items: center;
  max-width: 980px;
  margin: 28px auto 0;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(249, 115, 22, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(10, 10, 10, 0.40);
  border: 1px solid rgba(249, 115, 22, 0.30);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.review-box__content h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1.15;
}

.review-box__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.review-box__actions {
  display: grid;
  gap: 12px;
}

.review-box__actions .nav-cta,
.review-box__actions .btn {
  width: 100%;
  text-align: center;
}

@media (max-width: 820px) {
  .review-box {
    grid-template-columns: 1fr;
  }
}
/* =========================
   EMPFEHLUNGSPROGRAMM FINAL
========================= */

.referral-section {
  position: relative;
  overflow: hidden;
  padding-top: 110px;
  padding-bottom: 120px;
  background: rgba(5, 5, 5, 0.20) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  scroll-margin-top: 90px;
}

.referral-clean-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 32px;
  align-items: stretch;
  margin-top: 48px;
}

.referral-clean-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.referral-clean-steps article {
  min-height: 280px;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(10, 10, 10, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.30);
}

.referral-clean-steps article span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 14px;
  color: #f97316;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.28);
  font-weight: 950;
}

.referral-clean-steps article h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 1.28rem;
  line-height: 1.18;
}

.referral-clean-steps article p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.referral-clean-card {
  padding: 30px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(249, 115, 22, 0.14), rgba(255, 255, 255, 0.035)),
    rgba(10, 10, 10, 0.44);
  border: 1px solid rgba(249, 115, 22, 0.34);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.42),
    0 0 26px rgba(249, 115, 22, 0.08);
}

.referral-clean-card .detail-price {
  margin: 8px 0 12px;
}

.referral-clean-card p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.55;
}

.referral-clean-card ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.referral-clean-card li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.referral-clean-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #f97316;
  font-weight: 950;
}

.referral-clean-card .detail-cta {
  width: 100%;
}

.referral-smallprint {
  max-width: 900px;
  margin: 30px auto 0;
  padding: 18px 22px;
  border-radius: 22px;
  text-align: center;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.referral-smallprint p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.6;
  font-size: 0.9rem;
}

@media (max-width: 1050px) {
  .referral-clean-layout {
    grid-template-columns: 1fr;
  }

  .referral-clean-steps {
    grid-template-columns: 1fr;
  }

  .referral-clean-steps article {
    min-height: auto;
  }
}
/* Empfehlungsprogramm: Ablauf-Karten kompakter */
.referral-clean-layout {
  align-items: start;
}

.referral-clean-steps {
  gap: 14px;
}

.referral-clean-steps article {
  min-height: auto !important;
  padding: 22px 22px 24px;
  border-radius: 22px;
}

.referral-clean-steps article span {
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.referral-clean-steps article h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}

.referral-clean-steps article p {
  font-size: 0.92rem;
  line-height: 1.5;
}

/* Rechte Rabattkarte etwas kompakter */
.referral-clean-card {
  padding: 24px;
  border-radius: 24px;
}

.referral-clean-card .detail-price {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
}

.referral-clean-card li {
  margin-bottom: 9px;
  line-height: 1.4;
}
/* =========================
   UNTERER DIREKTKONTAKT
========================= */

.bottom-call-section {
  padding: 56px 0 80px;
  background: rgba(5, 5, 5, 0.18) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.bottom-call-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
  padding: 30px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(249, 115, 22, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(10, 10, 10, 0.42);
  border: 1px solid rgba(249, 115, 22, 0.30);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

.bottom-call-content h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(1.6rem, 2.7vw, 2.4rem);
  line-height: 1.1;
}

.bottom-call-content p {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.bottom-call-actions {
  display: grid;
  gap: 12px;
}

.bottom-call-actions .nav-cta,
.bottom-call-actions .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

@media (max-width: 820px) {
  .bottom-call-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}
/* =========================
   IMPRESSUM & DATENSCHUTZ
========================= */

.legal-section {
  padding: 80px 0;
  background: rgba(5, 5, 5, 0.18) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  scroll-margin-top: 90px;
}

.legal-layout {
  max-width: 920px;
}

.legal-card {
  padding: 34px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(10, 10, 10, 0.42);
  border: 1px solid rgba(249, 115, 22, 0.22);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

.legal-card h2 {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.1;
}

.legal-card h3 {
  margin: 28px 0 10px;
  color: #ffffff;
  font-size: 1.15rem;
}

.legal-card p,
.legal-card li {
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.7;
}

.legal-card a {
  color: #f97316;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-list {
  margin: 12px 0 0;
  padding-left: 22px;
}
/* =========================
   MOBILE FINAL FIX
========================= */

@media (max-width: 900px) {
  /* Header: CTA direkt anzeigen, keinen grauen Dropdown-Kasten */
  .nav__toggle {
    display: none !important;
  }

  .nav__menu {
    display: flex !important;
    position: static !important;
    width: auto !important;
    flex-direction: row !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
  }

  .nav__menu li {
    margin: 0;
  }

  .nav__menu a.nav-cta {
    color: #ffffff !important;
    background:
      linear-gradient(
        135deg,
        rgba(255, 138, 31, 0.92),
        rgba(180, 82, 10, 0.82)
      ) !important;
    border: 1px solid rgba(255, 138, 31, 0.58) !important;
    box-shadow:
      0 12px 34px rgba(0, 0, 0, 0.38),
      0 0 24px rgba(255, 138, 31, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
    padding: 10px 14px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .header__inner {
    gap: 12px;
  }

  .logo__text {
    display: none;
  }
}

@media (max-width: 700px) {
  /* Angebotskarten: Überschriften nicht abschneiden */
  .offer-card,
  .package-card,
  .detail-price-card,
  .referral-clean-steps article,
  .result-card {
    overflow: visible !important;
  }

  .offer-card h3,
  .package-card h3,
  .detail-content h2,
  .section-head h2 {
    overflow: visible !important;
    line-height: 1.18 !important;
    padding-bottom: 6px;
    word-break: normal;
    hyphens: auto;
  }

  .offer-card h3 {
    font-size: clamp(1.45rem, 8vw, 2.05rem) !important;
  }

  .package-card h3 {
    font-size: clamp(1.45rem, 7vw, 2rem) !important;
  }

  .package-card {
    min-height: auto !important;
    padding: 30px 24px !important;
  }

  .offer-card {
    min-height: auto !important;
    padding: 34px 24px !important;
  }

  .package-card ul,
  .offer-card p {
    margin-top: 18px;
  }
}

@media (max-width: 430px) {
  .nav__menu a.nav-cta {
    font-size: 0.76rem;
    padding: 9px 11px;
  }

  .logo__mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 0.85rem;
  }

  .hero-title__text {
    font-size: clamp(1.75rem, 11vw, 3rem);
  }

  .hero-title__mv {
    font-size: clamp(2.6rem, 14vw, 4.4rem);
  }
}
/* =========================
   MOBILE FINAL FIXES
   ========================= */

@media (max-width: 768px) {

  html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    font-size: 16px;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  section,
  .section {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  /* Überschriften sauber umbrechen */
  h1, h2, h3,
  .section-title,
  .section-head h2,
  .package-card h3,
  .offer-card h3,
  .pricing-card h3 {
    word-break: normal;
    overflow-wrap: anywhere;
    hyphens: auto;
    line-height: 1.15;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 3.2rem);
    line-height: 1.05;
  }

  .section-head h2 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .section-head p {
    font-size: 1rem;
    line-height: 1.55;
  }

  /* Karten weniger klobig auf Mobile */
  .package-card,
  .offer-card,
  .pricing-card,
  .result-card,
  .contact-card,
  .trust-card,
  .referral-card {
    width: 100%;
    max-width: 100%;
    padding: 22px 18px;
    border-radius: 22px;
  }

  .package-grid,
  .offer-grid,
  .pricing-grid,
  .results-grid,
  .contact-grid,
  .referral-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* Button sauber auf Mobile */
  .btn,
  .button,
  .hero-cta,
  .card-btn,
  .contact-btn,
  a.btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
    line-height: 1.25;
  }

  /* Header CTA: grauen Kasten vermeiden */
  .header .btn,
  .nav .btn,
  .navbar .btn,
  .header-cta,
  .nav-cta {
    background: linear-gradient(135deg, #ff7a1a, #ff9f43);
    color: #111;
    border: none;
    box-shadow: none;
    width: auto;
    padding: 10px 14px;
    border-radius: 999px;
  }

  /* Navigation kompakter */
  header,
  .header,
  .navbar {
    max-width: 100%;
    overflow-x: hidden;
  }

  nav,
  .nav {
    max-width: 100%;
  }

  /* Bilder sauber skalieren */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Vorher/Nachher-Bilder */
  .before-after,
  .result-images,
  .transformation-images {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .before-after img,
  .result-images img,
  .transformation-images img {
    width: 100%;
    object-fit: cover;
  }

  /* Kontaktformular mobil angenehmer */
  input,
  textarea,
  select {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
  }

  .contact-form,
  form {
    width: 100%;
    max-width: 100%;
  }

  /* Footer / Telefonnummer unten */
  footer,
  .footer {
    text-align: center;
    padding-left: 18px;
    padding-right: 18px;
  }

  .footer-contact,
  .direct-contact,
  .phone-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}