/* ─── TOKENS ──────────────────────────────────────────────────────────── */
:root {
  --green:      #2D6A4F;
  --green-lt:   #52B788;
  --green-pale: #D8F3DC;
  --orange:     #E07A36;
  --teal:       #1B7A78;
  --ink:        #1A1A1A;
  --ink-2:      #3D3D3D;
  --muted:      #6B6B6B;
  --cream:      #FAF8F3;
  --cream-2:    #F2EFE8;
  --white:      #FFFFFF;
  --border:     #E0DBD1;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 2px 16px rgba(0,0,0,.07);
  --shadow-md:  0 6px 32px rgba(0,0,0,.11);
  --container:  1040px;
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Inter', system-ui, sans-serif;
}

/* ─── RESET ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); background: var(--cream); color: var(--ink); line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ─── NAV ─────────────────────────────────────────────────────────────── */
nav { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; height: 85px; display: flex; align-items: center; box-shadow: 0 4px 24px rgba(0,0,0,0.10); }
.nav-inner { max-width: var(--container); margin: 0 auto; padding: 0 28px; width: 100%; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark svg { width: 28px; height: 28px; fill: var(--green); }
.logo-text { font-family: var(--ff-display); font-size: 17px; font-weight: 700; color: var(--green); line-height: 1.15; }
.logo-text span { display: block; font-family: var(--ff-body); font-size: 10px; font-weight: 500; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }
.nav-links { display: flex; gap: 26px; font-size: 16.5px; font-weight: 500; color: var(--ink-2); align-items: center; }
.nav-links a { color: var(--ink-2); transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { background: var(--green); color: #fff; padding: 7px 18px; border-radius: 24px; line-height: 1; display: inline-flex; align-items: center; }

/* ── BURGER BUTTON ── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
}
.burger:hover { background: var(--cream-2); }
.burger span {
  display: block; width: 100%; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  padding: 12px 24px 20px;
  position: sticky;
  top: 85px;
  z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 15px; font-weight: 500; color: var(--ink-2);
  padding: 11px 14px;
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu a:hover { background: var(--cream-2); color: var(--ink); }
.mobile-menu a.active { background: var(--green); color: #fff; font-weight: 600; }

/* ─── HERO ────────────────────────────────────────────────────────────── */
.hero {
  /* Place your hero image in images/lab-tested-safe-eggs-india.jpg */
  background-image:
    linear-gradient(to right, rgba(20,17,10,0.92) 0%, rgba(20,17,10,0.80) 45%, rgba(20,17,10,0.35) 72%, rgba(20,17,10,0.10) 100%),
    url('../images/lab-tested-safe-eggs-india.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #1a1710;
  padding: 96px 24px 100px;
  position: relative; overflow: hidden;
}
/* bottom grass-edge separator */
.hero::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -2px; height: 26px;
  background: #fff;
  clip-path: polygon(0 60%,4% 30%,9% 65%,15% 25%,21% 60%,27% 35%,33% 70%,40% 30%,46% 60%,53% 28%,59% 65%,66% 32%,72% 62%,79% 28%,85% 60%,91% 33%,96% 65%,100% 35%,100% 100%,0 100%);
  z-index: 2;
}
.hero-inner { max-width: var(--container); margin: 0 auto; position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(245,239,226,.1); border: 1px solid rgba(245,239,226,.2);
  color: #F0B97A; font-size: 11px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 50px;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; color: #F5EFE2; line-height: 1.18;
  margin-bottom: 20px; max-width: 680px;
}
.hero h1 em { font-style: normal; color: #F0B97A; }
.hero-sub { font-size: 17px; color: #BDB49E; max-width: 580px; margin-bottom: 36px; line-height: 1.7; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
.btn-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff;
  font-size: 14px; font-weight: 600;
  padding: 12px 24px; border-radius: 50px;
  transition: opacity .2s, transform .15s;
}
.btn-pill:hover { opacity: .9; transform: translateY(-1px); }
.btn-pill.ghost {
  background: transparent; border: 1.5px solid rgba(245,239,226,0.5); color: #F5EFE2;
}
.btn-pill.ghost:hover { background: rgba(245,239,226,0.1); }

/* hero pill badges */
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.h-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(245,239,226,.08); border: 1px solid rgba(245,239,226,.18);
  color: #CFC6B4; font-size: 12px; font-weight: 500;
  padding: 6px 14px; border-radius: 50px;
}

/* ─── SECTION UTILITY ─────────────────────────────────────────────────── */
.section {
  max-width: var(--container); margin: 0 auto;
  padding: 80px 24px;
}
.band {
  background: var(--cream-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 80px 24px;
}
.band.white {
  background: var(--white);
}
.band.green-pale {
  background: #d8f3dc;
}
.container { max-width: var(--container); margin: 0 auto; }
.section-center { text-align: center; }
.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--green); margin-bottom: 10px;
}
.section-title {
  font-family: var(--ff-display); font-size: clamp(1.5rem,3.5vw,2.2rem);
  font-weight: 700; color: var(--ink); line-height: 1.25; margin-bottom: 16px;
}
.section-sub { font-size: 16px; color: var(--muted); max-width: 600px; margin-bottom: 0; }
.body-text { font-size: 15px; color: var(--ink-2); margin-bottom: 16px; line-height: 1.75; }

/* ─── GRID-2 ──────────────────────────────────────────────────────────── */
.grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}

/* ─── STAT STRIP ──────────────────────────────────────────────────────── */
.stat-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; margin-top: 0;
}
.stat-cell {
  background: var(--white); padding: 32px 24px; text-align: center;
}
.stat-num {
  font-family: var(--ff-display); font-size: 2.4rem; font-weight: 800;
  color: var(--green); line-height: 1;
}
.stat-label { font-size: 12px; color: var(--muted); margin-top: 6px; line-height: 1.4; }

/* ─── COMPARISON TABLE ────────────────────────────────────────────────── */
.market-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
}
.market-header { padding: 24px 28px 16px; border-bottom: 1px solid var(--border); }
.market-header h3 { font-family: var(--ff-display); font-size: 1.1rem; font-weight: 700; color: var(--ink); }
.market-header p { font-size: 12px; color: var(--muted); margin-top: 4px; }
.market-row { display: grid; grid-template-columns: 2fr 1.2fr 1.2fr; }
.mc {
  padding: 12px 16px; font-size: 13px; color: var(--ink-2);
  border-bottom: 1px solid var(--border); border-right: 1px solid var(--border);
}
.mc:last-child { border-right: none; }
.mc.head { background: #F7F5F0; font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.mc.ffg { color: var(--green); font-weight: 600; }
.mc.bad { color: #C0392B; }
.mc.warn { color: #E07A36; }

/* ─── TESTING PANEL CARDS ─────────────────────────────────────────────── */
.cards-6 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: var(--container); margin: 0 auto;
}
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  box-shadow: var(--shadow); position: relative;
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--green-pale); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.card h3 { font-family: var(--ff-display); font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.card p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.card-tag {
  display: inline-block; margin-top: 16px;
  background: var(--green-pale); color: var(--green);
  font-size: 10px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 50px;
}

/* ─── REPORTS TABLE ───────────────────────────────────────────────────── */
.reports-wrap {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
}
.reports-table-header {
  background: var(--green); padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.reports-table-header h3 { font-family: var(--ff-display); font-size: 1.15rem; font-weight: 700; color: #fff; }
.reports-table-header p { font-size: 13px; color: rgba(255,255,255,.75); margin-top: 4px; }
.reports-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  color: #fff; font-size: 11px; font-weight: 600; padding: 5px 12px; border-radius: 50px;
  white-space: nowrap;
}
table.report-tbl { width: 100%; border-collapse: collapse; }
table.report-tbl thead th {
  text-align: left; font-size: 11px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--muted);
  padding: 14px 20px; background: #F7F5F0; border-bottom: 1px solid var(--border);
}
table.report-tbl tbody tr { border-bottom: 1px solid var(--border); transition: background .15s; }
table.report-tbl tbody tr:last-child { border-bottom: none; }
table.report-tbl tbody tr:hover { background: var(--cream); }
table.report-tbl td { padding: 14px 20px; font-size: 14px; color: var(--ink-2); vertical-align: middle; }
table.report-tbl td:first-child { font-weight: 600; color: var(--ink); }
.report-type-badge {
  display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: .05em;
  text-transform: uppercase; padding: 2px 8px; border-radius: 50px;
}
.rtype-ab  { background: #E8F5E9; color: #2D6A4F; }
.rtype-bio { background: #E3F2FD; color: #1565C0; }
.rtype-nit { background: #FFF3E0; color: #BF360C; }
.rtype-nut { background: #F3E5F5; color: #6A1B9A; }
.btn-view {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-pale); color: var(--green);
  font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: 50px;
  transition: background .2s;
}
.btn-view:hover { background: #B7E4C7; }

/* reports two-column layout */
.reports-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: start;
}

/* report details side */
.report-details { display: flex; flex-direction: column; gap: 28px; padding-top: 8px; }
.rd { display: flex; gap: 16px; align-items: flex-start; }
.rd-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: 10px;
  background: var(--green-pale); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
/* Square icon */
.rd-sq-icon {
  width: 36px; height: 36px; min-width: 36px;
  border-radius: 8px;
  background: var(--green-pale);
  border: 1.5px solid #B7E4C7;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex; align-items: center; justify-content: center;
}
.rd h3 { font-family: var(--ff-display); font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.rd p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ─── LABS GRID ───────────────────────────────────────────────────────── */
.labs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: var(--container); margin: 0 auto;
}
.lab-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  box-shadow: var(--shadow);
}
.lab-top { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.lab-icon {
  width: 48px; height: 48px; min-width: 48px; border-radius: 12px;
  background: var(--green-pale); color: var(--green);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.lab-name { font-family: var(--ff-display); font-size: 1.05rem; font-weight: 700; color: var(--ink); }
.lab-url { font-size: 12px; color: var(--muted); margin-top: 2px; }
.lab-desc { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.lab-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.lab-tag {
  font-size: 11px; font-weight: 600; color: var(--teal);
  background: #E6F4F3; padding: 3px 10px; border-radius: 50px;
}
.nabl-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green); color: #fff;
  font-size: 11px; font-weight: 600;
  padding: 6px 14px; border-radius: 50px;
}

/* ─── FARM PRACTICES ──────────────────────────────────────────────────── */
.practice-list { display: flex; flex-direction: column; gap: 22px; }
.practice { display: flex; gap: 14px; align-items: flex-start; }
.p-dot {
  width: 10px; height: 10px; min-width: 10px; border-radius: 50%;
  background: var(--green-lt); margin-top: 6px;
}
.practice h3 { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.practice p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* cadence box */
.cadence {
  background: var(--ink); border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.cadence-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--green-lt);
  margin-bottom: 24px;
}
.cad-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.07);
}
.cad-row:last-child { border-bottom: none; }
.cad-what { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.8); font-size: 14px; }
.cad-what i { color: var(--green-lt); }
.cad-freq {
  font-size: 12px; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; color: var(--green-lt);
  background: rgba(82,183,136,.15); padding: 4px 12px; border-radius: 50px;
}
.tech-note {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(82,183,136,.1); border: 1px solid rgba(82,183,136,.2);
  border-radius: 10px; padding: 16px; margin-top: 24px;
}
.tech-note i { color: var(--green-lt); font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.tech-note p { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.6; }
.tech-note strong { color: rgba(255,255,255,.9); }

/* ─── CERTIFICATIONS ──────────────────────────────────────────────────── */
.certs-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  max-width: var(--container); margin: 0 auto;
}
.cert-card {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  box-shadow: var(--shadow);
}
.cert-card-icon { font-size: 2rem; line-height: 1; }
.cert-card h3 { font-family: var(--ff-display); font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.cert-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.cert-card a { color: var(--green); text-decoration: underline; }

/* ─── INTERNAL BAR ────────────────────────────────────────────────────── */
.internal-bar { background: var(--green-pale); border-top: 1px solid #B7E4C7; border-bottom: 1px solid #B7E4C7; padding: 14px 24px; }
.internal-inner { max-width: var(--container); margin: 0 auto; display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.internal-label { font-size: 12px; font-weight: 600; color: var(--green); text-transform: uppercase; letter-spacing: .06em; }
.int-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--green);
  background: var(--white); border: 1px solid #B7E4C7;
  padding: 6px 14px; border-radius: 50px;
  transition: background .15s;
}
.int-link:hover { background: #D8F3DC; }

/* ─── FAQ ─────────────────────────────────────────────────────────────── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: var(--container); margin: 0 auto; }
.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow);
}
.faq-item h3 { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 10px; line-height: 1.4; }
.faq-item h3 i { color: var(--green); font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.faq-item p { font-size: 13px; color: var(--muted); line-height: 1.65; }
.faq-item a { color: var(--green); text-decoration: underline; }

/* ─── CTA BAND ────────────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, #1a3c2e 0%, #2D6A4F 100%);
  text-align: center; padding: 80px 24px;
}
.cta-band h2 { font-family: var(--ff-display); font-size: clamp(1.6rem,3.5vw,2.4rem); font-weight: 800; color: #fff; margin-bottom: 16px; }
.cta-band p { font-size: 16px; color: rgba(255,255,255,.75); max-width: 540px; margin: 0 auto 36px; line-height: 1.7; }
.cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

/* ─── FOOTER ──────────────────────────────────────────────────────────── */
footer { background: #111; color: #ccc; padding: 60px 24px 32px; }
.footer-inner { max-width: var(--container); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { font-family: var(--ff-display); font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.footer-desc { font-size: 13px; color: #888; line-height: 1.7; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.footer-links li + li { margin-top: 8px; }
.footer-links a { font-size: 13px; color: #888; transition: color .2s; }
.footer-links a:hover { color: var(--green-lt); }
.footer-contact { font-size: 13px; color: #888; line-height: 1.8; }
.footer-bottom {
  border-top: 1px solid #222; padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: #555; }
.f-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.f-badge {
  font-size: 10px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--green-lt); border: 1px solid #2D6A4F; padding: 4px 10px; border-radius: 50px;
}

/* ─── WA FLOAT ────────────────────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,.5); }

/* ─── RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .burger { display: flex; }
}
@media (max-width: 900px) {
  .grid-2, .certs-2, .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .cards-6, .labs-grid { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .reports-layout { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .cards-6, .labs-grid, .certs-2 { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .hero { padding: 48px 20px 56px; }
  .section, .band { padding: 56px 20px; }
  .footer-top { grid-template-columns: 1fr; }
  .market-row { grid-template-columns: 1.5fr 1fr 1fr; }
}
