/* ═══════════════════════════════════════════════════════════
   NUTRIGAIN LABS — Pixel-Perfect UI Replication
   Dark Green Theme · Palatino + Avenir Typography
   ═══════════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  /* Colors (LOCKED) */
  --dark-green-1: #04321C;
  --dark-green-2: #0A5233;
  --light-bg: #F5F5F2;
  --beige: #E8DCCB;
  --white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-muted: #6B7280;
  --text-white: #FFFFFF;

  /* Typography — Montserrat single-family system */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;

  /* Layout */
  --container-width: 1200px;
  --section-padding: 100px 0;

  /* Shadows */
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 12px 36px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.6s;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

/* ── Container ── */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ── Typography — Montserrat Hierarchy ── */
h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--text-dark);
}

h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: var(--text-dark);
}

p {
  font-weight: 400;
  line-height: 1.6;
}

h1 {
  font-size: clamp(40px, 5vw, 60px);
}

h2 {
  font-size: clamp(30px, 3.5vw, 42px);
}

h3 {
  font-size: clamp(20px, 2vw, 26px);
}

p {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
}

/* ── Section Shared ── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(30px, 3.5vw, 42px);
  color: var(--text-dark);
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════════════════════════
   HEADER / NAVIGATION — Solid Dark Green, Premium, Consistent
   ═══════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  background: linear-gradient(180deg, #0f3d2e 0%, #0c3327 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 0;
  opacity: 1;
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

/* ── Inner layout: left-nav | logo | right-nav ── */
.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 81px;
  position: relative;
}

/* ── Left + Right nav groups ── */
.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.nav-left {
  justify-content: flex-end;
  padding-right: 40px;
}

.nav-right {
  justify-content: flex-start;
  padding-left: 40px;
}

.nav-left a,
.nav-right a {
  font-family: 'Montserrat', var(--font-body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 18px;
  border-radius: 0;
  transition: color 0.3s ease;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}

/* Underline animation on hover */
.nav-left a::after,
.nav-right a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 0;
  transition: transform 0.3s ease;
}

.nav-left a:hover::after,
.nav-right a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-left a:hover,
.nav-right a:hover {
  color: #FFFFFF;
}

/* Active state — gold accent */
.nav-left a.active,
.nav-right a.active {
  color: #f4c95d;
  font-weight: 600;
}

.nav-left a.active::after,
.nav-right a.active::after {
  transform: translateX(-50%) scaleX(1);
  background: #f4c95d;
}

/* ── Center Logo ── */
.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  padding: 4px 16px;
  transition: opacity 0.3s ease;
  z-index: 1001;
}

.header-logo:hover {
  opacity: 0.85;
}

.header-logo-img {
  height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ── Scrolled header — slightly deeper, more shadow ── */
.header.scrolled {
  background: linear-gradient(180deg, #0c3327 0%, #092b20 100%);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

/* ── Hamburger (mobile only) ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1002;
  padding: 6px;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 0;
  transition: all 0.35s var(--ease);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Mobile slide-out menu — solid dark green ── */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: #0f3d2e;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 32px 24px;
  transition: right 0.4s var(--ease);
  z-index: 1001;
  border-radius: 0;
}

.nav-mobile.active {
  right: 0;
}

.nav-mobile a {
  font-family: 'Montserrat', var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 14px 20px;
  border-radius: 0;
  text-align: left;
  text-decoration: none;
  transition: color 0.3s ease, background 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-mobile a:last-child {
  border-bottom: none;
}

.nav-mobile a:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.05);
}

.nav-mobile a.active {
  color: #f4c95d;
}

/* ── Overlay ── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark-green-1) 0%, var(--dark-green-2) 100%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(10, 82, 51, 0.6) 0%, transparent 70%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 560px;
}

/* ── Hero Paint Stroke Label ── */
.hero-typing {
  margin-bottom: 28px;
  display: inline-block;
  position: relative;
  transform: rotate(-1.5deg);
  transform-origin: left center;
}

.typing-text {
  display: inline-block;
  font-family: 'Montserrat', var(--font-body);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0);
  white-space: nowrap;
  padding: 7px 16px;
  position: relative;
  z-index: 1;
  animation: textReveal 0.4s ease 1.1s forwards;
  text-shadow: none;
}

/* Brush stroke background — sweeps in from left */
.typing-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: -1;
  transform-origin: left center;
  transform: scaleX(0);
  animation: brushStroke 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
  clip-path: polygon(0% 15%, 1.5% 2%, 6% 6%, 12% 0%, 20% 5%, 28% 1%, 36% 4%, 44% 0%, 52% 5%, 60% 1%, 68% 4%, 76% 0%, 84% 3%, 92% 0%, 97% 2%, 100% 10%,
      100% 18%, 99% 30%, 100% 45%, 99% 60%, 100% 75%, 99% 85%, 100% 92%, 98% 100%,
      93% 97%, 86% 100%, 78% 95%, 70% 100%, 62% 96%, 54% 100%, 46% 95%, 38% 100%, 30% 96%, 22% 100%, 14% 96%, 7% 100%, 2% 97%, 0% 90%,
      1% 75%, 0% 58%, 1% 42%, 0% 28%);
  filter: blur(0.4px);
}

/* Subtle grain overlay for painted realism */
.typing-text::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0;
  mix-blend-mode: overlay;
  pointer-events: none;
  animation: grainFade 0.3s ease 1.1s forwards;
}

/* Brush sweeps in from left */
@keyframes brushStroke {
  0% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(1);
  }
}

/* Text appears after brush lands */
@keyframes textReveal {
  0% {
    color: rgba(110, 65, 44, 0);
  }

  100% {
    color: #6e412c;
  }
}

/* Grain fades in with text */
@keyframes grainFade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 0.5;
  }
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-white);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--dark-green-2);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.35s var(--ease);
  cursor: pointer;
}

.btn-primary:hover {
  transform: scale(1.03);
  background: #127a44;
  box-shadow: 0 8px 24px rgba(10, 82, 51, 0.3);
}

.btn-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

/* ── Hero CTA Buttons — Shared Base ── */
.btn-secondary,
.btn-outline-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  animation: heroButtonFloat 3s ease-in-out infinite;
}

/* Primary CTA — white accent */
.btn-secondary {
  color: var(--text-white);
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.1),
    0 0 6px rgba(255, 255, 255, 0.05);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #064e3b;
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.2),
    0 0 20px rgba(255, 255, 255, 0.12);
}

.btn-secondary:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.12);
}

/* Secondary CTA — light green accent */
.btn-outline-hero {
  color: #d1fae5;
  border: 2px solid #d1fae5;
  box-shadow: 0 0 16px rgba(209, 250, 229, 0.12),
    0 0 6px rgba(209, 250, 229, 0.06);
  animation-delay: 0.4s;
}

.btn-outline-hero:hover {
  background: rgba(209, 250, 229, 0.95);
  color: #064e3b;
  border-color: #d1fae5;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(209, 250, 229, 0.25),
    0 0 20px rgba(209, 250, 229, 0.15);
}

.btn-outline-hero:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(209, 250, 229, 0.15);
}

/* Soft anti-gravity floating keyframes (shared) */
@keyframes heroButtonFloat {

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

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

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin-left: auto;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating badges */
.hero-floating-badge {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.hero-floating-badge.badge-products {
  bottom: -10px;
  left: -20px;
  padding: 16px 24px;
}

.hero-floating-badge.badge-natural {
  top: 10%;
  right: -20px;
  padding: 18px 22px;
  background: var(--dark-green-1);
  color: var(--text-white);
}

@keyframes badge-bob {

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

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

.badge-number {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--dark-green-1);
  line-height: 1;
}

.badge-percent {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1;
}

.badge-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.badge-natural .badge-label {
  color: rgba(255, 255, 255, 0.7);
}

/* ── Decorative Hero Leaf System (3 leaves) ── */
.hero-leaf {
  position: absolute;
  z-index: 2;
  pointer-events: auto;
  cursor: default;
  will-change: transform, opacity;
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.4s ease,
    opacity 0.4s ease;
}

.hero-leaf img {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

/* ── Individual Leaf Positions & Depth ── */

/* Top-Left: far depth — no blur, small */
.hero-leaf--tl {
  top: 15%;
  left: 6%;
  width: 72px;
  transform: rotate(-20deg) scale(0.9);
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.12));
  animation: leafEntranceTL 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards,
    leafFloatTL 5s ease-in-out 1.6s infinite;
}

/* Bottom-Left: positioned at lower-left of hero */
.hero-leaf--tr {
  top: auto;
  bottom: 16%;
  left: 5%;
  right: auto;
  width: 80px;
  transform: rotate(28deg) scale(1);
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.18)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.06));
  animation: leafEntranceTR 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards,
    leafFloatTR 6s ease-in-out 2.1s infinite;
}

/* Bottom-Right: no blur, small-medium */
.hero-leaf--br {
  bottom: 18%;
  right: 8%;
  width: 62px;
  transform: rotate(15deg) scale(0.85);
  filter: drop-shadow(0 5px 16px rgba(0, 0, 0, 0.1));
  animation: leafEntranceBR 1.4s cubic-bezier(0.22, 1, 0.36, 1) 1.2s forwards,
    leafFloatBR 5.5s ease-in-out 2.6s infinite;
}

/* ── Entrance Animations ── */
@keyframes leafEntranceTL {
  0% {
    opacity: 0;
    transform: rotate(-30deg) scale(0.5) translateY(-20px) translateX(-15px);
  }

  100% {
    opacity: 0.85;
    transform: rotate(-20deg) scale(0.9) translateY(0) translateX(0);
  }
}

@keyframes leafEntranceTR {
  0% {
    opacity: 0;
    transform: rotate(15deg) scale(0.6) translateY(-25px) translateX(10px);
  }

  100% {
    opacity: 1;
    transform: rotate(28deg) scale(1) translateY(0) translateX(0);
  }
}

@keyframes leafEntranceBR {
  0% {
    opacity: 0;
    transform: rotate(5deg) scale(0.5) translateY(20px) translateX(15px);
  }

  100% {
    opacity: 0.75;
    transform: rotate(15deg) scale(0.85) translateY(0) translateX(0);
  }
}

/* ── Floating Idle Animations (unique per leaf) ── */
@keyframes leafFloatTL {

  0%,
  100% {
    transform: rotate(-20deg) scale(0.9) translate(0, 0);
  }

  25% {
    transform: rotate(-17deg) scale(0.9) translate(2px, -6px);
  }

  50% {
    transform: rotate(-23deg) scale(0.9) translate(-1px, -3px);
  }

  75% {
    transform: rotate(-19deg) scale(0.9) translate(3px, 5px);
  }
}

@keyframes leafFloatTR {

  0%,
  100% {
    transform: rotate(28deg) scale(1) translate(0, 0);
  }

  20% {
    transform: rotate(31deg) scale(1) translate(-3px, -7px);
  }

  50% {
    transform: rotate(25deg) scale(1) translate(2px, -4px);
  }

  80% {
    transform: rotate(30deg) scale(1) translate(-2px, 5px);
  }
}

@keyframes leafFloatBR {

  0%,
  100% {
    transform: rotate(15deg) scale(0.85) translate(0, 0);
  }

  30% {
    transform: rotate(18deg) scale(0.85) translate(-3px, -5px);
  }

  60% {
    transform: rotate(12deg) scale(0.85) translate(2px, 4px);
  }

  85% {
    transform: rotate(16deg) scale(0.85) translate(-1px, -2px);
  }
}

/* ── Hover Interaction ── */
.hero-leaf:hover {
  animation-play-state: paused;
}

.hero-leaf--tl:hover {
  transform: rotate(-17deg) scale(0.95) translateY(-5px);
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.18)) drop-shadow(0 0 8px rgba(255, 255, 255, 0.08));
}

.hero-leaf--tr:hover {
  transform: rotate(31deg) scale(1.05) translateY(-8px);
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.22)) drop-shadow(0 0 12px rgba(255, 255, 255, 0.1));
}

.hero-leaf--br:hover {
  transform: rotate(18deg) scale(0.9) translateY(-5px);
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.15)) drop-shadow(0 0 6px rgba(255, 255, 255, 0.06));
}

/* ── Scroll parallax class (JS-driven, disables CSS float) ── */
.hero-leaf.leaf-parallax {
  animation: none !important;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-leaf--tl {
    width: 56px;
    left: 4%;
    top: 18%;
  }

  .hero-leaf--tr {
    width: 75px;
    right: 10%;
    top: 14%;
  }

  .hero-leaf--br {
    width: 50px;
    right: 5%;
    bottom: 15%;
  }
}

@media (max-width: 768px) {
  .hero-leaf {
    display: none;
  }
}

/* Hero curve */
.hero-curve {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 3;
  line-height: 0;
}

.hero-curve svg {
  width: 100%;
  height: 80px;
}

/* ═══════════════════════════════════════════════════════════
   SOLUTIONS — SPLIT LAYOUT (Image Left + Features Right)
   ═══════════════════════════════════════════════════════════ */
.solutions {
  padding: var(--section-padding);
  background: #f8f9f7;
  position: relative;
  overflow: hidden;
}

.sol-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ── Left: Image ── */
.sol-visual {
  position: relative;
}

.sol-image-wrapper {
  position: relative;
}

.sol-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Right: Content ── */
.sol-content {
  max-width: 520px;
}

.sol-subtitle {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 440px;
}

/* ── Feature List ── */
.sol-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.sol-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(17, 55, 33, 0.06);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.sol-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(17, 55, 33, 0.08);
  border-color: rgba(17, 55, 33, 0.14);
}

/* ── Feature Icon ── */
.sol-feature-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 55, 33, 0.07);
  border-radius: 50%;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.sol-feature:hover .sol-feature-icon {
  background: rgba(17, 55, 33, 0.12);
  transform: scale(1.06);
}

.sol-feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: #113721;
}

/* ── Feature Text ── */
.sol-feature-text {
  flex: 1;
  min-width: 0;
}

.sol-feature-text h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: #113721;
  margin-bottom: 4px;
  line-height: 1.3;
  letter-spacing: 0;
}

.sol-feature-text p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ── CTA Button ── */
.btn-solutions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #113721;
  background: transparent;
  border: 1.5px solid #113721;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}

.btn-solutions:hover {
  background: #113721;
  color: var(--text-white);
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(17, 55, 33, 0.18);
}

.btn-solutions svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}

.btn-solutions:hover svg {
  transform: translateX(3px);
}

/* ═══════════════════════════════════════════════════════════
   PRODUCT CATEGORIES — Enhanced
   ═══════════════════════════════════════════════════════════ */
.categories {
  padding: 100px 0 80px;
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}

/* ── Floating food background elements ── */
.cat-float {
  position: absolute;
  font-size: 32px;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
  transition: transform 0.1s linear;
  will-change: transform;
}

.cat-float-1 {
  top: 8%;
  left: 5%;
  font-size: 36px;
  filter: blur(1px);
  opacity: 0.3;
}

.cat-float-2 {
  top: 15%;
  right: 8%;
  font-size: 28px;
  filter: blur(0px);
  opacity: 0.35;
}

.cat-float-3 {
  top: 45%;
  left: 3%;
  font-size: 26px;
  filter: blur(1px);
  opacity: 0.25;
}

.cat-float-4 {
  top: 60%;
  right: 12%;
  font-size: 30px;
  filter: blur(0px);
  opacity: 0.3;
}

.cat-float-5 {
  bottom: 20%;
  left: 10%;
  font-size: 24px;
  filter: blur(1px);
  opacity: 0.25;
}

.cat-float-6 {
  bottom: 10%;
  right: 5%;
  font-size: 34px;
  filter: blur(0px);
  opacity: 0.3;
}

.cat-float-7 {
  top: 30%;
  right: 3%;
  font-size: 18px;
  filter: blur(0px);
  opacity: 0.4;
  color: var(--dark-green-1);
}

.cat-float-8 {
  bottom: 35%;
  left: 7%;
  font-size: 28px;
  filter: blur(1px);
  opacity: 0.28;
}

/* ── Grid ── */
.categories-grid-wrapper {
  position: relative;
  z-index: 1;
}

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

.categories-grid:hover .category-card:hover {
  opacity: 1;
  transform: translateY(-10px) scale(1.04);
  filter: blur(0);
}

/* ── Card base ── */
.category-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  opacity: 0.85;
  transform: scale(0.98);
  transition: all 0.9s ease;
  cursor: pointer;
  text-align: center;
  padding-bottom: 24px;
  position: relative;
  z-index: 1;
  border: 1px solid transparent;
}

/* ── Card hover — lift + glow ── */
.category-card:hover {
  opacity: 1;
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(10, 82, 51, 0.08);
  border-color: rgba(10, 82, 51, 0.15);
  z-index: 10;
}

/* ── Card image ── */
.category-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  position: relative;
}

/* Gradient overlay on hover */
.category-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(4, 50, 28, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.category-card:hover .category-img::after {
  opacity: 1;
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.category-card:hover .category-img img {
  transform: scale(1.08);
}

/* ── Card text ── */
.category-card h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  margin: 16px 12px 6px;
  letter-spacing: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.category-card:hover h3 {
  color: #1a1a1a;
  transform: translateY(-2px);
}

.category-card p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  padding: 0 12px;
  line-height: 1.5;
  transition: opacity 0.2s ease;
}

.category-card:hover p {
  opacity: 0.8;
}

/* ═══════════════════════════════════════════════════════════
   PRIVATE LABEL SECTION
   ═══════════════════════════════════════════════════════════ */
.private-label {
  padding: var(--section-padding);
  background: var(--white);
}

.private-label .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-title-dark {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(30px, 3.5vw, 44px);
  color: var(--text-dark);
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title-dark em {
  font-style: italic;
}

.pl-text {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}

.pl-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
}

.pl-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--light-bg);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.3s var(--ease);
}

.pl-pill:hover {
  background: #e8efe8;
  transform: translateY(-2px);
}

.pl-pill svg {
  width: 18px;
  height: 18px;
  stroke: var(--dark-green-2);
  flex-shrink: 0;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--dark-green-1);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  border: 1.5px solid var(--dark-green-1);
  border-radius: 999px;
  transition: all 0.35s var(--ease);
  cursor: pointer;
}

.btn-outline-dark:hover {
  background: var(--dark-green-1);
  color: var(--text-white);
  transform: scale(1.03);
}

.btn-outline-dark svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}

.btn-outline-dark:hover svg {
  transform: translateX(3px);
}

/* PL Visual */
.pl-visual {
  position: relative;
}

.pl-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.pl-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.pl-image-tag {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 8px 18px;
  background: rgba(4, 50, 28, 0.9);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

/* ═══════════════════════════════════════════════════════════
   BRAND SECTION (DARK GREEN)
   ═══════════════════════════════════════════════════════════ */
.brand-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark-green-1) 0%, var(--dark-green-2) 100%);
  color: var(--text-white);
}

.brand-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.brand-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 42px);
  color: #f5f5f5;
  letter-spacing: -0.3px;
  line-height: 1.25;
  margin-bottom: 20px;
}

.brand-header p {
  font-family: var(--font-body);
  font-size: 16px;
  color: #cfcfcf;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

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

.brand-strip {
  border-radius: 16px;
  overflow: hidden;
  height: 240px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.brand-strip:hover {
  transform: scale(1.03);
}

.brand-strip img,
.brand-strip video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.brand-strip:hover img,
.brand-strip:hover video {
  transform: scale(1.05);
}

/* ── Brand strip stagger animation ── */
.brand-section .brand-strip.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.brand-section .brand-strip.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.brand-section .brand-strip-1.reveal {
  transition-delay: 0.1s;
}

.brand-section .brand-strip-2.reveal {
  transition-delay: 0.25s;
}

.brand-section .brand-strip-3.reveal {
  transition-delay: 0.4s;
}

/* ═══════════════════════════════════════════════════════════
   STATS SECTION
   ═══════════════════════════════════════════════════════════ */
.stats {
  padding: var(--section-padding);
  background: var(--light-bg);
}

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

.stat-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all 0.4s var(--ease);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.stat-icon {
  width: 52px;
  height: 52px;
  background: rgba(4, 50, 28, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--dark-green-2);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  color: var(--dark-green-1);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   TRUSTED BRANDS
   ═══════════════════════════════════════════════════════════ */
.trusted {
  padding: 80px 0;
  background: var(--white);
}

.trusted-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.trust-pill {
  padding: 12px 28px;
  border: 1.5px solid #E5E7EB;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.3s var(--ease);
  cursor: default;
}

.trust-pill:hover {
  border-color: var(--dark-green-2);
  color: var(--dark-green-1);
  background: rgba(4, 50, 28, 0.04);
}

/* ═══════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════ */
.cta-section {
  padding: 80px 0;
  background: var(--beige);
}

.cta-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--text-dark);
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-content p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}

.btn-primary-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--dark-green-1);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  transition: all 0.35s var(--ease);
  cursor: pointer;
}

.btn-primary-dark:hover {
  background: var(--dark-green-2);
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(4, 50, 28, 0.25);
}

.btn-primary-dark svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}

.btn-primary-dark:hover svg {
  transform: translateX(3px);
}

.btn-outline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  border: 1.5px solid rgba(26, 26, 26, 0.3);
  border-radius: 999px;
  transition: all 0.35s var(--ease);
  cursor: pointer;
}

.btn-outline-cta:hover {
  border-color: var(--text-dark);
  background: rgba(26, 26, 26, 0.05);
}

.cta-tags {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
}

.cta-tags span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: linear-gradient(135deg, var(--dark-green-1) 0%, #032718 100%);
  color: var(--text-white);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  color: var(--text-white) !important;
  margin-bottom: 16px;
  display: inline-block;
}

.footer-logo-img {
  width: 180px;
  height: auto;
  display: block;
  filter: brightness(1.1);
  transition: opacity 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
  opacity: 0.85;
}

.footer-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  padding: 5px 0;
  transition: all 0.3s var(--ease);
}

.footer-col a:hover {
  color: var(--text-white);
  transform: translateX(3px);
}

.footer-col a svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ═══════════════════════════════════════════════════════════
   CERTIFICATIONS
   ═══════════════════════════════════════════════════════════ */
.certifications {
  padding: 90px 0 100px;
  background: #f8f8f8;
  position: relative;
}

/* Subtle grain texture on background */
.certifications::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.4;
  pointer-events: none;
}

.cert-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.cert-divider {
  width: 60px;
  height: 3px;
  background: #04321c;
  margin: 0 auto 20px;
  border-radius: 2px;
}

.cert-subtitle {
  font-family: 'Montserrat', var(--font-body);
  font-size: 15px;
  color: #6b7280;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Card Grid ── */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 50px auto 0;
}

/* ── Card ── */
.cert-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 36px 28px 32px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.cert-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: #04321c;
  border-radius: 2px 2px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease, width 0.3s ease;
}

.cert-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1),
    0 6px 16px rgba(0, 0, 0, 0.06);
}

.cert-card:hover::after {
  opacity: 1;
  width: 60px;
}

/* ── Icon ── */
.cert-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cert-icon svg {
  width: 100%;
  height: 100%;
}

/* ── Text ── */
.cert-name {
  font-family: 'Montserrat', var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.cert-label {
  font-family: 'Montserrat', var(--font-body);
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.3s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.2s;
}

.reveal-delay-4 {
  transition-delay: 0.3s;
}

.reveal-delay-5 {
  transition-delay: 0.1s;
}

/* Split reveal animations */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.3s var(--ease);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.3s var(--ease);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Hero animations */
.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s var(--ease) forwards;
}

.anim-delay-1 {
  animation-delay: 0.15s;
}

.anim-delay-2 {
  animation-delay: 0.3s;
}

.anim-delay-3 {
  animation-delay: 0.45s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.anim-slide-right {
  opacity: 0;
  transform: translateX(80px);
  animation: slideRight 1s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

@keyframes slideRight {
  0% {
    opacity: 0;
    transform: translateX(80px);
  }

  60% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding-top: 40px;
  }

  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-text {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
    border-radius: 0;
  }

  .hero-floating-badge.badge-products {
    left: 10%;
  }

  .hero-floating-badge.badge-natural {
    right: 10%;
  }

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

  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .private-label .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sol-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

/* Mobile */
@media (max-width: 768px) {

  .container {
    padding: 0 16px;
  }

  /* Hide desktop split navs, show hamburger & mobile menu */
  .nav-left,
  .nav-right {
    display: none;
  }

  .nav-mobile {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .header-inner {
    justify-content: center;
    padding: 0 16px;
    height: 64px;
  }

  .header-logo-img {
    height: 52px;
  }

  /* ── Hero ── */
  .hero {
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 60px;
  }

  /* Dissolve hero-content so children participate in container flex order */
  .hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
  }

  .hero-content {
    display: contents;
  }

  /* Order: heading(1) → paragraph(2) → image(3) → buttons(4) */
  .hero h1 {
    order: 1;
    font-size: clamp(28px, 7vw, 40px);
    margin-bottom: 12px;
    width: 100%;
  }

  .hero-text {
    order: 2;
    font-size: 15px;
    margin-bottom: 24px;
    width: 100%;
  }

  .hero-typing {
    order: 0;
    margin-bottom: 20px;
  }

  .typing-text {
    font-size: 14px;
    padding: 5px 12px;
  }

  .hero-visual {
    order: 3;
    width: 100%;
    margin-bottom: 0;
  }

  .hero-image-wrapper {
    max-width: 320px;
    margin: 0 auto;
    border-radius: 0;
  }

  .hero-buttons {
    order: 4;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 12px;
    margin-top: 16px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-outline-hero {
    justify-content: center;
    padding: 12px 20px;
    font-size: 14px;
    width: 100%;
    max-width: 320px;
    height: 50px;
    text-align: center;
    display: inline-flex;
    align-items: center;
  }

  .btn-outline-hero {
    animation: none;
  }

  .hero-floating-badge {
    display: none;
  }

  .hero-curve svg {
    height: 40px;
  }

  /* ── Solutions / Private Label (split → stacked, reordered) ── */
  .solutions {
    padding: 60px 0 50px;
  }

  .sol-split {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
  }

  /* Dissolve wrappers so children participate in parent flex order */
  .sol-visual,
  .sol-content {
    display: contents;
  }

  /* Order: label(1) → image(2) → heading(3) → subtitle(4) → features(5) → button(6) */
  .sol-content .section-label {
    order: 1;
    margin-bottom: 12px;
    font-weight: 700;
    color: #1a1a1a;
    font-size: 17px;
  }

  .sol-image-wrapper {
    order: 2;
    max-width: 400px;
    margin: 0 auto 16px;
    width: 100%;
  }

  .sol-content .section-title-dark {
    order: 3;
    margin-bottom: 12px;
  }

  .sol-content .sol-subtitle {
    order: 4;
  }

  .sol-content .sol-features {
    order: 5;
    width: 100%;
  }

  .sol-content .btn-solutions {
    order: 6;
  }

  .sol-subtitle {
    font-size: 14px;
  }

  .sol-feature {
    padding: 14px 16px;
    gap: 14px;
  }

  .sol-feature-icon {
    width: 38px;
    height: 38px;
  }

  .sol-feature-icon svg {
    width: 18px;
    height: 18px;
  }

  .sol-feature-text h3 {
    font-size: 14px;
  }

  .sol-feature-text p {
    font-size: 12px;
  }

  /* ── Categories ── */
  .categories {
    padding: 60px 0 50px;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .category-img {
    height: 120px;
  }

  .category-card h3 {
    font-size: 13px;
    margin: 12px 8px 4px;
  }

  .category-card p {
    font-size: 11px;
    padding: 0 8px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-title {
    font-size: clamp(24px, 6vw, 32px);
  }

  .section-subtitle {
    font-size: 14px;
  }

  /* ── Private Label ── */
  .private-label {
    padding: 60px 0;
  }

  .section-title-dark {
    font-size: clamp(26px, 6vw, 36px);
  }

  .pl-text {
    font-size: 15px;
  }

  .pl-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pl-pill {
    font-size: 13px;
    padding: 10px 14px;
  }

  /* ── Brand Section ── */
  .brand-section {
    padding: 60px 0;
  }

  .brand-strips {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .brand-strip {
    height: 180px;
  }

  .brand-header h2 {
    font-size: clamp(24px, 6vw, 32px);
  }

  /* ── Stats ── */
  .stats {
    padding: 60px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat-card {
    padding: 24px 16px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 12px;
  }

  /* ── Certifications ── */
  .certifications {
    padding: 60px 0;
  }

  .cert-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    gap: 20px;
  }

  .cert-card {
    padding: 28px 20px 24px;
  }

  .cert-icon {
    width: 72px;
    height: 72px;
  }

  /* ── Trusted ── */
  .trusted {
    padding: 48px 0;
  }

  .trusted-pills {
    gap: 8px;
  }

  .trust-pill {
    padding: 8px 18px;
    font-size: 12px;
  }

  /* ── CTA ── */
  .cta-section {
    padding: 60px 0;
  }

  .cta-content h2 {
    font-size: clamp(24px, 6vw, 32px);
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary-dark,
  .btn-outline-cta {
    justify-content: center;
  }

  .cta-tags {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  /* ── Footer ── */
  .footer {
    padding-top: 48px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-logo-img {
    width: 140px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .footer-legal {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .hero h1 {
    font-size: 24px;
    line-height: 1.15;
  }

  .hero {
    padding-top: 80px;
    padding-bottom: 48px;
  }

  .hero-text {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .hero-image-wrapper {
    max-width: 260px;
  }

  .categories-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .category-img {
    height: 100px;
  }

  .section-title {
    font-size: 22px;
  }

  .section-subtitle {
    font-size: 13px;
  }

  .sol-feature {
    padding: 12px 14px;
    gap: 12px;
  }

  .sol-feature-icon {
    width: 34px;
    height: 34px;
  }

  .sol-feature-text h3 {
    font-size: 13px;
  }

  .sol-feature-text p {
    font-size: 11px;
  }

  .brand-strip {
    height: 150px;
  }

  .brand-header h2 {
    font-size: 22px;
  }

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

  .stat-number {
    font-size: 24px;
  }

  .stat-label {
    font-size: 11px;
  }

  .pl-text {
    font-size: 14px;
  }

  .pl-pill {
    font-size: 12px;
    padding: 8px 12px;
  }

  .section-title-dark {
    font-size: 22px;
  }

  .cert-card {
    padding: 24px 16px 20px;
  }

  .cert-icon {
    width: 60px;
    height: 60px;
  }

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

  .btn-primary-dark,
  .btn-outline-cta {
    padding: 12px 20px;
    font-size: 13px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-brand p {
    font-size: 13px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .footer-col h4 {
    font-size: 12px;
  }
}

/* Extra small phones */
@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  .hero h1 {
    font-size: 22px;
  }

  .hero-image-wrapper {
    max-width: 220px;
  }

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

  .category-img {
    height: 140px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-outline-hero {
    padding: 12px 20px;
    font-size: 13px;
  }
}