@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Lato:wght@300;400;700&display=swap');

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

:root {
  --text-hero: clamp(2.25rem, 1.15rem + 5vw, 4rem);
  --text-page-hero: clamp(2rem, 1rem + 3.8vw, 3.35rem);
  --text-hero-lead: clamp(1.0625rem, 0.98rem + 0.45vw, 1.3125rem);
  --text-section: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
  --text-display-section: clamp(1.85rem, 1.3rem + 1.75vw, 2.625rem);
  --text-card-title: clamp(1.0625rem, 1rem + 0.35vw, 1.25rem);
  --primary-color: #1a1a1a;
  --secondary-color: #555;
  --accent-color: #0066cc;
  --accent-light: #e6f0ff;
  --light-gray: #f5f5f5;
  --border-color: #e0e0e0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --newsletter-bg: #eef2f7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

html {
  scroll-behavior: smooth;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--primary-color);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 6px 0;
}

.skip-link:focus {
  left: 0;
  top: 0;
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* ===== HERO-STATS: Portrait + „Das bin ich“ ===== */
.hero-stats-section {
  position: relative;
  background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 38%, #ffffff 100%);
  padding: clamp(48px, 6vw, 72px) clamp(18px, 4vw, 28px) clamp(56px, 7vw, 80px);
}

.hero-stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 102, 204, 0.2) 20%,
    rgba(0, 102, 204, 0.35) 50%,
    rgba(0, 102, 204, 0.2) 80%,
    transparent
  );
  pointer-events: none;
}

.hero-stats-inner {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-stats-layout {
  display: grid;
  gap: clamp(24px, 4vw, 36px);
  grid-template-columns: 1fr;
  grid-template-areas:
    "stats-text"
    "stats-portrait";
}

.hero-stats-text-column {
  grid-area: stats-text;
}

.hero-stats-portrait {
  grid-area: stats-portrait;
}

.hero-stats-layout .hero-stats-portrait {
  width: 100%;
  max-width: none;
  margin: 0;
  min-width: 0;
}

/* Gleiche Karten-Sprache wie .philosophy-grid (weiß, Akzent links, shadow-sm) */
.hero-stats-text-column.hero-stats-bio-text {
  background: #fff;
  border-radius: 4px;
  padding: 25px;
  border: none;
  border-left: 4px solid var(--accent-color);
  box-shadow: var(--shadow-sm);
}

.hero-stats-text-column.hero-stats-bio-text .hero-stats-bio-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.05rem);
  margin: 0 0 0.85rem;
  padding-bottom: 0;
  color: var(--primary-color);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: none;
}

.hero-stats-text-column.hero-stats-bio-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--secondary-color);
  margin: 0 0 1rem;
  max-width: none;
}

.hero-stats-text-column.hero-stats-bio-text p strong {
  color: var(--primary-color);
  font-weight: 700;
}

.hero-stats-text-column.hero-stats-bio-text p:last-of-type {
  margin-bottom: 0;
}

.hero-stats-text-column.hero-stats-bio-text p.hero-stats-bio-quote {
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: var(--secondary-color);
  font-weight: 400;
  background: none;
  border: none;
}

/* Portrait: Rahmen, Fokus auf einer starken Bildachse */
.hero-stats-portrait-frame {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.07),
    0 2px 0 rgba(0, 102, 204, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.9);
  outline: 1px solid rgba(26, 26, 26, 0.05);
  outline-offset: -1px;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.hero-stats-portrait:hover .hero-stats-portrait-frame {
  box-shadow:
    0 12px 36px rgba(0, 102, 204, 0.14),
    0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}

.hero-stats-portrait-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 3/4;
}

@media (min-width: 769px) {
  .hero-stats-layout {
    grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.05fr);
    grid-template-rows: auto;
    grid-template-areas: "stats-portrait stats-text";
    gap: clamp(32px, 5vw, 56px);
    align-items: center;
  }

  .hero-stats-portrait {
    max-width: 420px;
  }

  .hero-stats-text-column {
    align-self: center;
  }
}

@media (max-width: 768px) {
  .hero-stats-layout .hero-stats-portrait {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats-text-column.hero-stats-bio-text {
    text-align: left;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats-text-column.hero-stats-bio-text .hero-stats-bio-heading {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-stats-portrait:hover .hero-stats-portrait-frame {
    transform: none;
  }
}

/* ===== PHILOSOPHY (6 Kacheln): Anbindung an Hero-Stats ===== */
.philosophy-section--after-hero {
  background: var(--light-gray);
  padding: clamp(36px, 4vw, 48px) clamp(18px, 4vw, 28px) clamp(22px, 2.5vw, 30px);
}

.philosophy-section--after-hero .philosophy-container {
  max-width: 1240px;
  margin: 0 auto;
}

.philosophy-widget {
  position: relative;
}

/* Hinweis nur im Karussell-Modus sichtbar (siehe max-width-Regel unten) */
.philosophy-swipe-hint {
  display: none;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--secondary-color);
  opacity: 0.65;
  margin: 0 0 10px;
}

.philosophy-intro {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.45;
  text-align: center;
  margin: 0 auto clamp(18px, 2.5vw, 26px);
  max-width: 36rem;
}

.philosophy-section--after-hero .philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  text-align: left;
  align-items: stretch;
}

.philosophy-section--after-hero .philosophy-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.15rem 1.1rem 1.15rem 1rem;
  background: #fff;
  border-left: 4px solid var(--accent-color);
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 601px) and (hover: hover) and (pointer: fine) {
  .philosophy-section--after-hero .philosophy-card {
    transition:
      transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.28s ease,
      border-left-width 0.22s ease,
      border-left-color 0.22s ease;
    will-change: transform;
  }

  .philosophy-section--after-hero .philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
    border-left-width: 6px;
    border-left-color: #0052a3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .philosophy-section--after-hero .philosophy-card {
    transition: none;
    will-change: auto;
  }

  .philosophy-section--after-hero .philosophy-card:hover {
    transform: none;
  }
}

.philosophy-section--after-hero .philosophy-card p {
  margin: 0;
  flex: 1;
  color: var(--secondary-color);
  line-height: 1.55;
  font-size: 0.9375rem;
}

.philosophy-section--after-hero .philosophy-card strong {
  color: var(--primary-color);
}

@media (min-width: 601px) {
  .philosophy-section--after-hero .philosophy-grid {
    grid-auto-rows: 1fr;
  }
}

@media (min-width: 900px) {
  .philosophy-section--after-hero .philosophy-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Smartphone: horizontales Scroll-Snap (native, ohne JS) */
@media (max-width: 600px) {
  .philosophy-swipe-hint {
    display: block;
  }

  .philosophy-section--after-hero .philosophy-widget {
    margin-left: calc(-1 * clamp(12px, 4vw, 20px));
    margin-right: calc(-1 * clamp(12px, 4vw, 20px));
  }

  .philosophy-section--after-hero .philosophy-grid {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: max(16px, calc(50vw - min(42vw, 168px)));
    padding: 4px max(16px, calc(50vw - min(42vw, 168px))) 14px;
    margin: 0;
    text-align: left;
    scrollbar-width: none;
    touch-action: pan-x;
  }

  .philosophy-section--after-hero .philosophy-grid::-webkit-scrollbar {
    display: none;
  }

  .philosophy-section--after-hero .philosophy-card {
    flex: 0 0 min(84vw, 320px);
    max-width: min(84vw, 320px);
    scroll-snap-align: center;
    min-height: 0;
  }

  .philosophy-section--after-hero .philosophy-card:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
    border-left-width: 4px;
    border-left-color: var(--accent-color);
  }
}

/* Road to 100kg — ruhig, vertrauenswürdig, conversion-orientiert (kein Neo-Brutalismus) */
.program-product-section {
  --sv-radius: 10px;
  position: relative;
  overflow-x: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 55%, #ffffff 100%);
  text-align: center;
  padding: clamp(28px, 4vw, 48px) clamp(16px, 4vw, 24px) clamp(40px, 5vw, 56px);
}

.program-product-inner {
  max-width: 980px;
  margin: 0 auto;
}

.program-product-section .program-product-heading {
  margin-top: 0;
}

.program-product-eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(0.68rem, 1.25vw, 0.75rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #334155;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  margin: 0 auto 0.85rem;
  box-shadow: var(--shadow-sm);
}

.program-product-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 4.5vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--primary-color);
  margin: 0 auto 0.5rem;
}

.program-product-sub {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--secondary-color);
  line-height: 1.55;
  max-width: 32rem;
  margin: 0 auto 0.7rem;
  font-weight: 400;
}

.program-product-key-facts {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 auto 1rem;
  padding: 0;
}

.program-product-key-facts li {
  font-size: 0.78rem;
  font-weight: 700;
  color: #334155;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 0.32rem 0.62rem;
  line-height: 1.2;
}

.program-product-cta-wrap {
  margin: 0.45rem 0 0.6rem;
}

#bench-program .program-product-cta-wrap .btn.btn-primary {
  display: inline-block;
  min-width: min(100%, 440px);
  padding: 20px 44px !important;
  font-size: 1.18rem !important;
  font-weight: 800 !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%) !important;
  color: #fff !important;
  box-shadow: 0 18px 38px rgba(0, 102, 204, 0.4);
  text-decoration: none;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

@media (min-width: 601px) and (hover: hover) and (pointer: fine) {
  #bench-program .program-product-cta-wrap .btn.btn-primary {
    transition: transform 0.18s ease, box-shadow 0.18s ease;
  }

  #bench-program .program-product-cta-wrap .btn.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 22px 42px rgba(0, 102, 204, 0.45);
  }
}

/* ===== Sanfter Puls am CTA, damit der Klick magnetisch wirkt ===== */
@keyframes programCtaPulse {
  0%   { box-shadow: 0 18px 38px rgba(0, 102, 204, 0.40); }
  50%  { box-shadow: 0 18px 38px rgba(0, 102, 204, 0.55); }
  100% { box-shadow: 0 18px 38px rgba(0, 102, 204, 0.40); }
}

@media (prefers-reduced-motion: no-preference) {
  #bench-program .program-product-cta-wrap .btn.btn-primary {
    animation: programCtaPulse 2.6s ease-in-out infinite;
  }
}

/* ===== STICKY MOBILE CTA (nur Smartphone, fadet nach Scroll rein) ===== */
.mobile-sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: #fff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.1;
    box-shadow: 0 18px 36px rgba(0, 102, 204, 0.42);
    opacity: 0;
    visibility: hidden;
    transform: translateY(140%);
    pointer-events: none;
    transition: opacity 0.32s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.32s, box-shadow 0.18s ease;
  }

  body.sticky-cta-visible .mobile-sticky-cta {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity 0.32s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0s, box-shadow 0.18s ease;
  }

  .mobile-sticky-cta__label {
    flex: 1;
    text-align: left;
  }

  .mobile-sticky-cta__price {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 6px 12px;
    font-weight: 800;
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .mobile-sticky-cta:active {
    transform: translateY(1px) scale(0.99);
    box-shadow: 0 14px 28px rgba(0, 102, 204, 0.45);
  }

  /* Damit Footer-Links nicht hinter dem Button landen */
  body {
    padding-bottom: 84px;
  }

  /* Solange Cookie-Banner sichtbar ist, Sticky ausblenden — keine Kollision */
  body.cookie-banner-active .mobile-sticky-cta {
    display: none;
  }

  body.cookie-banner-active {
    padding-bottom: 0;
  }
}

/* Wenn der User schon im Kauf-Bereich ist, Sticky ausblenden (nicht nötig) */
@media (max-width: 768px) {
  #bench-program:target ~ .mobile-sticky-cta {
    display: none;
  }
}

.program-product-mini-proof {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.45;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .program-product-sub {
    margin-bottom: 0.65rem;
  }

  .program-product-key-facts {
    gap: 6px;
    margin-bottom: 0.85rem;
  }

  .program-product-key-facts li {
    font-size: 0.7rem;
    padding: 0.3rem 0.55rem;
  }

  #bench-program .program-product-cta-wrap .btn.btn-primary {
    min-width: min(100%, 320px);
    font-size: 1.05rem !important;
    padding: 16px 22px !important;
  }

  .program-product-mini-proof {
    font-size: 0.75rem;
  }
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: 70px;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color) 0%, #0052a3 100%);
  width: 0%;
  z-index: 99;
  transition: width 0.1s ease;
  box-shadow: 0 0 10px rgba(0, 102, 204, 0.5);
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--primary-color);
  line-height: 1.65;
  font-size: clamp(15px, 0.9rem + 0.2vw, 17px);
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Innenseiten: dunkler Hero ohne .hero-main-title */
section.hero .hero-content h1:not(.hero-main-title) {
  font-family: 'Poppins', sans-serif;
  font-size: var(--text-page-hero);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin-bottom: 15px;
  color: #fff;
}

section.hero .hero-content > p:not(.hero-subtitle) {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: var(--text-hero-lead);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.125rem, 1rem + 1vw, 1.5rem);
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  line-height: 1.45;
  animation: fadeInUp 0.8s ease forwards 0.2s both;
}

/* ===== HEADER ===== */
header {
  background-color: #fff;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 70px;
  transition: var(--transition);
}

.logo {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition);
  flex-shrink: 0;
}

.logo:hover {
  color: var(--accent-color);
}

/* ===== CART ICON ===== */
.cart-icon {
  position: relative;
}

.cart-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  padding: 8px;
  border-radius: 6px;
}

.cart-icon a:hover {
  color: var(--accent-color);
  background-color: var(--light-gray);
}

.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--accent-color);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.cart-count.active {
  animation: popIn 0.3s ease;
}

@keyframes popIn {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* ===== NAVIGATION ===== */
nav.nav-desktop ul {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

nav.nav-desktop a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Mobile Menu */
nav.nav-mobile {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  width: 100vw;
  background-color: #fff;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  z-index: 99;
  overflow-x: hidden;
  max-width: 100vw;
  padding: 0;
  margin: 0;
}

nav.nav-mobile.active {
  display: block;
  animation: slideDown 0.4s cubic-bezier(0.36, 0, 0.66, 1);
}

nav.nav-mobile ul {
  list-style: none;
  padding: 15px 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

nav.nav-mobile li {
  padding: 0;
  width: 100%;
}

nav.nav-mobile a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.3px;
  display: block;
  padding: 14px 20px;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

nav.nav-mobile a:hover {
  background-color: var(--light-gray);
  color: var(--accent-color);
  padding-left: 25px;
}

.mobile-dropdown {
  position: relative;
}

.dropdown-btn {
  background: none;
  border: none;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  padding: 0;
  width: 100%;
  text-align: left;
  transition: var(--transition);
}

.dropdown-btn:hover {
  color: var(--accent-color);
}

.dropdown-content {
  display: none;
  list-style: none;
  padding: 10px 10px 0 10px;
  margin: 10px 0 0 0;
  flex-direction: column;
}

.mobile-dropdown.open .dropdown-content {
  display: flex !important;
  flex-direction: column;
}

.dropdown-content li a {
  font-size: 14px;
  color: var(--secondary-color);
}

/* Desktop nav styling */
nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav a:hover::after {
  width: 100%;
}

nav a:hover,
nav a.active {
  color: var(--accent-color);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: '▼';
  font-size: 9px;
  margin-left: 6px;
  transition: var(--transition);
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(-180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 220px;
  list-style: none;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  margin-top: 15px;
  overflow: hidden;
  animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
  font-size: 14px;
  border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
  background-color: var(--accent-light);
  color: var(--accent-color);
  border-left-color: var(--accent-color);
  padding-left: 24px;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
  display: block;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--primary-color);
  padding: 12px 16px;
  border-radius: 8px;
  transition: var(--transition);
  flex-shrink: 0;
  z-index: 101;
}

.mobile-menu-toggle:hover {
  background-color: var(--light-gray);
  color: var(--accent-color);
}

/* ===== MAIN CONTENT ===== */
main {
  min-height: calc(100vh - 160px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

main h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--primary-color);
  opacity: 0;
  animation: fadeInDown 0.8s ease forwards;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

main h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--primary-color);
  opacity: 0;
  animation: fadeInLeft 0.8s ease forwards;
  animation-delay: 0.2s;
}

main h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

main p {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.8;
}

main a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

main a:hover {
  text-decoration: underline;
}

main ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

main ul li {
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.8;
}

article {
  border-top: 1px solid var(--border-color);
  padding: 30px 0;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

article:nth-child(2) {
  animation-delay: 0.1s;
}

article:nth-child(3) {
  animation-delay: 0.2s;
}

article:nth-child(4) {
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

article:hover {
  transform: translateX(5px);
}

article h2 {
  margin-top: 0;
  margin-bottom: 10px;
}

article small {
  color: #999;
  font-size: 13px;
}

.faq-item {
  border-left: 4px solid var(--accent-color);
  padding-left: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background-color: var(--light-gray);
  border-radius: 6px;
  border-left: 4px solid var(--accent-color);
  transition: var(--transition);
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInLeft 0.6s ease forwards;
}

.faq-item:nth-child(2) {
  animation-delay: 0.1s;
}

.faq-item:nth-child(3) {
  animation-delay: 0.2s;
}

.faq-item:nth-child(4) {
  animation-delay: 0.3s;
}

.faq-item:nth-child(5) {
  animation-delay: 0.4s;
}

.faq-item:nth-child(6) {
  animation-delay: 0.5s;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.faq-item:hover {
  background-color: var(--accent-light);
  box-shadow: var(--shadow-sm);
  transform: translateX(8px);
  cursor: pointer;
}

.faq-item h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--primary-color);
  transition: var(--transition);
}

.faq-item:hover h3 {
  color: var(--accent-color);
}

/* ---- FAQ-Seite: Hero mit Bild ---- */
.faq-page-main {
  padding-top: 0;
}

.faq-hero {
  position: relative;
  min-height: clamp(220px, 38vw, 420px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(4rem, 10vw, 6.5rem) clamp(16px, 4vw, 2rem);
  margin-bottom: 0;
  overflow: hidden;
}

.faq-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.faq-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.faq-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}

.faq-hero__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #fff;
  margin: 0 0 0.65rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.faq-hero__lead {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  line-height: 1.55;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4);
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #fff;
  margin-top: 80px;
  padding: 60px 20px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section a {
  color: #bbb;
  text-decoration: none;
  transition: var(--transition);
  font-size: 14px;
  display: inline-block;
}

.footer-section a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  color: #999;
  font-size: 13px;
  letter-spacing: 0.3px;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 90vh;
  background: url('../images/hero-bg.png') center 30%/cover fixed no-repeat;
  background-attachment: fixed;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  margin: -60px -20px 0 -20px;
  padding: 80px 40px;
  gap: 60px;
}

.hero::before {
  content: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  animation: fadeInUp 1s ease forwards;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 40px;
}

.hero-buttons-container {
  position: absolute;
  bottom: 120px;
  right: 40px;
  z-index: 10;
  animation: fadeInUp 0.8s ease forwards 0.3s both;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: var(--text-hero);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.05;
  letter-spacing: -0.045em;
  animation: fadeInDown 0.8s ease forwards;
}

.hero-main-title {
  font-family: 'Poppins', sans-serif;
  font-size: var(--text-hero);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.045em;
  animation: fadeInDown 0.8s ease forwards;
}

.hero p:not(.hero-subtitle) {
  font-size: 18px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeInUp 0.8s ease forwards 0.2s both;
  line-height: 1.8;
}

.hero-social-links {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 40px;
  z-index: 2;
  animation: fadeInUp 0.8s ease forwards 0.6s both;
}

.hero-social-links a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.hero-social-links i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.hero-social-links a:hover {
  color: #fff;
  transform: translateY(-3px);
}

.hero-social-links a:hover i {
  transform: scale(1.2);
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease forwards 0.4s both;
  align-items: flex-start;
  width: fit-content;
}

.btn {
  padding: 16px 42px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.5px;
  transform: translateY(0);
  position: relative;
  overflow: hidden;
  text-align: center;
  min-width: fit-content;
}

.btn-primary {
  background-color: var(--accent-color);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
  background-color: #0052a3;
  box-shadow: 0 12px 35px rgba(0, 102, 204, 0.5);
  transform: translateY(-4px) scale(1.02);
}

.btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background-color: #fff;
  color: #1a1a1a;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
}

/* Ripple effect */
.btn {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple-animation 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 60px 20px;
  background-color: var(--light-gray);
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease forwards;
}

.section-header h2 {
  font-size: var(--text-display-section);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 15px;
  animation: fadeInDown 0.8s ease forwards;
}

.section-header p {
  font-size: 16px;
  color: var(--secondary-color);
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease forwards 0.2s both;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  cursor: pointer;
  border-top: 4px solid transparent;
}

.service-card:nth-child(1) { animation-delay: 0s; }
.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--accent-color);
}

.service-icon {
  font-size: 48px;
  margin-bottom: 20px;
  transition: var(--transition);
  display: inline-block;
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotate(5deg);
  color: var(--accent-color);
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--primary-color);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.service-card p {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.8;
}

.service-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: var(--transition);
}

.service-link:hover {
  transform: translateX(5px);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: 80px 20px;
  background-color: #fff;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--light-gray);
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
  opacity: 0;
  animation: slideInLeft 0.6s ease forwards;
  transition: var(--transition);
}

.testimonial-card:nth-child(1) { animation-delay: 0s; }
.testimonial-card:nth-child(2) { animation-delay: 0.1s; }
.testimonial-card:nth-child(3) { animation-delay: 0.2s; }

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.stars {
  color: #ffc107;
  font-size: 14px;
  margin-bottom: 15px;
  letter-spacing: 3px;
}

.testimonial-text {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
}

.testimonial-role {
  color: #999;
  font-size: 13px;
  margin-top: 5px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--accent-color) 0%, #0052a3 100%);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  margin: 80px 0 0 0;
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease forwards;
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  animation: fadeInDown 0.8s ease forwards;
}

.cta-section p {
  font-size: 16px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.95);
  animation: fadeInUp 0.8s ease forwards 0.2s both;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 10;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ===== PARALLAX EFFECT ===== */
[data-parallax] {
  will-change: transform;
}

/* Extra small phones (max-width: 541px) */
/* Small phones (max-width: 600px) */
@media (max-width: 600px) {
  .hero {
    height: 100vh;
    margin: -120px 0 -120px 0;
    padding: 30px 20px;
    background-image: linear-gradient(rgba(26, 26, 26, 0.35), rgba(26, 26, 26, 0.35)), url('../images/hero-bg.png');
    background-position: center center;
    background-size: cover;
    background-attachment: scroll;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    grid-template-columns: 1fr;
    gap: 30px;
    position: relative;
  }

  .hero-content {
    padding: 0;
    text-align: center;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
  }

  .hero-content h1,
  .hero-main-title {
    font-size: clamp(1.85rem, 1.1rem + 4vw, 2.65rem) !important;
    margin-bottom: 15px !important;
    line-height: 1.08 !important;
  }

  .hero-content p:not(.hero-subtitle) {
    font-size: 14px !important;
  }

  .hero-buttons-container {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: fadeInUp 0.8s ease forwards 0.5s both;
    max-width: 90%;
    width: 90%;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }

  .scroll-indicator {
    display: none !important;
  }

  .hero-social-links {
    bottom: 20px;
    gap: 20px;
  }

  .hero-social-links a {
    font-size: 13px;
    gap: 6px;
  }

  .hero-social-links i {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
  }

  .section-header h2 {
    font-size: 24px;
  }

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

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

  .cta-section h2 {
    font-size: 22px;
  }

  .header-container {
    height: 55px;
    padding: 0 15px;
  }

  .logo {
    font-size: 14px;
    letter-spacing: 1px;
  }

  nav.nav-desktop {
    display: none !important;
  }

  nav.nav-desktop ul {
    display: none;
  }

  nav.nav-mobile.active {
    display: block;
  }

  nav.nav-mobile a {
    padding: 14px 20px;
    display: block;
    border-bottom: none;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.3px;
    font-weight: 500;
    transition: all 0.2s ease;
  }

  nav.nav-mobile a:hover {
    background-color: var(--light-gray);
    color: var(--accent-color);
    padding-left: 25px;
  }

  nav.nav-mobile a::after {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
    font-size: 20px;
    padding: 8px 10px;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    background-color: #f9f9f9;
    margin-top: 0;
    margin-left: 0;
    border-radius: 0;
    animation: none;
    max-width: 100%;
    width: 100%;
    display: flex !important;
    flex-direction: column;
    padding: 0;
  }

  .dropdown-content li a {
    padding: 12px 20px 12px 40px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.2px;
  }

  .btn {
    width: 100%;
    min-width: unset;
  }

  main {
    padding: 0 15px 30px 15px;
  }

  main h1 {
    font-size: 28px;
  }

  main h2 {
    font-size: 20px;
  }

  main p {
    font-size: 14px;
  }

  .philosophy-section .philosophy-grid {
    grid-template-columns: 1fr !important;
  }

  .footer-container {
    gap: 20px;
    grid-template-columns: 1fr;
    font-size: 13px;
  }

  .services-section {
    padding: 40px 15px;
    margin-top: 40px;
  }

  .testimonials-section {
    padding: 30px 15px;
  }

  .cta-section {
    padding: 25px 15px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    gap: 15px;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
  }
  
  .cookie-buttons button {
    font-size: 12px;
    padding: 8px 12px !important;
  }
  
  .cookie-text p {
    font-size: 12px;
  }
}

/* Tablets / Large phones (601px to 768px) */
@media (min-width: 601px) and (max-width: 768px) {
  .hero {
    min-height: 70vh;
    margin: -40px -20px 0 -20px;
    padding: 50px 30px;
    background-image: linear-gradient(rgba(26, 26, 26, 0.35), rgba(26, 26, 26, 0.35)), url('../images/hero-bg.png');
    background-position: center center;
    background-size: cover;
    background-attachment: scroll;
    background-repeat: no-repeat;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content h1,
  .hero-main-title {
    font-size: var(--text-hero) !important;
    margin-bottom: 20px !important;
    line-height: 1.08 !important;
    word-break: break-word;
  }

  .hero-content p:not(.hero-subtitle) {
    font-size: 18px !important;
  }

  .hero-buttons-container {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    max-width: 90%;
    width: 90%;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-social-links {
    bottom: 30px;
    gap: 30px;
  }

  .hero-social-links a {
    font-size: 14px;
  }

  .btn {
    width: 100%;
    font-size: 15px;
  }

  .section-header h2 {
    font-size: 28px;
  }

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

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

  .cta-section h2 {
    font-size: 28px;
  }

  .header-container {
    height: 60px;
  }

  nav.nav-desktop {
    display: none;
  }

  nav.nav-desktop ul {
    display: none;
  }

  nav.nav-mobile {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: #fff;
    padding: 0;
    gap: 0;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border-color);
  }

  nav.nav-mobile.active {
    display: block;
  }

  nav.nav-mobile a {
    padding: 12px 20px;
    display: block;
    border-bottom: none;
  }

  nav.nav-mobile a::after {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .btn {
    width: 100%;
    min-width: unset;
  }

  main {
    padding: 40px 20px;
    font-size: 15px;
  }

  main h1 {
    font-size: 36px;
  }

  main h2 {
    font-size: 24px;
  }

  main p {
    font-size: 15px;
  }

  .philosophy-intro {
    font-size: 1.05rem;
    padding: 0 4px;
  }

  .philosophy-section .philosophy-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .footer-container {
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    font-size: 14px;
  }

  .services-section {
    padding: 50px 20px;
  }

  .testimonials-section {
    padding: 50px 20px;
  }

  .cta-section {
    padding: 35px 20px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: flex-start;
  }
  
  .cookie-text p {
    font-size: 13px;
  }
}

/* Small desktops (768px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-content h1,
  .hero-main-title {
    font-size: var(--text-hero) !important;
  }

  .hero-content p:not(.hero-subtitle) {
    font-size: clamp(1rem, 0.92rem + 0.35vw, 1.375rem) !important;
  }

  .hero-buttons-container {
    position: absolute;
    bottom: 120px;
    right: 40px;
    left: auto;
    transform: none;
    z-index: 10;
  }

  .hero-social-links {
    bottom: 40px;
    gap: 35px;
  }

  .btn {
    font-size: 15px;
  }

  nav.nav-desktop ul {
    gap: 25px;
  }

  nav.nav-desktop a {
    font-size: 14px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header h2 {
    font-size: 32px;
  }

  main {
    padding: 50px 30px;
    font-size: 15px;
  }

  main h1 {
    font-size: 40px;
  }

  main h2 {
    font-size: 28px;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    font-size: 14px;
  }

  .services-section {
    padding: 55px 30px;
  }

  .testimonials-section {
    padding: 55px 30px;
  }
}

/* Large desktops (1024px+) */
@media (min-width: 1025px) {
  .hero-content h1,
  .hero-main-title {
    font-size: var(--text-hero) !important;
  }

  .hero-content p:not(.hero-subtitle) {
    font-size: clamp(1.0625rem, 0.95rem + 0.5vw, 1.5rem) !important;
  }

  .btn {
    font-size: 16px;
  }

  nav.nav-desktop ul {
    gap: 35px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  main {
    padding: 60px 40px;
    font-size: 16px;
  }

  main h1 {
    font-size: 56px;
  }

  main h2 {
    font-size: 32px;
  }

  .footer-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    font-size: 15px;
  }

  .services-section {
    padding: 80px 40px;
  }

  .testimonials-section {
    padding: 80px 40px;
  }
}


/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 98;
  display: none;
  animation: slideUp 0.3s ease;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-text {
  flex: 1;
}

.cookie-text p {
  margin: 0;
  font-size: 14px;
  color: var(--secondary-color);
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-buttons button {
  white-space: nowrap;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

/* ===== SOCIAL MEDIA LINKS (HERO) ===== */
.hero-content a[href*="instagram.com"],
.hero-content a[href*="youtube.com"],
.hero-content a[href*="tiktok.com"] {
  transition: var(--transition);
  border-radius: 4px;
  padding: 8px 12px;
}

.hero-content a[href*="instagram.com"]:hover,
.hero-content a[href*="youtube.com"]:hover,
.hero-content a[href*="tiktok.com"]:hover {
  color: var(--accent-color) !important;
  background-color: rgba(0, 102, 204, 0.1);
  transform: translateY(-2px);
}

/* ===== NEWSLETTER / E-MAIL SIGNUP (Seitenende) ===== */
.email-signup-section {
  background: var(--newsletter-bg);
  padding: clamp(56px, 8vw, 88px) clamp(20px, 4vw, 28px);
  text-align: center;
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.email-signup-section__inner {
  max-width: 42rem;
  margin: 0 auto;
}

.email-signup__lead {
  font-size: clamp(1.0625rem, 0.98rem + 0.4vw, 1.1875rem);
  font-weight: 500;
  color: var(--primary-color);
  line-height: 1.65;
  margin: 0 auto 2rem;
  max-width: 38rem;
}

.email-signup__note {
  font-size: 0.8125rem;
  color: var(--secondary-color);
  margin: 0;
  line-height: 1.5;
}

#mailchimp-form.email-signup-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  margin: 0 auto 1.25rem;
  align-items: stretch;
  max-width: 44rem;
}

#mailchimp-form.email-signup-form input {
  padding: 14px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background-color: #fff;
  min-width: 0;
}

#mailchimp-form.email-signup-form input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.12);
}

#mailchimp-form.email-signup-form .email-signup__submit {
  padding: 14px 24px;
  min-width: 8.75rem;
  box-shadow: var(--shadow-sm);
}

#mailchimp-form .error-message {
  color: #d32f2f;
  font-size: 12px;
  margin-top: 10px;
  width: 100%;
  text-align: center;
  grid-column: 1 / -1;
}

#mailchimp-form .success-message {
  color: #2e7d32;
  font-size: 12px;
  margin-top: 10px;
  width: 100%;
  text-align: center;
  grid-column: 1 / -1;
}

/* ===== IMAGE RESPONSIVE ===== */
img[alt*="Medea"],
img[alt*="Powerlifting"] {
  max-width: 100%;
  height: auto;
  display: block;
}

/* RESPONSIVE: EMAIL FORM & IMAGES */
@media (max-width: 768px) {
  #mailchimp-form.email-signup-form {
    grid-template-columns: 1fr;
  }

  #mailchimp-form.email-signup-form .email-signup__submit {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-content > div:last-child {
    width: 100%;
  }

  .hero-content h1 {
    font-size: clamp(1.85rem, 1.1rem + 4vw, 2.75rem) !important;
  }

  .hero-subtitle {
    font-size: clamp(1.05rem, 0.95rem + 0.6vw, 1.25rem) !important;
  }

  /* Bio & Authority Sections: Stack on mobile */
  section > div > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ===== CCM19 COOKIE BANNER STYLING ===== */
/* Customize ccm19 widgets to match design */
[data-ccm19-widget],
.ccm19-widget,
.ccm19-banner,
.c19-banner-wrapper {
  font-family: 'Poppins', sans-serif !important;
}

/* CCM19 Banner Container */
.c19-widget-box,
.ccm19-box,
.c19-bar,
[class*="ccm19"],
[class*="c19-banner"] {
  background: #fff !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
  border: 1px solid #e0e0e0 !important;
}

/* CCM19 Buttons */
.c19-btn,
.ccm19-btn,
.ccm19-button,
[class*="c19-button"],
[class*="ccm19-button"] {
  background-color: #0066cc !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 12px 24px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  font-family: 'Poppins', sans-serif !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  letter-spacing: 0.3px !important;
}

.c19-btn:hover,
.ccm19-btn:hover,
.ccm19-button:hover,
[class*="c19-button"]:hover,
[class*="ccm19-button"]:hover {
  background-color: #0052a3 !important;
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4) !important;
  transform: translateY(-2px) !important;
}

/* CCM19 Secondary/Reject Button */
.c19-btn-secondary,
.ccm19-btn-secondary,
.c19-btn-reject,
.ccm19-btn-reject,
[class*="c19-button-secondary"],
[class*="ccm19-button-secondary"] {
  background-color: #f5f5f5 !important;
  color: #1a1a1a !important;
  border: 1px solid #e0e0e0 !important;
}

.c19-btn-secondary:hover,
.ccm19-btn-secondary:hover,
.c19-btn-reject:hover,
.ccm19-btn-reject:hover,
[class*="c19-button-secondary"]:hover,
[class*="ccm19-button-secondary"]:hover {
  background-color: #fff !important;
  border-color: #0066cc !important;
  color: #0066cc !important;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2) !important;
}

/* CCM19 Text/Description */
.c19-text,
.ccm19-text,
.c19-description,
.ccm19-description,
[class*="c19-text"],
[class*="ccm19-text"] {
  color: #555 !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

/* CCM19 Heading/Title */
.c19-title,
.ccm19-title,
.c19-heading,
.ccm19-heading,
[class*="c19-title"],
[class*="ccm19-title"] {
  color: #1a1a1a !important;
  font-weight: 600 !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 16px !important;
}

/* CCM19 Links */
.c19-link,
.ccm19-link,
[class*="c19-link"],
[class*="ccm19-link"],
a[class*="ccm19"],
a[class*="c19"] {
  color: #0066cc !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  transition: color 0.3s ease !important;
}

.c19-link:hover,
.ccm19-link:hover,
[class*="c19-link"]:hover,
[class*="ccm19-link"]:hover,
a[class*="ccm19"]:hover,
a[class*="c19"]:hover {
  color: #0052a3 !important;
  text-decoration: underline !important;
}

/* Mobile CCM19 */
@media (max-width: 600px) {
  .c19-widget-box,
  .ccm19-box,
  .c19-bar,
  [class*="ccm19"],
  [class*="c19-banner"] {
    border-radius: 8px !important;
    padding: 12px !important;
  }

  .c19-btn,
  .ccm19-btn,
  .ccm19-button,
  [class*="c19-button"],
  [class*="ccm19-button"] {
    padding: 10px 16px !important;
    font-size: 12px !important;
  }

  .c19-text,
  .ccm19-text,
  .c19-description,
  .ccm19-description,
  [class*="c19-text"],
  [class*="ccm19-text"] {
    font-size: 12px !important;
  }
}

/* ============================================================
   RESPONSIVE-FIX-BLOCK (V1) — überschreibt absolut positionierte
   Hero-Buttons und definiert die neuen Shop-Sektionen.
   Stand am Dateiende, damit alle vorigen Regeln überschrieben werden.
   ============================================================ */

/* ---- Header / Sticky: Inhalt darf darunter scrollen, kein Overlap ---- */
header {
  z-index: 100;
}

/* ============================================================
   HERO LAYOUT — KONSOLIDIERT
   Single Source of Truth fuer Hero-Positionierung an allen Breakpoints.
   Ueberschreibt alle vorherigen Hero-Media-Queries der CSS.

   Breakpoints:
     ≤600px  Mobile          → vertikal gestapelt, Buttons unten zentriert
     601–768 Tablet portrait → wie Mobile, mehr Luft
     ≥769px  Desktop         → 2-Spalten, Text mittig links, Buttons rechts mittig-unten
     ≥1025px Large Desktop   → mehr Padding, Buttons groesser
   ============================================================ */

/* === Hero: Mobile (≤600px) === */
@media (max-width: 600px) {
  .hero {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    background-image: url('../images/hero-bg.png') !important;
    background-position: center 70% !important;
    margin: -120px 0 0 0 !important;
    padding: 30px 20px 48px !important;
    height: auto !important;
    min-height: 100svh !important;
  }

  .hero-content {
    align-self: flex-start !important;
    text-align: left !important;
    padding: 120px 0 0 0 !important;
    max-width: min(52%, 220px) !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    margin-left: 6px;
  }

  .hero-content h1,
  .hero-main-title {
    margin-bottom: 10px !important;
    font-size: clamp(1.9rem, 7vw, 2.45rem) !important;
    line-height: 1.03 !important;
    letter-spacing: -0.03em !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  }

  .hero-subtitle {
    font-size: clamp(0.86rem, 3.5vw, 1.02rem) !important;
    line-height: 1.28 !important;
    max-width: 100% !important;
    margin-bottom: 0 !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  }

  .hero-buttons-container {
    position: absolute !important;
    bottom: 150px !important;
    top: auto !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: 90% !important;
    max-width: 360px !important;
  }

  .hero-buttons-container .cta-buttons {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .hero-social-links {
    bottom: 32px !important;
    gap: 22px !important;
  }
}

/* === Hero: Tablet portrait (601–768px) === */
@media (min-width: 601px) and (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
    background-image: url('../images/hero-bg.png') !important;
  }

  .hero-content {
    align-self: flex-start !important;
    text-align: left !important;
    max-width: min(58%, 340px) !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding: 86px 0 0 0 !important;
    margin-left: 10px;
  }

  .hero-buttons-container {
    position: absolute !important;
    bottom: 110px !important;
    top: auto !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: 80% !important;
    max-width: 420px !important;
  }

  .hero-buttons-container .cta-buttons {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .hero-social-links {
    bottom: 30px !important;
    gap: 28px !important;
  }
}

/* === Hero: Desktop (≥769px) === */
@media (min-width: 769px) {
  .hero-content {
    align-self: flex-start;
    text-align: left;
    padding-top: 72px;
    max-width: min(50%, 620px);
    align-items: flex-start;
    justify-content: flex-start;
  }

  .hero-buttons-container {
    position: absolute !important;
    bottom: 110px !important;
    top: auto !important;
    right: 80px !important;
    left: auto !important;
    transform: none !important;
    z-index: 10;
    width: auto !important;
    max-width: none !important;
  }

  .hero-buttons-container .cta-buttons {
    flex-direction: column !important;
    align-items: flex-end !important;
    gap: 14px !important;
    width: auto !important;
  }

  .hero-social-links {
    bottom: 36px !important;
    gap: 32px !important;
  }
}

/* === Hero: Large Desktop (≥1025px) === */
@media (min-width: 1025px) {
  .hero-buttons-container {
    bottom: 135px !important;
    right: 115px !important;
  }

  .hero-buttons-container .cta-buttons {
    gap: 16px !important;
  }

  .hero-buttons-container .btn {
    padding: 18px 52px !important;
    font-size: 17px !important;
    min-width: 240px;
  }

  .hero-social-links {
    bottom: 40px !important;
    gap: 40px !important;
  }
}

/* === Hero: Extra Large Desktop (≥1440px) === */
@media (min-width: 1440px) {
  .hero-buttons-container {
    bottom: 160px !important;
    right: 140px !important;
  }

  .hero-buttons-container .btn {
    padding: 20px 58px !important;
    font-size: 18px !important;
    min-width: 270px;
  }
}

main,
.hero-stats-section,
.philosophy-section,
.program-product-section,
.email-signup-section,
footer,
.shop-main {
  position: relative;
  z-index: 1;
}

/* ---- Sticky Mobile CTA: nicht aktiv im Sub-Page-Hero (eigener CTA da) ---- */
@media (max-width: 768px) {
  .shop-hero ~ .mobile-sticky-cta {
    /* bleibt sichtbar, aber wir sorgen für genug Footer-Padding via body */
  }
}

/* ---- SHOP-PAGE: Saubere, responsive Sektionen ---- */
.shop-main {
  padding: 0;
}

/* Shop-Hero */
.shop-hero {
  background: linear-gradient(135deg, var(--accent-light) 0%, rgba(0, 102, 204, 0.05) 100%);
  padding: clamp(36px, 5vw, 64px) clamp(16px, 4vw, 32px);
  text-align: center;
}

.shop-hero__inner {
  max-width: 980px;
  margin: 0 auto;
}

.shop-hero__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.85rem, 5vw, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 0.6rem;
  color: var(--primary-color);
}

.shop-hero__subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--secondary-color);
  margin: 0 auto 2rem;
  max-width: 36rem;
  line-height: 1.55;
}

.shop-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: stretch;
  margin: 0 auto 2.5rem;
  max-width: 880px;
  text-align: left;
}

@media (min-width: 720px) {
  .shop-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 36px;
    align-items: center;
  }
}

.shop-hero__image {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
  background: #fff;
}

.shop-hero__image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.shop-hero__buy {
  background: #fff;
  padding: clamp(24px, 4vw, 36px);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.shop-hero__buy-label {
  font-size: 0.85rem;
  color: var(--secondary-color);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.shop-hero__price {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 7vw, 3.5rem);
  color: var(--accent-color);
  line-height: 1;
  letter-spacing: -0.04em;
}

.shop-hero__buy-meta {
  font-size: 0.85rem;
  color: var(--secondary-color);
  margin: 0 0 1rem;
}

.shop-hero__checkout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.shop-hero__cta {
  display: inline-block;
  width: 100%;
  max-width: 360px;
  padding: 16px 22px !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  border-radius: 10px !important;
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%) !important;
  color: #fff !important;
  border: none;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 102, 204, 0.35);
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}

@media (min-width: 601px) and (hover: hover) and (pointer: fine) {
  .shop-hero__cta {
    transition: transform 0.18s ease, box-shadow 0.18s ease;
  }
  .shop-hero__cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 18px 36px rgba(0, 102, 204, 0.42);
  }
}

.shop-hero__trust {
  font-size: 0.78rem;
  color: var(--secondary-color);
  margin: 0;
  line-height: 1.4;
}

/* Shopify Buy Button — eingebettete Produkt-Widgets */
#program-checkout {
  scroll-margin-top: 96px;
}

.shop-buy-button-root {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  min-height: 52px;
}

.shop-final-cta__buy-widget {
  display: flex;
  justify-content: center;
  margin: 0 0 0.95rem;
}

.shop-final-cta__buy-widget .shop-buy-button-root {
  margin: 0;
}

.shop-hero__signals {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  text-align: center;
}

.shop-hero__signals li {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 18px 14px;
  box-shadow: var(--shadow-sm);
}

.shop-hero__signal-icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
  line-height: 1;
}

.shop-hero__signal-title {
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--primary-color);
}

.shop-hero__signal-meta {
  font-size: 0.78rem;
  color: var(--secondary-color);
  margin: 0;
}

/* Shop-Included */
.shop-included {
  padding: clamp(40px, 5vw, 64px) clamp(16px, 4vw, 24px);
  background: #fff;
}

.shop-included__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.shop-included__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2rem);
  text-align: center;
  margin: 0 0 2rem;
  letter-spacing: -0.02em;
}

.shop-included__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.shop-included__card {
  background: var(--light-gray);
  padding: 26px 22px;
  border-radius: 10px;
  border-left: 4px solid var(--accent-color);
}

.shop-included__card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 0.6rem;
  color: var(--primary-color);
  letter-spacing: -0.01em;
}

.shop-included__card p {
  margin: 0;
  color: var(--secondary-color);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* Shop-FAQ */
.shop-faq {
  background: var(--light-gray);
  padding: clamp(40px, 5vw, 64px) clamp(16px, 4vw, 24px);
}

.shop-faq__inner {
  max-width: 820px;
  margin: 0 auto;
}

.shop-faq__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2rem);
  text-align: center;
  margin: 0 0 2rem;
  letter-spacing: -0.02em;
}

.shop-faq__item {
  background: #fff;
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}

.shop-faq__item h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
  color: var(--primary-color);
}

.shop-faq__item p {
  margin: 0;
  color: var(--secondary-color);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Shop Final CTA */
.shop-final-cta {
  background: linear-gradient(135deg, var(--accent-color) 0%, #0052a3 100%);
  color: #fff;
  padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 24px);
  text-align: center;
}

.shop-final-cta__inner {
  max-width: 640px;
  margin: 0 auto;
}

.shop-final-cta__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 4.5vw, 2.25rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.7rem;
  color: #fff;
}

.shop-final-cta__lead {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.6rem;
  line-height: 1.55;
}

/* Optional: klassischer Button unter dem Final-CTA (Shopify-Widget nutzt .shop-final-cta__buy-widget) */
.shop-final-cta__btn {
  display: inline-block;
  width: 100%;
  max-width: 360px;
  padding: 16px 24px !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  border-radius: 10px !important;
  background: #fff !important;
  color: var(--accent-color) !important;
  border: none;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  margin: 0 0 0.95rem;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}

@media (min-width: 601px) and (hover: hover) and (pointer: fine) {
  .shop-final-cta__btn {
    transition: transform 0.18s ease, box-shadow 0.18s ease;
  }
  .shop-final-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
  }
}

.shop-final-cta__trust {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.5;
}

/* Shop Roadmap */
.shop-roadmap {
  padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 24px);
  background: #fff;
}

.shop-roadmap__inner {
  max-width: 980px;
  margin: 0 auto;
}

.shop-roadmap__head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.shop-roadmap__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

.shop-roadmap__lead {
  color: var(--secondary-color);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  margin: 0;
}

.shop-roadmap__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}

.shop-roadmap__card {
  background: var(--light-gray);
  border-left: 4px solid #ccc;
  border-radius: 10px;
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.shop-roadmap__card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0;
  color: #666;
  letter-spacing: -0.01em;
}

.shop-roadmap__card--active {
  border-left-color: var(--accent-color);
}

.shop-roadmap__card--active h3 {
  color: var(--accent-color);
}

.shop-roadmap__product {
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0;
  color: var(--primary-color);
}

.shop-roadmap__card p:last-of-type {
  margin: 0;
  color: var(--secondary-color);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* ---- Newsletter-Form: nie über das Layout hinaus ---- */
.email-signup-form {
  max-width: 100%;
}

.email-signup-form input {
  min-width: 0;
}

@media (max-width: 480px) {
  .email-signup-form {
    flex-direction: column;
    align-items: stretch;
  }

  .email-signup-form input,
  .email-signup-form .btn {
    width: 100% !important;
    min-width: 0 !important;
  }
}

/* ---- Globaler Schutz vor horizontalem Overflow auf Mobil ---- */
html, body {
  overflow-x: hidden;
}

/* ---- Sticky-CTA: Body-Padding nur, wenn CTA wirklich sichtbar ---- */
@media (max-width: 768px) {
  body.sticky-cta-visible {
    padding-bottom: 96px;
  }

  body.cookie-banner-active {
    padding-bottom: 0;
  }
}

/* ---- Mobile-Nav: Top-Position folgt Header-Höhe ---- */
@media (max-width: 600px) {
  nav.nav-mobile {
    top: 55px !important;
  }
}

@media (min-width: 601px) and (max-width: 768px) {
  nav.nav-mobile {
    top: 60px !important;
  }
}

/* ---- Subseiten (.shop-main, etc.): Hero-Section nicht durch globales main-padding doppelt eingerueckt ---- */
.shop-main {
  min-height: calc(100vh - 160px);
  margin: 0 auto;
  max-width: none;
  padding: 0;
}

/* ---- Newsletter-Section: nicht ueber Container hinausragen ---- */
.email-signup-section,
.email-signup-section__inner {
  box-sizing: border-box;
  max-width: 100%;
  overflow-wrap: anywhere;
}

/* ---- CCM19 Floating-Widget verstecken (ersetzt durch Footer-Link) ---- */
/* Alles was wie ein dauerhaftes CCM19/Cookie-Floating-Icon aussieht ausblenden,
   aber das Erstaufruf-Modal/Banner explizit NICHT verstecken */
.ccm-widget,
.ccm19-widget,
.c19-widget,
.ccm-floating,
.ccm19-floating,
.c19-floating,
[id="ccm-widget"],
[id*="ccm-widget"],
[id*="ccm19-widget"],
[class*="ccm-widget"]:not([class*="modal"]):not([class*="banner"]):not([class*="content"]),
[class*="ccm19-widget"]:not([class*="modal"]):not([class*="banner"]):not([class*="content"]),
[class*="c19-widget"]:not([class*="modal"]):not([class*="banner"]):not([class*="content"]),
[class*="ccm"][class*="floating"],
[class*="ccm19"][class*="floating"],
[class*="c19"][class*="floating"],
[class*="ccm"][class*="trigger"]:not([class*="banner"]):not([class*="modal"]),
[class*="ccm"][class*="reopen"],
[class*="ccm19"][class*="reopen"],
[class*="cookie-widget"],
[class*="cookie-floating"],
[id*="cookie-widget"],
[id*="cookie-floating"] {
  display: none !important;
  pointer-events: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* ---- Cookie-Einstellungen-Link im Footer (auto-injected via JS) ---- */
.cookie-settings-line {
  margin-top: 10px !important;
  font-size: 12.5px;
  color: #999;
  letter-spacing: 0.2px;
}

.cookie-settings-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-settings-link:hover,
.cookie-settings-link:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  outline: none;
}

/* Wenn der Link inline neben Impressum/Datenschutz/AGB sitzt: gleicher Stil */
.footer-bottom p:last-of-type .cookie-settings-link {
  color: inherit;
  border: none;
  padding: 0;
}

.footer-bottom p:last-of-type .cookie-settings-link:hover {
  color: #fff;
}
