/* ═══════════════════════════════════════════════════════
   LittleBites — Design System & Styles
   Inspired by the product overview images
   ═══════════════════════════════════════════════════════ */

/* ─── FONTS (LOCAL) ─── */
@font-face {
  font-family: 'Baloo 2';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/baloo2-400.ttf') format('truetype');
}
@font-face {
  font-family: 'Baloo 2';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/baloo2-600.ttf') format('truetype');
}
@font-face {
  font-family: 'Baloo 2';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/baloo2-700.ttf') format('truetype');
}
@font-face {
  font-family: 'Baloo 2';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('fonts/baloo2-800.ttf') format('truetype');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/nunito-400.ttf') format('truetype');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/nunito-600.ttf') format('truetype');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/nunito-700.ttf') format('truetype');
}

/* ─── CUSTOM PROPERTIES ─── */
:root {
  --blue: #3B4CCA;
  --blue-dark: #2A38A0;
  --blue-light: #5B6BE8;
  --cyan: #4ECDC4;
  --cyan-light: #7EDDD6;
  --orange: #FF6B35;
  --orange-light: #FF8F63;
  --pink: #FF2D9B;
  --pink-light: #FF6DB8;
  --yellow: #FFD93D;
  --yellow-light: #FFE580;
  --lavender: #E8D5F5;
  --white: #FFFFFF;
  --off-white: #F8F9FC;
  --gray-100: #F1F3F8;
  --gray-200: #E2E5EE;
  --gray-500: #7A829E;
  --gray-700: #3D4260;
  --gray-900: #1A1D30;

  --font-heading: 'Baloo 2', cursive;
  --font-body: 'Nunito', sans-serif;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(59, 76, 202, 0.08);
  --shadow-md: 0 8px 24px rgba(59, 76, 202, 0.12);
  --shadow-lg: 0 16px 48px rgba(59, 76, 202, 0.16);
  --shadow-glow: 0 0 40px rgba(78, 205, 196, 0.35);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET & BASE ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

/* ─── CONTAINER ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── ANIMATIONS ─── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}

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

.fade-in-delay {
  transition-delay: 0.2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(78, 205, 196, 0.3);
  }

  50% {
    box-shadow: 0 0 40px rgba(78, 205, 196, 0.6);
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    transition: none;
    opacity: 1;
    transform: none;
  }

  * {
    animation-duration: 0.01ms !important;
  }
}

/* ═══════════════════ NAVIGATION ═══════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  transition: var(--transition);
  position: relative;
}

.navbar.scrolled .nav-links a {
  color: var(--gray-700);
}

.nav-links a:hover {
  color: var(--cyan);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: width var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px !important;
  background: var(--cyan) !important;
  color: var(--white) !important;
  border-radius: var(--radius-full) !important;
  font-weight: 700 !important;
}

.nav-cta:hover {
  background: var(--cyan-light) !important;
  transform: translateY(-2px);
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 99px;
  transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
  background: var(--gray-700);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-container {
    justify-content: flex-start;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    right: auto;
    width: 50%;
    max-width: 240px;
    height: 100vh;
    background: linear-gradient(180deg, var(--orange) 0%, var(--pink) 50%, var(--blue) 100%);
    flex-direction: column;
    padding: 100px 30px 40px;
    gap: 24px;
    box-shadow: var(--shadow-lg);
    transition: left var(--transition);
  }

  .nav-links.open {
    left: 0;
  }

  .nav-links a {
    color: var(--white) !important;
    font-size: 1.1rem;
  }
}

/* ═══════════════════ HERO ═══════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--orange) 0%, var(--pink) 25%, var(--blue) 60%, var(--blue-dark) 100%);
  display: flex;
  align-items: center;
  padding: 120px 0 100px;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
}

.blob-orange {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.4) 0%, transparent 70%);
  top: -100px;
  left: -150px;
}

.blob-blue {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 76, 202, 0.3) 0%, transparent 70%);
  bottom: -200px;
  right: -200px;
}

.star {
  position: absolute;
  color: var(--yellow);
  font-size: 2rem;
  animation: float 3s ease-in-out infinite;
}

.star-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
  font-size: 2.5rem;
}

.star-2 {
  top: 25%;
  right: 15%;
  animation-delay: 0.5s;
  font-size: 1.5rem;
}

.star-3 {
  bottom: 30%;
  left: 5%;
  animation-delay: 1s;
}

.rocket {
  position: absolute;
  top: 18%;
  left: 18%;
  transform: rotate(-15deg);
  animation: float 4s ease-in-out infinite;
  animation-delay: 0.3s;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 800;
}

.hero h1 .highlight {
  background: linear-gradient(90deg, var(--yellow), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-item svg {
  color: var(--yellow);
  flex-shrink: 0;
}

/* Hero Image — background-image hero */
.hero-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  padding: 0;
  position: relative;
}

.hero-cta-btn {
  position: absolute;
  bottom: 7%;
  left: 50%;
  transform: translateX(-50%);
  background: #FF6B35;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  padding: 24px 72px;
  border-radius: var(--radius-full);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 24px rgba(255, 107, 53, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse-glow 2s ease-in-out infinite;
}

.hero-cta-btn:hover {
  transform: translateX(-50%) scale(1.05);
  box-shadow: 0 10px 32px rgba(255, 107, 53, 0.6);
}

@media (max-width: 600px) {
  .hero-cta-btn {
    font-size: 1rem;
    padding: 14px 36px;
  }
}

@media (max-width: 768px) {
  .hero-image {
    background-image: url('images/Hero916.webp') !important;
  }

  .hero-cta-btn {
    top: 66%;
    bottom: auto;
    left: 25%;
    transform: translateX(-50%) rotate(-9deg);
  }

  .hero-cta-btn:hover {
    transform: translateX(-50%) rotate(-11deg) scale(1.05);
  }
}

.floating-badge {
  position: absolute;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  box-shadow: var(--shadow-md);
  animation: float 3s ease-in-out infinite;
}

.badge-bio {
  background: var(--cyan);
  top: 10%;
  left: -10%;
  animation-delay: 0.2s;
}

.badge-frisch {
  background: var(--orange);
  bottom: 15%;
  right: -5%;
  animation-delay: 0.8s;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--cyan);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(78, 205, 196, 0.3);
}

.btn-primary:hover {
  background: var(--cyan-light);
  box-shadow: 0 8px 24px rgba(78, 205, 196, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.btn-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

/* ─── WAVE DIVIDERS ─── */
.wave-divider {
  position: relative;
  width: 100%;
  line-height: 0;
}

.wave-divider svg {
  width: 100%;
  height: 80px;
}

.wave-white {
  color: var(--white);
}

.wave-blue-top {
  color: var(--white);
  margin-bottom: -1px;
}

.wave-blue-bottom {
  color: var(--white);
  margin-top: -1px;
}

/* ═══════════════════ BADGES / USPs ═══════════════════ */
.badges-section {
  padding: 80px 0;
  background: var(--white);
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.usp-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-md);
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.usp-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--cyan);
}

.usp-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.usp-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.usp-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ═══════════════════ SO FUNKTIONIERT'S ═══════════════════ */
.steps-section {
  background: var(--blue);
  padding: 0;
  position: relative;
}

.steps-section .container {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--gray-900);
  margin-bottom: 16px;
}

.section-title-light {
  color: var(--white);
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto 48px;
}

.section-subtitle-light {
  color: rgba(255, 255, 255, 0.8);
}

.steps-section .section-title {
  color: var(--white);
  margin-bottom: 48px;
}

.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 380px;
  flex: 1;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.step-number {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan);
  color: var(--white);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  margin-bottom: 20px;
}

.step-number span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.step-number strong {
  font-size: 1.8rem;
}

.step-number-orange {
  background: var(--orange);
}

.step-img {
  width: 100%;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 1.3rem;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.step-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
}

.step-arrow {
  flex-shrink: 0;
}

/* ═══════════════════ WOCHENPLAN ═══════════════════ */
.wochenplan-section {
  padding: 40px 0 80px;
  background: var(--white);
}

.wochenplan-hint {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 600;
  font-style: italic;
  margin-top: 16px;
  margin-bottom: 0;
}

.wochenplan-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.day-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.day-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--cyan);
}

.day-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
  padding: 4px 12px;
  background: linear-gradient(135deg, var(--cyan), var(--blue-light));
  color: var(--white);
  border-radius: var(--radius-full);
  display: inline-block;
}

.day-img-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

.day-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.day-card:hover .day-img-wrap img {
  transform: scale(1.05);
}

.day-nutrients {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.nutrient {
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: var(--gray-100);
  color: var(--gray-700);
  font-weight: 600;
}

/* ═══════════════════ LUNCHBOX TO-GO ═══════════════════ */
.togo-section {
  background: var(--blue);
  position: relative;
}

.togo-section .container {
  padding-top: 40px;
  padding-bottom: 40px;
}

.togo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.togo-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.togo-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.togo-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--white);
  z-index: 2;
}

.togo-badge-fav {
  background: var(--lavender);
  color: var(--blue);
}

.togo-badge-new {
  background: var(--blue-dark);
}

.togo-badge-limited {
  background: var(--pink);
}

.togo-card img {
  width: 100%;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.togo-card h3 {
  font-size: 1.2rem;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.togo-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ═══════════════════ PRICING ═══════════════════ */
.pricing-section {
  padding: 80px 0;
  background: var(--white);
}

.pricing-card {
  background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(78, 205, 196, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(255, 107, 53, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.pricing-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gray-900);
  font-weight: 800;
  line-height: 1;
}

.pricing-limited {
  margin-top: 12px;
  font-size: 0.95rem;
  color: var(--gray-500);
}

.pricing-center {
  text-align: center;
}

.price-box {
  background: linear-gradient(135deg, var(--pink), var(--pink-light));
  color: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(255, 45, 155, 0.25);
}

.price-label {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  margin: 4px 0;
}

.price-detail {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 600;
}

.pricing-img {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  animation: float 4s ease-in-out infinite;
}

/* ═══════════════════ BENEFITS ═══════════════════ */
.benefits-section {
  background: var(--blue);
  position: relative;
}

.benefits-section .container {
  padding-top: 40px;
  padding-bottom: 40px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.benefit-column h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--cyan);
  display: inline-block;
}

.benefit-column ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-column li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
}

.benefit-column li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.diet-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.diet-badge {
  background: var(--yellow);
  color: var(--gray-900);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}

/* ═══════════════════ FOOTER ═══════════════════ */
.footer {
  background: var(--gray-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-links h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
}

/* ═══════════════════ LOADER ═══════════════════ */
#lb-loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, var(--orange) 0%, var(--pink) 25%, var(--blue) 60%, var(--blue-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease;
}

.lb-loader-content {
  text-align: center;
}

.lb-loader-logo {
  height: 72px;
  width: auto;
  margin: 0 auto 24px;
}

.lb-loader-text {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.lb-loader-track {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 99px;
  margin: 0 auto;
  overflow: hidden;
}

.lb-loader-fill {
  height: 100%;
  width: 0%;
  background: var(--cyan);
  border-radius: 99px;
  transition: width 0.25s ease;
}

/* ═══════════════════ SCROLL PROGRESS BAR ═══════════════════ */
#lb-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--cyan), var(--orange), var(--pink));
  z-index: 10001;
  transition: width 0.1s linear;
}

/* ═══════════════════ HERO — CENTERED INTRO ═══════════════════ */
.hero-intro {
  justify-content: center;
  padding-bottom: 60px;
}

.hero-intro-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-intro-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 800;
}

.hero-intro-content .hero-subtitle {
  margin: 0 auto 32px;
}

.hero-intro-content .hero-actions {
  justify-content: center;
}

.hero-intro-content .hero-trust {
  justify-content: center;
}

.scroll-hint {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.scroll-arrow {
  animation: lb-bounce 2s ease-in-out infinite;
  color: rgba(255, 255, 255, 0.7);
}

@keyframes lb-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

/* ═══════════════════ SCROLL ANIMATION SECTION ═══════════════════ */
.lb-scroll-section {
  height: 400vh;
  position: relative;
  background: var(--white);
}

.lb-scroll-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

#frameCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ═══════════════════ ANNOTATION CARDS ═══════════════════ */
.lb-card {
  position: absolute;
  bottom: 8vh;
  left: 5vw;
  max-width: 340px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  z-index: 10;
}

.lb-card.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lb-card-icon {
  font-size: 2.4rem;
  flex-shrink: 0;
  line-height: 1;
}

.lb-card-tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.lb-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.2;
}

.lb-card-body p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.lb-card-orange {
  border-color: rgba(255, 107, 53, 0.5);
}

.lb-card-orange .lb-card-tag {
  color: var(--orange-light);
}

.lb-card-cyan {
  border-color: rgba(78, 205, 196, 0.5);
}

.lb-card-cyan .lb-card-tag {
  color: var(--cyan-light);
}

.lb-card-pink {
  border-color: rgba(255, 45, 155, 0.5);
}

.lb-card-pink .lb-card-tag {
  color: var(--pink-light);
}

.lb-card-blue {
  border-color: rgba(91, 107, 232, 0.5);
}

.lb-card-blue .lb-card-tag {
  color: var(--blue-light);
}



/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto 32px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-width: 360px;
  }

  .floating-badge {
    display: none;
  }

  .rocket {
    display: none;
  }

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

  .pricing-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pricing-img {
    max-width: 200px;
  }

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

@media (max-width: 1024px) {
  .lb-scroll-section {
    height: 320vh;
  }
}

@media (max-width: 768px) {
  .lb-scroll-section {
    height: 270vh;
  }

  .lb-card {
    bottom: 2vh;
    left: 3vw;
    right: 3vw;
    max-width: none;
    padding: 12px 16px;
    gap: 12px;
  }

  .lb-card-body p {
    display: none;
  }

  .lb-card-icon {
    font-size: 1.8rem;
  }

  .lb-card-body h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .lb-scroll-section {
    height: 220vh;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 0 80px;
  }

  .hero h1 {
    font-size: 2rem;
  }

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

  .togo-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .steps-grid {
    flex-direction: column;
  }

  .step-arrow {
    transform: rotate(90deg);
  }

  .step-card {
    max-width: 100%;
  }

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

  .star {
    display: none;
  }
}

@media (max-width: 480px) {
  .badges-grid {
    grid-template-columns: 1fr;
  }

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

  .wochenplan-grid .day-card:last-child {
    grid-column: 1 / -1;
    max-width: 200px;
    margin: 0 auto;
  }

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

  .pricing-card {
    padding: 24px;
  }

  .price-amount {
    font-size: 2.5rem;
  }

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

  .diet-badges {
    flex-direction: column;
    align-items: center;
  }
}

/* ═══════════════════ WARTELISTE MODAL ═══════════════════ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 36px 36px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modal-in 0.25s ease;
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  cursor: pointer;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.modal-close:hover {
  background: var(--gray-200);
}

.modal-header {
  text-align: center;
  margin-bottom: 28px;
}

.modal-emoji {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 12px;
}

.modal-header h2 {
  font-size: 1.6rem;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.modal-header p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

.warteliste-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--gray-900);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus {
  border-color: var(--cyan);
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-row .form-group {
  width: 100px;
}

.form-group-grow {
  flex: 1 !important;
  width: auto !important;
}

.wl-optional {
  font-weight: 400;
  color: var(--gray-500);
  font-size: 0.85rem;
}

.wl-hidden {
  display: none;
}

.form-check .check-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--cyan);
  width: 16px;
  height: 16px;
}

.form-check a {
  color: var(--cyan);
  text-decoration: underline;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.modal-success {
  text-align: center;
  padding: 20px 0;
}

.modal-success h3 {
  font-size: 1.4rem;
  color: var(--gray-900);
  margin: 12px 0 8px;
}

.modal-success p {
  color: var(--gray-600);
}

@media (max-width: 480px) {
  .modal-box {
    padding: 28px 20px 24px;
  }

  .form-row {
    flex-direction: column;
  }

  .form-row .form-group {
    width: 100%;
  }
}