/* ========================================================================
   92 LAB MMC — Aurora / Gradient UI
   Animated aurora blobs · glassmorphism · gradient text · neon glow
   ======================================================================== */

:root {
  /* Base — light agricultural green */
  --bg-0: #e8f3ed;
  --bg-1: #dfeae3;
  --bg-2: #d4e3da;
  --bg-3: #c4d6cc;

  /* Brand palette */
  --au-emerald: #0f6e4a;
  --au-emerald-bright: #169e6a;
  --au-lime: #65a30d;
  --au-teal: #0d9488;
  --au-amber: #d97706;
  --au-gold: #b45309;
  --au-sky: #0284c7;
  --au-rose: #be123c;
  --au-violet: #6d28d9;

  /* Glass surfaces — light theme uses white over green tint */
  --glass-1: rgba(255, 255, 255, 0.55);
  --glass-2: rgba(255, 255, 255, 0.75);
  --glass-3: rgba(255, 255, 255, 0.92);
  --glass-border: rgba(15, 51, 37, 0.10);
  --glass-border-hover: rgba(15, 110, 74, 0.45);

  /* Text — dark on light */
  --t-bright: #0a2418;
  --t-light: rgba(10, 36, 24, 0.88);
  --t-mute: rgba(10, 36, 24, 0.65);
  --t-dim: rgba(10, 36, 24, 0.45);

  /* Gradients */
  --grad-aurora: linear-gradient(135deg, var(--au-emerald) 0%, var(--au-lime) 50%, var(--au-amber) 100%);
  --grad-emerald-gold: linear-gradient(120deg, var(--au-emerald) 0%, var(--au-amber) 100%);
  --grad-text-hero: linear-gradient(180deg, var(--au-emerald) 0%, #0a2418 100%);
  --grad-button: linear-gradient(135deg, var(--au-emerald) 0%, var(--au-emerald-bright) 100%);
  --grad-button-gold: linear-gradient(135deg, var(--au-gold) 0%, var(--au-amber) 100%);
  --grad-card-border: linear-gradient(135deg, rgba(15, 110, 74, 0.4), rgba(217, 119, 6, 0.4), rgba(15, 110, 74, 0));

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --container: 1240px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--t-light);
  background: var(--bg-0);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* ====================================================================
   BACKGROUND — corporate agricultural depth
   Solid deep green with a subtle top-band tint. No animation.
   ==================================================================== */

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 110, 74, 0.10) 0%, transparent 520px),
    var(--bg-0);
  z-index: -2;
  pointer-events: none;
}

/* ====================================================================
   GLOBAL UTILITIES
   ==================================================================== */

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  color: var(--t-bright);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.gradient-text {
  background: var(--grad-emerald-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}

.gradient-text-hero {
  background: var(--grad-text-hero);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--au-emerald-bright);
  margin-bottom: 20px;
  padding: 8px 14px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.25);
  border-radius: 999px;
}

.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--au-emerald-bright);
  box-shadow: 0 0 12px var(--au-emerald-bright);
}

.eyebrow.light {
  color: var(--au-amber);
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.3);
}

.eyebrow.light::before {
  background: var(--au-amber);
  box-shadow: 0 0 12px var(--au-amber);
}

.section-title {
  font-size: clamp(32px, 4.4vw, 56px);
  margin-bottom: 20px;
  line-height: 1.05;
}

.section-sub {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: var(--t-mute);
  font-weight: 400;
  max-width: 640px;
  line-height: 1.7;
}

.section-head { margin-bottom: 64px; }
.section-head.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head.centered .section-sub { margin-left: auto; margin-right: auto; }

/* ====================================================================
   BUTTONS
   ==================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 999px;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--grad-button);
  color: #052e1d;
  box-shadow:
    0 10px 32px rgba(16, 185, 129, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow:
    0 16px 40px rgba(16, 185, 129, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-gold {
  background: var(--grad-button);
  color: #fff;
  box-shadow:
    0 10px 32px rgba(16, 185, 129, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 40px rgba(16, 185, 129, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-ghost {
  background: var(--glass-2);
  color: var(--t-bright);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.btn-ghost:hover {
  background: var(--glass-3);
  border-color: var(--au-emerald-bright);
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.1);
}

.btn-ghost.on-dark { color: var(--t-bright); }

.btn-arrow::after {
  content: '→';
  font-size: 18px;
  transition: transform 0.3s var(--ease);
}

.btn-arrow:hover::after { transform: translateX(5px); }

/* ====================================================================
   NAVIGATION
   ==================================================================== */

.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 40px);
  max-width: var(--container);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  transition: all 0.4s var(--ease);
  box-shadow: 0 10px 30px rgba(15, 51, 37, 0.08);
}

.nav-inner {
  padding: 0 24px 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--grad-button);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--t-bright);
  letter-spacing: 0.5px;
}

.brand-tag {
  font-size: 10px;
  color: var(--au-emerald-bright);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--t-mute);
  padding: 8px 14px;
  border-radius: 999px;
  transition: all 0.25s var(--ease);
}

.nav-menu a:hover {
  color: var(--t-bright);
  background: var(--glass-2);
}

.nav-cta {
  margin-left: 8px;
  padding: 10px 22px !important;
  font-size: 14px !important;
  color: #fff !important;
}

.nav-menu a.nav-cta:hover {
  background: var(--grad-button);
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--t-bright);
  border-radius: 2px;
}

/* ====================================================================
   HERO
   ==================================================================== */

.hero {
  position: relative;
  padding: 160px 0 120px;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--glass-2);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  padding: 8px 16px 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--t-light);
  margin-bottom: 32px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--au-emerald-bright);
  box-shadow: 0 0 14px var(--au-emerald-bright);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 14px var(--au-emerald-bright); }
  50% { box-shadow: 0 0 24px var(--au-emerald-bright), 0 0 0 6px rgba(52, 211, 153, 0.1); }
}

.hero h1 {
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  color: var(--t-bright);
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  background: var(--grad-aurora);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.hero-desc {
  font-size: 19px;
  color: var(--t-mute);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 40px;
  padding-top: 40px;
  border-top: 1px solid var(--glass-border);
}

.hero-stat-value {
  font-family: 'Fraunces', serif;
  font-size: 38px;
  font-weight: 500;
  background: var(--grad-emerald-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 8px;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--t-mute);
  line-height: 1.4;
}

/* Hero visual */

.hero-visual {
  position: relative;
  height: 600px;
}

.hero-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.hero-card.main {
  inset: 0 50px 100px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(217, 119, 6, 0.15) 0%, transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(15, 110, 74, 0.15) 0%, transparent 55%),
    rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  display: flex;
  align-items: flex-end;
  padding: 40px;
  color: var(--t-bright);
  box-shadow:
    0 30px 60px rgba(15, 51, 37, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.hero-card.main::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: var(--grad-card-border);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-main-content {
  position: relative;
  z-index: 2;
}

.hero-main-tag {
  display: inline-block;
  background: rgba(251, 191, 36, 0.15);
  color: var(--au-amber);
  border: 1px solid rgba(251, 191, 36, 0.3);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero-main-title {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--t-bright);
  line-height: 1.15;
  margin-bottom: 12px;
}

.hero-main-desc {
  font-size: 14px;
  color: var(--t-mute);
  line-height: 1.6;
  max-width: 300px;
}

.hero-main-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-card.main.has-image::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(10, 36, 24, 0.88) 0%, rgba(10, 36, 24, 0.25) 55%, transparent 100%);
}

.hero-card.main.has-image .hero-main-title { color: #fff; }
.hero-card.main.has-image .hero-main-desc { color: rgba(255, 255, 255, 0.85); }

.hero-card.float-1 {
  top: 80px;
  right: 0;
  width: 240px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 20px 40px rgba(15, 51, 37, 0.12);
  animation: float-y 6s ease-in-out infinite;
}

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-float-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--grad-button);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
}

.hero-float-title {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--t-bright);
  margin-bottom: 8px;
}

.hero-float-desc {
  font-size: 12.5px;
  color: var(--t-mute);
  line-height: 1.55;
}

.hero-card.float-2 {
  bottom: 20px;
  right: 40px;
  width: 260px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 20px 40px rgba(15, 51, 37, 0.12);
  display: flex;
  align-items: center;
  gap: 16px;
  animation: float-y 7s ease-in-out infinite -3s;
}

.float-2-bar { flex: 1; }

.float-2-label {
  font-size: 11px;
  color: var(--t-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 600;
}

.float-2-value {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  background: var(--grad-emerald-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}

.float-2-graph { width: 64px; height: 44px; }
.float-2-graph svg { width: 100%; height: 100%; }

/* ====================================================================
   TRUST STRIP
   ==================================================================== */

.trust {
  padding: 36px 0;
  position: relative;
}

.trust-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 36px;
  background: var(--glass-1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-label {
  font-size: 12px;
  color: var(--au-emerald-bright);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  flex-shrink: 0;
}

.trust-items {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--t-light);
}

.trust-item-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--au-amber);
  box-shadow: 0 0 10px var(--au-amber);
  flex-shrink: 0;
}

/* ====================================================================
   SECTIONS BASE
   ==================================================================== */

section.section {
  padding: 130px 0;
  position: relative;
}

/* ====================================================================
   CATEGORIES (3 PILLARS)
   ==================================================================== */

.cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cat-card {
  position: relative;
  padding: 44px 36px;
  background: var(--glass-1);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease);
  overflow: hidden;
}

.cat-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: var(--grad-card-border);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.cat-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.15) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.cat-card:hover {
  transform: translateY(-6px);
  background: var(--glass-2);
}

.cat-card:hover::before { opacity: 1; }
.cat-card:hover::after { opacity: 1; }

.cat-card > * { position: relative; z-index: 2; }

.cat-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  color: var(--au-emerald-bright);
  box-shadow: inset 0 0 24px rgba(52, 211, 153, 0.15);
}

.cat-icon svg { width: 32px; height: 32px; }

.cat-card h3 {
  font-size: 26px;
  margin-bottom: 6px;
  color: var(--t-bright);
}

.cat-sub {
  font-size: 12.5px;
  color: var(--au-emerald-bright);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cat-card p {
  font-size: 15px;
  color: var(--t-mute);
  line-height: 1.7;
  margin-bottom: 28px;
}

.cat-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--au-emerald-bright);
  transition: all 0.25s var(--ease);
}

.cat-link::after {
  content: '→';
  transition: transform 0.25s var(--ease);
}

.cat-link:hover { color: var(--au-amber); }
.cat-link:hover::after { transform: translateX(5px); }

/* ====================================================================
   CATALOG
   ==================================================================== */

.catalog { position: relative; }

.catalog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.filter-btn {
  padding: 11px 24px;
  background: var(--glass-1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--t-light);
  transition: all 0.3s var(--ease);
}

.filter-btn:hover {
  border-color: var(--au-emerald-bright);
  color: var(--t-bright);
  background: var(--glass-2);
}

.filter-btn.active {
  background: var(--grad-button);
  color: #052e1d;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}

.product {
  background: var(--glass-1);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: var(--grad-card-border);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.product:hover {
  transform: translateY(-6px);
  background: var(--glass-2);
  box-shadow: 0 24px 50px rgba(15, 51, 37, 0.12);
}

.product:hover::before { opacity: 1; }

.product-img {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
}

.product-img-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 92px;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
  z-index: 2;
}

/* Vibrant aurora gradient backgrounds per category */
.product-img.gradient-wheat { background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #b45309 100%); }
.product-img.gradient-tomato { background: linear-gradient(135deg, #fb7185 0%, #e11d48 50%, #831843 100%); }
.product-img.gradient-pepper { background: linear-gradient(135deg, #fcd34d 0%, #f97316 50%, #c2410c 100%); }
.product-img.gradient-cucumber { background: linear-gradient(135deg, #a3e635 0%, #65a30d 50%, #14532d 100%); }
.product-img.gradient-cotton { background: linear-gradient(135deg, #f0fdf4 0%, #a7f3d0 50%, #34d399 100%); }
.product-img.gradient-sunflower { background: linear-gradient(135deg, #fef08a 0%, #facc15 50%, #a16207 100%); }
.product-img.gradient-mix { background: linear-gradient(135deg, #34d399 0%, #fbbf24 50%, #fb7185 100%); }
.product-img.gradient-granule { background: linear-gradient(135deg, #d1d5db 0%, #9ca3af 50%, #4b5563 100%); }
.product-img.gradient-liquid { background: linear-gradient(135deg, #38bdf8 0%, #2dd4bf 50%, #0f766e 100%); }
.product-img.gradient-soil { background: linear-gradient(135deg, #d97706 0%, #78350f 50%, #1c1917 100%); }
.product-img.gradient-agronomist { background: linear-gradient(135deg, #34d399 0%, #10b981 50%, #064e3b 100%); }
.product-img.gradient-recipe { background: linear-gradient(135deg, #fbbf24 0%, #d97706 50%, #78350f 100%); }
.product-img.gradient-delivery { background: linear-gradient(135deg, #a78bfa 0%, #4c1d95 50%, #1e1b4b 100%); }

.product-img-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18) 0%, transparent 35%),
    radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.2) 0%, transparent 40%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'><defs><pattern id='p' width='30' height='30' patternUnits='userSpaceOnUse'><circle cx='15' cy='15' r='1.2' fill='rgba(255,255,255,0.2)'/></pattern></defs><rect width='60' height='60' fill='url(%23p)'/></svg>");
  mix-blend-mode: overlay;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--glass-3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  color: var(--t-bright);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 3;
}

.product-badge.gold {
  background: var(--grad-button-gold);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(251, 191, 36, 0.35);
}

.product-badge.soon {
  background: rgba(167, 139, 250, 0.2);
  border-color: rgba(167, 139, 250, 0.4);
  color: #ddd6fe;
}

.product-body {
  padding: 26px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.product-sku {
  font-size: 11px;
  color: var(--t-dim);
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 10px;
}

.product h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.25;
  color: var(--t-bright);
}

.product-desc {
  font-size: 14px;
  color: var(--t-mute);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.tag {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.25);
  color: var(--au-emerald-bright);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.tag.gold {
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.3);
  color: var(--au-amber);
}

.product-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
}

.product-cta-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--au-emerald-bright);
}

.product-cta-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--au-emerald-bright);
  transition: all 0.3s var(--ease);
}

.product:hover .product-cta-arrow {
  background: var(--grad-button);
  color: #fff;
  border-color: transparent;
  transform: translateX(5px);
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.4);
}

/* ====================================================================
   PROCESS
   ==================================================================== */

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 30px;
  position: relative;
}

.process-line {
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.3) 20%, rgba(251, 191, 36, 0.3) 80%, transparent);
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 12px;
}

.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--glass-2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  color: var(--au-emerald-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 500;
  margin: 0 auto 22px;
  position: relative;
  transition: all 0.4s var(--ease);
}

.process-step:hover .step-num {
  background: var(--grad-button);
  color: #fff;
  border-color: transparent;
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.45);
}

.process-step:hover .step-title,
.process-step:hover .step-desc {
  color: var(--au-emerald-bright);
}

.step-title {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--t-bright);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 13px;
  color: var(--t-mute);
  line-height: 1.6;
}

/* ====================================================================
   ABOUT
   ==================================================================== */

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content h2 {
  font-size: clamp(34px, 4.2vw, 54px);
  margin-bottom: 28px;
  line-height: 1.05;
}

.about-content h2 em {
  font-style: italic;
  background: var(--grad-aurora);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-content > p {
  font-size: 17px;
  color: var(--t-mute);
  line-height: 1.75;
  margin-bottom: 22px;
}

.about-features {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.about-feature {
  padding-left: 20px;
  border-left: 2px solid;
  border-image: linear-gradient(180deg, var(--au-emerald-bright), var(--au-amber)) 1;
}

.about-feature h4 {
  color: var(--t-bright);
  font-size: 17px;
  margin-bottom: 8px;
  font-family: 'Fraunces', serif;
  font-weight: 500;
}

.about-feature p {
  font-size: 14px;
  color: var(--t-mute);
  line-height: 1.6;
  margin: 0;
}

.about-visual {
  position: relative;
  height: 560px;
}

.about-image-card {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(15, 110, 74, 0.10) 0%, transparent 55%),
    radial-gradient(circle at 80% 100%, rgba(217, 119, 6, 0.10) 0%, transparent 55%),
    rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15, 51, 37, 0.10);
}

.about-image-card::before {
  content: '92';
  position: absolute;
  font-family: 'Fraunces', serif;
  font-size: 420px;
  font-weight: 500;
  background: var(--grad-aurora);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.07;
  bottom: -140px;
  right: -50px;
  line-height: 0.85;
  letter-spacing: -0.05em;
  pointer-events: none;
}

.about-quote { position: relative; z-index: 2; }

.about-quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 100px;
  line-height: 0.4;
  background: var(--grad-emerald-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 28px;
  display: block;
}

.about-quote-text {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  line-height: 1.35;
  color: var(--t-bright);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 32px;
}

.about-quote-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-author-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--grad-button-gold);
  color: #2a1a00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 19px;
  box-shadow: 0 8px 22px rgba(251, 191, 36, 0.4);
}

.about-author-info { line-height: 1.3; }
.about-author-name { font-weight: 600; color: var(--t-bright); font-size: 15px; }
.about-author-role { font-size: 12px; color: var(--t-mute); letter-spacing: 0.05em; }

.about-mini-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-top: 36px;
  border-top: 1px solid var(--glass-border);
}

.about-mini-stat-val {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 500;
  background: var(--grad-emerald-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.about-mini-stat-lbl {
  font-size: 12px;
  color: var(--t-mute);
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* ====================================================================
   REGIONS
   ==================================================================== */

.regions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.region {
  background: var(--glass-1);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 26px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.region::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(52, 211, 153, 0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.region:hover {
  transform: translateY(-4px);
  border-color: rgba(52, 211, 153, 0.4);
  background: var(--glass-2);
}

.region:hover::before { opacity: 1; }

.region > * { position: relative; z-index: 2; }

.region-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.region-name {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--t-bright);
  margin-bottom: 6px;
}

.region-focus {
  font-size: 13px;
  color: var(--au-emerald-bright);
  font-weight: 600;
  margin-bottom: 12px;
}

.region-products {
  font-size: 12.5px;
  color: var(--t-mute);
  line-height: 1.55;
}

/* ====================================================================
   TIMELINE
   ==================================================================== */

.timeline {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 96px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--au-emerald-bright) 0%, var(--au-amber) 100%);
  box-shadow: 0 0 24px rgba(52, 211, 153, 0.4);
}

.t-item {
  display: flex;
  gap: 40px;
  padding-bottom: 44px;
  align-items: flex-start;
  position: relative;
}

.t-item:last-child { padding-bottom: 0; }

.t-year {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 500;
  background: var(--grad-emerald-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  min-width: 88px;
  text-align: right;
  padding-top: 20px;
  padding-right: 14px;
  position: relative;
}

.t-year::after {
  content: '';
  position: absolute;
  right: -17px;
  top: 30px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--au-emerald-bright);
  box-shadow: 0 0 0 4px var(--bg-0), 0 0 24px var(--au-emerald-bright);
  z-index: 2;
}

.t-card {
  flex: 1;
  background: var(--glass-1);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-left: 3px solid var(--au-emerald-bright);
  border-radius: var(--radius);
  padding: 24px 30px;
}

.t-card.highlight {
  border-left-color: var(--au-amber);
  background:
    radial-gradient(circle at 100% 100%, rgba(251, 191, 36, 0.12) 0%, transparent 60%),
    var(--glass-2);
}

.t-card h4 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--t-bright);
}

.t-card p {
  font-size: 14.5px;
  color: var(--t-mute);
  line-height: 1.7;
}

/* ====================================================================
   CONTACT
   ==================================================================== */

.contact {
  padding: 130px 0;
  position: relative;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  background:
    radial-gradient(circle at 0% 0%, rgba(15, 110, 74, 0.10) 0%, transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(217, 119, 6, 0.10) 0%, transparent 55%),
    rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 70px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15, 51, 37, 0.10);
}

.contact-inner::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.5), transparent 40%, rgba(251, 191, 36, 0.5));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.contact h2 {
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.05;
  margin-bottom: 24px;
}

.contact h2 em {
  font-style: italic;
  background: var(--grad-aurora);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}

.contact-sub {
  font-size: 17px;
  color: var(--t-mute);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 460px;
}

.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-info {
  background: var(--glass-1);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  z-index: 2;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-info-grid .full { grid-column: 1 / -1; }

.contact-field-label {
  font-size: 11px;
  color: var(--au-amber);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-field-value {
  font-size: 16px;
  color: var(--t-bright);
  font-weight: 500;
  line-height: 1.4;
}

/* ====================================================================
   FOOTER
   ==================================================================== */

footer {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(15, 110, 74, 0.06) 0%, transparent 50%),
    rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--t-mute);
  padding: 64px 0 32px;
  border-top: 1px solid var(--glass-border);
  position: relative;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--glass-border);
}

.footer-brand .brand-name { color: var(--t-bright); }

.footer-tagline {
  font-size: 14px;
  color: var(--t-mute);
  line-height: 1.7;
  margin: 20px 0;
  max-width: 320px;
}

.footer-col h5 {
  font-size: 13px;
  color: var(--t-bright);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }

.footer-col a {
  font-size: 14px;
  color: var(--t-mute);
  transition: color 0.25s;
}

.footer-col a:hover { color: var(--au-emerald-bright); }

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--t-dim);
}

.footer-credit {
  color: var(--au-emerald-bright);
  font-weight: 600;
}

.footer-credit:hover { text-decoration: underline; }

/* ====================================================================
   ANIMATIONS — scroll reveal
   ==================================================================== */

[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====================================================================
   RESPONSIVE
   ==================================================================== */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 70px; }
  .hero-visual { height: 480px; max-width: 560px; margin: 0 auto; width: 100%; }
  .cats-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { height: auto; min-height: 480px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; padding: 48px; }
  .regions-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
  .process-line { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .nav { top: 12px; width: calc(100% - 24px); }
  .nav-inner { height: 60px; padding: 0 20px 0 22px; }
  .hero { padding: 130px 0 80px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  section.section { padding: 90px 0; }
  .about-features { grid-template-columns: 1fr; }
  .timeline::before { display: none; }
  .t-item { flex-direction: column; gap: 14px; }
  .t-year { text-align: left; min-width: auto; padding-top: 0; }
  .t-year::after { display: none; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-inner { padding: 36px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-card.float-1, .hero-card.float-2 { display: none; }
  .hero-card.main { inset: 0; }
  .hero-visual { height: 360px; }
  .trust-inner { border-radius: var(--radius-lg); }
}

@media (max-width: 480px) {
  .regions-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 44px; }
}

/* ====================================================================
   IMAGE / EMOJI rendering inside product and region cards
   When admin uploads a real image, <img> replaces the emoji fallback.
   ==================================================================== */

.product-img-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.region-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.product-img-bg .emoji-fallback,
.region-icon .emoji-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

