/* B2B standalone CSS: local fonts + shared primitives + B2B page styles */
@font-face{font-family:'Inter';font-style:normal;font-weight:300 700;font-display:swap;src:url('/assets/fonts/inter-v20-latin-300-700.woff2') format('woff2');}
@font-face{font-family:'Barlow Condensed';font-style:normal;font-weight:400;font-display:swap;src:url('/assets/fonts/barlow-condensed-v13-latin-400.woff2') format('woff2');}
@font-face{font-family:'Barlow Condensed';font-style:normal;font-weight:600;font-display:swap;src:url('/assets/fonts/barlow-condensed-v13-latin-600.woff2') format('woff2');}
@font-face{font-family:'Barlow Condensed';font-style:normal;font-weight:700;font-display:swap;src:url('/assets/fonts/barlow-condensed-v13-latin-700.woff2') format('woff2');}
@font-face{font-family:'Barlow Condensed';font-style:italic;font-weight:700;font-display:swap;src:url('/assets/fonts/barlow-condensed-v13-latin-700italic.woff2') format('woff2');}
/* =============================================
   PAPA JOHN'S SOSSENHEIM — REDESIGNED STYLES
   ============================================= */


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

:root {
  --red:    #df192a;
  --red-dark: #b81422;
  --red-light: rgba(223, 25, 42, 0.08);
  --green:  #006a4d;
  --green-dark: #004d38;
  --dark:   #212121;
  --white:  #FFFFFF;
  --beige:  #f4f4f4;
  --gold:   #006a4d;
  --gray:   #666666;
  --gray-light: #f0f0f0;
  --radius: 12px;
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.18);
  --header-height: 80px;
  --header-height-scrolled: 60px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ---- UTILITY ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

/* ---- GSAP SCROLL REVEAL ---- */
.js .gsap-fade-up,
.js .gsap-reveal,
.js .gsap-reveal-img {
  opacity: 0;
  transform: translateY(40px);
}
.js .gsap-reveal-img {
  transform: scale(0.95) translateY(30px);
}
.js.reveal-fallback .gsap-fade-up,
.js.reveal-fallback .gsap-reveal,
.js.reveal-fallback .gsap-reveal-img {
  opacity: 1;
  transform: none;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn--red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(204,0,0,0.4);
}
.btn--red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(204,0,0,0.5);
}
.btn--outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn--outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--white {
  background: var(--white);
  color: var(--red);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn--white:hover {
  background: var(--beige);
  transform: translateY(-2px);
}
.btn--lg {
  padding: 18px 44px;
  font-size: 22px;
}

.tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.tag::before { content: '— '; }
.tag::after  { content: ' —'; }

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: var(--header-height);
}
#header.scrolled {
  background: var(--green);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
  height: var(--header-height-scrolled);
}
#header.scrolled .logo-main { color: var(--white); }
#header.scrolled nav.desktop-nav a { color: var(--white); }
#header.scrolled nav.desktop-nav a.nav-b2b { color: var(--white); border-color: var(--white); }
#header.scrolled nav.desktop-nav a.nav-b2b:hover { background: var(--white); color: var(--green); }
#header.scrolled .hamburger span { background: var(--white); }

/* Home-page header (white text on red hero) */
.home-page #header { background: transparent; }
.home-page .logo-main { color: var(--white); }
.home-page .logo-main span { color: var(--white); }
.home-page nav.desktop-nav a { color: var(--white); }
.home-page nav.desktop-nav a::after { background: var(--white); }
.home-page nav.desktop-nav a.nav-b2b { color: var(--white); border-color: rgba(255,255,255,0.4); }
.home-page nav.desktop-nav a.nav-b2b:hover { background: var(--white); color: var(--red); }
.home-page .hamburger span { background: var(--white); }
.home-page .logo img { filter: brightness(0) invert(1); }
.home-page #header.scrolled { background: var(--green); }
.home-page #header.scrolled .logo-main,
.home-page #header.scrolled .logo-main span { color: var(--white); }
.home-page #header.scrolled nav.desktop-nav a { color: var(--white); }
.home-page #header.scrolled nav.desktop-nav a.nav-b2b { color: var(--white); border-color: var(--white); }
.home-page #header.scrolled nav.desktop-nav a.nav-b2b:hover { background: var(--white); color: var(--green); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1160px;
  margin: 0 auto;
  height: 100%;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  transition: transform 0.3s ease;
}
#header.scrolled .logo { transform: scale(0.9); }
.logo-main {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: font-size 0.3s ease;
}
#header.scrolled .logo-main { font-size: 24px; }
.logo-main span { color: var(--red); }

nav.desktop-nav { display: flex; align-items: center; gap: 36px; }
nav.desktop-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: var(--green);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
nav.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s ease;
}
nav.desktop-nav a:hover { color: var(--red); }
nav.desktop-nav a:hover::after { width: 100%; }
nav.desktop-nav a.nav-b2b {
  color: var(--green);
  border: 1px solid var(--green);
  border-radius: 6px;
  padding: 6px 16px;
}
nav.desktop-nav a.nav-b2b::after { display: none; }
nav.desktop-nav a.nav-b2b:hover { background: var(--green); color: var(--white); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-cta .btn {
  padding: 12px 24px;
  font-size: 14px;
  transition: all 0.3s ease;
}
#header.scrolled .header-cta .btn {
  padding: 10px 20px;
  font-size: 13px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--green);
  padding: 20px 24px 30px;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav .btn { margin-top: 12px; width: 100%; justify-content: center; }

/* ===== DESKTOP DROPDOWN ===== */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: var(--green);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}
.nav-dropdown-toggle:hover { color: var(--red); }
.dropdown-chevron {
  font-size: 10px;
  transition: transform 0.25s ease;
  display: inline-block;
}
.nav-dropdown.open .dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--green);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1001;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 2px;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
  z-index: 1;
}
/* Hohe Spezifität nötig, da nav.desktop-nav a sonst überschreibt */
.nav-dropdown-menu .dropdown-item,
.nav-dropdown-menu .dropdown-item:visited {
  color: var(--white);
}
.dropdown-item:hover {
  background: rgba(255,255,255,0.12);
}
.dropdown-icon {
  font-size: 18px;
  line-height: 1;
}
.dropdown-text {
  white-space: nowrap;
}

/* Home-page header dropdown overrides */
.home-page .nav-dropdown-toggle { color: var(--white); }
.home-page .nav-dropdown-toggle:hover { color: var(--white); opacity: 0.8; }
#header.scrolled .nav-dropdown-toggle { color: var(--white); }
#header.scrolled .nav-dropdown-toggle:hover { color: var(--white); opacity: 0.8; }

/* ===== MOBILE DROPDOWN ===== */
.mobile-dropdown {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-dropdown-toggle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  padding: 10px 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.mobile-dropdown-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0 0 10px 8px;
}
.mobile-dropdown.open .mobile-dropdown-menu {
  display: flex;
}
.mobile-dropdown-menu a {
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  padding: 8px 0 8px 12px;
  border-bottom: none;
  border-left: 2px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
}
.mobile-dropdown-menu a:hover {
  color: var(--white);
  border-left-color: var(--red);
}

/* ===== FOOTER ===== */
#footer {
  background: var(--green);
  border-top: none;
}
.footer-top { padding: 80px 0 60px; }
.footer-top-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.footer-logo { margin-bottom: 16px; }
.footer-tagline {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  transition: all .25s ease;
}
.footer-social-link:hover {
  border-color: var(--red);
  color: var(--white);
  background: rgba(204,0,0,0.15);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a,
.footer-links span {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  transition: color .2s;
  line-height: 1.5;
}
.footer-links a:hover { color: var(--red); }
.footer-links--contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact-icon {
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-cta-text {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  transition: color .2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .lunch-grid { grid-template-columns: repeat(2, 1fr); }
  .lunch-card--featured { grid-row: span 1; }
  .reviews-masonry { grid-template-columns: repeat(2, 1fr); }
  .review-card--large { grid-row: span 1; }
  .why-grid { gap: 40px; }
  .location-grid { gap: 40px; }
  .b2b-card { padding: 48px; gap: 40px; }
}

@media (max-width: 900px) {
  .section { padding: 70px 0; }

  .hero-v2 {
    background-size: cover, auto 100%;
    background-position: center, 65% center;
  }
  .hero-v2-inner {
    text-align: center;
    padding: 40px 24px 60px;
  }
  .hero-v2-tagline { margin-left: auto; margin-right: auto; }
  .hero-v2-actions { justify-content: center; }
  .hero-v2-badge { justify-content: center; }

  .trust-items {
    justify-content: center;
    gap: 16px 32px;
  }
  .trust-item { flex: 0 0 calc(50% - 16px); }

  .why-grid { grid-template-columns: 1fr; }
  .why-visual { max-width: 480px; margin: 0 auto; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.15); }

  .lunch-grid { grid-template-columns: 1fr; }
  .lunch-card--featured .lunch-card__img { height: 220px; }

  .reviews-masonry { grid-template-columns: 1fr; }

  .b2b-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 32px;
  }
  .b2b-card__visual { order: -1; }
  .b2b-card__visual img { max-width: 220px; }
  .b2b-perks { text-align: left; display: inline-block; }

  .location-grid { grid-template-columns: 1fr; }
  .location-map { height: 320px; order: -1; }
  .location-buttons { justify-content: center; }

  .action-buttons { flex-direction: column; }
  .action-buttons .btn { width: 100%; }

  nav.desktop-nav { display: none; }
  .hamburger { display: flex; }

  .footer-top-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  :root {
    --header-height: 70px;
    --header-height-scrolled: 56px;
  }

  .hero-v2-h1 { font-size: 48px; }
  .hero-v2 {
    background-position: center, 60% center;
  }
  .halal-stamp { width: 100px; height: 100px; font-size: 11px; }
  .halal-stamp span:first-child { font-size: 13px; }
  .marquee-track span { font-size: 15px; }
  .marquee-emoji { font-size: 15px; }

  .trust-item { flex: 0 0 100%; justify-content: center; }

  .stats-bar { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat-item:last-child { border-bottom: none; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-top: none; }

  .menu-tabs { gap: 8px; }
  .menu-tab { padding: 10px 18px; font-size: 14px; }
  .menu-item__name,
  .menu-item__price { font-size: 17px; }

  .b2b-card { padding: 32px 24px; }

  .footer-top { padding: 60px 0 40px; }
  .footer-top-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 16px; }

  .floating-cta { display: none; }
  .sticky-cta-mobile { display: block; }
}

/* =============================================
   NEW — Hero Enhancements
   ============================================= */

/* Ghost Button (secondary CTA) */
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}


/* Cookie banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(20, 20, 20, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  #cookie-banner.visible { transform: translateY(0); }
  #cookie-banner p {
    font-size: 0.8rem;
    line-height: 1.4;
    color: rgba(255,255,255,0.6);
    margin: 0;
    flex: 1 1 200px;
  }
  #cookie-banner p a {
    color: rgba(255,255,255,0.85);
    text-underline-offset: 2px;
  }
  .cookie-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }
  .cookie-btn {
    padding: 7px 16px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.2s;
    white-space: nowrap;
    line-height: 1;
  }
  .cookie-btn:hover { opacity: 0.8; }
  .cookie-btn--accept  { background: #c8102e; color: #fff; border: none; }
  .cookie-btn--decline { background: transparent; color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.2); }

@media (max-width: 600px) {
  #cookie-banner {
    padding: 12px 16px;
    gap: 10px;
  }

  #cookie-banner p {
    flex: 1 1 100%;
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .cookie-actions {
    width: 100%;
    gap: 8px;
  }

  .cookie-btn {
    flex: 1 1 0;
    min-width: 0;
  }
}

/* ===== B2B page styles ===== */
    .fade-in{opacity:0;transform:translateY(28px);transition:opacity .6s ease,transform .6s ease}
    .fade-in.visible{opacity:1;transform:translateY(0)}
    .fade-in-delay-1{transition-delay:.1s}.fade-in-delay-2{transition-delay:.2s}.fade-in-delay-3{transition-delay:.3s}

    /* ── B2B Hero ── */
    .b2b-hero {
      background: var(--white);
      padding: 160px 0 100px;
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .b2b-hero::before {
      content: '';
      position: absolute;
      top: -200px; right: -100px;
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(0,106,77,0.08) 0%, transparent 65%);
      pointer-events: none;
    }
    .b2b-hero::after {
      content: '';
      position: absolute;
      bottom: -100px; left: -100px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(223,25,42,0.08) 0%, transparent 65%);
      pointer-events: none;
    }
    .b2b-hero-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 24px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
      gap: clamp(36px, 6vw, 72px);
      align-items: center;
      text-align: left;
      position: relative;
      z-index: 1;
    }
    .b2b-hero-copy {
      min-width: 0;
    }
    .b2b-hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0,106,77,0.08);
      border: 1px solid rgba(0,106,77,0.2);
      border-radius: 6px;
      padding: 8px 20px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 28px;
    }
    .b2b-hero-h1 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(52px, 8vw, 96px);
      font-weight: 700;
      font-style: italic;
      text-transform: uppercase;
      color: var(--green);
      line-height: 0.95;
      margin-bottom: 12px;
    }
    .b2b-hero-h1 span { color: var(--red); }
    .b2b-hero-sub {
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      font-size: clamp(16px, 2vw, 20px);
      color: var(--gray);
      margin: 20px 0 44px;
      line-height: 1.6;
    }
    .b2b-hero-actions {
      display: flex;
      gap: 14px;
      justify-content: flex-start;
      flex-wrap: wrap;
      margin-bottom: 26px;
    }
    .b2b-hero-delivery-area {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 500;
      color: var(--gray);
      margin-bottom: 18px;
    }
    .b2b-hero-delivery-area svg {
      flex-shrink: 0;
      color: var(--green);
      opacity: 0.7;
    }
    .b2b-trust-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px 14px;
      margin: 0;
      max-width: 780px;
      padding: 12px 16px;
      border-radius: 10px;
      background: rgba(255,255,255,0.9);
      border: 1px solid rgba(0,106,77,0.14);
      box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    }
    .b2b-trust-row .trust-lead {
      grid-column: 1 / -1;
      color: var(--gray);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .9px;
      text-transform: uppercase;
    }
    .trust-card {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 5px;
      min-width: 0;
      padding: 0 12px 0 0;
      color: var(--green);
      font-size: 12px;
      font-weight: 700;
      white-space: nowrap;
      border-right: 1px solid rgba(0,106,77,0.16);
    }
    .trust-card:last-child {
      border-right: 0;
      padding-right: 0;
    }
    .trust-metrics {
      display: flex;
      align-items: center;
      gap: 5px;
      min-width: 0;
      flex-wrap: nowrap;
    }
    .b2b-trust-row b {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 21px;
      color: var(--red);
      line-height: 1;
      margin-top: 2px;
    }
    .b2b-trust-row small {
      color: var(--gray);
      font-size: 11px;
      font-weight: 700;
      white-space: nowrap;
    }
    .trust-logo {
      display: inline-flex;
      align-items: center;
      font-size: 15px;
      font-weight: 800;
      line-height: 1;
    }
    .trust-logo--google {
      letter-spacing: -.2px;
      background: linear-gradient(90deg, #4285f4 0 24%, #db4437 24% 48%, #f4b400 48% 70%, #0f9d58 70%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .trust-logo--lieferando {
      color: #ff5a00;
    }
    .trust-logo--ubereats {
      color: #05a357;
    }
    .b2b-trust-row em {
      color: #f4b400;
      font-size: 14px;
      font-style: normal;
      letter-spacing: 1px;
      white-space: nowrap;
      margin-top: 1px;
    }
    .b2b-hero-media {
      margin: 46px auto 0;
      width: min(1040px, 100%);
      aspect-ratio: 16 / 8.4;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 28px 70px rgba(0,0,0,0.14), 0 8px 22px rgba(0,0,0,0.08);
      border: 1px solid rgba(0,0,0,0.08);
      background: var(--beige);
    }
    .b2b-hero-media img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
    .b2b-hero-portrait {
      position: relative;
      margin: 0;
      aspect-ratio: 4 / 5;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 30px 72px rgba(0,0,0,0.18), 0 10px 24px rgba(0,0,0,0.08);
      border: 1px solid rgba(0,0,0,0.08);
      background: var(--beige);
    }
    .b2b-hero-portrait img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    /* ── Value props ── */
    .b2b-values { background: var(--beige); }
    .b2b-values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .b2b-offer-overview {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
    }
    .b2b-value-card {
      background: var(--white);
      border-radius: 16px;
      padding: 40px 32px;
      border-bottom: 4px solid transparent;
      transition: all .3s ease;
    }
    .b2b-overview-card {
      min-height: 0;
      border: 1px solid rgba(0,0,0,0.06);
      border-bottom: 0;
      overflow: hidden;
      padding: 0;
      box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 18px 42px rgba(0,0,0,0.06);
    }
    .b2b-overview-card__image {
      display: block;
      width: 100%;
      height: 280px;
      margin: 0;
      object-fit: cover;
      object-position: center;
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .b2b-overview-card__body {
      padding: 26px 28px 28px;
    }
    .b2b-offer-meta {
      display: inline-flex;
      align-items: center;
      min-height: 26px;
      padding: 4px 10px;
      margin-bottom: 14px;
      border-radius: 999px;
      background: rgba(223,25,42,0.08);
      color: var(--red);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 1.1px;
      text-transform: uppercase;
    }
    .b2b-offer-facts {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 18px;
    }
    .b2b-offer-facts span {
      display: inline-flex;
      align-items: center;
      min-height: 32px;
      padding: 6px 11px;
      border-radius: 7px;
      background: rgba(0,106,77,0.07);
      color: var(--green);
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .45px;
    }
    .b2b-value-card:hover { border-bottom-color: var(--red); transform: translateY(-4px); box-shadow: var(--shadow); }
    .b2b-overview-card:hover {
      border-color: rgba(223,25,42,0.18);
      box-shadow: 0 24px 52px rgba(0,0,0,0.1), 0 6px 14px rgba(0,0,0,0.04);
    }
    .b2b-value-icon { font-size: 40px; margin-bottom: 18px; display: block; }
    .b2b-value-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 28px;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 10px;
    }
    .b2b-value-text { font-size: 15px; color: var(--gray); line-height: 1.7; }
    .b2b-overview-subscription {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr) auto;
      align-items: center;
      gap: 28px;
      padding: 34px;
      border-radius: 16px;
      background: var(--red);
      color: var(--white);
      box-shadow: 0 22px 48px rgba(223,25,42,0.24), 0 4px 12px rgba(0,0,0,0.08);
      position: relative;
      overflow: hidden;
    }
    .b2b-overview-subscription::before {
      content: '';
      position: absolute;
      inset: auto -80px -140px auto;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      pointer-events: none;
    }
    .b2b-overview-label {
      display: inline-block;
      margin-bottom: 10px;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.82);
    }
    .b2b-overview-subscription h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(30px, 4vw, 46px);
      font-weight: 700;
      font-style: italic;
      line-height: 1;
      text-transform: uppercase;
      margin: 0 0 10px;
    }
    .b2b-overview-subscription p {
      max-width: 580px;
      margin: 0;
      color: rgba(255,255,255,0.84);
      line-height: 1.65;
      font-size: 15px;
    }
    .b2b-overview-subscription ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 9px;
      position: relative;
      z-index: 1;
    }
    .b2b-overview-subscription li {
      position: relative;
      padding-left: 22px;
      color: var(--white);
      font-size: 14px;
      font-weight: 700;
      line-height: 1.45;
    }
    .b2b-overview-subscription li::before {
      content: '';
      position: absolute;
      top: 5px;
      left: 0;
      width: 12px;
      height: 12px;
      background: var(--white);
      -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
      mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
      -webkit-mask-size: contain;
      mask-size: contain;
    }
    .btn--white {
      background: var(--white);
      color: var(--red);
      border-color: var(--white);
      white-space: nowrap;
      position: relative;
      z-index: 1;
    }
    .btn--white:hover {
      background: var(--green);
      border-color: var(--green);
      color: var(--white);
    }

    /* ── Services Tabs ── */
    .b2b-services { background: var(--beige); }
    .services-container {
      display: grid;
      grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
      gap: 24px;
      align-items: start;
    }
    .services-nav {
      display: grid;
      gap: 12px;
      position: sticky;
      top: 92px;
      padding: 18px;
      border-radius: 12px;
      background: rgba(255,255,255,0.86);
      border: 1px solid rgba(0,0,0,0.07);
      box-shadow: 0 16px 44px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
    }
    .services-nav__eyebrow {
      margin: 0;
      color: var(--red);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 1.6px;
      text-transform: uppercase;
    }
    .services-nav__title {
      margin: -4px 0 0;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 34px;
      font-weight: 700;
      line-height: 1;
      text-transform: uppercase;
      color: var(--green);
    }
    .services-nav__hint {
      margin: 0 0 4px;
      color: var(--gray);
      font-size: 13px;
      line-height: 1.55;
    }
    .service-tab {
      width: 100%;
      display: grid;
      grid-template-columns: 42px minmax(0, 1fr);
      gap: 13px;
      align-items: center;
      padding: 16px;
      background: var(--white);
      border: 2px solid rgba(0,106,77,0.12);
      border-radius: 10px;
      cursor: pointer;
      text-align: left;
      transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
      position: relative;
      overflow: hidden;
    }
    .service-tab::after {
      content: 'Auswählen';
      position: absolute;
      top: 10px;
      right: 12px;
      color: rgba(0,106,77,0.58);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .9px;
      text-transform: uppercase;
    }
    .service-tab:hover {
      border-color: rgba(223,25,42,0.35);
      transform: translateY(-2px);
      box-shadow: 0 14px 32px rgba(0,0,0,0.08);
    }
    .service-tab.active {
      background: var(--red);
      border-color: var(--red);
      box-shadow: 0 18px 42px rgba(223,25,42,0.26), 0 4px 12px rgba(0,0,0,0.08);
      transform: translateY(-1px);
    }
    .service-tab.active::after {
      content: 'Aktiv';
      color: rgba(255,255,255,0.78);
    }

    .tab-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 9px;
      color: var(--green);
      background: rgba(0,106,77,0.08);
      transition: background .22s ease, color .22s ease;
    }
    .service-tab.active .tab-icon {
      color: var(--red);
      background: var(--white);
    }
    .tab-copy {
      display: grid;
      gap: 4px;
      min-width: 0;
      padding-right: 56px;
    }
    .tab-title {
      display: block;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 23px;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--green);
      transition: color 0.3s ease;
      line-height: 1;
    }
    .tab-meta,
    .tab-foot {
      display: block;
      font-size: 12px;
      line-height: 1.35;
    }
    .tab-meta {
      color: var(--dark);
      font-weight: 800;
    }
    .tab-foot {
      color: var(--gray);
      font-weight: 600;
    }
    .service-tab.active .tab-title,
    .service-tab.active .tab-meta,
    .service-tab.active .tab-foot {
      color: var(--white);
    }

    .services-content-area {
      position: relative;
      min-height: 500px;
    }
    .service-panel {
      position: absolute;
      top: 0; left: 0; right: 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
      transition: all 0.4s ease;
      background: var(--white);
      padding: 36px;
      border-radius: 12px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(0,0,0,0.06);
    }
    .service-panel.active {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      position: relative;
    }
    .service-panel-actions {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-top: 24px;
      padding-top: 22px;
      border-top: 1px solid rgba(0,0,0,0.07);
    }
    .service-panel-actions span {
      color: var(--gray);
      font-size: 13px;
      font-weight: 700;
      line-height: 1.55;
      text-align: right;
    }

    .service-tagline {
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 18px;
      color: var(--red);
      margin-bottom: 16px;
    }
    .service-desc { font-size: 16px; color: var(--gray); line-height: 1.75; margin-bottom: 28px; }
    .service-chips {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
      margin-bottom: 32px;
    }
    .chip {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .6px;
      text-transform: uppercase;
      line-height: 1.25;
      text-align: center;
      padding: 8px 12px;
      border-radius: 8px;
      background: #f7f6f2;
      color: var(--green);
      border: 1px solid rgba(0,0,0,0.07);
    }
    .chip--green { background: rgba(0,106,77,0.08); color: var(--green); border-color: rgba(0,106,77,0.2); }
    .chip--red { background: rgba(223,25,42,0.08); color: var(--red); border-color: rgba(223,25,42,0.2); }

    /* ── Packages ── */
    .package-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .package-grid--office {
      grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
      align-items: stretch;
    }
    .package-grid--event {
      grid-template-columns: minmax(0, 1.1fr) minmax(240px, .9fr);
    }
    .package-card {
      background: var(--beige);
      border-radius: 12px;
      padding: 24px;
      text-align: center;
      transition: all 0.3s ease;
      border: 2px solid transparent;
      position: relative;
    }
    .package-card--primary {
      border-color: rgba(223,25,42,0.32);
      background: linear-gradient(180deg, #fff 0%, #fff7f7 100%);
    }
    .package-card--lunch-order {
      text-align: left;
      padding: 30px;
    }
    .package-card--lunch-order .package-card__badge {
      margin-bottom: 14px;
    }
    .package-card--lunch-order .package-card__title {
      font-size: 34px;
      margin-bottom: 8px;
    }
    .package-card--lunch-order .package-card__price {
      font-size: 48px;
      margin-bottom: 18px;
    }
    .package-card--calculator,
    .package-card--notice {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 12px;
    }
    .package-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: var(--shadow); }
    .package-card__badge {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 100px;
      background: var(--green);
      color: var(--white);
      margin-bottom: 12px;
    }
    .package-card__title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 20px;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 4px;
    }
    .package-card__price {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 36px;
      font-weight: 700;
      color: var(--red);
      line-height: 1;
      margin-bottom: 12px;
    }
    .package-card__price span {
      font-size: 16px;
      color: var(--gray);
      font-weight: 500;
    }
    .package-card__list {
      list-style: none;
      padding: 0;
      margin: 0;
      text-align: left;
    }
    .package-card__list li {
      font-size: 14px;
      color: var(--gray);
      padding: 6px 0;
      border-bottom: 1px solid rgba(0,0,0,0.05);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .package-card__list li::before {
      content: '';
      display: inline-block;
      width: 16px;
      height: 16px;
      background: var(--green);
      -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
      mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
      -webkit-mask-size: contain;
      mask-size: contain;
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
      flex-shrink: 0;
    }
    .package-card__list li.goodie::before {
      background: var(--red);
      -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 12 20 22 4 22 4 12'/%3E%3Crect x='2' y='7' width='20' height='5'/%3E%3Cline x1='12' y1='22' x2='12' y2='7'/%3E%3Cpath d='M12 7H7.5a2.5 2.5 0 0 1 0-5C11 2 12 7 12 7z'/%3E%3Cpath d='M12 7h4.5a2.5 2.5 0 0 0 0-5C13 2 12 7 12 7z'/%3E%3C/svg%3E");
      mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 12 20 22 4 22 4 12'/%3E%3Crect x='2' y='7' width='20' height='5'/%3E%3Cline x1='12' y1='22' x2='12' y2='7'/%3E%3Cpath d='M12 7H7.5a2.5 2.5 0 0 1 0-5C11 2 12 7 12 7z'/%3E%3Cpath d='M12 7h4.5a2.5 2.5 0 0 0 0-5C13 2 12 7 12 7z'/%3E%3C/svg%3E");
    }
    .people-stepper {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin: 4px auto 8px;
      padding: 8px;
      border-radius: 8px;
      background: var(--white);
      border: 1px solid rgba(0,0,0,0.08);
    }
    .package-card--calculator .people-stepper {
      margin-top: 12px;
      margin-bottom: 18px;
    }
    .stepper-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border: 0;
      border-radius: 6px;
      background: var(--green);
      color: var(--white);
      font-size: 22px;
      font-weight: 700;
      cursor: pointer;
      line-height: 1;
      transition: background .2s ease, transform .2s ease;
    }
    .stepper-btn:hover { background: var(--red); transform: translateY(-1px); }
    .stepper-btn:disabled { opacity: .45; cursor: not-allowed; transform: none; }
    .people-count {
      min-width: 32px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 30px;
      font-weight: 700;
      color: var(--green);
      text-align: center;
    }
    .calculator-note {
      margin: 0;
      color: var(--gray);
      font-size: 13px;
      line-height: 1.55;
    }
    .btn--small {
      min-height: 40px;
      padding: 10px 16px;
      font-size: 13px;
      align-self: center;
      margin-top: 10px;
    }
    .subscription-card {
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) minmax(260px, .75fr);
      gap: 34px;
      padding: clamp(28px, 4vw, 42px);
      border-radius: 12px;
      background: linear-gradient(135deg, #fff 0%, #faf9f6 100%);
      border: 1px solid rgba(0,106,77,0.16);
      box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 18px 42px rgba(0,0,0,0.05);
      text-align: left;
      align-items: start;
    }
    .subscription-card__main p,
    .subscription-card__highlight p {
      color: var(--gray);
      font-size: 15px;
      line-height: 1.7;
      margin: 10px 0 18px;
    }
    .subscription-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
      list-style: none;
      margin: 22px 0 0;
      padding: 0;
      border-top: 1px solid rgba(0,106,77,0.14);
    }
    .subscription-list li {
      position: relative;
      padding: 14px 8px 14px 38px;
      border-bottom: 1px solid rgba(0,106,77,0.14);
      background: transparent;
      color: var(--green);
      font-size: 14px;
      font-weight: 700;
      line-height: 1.45;
    }
    .subscription-list li::before {
      content: counter(subscription-step);
      counter-increment: subscription-step;
      position: absolute;
      top: 14px;
      left: 0;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: rgba(0,106,77,0.09);
      color: var(--green);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 15px;
      font-weight: 700;
      line-height: 24px;
      text-align: center;
    }
    .subscription-list { counter-reset: subscription-step; }
    .subscription-card__highlight {
      position: relative;
      padding: 24px 0 0 26px;
      border-radius: 0;
      background: transparent;
      color: var(--green);
      align-self: stretch;
      overflow: visible;
      border-left: 4px solid var(--red);
    }
    .subscription-card__highlight::before {
      display: none;
    }
    .subscription-card__highlight h5 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 32px;
      font-weight: 700;
      text-transform: uppercase;
      margin: 0;
    }
    .subscription-card__highlight p {
      color: var(--gray);
      margin-bottom: 14px;
    }
    .subscription-card__highlight strong {
      display: block;
      margin-top: 10px;
      padding-top: 16px;
      border-top: 1px solid rgba(0,106,77,0.14);
      background: transparent;
      color: var(--red);
      font-size: 13px;
      font-weight: 800;
      line-height: 1.45;
      box-shadow: none;
    }
    .services-cta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      margin-top: 28px;
      padding: 24px 28px;
      border-radius: 12px;
      background: var(--green);
      color: var(--white);
      box-shadow: var(--shadow-lg);
    }
    .services-cta strong {
      display: block;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 28px;
      line-height: 1;
      text-transform: uppercase;
      margin-bottom: 6px;
    }
    .services-cta span {
      display: block;
      color: rgba(255,255,255,0.76);
      font-size: 14px;
      line-height: 1.6;
    }
    .services-cta-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      flex-shrink: 0;
    }
    .services-cta .btn--outline {
      color: var(--white);
      border-color: rgba(255,255,255,0.45);
    }

    /* ── Goodies Section ── */
    .b2b-goodies { background: var(--white); }
    .goodies-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .goodie-card {
      background: var(--beige);
      border-radius: 16px;
      padding: 32px 24px;
      text-align: center;
      transition: all 0.3s ease;
    }
    .goodie-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
    .goodie-icon {
      width: 64px; height: 64px;
      background: var(--white);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 16px;
      font-size: 28px;
      box-shadow: var(--shadow);
    }
    .goodie-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 20px;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 8px;
    }
    .goodie-text { font-size: 14px; color: var(--gray); line-height: 1.6; }

    /* ── How it works ── */
    .b2b-how { background: var(--beige); }
    .how-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      counter-reset: step;
    }
    .how-step { text-align: center; position: relative; }
    .how-step:not(:last-child)::after {
      content: '→';
      position: absolute;
      top: 32px;
      right: -24px;
      font-size: 24px;
      color: rgba(0,0,0,0.15);
    }
    .how-step-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 64px; height: 64px;
      border-radius: 50%;
      background: var(--red);
      color: var(--white);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 20px;
      box-shadow: 0 4px 20px rgba(223,25,42,0.3);
    }
    .how-step-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 24px;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 10px;
    }
    .how-step-text { font-size: 14px; color: var(--gray); line-height: 1.7; }
    .b2b-food-break {
      background: var(--beige);
      padding-top: 0;
    }
    .b2b-food-break__media {
      margin: 0;
      aspect-ratio: 16 / 7.6;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 22px 54px rgba(0,0,0,0.12), 0 6px 18px rgba(0,0,0,0.06);
      border: 1px solid rgba(0,0,0,0.08);
      background: var(--white);
    }
    .b2b-food-break__media img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    /* ── Contact CTA ── */
    .b2b-contact {
      background: var(--green);
      position: relative;
      overflow: hidden;
    }
    .b2b-contact::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 60% 50%, rgba(223,25,42,0.18) 0%, transparent 60%);
      pointer-events: none;
    }
    .b2b-contact-inner {
      max-width: 720px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 1;
    }
    .b2b-contact-h2 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(40px, 6vw, 72px);
      font-weight: 700;
      font-style: italic;
      text-transform: uppercase;
      color: var(--white);
      line-height: 1.05;
      margin-bottom: 16px;
    }
    .b2b-contact-h2 span { color: var(--red); }
    .b2b-contact-sub {
      font-size: 16px;
      color: rgba(255,255,255,0.7);
      line-height: 1.75;
      margin-bottom: 40px;
    }
    .b2b-response-note {
      max-width: 660px;
      margin: -18px auto 32px;
      padding: 16px 18px;
      border-radius: 10px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.18);
      color: rgba(255,255,255,0.82);
      font-size: 14px;
      font-weight: 700;
      line-height: 1.65;
    }
    .b2b-contact-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .b2b-form {
      margin: 42px auto 0;
      max-width: 760px;
      padding: 28px;
      border-radius: 12px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.18);
      text-align: left;
    }
    .form-required-note {
      margin: 0 0 18px;
      color: rgba(255,255,255,0.74);
      font-size: 13px;
      line-height: 1.55;
    }
    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-bottom: 16px;
    }
    .form-hp,
    .b2b-form input[type="hidden"] {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }
    .b2b-form label {
      display: flex;
      flex-direction: column;
      gap: 7px;
      color: var(--white);
      font-size: 13px;
      font-weight: 700;
    }
    .b2b-form input,
    .b2b-form select,
    .b2b-form textarea {
      width: 100%;
      min-height: 46px;
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 8px;
      background: rgba(255,255,255,0.94);
      color: var(--dark);
      font: 500 15px/1.2 'Inter', sans-serif;
      padding: 0 14px;
      outline: none;
      transition: border-color .2s ease, box-shadow .2s ease;
    }
    .b2b-form textarea {
      min-height: 116px;
      padding-top: 13px;
      resize: vertical;
      line-height: 1.5;
    }
    .b2b-form input:focus,
    .b2b-form select:focus,
    .b2b-form textarea:focus {
      border-color: var(--red);
      box-shadow: 0 0 0 3px rgba(223,25,42,0.22);
    }
    .offer-choice {
      grid-column: 1 / -1;
      border: 0;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }
    .offer-choice legend {
      grid-column: 1 / -1;
      color: var(--white);
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 7px;
    }
    .offer-choice label {
      position: relative;
      display: block;
      min-height: 48px;
      cursor: pointer;
    }
    .offer-choice input {
      position: absolute;
      inset: 0;
      opacity: 0;
      cursor: pointer;
    }
    .offer-choice span {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      min-height: 48px;
      border-radius: 8px;
      background: rgba(255,255,255,0.92);
      border: 2px solid transparent;
      color: var(--green);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 19px;
      font-weight: 700;
      text-transform: uppercase;
      transition: border-color .2s ease, background .2s ease, color .2s ease;
    }
    .offer-choice input:checked + span {
      background: var(--red);
      border-color: rgba(255,255,255,0.4);
      color: var(--white);
    }
    .form-message {
      grid-column: 1 / -1;
    }
    .form-helper {
      margin: 4px 0 20px;
      color: rgba(255,255,255,0.72);
      font-size: 13px;
      line-height: 1.6;
    }
    .b2b-form .btn {
      width: auto;
    }

    /* ── 2-Schritt-Formular ── */
    .form-steps-indicator {
      display: flex;
      align-items: center;
      gap: 0;
      margin-bottom: 28px;
    }
    .form-step-dot {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .form-step-dot__num {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 16px;
      font-weight: 700;
      background: rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.5);
      border: 2px solid rgba(255,255,255,0.2);
      flex-shrink: 0;
      transition: background .3s ease, color .3s ease, border-color .3s ease;
    }
    .form-step-dot.active .form-step-dot__num,
    .form-step-dot.done .form-step-dot__num {
      background: var(--red);
      color: var(--white);
      border-color: var(--red);
    }
    .form-step-dot__label {
      font-size: 13px;
      font-weight: 600;
      color: rgba(255,255,255,0.45);
      transition: color .3s ease;
    }
    .form-step-dot.active .form-step-dot__label,
    .form-step-dot.done .form-step-dot__label {
      color: var(--white);
    }
    .form-step-connector {
      flex: 1;
      height: 2px;
      background: rgba(255,255,255,0.15);
      margin: 0 12px;
    }
    /* Vertrauen unter Submit-Button */
    .form-trust-note {
      margin-top: 14px;
      font-size: 12px;
      color: rgba(255,255,255,0.6);
      text-align: center;
      letter-spacing: 0.2px;
      line-height: 1.5;
    }

    .form-step-panel[hidden] { display: none; }
    .form-step-panel .form-grid { margin-bottom: 20px; }
    .b2b-form input.field-error,
    .b2b-form select.field-error,
    .b2b-form textarea.field-error {
      border-color: #ff6b6b;
      box-shadow: 0 0 0 3px rgba(255,107,107,0.25);
    }

    /* ── Note box ── */
    .b2b-note {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 8px;
      padding: 20px 28px;
      font-size: 14px;
      color: rgba(255,255,255,0.6);
      line-height: 1.7;
      margin-top: 48px;
      text-align: left;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    .b2b-note strong { color: var(--white); }

    /* ── Depth & Layering Enhancements ── */
    .b2b-values-grid {
      align-items: stretch;
    }
    .b2b-value-card {
      box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.04);
    }
    .b2b-value-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 4px 8px rgba(0,0,0,0.04);
    }

    .service-panel {
      box-shadow: 0 4px 6px rgba(0,0,0,0.02), 0 20px 50px rgba(0,0,0,0.06);
      border: 1px solid rgba(0,0,0,0.04);
    }

    .package-card {
      box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.03);
      background: linear-gradient(180deg, #faf9f6 0%, #f5f3ee 100%);
    }
    .package-card--primary {
      background: linear-gradient(180deg, #fff 0%, #fff7f7 100%);
    }
    .package-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 24px 48px rgba(0,0,0,0.1), 0 8px 16px rgba(0,0,0,0.04);
      border-color: rgba(223,25,42,0.3);
      z-index: 2;
    }

    .goodies-grid {
      align-items: stretch;
    }
    .goodie-card {
      box-shadow: 0 1px 2px rgba(0,0,0,0.03);
    }
    .goodie-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 32px rgba(0,0,0,0.06);
    }

    .how-steps {
      position: relative;
    }
    .how-steps::before {
      content: '';
      position: absolute;
      top: 32px;
      left: calc(16.666% + 8px);
      right: calc(16.666% + 8px);
      height: 2px;
      background: linear-gradient(90deg, var(--red), var(--green));
      opacity: 0.12;
      border-radius: 1px;
    }

    /* ── Responsive ── */
    @media (max-width: 900px) {
      .b2b-hero {
        padding-bottom: 72px;
      }
      .b2b-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        max-width: 720px;
      }
      .b2b-hero-actions,
      .b2b-trust-row {
        justify-content: center;
      }
      .b2b-trust-row {
        margin-left: auto;
        margin-right: auto;
      }
      .b2b-hero-portrait {
        max-width: 480px;
        width: 100%;
        margin: 0 auto;
      }
      .b2b-values-grid { grid-template-columns: 1fr; }
      .b2b-offer-overview { grid-template-columns: 1fr; }
      .b2b-overview-subscription {
        grid-template-columns: 1fr;
        align-items: start;
      }
      .services-container {
        grid-template-columns: 1fr;
        gap: 18px;
      }
      .services-nav {
        position: static;
        display: grid;
        padding: 16px;
        gap: 10px;
      }
      .service-tab {
        transform: none !important;
        padding: 14px;
        grid-template-columns: 38px minmax(0, 1fr);
      }
      .tab-icon {
        width: 38px;
        height: 38px;
      }
      .tab-title { font-size: 20px; }
      .tab-copy { padding-right: 50px; }
      .service-panel { padding: 24px 20px; }
      .service-panel-actions {
        align-items: stretch;
        flex-direction: column;
      }
      .service-panel-actions span {
        text-align: left;
      }
      .service-chips { grid-template-columns: repeat(2, 1fr); }
      .package-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .package-grid--office,
      .package-grid--event { grid-template-columns: 1fr; }
      .goodies-grid { grid-template-columns: 1fr 1fr; }
      .how-steps { grid-template-columns: 1fr; gap: 32px; }
      .how-step::after { display: none; }
      .b2b-food-break__media { aspect-ratio: 16 / 9; }
      .form-grid { grid-template-columns: 1fr; }
      .offer-choice { grid-template-columns: 1fr; }
      .subscription-card,
      .subscription-list {
        grid-template-columns: 1fr;
      }
      .services-cta {
        align-items: flex-start;
        flex-direction: column;
      }
    }
    @media (max-width: 700px) {
      .b2b-trust-row {
        display: flex;
        flex-direction: column;
      }
      .trust-card {
        border-right: 0;
        border-top: 1px solid rgba(0,106,77,0.12);
        padding: 10px 0 0;
      }
      .trust-metrics {
        width: 100%;
        justify-content: space-between;
      }
    }
    @media (max-width: 480px) {
      .package-grid { grid-template-columns: 1fr; }
      .service-chips { grid-template-columns: 1fr; }
      .b2b-hero { padding-top: 130px; }
      .b2b-hero-portrait { border-radius: 12px; }
      .b2b-food-break__media { border-radius: 10px; }
      .b2b-hero-actions .btn,
      .b2b-contact-actions .btn,
      .b2b-form .btn,
      .service-panel-actions .btn,
      .services-cta .btn,
      .services-cta-actions {
        width: 100%;
        justify-content: center;
      }
      .b2b-trust-row { align-items: stretch; }
      .b2b-form { padding: 20px; }
    }
    @media (min-width: 600px) and (max-width: 900px) {
      .b2b-values-grid { grid-template-columns: 1fr 1fr; }
      .goodies-grid { grid-template-columns: repeat(2, 1fr); }
    }
