/* =============================================================
   BP Group Homepage — Base Styles
   ============================================================= */

:root {
  --green: #16a34a;
  --green-dark: #15803d;
  --green-deep: #14532d;
  --green-soft: #f0fdf4;
  --heading: #111827;
  --body: #374151;
  --muted: #6b7280;
  --border: #e5e7eb;
  --surface: #f9fafb;
  --white: #fff;
  --shadow: 0 12px 32px rgba(17,24,39,.07);
  --radius: 16px;
  --container: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}
body {
  max-width: 100%;
  overflow-x: clip;
  margin: 0;
  color: var(--body);
  background: #fff;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

@supports not (overflow-x: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}
.section { padding: 64px 0; }

/* Accessibility */
.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 1000;
  padding: 10px 16px; transform: translateY(-150%);
  border-radius: 8px; background: #111827; color: #fff;
}
.skip-link:focus { transform: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
:focus-visible { outline: 3px solid #2563eb; outline-offset: 3px; }

/* =============================================================
   HEADER / NAV
   ============================================================= */
.site-header {
  position: fixed;
  top: 30px;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: transform .34s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}
.nav-promo {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  min-height: 30px;
  display: grid;
  place-items: center;
  padding: 5px 16px;
  background: #f8d94a;
  color: #102118;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-shadow: none;
  transform: none;
  animation: none;
  transition: none;
}
.nav-wrap {
  position: relative;
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}
.site-header .nav-wrap {
  width: min(calc(100% - 48px), var(--container));
}
.nav-panel {
  min-height: 68px;
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-areas: "brand nav tools";
  align-items: center;
  gap: clamp(12px, 1.8vw, 24px);
  padding: 10px clamp(14px, 2vw, 22px);
  border-radius: 0 0 18px 18px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 14px 34px rgba(15, 23, 42, .075);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform-origin: top center;
  animation: nav-drop .62s cubic-bezier(.2, .8, .2, 1) .06s both;
  transition: background .28s ease, box-shadow .28s ease, border-radius .28s ease, backdrop-filter .28s ease;
}
.nav-panel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 1px);
  height: 0;
  border-radius: 0 0 18px 18px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 34px rgba(15, 23, 42, .10);
  opacity: 0;
  pointer-events: none;
  transition: height .22s ease, opacity .18s ease;
}
.site-header:hover .nav-panel,
.site-header:focus-within .nav-panel,
.site-header.is-open .nav-panel,
.site-header.nav-expanded .nav-panel,
.site-header.is-scrolled .nav-panel {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 14px 34px rgba(15, 23, 42, .075);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.site-header.nav-expanded .nav-panel {
  border-radius: 0;
}
.site-header.nav-expanded .nav-panel::after {
  height: 96px;
  opacity: 1;
}
.brand {
  grid-area: brand;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 9px;
  color: var(--heading);
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  transition: transform .28s ease, font-size .28s ease;
  text-shadow: none;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  overflow: hidden;
  background: #d00000;
  box-shadow: 0 9px 18px rgba(208, 0, 0, .15);
}
.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .02em;
}
.site-header:hover .brand,
.site-header:focus-within .brand,
.site-header.is-open .brand,
.site-header.nav-expanded .brand,
.site-header.is-scrolled .brand {
  color: var(--heading);
  text-shadow: none;
}
.site-header:hover .brand small,
.site-header:focus-within .brand small,
.site-header.is-open .brand small,
.site-header.nav-expanded .brand small,
.site-header.is-scrolled .brand small {
  color: var(--muted);
}
.menu-toggle {
  width: 48px;
  height: 48px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 0;
  border-radius: 50%;
  background: #f5f3ed;
  color: var(--heading);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.menu-toggle:hover { transform: translateY(-1px); }
.menu-toggle span:not(.sr-only) {
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform .22s ease, opacity .22s ease;
}
.site-header:hover .menu-toggle,
.site-header:focus-within .menu-toggle,
.site-header.is-open .menu-toggle,
.site-header.nav-expanded .menu-toggle,
.site-header.is-scrolled .menu-toggle {
  background: #f5f3ed;
  color: var(--heading);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
.site-nav {
  grid-area: nav;
  display: none;
  width: 100%;
  padding-top: 0;
}
.site-nav.open {
  display: grid;
  gap: 4px;
  animation: nav-menu-in .22s ease both;
}
.site-nav > a:not(.btn) {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 8px;
  color: var(--body);
  font-weight: 800;
  transition: color .2s ease, transform .2s ease;
}
.site-nav > a:not(.btn):hover,
.site-nav > a.active,
.nav-dropdown-trigger.active { color: var(--green-dark); }
.nav-dropdown { position: relative; }
.nav-dropdown::after {
  content: none;
  position: absolute;
  left: -24px;
  right: -24px;
  top: 100%;
  height: 34px;
}
.nav-dropdown-trigger {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  color: var(--body);
  font-weight: 800;
}
.nav-dropdown-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s ease;
}
.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after {
  transform: rotate(225deg) translate(-2px, -1px);
}
.nav-mega {
  display: grid;
  gap: 10px;
  padding: 10px 0 12px;
}
.nav-mega a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--heading);
  font-weight: 700;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.nav-mega a:hover {
  transform: translateY(-2px);
  border-color: rgba(22, 163, 74, .38);
  box-shadow: 0 12px 24px rgba(15, 23, 42, .08);
}
.language {
  display: flex;
  width: max-content;
  padding: 3px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #f5f3ed;
}
.language button {
  min-width: 36px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.language button.active { background: var(--green); color: #fff; }
.mobile-language {
  display: none;
}
.site-header:hover .language,
.site-header:focus-within .language,
.site-header.is-open .language,
.site-header.nav-expanded .language,
.site-header.is-scrolled .language {
  background: #f5f3ed;
}
.site-header:hover .language button,
.site-header:focus-within .language button,
.site-header.is-open .language button,
.site-header.nav-expanded .language button,
.site-header.is-scrolled .language button {
  color: var(--muted);
}
.site-header:hover .language button.active,
.site-header:focus-within .language button.active,
.site-header.is-open .language button.active,
.site-header.nav-expanded .language button.active,
.site-header.is-scrolled .language button.active {
  background: var(--green);
  color: #fff;
}
.nav-tools {
  grid-area: tools;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-header.is-scrolled .nav-panel {
  min-height: 62px;
  margin-top: 0;
  padding-block: 8px;
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, .13);
}
.site-header.nav-expanded .nav-panel,
.site-header.nav-expanded.is-scrolled .nav-panel {
  border-radius: 18px 18px 0 0;
}
.site-header.nav-expanded .nav-panel::after,
.site-header.nav-expanded.is-scrolled .nav-panel::after {
  top: 100%;
  border-radius: 0 0 18px 18px;
}
.site-header.is-scrolled .brand {
  font-size: 18px;
}
.site-header.is-scrolled .brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}
.site-header.is-scrolled .brand small {
  display: none;
}
.site-header.is-hidden {
  transform: translateY(calc(-100% - 8px));
}

@keyframes nav-drop {
  from { opacity: 0; transform: translateY(-16px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes nav-menu-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767px) {
  .nav-promo {
    min-height: 30px;
    font-size: 11px;
  }
  .nav-panel {
    min-height: 60px;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand tools"
      "nav nav";
    gap: 8px;
    padding: 8px 12px;
    border-radius: 0 0 16px 16px;
  }
  .nav-panel::after {
    display: none;
  }
  .site-header.nav-expanded .nav-panel {
    border-radius: 0 0 16px 16px;
  }
  .brand {
    justify-self: start;
    font-size: 13px;
    letter-spacing: 0;
  }
  .brand-mark {
    width: 32px;
    height: 32px;
    border-radius: 9px;
  }
  .brand small {
    display: none;
  }
  .language {
    display: none;
  }
  .site-nav .mobile-language {
    display: flex;
    width: 100%;
    margin: 2px 0 6px;
    padding: 4px;
    justify-self: stretch;
    background: #f5f3ed;
  }
  .site-nav .mobile-language button {
    flex: 1 1 0;
    min-width: 0;
    height: 40px;
  }
  .menu-toggle {
    width: 44px;
    height: 44px;
  }
  .site-header.is-scrolled .nav-panel {
    min-height: 58px;
    margin-top: 0;
    padding-block: 7px;
    border-radius: 16px;
  }
  .site-header.is-scrolled .brand {
    font-size: 13px;
  }
  .site-nav.open {
    padding-top: 8px;
    max-height: none;
    overflow: visible;
  }
  .nav-dropdown-trigger {
    justify-content: space-between;
  }
  .nav-dropdown-trigger::after {
    transform: rotate(45deg) translateY(-2px);
  }
  .nav-dropdown.open .nav-dropdown-trigger::after {
    transform: rotate(225deg) translate(-2px, -1px);
  }
  .nav-mega {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: max-height .24s ease, opacity .18s ease, padding .24s ease;
  }
  .nav-dropdown.open .nav-mega {
    max-height: min(31vh, 190px);
    padding: 8px 0 10px;
    opacity: 1;
    visibility: visible;
    overflow-y: auto;
    scrollbar-width: thin;
    overscroll-behavior: contain;
  }
  .nav-dropdown.open .nav-mega::-webkit-scrollbar {
    width: 4px;
  }
  .nav-dropdown.open .nav-mega::-webkit-scrollbar-thumb {
    background: rgba(17, 24, 39, .22);
    border-radius: 999px;
  }
  .nav-mega {
    gap: 7px;
  }
  .nav-mega a {
    min-height: 44px;
    padding: 9px 12px;
    font-size: 14px;
  }
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
  min-height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 20px; border: 1px solid transparent;
  border-radius: 12px; font-weight: 600; line-height: 1.2;
  transition: .2s ease; cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-primary  { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); }
.btn-primary {
  box-shadow: 0 10px 24px rgba(22, 163, 74, .18);
}
.btn-primary:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .2) 45%, transparent 68%);
  transform: translateX(-120%);
  transition: transform .55s ease;
}
.btn-primary:hover:after,
.btn-primary:focus-visible:after {
  transform: translateX(120%);
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-secondary { border-color: var(--green); background: #fff; color: var(--green-dark); }
.btn-secondary:hover { background: var(--green-soft); }
.btn-white { background: #fff; color: var(--green-deep); }
.btn-outline-light { border-color: rgba(255,255,255,.65); color: #fff; }
.nav-cta { margin-top: 8px; }

a.wa-link:not(.floating-wa),
.product-wa,
.market-order,
.market-ask {
  display: inline-flex;
  align-items: center;
}
a.wa-link:not(.floating-wa)::before,
.product-wa::before,
.market-order::before,
.market-ask::before {
  content: "";
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 1.15em;
  display: inline-block;
  margin-right: 8px;
  vertical-align: -0.18em;
  border-radius: 50%;
  background: #fff url("images/Logos/Whatsapp.webp") center / cover no-repeat;
  box-shadow: 0 0 0 1px rgba(17, 24, 39, .06);
}
.text-link.wa-link::before,
.market-ask::before {
  width: 1em;
  height: 1em;
  flex-basis: 1em;
}

/* =============================================================
   TYPOGRAPHY
   ============================================================= */
.eyebrow {
  display: inline-flex; margin-bottom: 12px;
  color: var(--green-dark); font-size: 13px;
  font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.eyebrow.light { color: #bbf7d0; }
h1, h2, h3 { margin: 0; color: var(--heading); line-height: 1.15; }
h1 { font-size: 52px; letter-spacing: -.04em; }
h2 { font-size: 36px; letter-spacing: -.025em; }
h3 { font-size: 20px; }
p  { margin: 0; }

/* =============================================================
   HERO — THE CAROUSEL IS THE HERO
   ============================================================= */

/* Main canvas setup */
.hero-carousel {
  position: relative;
  background: linear-gradient(145deg, #f4fbf7 0%, #fff 55%, #f7fdf9 100%);
  overflow: hidden;
  min-height: clamp(520px, 88vh, 780px);
  display: flex;
  align-items: center;
  padding-top: 116px;
}

/* Background composition layer (entire right side / canvas) */
.hc-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hc-img {
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(1);
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

.hc-img.active {
  opacity: 1;
  transform: scale(1.025);
}

/* Content layer over canvas */
.hc-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 48%; /* Ensure content never overlaps image/arrows */
  padding: 72px clamp(24px, 5vw, 80px);
  padding-left: max(24px, calc((100vw - var(--container)) / 2 + 48px));
  box-sizing: border-box;
}

.hc-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hc-headline {
  margin: 0 0 14px;
  color: var(--heading);
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -.035em;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hc-headline.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.hc-desc {
  margin: 0 0 28px;
  color: var(--body);
  font-size: 17px;
  line-height: 1.65;
  max-width: 480px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hc-desc.is-changing {
  opacity: 0;
  transform: translateY(6px);
}

.hc-ctas {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-bottom: 28px;
}

.hc-trust {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px 14px;
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: var(--body);
}

.hc-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hc-trust li > span:first-child {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dcfce7;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Theme Dark Overrides */
.hero-carousel.theme-dark .hc-headline { color: #ffffff; }
.hero-carousel.theme-dark .hc-desc { color: rgba(255, 255, 255, 0.95); }
.hero-carousel.theme-dark .hc-eyebrow { color: #4ade80; }
.hero-carousel.theme-dark .hc-trust { color: rgba(255, 255, 255, 0.9); }
.hero-carousel.theme-dark .btn-secondary { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.4); color: #ffffff; }
.hero-carousel.theme-dark .btn-secondary:hover { background: rgba(255, 255, 255, 0.2); border-color: #ffffff; }

/* Floating card - desktop only */
.hc-card {
  position: absolute;
  right: 48px;
  bottom: 52px;
  z-index: 20;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 16px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(17,24,39,.12);
  line-height: 1.35;
  transition: opacity 0.4s ease;
}

.hc-card.is-changing {
  opacity: 0;
}

.hc-card strong, .hc-card span {
  display: block;
}

.hc-card strong {
  color: var(--heading);
  font-size: 14px;
  font-weight: 700;
}

.hc-card span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

/* Controls layer */
.hc-controls {
  position: absolute;
  inset: 0;
  z-index: 30;
  pointer-events: none;
}

/* Dots positioned centered near bottom of canvas */
.hc-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  pointer-events: auto;
}

.hc-progress {
  position: absolute;
  left: 48px;
  bottom: 29px;
  width: min(220px, 24vw);
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .26);
}
.hc-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  border-radius: inherit;
  background: var(--green);
}
.hc-progress.is-running span {
  animation: hero-progress 6s linear forwards;
}

.hc-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(17,24,39,.2);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

.hc-dot.active {
  width: 22px;
  background: var(--green);
}

/* Navigation arrows flanking the image area (not over text) */
.hc-arrow {
  display: grid;
  place-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(17,24,39,.06);
  color: var(--heading);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
  pointer-events: auto;
}

.hc-arrow:hover {
  background: #fff;
  border-color: var(--green);
  color: var(--green-dark);
  transform: translateY(-50%) scale(1.05);
}

/* Flanking the image: left arrow sits at left edge of image (50%), right arrow at right edge */
.hc-prev {
  left: calc(50% - 22px);
}

.hc-next {
  right: 32px;
}

/* =============================================================
   SHOW/HIDE SPLIT — Desktop vs Mobile hero
   ============================================================= */
.mobile-only-hero { display: none; }
.desktop-only-hero { display: flex; }

/* =============================================================
   MOBILE HERO — max-width: 767px
   Two completely separate experiences per spec.
   Screen 1: Cinematic (100vh) — image, headline, dots, explore.
   Screen 2: Website  — eyebrow, h2, CTA, trust.
   ============================================================= */
@media (max-width: 767px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }

  /* Hide desktop carousel entirely */
  .desktop-only-hero { display: none !important; }

  /* Show mobile hero */
  .mobile-only-hero { display: block; }

  /* ── Screen 1: Fullscreen Carousel ── */
  .mh-carousel {
    position: relative;
    width: 100vw;
    aspect-ratio: 941 / 1672; /* Exact proportions of the actual mobile images */
    height: auto;
    background: #0a1008;
    overflow: hidden;
  }

  .mh-stage {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
  }

  .mh-stage::-webkit-scrollbar {
    display: none;
  }

  .mh-stage.dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    scroll-behavior: auto;
  }

  .mh-img {
    position: relative;
    flex: 0 0 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    width: 100%;
    height: 100%;
    object-fit: cover; /* perfectly fills because aspect ratio matches */
    object-position: center;
    user-select: none;
    -webkit-user-drag: none;
  }

  .mh-nav {
    position: absolute;
    top: 50%;
    z-index: 16;
    display: grid;
    place-items: center;
    width: 38px;
    height: 56px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .56);
    background: rgba(6, 17, 12, .34);
    color: #fff;
    cursor: pointer;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .mh-nav:hover,
  .mh-nav:focus-visible {
    background: rgba(6, 17, 12, .54);
  }

  .mh-prev {
    left: 0;
    border-left: 0;
    border-radius: 0 14px 14px 0;
  }

  .mh-next {
    right: 0;
    border-right: 0;
    border-radius: 14px 0 0 14px;
  }

  /* Since text is baked into the mobile images, we don't need HTML text */
  .mh-copy {
    display: none;
  }

  /* Pagination */
  .mh-dots-wrapper {
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 18;
    pointer-events: none;
  }

  .mh-dots {
    display: flex;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(6, 17, 12, .28);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: auto;
  }

  .mh-dot {
    width: 6px;
    height: 6px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .mh-dot.active {
    width: 24px;
    border-radius: 4px;
    background: #fff;
  }

  .mh-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 48px;
    z-index: 11;
    padding: 0 20px;
    color: #fff;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .45);
    pointer-events: none;
  }

  .mh-overlay:before {
    display: none;
  }

  .mh-overlay-kicker {
    display: inline-flex;
    margin-bottom: 8px;
    color: #bbf7d0;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .mh-overlay-title {
    max-width: 330px;
    margin: 0 0 8px;
    color: #fff;
    font-size: 28px;
    line-height: 1.08;
    letter-spacing: 0;
  }

  .mh-overlay p {
    max-width: 330px;
    margin: 0 0 14px;
    color: rgba(255, 255, 255, .88);
    font-size: 13px;
    line-height: 1.45;
  }

  .mh-overlay-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    pointer-events: auto;
  }

  .mh-overlay-actions .btn {
    min-height: 44px;
    padding: 9px 12px;
    border-radius: 10px;
    font-size: 13px;
    text-shadow: none;
  }

  .mh-overlay-actions .btn-secondary {
    border-color: rgba(255, 255, 255, .7);
    background: rgba(255, 255, 255, .12);
    color: #fff;
    backdrop-filter: blur(6px);
  }

  /* ── Screen 2: Website (Normal Flow) ── */
  .mh-screen2 {
    background: #f6fbf9;
    padding: 40px 0 32px;
  }

  .mh-s2-inner {
    padding: 0 24px;
  }

  .mh-s2-inner .eyebrow {
    margin-bottom: 12px;
  }

  .mh-s2-headline {
    margin: 0 0 12px;
    color: #111827;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  .mh-s2-desc {
    margin: 0 0 24px;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.6;
  }

  .mh-s2-ctas {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
  }

  .mh-s2-trust {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: #374151;
  }

  .mh-s2-trust li {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mh-s2-trust li > span:first-child {
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #d1fae5;
    color: #065f46;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
  }
}

/* Wide screen refinements */
@media (min-width: 1200px) {
  .hc-content {
    padding-left: max(24px, calc((100vw - var(--container)) / 2 + 48px));
  }
  .hc-prev {
    left: calc(50% - 22px);
  }
  .hc-next {
    right: 48px;
  }
}



/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
  .hc-img.active { transform: translateY(-50%) scale(1); }
}

/* =============================================================
   BELOW-HERO SECTIONS
   ============================================================= */
.section-heading { max-width: 700px; margin-bottom: 32px; }
.section-heading.centered { margin-right: auto; margin-left: auto; text-align: center; }
.section-heading p { margin: 14px 0 0; }
.heading-row { max-width: none; }
.text-link {
  min-height: 44px; display: inline-flex; align-items: center;
  gap: 8px; color: var(--green-dark); font-weight: 600;
}
/* Trust Marquee */
.trust-marquee {
  padding: 10px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #f8fafc; /* Very light background to make it stand out subtly */
  overflow: hidden;
  scrollbar-width: none; /* Firefox */
  display: flex;
  align-items: center;
}
.trust-marquee::-webkit-scrollbar {
  display: none; /* Safari/Chrome */
}
.trust-marquee.paused .marquee-track,
.trust-marquee:hover .marquee-track,
.trust-marquee:focus-within .marquee-track {
  animation-play-state: paused;
}

.marquee-track {
  flex: 0 0 auto;
  display: flex;
  width: max-content;
  min-width: max-content;
  animation: marquee-scroll 30s linear infinite;
  will-change: transform;
}

.marquee-content {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0 10px; /* Half of gap to make seamless loop perfectly spaced */
}

.marquee-content li {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--heading);
  white-space: nowrap;
  user-select: none; /* Prevent text selection while dragging */
}

.marquee-content img {
  height: 24px;
  max-width: 58px;
  width: auto;
  object-fit: contain;
  pointer-events: none; /* Prevent image drag ghost */
}

.text-icon {
  color: var(--green);
  font-size: 14px;
}

@keyframes marquee-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes hero-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(22, 163, 74, .32); }
  50% { box-shadow: 0 10px 34px rgba(22, 163, 74, .5); }
}

.motion-ready .motion-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s cubic-bezier(.2, .8, .2, 1), transform .7s cubic-bezier(.2, .8, .2, 1);
}
.motion-ready .motion-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.motion-ready .motion-reveal.motion-delay-1 { transition-delay: .08s; }
.motion-ready .motion-reveal.motion-delay-2 { transition-delay: .16s; }
.motion-ready .motion-reveal.motion-delay-3 { transition-delay: .24s; }
.category-card,
.product-card,
.market-card,
.values-grid article,
.trust-facts > div,
.member-stat-panel > div,
.step-card {
  will-change: transform;
}
.category-card:hover,
.product-card:hover,
.market-card:hover {
  transform: translateY(-5px);
}
.motion-ready .category-card.motion-reveal.is-visible:hover,
.motion-ready .product-card.motion-reveal.is-visible:hover,
.motion-ready .market-card.motion-reveal.is-visible:hover {
  transform: translateY(-5px);
}
.floating-wa {
  animation: wa-pulse 4.8s ease-in-out infinite;
}

@media (min-width: 640px) {
  .trust-marquee {
    padding: 16px 0;
  }
  .marquee-content {
    gap: 36px;
    padding: 0 18px;
  }
  .marquee-content li {
    gap: 12px;
    font-size: 14px;
  }
  .marquee-content img {
    height: 32px;
    max-width: 72px;
  }
  .text-icon {
    font-size: 18px;
  }
}

/* Larger on Desktop */
@media (min-width: 1024px) {
  .trust-marquee {
    padding: 24px 0;
  }
  .marquee-content {
    gap: 60px;
    padding: 0 30px;
  }
  .marquee-content li {
    font-size: 17px; /* larger text */
    gap: 16px;
  }
  .marquee-content img {
    height: 44px; /* larger images */
    max-width: 92px;
  }
  .text-icon {
    font-size: 22px; /* larger bullet icons */
  }
}

/* Products */
.category-preview { background: var(--surface); }
.category-grid {
  display: grid;
  gap: 12px;
}
.category-card {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 18px rgba(17,24,39,.04);
}
.category-card strong {
  color: var(--heading);
  font-size: 18px;
}
.category-card span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.category-card.propolis { border-top: 4px solid #f97316; }
.category-card.supplements { border-top: 4px solid #2563eb; }
.category-card.skincare { border-top: 4px solid #e11d48; }
.category-card.haircare { border-top: 4px solid #7c2d12; }
.category-card.sweetener { border-top: 4px solid #0ea5e9; }

.product-grid { display: grid; gap: 20px; }
.product-card {
  display: flex; flex-direction: column; overflow: hidden;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: #fff; box-shadow: 0 4px 18px rgba(17,24,39,.04);
}
.product-image { position: relative; aspect-ratio: 1; display: grid; place-items: center; padding: 24px; background: var(--surface); }
.product-image.green { background: #f0fdf4; }
.product-image.blue  { background: #eff6ff; }
.product-image.warm  { background: #fffbeb; }
.product-image.propolis { background: #f0fdf4; }
.product-image.supplements { background: #eff6ff; }
.product-image.skincare { background: #fff1f2; }
.product-image.haircare { background: #fdf4ff; }
.product-image.sweetener { background: #fffbeb; }
.product-image img   { width: 88%; height: 88%; object-fit: contain; }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  max-width: calc(100% - 24px);
  padding: 5px 9px;
  border-radius: 999px;
  background: #fff;
  color: var(--green-dark);
  box-shadow: 0 6px 18px rgba(17, 24, 39, .12);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}
.product-body { display: flex; flex: 1; flex-direction: column; padding: 22px; }
.pill {
  width: max-content; margin-bottom: 10px; padding: 4px 10px;
  border-radius: 999px; background: var(--green-soft);
  color: var(--green-dark); font-size: 12px; font-weight: 700;
}
.product-body p { flex: 1; margin: 10px 0 16px; font-size: 14px; }
.product-price { margin-bottom: 18px; color: var(--heading); font-size: 18px; font-weight: 700; }
.card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.card-actions .btn { padding-inline: 10px; font-size: 13px; }

/* WA / Reseller panels */
.wa-panel, .reseller-panel {
  padding: 32px 24px; border-radius: 24px;
  background: var(--green-deep); color: #dcfce7;
}
.wa-panel h2, .reseller-panel h2 { color: #fff; }
.wa-panel p, .reseller-panel p { max-width: 700px; margin: 12px 0 24px; }

/* Testimonials */
.testimonials { background: var(--surface); }
.testimonial-grid { display: grid; gap: 16px; }
.testimonial-card { padding: 24px; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; }
.stars { color: #f59e0b; letter-spacing: 2px; }
.testimonial-card blockquote { margin: 14px 0 20px; color: var(--body); }
.customer { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px; display: grid; place-items: center;
  border-radius: 50%; background: var(--green-soft);
  color: var(--green-dark); font-weight: 700;
}
.customer strong, .customer span { display: block; }
.customer span { color: var(--muted); font-size: 13px; }

/* FAQ */
.faq-layout { display: grid; gap: 28px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; min-height: 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 16px 0; border: 0; background: transparent;
  color: var(--heading); font-weight: 600; text-align: left; cursor: pointer;
}
.faq-question span:last-child { font-size: 24px; font-weight: 400; }
.faq-answer { display: none; margin: 0; padding: 0 32px 18px 0; }
.faq-item.open .faq-answer { display: block; }

/* About */
.about-preview {
  padding-top: 40px;
  background: #fff;
}
.split { display: grid; gap: 36px; align-items: center; }
.about-art {
  display: grid;
  place-items: center;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(20,83,45,.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 48px rgba(15,23,42,.08);
}
.about-art img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}
.about-product-poster {
  border-radius: 17px;
}
.split p { margin: 16px 0 24px; }
.mini-stats { display: grid; gap: 16px; margin-bottom: 28px; }
.mini-stats div { padding-left: 16px; border-left: 3px solid var(--green); }
.mini-stats strong, .mini-stats span { display: block; }
.mini-stats strong { color: var(--heading); }
.mini-stats span { font-size: 13px; }

/* Reseller */
.reseller-section { padding-top: 0; }
.button-row { display: flex; flex-direction: column; gap: 12px; }

/* Footer */
.footer { padding-top: 56px; background: #111827; color: #d1d5db; }
.footer-grid { display: grid; gap: 32px; }
.footer h3 { margin-bottom: 14px; color: #fff; font-size: 16px; }
.footer-grid > div > a:not(.brand) { display: block; width: max-content; min-height: 36px; color: #d1d5db; }
.footer-brand { margin-bottom: 18px; color: #fff; }
.footer .muted { color: #9ca3af; font-size: 14px; }
.footer-bottom {
  margin-top: 40px; padding: 24px 0;
  border-top: 1px solid #374151; color: #9ca3af; font-size: 13px;
}

/* Floating WA button */
.floating-wa {
  width: 56px; height: 56px; display: grid; place-items: center;
  position: fixed; right: 18px; bottom: 18px; z-index: 50;
  padding: 7px;
  border-radius: 50%; background: #fff; color: #fff;
  box-shadow: 0 10px 28px rgba(22,163,74,.32);
  font-size: 13px; font-weight: 700;
}
.floating-wa img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}

/* =============================================================
   RESPONSIVE — TABLET / DESKTOP
   ============================================================= */
@media (min-width: 600px) {
  .testimonial-grid { grid-template-columns: repeat(2,1fr); }
  .category-grid { grid-template-columns: repeat(2,1fr); }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .heading-row { display: flex; align-items: end; justify-content: space-between; }
  .mini-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
  .button-row { flex-direction: row; }
}

@media (min-width: 768px) {
  .section { padding: 80px 0; }
  .wa-panel, .reseller-panel {
    display: flex; align-items: center;
    justify-content: space-between; gap: 40px; padding: 48px;
  }
  .wa-panel p, .reseller-panel p { margin-bottom: 0; }
  .testimonial-grid { grid-template-columns: repeat(3,1fr); }
  .faq-layout { grid-template-columns: .8fr 1.2fr; gap: 80px; }
  .split { grid-template-columns: .9fr 1.1fr; gap: 72px; }
  .about-art {
    justify-self: stretch;
    border-radius: 24px;
  }
  .about-product-poster {
    border-radius: 23px;
  }
  .footer-grid { grid-template-columns: 1.6fr repeat(3,1fr); }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (min-width: 768px) {
  .menu-toggle { display: none; }
  .nav-panel {
    grid-template-columns: minmax(170px, 1fr) auto minmax(96px, 1fr);
  }
  .site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    gap: clamp(10px, 1.25vw, 18px);
    position: relative;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .site-nav > a:not(.btn),
  .nav-dropdown-trigger {
    min-height: 40px;
    padding: 0;
    font-size: 14px;
    white-space: nowrap;
  }
  .site-nav > a:not(.btn):hover,
  .nav-dropdown:hover .nav-dropdown-trigger,
  .nav-dropdown-trigger.active {
    transform: translateY(-1px);
  }
  .nav-dropdown {
    position: static;
  }
  .nav-dropdown::after {
    content: "";
    left: 0;
    right: 0;
    height: 18px;
  }
  .nav-mega {
    width: min(calc(100vw - 48px), 700px);
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(124px, 1fr));
    gap: 10px;
    padding: 10px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%);
    transition: opacity .16s ease, visibility .16s ease;
    z-index: 2;
  }
  .nav-mega a {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 14px;
  }
  .site-header.nav-expanded .nav-mega,
  .nav-dropdown:hover .nav-mega,
  .nav-dropdown:focus-within .nav-mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%);
  }
  .language { margin: 0; }
  .nav-cta {
    min-height: 44px;
    margin: 0;
    padding: 9px 14px;
    border-radius: 10px;
    font-size: 14px;
  }
  .product-grid { grid-template-columns: repeat(4,1fr); }
  .category-grid { grid-template-columns: repeat(5,1fr); }
  .product-card { transition: transform .2s ease, box-shadow .2s ease; }
  .product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .site-header .nav-wrap {
    width: min(calc(100% - 32px), var(--container));
  }
  .nav-panel {
    min-height: 64px;
    grid-template-columns: minmax(150px, 1fr) auto minmax(76px, 1fr);
    gap: clamp(6px, 1vw, 10px);
    padding: 8px clamp(10px, 1.5vw, 14px);
  }
  .brand {
    gap: 8px;
    font-size: clamp(14px, 1.7vw, 16px);
  }
  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }
  .brand small {
    font-size: 9px;
  }
  .site-nav {
    gap: clamp(7px, 1.1vw, 11px);
  }
  .site-nav > a:not(.btn),
  .nav-dropdown-trigger {
    min-height: 40px;
    font-size: clamp(12px, 1.25vw, 13px);
  }
  .nav-cta {
    min-height: 44px;
    padding: 8px clamp(9px, 1.2vw, 11px);
    border-radius: 10px;
    font-size: clamp(12px, 1.35vw, 13px);
  }
  .language button {
    min-width: 32px;
    height: 30px;
    font-size: 11px;
  }
  .nav-mega {
    width: min(calc(100vw - 32px), 640px);
  }
}

/* Requested homepage refinements */
.site-header {
  transition: transform .34s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}
.site-header.is-hidden {
  transform: translateY(calc(-100% - 8px));
}
.hero-carousel {
  cursor: pointer;
}
.hero-carousel a,
.hero-carousel button {
  cursor: pointer;
}

.category-preview {
  background: #fff;
}
.category-preview .section-heading {
  margin-bottom: 20px;
}
.category-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.category-card {
  min-height: 0;
  width: auto;
  max-width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: none;
}
.category-card strong {
  font-size: 14px;
}
.category-card span {
  display: none;
}
.category-card.propolis,
.category-card.supplements,
.category-card.skincare,
.category-card.haircare,
.category-card.sweetener {
  border-top-width: 1px;
}

.products-section {
  overflow: hidden;
}
.products-section .heading-row {
  align-items: end;
}
.product-grid {
  display: flex;
  grid-template-columns: none;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 0 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.product-grid::-webkit-scrollbar {
  display: none;
}
.product-card {
  flex: 0 0 min(72vw, 280px);
  scroll-snap-align: start;
  border-radius: 8px;
  box-shadow: none;
}
.product-image {
  aspect-ratio: 1.08;
  padding: 22px;
}
.products-section .product-image {
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
}
.products-section .product-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.product-body {
  padding: 16px;
}
.product-body p {
  min-height: 56px;
}
.card-actions {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 999px;
}
.card-actions .btn {
  min-height: 38px;
  border-radius: 999px;
}
.card-actions .btn-secondary {
  border-color: transparent;
}

.testimonials {
  background: #f6f3ec;
  padding: 48px 0 42px;
}
.testimonials .section-heading {
  margin-bottom: 12px;
}
.testimonials .section-heading h2 {
  max-width: 560px;
  margin-inline: auto;
  font-size: clamp(26px, 3vw, 38px);
}
.testimonials .section-heading p {
  margin-top: 8px;
}
.testimonial-grid {
  display: block;
  max-width: 560px;
  margin: 0 auto;
}
.testimonial-carousel {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.testimonial-carousel .stars {
  color: #f59e0b;
  font-size: 18px;
  letter-spacing: 1px;
}
.testimonial-carousel blockquote {
  max-width: 480px;
  margin: 20px auto 16px;
  color: var(--heading);
  font-size: clamp(18px, 2.6vw, 24px);
  font-weight: 600;
  line-height: 1.42;
}
.testimonial-customer {
  color: #9ca3af;
  font-size: 14px;
}
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
}
.testimonial-arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--heading);
  border-radius: 50%;
  background: transparent;
  color: var(--heading);
  cursor: pointer;
}
.testimonial-dots {
  display: flex;
  gap: 8px;
}
.testimonial-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #9ca3af;
  cursor: pointer;
}
.testimonial-dot.active {
  background: var(--heading);
}

.footer {
  padding: 44px 0 0;
  background: #fff;
  color: var(--heading);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px 56px;
}
.footer-grid > div:first-child {
  grid-column: 1 / -1;
}
.footer h3 {
  color: var(--heading);
  font-size: 13px;
  text-transform: uppercase;
}
.footer-grid > div > a:not(.brand) {
  min-height: 28px;
  color: var(--heading);
  font-size: 14px;
}
.footer-brand {
  color: var(--heading);
}
.footer .muted,
.footer p {
  max-width: 520px;
  color: var(--muted);
  font-size: 13px;
}
.footer-bottom {
  margin-top: 28px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

@media (min-width: 768px) {
  .product-card {
    flex-basis: min(24vw, 300px);
  }
  .footer-grid {
    grid-template-columns: 1.6fr repeat(3, minmax(130px, 1fr));
  }
  .footer-grid > div:first-child {
    grid-column: auto;
  }
}

@media (max-width: 599px) {
  .category-grid {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }
  .category-card {
    flex: 0 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .motion-ready .motion-reveal {
    opacity: 1;
    transform: none;
  }
  .hc-progress span {
    transform: scaleX(1);
  }
}

/* UX conversion refinements */
h1,
h2,
.hc-headline,
.mh-s2-headline {
  letter-spacing: 0;
}

.need-selector {
  background: #fff;
}

.need-selector .section-heading {
  margin-bottom: 16px;
}

.need-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 8px;
}

.need-card {
  min-width: 0;
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-content: center;
  align-items: center;
  gap: 4px 10px;
  padding: 12px 14px;
  border: 1px solid rgba(20, 83, 45, .12);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fdf9 100%);
  box-shadow: 0 8px 24px rgba(17, 24, 39, .04);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.need-card::after {
  content: ">";
  grid-row: 1 / span 2;
  grid-column: 2;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 900;
}

.need-card:hover,
.need-card:focus-visible {
  border-color: rgba(22, 163, 74, .42);
  box-shadow: 0 14px 30px rgba(17, 24, 39, .08);
  transform: translateY(-2px);
}

.need-card strong,
.need-card span {
  min-width: 0;
}

.need-card strong {
  color: var(--heading);
  font-size: 14px;
  line-height: 1.25;
}

.need-card span {
  display: -webkit-box;
  overflow: hidden;
  color: var(--body);
  font-size: 11px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-ask {
  width: max-content;
  max-width: 100%;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.order-steps {
  background: #f8fafc;
}

.order-steps-layout {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.order-step-list {
  counter-reset: order-step;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.order-step-list li {
  counter-increment: order-step;
  min-width: 0;
  min-height: 116px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
}

.order-step-list li::before {
  content: counter(order-step);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  line-height: 1;
}

.order-step-list strong {
  color: var(--heading);
  font-size: 15px;
  line-height: 1.4;
}

.reseller-section {
  padding-top: 44px;
}

.reseller-panel {
  border-radius: 8px;
}

@media (max-width: 980px) {
  .need-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .order-steps-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 599px) {
  .need-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-step-list {
    grid-template-columns: 1fr;
  }

  .need-card,
  .order-step-list li {
    min-height: auto;
    padding: 16px;
  }

  .need-card {
    padding: 12px;
  }

  .need-card span {
    display: none;
  }

  .need-card::after {
    grid-row: 1;
  }

  .product-card {
    flex-basis: min(82vw, 310px);
  }

  .card-actions {
    grid-template-columns: 1fr;
    border-radius: 12px;
  }

  .card-actions .btn {
    width: 100%;
  }
}

@media (max-width: 379px) {
  .need-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .mh-overlay-actions {
    grid-template-columns: 1fr;
  }

  .mh-overlay-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .mh-overlay-title,
  .mh-overlay p {
    max-width: 100%;
  }
}

/* Review and reseller-testimony story wireframe */
body.story-review-open {
  overflow: hidden;
}

.testimonials {
  background: #c7e6bd;
}

.testimonials .section-heading h2 {
  color: #135d32;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
}

.testimonial-grid {
  max-width: 1120px;
  margin-inline: auto;
}

.story-review {
  width: 100%;
  min-width: 0;
}

.story-review__rail {
  display: flex;
  max-width: 100%;
  gap: clamp(14px, 2.4vw, 24px);
  justify-content: flex-start;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 12px 4px 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.story-review__rail::-webkit-scrollbar {
  display: none;
}

.story-review__card {
  position: relative;
  flex: 0 0 clamp(150px, 20vw, 210px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #dfe8df;
  box-shadow: 0 18px 38px rgba(19, 93, 50, .18);
  cursor: pointer;
  scroll-snap-align: center;
  text-align: left;
}

.story-review--reseller .story-review__card {
  flex-basis: clamp(150px, 18vw, 190px);
}

.story-review__media,
.story-review__media img,
.story-review__media video {
  display: block;
  width: 100%;
  height: 100%;
}

.story-review__media img,
.story-review__media video {
  object-fit: cover;
}

.story-review__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .28), transparent 32%),
    linear-gradient(0deg, rgba(0, 0, 0, .48), transparent 44%);
  pointer-events: none;
}

.story-review__handle {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  max-width: calc(100% - 24px);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .5);
}

.story-review__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  transform: translate(-50%, -50%);
}

.story-review__play::before {
  content: "";
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid #135d32;
}

.story-review__caption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  display: -webkit-box;
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.22;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .55);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.story-review__card:focus-visible {
  outline: 3px solid #135d32;
  outline-offset: 4px;
}

.story-lightbox[hidden] {
  display: none;
}

.story-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(45, 41, 56, .94);
}

.story-lightbox__shell {
  position: relative;
  width: min(100%, 420px);
  max-width: calc(100vw - 24px);
  height: min(760px, calc(100dvh - 32px));
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .42);
  isolation: isolate;
  touch-action: pan-y;
}

.story-lightbox__media,
.story-lightbox__media img,
.story-lightbox__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.story-lightbox__media img,
.story-lightbox__media video {
  display: block;
  object-fit: cover;
}

.story-lightbox__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .34), transparent 28%),
    linear-gradient(0deg, rgba(0, 0, 0, .56), transparent 48%);
  pointer-events: none;
}

.story-lightbox__topbar {
  position: absolute;
  top: 14px;
  right: 12px;
  left: 12px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .46);
}

.story-lightbox__topbar > div {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.story-lightbox__icon,
.story-lightbox__nav {
  border: 1px solid rgba(255, 255, 255, .26);
  background: rgba(255, 255, 255, .18);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.story-lightbox__icon {
  min-width: 50px;
  height: 36px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
}

.story-lightbox__nav {
  position: absolute;
  right: 14px;
  z-index: 4;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 999px;
  font-size: 20px;
  line-height: 1;
}

.story-lightbox__nav--prev {
  top: calc(50% - 46px);
}

.story-lightbox__nav--next {
  top: calc(50% + 8px);
}

.story-lightbox__headline {
  position: absolute;
  right: 28px;
  bottom: 174px;
  left: 28px;
  z-index: 3;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 8vw, 40px);
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .4);
}

.story-lightbox__product {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 3;
}

.story-lightbox__product-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
  background: rgba(85, 85, 85, .68);
  color: #fff;
  backdrop-filter: blur(8px);
}

.story-lightbox__product-card img {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  background: #fff;
  object-fit: contain;
}

.story-lightbox__product-card span,
.story-lightbox__product-card strong {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.story-lightbox__product-card span {
  font-size: 12px;
  font-weight: 800;
  opacity: .88;
}

.story-lightbox__product-card strong {
  margin-top: 3px;
  font-size: 15px;
  font-weight: 900;
}

.story-lightbox__product-card a {
  grid-column: 1 / -1;
  display: grid;
  min-height: 42px;
  place-items: center;
  border-radius: 0;
  background: #176b37;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.story-review-section__layout {
  gap: clamp(24px, 4vw, 54px);
}

.story-review-section__layout > * {
  min-width: 0;
}

.story-review-section__copy {
  align-self: center;
  min-width: 0;
}

.story-review-section--reseller .story-review__rail {
  justify-content: flex-start;
}

@media (max-width: 767px) {
  .testimonials {
    padding-block: 38px;
  }

  .story-review__rail {
    justify-content: flex-start;
    margin-inline: -16px;
    padding-inline: 16px;
  }

  .story-review__card,
  .story-review--reseller .story-review__card {
    flex-basis: min(64vw, 210px);
  }

  .story-lightbox {
    padding: 0;
  }

  .story-lightbox__shell {
    width: 100vw;
    max-width: none;
    height: 100dvh;
    max-height: none;
    border-radius: 0;
  }

  .story-lightbox__nav {
    display: none;
  }

  .story-lightbox__topbar {
    top: max(12px, env(safe-area-inset-top));
    right: 10px;
    left: 10px;
  }

  .story-lightbox__headline {
    right: 18px;
    bottom: 146px;
    left: 18px;
    font-size: clamp(24px, 8vw, 34px);
    text-align: left;
  }

  .story-lightbox__product {
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
  }

  .story-lightbox__product-card {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .story-lightbox__product-card img {
    width: 48px;
    height: 48px;
  }
}
