/* ============================================================
   HERBS VITALITY — style.css
   Premium B2B Landing Page — Natural Ingredients & Essential Oils
   Author: Custom build for Herbs Vitality
   Version: 1.0
   ============================================================

   TABLE OF CONTENTS
   ─────────────────
   01. Design System (CSS Variables)
   02. Reset & Base
   03. Typography
   04. Layout Utilities
   05. Preloader
   06. Top Bar
   07. Header & Navigation
   08. Mobile Menu
   09. Hero Section
   10. Trust Strip
   11. About Section
   12. Products Section
   13. Why Choose Us Section
   14. Process Section
   15. Founder Section
   16. Industries Section
   17. Contact & Inquiry Form
   18. Footer
   19. Floating Actions
   20. Reveal Animations
   21. Responsive Breakpoints
   ============================================================ */


/* ============================================================
   01. DESIGN SYSTEM — CSS Custom Properties
   ============================================================ */
:root {
  /* Brand Colors */
  --c-forest-deep:  #0e1f16;  /* footer, deepest dark */
  --c-forest:       #1c4433;  /* primary brand green */
  --c-emerald:      #2d6a4f;  /* secondary green */
  --c-sage:         #52b788;  /* accent / highlight */
  --c-sage-light:   #95d5b2;  /* pale sage for borders */
  --c-sage-pale:    #d8f3dc;  /* very light sage tint */
  --c-gold:         #c9a84c;  /* premium gold accent */
  --c-gold-dark:    #a08030;  /* gold hover */
  --c-gold-pale:    #f0e6c8;  /* gold tint background */

  /* Neutral / Background Colors */
  --c-cream:        #faf8f3;  /* main warm background */
  --c-cream-2:      #f3ede3;  /* slightly warmer cream */
  --c-beige:        #e5d9c8;  /* warm beige dividers / borders */
  --c-beige-light:  #f0ebe0;  /* light card borders */
  --c-white:        #ffffff;

  /* Text Colors */
  --c-text:         #141e18;  /* primary near-black */
  --c-text-mid:     #3d5c4a;  /* secondary text */
  --c-text-mute:    #7a9285;  /* muted / captions */
  --c-text-invert:  #f0f5f2;  /* text on dark backgrounds */

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  --font-sans:  'Inter', 'Helvetica Neue', 'Arial', sans-serif;

  /* Spacing */
  --sp-xs:  0.5rem;    /*  8px */
  --sp-sm:  1rem;      /* 16px */
  --sp-md:  1.5rem;    /* 24px */
  --sp-lg:  2.5rem;    /* 40px */
  --sp-xl:  4rem;      /* 64px */
  --sp-2xl: 6rem;      /* 96px */
  --sp-3xl: 8rem;      /* 128px */

  /* Layout */
  --max-w:      1340px;
  --max-w-text: 740px;
  --gutter:     clamp(1.25rem, 4vw, 3rem);

  /* Component */
  --header-h:   84px;

  /* Radius */
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   40px;
  --r-full: 9999px;

  /* Shadows */
  --sh-xs: 0 2px 8px  rgba(14, 31, 22, 0.06);
  --sh-sm: 0 4px 20px rgba(14, 31, 22, 0.08);
  --sh-md: 0 12px 40px rgba(14, 31, 22, 0.12);
  --sh-lg: 0 24px 60px rgba(14, 31, 22, 0.16);
  --sh-xl: 0 40px 80px rgba(14, 31, 22, 0.22);

  /* Transitions */
  --t:      0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.2s  cubic-bezier(0.4, 0, 0.2, 1);
}


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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--c-text);
  background-color: var(--c-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

input, textarea, select {
  font-family: inherit;
}


/* ============================================================
   03. TYPOGRAPHY
   ============================================================ */

/* Eyebrow / Overline label */
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-sage);
  margin-bottom: 1rem;
}

.eyebrow--gold {
  color: var(--c-gold);
}

.eyebrow--light {
  color: var(--c-sage-light);
}

/* Headings — Serif (Cormorant Garamond) */
h1, h2, h3, h4,
.h1, .h2, .h3, .h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.1;
  color: var(--c-text);
  letter-spacing: -0.01em;
}

h1, .h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2, .h2 { font-size: clamp(2rem,   4vw, 3.25rem); }
h3, .h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4, .h4 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }

/* Italic accent for serif */
em.serif-accent {
  font-style: italic;
  color: var(--c-emerald);
}

/* Body text */
.body-lg {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.8;
  color: var(--c-text-mid);
}

.body-sm {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--c-text-mute);
}

/* Gold ruled line below section headings */
.heading-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--c-gold), transparent);
  margin-top: 1.25rem;
  margin-bottom: 2rem;
}

.heading-rule--center {
  margin-left: auto;
  margin-right: auto;
}


/* ============================================================
   04. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section--tight {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section--dark {
  background-color: var(--c-forest);
  color: var(--c-text-invert);
}

.section--deep {
  background-color: var(--c-forest-deep);
  color: var(--c-text-invert);
}

.section--cream {
  background-color: var(--c-cream);
}

.section--white {
  background-color: var(--c-white);
}

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

/* CTA Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: var(--r-full);
  transition: var(--t);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--c-forest);
  color: var(--c-white);
  border: 2px solid var(--c-forest);
}
.btn--primary:hover {
  background: var(--c-emerald);
  border-color: var(--c-emerald);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}

.btn--outline {
  background: transparent;
  color: var(--c-forest);
  border: 2px solid var(--c-forest);
}
.btn--outline:hover {
  background: var(--c-forest);
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: var(--sh-sm);
}

.btn--gold {
  background: var(--c-gold);
  color: var(--c-forest-deep);
  border: 2px solid var(--c-gold);
  font-weight: 700;
}
.btn--gold:hover {
  background: var(--c-gold-dark);
  border-color: var(--c-gold-dark);
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.35);
}

.btn--outline-light {
  background: transparent;
  color: var(--c-white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--c-white);
  transform: translateY(-2px);
}

.btn--sm {
  font-size: 0.75rem;
  padding: 0.6rem 1.4rem;
}

.btn svg, .btn i {
  font-size: 1.1em;
  flex-shrink: 0;
}

/* Badge / Tag */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-full);
}

.badge--green {
  background: var(--c-sage-pale);
  color: var(--c-emerald);
}

.badge--gold {
  background: var(--c-gold-pale);
  color: var(--c-gold-dark);
}


/* ============================================================
   05. PRELOADER
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--c-cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  transition: opacity 0.7s ease, visibility 0.7s ease;
  overflow: hidden;
}

/* Subtle botanical rings in background */
#preloader::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(28, 68, 51, 0.07);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: preloaderRing 2s 0.2s ease-out forwards;
  opacity: 0;
}

#preloader::after {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(28, 68, 51, 0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: preloaderRing 2s 0.45s ease-out forwards;
  opacity: 0;
}

/* Extra decorative ring */
.preloader__ring {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  animation: preloaderRingGold 1.8s 0.1s ease-out forwards;
  opacity: 0;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* Logo */
.preloader__logo {
  width: 160px;
  opacity: 0;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  animation: preloaderLogo 0.9s 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  filter: drop-shadow(0 8px 20px rgba(28, 68, 51, 0.12));
}

/* Progress bar */
.preloader__bar {
  width: 140px;
  height: 1.5px;
  background: rgba(28, 68, 51, 0.1);
  position: relative;
  overflow: hidden;
  border-radius: var(--r-full);
  z-index: 1;
  margin-bottom: 2rem;
}

.preloader__bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--c-forest), var(--c-gold));
  animation: preloaderBar 1.3s 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  border-radius: var(--r-full);
}

/* Three trust chips row */
.preloader__trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  position: relative;
  z-index: 1;
  animation: preloaderTagline 0.6s 1s ease forwards;
}

.preloader__chip {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(28, 68, 51, 0.5);
  white-space: nowrap;
}

.preloader__chip-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--c-gold);
  flex-shrink: 0;
  opacity: 0.6;
}

@keyframes preloaderLogo {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}

@keyframes preloaderTagline {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes preloaderBar {
  from { left: -100%; }
  to   { left: 100%; }
}

@keyframes preloaderRing {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.85); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes preloaderRingGold {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.7); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}


/* ============================================================
   07. HEADER & NAVIGATION
   ─────────────────────────────────────────────────────────────
   Structure: flex row, logo left, nav absolutely centered,
   CTA+burger right. No padding hacks — pure geometry.
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: var(--header-h);
  transition: background 0.45s ease,
              box-shadow  0.45s ease,
              border-color 0.45s ease;
  border-bottom: 1px solid transparent;
}

/* Gold hairline that fades in on scroll — sits at the header bottom */
.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: var(--gutter);
  right: var(--gutter);
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(201, 168, 76, 0.4) 30%,
    rgba(201, 168, 76, 0.4) 70%,
    transparent
  );
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.site-header.scrolled::after {
  opacity: 1;
}

/* Scrolled state — frosted glass */
.site-header.scrolled {
  background: rgba(250, 248, 243, 0.96);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom-color: rgba(229, 217, 200, 0.8);
  box-shadow:
    0 4px 24px rgba(14, 31, 22, 0.07),
    0 1px  0  rgba(201, 168, 76, 0.1);
}

/* Make the container fill the full header height */
.site-header > .container {
  height: 100%;
}

/* ── Inner wrapper
   Flex row, full header height, items vertically centered.
   Nav is pulled out of flow and placed at exact geometric
   center of the header width — immune to logo/CTA asymmetry. ── */
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative; /* anchor for the absolute nav */
}

/* ── Logo ── */
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 1;
  transition: opacity var(--t-fast), filter var(--t);
}

.site-logo:hover {
  opacity: 0.82;
  filter: drop-shadow(0 3px 10px rgba(28, 68, 51, 0.15));
}

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

/* ── Nav — absolutely centered in the header width ── */
.site-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--c-forest);
  padding: 0.45rem 0.6rem;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
  position: relative;
  white-space: nowrap;
}

/* Center-growing underline on hover */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  right: 50%;
  height: 1.5px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-sage));
  border-radius: var(--r-full);
  transition: left var(--t), right var(--t);
}

.nav-link:hover {
  color: var(--c-emerald);
  background: rgba(28, 68, 51, 0.05);
}

.nav-link:hover::after {
  left: 0.6rem;
  right: 0.6rem;
}

/* Catalogue pill — gold bordered */
.nav-link--catalogue {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-left: 0.3rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: var(--r-full);
  color: var(--c-gold-dark);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}

.nav-link--catalogue::after { display: none; }

.nav-link--catalogue:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-forest-deep);
}

.nav-link--catalogue i {
  font-size: 0.85rem;
}

/* ── Header right: CTA + hamburger ── */
.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  z-index: 1;
}

/* ── Header CTA Button — premium styled ── */
.header-cta {
  margin-left: 0;
  flex-shrink: 0;
  font-size: 0.72rem !important;
  padding: 0.7rem 1.5rem !important;
  background: linear-gradient(135deg, var(--c-forest) 0%, var(--c-emerald) 100%) !important;
  border: none !important;
  border-radius: var(--r-full) !important;
  color: var(--c-white) !important;
  box-shadow:
    0 2px 8px rgba(28, 68, 51, 0.25),
    inset 0 1px 0 rgba(255,255,255,0.1) !important;
  position: relative;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), filter var(--t) !important;
}

/* Shimmer sweep on hover */
.header-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}

.header-cta:hover::before {
  left: 160%;
}

.header-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow:
    0 6px 20px rgba(28, 68, 51, 0.3),
    0 1px 0 rgba(255,255,255,0.1) !important;
  filter: brightness(1.08);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
  position: relative;
  z-index: 1001;
}

.hamburger:hover { background: var(--c-cream-2); }

.hamburger__line {
  width: 22px;
  height: 1.5px;
  background: var(--c-text);
  border-radius: var(--r-full);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
  transform-origin: center;
}

.hamburger.active .hamburger__line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.active .hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active .hamburger__line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}


/* ============================================================
   08. MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: var(--c-forest);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem var(--gutter) 3rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.45s,
              transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 2.5rem;
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 2.75rem);
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--t-fast), padding-left var(--t);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-link:hover {
  color: var(--c-white);
  padding-left: 0.75rem;
}

.mobile-nav-link i {
  font-size: 1.25rem;
  opacity: 0.4;
}

.mobile-menu__footer {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu__contacts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.mobile-menu__contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--t-fast);
}

.mobile-menu__contact-link i {
  color: var(--c-gold);
  font-size: 1rem;
}

.mobile-menu__contact-link:hover { color: var(--c-white); }

.mobile-menu__cta {
  display: block;
  text-align: center;
}


/* ============================================================
   09. HERO SECTION
   ============================================================ */
.hero {
  min-height: 100svh;
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: var(--c-cream);
}

/* Subtle botanical background SVG */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Ccircle cx='60' cy='60' r='58' fill='none' stroke='%231c4433' stroke-width='0.4' stroke-opacity='0.06'/%3E%3Ccircle cx='60' cy='60' r='40' fill='none' stroke='%231c4433' stroke-width='0.4' stroke-opacity='0.04'/%3E%3Ccircle cx='60' cy='60' r='22' fill='none' stroke='%231c4433' stroke-width='0.4' stroke-opacity='0.03'/%3E%3C/svg%3E");
  background-size: 240px 240px;
  opacity: 0.5;
  pointer-events: none;
}

/* Radial gradient overlay for depth */
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse at top right, rgba(82,183,136,0.07), transparent 60%);
  pointer-events: none;
}

.hero__container {
  position: relative;
  z-index: 1;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: calc(100svh - var(--header-h) - 7rem);
}

/* Left Content */
.hero__content {
  max-width: 620px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(28, 68, 51, 0.06);
  border: 1px solid rgba(28, 68, 51, 0.12);
  padding: 0.45rem 1rem 0.45rem 0.5rem;
  border-radius: var(--r-full);
  margin-bottom: 1.75rem;
}

.hero__eyebrow-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--c-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__eyebrow-dot svg {
  width: 14px;
  height: 14px;
  fill: var(--c-white);
}

.hero__eyebrow-text {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-forest);
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5.5vw, 5.25rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--c-text);
  margin-bottom: 1.5rem;
}

.hero__headline em {
  font-style: italic;
  color: var(--c-emerald);
}

.hero__body {
  font-size: clamp(0.95rem, 1.2vw, 1.0625rem);
  line-height: 1.85;
  color: var(--c-text-mid);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 3rem;
}

/* Mini stats row */
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero__stat-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--c-white);
  border: 1px solid var(--c-beige);
  border-radius: var(--r-full);
  padding: 0.5rem 1rem 0.5rem 0.6rem;
  box-shadow: var(--sh-xs);
}

.hero__stat-chip-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--c-sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__stat-chip-icon i {
  font-size: 0.75rem;
  color: var(--c-emerald);
}

.hero__stat-chip-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-text-mid);
  text-transform: uppercase;
}

/* Right Visual — Editorial Image Mosaic */
.hero__visual {
  position: relative;
  height: clamp(460px, 70vh, 700px);
}

.hero__mosaic {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Main large image */
.hero__img--main {
  position: absolute;
  left: 0;
  top: 0;
  width: 62%;
  height: 85%;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xl);
}

.hero__img--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.hero__img--main:hover img { transform: scale(1.03); }

/* Top-right accent image */
.hero__img--top-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 34%;
  height: 42%;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-md);
}

.hero__img--top-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Bottom-right accent image */
.hero__img--btm-right {
  position: absolute;
  right: 0;
  bottom: 4%;
  width: 34%;
  height: 50%;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-md);
}

.hero__img--btm-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating stat card */
.hero__float-card {
  position: absolute;
  z-index: 5;
  background: var(--c-white);
  border: 1px solid var(--c-beige);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--sh-md);
  min-width: 140px;
}

.hero__float-card--1 {
  bottom: 14%;
  left: 4%;
  animation: floatCard 4s ease-in-out infinite;
}

.hero__float-card--2 {
  top: 42%;
  right: 28%;
  animation: floatCard 4s 1.5s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.hero__float-card-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--c-forest);
  margin-bottom: 0.2rem;
}

.hero__float-card-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-mute);
}

/* Gold corner accent */
.hero__img--main::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 48px;
  height: 48px;
  background: var(--c-gold);
  border-radius: var(--r-sm);
  z-index: -1;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.45;
  z-index: 1;
}

.hero__scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-text-mid);
  writing-mode: horizontal-tb;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--c-sage), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}


/* ============================================================
   10. TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--c-forest);
  padding: clamp(2.5rem, 4vw, 3.5rem) 0;
  position: relative;
  overflow: hidden;
}

.trust-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
  opacity: 0.4;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
  transition: background var(--t-fast);
}

.trust-item + .trust-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}

.trust-item:hover {
  background: rgba(255,255,255,0.04);
}

.trust-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(82, 183, 136, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(82, 183, 136, 0.25);
  transition: background var(--t), border-color var(--t);
}

.trust-item:hover .trust-item__icon {
  background: rgba(82, 183, 136, 0.25);
  border-color: rgba(82, 183, 136, 0.4);
}

.trust-item__icon i {
  font-size: 1.2rem;
  color: var(--c-sage);
}

.trust-item__title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 0.2rem;
}

.trust-item__sub {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}


/* ============================================================
   11. ABOUT SECTION
   ============================================================ */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.about__content {}

.about__body {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--c-text-mid);
  margin-bottom: 1.5rem;
}

.about__body + .about__body { margin-top: 0; }

.about__industries {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 2rem 0 2.5rem;
}

.about__industry-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: var(--r-full);
  background: var(--c-cream-2);
  border: 1px solid var(--c-beige);
  color: var(--c-text-mid);
  transition: var(--t);
}

.about__industry-tag:hover {
  background: var(--c-forest);
  color: var(--c-white);
  border-color: var(--c-forest);
}

/* About Image Stack */
.about__visual {
  position: relative;
}

.about__img-stack {
  position: relative;
  height: clamp(480px, 65vh, 680px);
}

.about__img--main {
  position: absolute;
  left: 0;
  top: 0;
  width: 73%;
  height: 80%;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xl);
}

.about__img--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.about__img--main:hover img { transform: scale(1.04); }

.about__img--accent {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 52%;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 4px solid var(--c-white);
}

.about__img--accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Brand card floating */
.about__brand-card {
  position: absolute;
  top: 60%;
  left: -5%;
  background: var(--c-gold);
  color: var(--c-forest-deep);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 16px 40px rgba(201,168,76,0.3);
  min-width: 160px;
  z-index: 3;
}

.about__brand-card-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  color: var(--c-forest-deep);
}

.about__brand-card-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(14,31,22,0.65);
  margin-top: 0.2rem;
}

.about__certified-badge {
  position: absolute;
  top: 12%;
  right: -4%;
  background: var(--c-white);
  border: 1px solid var(--c-beige);
  border-radius: var(--r-md);
  padding: 0.875rem 1.25rem;
  box-shadow: var(--sh-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3;
}

.about__certified-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-sage);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(82,183,136,0.2);
}

.about__certified-text {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text);
}


/* ============================================================
   12. PRODUCTS SECTION
   ============================================================ */
.products {
  background: var(--c-white);
}

.products__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

/* Filter Tabs */
.products__filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border-radius: var(--r-full);
  border: 1.5px solid var(--c-beige);
  background: transparent;
  color: var(--c-text-mid);
  transition: var(--t);
  cursor: pointer;
}

.filter-btn:hover {
  border-color: var(--c-forest);
  color: var(--c-forest);
}

.filter-btn.active {
  background: var(--c-forest);
  border-color: var(--c-forest);
  color: var(--c-white);
}

/* Product Grid */
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Product Card */
.product-card {
  background: var(--c-cream);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-beige-light);
  transition: transform var(--t), box-shadow var(--t);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}

.product-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--c-cream-2);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.06);
}

.product-card__category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--c-white);
  color: var(--c-emerald);
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-full);
  box-shadow: var(--sh-xs);
}

.product-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__name {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.product-card__latin {
  font-size: 0.75rem;
  font-style: italic;
  color: var(--c-text-mute);
  margin-bottom: 0.875rem;
}

.product-card__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--c-text-mid);
  margin-bottom: 1.25rem;
}

/* Applications mini list */
.product-card__apps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.product-card__app-tag {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.625rem;
  border-radius: var(--r-full);
  background: var(--c-white);
  border: 1px solid var(--c-beige);
  color: var(--c-text-mid);
}

/* Highlights */
.product-card__highlights {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
}

.product-card__highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--c-text-mid);
}

.product-card__highlight i {
  color: var(--c-sage);
  font-size: 0.875rem;
  flex-shrink: 0;
}

.product-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--c-beige);
}

.product-card__bulk-note {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-emerald);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.product-card__bulk-note i {
  font-size: 0.75rem;
}

/* Hidden product cards */
.product-card[data-cat].hidden {
  display: none;
}


/* ============================================================
   13. WHY CHOOSE US SECTION
   ============================================================ */
.why-us {
  background: var(--c-forest);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 70%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(82,183,136,0.08), transparent 60%);
  pointer-events: none;
}

.why-us__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.why-us__header h2 {
  color: var(--c-white);
}

.why-us__header p {
  color: rgba(255,255,255,0.6);
  margin-top: 1rem;
}

/* Cards grid */
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  transition: background var(--t), border-color var(--t), transform var(--t);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow);
}

.why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card__number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(255,255,255,0.06);
  margin-bottom: -0.5rem;
  letter-spacing: -0.04em;
}

.why-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: rgba(82, 183, 136, 0.15);
  border: 1px solid rgba(82, 183, 136, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background var(--t), border-color var(--t);
}

.why-card:hover .why-card__icon {
  background: rgba(82, 183, 136, 0.25);
  border-color: rgba(82, 183, 136, 0.4);
}

.why-card__icon i {
  font-size: 1.375rem;
  color: var(--c-sage);
}

.why-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 0.625rem;
  line-height: 1.3;
}

.why-card__body {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
}


/* ============================================================
   14. PROCESS SECTION (Field to Export)
   ============================================================ */
.process {
  background: var(--c-cream);
  position: relative;
  overflow: hidden;
}

.process__header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 5rem;
}

/* Timeline container */
.process__timeline {
  position: relative;
}

/* Connecting line */
.process__line {
  position: absolute;
  top: 48px;
  left: calc(var(--gutter) + 24px);
  right: calc(var(--gutter) + 24px);
  height: 1px;
  background: var(--c-beige);
  z-index: 0;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.process-step__node {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-white);
  border: 2px solid var(--c-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: background var(--t), border-color var(--t), transform var(--t);
  cursor: default;
}

.process-step:hover .process-step__node {
  background: var(--c-forest);
  border-color: var(--c-forest);
  transform: scale(1.15);
}

.process-step__node i {
  font-size: 1.25rem;
  color: var(--c-text-mute);
  transition: color var(--t);
}

.process-step:hover .process-step__node i {
  color: var(--c-white);
}

.process-step__num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--c-gold);
  font-size: 0.5625rem;
  font-weight: 800;
  color: var(--c-forest-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}

.process-step__title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-text);
  line-height: 1.3;
}

.process-step__sub {
  font-size: 0.7rem;
  color: var(--c-text-mute);
  line-height: 1.5;
  margin-top: -0.5rem;
}

/* Process image showcase row */
.process__images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.process-img {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

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

.process-img:hover img { transform: scale(1.05); }

.process-img__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,31,22,0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.process-img__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}


/* ============================================================
   15. FOUNDER SECTION
   ============================================================ */
.founder {
  background: var(--c-forest-deep);
  position: relative;
  overflow: hidden;
}

.founder::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('images/founder%20holding%20herbs%20in%20farm.jpg') center/cover no-repeat;
  opacity: 0.2;
  filter: grayscale(30%);
}

.founder__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

/* Founder image */
.founder__visual {
  position: relative;
}

.founder__img-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--sh-xl);
  position: relative;
}

.founder__img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: brightness(0.92) contrast(1.04);
}

/* Gold accent strip */
.founder__img-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--c-gold);
}

.founder__origin-badge {
  position: absolute;
  top: 2rem;
  right: -2rem;
  background: var(--c-gold);
  color: var(--c-forest-deep);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  box-shadow: 0 12px 32px rgba(201,168,76,0.4);
  text-align: center;
  min-width: 120px;
}

.founder__origin-badge-flag {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.founder__origin-badge-label {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(14,31,22,0.75);
}

/* Founder content */
.founder__content {
  padding: 1rem 0;
}

.founder__quote-mark {
  font-family: var(--font-serif);
  font-size: 7rem;
  line-height: 0.6;
  color: var(--c-gold);
  opacity: 0.3;
  margin-bottom: 1rem;
  display: block;
}

.founder__name {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 0.35rem;
}

.founder__title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 2rem;
}

.founder__bio {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.5rem;
}

.founder__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.founder__credential {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.5rem 0.875rem;
  border-radius: var(--r-full);
  transition: var(--t);
}

.founder__credential i {
  color: var(--c-sage);
  font-size: 0.875rem;
}

.founder__credential:hover {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.2);
}


/* ============================================================
   16. INDUSTRIES SECTION
   ============================================================ */
.industries {
  background: var(--c-white);
}

.industries__header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 3.5rem;
}

.industries__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.industry-card {
  background: var(--c-cream);
  border: 1px solid var(--c-beige-light);
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform var(--t), box-shadow var(--t), background var(--t);
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c-forest) 0%, var(--c-emerald) 100%);
  opacity: 0;
  transition: opacity var(--t-slow);
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}

.industry-card:hover::before {
  opacity: 1;
}

.industry-card > * {
  position: relative;
  z-index: 1;
}

.industry-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--r-md);
  background: var(--c-white);
  border: 1px solid var(--c-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: background var(--t), border-color var(--t);
}

.industry-card:hover .industry-card__icon {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.2);
}

.industry-card__icon i {
  font-size: 1.75rem;
  color: var(--c-forest);
  transition: color var(--t);
}

.industry-card:hover .industry-card__icon i {
  color: var(--c-white);
}

.industry-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 0.75rem;
  transition: color var(--t);
}

.industry-card:hover .industry-card__title {
  color: var(--c-white);
}

.industry-card__body {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--c-text-mute);
  transition: color var(--t);
}

.industry-card:hover .industry-card__body {
  color: rgba(255,255,255,0.7);
}


/* ============================================================
   17. CONTACT & INQUIRY FORM
   ============================================================ */
.contact {
  background: var(--c-cream-2);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(28,68,51,0.04), transparent);
}

.contact__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

/* Contact info panel */
.contact__info {}

.contact__info-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.2;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.contact__info-sub {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--c-text-mid);
  margin-bottom: 2rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.contact__detail-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: var(--c-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact__detail-icon i {
  font-size: 1.1rem;
  color: var(--c-sage);
}

.contact__detail-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-mute);
  margin-bottom: 0.2rem;
}

.contact__detail-value {
  font-size: 0.9rem;
  color: var(--c-text);
  font-weight: 500;
  line-height: 1.5;
}

.contact__detail-value a {
  color: var(--c-emerald);
  transition: color var(--t-fast);
}

.contact__detail-value a:hover { color: var(--c-forest); }

.contact__reassurance {
  background: var(--c-white);
  border: 1px solid var(--c-beige);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.contact__reassurance i {
  font-size: 1.25rem;
  color: var(--c-gold);
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.contact__reassurance-text {
  font-size: 0.825rem;
  line-height: 1.7;
  color: var(--c-text-mid);
}

/* Inquiry Form */
.contact__form-wrap {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--sh-lg);
  border: 1px solid var(--c-beige-light);
}

.contact__form-title {
  font-family: var(--font-serif);
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 0.5rem;
}

.contact__form-sub {
  font-size: 0.875rem;
  color: var(--c-text-mute);
  margin-bottom: 2rem;
}

/* Form fields */
.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form__field {
  position: relative;
}

.form__field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-mid);
  margin-bottom: 0.4rem;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--c-text);
  background: var(--c-cream);
  border: 1.5px solid var(--c-beige);
  border-radius: var(--r-md);
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--c-text-mute);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--c-sage);
  background: var(--c-white);
  box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.12);
}

.form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237a9285' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
}

.form__textarea {
  resize: vertical;
  min-height: 110px;
}

/* Form submit */
.form__submit {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.form__privacy {
  font-size: 0.725rem;
  color: var(--c-text-mute);
  flex: 1;
  min-width: 180px;
}

.form__btn {
  flex-shrink: 0;
  min-width: 160px;
  justify-content: center;
}

/* Form success message */
.form__success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form__success.show { display: block; }

.form__success i {
  font-size: 3rem;
  color: var(--c-sage);
  margin-bottom: 1rem;
}

.form__success-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--c-text);
  margin-bottom: 0.5rem;
}

.form__success-body {
  font-size: 0.9rem;
  color: var(--c-text-mute);
}


/* ============================================================
   18. FOOTER
   ============================================================ */
.footer {
  background: var(--c-forest-deep);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}

.footer__main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Brand column */
.footer__brand {}

.footer__logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 1.25rem;
}

.footer__brand-statement {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
  max-width: 260px;
  margin-bottom: 1.75rem;
}

.footer__social {
  display: flex;
  gap: 0.6rem;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  transition: background var(--t), border-color var(--t), color var(--t);
}

.footer__social-link:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-forest-deep);
}

/* Footer columns */
.footer__col {}

.footer__col-title {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--t-fast), padding-left var(--t);
}

.footer__link:hover {
  color: rgba(255,255,255,0.85);
  padding-left: 0.35rem;
}

/* Document download links in footer */
.footer__link--doc {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(201, 168, 76, 0.65);
  font-size: 0.8125rem;
  transition: color var(--t-fast), padding-left var(--t);
}

.footer__link--doc i {
  font-size: 0.875rem;
  flex-shrink: 0;
}

.footer__link--doc:hover {
  color: var(--c-gold);
  padding-left: 0.35rem;
}

/* Mobile menu catalogue link — gold accent */
.mobile-nav-link--catalogue {
  color: var(--c-gold) !important;
  border-top: 1px solid rgba(201,168,76,0.15) !important;
  margin-top: 0.5rem;
  padding-top: 1rem !important;
  font-size: clamp(1.4rem, 4vw, 1.75rem) !important;
}

/* Contact column */
.footer__contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer__contact-item i {
  font-size: 1rem;
  color: var(--c-sage);
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.footer__contact-text {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
}

.footer__contact-text a {
  color: rgba(255,255,255,0.45);
  transition: color var(--t-fast);
}

.footer__contact-text a:hover {
  color: var(--c-sage);
}

/* Footer bottom bar */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copyright {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer__bottom-link {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  transition: color var(--t-fast);
}

.footer__bottom-link:hover { color: rgba(255,255,255,0.55); }

.footer__origin-tag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
}

.footer__origin-tag span { font-size: 0.9rem; }


/* ============================================================
   19. FLOATING ACTIONS
   ============================================================ */

/* WhatsApp button */
.float-whatsapp {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: transform var(--t), box-shadow var(--t), background var(--t);
  text-decoration: none;
}

.float-whatsapp:hover {
  transform: scale(1.1) translateY(-2px);
  background: #20bc5a;
  box-shadow: 0 12px 32px rgba(37,211,102,0.5);
  color: white;
}

.float-whatsapp .tooltip {
  position: absolute;
  right: calc(100% + 0.75rem);
  background: var(--c-forest-deep);
  color: var(--c-white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding: 0.4rem 0.875rem;
  border-radius: var(--r-full);
  opacity: 0;
  transform: translateX(4px);
  transition: opacity var(--t), transform var(--t);
  pointer-events: none;
}

.float-whatsapp:hover .tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Quick email button */
.float-email {
  position: fixed;
  bottom: 11rem;
  right: 1.5rem;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-forest);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--sh-md);
  transition: transform var(--t), box-shadow var(--t), background var(--t);
  text-decoration: none;
}

.float-email:hover {
  transform: scale(1.1) translateY(-2px);
  background: var(--c-emerald);
  box-shadow: var(--sh-lg);
  color: white;
}

.float-email .tooltip {
  position: absolute;
  right: calc(100% + 0.75rem);
  background: var(--c-forest-deep);
  color: var(--c-white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding: 0.4rem 0.875rem;
  border-radius: var(--r-full);
  opacity: 0;
  transform: translateX(4px);
  transition: opacity var(--t), transform var(--t);
  pointer-events: none;
}

.float-email:hover .tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-white);
  border: 1.5px solid var(--c-beige);
  color: var(--c-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--sh-sm);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--t), transform var(--t), background var(--t), color var(--t);
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--c-forest);
  color: var(--c-white);
  border-color: var(--c-forest);
}


/* ============================================================
   20. REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal="fade-up"] {
  transform: translateY(36px);
}

[data-reveal="fade-down"] {
  transform: translateY(-24px);
}

[data-reveal="fade-left"] {
  transform: translateX(-36px);
}

[data-reveal="fade-right"] {
  transform: translateX(36px);
}

[data-reveal="scale"] {
  transform: scale(0.94);
}

[data-reveal="fade"] {
  transform: none;
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }
[data-delay="7"] { transition-delay: 0.7s; }


/* ============================================================
   22. SMART HEADER — hide / reveal on scroll
   ============================================================ */
.site-header {
  transition: background 0.45s ease,
              box-shadow  0.45s ease,
              border-color 0.45s ease,
              transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.header--hidden {
  transform: translateY(-100%);
}


/* ============================================================
   23. DARK MODE — [data-theme="dark"] overrides
   ============================================================ */
[data-theme="dark"] {
  --c-cream:       #111915;
  --c-cream-2:     #141f18;
  --c-white:       #1a2b22;
  --c-beige:       rgba(255,255,255,0.1);
  --c-beige-light: rgba(255,255,255,0.07);
  --c-text:        #e8f0eb;
  --c-text-mid:    #9ab5a2;
  --c-text-mute:   #6a8a75;
}

[data-theme="dark"] body          { background-color: var(--c-cream); }
[data-theme="dark"] .site-header.scrolled { background: rgba(17,25,21,0.97); }
[data-theme="dark"] .hero         { background-color: var(--c-cream); }
[data-theme="dark"] .hero__stat-chip  { background: #1a2b22; border-color: rgba(255,255,255,0.1); }
[data-theme="dark"] .hero__float-card { background: #1a2b22; border-color: rgba(255,255,255,0.1); }
[data-theme="dark"] .products     { background: #141f18; }
[data-theme="dark"] .product-card { background: #1a2b22; border-color: rgba(255,255,255,0.07); }
[data-theme="dark"] .product-card__app-tag { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); color: var(--c-sage-light); }
[data-theme="dark"] .industries   { background: #141f18; }
[data-theme="dark"] .industry-card { background: #1a2b22; border-color: rgba(255,255,255,0.06); }
[data-theme="dark"] .faq-section  { background: #141f18; }
[data-theme="dark"] .faq-item     { background: #1a2b22; border-color: rgba(255,255,255,0.07); }
[data-theme="dark"] .faq-item.open { border-color: rgba(82,183,136,0.3); }
[data-theme="dark"] .faq-item__icon { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); }
[data-theme="dark"] .contact      { background: #141f18; }
[data-theme="dark"] .contact__form-wrap { background: #1a2b22; border-color: rgba(255,255,255,0.07); }
[data-theme="dark"] .form__input,
[data-theme="dark"] .form__select,
[data-theme="dark"] .form__textarea { background: #111915; border-color: rgba(255,255,255,0.12); color: var(--c-text); }
[data-theme="dark"] .form__input:focus,
[data-theme="dark"] .form__select:focus,
[data-theme="dark"] .form__textarea:focus { background: #111915; border-color: var(--c-sage); }
[data-theme="dark"] .about__industry-tag { background: #1a2b22; border-color: rgba(255,255,255,0.1); color: var(--c-text-mid); }
[data-theme="dark"] .about__certified-badge { background: #1a2b22; border-color: rgba(255,255,255,0.1); }
[data-theme="dark"] .trust-docs   { background: #111915; }
[data-theme="dark"] .trust-doc-card { background: #1a2b22; border-color: rgba(255,255,255,0.07); }
[data-theme="dark"] .trust-certs  { background: #1a2b22; border-color: rgba(255,255,255,0.07); }
[data-theme="dark"] .trust-cert-item__icon { background: #111915; border-color: rgba(255,255,255,0.1); }
[data-theme="dark"] .product-modal { background: #1a2b22; }
[data-theme="dark"] .modal__footer { background: #141f18; border-color: rgba(255,255,255,0.07); }
[data-theme="dark"] .stats-section { background: #0a1410; }
[data-theme="dark"] .form-progress__dot { background: #1a2b22; border-color: rgba(255,255,255,0.15); color: var(--c-text-mute); }

/* Dark mode theme toggle button */
.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: transparent;
  border: 1px solid rgba(28, 68, 51, 0.18);
  color: var(--c-text-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
  flex-shrink: 0;
}

.theme-toggle:hover {
  background: var(--c-cream-2);
  border-color: var(--c-beige);
  color: var(--c-forest);
}

[data-theme="dark"] .theme-toggle {
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
}

[data-theme="dark"] .theme-toggle:hover {
  background: rgba(255,255,255,0.08);
  color: var(--c-white);
}


/* ============================================================
   24. CURSOR GLOW
   ============================================================ */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82,183,136,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transition: width 0.45s ease, height 0.45s ease, background 0.45s ease;
}

.cursor-glow--active {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 65%);
}

@media (pointer: coarse) { .cursor-glow { display: none; } }


/* ============================================================
   25. RIPPLE EFFECT
   ============================================================ */
.btn { position: relative; overflow: hidden; }

.ripple {
  position: absolute;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.28);
  transform: scale(0);
  animation: rippleAnim 0.55s linear forwards;
  pointer-events: none;
  margin-left: -3px;
  margin-top: -3px;
}

@keyframes rippleAnim {
  to { transform: scale(60); opacity: 0; }
}


/* ============================================================
   26. STATS COUNTER SECTION
   ============================================================ */
.stats-section {
  background: var(--c-forest);
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}

.stats-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.2), transparent);
}

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

.stat-item {
  text-align: center;
  padding: 0.5rem 1rem;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%; bottom: 15%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}


/* ============================================================
   27. B2B TRUST DOCUMENTS SECTION
   ============================================================ */
.trust-docs {
  background: var(--c-cream);
  position: relative;
}

.trust-docs__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.trust-docs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.trust-doc-card {
  background: var(--c-white);
  border: 1px solid var(--c-beige-light);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.875rem;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative;
  overflow: hidden;
}

.trust-doc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-forest), var(--c-sage));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow);
}

.trust-doc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-color: var(--c-beige);
}

.trust-doc-card:hover::before { transform: scaleX(1); }

.trust-doc-card__icon {
  width: 58px;
  height: 58px;
  border-radius: var(--r-md);
  background: var(--c-sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t);
}

.trust-doc-card:hover .trust-doc-card__icon { background: var(--c-forest); }

.trust-doc-card__icon i {
  font-size: 1.625rem;
  color: var(--c-forest);
  transition: color var(--t);
}

.trust-doc-card:hover .trust-doc-card__icon i { color: var(--c-white); }

.trust-doc-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.3;
}

.trust-doc-card__desc {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--c-text-mute);
  flex: 1;
}

.trust-doc-card__status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-full);
  background: var(--c-sage-pale);
  color: var(--c-emerald);
}

.trust-doc-card .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.72rem;
}

/* Certification logos row */
.trust-certs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2.5rem;
  background: var(--c-white);
  border: 1px solid var(--c-beige-light);
  border-radius: var(--r-lg);
}

.trust-cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  opacity: 0.6;
  transition: opacity var(--t);
  cursor: default;
}

.trust-cert-item:hover { opacity: 1; }

.trust-cert-item__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--c-cream);
  border: 2px solid var(--c-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.trust-cert-item__name {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-mute);
}


/* ============================================================
   28. GLOBAL PRESENCE SECTION
   ============================================================ */
.global-presence {
  background: var(--c-forest-deep);
  position: relative;
  overflow: hidden;
}

.global-presence::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Ccircle cx='40' cy='40' r='38' fill='none' stroke='%231c4433' stroke-width='0.5' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  opacity: 0.35;
}

.global-presence__inner { position: relative; z-index: 1; }

.global-presence__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.global-presence__header h2 { color: var(--c-white); }

.global-presence__header p {
  color: rgba(255,255,255,0.5);
  margin-top: 1rem;
}

/* Market region cards */
.global-markets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.market-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: background var(--t), border-color var(--t), transform var(--t);
  position: relative;
  overflow: hidden;
}

.market-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
  opacity: 0;
  transition: opacity var(--t);
}

.market-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-4px);
}

.market-card:hover::before { opacity: 1; }

.market-card__flag {
  font-size: 2.25rem;
  margin-bottom: 0.875rem;
  display: block;
}

.market-card__region {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 0.5rem;
}

.market-card__countries {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
  letter-spacing: 0.04em;
}

/* Export route bar */
.global-route {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  flex-wrap: wrap;
}

.global-route__point {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: 90px;
}

.global-route__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--c-sage);
  flex-shrink: 0;
}

.global-route__point:first-child .global-route__dot {
  background: var(--c-gold);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.2);
}

.global-route__name {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

.global-route__line {
  flex: 1;
  min-width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--c-sage), rgba(82,183,136,0.2));
  position: relative;
}

.global-route__line::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--c-sage);
  border-right: 1px solid var(--c-sage);
  transform: rotate(45deg);
  opacity: 0.6;
}


/* ============================================================
   29. FAQ ACCORDION
   ============================================================ */
.faq-section {
  background: var(--c-white);
  position: relative;
}

.faq-section__header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 3.5rem;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--c-cream);
  border: 1px solid var(--c-beige-light);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}

.faq-item.open {
  border-color: var(--c-sage-light);
  box-shadow: var(--sh-xs);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
}

.faq-item__question {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.4;
  flex: 1;
}

.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-cream-2);
  border: 1px solid var(--c-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--c-forest);
  transition: background var(--t), transform var(--t), border-color var(--t);
}

.faq-item.open .faq-item__icon {
  background: var(--c-forest);
  border-color: var(--c-forest);
  color: var(--c-white);
  transform: rotate(45deg);
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item__answer {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--c-text-mid);
}


/* ============================================================
   30. PRODUCT MODALS
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 31, 22, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 8000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

body.modal-open { overflow: hidden; }

.product-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%) scale(0.97);
  z-index: 8001;
  width: min(900px, 92vw);
  max-height: 88vh;
  overflow-y: auto;
  background: var(--c-white);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl), 0 0 0 1px rgba(28,68,51,0.08);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.35s;
  scrollbar-width: thin;
  scrollbar-color: var(--c-beige) transparent;
}

.product-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.product-modal::-webkit-scrollbar { width: 4px; }
.product-modal::-webkit-scrollbar-thumb { background: var(--c-beige); border-radius: 4px; }

.modal__header {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}

.modal__header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal__header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,31,22,0.65) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem 2rem;
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--c-forest);
  transition: background var(--t), transform var(--t);
  z-index: 2;
}

.modal__close:hover {
  background: var(--c-white);
  transform: rotate(90deg);
}

.modal__category-badge {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.92);
  color: var(--c-emerald);
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-full);
}

.modal__body { padding: 2rem 2rem 1.5rem; }

.modal__name {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 0.2rem;
  line-height: 1.15;
}

.modal__latin {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--c-text-mute);
  margin-bottom: 1.5rem;
}

.modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2.5rem;
  margin-bottom: 1.5rem;
}

.modal__section-title {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-sage);
  margin-bottom: 0.625rem;
}

.modal__desc {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--c-text-mid);
}

.modal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.modal__tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-full);
  background: var(--c-sage-pale);
  color: var(--c-emerald);
}

.modal__highlights {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.modal__highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: var(--c-text-mid);
}

.modal__highlight i { color: var(--c-sage); flex-shrink: 0; }

.modal__spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
}

.modal__spec-table tr {
  border-bottom: 1px solid var(--c-beige-light);
}

.modal__spec-table tr:last-child { border-bottom: none; }

.modal__spec-table td {
  padding: 0.55rem 0;
  color: var(--c-text-mid);
}

.modal__spec-table td:first-child {
  font-weight: 600;
  color: var(--c-text);
  padding-right: 1rem;
  width: 45%;
}

.modal__footer {
  padding: 1.5rem 2rem;
  background: var(--c-cream);
  border-top: 1px solid var(--c-beige-light);
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.modal__bulk-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-emerald);
}

.modal__bulk-note i { font-size: 1rem; }

.modal__cta-group {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}


/* ============================================================
   31. MULTI-STEP FORM
   ============================================================ */
.form-progress {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
}

.form-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  position: relative;
  flex: 1;
  max-width: 160px;
}

.form-progress__step::before {
  content: '';
  position: absolute;
  top: 14px;
  left: calc(50% + 16px);
  right: calc(-50% + 16px);
  height: 1.5px;
  background: var(--c-beige);
  transition: background 0.45s ease;
  z-index: 0;
}

.form-progress__step:last-child::before { display: none; }
.form-progress__step.done::before      { background: var(--c-sage); }

.form-progress__dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-cream-2);
  border: 2px solid var(--c-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--c-text-mute);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  position: relative;
  z-index: 1;
}

.form-progress__step.active .form-progress__dot {
  background: var(--c-forest);
  border-color: var(--c-forest);
  color: var(--c-white);
}

.form-progress__step.done .form-progress__dot {
  background: var(--c-sage);
  border-color: var(--c-sage);
  color: var(--c-white);
}

.form-progress__label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-mute);
  text-align: center;
  white-space: nowrap;
}

.form-progress__step.active .form-progress__label {
  color: var(--c-forest);
  font-weight: 700;
}

.form-step {
  display: none;
  flex-direction: column;
  gap: 1rem;
  animation: stepFadeIn 0.3s ease;
}

.form-step.active { display: flex; }

@keyframes stepFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-step__heading {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-mute);
  padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--c-beige-light);
  margin-bottom: 0.25rem;
}

.form-step__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.form-step__prev {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: 1.5px solid var(--c-beige);
  color: var(--c-text-mid);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.65rem 1.25rem;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: var(--t);
}

.form-step__prev:hover {
  border-color: var(--c-forest);
  color: var(--c-forest);
}

.form-step__next {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--c-forest);
  color: var(--c-white);
  border: none;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: var(--t);
}

.form-step__next:hover {
  background: var(--c-emerald);
  transform: translateY(-1px);
  box-shadow: var(--sh-sm);
}


/* ============================================================
   32. PRODUCT FINDER WIDGET
   ============================================================ */
.product-finder {
  background: linear-gradient(135deg, var(--c-forest) 0%, var(--c-emerald) 100%);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 4vw, 3rem);
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

.product-finder::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 60%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.06), transparent 60%);
  pointer-events: none;
}

.product-finder__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.product-finder__text .eyebrow { color: var(--c-sage-light); }

.product-finder__headline {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 600;
  color: var(--c-white);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.product-finder__sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

.finder__form {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.finder__form label {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-bottom: 0.4rem;
}

.finder__select {
  width: 100%;
  padding: 0.8rem 2.5rem 0.8rem 1rem;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: var(--r-md);
  color: var(--c-white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  transition: border-color var(--t-fast);
}

.finder__select:focus { border-color: rgba(255,255,255,0.45); }
.finder__select option { background: var(--c-forest); color: var(--c-white); }

.finder__result {
  display: none;
  animation: stepFadeIn 0.35s ease;
}

.finder__result.visible { display: block; }

.finder__result-inner {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-lg);
  padding: 1.75rem;
}

.finder__result-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.875rem;
}

.finder__result-products {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.finder__result-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.875rem;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.14);
  color: var(--c-white);
  border: 1px solid rgba(255,255,255,0.2);
}

.finder__result-reason {
  font-size: 0.84rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
}

.finder__reset {
  display: none;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--t-fast);
  margin-top: 0.75rem;
  padding: 0;
}

.finder__reset:hover { color: rgba(255,255,255,0.7); }


/* ============================================================
   33. ENHANCED FLOATING WHATSAPP
   ============================================================ */
/* Override the full float-whatsapp block with expanded version */
.float-whatsapp {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 56px;
  border-radius: var(--r-full);
  background: #25D366;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
  text-decoration: none;
  overflow: hidden;
  padding: 0 0.875rem;
  max-width: 56px;
  transition: max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.4s ease,
              transform var(--t),
              box-shadow var(--t),
              background var(--t);
}

.float-whatsapp:hover {
  max-width: 220px;
  padding: 0 1.25rem 0 0.875rem;
  transform: translateY(-2px);
  background: #20bc5a;
  box-shadow: 0 12px 36px rgba(37,211,102,0.5);
  color: white;
}

.float-whatsapp__icon { flex-shrink: 0; line-height: 1; }

.float-whatsapp__text {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition: opacity 0.2s 0.15s ease, max-width 0.35s ease;
}

.float-whatsapp:hover .float-whatsapp__text {
  opacity: 1;
  max-width: 140px;
}

.float-whatsapp__online {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #25D366;
  animation: onlinePulse 2.5s ease-in-out infinite;
}

@keyframes onlinePulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.8); }
  70%  { box-shadow: 0 0 0 7px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.float-whatsapp .tooltip { display: none; } /* replaced by inline text */


/* ============================================================
   34. PREMIUM SECTION DIVIDERS
   ============================================================ */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-beige) 25%, var(--c-beige) 75%, transparent);
}

.section-divider--gold {
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.22) 25%, rgba(201,168,76,0.22) 75%, transparent);
}


/* ============================================================
   21. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ── Large desktop ──────────────────────────── 1200px and below */
@media (max-width: 1200px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-strip__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .trust-item + .trust-item::before {
    display: none;
  }
  .trust-item {
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
}

/* ── Tablet landscape ───────────────────────── 1024px and below */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: auto;
  }
  .hero__content {
    max-width: 100%;
    text-align: center;
  }
  .hero__headline { font-size: clamp(2.5rem, 6vw, 4rem); }
  .hero__actions {
    justify-content: center;
  }
  .hero__stats {
    justify-content: center;
  }
  .hero__visual {
    height: clamp(360px, 50vw, 500px);
    max-width: 560px;
    margin: 0 auto;
  }
  .hero__scroll { display: none; }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about__visual { order: -1; }
  .about__img-stack { height: clamp(360px, 50vw, 480px); }
  .about__brand-card { left: 0; }

  .founder__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .founder::before { display: none; }
  .founder__visual { max-width: 380px; }
  .founder__origin-badge { right: -1rem; }

  .process__steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .process__line { display: none; }
  .process__images {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}

/* ── Tablet portrait ────────────────────────── 768px and below */
@media (max-width: 768px) {
  :root {
    --header-h: 68px;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  /* Mobile: logo left, spacer, hamburger right */
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 0;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding-top: calc(var(--header-h) + 2rem);
  }

  .hero__mosaic .hero__img--top-right,
  .hero__mosaic .hero__img--btm-right {
    display: none;
  }
  .hero__img--main {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .hero__float-card--2 { display: none; }
  .hero__float-card--1 {
    bottom: 1rem;
    left: 1rem;
  }

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

  .why-us__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .footer__main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__brand { grid-column: auto; }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

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

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

  .form__btn { width: 100%; text-align: center; }

  .top-bar__message {
    gap: 0.75rem;
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
  }

  /* On small screens: hide the email, keep only the phone */
  .top-bar__contacts .top-bar__link:nth-child(2) { display: none; }
}

/* ── Mobile ─────────────────────────────────── 480px and below */
@media (max-width: 480px) {
  .products__grid {
    grid-template-columns: 1fr;
  }
  .industries__grid {
    grid-template-columns: 1fr;
  }
  .why-us__grid {
    grid-template-columns: 1fr;
  }
  .process__steps {
    grid-template-columns: 1fr 1fr;
  }
  .process__images {
    grid-template-columns: 1fr;
  }
  .trust-strip__grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero__float-card { display: none; }
  .founder__origin-badge { display: none; }
  .about__brand-card { display: none; }
  .about__certified-badge { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .global-markets { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .trust-docs__grid { grid-template-columns: 1fr; }
  .modal__grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .modal__body { padding: 1.5rem 1.25rem 1.5rem; }
  .modal__footer { padding: 1.25rem; flex-direction: column; align-items: stretch; }
  .modal__cta-group { justify-content: stretch; }
  .modal__cta-group .btn { flex: 1; justify-content: center; }
  .product-finder__inner { grid-template-columns: 1fr; }
  .form-progress__label { display: none; }
}

/* ── Tablet additional ──────────────────────── 1024px and below */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .global-markets { grid-template-columns: repeat(2, 1fr); }
  .trust-docs__grid { grid-template-columns: repeat(2, 1fr); }
  .product-finder__inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .global-route { gap: 0; }
}

/* ── 768px additional new sections ─────────────────────────── */
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item + .stat-item::before { display: none; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.07); padding: 1.5rem 0.75rem; }
  .trust-certs { gap: 1.5rem; padding: 1.5rem 1rem; }
  .global-route { flex-wrap: wrap; gap: 0.75rem; }
  .global-route__line { display: none; }
  .form-progress { gap: 0; }
}
