/* ==========================================================================
   blue2me — Onepager Theme
   Design tokens 1:1 aus Figma-Wireframe
   ========================================================================== */

:root {
  /* Colors */
  --b2m-navy: #163762;
  --b2m-navy-2: #005281;
  --b2m-coral: #ff5154;
  --b2m-cyan: #96c9dc;
  --b2m-yellow: #ffff89;
  --b2m-cream: #f7f7f2;
  --b2m-white: #ffffff;
  --b2m-grey: #9f9c9c;
  --b2m-grey-2: #adadad;
  --b2m-grey-3: #e6e6e0;
  --b2m-black: #0c1a2e;

  /* Fonts */
  --font-display: "Inria Serif", Georgia, serif;
  --font-heading: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-ui: "Poppins", "Inter", sans-serif;

  /* Spacing scale */
  --container-w: 1280px;
  --container-x: clamp(18px, 4vw, 72px);
  --section-y: clamp(40px, 4.5vw, 72px);

  /* Radii */
  --r-sm: 8px;
  --r-md: 18px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(22, 55, 98, 0.06);
  --shadow-md: 0 8px 24px rgba(22, 55, 98, 0.10);
  --shadow-lg: 0 18px 48px rgba(22, 55, 98, 0.14);

  /* Transitions */
  --t-fast: 160ms cubic-bezier(.2,.7,.2,1);
  --t-base: 280ms cubic-bezier(.2,.7,.2,1);
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--b2m-navy);
  background: var(--b2m-white);
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1em; }
h1, h2, h3, h4, h5, h6 { margin: 0 0 .4em; font-family: var(--font-heading); font-weight: 800; line-height: 1.05; letter-spacing: -.02em; color: var(--b2m-navy); }

.skip-link {
  position: absolute; left: -9999px; top: 0; padding: 12px 18px;
  background: var(--b2m-navy); color: #fff; z-index: 9999; border-radius: 0 0 var(--r-md) 0;
}
.skip-link:focus { left: 0; }

/* ==========================================================================
   Typography utilities
   ========================================================================== */
.eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--b2m-coral);
  margin-bottom: 14px;
}

.h1 { font-size: clamp(36px, 4.8vw, 60px); line-height: .95; letter-spacing: -.025em; font-weight: 900; }
.h2 { font-size: clamp(28px, 3.4vw, 48px); line-height: 1; letter-spacing: -.02em; font-weight: 900; }
.h3 { font-size: clamp(20px, 2vw, 26px); line-height: 1.1; }
.h4 { font-size: clamp(17px, 1.5vw, 21px); line-height: 1.2; }

.lead {
  font-size: clamp(15px, 1.15vw, 19px);
  line-height: 1.55;
  color: rgba(22, 55, 98, .78);
  max-width: 64ch;
}

/* When .lead lives inside a centered head, center it as a block too */
.testimonials__head .lead,
.influencers__head .lead,
.why__head .lead,
.comparison__head .lead,
.faq__head .lead {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.serif { font-family: var(--font-display); font-style: italic; font-weight: 400; }

/* ==========================================================================
   Layout primitives
   ========================================================================== */
.wrap {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding-inline: var(--container-x);
}

.section {
  padding-block: var(--section-y);
  position: relative;
}

.section--tight { padding-block: clamp(40px, 5vw, 64px); }

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

@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  border-radius: var(--r-pill);
  transition: transform var(--t-fast), box-shadow var(--t-base), background var(--t-base), color var(--t-base);
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  background: var(--b2m-coral);
  color: #fff;
  box-shadow: 0 6px 18px rgba(255, 81, 84, .28);
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(255, 81, 84, .35); }

.btn--secondary {
  background: transparent;
  color: var(--b2m-navy);
  border: 1.5px solid var(--b2m-navy);
}
.btn--secondary:hover { background: var(--b2m-navy); color: #fff; }

.btn--navy {
  background: var(--b2m-navy);
  color: #fff;
}
.btn--navy:hover { background: var(--b2m-navy-2); transform: translateY(-1px); }

.btn--ghost-light {
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,.4);
  backdrop-filter: blur(6px);
}
.btn--ghost-light:hover { background: rgba(255,255,255,.24); }

.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--block { width: 100%; }

/* ==========================================================================
   Cards & Surfaces
   ========================================================================== */
.card {
  background: var(--b2m-cream);
  border-radius: var(--r-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.card--white { background: #fff; border: 1px solid var(--b2m-grey-3); }

.surface-cream { background: var(--b2m-cream); }
.surface-navy { background: var(--b2m-navy); color: #fff; }
.surface-navy h1, .surface-navy h2, .surface-navy h3 { color: #fff; }
.surface-cyan { background: var(--b2m-cyan); }

/* ==========================================================================
   Header — transparent over hero, becomes solid on scroll
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--t-base), backdrop-filter var(--t-base), border-color var(--t-base);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: rgba(22,55,98,.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: clamp(14px, 1.4vw, 20px);
}

.site-header__logo img { max-height: clamp(32px, 3.4vw, 42px); width: auto; }

/* On dark hero (transparent state) — invert logo to white */
.site-header:not(.is-scrolled) .site-header__logo img {
  filter: brightness(0) invert(1);
}

.site-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.site-nav a {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding: 6px 0;
  transition: color var(--t-fast);
}
.site-header.is-scrolled .site-nav a { color: var(--b2m-navy); }
.site-nav a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--b2m-coral); transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-base);
}
.site-nav a:hover { color: var(--b2m-coral); }
.site-nav a:hover::after { transform: scaleX(1); }

.site-header__actions { display: flex; align-items: center; gap: 14px; }

.icon-btn {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-pill); color: #fff;
  position: relative;
  transition: background var(--t-base), color var(--t-base);
}
.site-header.is-scrolled .icon-btn { color: var(--b2m-navy); }
.icon-btn:hover { background: rgba(255,255,255,.16); }
.site-header.is-scrolled .icon-btn:hover { background: var(--b2m-cream); }
.icon-btn .cart-count {
  position: absolute; top: 4px; right: 2px;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--b2m-coral); color: #fff;
  border-radius: 999px; font-size: 11px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}

.btn-login {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 22px; border-radius: var(--r-pill);
  border: 1.5px solid #fff;
  font-family: var(--font-ui); font-weight: 600; font-size: 14px;
  color: #fff; transition: all var(--t-base);
}
.btn-login:hover { background: #fff; color: var(--b2m-navy); }
.site-header.is-scrolled .btn-login { border-color: var(--b2m-navy); color: var(--b2m-navy); }
.site-header.is-scrolled .btn-login:hover { background: var(--b2m-navy); color: #fff; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav-toggle span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all var(--t-base); }
.site-header.is-scrolled .nav-toggle span { background: var(--b2m-navy); }

@media (max-width: 900px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .site-nav.is-open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 24px var(--container-x); gap: 18px;
    border-bottom: 1px solid var(--b2m-grey-3);
    box-shadow: var(--shadow-md);
  }
  .btn-login span:not(.icon) { display: none; }
}

/* ==========================================================================
   Promo marquee — yellow per Figma
   ========================================================================== */
.promo-bar {
  background: var(--b2m-yellow);
  color: var(--b2m-navy);
  font-family: var(--font-ui);
  font-weight: 800;
  overflow: hidden;
  padding: 14px 0;
  position: relative;
  z-index: 99;
}
.marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee span {
  padding-inline: 32px;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.marquee span::before {
  content: "✦";
  display: inline-block;
  margin-right: 32px;
  color: var(--b2m-coral);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   HERO — Figma 1:1: cyan gradient + box image as full-bleed background
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(180deg, #498397 0%, #5e9fb3 60%, #659cb0 100%);
  color: #fff;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h, 122px) + 24px);
  padding-bottom: clamp(40px, 5vw, 80px);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
/* Soft left fade so headline stays readable */
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(73,131,151,.92) 0%, rgba(73,131,151,.55) 32%, rgba(73,131,151,0) 56%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 620px) 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.hero__copy { max-width: 620px; }

.hero__copy h1 {
  font-size: clamp(34px, 4.4vw, 60px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -.025em;
  margin-bottom: 22px;
  color: #fff;
  text-wrap: balance;
}

.hero__lead {
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.55;
  color: rgba(255,255,255,.92);
  max-width: 56ch;
  margin-bottom: 28px;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* Override secondary CTA on dark hero — white border, white text */
.hero .btn--secondary {
  background: #fff;
  color: var(--b2m-navy);
  border-color: #fff;
}
.hero .btn--secondary:hover { background: transparent; color: #fff; border-color: #fff; }

.hero__trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__trust-avatars { display: flex; flex-shrink: 0; }
.hero__trust-avatars span,
.hero__trust-avatars img {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: linear-gradient(135deg, var(--b2m-cyan), var(--b2m-navy));
  margin-left: -12px;
  box-shadow: 0 2px 6px rgba(0,0,0,.18);
  object-fit: cover;
  display: block;
}
.hero__trust-avatars span:first-child,
.hero__trust-avatars img:first-child { margin-left: 0; }
.hero__trust-meta { font-family: var(--font-ui); font-size: 13.5px; line-height: 1.3; color: #fff; }
.hero__trust-meta strong { font-weight: 700; color: #fff; display: block; }
.hero__trust-meta .stars { color: #ffd864; letter-spacing: 1px; }
.hero__trust-meta .stars b { color: #fff; margin-left: 6px; font-weight: 700; }

/* Visual column kept empty — image is full-bleed via .hero__bg */
.hero__visual { display: none; }

/* === Tablet — pull image right edge in === */
@media (max-width: 1100px) {
  .hero__bg img { object-position: 75% center; }
  .hero__inner { grid-template-columns: minmax(0, 540px) 1fr; gap: 24px; }
}

/* === Mobile — Box centered as background, text on dark gradient overlay === */
@media (max-width: 760px) {
  .hero {
    min-height: 100svh;
    padding-top: calc(var(--header-h, 110px) + 20px);
    padding-bottom: 28px;
    display: flex;
    align-items: flex-end;
  }
  .hero__bg {
    position: absolute;
    inset: 0;
    height: auto;
    margin-top: 0;
  }
  .hero__bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 65% 40%;
  }
  /* Strong gradient — box stays visible at top, text dark area at bottom */
  .hero__bg::after {
    display: block;
    background: linear-gradient(180deg,
      rgba(22, 55, 98, 0) 0%,
      rgba(22, 55, 98, .15) 30%,
      rgba(22, 55, 98, .55) 55%,
      rgba(22, 55, 98, .92) 80%,
      rgba(22, 55, 98, .96) 100%
    );
  }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 0;
    align-items: end;
  }
  .hero__copy {
    max-width: none;
    text-shadow: 0 2px 16px rgba(0, 0, 0, .35);
  }
  .hero__copy h1 {
    font-size: clamp(28px, 7.4vw, 38px);
    line-height: 1.06;
    margin-bottom: 12px;
    letter-spacing: -.02em;
  }
  .hero__lead {
    font-size: 14.5px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, .94);
  }
  .hero__cta {
    gap: 10px;
    margin-bottom: 20px;
    text-shadow: none;
  }
  .hero__cta .btn { flex: 1 1 calc(50% - 5px); justify-content: center; padding: 13px 18px; font-size: 14px; }
  .hero__trust { gap: 12px; text-shadow: none; }
  .hero__trust-avatars span,
  .hero__trust-avatars img { width: 32px; height: 32px; }
  .hero__trust-meta { font-size: 12px; }
  .hero__trust-meta strong { font-size: 13px; }
}

/* === Very small phones === */
@media (max-width: 380px) {
  .hero { padding-bottom: 22px; }
  .hero__copy h1 { font-size: 26px; margin-bottom: 10px; }
  .hero__lead { font-size: 14px; margin-bottom: 16px; }
  .hero__cta .btn { flex: 1 1 100%; padding: 12px 16px; }
  .hero__trust-meta { font-size: 11.5px; }
  .hero__bg img { object-position: 65% 35%; }
}

/* === Very short viewports (landscape phones) === */
@media (max-height: 700px) and (max-width: 760px) {
  .hero__copy h1 { font-size: 24px; margin-bottom: 8px; }
  .hero__lead { font-size: 13.5px; margin-bottom: 14px; }
  .hero__cta { margin-bottom: 14px; }
  .hero__trust { display: none; }
}

/* ==========================================================================
   Trust strip (3 cols)
   ========================================================================== */
.trust-strip {
  background: #fff;
  padding-block: clamp(36px, 4vw, 64px);
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}
.trust-strip__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.trust-strip__icon {
  width: 120px; height: 120px;
  margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
}
.trust-strip__icon img { width: 100%; height: 100%; object-fit: contain; }
.trust-strip__item h3 {
  font-size: 20px; font-weight: 800; margin-bottom: 10px;
  font-family: var(--font-ui);
}
.trust-strip__item p {
  color: rgba(22,55,98,.7);
  font-size: 15px; line-height: 1.55;
  max-width: 36ch;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .trust-strip__grid { grid-template-columns: 1fr; gap: 28px; }
  .trust-strip__icon { width: 130px; height: 130px; }
}

/* ==========================================================================
   How it works
   ========================================================================== */
.how {
  background: #fff;
}
.how__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.how__visual {
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 400px;
  background: var(--b2m-cream);
  position: relative;
}
.how__visual img { width: 100%; height: 100%; object-fit: cover; }
.how__panel {
  background: var(--b2m-cream);
  border-radius: var(--r-lg);
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.how__panel .eyebrow { color: var(--b2m-coral); }
.how__panel h2 { font-size: clamp(28px, 3.2vw, 44px); margin-bottom: 24px; }
.how__steps { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.how__step { display: flex; gap: 20px; align-items: flex-start; }
.how__step-num {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--b2m-navy);
  color: #fff;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}
.how__step h4 { font-size: 19px; margin-bottom: 6px; font-family: var(--font-ui); font-weight: 700; }
.how__step p { font-size: 14.5px; line-height: 1.55; color: rgba(22,55,98,.7); margin: 0; }
.how__panel-cta { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .how__inner { grid-template-columns: 1fr; }
  .how__visual { min-height: 320px; }
  .how__panel { padding: 36px 28px; }
}

/* ==========================================================================
   Products grid
   ========================================================================== */
.products { background: #fff; }
.products__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
.products__head h2 { font-size: clamp(36px, 4vw, 60px); }
.products__head .lead { margin-bottom: 4px; }

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--b2m-cream);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.product-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--b2m-cream);
}
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.product-card:hover .product-card__media img { transform: scale(1.04); }

.product-card__fav {
  position: absolute;
  top: 14px; left: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--b2m-navy);
  backdrop-filter: blur(6px);
}
.product-card__badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--b2m-coral); color: #fff;
  padding: 6px 12px; border-radius: var(--r-pill);
  font-family: var(--font-ui); font-weight: 700; font-size: 11px;
  text-transform: uppercase; letter-spacing: .04em;
}

.product-card__body {
  padding: 22px 24px 26px;
  display: flex; flex-direction: column; gap: 4px;
  flex-grow: 1;
}
.product-card__title {
  font-size: 20px; font-weight: 800;
  color: var(--b2m-navy);
  font-family: var(--font-ui);
}
.product-card__producer {
  font-size: 13px; color: rgba(22,55,98,.6);
  font-family: var(--font-ui);
  margin-bottom: 14px;
}
.product-card__price {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 18px;
}
.product-card__price strong { font-size: 22px; font-weight: 800; }
.product-card__price small { font-size: 12px; color: rgba(22,55,98,.55); }
.product-card .btn { width: 100%; }

@media (max-width: 1100px) { .products__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .products__grid { grid-template-columns: 1fr; } .products__head { grid-template-columns: 1fr; } }

/* ==========================================================================
   Probierbox — Featured offer (single product)
   ========================================================================== */
.probierbox {
  background: #fff;
  padding-block: var(--section-y);
  position: relative;
}
.probierbox__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  background: var(--b2m-cream);
  border-radius: var(--r-xl);
  padding: clamp(36px, 4vw, 64px);
  overflow: hidden;
}
.probierbox__inner::before {
  content: "";
  position: absolute;
  inset: -30% -30% auto auto;
  width: 60%; height: 60%;
  background: radial-gradient(closest-side, rgba(150,201,220,.55), transparent 70%);
  pointer-events: none;
}

.probierbox__visual {
  position: relative;
  aspect-ratio: 4 / 4.4;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(160deg, #5e9fb3, #163762);
  box-shadow: var(--shadow-lg);
}
.probierbox__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.probierbox__badge {
  position: absolute;
  top: 22px; left: 22px;
  background: var(--b2m-coral);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(255,81,84,.35);
  display: inline-flex; align-items: center; gap: 10px;
}
.probierbox__badge strong { font-size: 22px; letter-spacing: 0; }

.probierbox__sticker {
  position: absolute;
  top: 22px; right: 22px;
  background: var(--b2m-yellow);
  color: var(--b2m-navy);
  width: 96px; height: 96px;
  border-radius: 50%;
  display: inline-flex;
  flex-direction: column;
  align-items: center; justify-content: center;
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 11px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.1;
  transform: rotate(-8deg);
  box-shadow: 0 10px 20px rgba(0,0,0,.18);
}
.probierbox__sticker strong { font-size: 22px; display: block; margin-bottom: 2px; letter-spacing: 0; }

.probierbox__copy { position: relative; }
.probierbox__copy .eyebrow {
  display: inline-block;
  background: rgba(255,81,84,.12);
  color: var(--b2m-coral);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 18px;
}
.probierbox__copy h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1;
  margin-bottom: 12px;
}
.probierbox__copy h2 em { font-family: var(--font-display); font-style: italic; font-weight: 400; color: var(--b2m-coral); }
.probierbox__copy > p {
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.5;
  color: rgba(22,55,98,.78);
  max-width: 52ch;
  margin-bottom: 18px;
}

.probierbox__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.probierbox__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--b2m-navy);
}
.probierbox__features li::before {
  content: "";
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--b2m-coral);
  background-image: url("data:image/svg+xml;utf8,<svg 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'><polyline points='20 6 9 17 4 12'/></svg>");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
}

.probierbox__price-block {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 10px;
  min-height: 76px;
}
.probierbox__price-block[hidden] { display: none; }
.probierbox__price-old {
  font-size: 22px;
  font-weight: 600;
  color: rgba(22,55,98,.45);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}
.probierbox__price-old[hidden] { display: none; }
.probierbox__price-new {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 900;
  color: var(--b2m-coral);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}
.probierbox__price-suffix {
  font-size: 14px;
  color: rgba(22,55,98,.6);
  font-family: var(--font-ui);
}
.probierbox__price-note {
  font-size: 13px;
  color: rgba(22,55,98,.6);
  margin-bottom: 26px;
  font-family: var(--font-ui);
}
.probierbox__price-note[hidden] { display: none; }

.probierbox__cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.probierbox__cta .btn { padding: 18px 32px; font-size: 16px; }

.probierbox__hint {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(22,55,98,.65);
  font-family: var(--font-ui);
  margin-top: 18px;
}
.probierbox__hint svg { color: var(--b2m-coral); flex-shrink: 0; }

@media (max-width: 960px) {
  .probierbox__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .probierbox__visual { aspect-ratio: 4/3.6; max-width: 520px; margin: 0 auto; width: 100%; }
}

/* ==========================================================================
   Buy-Section (Blue2Me checkout handoff)
   ========================================================================== */
.buy-section {
  background: var(--b2m-cream);
  padding-block: var(--section-y);
}
.buy-section__inner {
  background: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  box-shadow: var(--shadow-md);
}

.buy-section__visual {
  position: relative;
  background: linear-gradient(160deg, #5e9fb3, #163762);
  min-height: 560px;
  overflow: hidden;
}
.buy-section__visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.buy-section__discount {
  position: absolute;
  top: 32px; left: 32px;
  background: var(--b2m-yellow);
  color: var(--b2m-navy);
  width: 110px; height: 110px;
  border-radius: 50%;
  display: inline-flex;
  flex-direction: column;
  align-items: center; justify-content: center;
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 12px;
  text-align: center;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .04em;
  transform: rotate(-8deg);
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
}
.buy-section__discount strong { font-size: 28px; display: block; letter-spacing: 0; }

.buy-section__copy {
  padding: clamp(40px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.buy-section__vendor {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--b2m-coral);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 12px;
}

.buy-section__title {
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.05;
  margin-bottom: 12px;
}

.buy-section__rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 13px;
  color: rgba(22,55,98,.7);
  margin-bottom: 18px;
}
.buy-section__rating .stars { color: #ffb800; letter-spacing: 1.5px; font-size: 14px; }

.buy-section__desc {
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(22,55,98,.75);
  margin-bottom: 24px;
  max-width: 52ch;
}

.buy-section__price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 6px;
}
.buy-section__price {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 900;
  color: var(--b2m-navy);
  line-height: 1;
  letter-spacing: -.02em;
}
.buy-section__price-old {
  font-size: 20px;
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  color: rgba(22,55,98,.45);
}
.buy-section__price-meta {
  font-size: 13px;
  color: rgba(22,55,98,.6);
  font-family: var(--font-ui);
  margin-bottom: 22px;
}

.buy-section__variants {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.buy-section__variant {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--b2m-grey-3);
  background: #fff;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--t-base);
}
.buy-section__variant:has(input:checked),
.buy-section__variant.is-active {
  border-color: var(--b2m-navy);
  background: var(--b2m-navy);
  color: #fff;
}
.buy-section__variant input { display: none; }

.buy-section__qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--b2m-grey-3);
  border-radius: var(--r-pill);
  overflow: hidden;
  margin-right: 12px;
}
.buy-section__qty button {
  width: 44px; height: 44px;
  font-size: 18px;
  font-weight: 700;
  color: var(--b2m-navy);
  transition: background var(--t-base);
}
.buy-section__qty button:hover { background: var(--b2m-cream); }
.buy-section__qty input {
  width: 44px;
  text-align: center;
  border: 0;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 16px;
  color: var(--b2m-navy);
  background: transparent;
  -moz-appearance: textfield;
}
.buy-section__qty input::-webkit-outer-spin-button,
.buy-section__qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.buy-section__cta-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.buy-section__cta-row .btn { padding: 16px 28px; }
.buy-section__cta-row .btn--primary { flex: 1; min-width: 200px; }

.btn[aria-busy="true"] {
  cursor: wait;
}

.checkout-error {
  margin: 0 0 18px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: #9f1d24;
}

.checkout-error[hidden] {
  display: none;
}

.buy-section__trust {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-family: var(--font-ui);
  font-size: 12.5px;
  color: rgba(22,55,98,.65);
  padding-top: 18px;
  border-top: 1px solid rgba(22,55,98,.08);
}
.buy-section__trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.buy-section__trust svg { color: var(--b2m-coral); flex-shrink: 0; }

@media (max-width: 900px) {
  .buy-section__inner { grid-template-columns: 1fr; }
  .buy-section__visual { min-height: 360px; }
}

/* ==========================================================================
   Recipes
   ========================================================================== */
.recipes {
  background: var(--b2m-cyan);
  padding-block: var(--section-y);
  position: relative;
}
.recipes__inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: center;
}
.recipes__intro h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: .95;
  margin-bottom: 14px;
  color: var(--b2m-navy);
}
.recipes__intro p { color: rgba(22,55,98,.78); font-size: 15px; line-height: 1.5; max-width: 32ch; margin-bottom: 20px; }
.recipes__nav { display: flex; gap: 10px; margin-bottom: 18px; }
.recipes__nav button {
  width: 38px; height: 38px;
  border-radius: 50%; background: #fff; color: var(--b2m-navy);
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(22,55,98,.1);
  transition: all var(--t-base);
}
.recipes__nav button:hover { background: var(--b2m-navy); color: #fff; }

.recipes__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.recipe-card {
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--t-base);
}
.recipe-card:hover { transform: translateY(-4px); }
.recipe-card__media { aspect-ratio: 4/3.4; overflow: hidden; }
.recipe-card__media img { width: 100%; height: 100%; object-fit: cover; }
.recipe-card__body { padding: 22px 22px 26px; }
.recipe-card__body h4 { font-size: 18px; font-family: var(--font-ui); font-weight: 700; margin-bottom: 6px; }
.recipe-card__meta { font-size: 13px; color: rgba(22,55,98,.6); display: flex; gap: 10px; align-items: center; }
.recipe-card__meta::before { content: "🐟"; }

@media (max-width: 1000px) {
  .recipes__inner { grid-template-columns: 1fr; }
  .recipes__track { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) { .recipes__track { grid-template-columns: 1fr; } }

/* ==========================================================================
   Why blue2me — Banner image + compact 5-card row
   ========================================================================== */
.why {
  background: #fff;
  padding-block: var(--section-y);
}
.why__head {
  text-align: center;
  margin-bottom: 28px;
}
.why__head h2 { font-size: clamp(30px, 3.6vw, 48px); margin-bottom: 10px; }
.why__head .lead { margin: 0 auto; max-width: 60ch; text-align: center; }

/* === Banner image above the cards === */
.why__banner {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 21 / 6;
  max-height: 280px;
  margin-bottom: 22px;
  background: var(--b2m-navy);
}
.why__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why__banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(22,55,98,.75) 0%, rgba(22,55,98,.35) 45%, transparent 70%);
  display: flex;
  align-items: center;
  padding: clamp(28px, 5vw, 64px);
}
.why__banner-overlay strong {
  color: #fff;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.8vw, 38px);
  line-height: 1.15;
  max-width: 18ch;
  text-shadow: 0 2px 14px rgba(0,0,0,.3);
}

/* === Compact 5-card grid === */
.why__bento {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.bento {
  border-radius: var(--r-md);
  background: var(--b2m-cream);
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-base);
}
.bento:hover { transform: translateY(-3px); }

.bento__icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--b2m-navy);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-bottom: 12px;
}
.bento__icon svg { width: 18px; height: 18px; }

.bento__body { display: contents; }

.bento h4 {
  font-size: 14.5px;
  font-family: var(--font-ui);
  font-weight: 800;
  margin-bottom: 6px;
  line-height: 1.2;
}
.bento p {
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(22,55,98,.7);
  margin: 0;
}

/* Hide the old photo card — image now lives in .why__banner */
.bento--photo { display: none; }

/* === Card color rotation === */
.bento--01 { background: var(--b2m-cream); }
.bento--02 { background: var(--b2m-coral); color: #fff; }
.bento--02 h4 { color: #fff; }
.bento--02 p { color: rgba(255,255,255,.88); }
.bento--02 .bento__icon { background: #fff; color: var(--b2m-coral); }

.bento--03 { background: var(--b2m-cream); }

.bento--04 { background: var(--b2m-navy); color: #fff; }
.bento--04 h4 { color: #fff; }
.bento--04 p { color: rgba(255,255,255,.85); }
.bento--04 .bento__icon { background: var(--b2m-yellow); color: var(--b2m-navy); }

.bento--05 { background: var(--b2m-cyan); }
.bento--05 .bento__icon { background: var(--b2m-navy); color: #fff; }

/* === Tablet: 3 + 2 layout === */
@media (max-width: 1000px) {
  .why__bento {
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
  }
  .bento--01 { grid-column: span 2; }
  .bento--02 { grid-column: span 2; }
  .bento--03 { grid-column: span 2; }
  .bento--04 { grid-column: span 3; }
  .bento--05 { grid-column: span 3; }
  .why__banner { aspect-ratio: 16/7; }
}

/* === Mobile === */
@media (max-width: 640px) {
  .why__bento {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .bento--01,
  .bento--02,
  .bento--03,
  .bento--04 { grid-column: span 1; }
  .bento--05 { grid-column: 1 / -1; }
  .why__banner {
    aspect-ratio: 4/3;
    max-height: 280px;
    margin-bottom: 22px;
  }
  .why__banner-overlay strong { max-width: 14ch; }
  .bento { padding: 20px 18px 22px; }
}

@media (max-width: 380px) {
  .why__bento { grid-template-columns: 1fr; }
  .bento--05 { grid-column: 1; }
}

/* ==========================================================================
   Comparison
   ========================================================================== */
.comparison {
  background: #fff;
  padding-block: var(--section-y);
}
.comparison__head { text-align: center; margin-bottom: 32px; }
.comparison__head h2 { font-size: clamp(30px, 3.6vw, 48px); margin-bottom: 10px; }
.comparison__head .lead { margin: 0 auto; }

.comparison__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.comparison__col {
  border-radius: var(--r-lg);
  padding: 36px 36px;
  display: flex; flex-direction: column;
}
.comparison__col--us {
  background: var(--b2m-navy);
  color: #fff;
}
.comparison__col--us h3 { color: #fff; }
.comparison__col--them {
  background: var(--b2m-cream);
  color: var(--b2m-navy);
}
.comparison__col h3 {
  font-family: var(--font-ui);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
}
.comparison__col img.col-logo { max-width: 130px; margin-bottom: 18px; }
.comparison__col ul { display: flex; flex-direction: column; gap: 14px; }
.comparison__col li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; line-height: 1.5;
}
.comparison__col li::before {
  content: "";
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
}
.comparison__col--us li::before {
  background-color: var(--b2m-coral);
  background-image: url("data:image/svg+xml;utf8,<svg 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'><polyline points='20 6 9 17 4 12'/></svg>");
}
.comparison__col--them li::before {
  background-color: rgba(22,55,98,.1);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23163762' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><line x1='18' y1='6' x2='6' y2='18'/><line x1='6' y1='6' x2='18' y2='18'/></svg>");
}

@media (max-width: 800px) {
  .comparison__grid { grid-template-columns: 1fr; }
  .comparison__col { padding: 32px 24px; }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials {
  background: var(--b2m-cream);
  padding-block: var(--section-y);
}
.testimonials__head { text-align: center; margin-bottom: 32px; }
.testimonials__head h2 { font-size: clamp(30px, 3.6vw, 48px); margin-bottom: 10px; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.testimonial {
  background: #fff;
  border-radius: var(--r-md);
  padding: 22px 22px;
  display: flex; flex-direction: column;
  position: relative;
}
.testimonial__quote-mark {
  position: absolute;
  top: -20px; right: 24px;
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  color: var(--b2m-coral);
  font-weight: 700;
}
.testimonial__stars { color: #ffb800; letter-spacing: 2px; margin-bottom: 14px; font-size: 16px; }
.testimonial p { font-size: 14.5px; line-height: 1.55; color: var(--b2m-navy); margin-bottom: 22px; flex-grow: 1; }
.testimonial__author {
  display: flex; flex-direction: column; gap: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(22,55,98,.12);
  margin-top: auto;
}
.testimonial__name {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-ui); font-weight: 700; font-size: 14px;
  color: var(--b2m-navy);
}
.testimonial__name svg { color: #2e9e6a; flex-shrink: 0; }
.testimonial__source { font-size: 12px; color: rgba(22,55,98,.55); }

@media (max-width: 1100px) { .testimonials__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .testimonials__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Influencers / Partners
   ========================================================================== */
.influencers {
  background: #fff;
  padding-block: var(--section-y);
}
.influencers__head { text-align: center; margin-bottom: 28px; }
.influencers__head .eyebrow { color: var(--b2m-coral); }
.influencers__head h2 { font-size: clamp(28px, 3.4vw, 44px); margin-bottom: 10px; }
.influencers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.influencer {
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.influencer__avatar {
  width: 150px; height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--b2m-cyan), var(--b2m-cream));
  margin-bottom: 18px;
  overflow: hidden;
}
.influencer__avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.influencer__handle { font-family: var(--font-ui); font-weight: 700; font-size: 17px; margin-bottom: 6px; }
.influencer p { font-size: 13.5px; line-height: 1.5; color: rgba(22,55,98,.7); margin: 0; max-width: 28ch; }

@media (max-width: 900px) {
  .influencers__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .influencer__avatar { width: 160px; height: 160px; }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  background: var(--b2m-cream);
  padding-block: var(--section-y);
}
.faq__head { text-align: center; margin-bottom: 28px; }
.faq__head .eyebrow { color: var(--b2m-coral); }
.faq__head h2 { font-size: clamp(28px, 3.4vw, 44px); }
.faq__list { max-width: 920px; margin: 0 auto; }
.faq__item {
  background: #fff;
  border-radius: var(--r-md);
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid rgba(22,55,98,.05);
  transition: box-shadow var(--t-base);
}
.faq__item[open] { box-shadow: var(--shadow-sm); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 17px;
  color: var(--b2m-navy);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--b2m-cream);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 400;
  color: var(--b2m-navy);
  transition: transform var(--t-base), background var(--t-base);
}
.faq__item[open] summary::after {
  content: "−";
  background: var(--b2m-coral);
  color: #fff;
}
.faq__item .faq__answer {
  padding: 0 26px 24px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(22,55,98,.78);
  max-width: 70ch;
}

/* ==========================================================================
   CTA banner (vor Footer)
   ========================================================================== */
.cta-banner {
  padding-block: var(--section-y);
  background: #fff;
}
.cta-banner__inner {
  position: relative;
  border-radius: var(--r-xl);
  background: linear-gradient(125deg, var(--b2m-navy) 0%, var(--b2m-navy-2) 100%);
  color: #fff;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  min-height: 320px;
}
.cta-banner__copy {
  padding: 44px 48px;
  position: relative; z-index: 2;
}
.cta-banner__copy h2 {
  color: #fff;
  font-size: clamp(26px, 3.2vw, 42px);
  margin-bottom: 18px;
  max-width: 18ch;
}
.cta-banner__copy p {
  color: rgba(255,255,255,.85);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.55;
  max-width: 50ch;
  margin-bottom: 28px;
}
.cta-banner__form { display: flex; gap: 10px; flex-wrap: wrap; max-width: 460px; }
.cta-banner__form input {
  flex: 1; min-width: 220px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-family: var(--font-ui); font-size: 15px;
  backdrop-filter: blur(8px);
}
.cta-banner__form input::placeholder { color: rgba(255,255,255,.6); }
.cta-banner__visual {
  position: relative;
  height: 100%;
  min-height: 320px;
  background: var(--b2m-navy-2);
}
.cta-banner__visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; opacity: .92;
}
.cta-banner__visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--b2m-navy) 0%, transparent 30%);
}

@media (max-width: 900px) {
  .cta-banner__inner { grid-template-columns: 1fr; }
  .cta-banner__copy { padding: 44px 28px; }
  .cta-banner__visual { min-height: 280px; order: -1; }
  .cta-banner__visual::after { background: linear-gradient(180deg, transparent 50%, var(--b2m-navy) 100%); }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--b2m-cream);
  padding-block: clamp(40px, 4vw, 64px) 24px;
  border-top: 1px solid rgba(22,55,98,.06);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 32px;
}
.site-footer__brand img { max-height: 56px; margin-bottom: 22px; }
.site-footer__brand p { font-size: 14px; max-width: 32ch; color: rgba(22,55,98,.7); }
.site-footer__col h5 {
  font-family: var(--font-ui); font-weight: 800;
  font-size: 16px; margin-bottom: 18px; color: var(--b2m-navy);
}
.site-footer__col ul li { margin-bottom: 10px; }
.site-footer__col a {
  font-size: 14px; color: rgba(22,55,98,.7);
  transition: color var(--t-fast);
}
.site-footer__col a:hover { color: var(--b2m-coral); }

.site-footer__social { display: flex; gap: 12px; margin-top: 20px; }
.site-footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%; background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--b2m-navy);
  transition: all var(--t-base);
}
.site-footer__social a:hover { background: var(--b2m-navy); color: #fff; }

.site-footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(22,55,98,.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 12.5px; color: rgba(22,55,98,.55);
}

@media (max-width: 800px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .site-footer__brand { grid-column: 1 / -1; }
}

/* ==========================================================================
   Global Responsive — final pass
   ========================================================================== */

/* === Tablet (1100px and below) === */
@media (max-width: 1100px) {
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .recipes__inner { grid-template-columns: 1fr; }
  .recipes__track { grid-template-columns: repeat(3, 1fr); }
  .probierbox__inner { grid-template-columns: 1fr; }
  .buy-section__inner { grid-template-columns: 1fr; }
  .buy-section__visual { min-height: 360px; aspect-ratio: 16/10; }
  .probierbox__visual {
    aspect-ratio: 16/10;
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
  }
}

/* === Tablet portrait & small laptop (960px and below) === */
@media (max-width: 960px) {
  .how__inner { grid-template-columns: 1fr; }
  .how__visual { min-height: 320px; aspect-ratio: 16/10; }
  .how__panel { padding: 36px 32px; }
  .why__bento { gap: 14px; }
  .influencers__grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .cta-banner__inner { grid-template-columns: 1fr; }
  .cta-banner__visual { min-height: 280px; order: -1; }
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
}

/* === Mobile landscape & small tablet (760px and below) === */
@media (max-width: 760px) {
  /* Header — hide nav, show hamburger */
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .btn-login span:not(.icon) { display: none; }
  .btn-login { padding: 9px 14px; }

  /* Promo bar smaller */
  .promo-bar { padding: 11px 0; }
  .marquee span { font-size: 12.5px; padding-inline: 24px; }

  /* Trust strip — single column with smaller icons */
  .trust-strip__grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-strip__icon { width: 120px; height: 120px; }
  .trust-strip__item h3 { font-size: 19px; }

  /* How it works */
  .how__visual { min-height: 240px; }
  .how__panel { padding: 32px 24px; }
  .how__panel h2 { font-size: clamp(28px, 6vw, 38px); margin-bottom: 24px; }
  .how__steps { gap: 20px; margin-bottom: 28px; }
  .how__step { gap: 14px; }
  .how__step-num { width: 40px; height: 40px; font-size: 19px; }
  .how__panel-cta { gap: 10px; }
  .how__panel-cta .btn { flex: 1; min-width: 140px; justify-content: center; }

  /* Probierbox */
  .probierbox__inner { padding: 28px 22px; gap: 24px; }
  .probierbox__visual { aspect-ratio: 5/4; max-width: 100%; }
  .probierbox__copy h2 { font-size: clamp(26px, 6.5vw, 38px); }
  .probierbox__price-new { font-size: clamp(38px, 9vw, 56px); }
  .probierbox__price-old { font-size: 18px; }
  .probierbox__features li { font-size: 14px; }
  .probierbox__cta .btn { flex: 1; justify-content: center; }
  .probierbox__sticker { width: 78px; height: 78px; font-size: 10px; top: 16px; right: 16px; }
  .probierbox__sticker strong { font-size: 18px; }
  .probierbox__badge { top: 16px; left: 16px; padding: 10px 16px; font-size: 11px; }
  .probierbox__badge strong { font-size: 18px; }

  /* Buy-section */
  .buy-section__visual { min-height: 280px; aspect-ratio: 5/4; }
  .buy-section__copy { padding: 32px 24px; }
  .buy-section__title { font-size: clamp(26px, 6.5vw, 38px); }
  .buy-section__price { font-size: clamp(34px, 8vw, 48px); }
  .buy-section__variants { gap: 6px; }
  .buy-section__variant { padding: 9px 14px; font-size: 13px; }
  .buy-section__cta-row { gap: 10px; }
  .buy-section__cta-row .btn--primary { width: 100%; min-width: 0; flex: 1 1 100%; order: 2; }
  .buy-section__cta-row .btn--navy { width: 100%; flex: 1 1 100%; order: 3; }
  .buy-section__qty { order: 1; }
  .buy-section__discount { width: 86px; height: 86px; font-size: 11px; top: 18px; left: 18px; }
  .buy-section__discount strong { font-size: 22px; }
  .buy-section__trust { gap: 14px; font-size: 11.5px; }

  /* Promo banner old class — keep safe defaults if used */
  .promo-banner__title { font-size: clamp(28px, 6.5vw, 42px); }

  /* Recipes */
  .recipes__inner { gap: 32px; }
  .recipes__intro h2 { font-size: clamp(34px, 8vw, 50px); }
  .recipes__intro p { max-width: 100%; }
  .recipes__track {
    grid-template-columns: 1fr;
    overflow-x: auto;
    grid-auto-flow: column;
    grid-auto-columns: 78%;
    scroll-snap-type: x mandatory;
    margin: 0 calc(-1 * var(--container-x));
    padding: 0 var(--container-x) 8px;
    gap: 14px;
  }
  .recipes__track::-webkit-scrollbar { display: none; }
  .recipe-card { scroll-snap-align: start; }

  /* Why bento */
  .why__head { margin-bottom: 36px; }
  .why__bento {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 12px;
  }
  .why__bento .bento { grid-column: span 1 !important; grid-row: auto !important; }
  .bento { padding: 24px 22px; }
  .bento--photo { min-height: 280px; }

  /* Comparison */
  .comparison__col { padding: 32px 24px; }
  .comparison__col h3 { font-size: 20px; margin-bottom: 18px; }
  .comparison__col li { font-size: 14px; gap: 12px; }

  /* Testimonials */
  .testimonials__grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonial { padding: 24px 22px; }
  .testimonial p { font-size: 14px; }

  /* Influencers */
  .influencers__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .influencer__avatar { width: 130px; height: 130px; margin-bottom: 16px; }
  .influencer__handle { font-size: 15px; }
  .influencer p { font-size: 13px; }

  /* FAQ */
  .faq__item summary { padding: 18px 22px; font-size: 15.5px; gap: 16px; }
  .faq__item summary::after { width: 32px; height: 32px; font-size: 20px; }
  .faq__item .faq__answer { padding: 0 22px 22px; font-size: 14.5px; }

  /* CTA banner */
  .cta-banner__copy { padding: 36px 24px; }
  .cta-banner__copy h2 { font-size: clamp(26px, 6.5vw, 40px); }
  .cta-banner__form { flex-direction: column; max-width: 100%; }
  .cta-banner__form input { min-width: 0; width: 100%; }
  .cta-banner__form .btn { width: 100%; }
  .cta-banner__visual { min-height: 220px; }

  /* Footer */
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-footer__brand { grid-column: 1 / -1; }
  .site-footer__bottom { font-size: 11.5px; }
}

/* === Small mobile (520px and below) === */
@media (max-width: 520px) {
  .influencers__grid { grid-template-columns: 1fr; gap: 32px; }
  .influencer__avatar { width: 160px; height: 160px; }
  .h2, .why__head h2, .comparison__head h2, .testimonials__head h2, .influencers__head h2,
  .faq__head h2, .probierbox__copy h2, .buy-section__title {
    font-size: clamp(26px, 8vw, 36px);
  }
  .recipes__track { grid-auto-columns: 86%; }
  .promo-bar .marquee span { font-size: 11.5px; padding-inline: 18px; }
  .promo-bar .marquee span::before { margin-right: 18px; }
}

/* ==========================================================================
   Animation utilities
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
  }
  .reveal.is-in {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; transition-duration: .001s !important; }
  .marquee { animation: none; }
}
