/* ========================================
   INNOFARMS ASEPTIC PULP — STYLESHEET
   ======================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-50:  #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;

  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;

  --dark-900: #0a0f0a;
  --dark-800: #0f1f0f;
  --dark-700: #1a2e1a;
  --dark-600: #1e3a1e;

  --neutral-50:  #fafafa;
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
  --neutral-400: #a3a3a3;
  --neutral-600: #525252;
  --neutral-800: #262626;
  --neutral-900: #171717;

  --white: #ffffff;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--neutral-800); background: var(--white); overflow-x: hidden; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── TYPOGRAPHY ── */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-600);
  background: var(--green-50);
  border: 1px solid var(--green-200);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--neutral-900);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--neutral-600);
  line-height: 1.7;
  max-width: 600px;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-desc { margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-500);
  color: white;
  box-shadow: 0 4px 16px rgba(34,197,94,0.35);
}
.btn-primary:hover { background: var(--green-600); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(34,197,94,0.4); }
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: white;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.btn-outline-green {
  background: transparent;
  color: var(--green-600);
  border: 2px solid var(--green-500);
}
.btn-outline-green:hover { background: var(--green-500); color: white; transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; border-radius: var(--radius-sm); }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(6,14,6,0.96);
  backdrop-filter: blur(24px);
  box-shadow: 0 2px 28px rgba(0,0,0,0.35);
  border-bottom: 1px solid rgba(34,197,94,0.14);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-mark {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: white;
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.02em;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
  font-weight: 700;
  font-size: 1rem;
  color: var(--neutral-900);
}
.logo-sub {
  font-size: 0.7rem;
  color: var(--green-600);
  font-weight: 500;
  letter-spacing: 0.05em;
}
/* Navbar always dark → logo always white */
.navbar .logo-main { color: white; }
.navbar .logo-sub { color: #86efac; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover { color: white; background: rgba(255,255,255,0.1); }
.nav-links .nav-cta {
  background: var(--green-500);
  color: white !important;
  padding: 8px 20px;
  border-radius: 100px;
}
.nav-links .nav-cta:hover { background: var(--green-600) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}
/* hamburger always white — navbar is always dark */

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark-900) 0%, var(--dark-800) 40%, #0d2b1a 70%, var(--dark-700) 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 120px 80px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: var(--green-500);
  top: -100px; right: -100px;
}
.hero-orb-2 {
  width: 350px; height: 350px;
  background: var(--amber-500);
  bottom: 50px; left: 300px;
  opacity: 0.1;
}
.hero-orb-3 {
  width: 250px; height: 250px;
  background: #60a5fa;
  bottom: -50px; left: -50px;
  opacity: 0.08;
}

.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--green-400);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.gradient-text {
  background: linear-gradient(135deg, var(--green-400), var(--amber-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats { display: flex; align-items: center; gap: 20px; }
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }

/* ── FRUIT ORBIT ── */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  overflow: visible;
  align-items: center;
  justify-content: center;
}
.fruit-orbit {
  position: relative;
  width: 460px;
  height: 460px;
}
.orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(34,197,94,0.25);
}
.ring-1 { inset: 70px; animation: spin-cw 20s linear infinite; }
.ring-2 { inset: 30px; animation: spin-ccw 15s linear infinite; }
.ring-3 { inset: -10px; animation: spin-cw 35s linear infinite; border-color: rgba(34,197,94,0.12); }
@keyframes spin-cw { to { transform: rotate(360deg); } }
@keyframes spin-ccw { to { transform: rotate(-360deg); } }

.orbit-fruit {
  position: absolute;
  font-size: 2rem;
  top: 50%;
  left: 50%;
  transform-origin: 0 0;
  transform: rotate(var(--angle)) translateY(-155px) rotate(calc(-1 * var(--angle)));
}
.ring-2 .orbit-fruit {
  transform: rotate(var(--angle)) translateY(-185px) rotate(calc(-1 * var(--angle)));
}
.ring-3 .orbit-fruit {
  font-size: 1.5rem;
  transform: rotate(var(--angle)) translateY(-230px) rotate(calc(-1 * var(--angle)));
}

.orbit-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 110px; height: 110px;
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  box-shadow: 0 0 40px rgba(34,197,94,0.4), 0 0 80px rgba(34,197,94,0.2);
}
.center-pulse {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(34,197,94,0.4);
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-dot {
  width: 4px; height: 24px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0; right: 0;
  height: 100%;
  background: var(--green-400);
  animation: scroll-drop 1.5s ease-in-out infinite;
}
@keyframes scroll-drop {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--dark-900);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 22px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.trust-item:last-child { border-right: none; }
.trust-item svg { color: var(--green-400); flex-shrink: 0; }

/* ── WHY ASEPTIC ── */
.why-aseptic {
  padding: 100px 0;
  background: var(--neutral-50);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.why-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--neutral-200);
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--green-200);
}
.why-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--c) 12%, white);
  color: var(--c);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 0.6rem;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--neutral-600);
  line-height: 1.65;
}

/* ── PACK SIZES ── */
.pack-sizes-section {
  padding: 100px 0;
  background: linear-gradient(180deg, white 0%, var(--green-50) 100%);
}
.pack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pack-card {
  background: white;
  border-radius: 20px;
  padding: 36px 28px;
  border: 2px solid var(--neutral-200);
  position: relative;
  transition: var(--transition);
}
.pack-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pack-featured {
  border-color: var(--green-400);
  background: linear-gradient(160deg, var(--green-50) 0%, white 60%);
  transform: scale(1.03);
}
.pack-featured:hover { transform: scale(1.03) translateY(-4px); }

.pack-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--neutral-800);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pack-featured .pack-badge { background: var(--green-600); }
.pack-card:first-child .pack-badge,
.pack-card:last-child .pack-badge { background: var(--amber-600); }

.pack-icon { font-size: 3rem; margin: 1rem 0 0.5rem; }
.pack-weight {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--neutral-900);
  font-family: var(--font-serif);
}
.pack-name {
  font-size: 0.85rem;
  color: var(--neutral-500);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.pack-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pack-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--neutral-700);
}
.pack-features li::before {
  content: '✓';
  width: 20px; height: 20px;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── PRODUCTS ── */
.products-section {
  padding: 100px 0;
  background: white;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: white;
  border-radius: 20px;
  border: 1px solid var(--neutral-200);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.1);
  border-color: transparent;
}
.product-hero {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.product-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  opacity: 0.08;
}
.product-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: transform 0.5s ease;
}
.product-card:hover .product-hero-img { transform: scale(1.06); }
.product-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.product-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 4px;
}
.product-latin {
  font-size: 0.78rem;
  color: var(--neutral-400);
  font-style: italic;
  margin-bottom: 1rem;
}
.product-desc {
  font-size: 0.88rem;
  color: var(--neutral-600);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1rem;
}
.spec-chip {
  background: var(--green-50);
  color: var(--green-700);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--green-200);
}
.product-packs {
  border-top: 1px solid var(--neutral-100);
  padding-top: 1rem;
  margin-bottom: 1rem;
}
.product-packs h5 {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--neutral-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pack-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.pack-pill {
  background: var(--neutral-100);
  color: var(--neutral-700);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}
.pack-pill.highlight {
  background: var(--amber-500);
  color: white;
}
.product-cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  background: var(--green-500);
  color: white;
}
.product-cta:hover {
  background: var(--green-600);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(34,197,94,0.35);
}

/* ── TRACEABILITY ── */
.traceability-section {
  padding: 100px 0;
  background: var(--dark-900);
  position: relative;
  overflow: hidden;
}
.traceability-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(34,197,94,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.trace-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.trace-content .section-tag { color: var(--green-400); background: rgba(34,197,94,0.1); border-color: rgba(34,197,94,0.25); }
.trace-content .section-title { color: white; }
.trace-desc {
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  font-size: 1rem;
}
.trace-steps { display: flex; flex-direction: column; gap: 24px; }
.trace-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-num {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--green-400);
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}
.step-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}
.step-info p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* TRACE CARD */
.trace-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(20px);
}
.tc-header {
  background: rgba(34,197,94,0.12);
  border-bottom: 1px solid rgba(34,197,94,0.2);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tc-badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-400);
}
.tc-id {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  font-family: monospace;
}
.tc-body { padding: 20px 24px; }
.tc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.82rem;
}
.tc-row:last-child { border-bottom: none; }
.tc-label { color: rgba(255,255,255,0.4); }
.tc-val { color: rgba(255,255,255,0.85); font-weight: 500; }
.tc-pass { color: var(--green-400); font-weight: 600; }
.tc-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.tc-footer p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

/* ── ABOUT ── */
.about-section { padding: 100px 0; background: white; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-card {
  background: linear-gradient(135deg, var(--green-700), var(--dark-700));
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-leaf {
  position: absolute;
  font-size: 3rem;
  opacity: 0.4;
}
.leaf-1 { top: 20px; left: 20px; }
.leaf-2 { bottom: 30px; right: 25px; font-size: 2.5rem; }
.leaf-3 { top: 40%; right: 15%; font-size: 2rem; opacity: 0.25; }
.about-center-icon { font-size: 5rem; }
.about-text-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  padding: 30px 24px 20px;
  display: flex;
  justify-content: space-between;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
}

.about-card-float {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--neutral-100);
  display: flex;
  flex-direction: column;
}
.about-card-1 { top: -16px; right: -20px; }
.about-card-2 { bottom: -16px; left: -20px; }
.acf-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-600);
  line-height: 1;
}
.acf-label {
  font-size: 0.72rem;
  color: var(--neutral-500);
  margin-top: 2px;
}

.about-content p {
  color: var(--neutral-600);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: 0.97rem;
}
.about-highlights { display: flex; flex-direction: column; gap: 20px; margin-top: 1.5rem; }
.ah-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ah-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--green-50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ah-item strong {
  display: block;
  font-size: 0.92rem;
  color: var(--neutral-900);
  margin-bottom: 2px;
}
.ah-item p {
  font-size: 0.85rem;
  color: var(--neutral-500);
  margin: 0;
}

/* ── CONTACT ── */
.contact-section {
  padding: 100px 0;
  background: var(--neutral-50);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.contact-info p {
  color: var(--neutral-600);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.contact-details { display: flex; flex-direction: column; gap: 14px; margin-bottom: 2rem; }
.cd-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--neutral-700);
}
.cd-item svg { color: var(--green-600); flex-shrink: 0; }
.innofarms-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: white;
  border: 1px solid var(--neutral-200);
  border-radius: 14px;
  padding: 14px 20px;
  text-decoration: none;
  transition: var(--transition);
}
.innofarms-link:hover { border-color: var(--green-400); box-shadow: var(--shadow-card); }
.innofarms-link img { width: 80px; height: 36px; border-radius: 8px; background: #fff; object-fit: contain; padding: 4px 8px; }
.innofarms-link div { display: flex; flex-direction: column; }
.innofarms-link span:first-child { font-size: 0.72rem; color: var(--neutral-400); font-weight: 500; }
.innofarms-link span:last-child { font-size: 0.9rem; color: var(--green-700); font-weight: 700; }

/* FORMS */
.contact-form-wrap, .modal-form {
  /* shared */
}
.contact-form, .modal-form {
  background: white;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid var(--neutral-200);
  box-shadow: var(--shadow-card);
}
.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--neutral-900);
  margin-bottom: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--neutral-700); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--font-sans);
  color: var(--neutral-800);
  background: white;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-400);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.12);
}
.form-group textarea { resize: vertical; min-height: 90px; }

/* ── FOOTER ── */
.footer {
  background: var(--dark-900);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin: 1rem 0 0.5rem;
  max-width: 280px;
}
.footer-parent {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3) !important;
}
.footer-parent a { color: var(--green-400) !important; text-decoration: none; }
.footer-logo { display: flex; flex-direction: column; align-items: flex-start; margin-bottom: 0.5rem; }

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li { font-size: 0.88rem; color: rgba(255,255,255,0.4); }
.footer-col ul li a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--green-400); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: white;
  border-radius: 24px;
  padding: 36px;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  background: var(--neutral-100);
  border: none;
  border-radius: 50%;
  font-size: 0.9rem;
  color: var(--neutral-600);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: var(--neutral-200); }
.modal-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--neutral-100);
}
.modal-fruit-icon {
  font-size: 2.5rem;
  width: 64px; height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--green-50);
  flex-shrink: 0;
}
.modal-header h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--neutral-900);
  margin-bottom: 4px;
}
.modal-header p { font-size: 0.85rem; color: var(--neutral-500); }

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--green-700);
  color: white;
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  z-index: 3000;
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 120px 40px 60px; text-align: center; }
  .hero-visual { display: none; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }
  .trace-layout { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .pack-grid { grid-template-columns: 1fr; }
  .pack-featured { transform: none; }
  .pack-featured:hover { transform: translateY(-4px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0; background: rgba(6,14,6,0.98); backdrop-filter: blur(20px); flex-direction: column; padding: 20px; box-shadow: 0 12px 40px rgba(0,0,0,0.4); border-top: 1px solid rgba(34,197,94,0.15); }
  .nav-links.open { display: flex; }
  .nav-links a { color: rgba(255,255,255,0.85) !important; padding: 14px 16px; border-radius: 10px; }
  .hamburger { display: flex; }
  .hero { padding: 100px 24px 60px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-items { gap: 4px; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); width: 100%; }
  .modal { padding: 24px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}

/* ── NAVBAR LOGO IMG ── */
.nav-logo-pill {
  background: #fff;
  border-radius: 10px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-logo-sub {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-400);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-logo-pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  margin-bottom: 4px;
}
.footer-logo-img {
  height: 30px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ── FAIRFARMS SECTION ── */
.fairfarms-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--neutral-50) 0%, white 100%);
}

/* Brand Banner */
.ff-brand-banner {
  background: linear-gradient(135deg, var(--dark-800) 0%, var(--dark-700) 60%, #0a2a15 100%);
  border-radius: 24px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
}
.ff-brand-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(34,197,94,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.ff-brand-left { flex: 1; }
.ff-brand-logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 1rem;
}
.ff-logo-text {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.01em;
}
.ff-logo-text span { color: var(--green-400); }
.ff-logo-tag {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 2px 10px;
  border-radius: 100px;
}
.ff-brand-left p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 480px;
}
.ff-amazon-btn {
  background: #ff9900;
  color: #111;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(255,153,0,0.35);
}
.ff-amazon-btn:hover {
  background: #e68900;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,153,0,0.45);
}

.ff-brand-right { flex-shrink: 0; }
.ff-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ff-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 100px;
}
.ff-stat span {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-400);
  line-height: 1;
}
.ff-stat small {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── FILTER BAR ── */
.ff-filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.ff-filter-btn {
  background: white;
  border: 1.5px solid var(--neutral-200);
  color: var(--neutral-600);
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-sans);
}
.ff-filter-btn:hover { border-color: var(--green-400); color: var(--green-600); }
.ff-filter-btn.active {
  background: var(--green-600);
  border-color: var(--green-600);
  color: white;
  box-shadow: 0 4px 14px rgba(22,163,74,0.3);
}

/* ── PRODUCT GRID ── */
.ff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

/* ── PRODUCT CARD (hover-reveal design) ── */
.ff-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s;
}
.ff-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 56px rgba(0,0,0,0.18);
}

/* Media layer */
.ff-card-media {
  position: absolute;
  inset: 0;
}
.ff-ci {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.ff-card:hover .ff-ci { transform: scale(1.1); }
.ff-ci-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

/* Base state — bottom name strip (always visible) */
.ff-card-base {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.35) 60%, transparent 100%);
  padding: 52px 16px 16px;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 1;
}
.ff-card:hover .ff-card-base,
.ff-card.active .ff-card-base { opacity: 0; }
.ff-card-base h4 {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 6px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* Hover overlay — full detail reveal */
.ff-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8,22,12,0.97) 0%,
    rgba(12,35,18,0.95) 50%,
    rgba(5,30,15,0.92) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 18px;
  gap: 7px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.38s ease, transform 0.38s cubic-bezier(0.4,0,0.2,1);
  z-index: 2;
}
.ff-card:hover .ff-card-overlay,
.ff-card.active .ff-card-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Category tag (used in both base + overlay) */
.ff-cat-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--tc, #22c55e);
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.35);
  padding: 3px 10px;
  border-radius: 100px;
  width: fit-content;
}

/* Overlay content */
.ff-card-overlay h4 {
  color: white;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
}
.ff-ov-tagline {
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  font-style: italic;
  margin: -2px 0 2px;
}
.ff-ov-desc {
  color: rgba(255,255,255,0.78);
  font-size: 0.78rem;
  line-height: 1.55;
}
.ff-ov-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 2px 0;
}
.ff-ov-pills span {
  font-size: 0.62rem;
  font-weight: 600;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 2px 8px;
  border-radius: 100px;
}
.ff-ov-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.ff-origin-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.38);
  display: flex;
  align-items: center;
  gap: 4px;
}
.ff-buy-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.73rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}
.ff-buy-btn.amazon-btn {
  background: #ff9900;
  color: #111;
  box-shadow: 0 3px 10px rgba(255,153,0,0.4);
}
.ff-buy-btn.amazon-btn:hover { background: #e68900; transform: translateY(-1px); }
.ff-buy-btn.alt-btn {
  background: rgba(255,255,255,0.13);
  color: white;
  border: 1px solid rgba(255,255,255,0.28);
}
.ff-buy-btn.alt-btn:hover { background: rgba(255,255,255,0.22); }

/* Touch-tap indicator on mobile */
.ff-tap-hint {
  position: absolute;
  bottom: 14px; right: 14px;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 1;
  pointer-events: none;
}
@media (hover: hover) { .ff-tap-hint { display: none; } }

/* CTA Strip */
.ff-cta-strip {
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  border-radius: 20px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.ff-cta-content { flex: 1; min-width: 280px; }
.ff-cta-content p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
}
.ff-cta-content h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: white;
}
.btn-ghost-dark {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn-ghost-dark:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }

/* ── FAIRFARMS RESPONSIVE ── */
@media (max-width: 1200px) {
  .ff-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .ff-brand-banner { flex-direction: column; text-align: center; }
  .ff-brand-left p { max-width: 100%; margin: 0 auto 1.5rem; }
  .ff-brand-logo { justify-content: center; }
  .ff-stats { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .ff-grid { grid-template-columns: repeat(2, 1fr); }
  .ff-stats { grid-template-columns: repeat(2, 1fr); }
  .ff-cta-strip { flex-direction: column; text-align: center; }
  .ff-filter-bar { gap: 8px; }
  .ff-filter-btn { padding: 8px 16px; font-size: 0.82rem; }
}
@media (max-width: 480px) {
  .ff-grid { grid-template-columns: repeat(2, 1fr); }
  .ff-card { aspect-ratio: 2 / 3; }
}

/* ── HERO SUBTITLE ACCENT (Farm Processed. line) ── */
.hero-subtitle-accent {
  background: linear-gradient(135deg, var(--amber-400), #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

/* ── PRODUCT ACTIONS (Quote + COA side by side) ── */
.product-actions {
  display: flex;
  gap: 8px;
  align-items: stretch;
  margin-top: auto;
  padding-top: 12px;
}
.product-actions .product-cta {
  flex: 1;
}
.product-coa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  background: var(--green-50);
  color: var(--green-700);
  border: 1.5px solid var(--green-200);
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.product-coa-btn:hover {
  background: var(--green-100);
  border-color: var(--green-500);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(34,197,94,0.2);
}

/* ── VIDEO SECTION ── */
.video-section {
  padding: 100px 0;
  background: var(--neutral-50);
}
.video-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.14);
  border: 1px solid var(--neutral-200);
  max-width: 900px;
  margin: 0 auto;
}
.video-wrapper iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  background: var(--dark-900);
}
.video-overlay-caption {
  background: var(--dark-800);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
}
.video-overlay-caption svg { color: var(--green-400); flex-shrink: 0; }
.video-overlay-caption a {
  color: var(--green-400);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}
.video-overlay-caption a:hover { color: #86efac; text-decoration: underline; }

@media (max-width: 768px) {
  .video-section { padding: 60px 0; }
  .video-wrapper { border-radius: 14px; }
  .product-coa-btn { padding: 10px 10px; font-size: 0.76rem; }
}

/* ── WHY ASEPTIC TABS ── */
.why-tabs { display: flex; flex-direction: column; gap: 24px; }

.why-tab-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.why-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 100px;
  border: 1.5px solid var(--neutral-200);
  background: white;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--neutral-600);
  cursor: pointer;
  transition: var(--transition);
}
.why-tab-btn svg { color: var(--neutral-400); transition: var(--transition); }
.why-tab-btn:hover {
  border-color: var(--tc);
  color: var(--tc);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}
.why-tab-btn:hover svg { color: var(--tc); }
.why-tab-btn.active {
  background: var(--tc);
  border-color: var(--tc);
  color: white;
  box-shadow: 0 6px 20px color-mix(in srgb, var(--tc) 40%, transparent);
}
.why-tab-btn.active svg { color: white; }

.why-tab-panels { position: relative; min-height: 220px; }

.why-tab-panel {
  display: none;
  background: white;
  border-radius: 20px;
  border: 1.5px solid var(--neutral-200);
  padding: 40px;
  align-items: flex-start;
  gap: 32px;
  animation: fadeInPanel 0.35s ease;
}
.why-tab-panel.active { display: flex; }
@keyframes fadeInPanel {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.wtp-icon {
  width: 68px; height: 68px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--pc) 12%, white);
  color: var(--pc);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid color-mix(in srgb, var(--pc) 20%, transparent);
}
.wtp-content h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 0.6rem;
}
.wtp-content > p {
  color: var(--neutral-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.wtp-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.wtp-stat { display: flex; flex-direction: column; gap: 2px; }
.wtp-stat span {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--pc);
  line-height: 1;
}
.wtp-stat small {
  font-size: 0.72rem;
  color: var(--neutral-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.wtp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.wtp-pills span {
  background: color-mix(in srgb, var(--pc) 10%, white);
  color: var(--pc);
  border: 1px solid color-mix(in srgb, var(--pc) 25%, transparent);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
}

@media (max-width: 768px) {
  .why-tab-panel { flex-direction: column; padding: 28px; }
  .wtp-icon { width: 52px; height: 52px; }
  .wtp-stats { gap: 16px; }
  .why-tab-btns { gap: 7px; }
  .why-tab-btn { padding: 9px 16px; font-size: 0.8rem; }
  .why-tab-btn svg { display: none; }
}

/* ── VIDEO CARD GRID ── */
.video-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.video-card-main {
  text-decoration: none;
  border-radius: 20px;
  overflow: hidden;
  background: var(--dark-800);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.video-card-main:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,0.2); }

.vcm-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #0d2b1a 0%, #1a3d20 40%, #0f1f0f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.vcm-thumb::before {
  content: '🌿';
  font-size: 5rem;
  opacity: 0.15;
  position: absolute;
}
.vcm-play-btn {
  width: 64px; height: 64px;
  background: var(--green-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(34,197,94,0.5);
  position: relative;
  z-index: 1;
  padding-left: 4px;
}
.video-card-main:hover .vcm-play-btn { transform: scale(1.1); background: var(--green-600); }

.vcm-overlay {
  position: absolute;
  top: 12px; right: 12px;
}
.vcm-yt-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ff0000;
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}
.vcm-info {
  padding: 20px 24px;
  background: var(--dark-800);
}
.vcm-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-400);
  margin-bottom: 6px;
}
.vcm-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  line-height: 1.4;
  margin-bottom: 8px;
}
.vcm-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* Video list column */
.video-card-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vcl-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  border: 1px solid var(--neutral-200);
  border-radius: 14px;
  padding: 14px 18px;
  text-decoration: none;
  transition: var(--transition);
  flex: 1;
}
.vcl-item:hover {
  border-color: var(--green-400);
  background: var(--green-50);
  transform: translateX(4px);
}
.vcl-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--green-600);
  background: var(--green-100);
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: monospace;
}
.vcl-text { flex: 1; }
.vcl-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 2px;
  line-height: 1.3;
}
.vcl-text span {
  font-size: 0.76rem;
  color: var(--neutral-500);
}
.vcl-arrow { color: var(--neutral-400); transition: var(--transition); flex-shrink: 0; }
.vcl-item:hover .vcl-arrow { color: var(--green-600); transform: translateX(2px); }

.vcl-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--dark-800);
  color: white;
  border-radius: 14px;
  padding: 14px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  margin-top: 4px;
}
.vcl-cta:hover { background: var(--dark-700); transform: translateY(-2px); }
.vcl-cta svg { color: #ff0000; }

/* ── YOUTUBE EMBED ── */
.vcm-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}
.vcm-embed::before { display: none; }
.vcm-yt-card::before { display: none; }
.vcm-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.vcm-channel-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-400);
  text-decoration: none;
  transition: var(--transition);
}
.vcm-channel-link:hover { color: var(--green-300); }

@media (max-width: 900px) {
  .video-card-grid { grid-template-columns: 1fr; }
}

/* ── MACHINE FEATURE STRIP ── */
.machine-feature-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 56px;
  background: linear-gradient(135deg, var(--dark-800) 0%, var(--dark-700) 100%);
  border-radius: 24px;
  overflow: hidden;
}
.mf-img-wrap {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.mf-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.machine-feature-strip:hover .mf-img { transform: scale(1.04); }
.mf-img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(34,197,94,0.9);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  backdrop-filter: blur(8px);
}
.mf-content {
  padding: 40px 40px 40px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mf-content h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
}
.mf-content p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}
.mf-specs {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}
.mf-spec {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.mf-spec span {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--green-400);
  line-height: 1;
}
.mf-spec small {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
@media (max-width: 768px) {
  .machine-feature-strip { grid-template-columns: 1fr; }
  .mf-img-wrap { height: 200px; }
  .mf-content { padding: 24px; }
}

/* ── BUY MACHINE CTA STRIP ── */
.buy-machine-strip {
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-800) 60%, #052e16 100%);
  border-top: 1px solid rgba(74, 222, 128, 0.15);
  padding: 48px 40px;
}
.bm-content {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.bm-text { flex: 1; }
.bm-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-400);
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 12px;
}
.bm-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.25;
}
.bm-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  max-width: 520px;
}
.bm-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.bm-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  padding: 14px 28px;
  white-space: nowrap;
}
.bm-meta {
  display: flex;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 768px) {
  .buy-machine-strip { padding: 36px 24px; }
  .bm-content { flex-direction: column; gap: 28px; align-items: flex-start; }
  .bm-actions { align-items: flex-start; }
}

/* ========================================
   PROCESS ANIMATION SECTION
   ======================================== */
.process-anim-section {
  background: white;
  padding: 100px 0;
  overflow: hidden;
  border-top: 1px solid var(--neutral-100);
  border-bottom: 1px solid var(--neutral-100);
}

.process-anim-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 56px;
  flex-wrap: wrap;
  row-gap: 32px;
}

/* ── Step card ── */
.pa-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 160px;
}
.pa-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--step-color, var(--green-500));
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--step-color, var(--green-500)) 40%, transparent);
}
.pa-visual {
  width: 140px; height: 140px;
  background: white;
  border-radius: 20px;
  border: 2px solid color-mix(in srgb, var(--step-color, var(--green-400)) 30%, transparent);
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}
.pa-scene {
  width: 100%; height: 100%;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.pa-info { text-align: center; }
.pa-info h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 3px;
}
.pa-info p {
  font-size: 0.72rem;
  color: var(--neutral-600);
  line-height: 1.35;
}

/* ── Connector ── */
.pa-connector {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--neutral-300);
  padding: 0 4px;
  margin-bottom: 56px; /* vertically aligns with the visual card centre */
  flex-shrink: 0;
}
.pa-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green-400);
  animation: dotPulse 1.5s ease-in-out infinite;
}
.pa-dot.d1 { animation-delay: 0s; }
.pa-dot.d2 { animation-delay: 0.3s; }
.pa-dot.d3 { animation-delay: 0.6s; }
@keyframes dotPulse {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* ──────────────────────────────────
   STAGE 1 — HARVEST
   ────────────────────────────────── */
.pa-harvest-scene { overflow: hidden; }
.harvest-fruit {
  position: absolute;
  font-size: 1.6rem;
  top: 0;
  animation: fruitFall 2.8s ease-in infinite;
}
.hf1 { left: 18px; animation-delay: 0s; }
.hf2 { left: 50%; transform: translateX(-50%); animation-delay: 0.55s; }
.hf3 { right: 14px; animation-delay: 1.1s; }
@keyframes fruitFall {
  0%   { top: -24px; opacity: 0; }
  15%  { opacity: 1; }
  70%  { top: 88px; opacity: 0.9; }
  100% { top: 110px; opacity: 0; }
}
.harvest-bin {
  position: absolute;
  bottom: 8px;
  width: 90px; height: 28px;
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  border-radius: 0 0 10px 10px;
  border-top: 3px solid var(--green-400);
}
.harvest-bin::after {
  content: '';
  position: absolute;
  top: -14px; left: -6px; right: -6px;
  height: 14px;
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  clip-path: polygon(8% 100%, 0 0, 100% 0, 92% 100%);
}

/* ──────────────────────────────────
   STAGE 2 — CRUSH
   ────────────────────────────────── */
.pa-crush-scene { flex-direction: column; }
.crush-press {
  position: absolute;
  top: 8px;
  width: 64px; height: 18px;
  background: linear-gradient(135deg, #374151, #1f2937);
  border-radius: 6px;
  z-index: 2;
  animation: crushDown 2.8s ease-in-out infinite;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
.crush-press::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%; transform: translateX(-50%);
  width: 44px; height: 10px;
  background: #111827;
  border-radius: 0 0 6px 6px;
}
.crush-fruit-emoji {
  position: absolute;
  top: 44px;
  font-size: 2.2rem;
  z-index: 1;
  animation: squashEmoji 2.8s ease-in-out infinite;
}
.crush-splash {
  position: absolute;
  top: 58px;
  display: flex; gap: 6px;
  z-index: 3;
}
.crush-splash span {
  font-size: 0.85rem;
  opacity: 0;
  animation: splashOut 2.8s ease-in-out infinite;
}
.cs1 { animation-delay: 0.78s !important; --dx: -14px; --dy: -16px; }
.cs2 { animation-delay: 0.85s !important; --dx: 0px;   --dy: -20px; }
.cs3 { animation-delay: 0.92s !important; --dx: 14px;  --dy: -16px; }
.crush-pulp-pool {
  position: absolute;
  bottom: 10px;
  width: 0; height: 8px;
  background: radial-gradient(ellipse, var(--amber-400), var(--amber-500));
  border-radius: 50%;
  animation: pulpPool 2.8s ease-in-out infinite;
}
@keyframes crushDown {
  0%, 25%  { transform: translateY(0); }
  50%, 65% { transform: translateY(32px); }
  90%, 100%{ transform: translateY(0); }
}
@keyframes squashEmoji {
  0%, 25%  { transform: scaleX(1) scaleY(1); opacity: 1; }
  50%, 65% { transform: scaleX(1.8) scaleY(0.35); opacity: 0.7; }
  80%      { transform: scaleX(1) scaleY(0); opacity: 0; }
  100%     { transform: scaleX(1) scaleY(1); opacity: 0; }
}
@keyframes splashOut {
  0%, 45%  { opacity: 0; transform: translate(0, 0); }
  55%, 72% { opacity: 1; transform: translate(var(--dx, 0), var(--dy, -12px)); }
  88%, 100%{ opacity: 0; transform: translate(var(--dx, 0), var(--dy, -12px)); }
}
@keyframes pulpPool {
  0%, 45%  { width: 0; opacity: 0; }
  65%, 85% { width: 64px; opacity: 1; }
  100%     { width: 64px; opacity: 0; }
}

/* ──────────────────────────────────
   STAGE 3 — ASEPTIC FILL
   ────────────────────────────────── */
.pa-fill-scene {
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 0 0;
}
.fill-nozzle {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
.fill-nozzle-body {
  width: 20px; height: 26px;
  background: linear-gradient(to bottom, #6b7280, #374151);
  border-radius: 4px 4px 0 0;
}
.fill-stream {
  width: 5px;
  height: 0;
  background: linear-gradient(to bottom, var(--amber-400), var(--amber-500));
  border-radius: 0 0 3px 3px;
  animation: streamDrip 2.8s ease-in-out infinite;
}
.fill-bag-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
}
.fill-bag-top {
  width: 60px; height: 6px;
  background: linear-gradient(to right, var(--green-700), var(--green-500), var(--green-700));
  border-radius: 3px 3px 0 0;
}
.fill-bag-body {
  width: 80px; height: 72px;
  border: 2px solid var(--green-400);
  border-top: none;
  border-radius: 0 0 14px 14px;
  overflow: hidden;
  position: relative;
  background: rgba(220,252,231,0.3);
}
.fill-level {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(to top, var(--amber-500), var(--amber-300));
  border-radius: 0 0 12px 12px;
  animation: levelRise 2.8s ease-in-out infinite;
}
@keyframes streamDrip {
  0%, 15%  { height: 0; opacity: 0; }
  25%, 78% { height: 22px; opacity: 1; }
  90%, 100%{ height: 0; opacity: 0; }
}
@keyframes levelRise {
  0%, 20%  { height: 0%; }
  28%      { height: 4%; }
  80%, 92% { height: 82%; }
  100%     { height: 82%; }
}

/* ──────────────────────────────────
   STAGE 4 — SEALED 3 KG BAG
   ────────────────────────────────── */
.pa-bag-scene { align-items: center; justify-content: center; }
.aseptic-bag-3kg {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: bagReveal 2.8s ease-in-out infinite;
}
.bag3-header {
  width: 78px;
  background: linear-gradient(to right, var(--green-700), var(--green-600));
  border-radius: 8px 8px 0 0;
  padding: 4px 6px 3px;
  display: flex; align-items: center; justify-content: center;
}
.bag3-brand {
  font-size: 0.48rem;
  font-weight: 800;
  color: white;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.bag3-body {
  width: 78px;
  background: linear-gradient(160deg, #dcfce7, #bbf7d0 60%, #86efac);
  border: 2px solid var(--green-400);
  border-top: none;
  border-radius: 0 0 14px 14px;
  padding: 6px 6px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.bag3-weight {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--green-800);
  line-height: 1;
  font-family: var(--font-serif);
}
.bag3-type {
  font-size: 0.44rem;
  font-weight: 700;
  color: var(--green-700);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.bag3-strip {
  width: 54px; height: 3px;
  background: linear-gradient(to right, var(--amber-400), var(--amber-500), var(--amber-400));
  border-radius: 2px;
  margin-top: 4px;
}
.bag3-seal {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 5px;
  background: var(--green-500);
  color: white;
  font-size: 0.52rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  animation: sealGlow 2.8s ease-in-out infinite;
}
.bag3-check {
  font-size: 0.7rem;
  font-weight: 900;
}
@keyframes bagReveal {
  0%, 12%  { transform: scale(0.55) translateY(10px); opacity: 0; }
  30%, 88% { transform: scale(1) translateY(0); opacity: 1; }
  100%     { transform: scale(1); opacity: 1; }
}
@keyframes sealGlow {
  0%, 35%  { box-shadow: none; }
  55%, 75% { box-shadow: 0 0 14px rgba(34,197,94,0.9), 0 0 28px rgba(34,197,94,0.4); }
  90%, 100%{ box-shadow: none; }
}

/* ──────────────────────────────────
   STAGE 3 — UHT STERILISATION
   ────────────────────────────────── */
.pa-uht-scene {
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 10px;
}
.uht-chamber {
  display: flex;
  width: 118px;
  height: 74px;
  border-radius: 12px;
  overflow: hidden;
  gap: 3px;
}
.uht-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  position: relative;
  overflow: hidden;
}
.uht-heat-side {
  background: linear-gradient(160deg, #7f1d1d 0%, #dc2626 50%, #f97316 100%);
  border-radius: 10px 0 0 10px;
}
.uht-cool-side {
  background: linear-gradient(160deg, #1e3a5f 0%, #2563eb 50%, #06b6d4 100%);
  border-radius: 0 10px 10px 0;
}
.uht-side-glow {
  position: absolute;
  inset: 0;
}
.heat-glow {
  background: radial-gradient(circle at 50% 35%, rgba(255,210,0,0.5) 0%, transparent 65%);
  animation: uhtGlow 1.2s ease-in-out infinite;
}
.cool-glow {
  background: radial-gradient(circle at 50% 35%, rgba(186,230,255,0.5) 0%, transparent 65%);
  animation: uhtGlow 1.2s ease-in-out infinite;
  animation-delay: 0.6s;
}
@keyframes uhtGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
.uht-emoji {
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
}
.uht-temp {
  font-size: 0.44rem;
  font-weight: 900;
  color: white;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}
.hot-temp {
  position: relative;
  min-width: 30px;
  min-height: 8px;
}
.hot-temp .ht-val {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.44rem;
  font-weight: 900;
  color: white;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
  opacity: 0;
}
.ht-val:nth-child(1) { animation: htCycle 8s ease-in-out infinite 0s; }
.ht-val:nth-child(2) { animation: htCycle 8s ease-in-out infinite 2s; }
.ht-val:nth-child(3) { animation: htCycle 8s ease-in-out infinite 4s; }
.ht-val:nth-child(4) { animation: htCycle 8s ease-in-out infinite 6s; }
@keyframes htCycle {
  0%      { opacity: 0; }
  5%, 20% { opacity: 1; }
  25%,100%{ opacity: 0; }
}
/* Vertical pipe between the two zones */
.uht-pipe-flow {
  width: 5px;
  flex-shrink: 0;
  position: relative;
  background: linear-gradient(to bottom, rgba(251,146,60,0.7), rgba(6,182,212,0.7));
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.uht-droplet {
  position: absolute;
  width: 3px; height: 5px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  left: 1px;
  animation: dropletDown 1.8s linear infinite;
}
.ud1 { animation-delay: 0s; }
.ud2 { animation-delay: 0.6s; }
.ud3 { animation-delay: 1.2s; }
@keyframes dropletDown {
  0%   { top: -8px; opacity: 0; }
  12%  { opacity: 1; }
  88%  { opacity: 1; }
  100% { top: 82px; opacity: 0; }
}
.uht-sterile-tag {
  background: linear-gradient(135deg, rgba(34,197,94,0.12), rgba(34,197,94,0.22));
  border: 1.5px solid rgba(34,197,94,0.5);
  color: var(--green-600);
  font-size: 0.52rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.1em;
  animation: sterileGlow 2s ease-in-out infinite;
}
@keyframes sterileGlow {
  0%, 100% { box-shadow: none; }
  50% { box-shadow: 0 0 10px rgba(34,197,94,0.45); }
}

/* ──────────────────────────────────
   STAGE 5 — BAG CYCLING
   ────────────────────────────────── */
.pa-bags-scene {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.bag-cycle-container {
  position: relative;
  width: 80px;
  height: 110px;
}
.cycle-bag {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  opacity: 0;
  transform: scale(0.75) translateY(8px);
}
.cb-3kg  { animation: bagSlide 6s ease-in-out infinite 0s; }
.cb-20kg { animation: bagSlide 6s ease-in-out infinite 2s; }
.cb-200kg{ animation: bagSlide 6s ease-in-out infinite 4s; }
@keyframes bagSlide {
  0%      { opacity: 0; transform: scale(0.72) translateY(10px); }
  5%, 27% { opacity: 1; transform: scale(1) translateY(0); }
  33%,100%{ opacity: 0; transform: scale(0.72) translateY(-10px); }
}

/* Size indicator dots */
.bag-size-dots {
  display: flex;
  gap: 5px;
}
.bsd {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--neutral-200);
  transition: var(--transition);
}
.bsd-1 { animation: dotOn 6s ease-in-out infinite 0s; }
.bsd-2 { animation: dotOn 6s ease-in-out infinite 2s; }
.bsd-3 { animation: dotOn 6s ease-in-out infinite 4s; }
@keyframes dotOn {
  0%, 4%   { background: var(--neutral-200); transform: scale(1); }
  8%, 27%  { background: var(--green-500); transform: scale(1.5); }
  33%,100% { background: var(--neutral-200); transform: scale(1); }
}

/* 20 kg DRUM */
.drum-wrap { display: flex; flex-direction: column; align-items: center; }
.drum-lid-top {
  width: 46px; height: 6px;
  background: linear-gradient(to right, #374151, #4b5563, #374151);
  border-radius: 4px 4px 0 0;
}
.drum-cylinder {
  width: 42px;
  background: linear-gradient(to right, #e5e7eb, #f9fafb, #e5e7eb);
  border: 1.5px solid #d1d5db;
  border-top: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.drum-band {
  height: 5px;
  background: linear-gradient(to right, #374151, #4b5563, #374151);
}
.drum-label-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px 2px;
  gap: 1px;
}
.drum-lbl-brand {
  font-size: 0.38rem;
  font-weight: 800;
  color: var(--green-700);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.drum-lbl-weight {
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--neutral-800);
  line-height: 1;
  font-family: var(--font-serif);
}
.drum-lbl-type {
  font-size: 0.32rem;
  color: var(--neutral-500);
  font-weight: 600;
}
.drum-base-ring {
  width: 46px; height: 5px;
  background: linear-gradient(to right, #374151, #4b5563, #374151);
  border-radius: 0 0 4px 4px;
}
.drum-seal-tag {
  font-size: 0.48rem;
  font-weight: 800;
  background: var(--green-500);
  color: white;
  padding: 2px 8px;
  border-radius: 10px;
}

/* 200 kg BIG DRUM */
.bdrum-wrap { display: flex; flex-direction: column; align-items: center; }
.bdrum-lid-top {
  width: 64px; height: 8px;
  background: linear-gradient(to right, #1f2937, #374151, #1f2937);
  border-radius: 6px 6px 0 0;
}
.bdrum-cylinder {
  width: 60px;
  height: 72px;
  background: linear-gradient(to right, #d1d5db, #f9fafb, #d1d5db);
  border: 2px solid #9ca3af;
  border-top: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.bdrum-band {
  height: 7px;
  background: linear-gradient(to right, #1f2937, #374151, #1f2937);
}
.bdrum-label-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px 2px;
  gap: 1px;
}
.bdrum-lbl-brand {
  font-size: 0.38rem;
  font-weight: 800;
  color: var(--green-700);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.bdrum-lbl-weight {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--neutral-800);
  line-height: 1;
  font-family: var(--font-serif);
}
.bdrum-lbl-type {
  font-size: 0.3rem;
  color: var(--neutral-500);
  font-weight: 600;
}
.bdrum-base-ring {
  width: 64px; height: 7px;
  background: linear-gradient(to right, #1f2937, #374151, #1f2937);
  border-radius: 0 0 6px 6px;
}
.bdrum-seal-tag {
  font-size: 0.48rem;
  font-weight: 800;
  background: var(--green-500);
  color: white;
  padding: 2px 8px;
  border-radius: 10px;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .process-anim-track { flex-direction: column; align-items: center; }
  .pa-connector { transform: rotate(90deg); margin: 2px 0; }
}

/* ── LOCAL VIDEO PLAYER ── */
.vcm-video-wrap {
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
}
.vcm-local-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

/* ── YOUTUBE THUMBNAIL CARD ── */
.vcm-yt-card {
  display: block !important;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000 !important;
  text-decoration: none;
  cursor: pointer;
}
.vcm-yt-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.vcm-yt-card:hover .vcm-yt-thumb {
  transform: scale(1.04);
  filter: brightness(0.7);
}
.vcm-yt-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(0,0,0,0.35);
  transition: background 0.3s;
}
.vcm-yt-card:hover .vcm-yt-overlay { background: rgba(0,0,0,0.55); }
.vcm-play-btn {
  width: 72px; height: 72px;
  background: #ff0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(255,0,0,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}
.vcm-yt-card:hover .vcm-play-btn {
  transform: scale(1.12);
  box-shadow: 0 12px 40px rgba(255,0,0,0.7);
}
.vcm-play-btn svg { margin-left: 4px; }
.vcm-yt-label {
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(0,0,0,0.5);
  padding: 6px 18px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

/* ── INDIA MAP ── */
.india-map-card {
  padding: 0 !important;
  overflow: hidden;
  background: linear-gradient(135deg, #071a0f 0%, #0d2b18 60%, #112e1c 100%) !important;
}
.india-map-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: 0.9;
}
.map-fruit-pin {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1.1rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.6));
  cursor: default;
  z-index: 2;
  animation: pinPop 3s ease-in-out infinite;
}
.map-fruit-pin:nth-child(2) { animation-delay: 0.5s; }
.map-fruit-pin:nth-child(3) { animation-delay: 1s; }
.map-fruit-pin:nth-child(4) { animation-delay: 1.5s; }
.map-fruit-pin:nth-child(5) { animation-delay: 2s; }
.map-fruit-pin:nth-child(6) { animation-delay: 2.5s; }
.map-fruit-pin span {
  font-size: 0.62rem;
  font-weight: 700;
  color: white;
  background: rgba(34,197,94,0.85);
  padding: 2px 7px;
  border-radius: 100px;
  white-space: nowrap;
  display: none;
}
.map-fruit-pin:hover span { display: inline; }
@keyframes pinPop {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.15); }
}


