/* ================================================================
   BARU SUPERFOODS — Premium CSS
   Brand Colors:
     Deep Forest Green: #1E3A1F
     Warm Green:        #2C5F2E
     Amber Gold:        #C8962A
     Light Gold:        #E5C15C
     Off-White:         #F7F4EE
     Dark Brown:        #2A1A0A
     Text Dark:         #1A1A1A
     Text Mid:          #4A4A4A
================================================================ */

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: #1A1A1A;
  background: #F7F4EE;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 100px 0; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C8962A;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #1E3A1F;
  margin-bottom: 1.25rem;
}

.section-sub {
  max-width: 620px;
  color: #4A4A4A;
  font-size: 1.05rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-sub {
  margin: 0 auto;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #C8962A;
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: #b07e1c; transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.6);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: border-color 0.25s, background 0.25s;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

.btn-nav {
  background: #C8962A;
  color: #fff !important;
  padding: 0.55rem 1.3rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.2s;
}
.btn-nav:hover { background: #b07e1c; }

.btn-product {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.65rem 1.5rem;
  border: 2px solid #C8962A;
  color: #C8962A;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.2s, color 0.2s;
}
.btn-product:hover { background: #C8962A; color: #fff; }

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #C8962A;
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.btn-text:hover { border-color: #C8962A; }

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: #2C5F2E;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.btn-submit:hover { background: #1E3A1F; transform: translateY(-1px); }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background 0.35s, box-shadow 0.35s, padding 0.35s;
}
.navbar.scrolled {
  background: rgba(30, 58, 31, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  padding: 0.75rem 0;
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  line-height: 1;
}
.logo-baru {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
}
.logo-sf {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.1em;
}
.logo-by {
  font-size: 0.7rem;
  font-weight: 400;
  color: #C8962A;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: #E5C15C; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s;
}

.lang-switcher a {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  padding: 0.3rem 0.65rem !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.85) !important;
  transition: background 0.2s, border-color 0.2s !important;
}
.lang-switcher a:hover {
  background: rgba(255,255,255,0.22) !important;
  border-color: rgba(255,255,255,0.5) !important;
  color: #fff !important;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(30,58,31,0.88) 0%, rgba(42,26,10,0.75) 100%),
    url('https://images.unsplash.com/photo-1574966740793-953eca8f1de5?w=1800&q=80') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(200,150,42,0.12), transparent 70%);
}

.hero-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #E5C15C;
  margin-bottom: 1.25rem;
  position: relative;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  position: relative;
}
.hero-title em {
  color: #E5C15C;
  font-style: italic;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 550px;
  margin: 0 auto 2.5rem;
  position: relative;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 1.5rem 2.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #E5C15C;
  line-height: 1;
}
.stat-l {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}
.stat-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

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

/* ── TICKER ── */
.ticker {
  background: #C8962A;
  overflow: hidden;
  padding: 0.75rem 0;
}
.ticker-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
}
.ticker-track span {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── ABOUT ── */
.about { background: #F7F4EE; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-lead {
  font-size: 1.15rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #2C5F2E;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about-text p { color: #4A4A4A; margin-bottom: 1rem; }
.about-text .btn-text { margin-top: 1.5rem; }

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.pillar {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
.pillar:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }

.pillar-icon {
  width: 44px;
  height: 44px;
  background: rgba(200,150,42,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #C8962A;
  margin-bottom: 0.85rem;
}

.pillar h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1E3A1F;
  margin-bottom: 0.4rem;
}
.pillar p { font-size: 0.85rem; color: #4A4A4A; }

/* ── PRODUCTS ── */
.products { background: #1E3A1F; }
.products .section-label { color: #E5C15C; }
.products .section-title { color: #fff; }
.products .section-sub { color: rgba(255,255,255,0.65); }

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

.product-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 2rem;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: rgba(200,150,42,0.4);
}
.product-card.featured {
  border-color: #C8962A;
  background: rgba(200,150,42,0.08);
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #C8962A;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
}

.product-icon {
  width: 52px;
  height: 52px;
  background: rgba(200,150,42,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #E5C15C;
  margin-bottom: 1.25rem;
}

.product-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.product-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.product-specs {
  list-style: none;
  margin-bottom: 0.5rem;
}
.product-specs li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.35rem;
}
.product-specs li i { color: #C8962A; margin-top: 2px; flex-shrink: 0; }

/* ── SCIENCE ── */
.science { background: #F7F4EE; }

.science-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.nutrition-bars h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2C5F2E;
  margin-bottom: 1.5rem;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.bar-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #1A1A1A;
  width: 150px;
  flex-shrink: 0;
}
.bar-track {
  flex: 1;
  height: 28px;
  background: #E8E4DC;
  border-radius: 4px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #2C5F2E, #C8962A);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 0.6rem;
  transition: width 1.5s cubic-bezier(0.4,0,0.2,1);
  min-width: 60px;
}
.bar-fill span {
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
.bar-fill.animated { width: var(--w); }

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

.benefit-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: transform 0.25s;
}
.benefit-card:hover { transform: translateY(-3px); }

.benefit-card i {
  font-size: 1.3rem;
  color: #C8962A;
  margin-bottom: 0.6rem;
  display: block;
}
.benefit-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1E3A1F;
  margin-bottom: 0.4rem;
}
.benefit-card p {
  font-size: 0.8rem;
  color: #4A4A4A;
  line-height: 1.5;
  margin-bottom: 0.6rem;
}
.ref-link {
  font-size: 0.75rem;
  color: #C8962A;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.ref-link:hover { border-color: #C8962A; }

/* Comparison Table */
.compare-wrap {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
.compare-wrap h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1E3A1F;
  margin-bottom: 1.5rem;
}
.table-scroll { overflow-x: auto; }

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.compare-table th {
  background: #1E3A1F;
  color: #fff;
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}
.compare-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #EEE;
  color: #4A4A4A;
}
.compare-table tr.highlight td {
  background: rgba(200,150,42,0.08);
  color: #1A1A1A;
}
.compare-table tbody tr:hover td { background: #F7F4EE; }

.table-src {
  margin-top: 0.75rem;
  font-size: 0.72rem;
  color: #999;
  font-style: italic;
}

/* ── SUSTAINABILITY ── */
.sustainability { background: #2C5F2E; }
.sustainability .section-label { color: #E5C15C; }
.sustainability .section-title { color: #fff; }
.sustainability p { color: rgba(255,255,255,0.75); }
.sustainability .btn-primary { margin-top: 1.5rem; }

.sustain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.sustain-text p { margin-bottom: 1rem; }

.sustain-list {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.sustain-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}
.sustain-list li i { color: #E5C15C; margin-top: 3px; }

.sustain-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.s-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 1.5rem;
  transition: background 0.25s;
}
.s-card:hover { background: rgba(255,255,255,0.13); }

.s-card i {
  font-size: 1.4rem;
  color: #E5C15C;
  margin-bottom: 0.75rem;
}
.s-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.4rem;
}
.s-card p { font-size: 0.82rem; }

/* ── LABRA ── */
.labra { background: #F7F4EE; }

.timeline {
  position: relative;
  margin: 0 0 4rem;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #C8962A, #2C5F2E);
}

.tl-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}
.tl-item::before {
  content: '';
  position: absolute;
  left: -2.35rem;
  top: 0.25rem;
  width: 12px;
  height: 12px;
  background: #C8962A;
  border-radius: 50%;
  border: 2px solid #F7F4EE;
}

.tl-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #C8962A;
  width: 60px;
  flex-shrink: 0;
  padding-top: 2px;
}

.tl-content h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1E3A1F;
  margin-bottom: 0.35rem;
}
.tl-content p { font-size: 0.88rem; color: #4A4A4A; }

.labra-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.lv-card {
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  text-align: center;
}
.lv-card i {
  font-size: 1.5rem;
  color: #C8962A;
  margin-bottom: 0.75rem;
}
.lv-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1E3A1F;
  margin-bottom: 0.5rem;
}
.lv-card p { font-size: 0.84rem; color: #4A4A4A; }

/* ── WHY B2B ── */
.b2b-why { background: #2A1A0A; }
.b2b-why .section-label { color: #E5C15C; }
.b2b-why .section-title { color: #fff; }

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

.why-item {
  border-top: 2px solid rgba(200,150,42,0.3);
  padding-top: 1.5rem;
  transition: border-color 0.25s;
}
.why-item:hover { border-color: #C8962A; }

.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: rgba(200,150,42,0.25);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.why-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}
.why-item p { font-size: 0.85rem; color: rgba(255,255,255,0.55); }

/* ── CONTACT ── */
.contact { background: #F7F4EE; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info p { color: #4A4A4A; margin-bottom: 2rem; }
.contact-info .section-title { margin-bottom: 1rem; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cd-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.cd-item i {
  width: 36px;
  height: 36px;
  background: rgba(200,150,42,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C8962A;
  flex-shrink: 0;
  font-size: 0.9rem;
}
.cd-item h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2C5F2E;
  margin-bottom: 0.2rem;
}
.cd-item a, .cd-item p {
  font-size: 0.88rem;
  color: #4A4A4A;
  transition: color 0.2s;
  margin: 0;
}
.cd-item a:hover { color: #C8962A; }

/* Form */
.contact-form-wrap {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.contact-form-wrap h3 {
  font-size: 1.4rem;
  color: #1E3A1F;
  margin-bottom: 0.4rem;
}
.form-note {
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2C5F2E;
  margin-bottom: 0.35rem;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #E0DBCD;
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  color: #1A1A1A;
  background: #FAFAF7;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2C5F2E;
  box-shadow: 0 0 0 3px rgba(44,95,46,0.1);
}
.form-group textarea { resize: vertical; }

.form-success,
.form-error {
  text-align: center;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1rem;
}
.form-success {
  background: rgba(44,95,46,0.08);
  color: #2C5F2E;
}
.form-success i { font-size: 2rem; margin-bottom: 0.5rem; }
.form-success h4 { margin-bottom: 0.25rem; }
.form-error {
  background: rgba(200,50,50,0.08);
  color: #c03030;
}

/* ── FOOTER ── */
.footer { background: #1E3A1F; padding: 4rem 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: #C8962A; color: #fff; }

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E5C15C;
  margin-bottom: 1rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col ul li a,
.footer-col ul li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom a:hover { color: #fff; }

/* ── SCROLL REVEAL ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .science-layout { grid-template-columns: 1fr; gap: 3rem; }
  .sustain-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .labra-values { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #1E3A1F; padding: 1.5rem 2rem; gap: 1rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .navbar { background: rgba(30,58,31,0.97); }

  .hero-stats { gap: 1rem; padding: 1.25rem 1.5rem; }
  .stat-div { display: none; }

  .about-pillars { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .sustain-cards { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .labra-values { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }
  .bar-label { width: 110px; font-size: 0.78rem; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas a { width: 100%; text-align: center; justify-content: center; }
  .container { padding: 0 1.25rem; }
}

/* ══════════════════════════════════════
   RESEARCH PAGE STYLES
══════════════════════════════════════ */
.research-hero {
  background: linear-gradient(135deg, #1E3A1F 0%, #2A1A0A 100%);
  padding: 10rem 2rem 5rem;
  text-align: center;
}
.research-hero .hero-tag { color: #E5C15C; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1rem; }
.research-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-bottom: 1rem; }
.research-hero p { color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

.research-filters {
  background: #fff;
  border-bottom: 1px solid #E0DBCD;
  padding: 1rem 0;
  position: sticky;
  top: 70px;
  z-index: 100;
}
.filter-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}
.filter-btn {
  padding: 0.45rem 1.1rem;
  border: 1.5px solid #E0DBCD;
  background: transparent;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #4A4A4A;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}
.filter-btn:hover { border-color: #2C5F2E; color: #2C5F2E; }
.filter-btn.active { background: #2C5F2E; color: #fff; border-color: #2C5F2E; }

.research-main { background: #F7F4EE; }

.research-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.rs-stat {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.rs-stat .rs-n {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #C8962A;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.rs-stat .rs-l { font-size: 0.82rem; color: #4A4A4A; }

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

.study-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
  border-left: 4px solid #2C5F2E;
  display: flex;
  flex-direction: column;
}
.study-card:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(0,0,0,0.1); }
.study-card.category-oil { border-left-color: #C8962A; }
.study-card.category-flour { border-left-color: #6B9E6C; }
.study-card.category-cardiovascular { border-left-color: #e05050; }
.study-card.category-antioxidant { border-left-color: #9B59B6; }
.study-card.category-metabolic { border-left-color: #2980B9; }
.study-card.category-protein { border-left-color: #27AE60; }
.study-card.category-review { border-left-color: #8E7536; }

.study-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.study-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  background: rgba(44,95,46,0.1);
  color: #2C5F2E;
}
.study-tag.oil { background: rgba(200,150,42,0.12); color: #8E6818; }
.study-tag.flour { background: rgba(107,158,108,0.12); color: #3D6B3E; }
.study-tag.cardio { background: rgba(224,80,80,0.1); color: #c03030; }
.study-tag.antioxidant { background: rgba(155,89,182,0.1); color: #7B3F9E; }
.study-tag.metabolic { background: rgba(41,128,185,0.1); color: #1E6090; }
.study-tag.protein { background: rgba(39,174,96,0.1); color: #1B7A42; }
.study-tag.review { background: rgba(142,117,54,0.1); color: #6B5520; }
.study-tag.rct { background: rgba(200,150,42,0.15); color: #8E6818; }

.study-year {
  font-size: 0.72rem;
  color: #999;
  font-weight: 500;
  margin-left: auto;
}

.study-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1E3A1F;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.study-venue {
  font-size: 0.78rem;
  color: #888;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.study-card p {
  font-size: 0.85rem;
  color: #4A4A4A;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.study-finding {
  background: rgba(44,95,46,0.06);
  border-radius: 6px;
  padding: 0.75rem;
  margin-bottom: 1rem;
}
.study-finding strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2C5F2E;
  margin-bottom: 0.3rem;
}
.study-finding p {
  font-size: 0.82rem;
  color: #2A3A2A;
  margin: 0;
}

.study-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #C8962A;
  transition: gap 0.2s;
  margin-top: auto;
}
.study-link:hover { gap: 0.6rem; }

.hidden { display: none !important; }

@media (max-width: 768px) {
  .research-stats { grid-template-columns: repeat(2, 1fr); }
  .studies-grid { grid-template-columns: 1fr; }
  .filter-row { gap: 0.5rem; }
}
