/* ══════════════════════════════════════════════════════
   Krushikalp Agri Tech LLP — Shared Stylesheet
   Palette matched to the official logo (green / gold / earth)
   ══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green-dark:  #116530;
  --green:       #2e8b40;
  --green-mid:   #3a9a4d;
  --green-light: #4caf50;
  --green-pale:  #eaf5ec;
  --gold:        #f47c00;
  --gold-dark:   #d96a00;
  --gold-pale:   #fdeede;
  --earth:       #a85d1a;
  --cream:       #f7faf4;
  --white:       #ffffff;
  --text:        #1c2a1e;
  --text-soft:   #4a5e4b;
  --border:      #dcecdd;
  --shadow:      0 4px 24px rgba(31,107,47,.10);
  --shadow-lg:   0 16px 48px rgba(31,107,47,.16);
  --radius:      14px;
  --radius-sm:   9px;
  --transition:  .3s cubic-bezier(.4,0,.2,1);
}
html { scroll-behavior: smooth; background: var(--cream); }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: transparent;
  line-height: 1.65;
  overflow-x: hidden;
}
/* site-wide plant emoji texture on light backgrounds (grayscale, subtle) */
body::before {
  content: ''; position: fixed; inset: 0; z-index: -1;
  opacity: .1; filter: grayscale(1); pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Ctext x='30' y='55' font-size='34'%3E%F0%9F%8C%BE%3C/text%3E%3Ctext x='130' y='105' font-size='34'%3E%F0%9F%8C%B1%3C/text%3E%3Ctext x='60' y='165' font-size='34'%3E%F0%9F%8C%BF%3C/text%3E%3C/svg%3E");
  background-size: 200px 200px;
}
/* let the texture show through sections that were solid white/cream */
.section[style*="--white"] { background: transparent !important; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Utility ─────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 84px 0; }
.section-sm { padding: 56px 0; }
.center     { text-align: center; }
.tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 15px; border-radius: 99px; margin-bottom: 14px;
}
.tag.gold { background: var(--gold-pale); color: var(--gold-dark); }
.section-title {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 800; color: var(--green-dark);
  line-height: 1.2; margin-bottom: 16px;
}
.section-sub { font-size: 1.05rem; color: var(--text-soft); max-width: 620px; }
.center .section-sub { margin-left: auto; margin-right: auto; }

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 99px;
  font-size: .95rem; font-weight: 600;
  cursor: pointer; border: none; transition: var(--transition);
  white-space: nowrap; font-family: inherit;
}
.btn-primary { background: var(--green-dark); color: #fff; box-shadow: 0 6px 20px rgba(17,101,48,.30); }
.btn-primary:hover { background: #0d5327; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(17,101,48,.4); }
.btn-gold { background: var(--gold); color: #fff; box-shadow: 0 4px 18px rgba(232,154,28,.32); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-outline:hover { background: var(--green-pale); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--green-dark); box-shadow: 0 4px 18px rgba(0,0,0,.14); }
.btn-white:hover { background: var(--green-pale); transform: translateY(-2px); }

/* ── Navbar (floating white card) ────────── */
#navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 999;
  padding: 16px 0; background: transparent; transition: var(--transition);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px; padding: 0 16px 0 18px;
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(31,107,47,.10);
  transition: var(--transition);
}
#navbar.scrolled { padding: 8px 0; }
#navbar.scrolled .nav-inner { box-shadow: 0 8px 30px rgba(31,107,47,.18); }
.nav-logo { display: flex; align-items: center; gap: 11px; }
.nav-logo img { width: 46px; height: 46px; object-fit: contain; }
.nav-logo .logo-text strong { display: block; font-size: 1.05rem; font-weight: 800; color: var(--green-dark); line-height: 1.15; }
.nav-logo .logo-text span { font-size: .68rem; color: var(--gold-dark); font-weight: 600; letter-spacing: .05em; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  padding: 9px 17px; border-radius: 10px;
  font-size: .92rem; font-weight: 500; color: var(--text-soft);
  transition: var(--transition); position: relative;
}
.nav-links a:hover { color: var(--green); }
.nav-links a.active { color: var(--green); font-weight: 700; }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: 2px; left: 17px; right: 17px;
  height: 2px; background: var(--green); border-radius: 2px;
}
.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: 8px; }
.nav-phone {
  background: #fff; border: 1.6px solid #d7ebd9; color: var(--green-dark);
  font-weight: 700; padding: 9px 18px 9px 10px; gap: 9px;
}
.nav-phone:hover { border-color: var(--green-light); transform: translateY(-2px); }
.nav-phone .ico {
  width: 26px; height: 26px; border-radius: 50%; background: var(--green-pale);
  color: var(--green); display: inline-flex; align-items: center; justify-content: center; font-size: .85rem;
}
.nav-cta { padding: 12px 22px; }
.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: var(--green-dark); border-radius: 2px; transition: var(--transition); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(31,107,47,.98);
  flex-direction: column; align-items: center; justify-content: center; gap: 26px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #fff; font-size: 1.3rem; font-weight: 700; transition: var(--transition); }
.mobile-menu a:hover { color: var(--gold); }
.mobile-close { position: absolute; top: 22px; right: 22px; background: rgba(255,255,255,.15); border: none; color: #fff; width: 42px; height: 42px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; }

/* ── Page hero (inner pages, light theme) ── */
.page-hero {
  padding: 140px 0 64px;
  background: linear-gradient(168deg, #f4f9f0 0%, #e9f3e3 60%, #dcecd3 100%);
  color: var(--green-dark); text-align: center; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; width: 420px; height: 420px;
  background: rgba(46,139,64,.07); border-radius: 50%;
  top: -160px; right: -120px;
}
.page-hero::before {
  content: ''; position: absolute; width: 260px; height: 260px;
  background: rgba(232,154,28,.06); border-radius: 50%;
  bottom: -140px; left: -80px;
}
.page-hero .tag { background: rgba(46,139,64,.10); border: 1px solid rgba(46,139,64,.18); color: var(--green-dark); position: relative; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; margin-bottom: 12px; position: relative; color: var(--green-dark); }
.page-hero p { color: var(--text-soft); max-width: 560px; margin: 0 auto; position: relative; }
.breadcrumb { margin-top: 18px; font-size: .85rem; color: var(--text-soft); position: relative; }
.breadcrumb a { color: var(--green); font-weight: 600; }
.breadcrumb a:hover { color: var(--gold-dark); }

/* ── Footer ──────────────────────────────── */
footer { background: #0f2914; color: rgba(255,255,255,.62); padding: 56px 0 0; font-size: .9rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; }
.footer-col h4 { color: #fff; font-size: .95rem; font-weight: 700; margin-bottom: 16px; }
.footer-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.footer-brand img { width: 48px; height: 48px; border-radius: 50%; background: #fff; object-fit: contain; object-position: center; display: block; padding: 2px; box-sizing: border-box; }
.footer-brand strong { color: #fff; font-size: 1.05rem; display: block; }
.footer-brand span { font-size: .72rem; color: var(--gold); }
.footer-col p { line-height: 1.7; margin-bottom: 8px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 10px; margin-top: 6px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--green); transform: translateY(-2px); }
.footer-social svg { width: 17px; height: 17px; fill: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; text-align: center; font-size: .82rem; }
.footer-bottom strong { color: rgba(255,255,255,.85); }

/* ── Floating WhatsApp ───────────────────── */
.wa-widget { position: fixed; bottom: 26px; right: 26px; z-index: 998; }
#whatsapp-fab {
  width: 58px; height: 58px; background: #25d366; border: none; cursor: pointer;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45); transition: var(--transition); padding: 0;
}
#whatsapp-fab:hover { transform: scale(1.12); }
#whatsapp-fab svg { width: 30px; height: 30px; fill: #fff; }
.wa-widget.open #whatsapp-fab { transform: rotate(90deg); }
/* Pop-up option menu */
.wa-menu {
  position: absolute; bottom: 70px; right: 0; display: flex; flex-direction: column;
  gap: 10px; width: 232px; opacity: 0; transform: translateY(12px) scale(.96);
  transform-origin: bottom right; pointer-events: none; transition: var(--transition);
}
.wa-widget.open .wa-menu { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.wa-option {
  display: flex; align-items: center; gap: 12px; background: #fff; padding: 11px 14px;
  border-radius: 14px; box-shadow: 0 8px 26px rgba(0,0,0,.16); text-decoration: none;
  transition: var(--transition);
}
.wa-option:hover { transform: translateX(-4px); box-shadow: 0 10px 30px rgba(0,0,0,.22); }
.wa-option-ic {
  width: 40px; height: 40px; flex: none; border-radius: 50%; background: #25d366;
  display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
}
.wa-option-txt strong { display: block; font-size: .9rem; font-weight: 700; color: var(--green-dark); }
.wa-option-txt small { display: block; font-size: .74rem; color: var(--text-soft); }

/* ── Scroll fade-in ──────────────────────── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   Home hero — NEW immersive full-bleed look
   ══════════════════════════════════════════ */
.home-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 150px 0 120px; overflow: hidden;
  background: #0c2413;
}
.home-hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: url("images/hero-farm.jpg?v=8") center/cover no-repeat;
  transform: scale(1.06); animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1.14); } }
.home-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(100deg, rgba(9,32,17,.86) 0%, rgba(12,45,23,.55) 45%, rgba(12,45,23,.12) 100%),
    linear-gradient(0deg, rgba(9,32,17,.55), transparent 45%);
}
/* plant emoji pattern over the image (grayscale) */
.home-hero__overlay::after {
  content: ''; position: absolute; inset: 0; opacity: .1;
  filter: grayscale(1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Ctext x='30' y='55' font-size='34'%3E%F0%9F%8C%BE%3C/text%3E%3Ctext x='130' y='105' font-size='34'%3E%F0%9F%8C%B1%3C/text%3E%3Ctext x='60' y='165' font-size='34'%3E%F0%9F%8C%BF%3C/text%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.home-hero .container { position: relative; z-index: 2; width: 100%; }
.home-hero__inner { max-width: 680px; color: #fff; }
.home-hero__tag {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(6px);
  color: #fff; font-size: .74rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 8px 17px; border-radius: 99px; margin-bottom: 24px;
}
.home-hero__tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(244,124,0,.25); }
.home-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.3rem); font-weight: 800;
  line-height: 1.04; letter-spacing: -.02em; margin-bottom: 18px;
  text-shadow: 0 4px 30px rgba(0,0,0,.35);
}
.home-hero h1 .accent { color: var(--gold); }
.home-hero__desc { font-size: 1.12rem; color: rgba(255,255,255,.86); max-width: 540px; margin-bottom: 34px; line-height: 1.7; }
.home-hero__desc b { color: #fff; }
.home-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.home-hero .btn-arrow { padding-right: 8px; }
.home-hero .btn-arrow .arw {
  width: 27px; height: 27px; border-radius: 50%; margin-left: 4px;
  display: inline-flex; align-items: center; justify-content: center; font-size: .9rem;
  background: rgba(255,255,255,.22);
}
.btn-glass {
  background: rgba(255,255,255,.14); color: #fff;
  border: 1.5px solid rgba(255,255,255,.35); backdrop-filter: blur(6px);
}
.btn-glass:hover { background: rgba(255,255,255,.24); transform: translateY(-2px); }
/* glass stats bar pinned into the hero */
.home-hero__stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 4px; max-width: 620px;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.20);
  backdrop-filter: blur(10px); border-radius: 18px; padding: 22px 8px;
}
.home-hero__stat { text-align: center; padding: 4px 10px; position: relative; }
.home-hero__stat + .home-hero__stat::before {
  content: ''; position: absolute; left: 0; top: 20%; bottom: 20%; width: 1px;
  background: rgba(255,255,255,.18);
}
.home-hero__stat .num { display: block; font-size: 1.9rem; font-weight: 800; color: #fff; line-height: 1; }
.home-hero__stat .lbl { font-size: .72rem; color: rgba(255,255,255,.72); font-weight: 500; margin-top: 6px; display: block; }
.home-hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,.6); font-size: .72rem; letter-spacing: .18em;
  text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.home-hero__scroll .mouse { width: 22px; height: 34px; border: 2px solid rgba(255,255,255,.5); border-radius: 12px; position: relative; }
.home-hero__scroll .mouse::after { content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 3px; height: 6px; background: #fff; border-radius: 2px; animation: scrollDot 1.6s ease-in-out infinite; }
@keyframes scrollDot { 0% { opacity: 0; top: 6px; } 40% { opacity: 1; } 100% { opacity: 0; top: 16px; } }
@media (max-width: 768px) {
  .home-hero { min-height: auto; padding: 128px 0 72px; }
  .home-hero__stats { grid-template-columns: 1fr 1fr; gap: 10px 4px; }
  .home-hero__scroll { display: none; }
}
@media (max-width: 420px) {
  .home-hero__actions { flex-direction: column; }
  .home-hero__actions .btn { justify-content: center; }
}

/* section intro (centered heading block, reused on home) */
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }

/* ══ Home hero (light theme — legacy) ══ */
#hero {
  padding: 138px 0 0;
  background: linear-gradient(168deg, #f4f9f0 0%, #eef6ea 55%, #e6f1e0 100%);
  position: relative; overflow: hidden;
}
/* subtle leaf watermark pattern */
#hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0; opacity: .5; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%232e8b40' stroke-width='1.1' opacity='0.10'%3E%3Cpath d='M30 20c-14 4-22 18-20 34 16 2 30-8 32-24 0-4-4-11-12-10z'/%3E%3Cpath d='M30 20c-2 14 4 28 12 34'/%3E%3Cpath d='M86 66c-14 4-22 18-20 34 16 2 30-8 32-24 0-4-4-11-12-10z'/%3E%3Cpath d='M86 66c-2 14 4 28 12 34'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 260px 260px;
}
/* soft decorative blobs on the light background */
.hero-circles span { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-circles span:nth-child(1) { width: 360px; height: 360px; top: -120px; left: -140px; background: rgba(46,139,64,.06); }
.hero-circles span:nth-child(2) { width: 220px; height: 220px; bottom: 12%; left: 6%; background: rgba(232,154,28,.06); }
.hero-circles span:nth-child(3) { display: none; }
.hero-text { position: relative; z-index: 3; max-width: 560px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(46,139,64,.10); border: 1px solid rgba(46,139,64,.18);
  color: var(--green-dark);
  font-size: .74rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 99px; margin-bottom: 22px;
}
.hero-tag span { display: none; }
.hero-h1 { font-size: clamp(2.3rem, 5.2vw, 3.7rem); font-weight: 800; line-height: 1.06; margin-bottom: 14px; color: var(--green-dark); letter-spacing: -.01em; }
.hero-h1 .accent { color: var(--gold); }
.hero-desc { font-size: 1.06rem; color: var(--text-soft); margin-bottom: 32px; max-width: 470px; }
.hero-desc b { color: var(--green); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
/* button with arrow-circle, matching mockup */
.btn-arrow { padding-right: 8px; }
.btn-arrow .arw {
  width: 26px; height: 26px; border-radius: 50%; margin-left: 4px;
  display: inline-flex; align-items: center; justify-content: center; font-size: .85rem;
  background: rgba(255,255,255,.25);
}
.btn-outline.btn-arrow .arw { background: var(--green-pale); }
/* stats card */
.hero-stats {
  display: flex; align-items: stretch; margin-top: 40px;
  background: #fff; border-radius: 18px; padding: 20px 8px;
  box-shadow: 0 12px 40px rgba(31,107,47,.10); width: fit-content; max-width: 100%;
}
.hero-stat { display: flex; align-items: center; gap: 12px; padding: 4px 22px; }
.hero-stat + .hero-stat { border-left: 1px solid var(--border); }
.hero-stat .st-ico { width: 44px; height: 44px; border-radius: 50%; background: var(--green-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-stat .st-ico svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 1.7; }
.hero-stat .num { font-size: 1.55rem; font-weight: 800; color: var(--green-dark); display: block; line-height: 1; }
.hero-stat .lbl { font-size: .74rem; color: var(--text-soft); font-weight: 500; }

/* Hero visual: circular photo + squircle logo card w/ dashed orbit rings, on layered green shapes */
.hero-bleed { position: absolute; top: 0; right: 0; bottom: 0; width: 56%; z-index: 1; pointer-events: none; }
/* dark-green shape, top-right corner */
.hero-blob {
  position: absolute; width: 470px; height: 520px;
  top: -50px; right: -70px;
  background: var(--green-dark);
  border-radius: 44% 56% 52% 48% / 40% 46% 54% 60%;
  z-index: 0;
}
/* medium-green sweep, bottom */
.hero-blob2 {
  position: absolute; width: 560px; height: 470px;
  bottom: -90px; right: 30px;
  background: linear-gradient(150deg, var(--green), var(--green-light));
  border-radius: 50% 50% 44% 56% / 60% 58% 42% 40%;
  z-index: 0;
}
/* circular photo, bleeding slightly off the right edge */
.hero-photo {
  position: absolute; top: 50%; right: 10px; transform: translateY(-50%);
  width: 470px; height: 470px; border-radius: 50%;
  overflow: hidden; border: 11px solid #fff;
  box-shadow: 0 26px 60px rgba(17,101,48,.30); z-index: 1;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
/* logo in a rounded-square white card overlapping the photo's left edge */
.hero-logo-float {
  position: absolute; z-index: 3; top: 50%; right: 358px; transform: translateY(-50%);
  width: 208px; height: 208px; border-radius: 40px;
  background: #fff; padding: 16px;
  box-shadow: 0 22px 50px rgba(17,101,48,.26);
  display: flex; align-items: center; justify-content: center;
}
.hero-logo-float img { width: 100%; height: 100%; border-radius: 50%; }
.hero-logo-float::after {
  content: ''; position: absolute; inset: -34px; border-radius: 50%;
  border: 1.5px dashed rgba(17,101,48,.30); animation: spin 36s linear infinite;
}
.hero-logo-float::before {
  content: ''; position: absolute; inset: -78px; border-radius: 50%;
  border: 1.5px dashed rgba(17,101,48,.15); animation: spin 54s linear infinite reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }
/* floating icon chips */
.hero-chip {
  position: absolute; z-index: 4; width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
  box-shadow: 0 10px 26px rgba(17,101,48,.22); animation: floaty 5s ease-in-out infinite;
}
.hero-chip.chip-leaf { background: var(--green); color: #fff; top: 16%; right: 388px; }
.hero-chip.chip-seed { background: #fff; bottom: 20%; right: 336px; animation-delay: 1.6s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero-dots {
  position: absolute; top: 40px; right: 22px; z-index: 4;
  display: grid; grid-template-columns: repeat(4, 8px); gap: 10px;
}
.hero-dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); opacity: .45; }
.hero-leaf { display: none; }

/* Hero feature bar — full-bleed green band at the bottom */
.hero-featbar {
  margin-top: 30px; position: relative; z-index: 2;
  background: linear-gradient(120deg, var(--green-dark), var(--green));
  padding: 20px 0; display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; max-width: 1160px; margin-left: auto; margin-right: auto;
  border-radius: 20px 20px 0 0;
}
.hfeat { display: flex; align-items: center; gap: 12px; padding: 4px 26px; color: #fff; }
.hfeat + .hfeat { border-left: 1px solid rgba(255,255,255,.18); }
.hfeat .hf-ico { color: var(--gold); flex-shrink: 0; display: flex; }
.hfeat .hf-ico svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.6; }
.hfeat .hf-txt strong { display: block; font-size: .84rem; font-weight: 700; line-height: 1.25; }
.hfeat .hf-txt span { font-size: .75rem; color: rgba(255,255,255,.8); }
@media (max-width: 900px) {
  .hero-featbar { grid-template-columns: repeat(2, 1fr); gap: 8px 0; }
  .hfeat:nth-child(odd) { border-left: none; }
}
@media (max-width: 992px) {
  .hero-bleed { display: none; }
  .hero-text { max-width: none; }
}
@media (max-width: 768px) {
  #hero { padding-top: 112px; }
  .hero-stats { width: 100%; overflow-x: auto; }
}
@media (max-width: 560px) {
  .hero-featbar { grid-template-columns: 1fr; border-radius: 0; }
  .hfeat + .hfeat { border-left: none; border-top: 1px solid rgba(255,255,255,.16); }
  .hero-stats { flex-direction: column; }
  .hero-stat + .hero-stat { border-left: none; border-top: 1px solid var(--border); }
}

/* ── Trust strip ─────────────────────────── */
#trust-strip { background: var(--green-dark); padding: 18px 0; overflow: hidden; }
.trust-scroll { display: flex; gap: 46px; align-items: center; animation: scroll-trust 30s linear infinite; width: max-content; }
.trust-scroll:hover { animation-play-state: paused; }
.trust-item { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.82); font-size: .85rem; font-weight: 500; white-space: nowrap; }
.trust-item .ti-icon { font-size: 1.15rem; }
@keyframes scroll-trust { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Category cards (home) ───────────────── */
.cat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; }
.cat-card {
  border-radius: var(--radius); overflow: hidden; position: relative;
  min-height: 260px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px; color: #fff; transition: var(--transition);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-card.bio  { background: linear-gradient(150deg, #14532a, #2e8b40); }
.cat-card.seed { background: linear-gradient(150deg, #7a4d12, var(--gold)); }
/* subtle radial sheen */
.cat-card::after {
  content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.12), transparent 70%);
  top: -120px; right: -80px; pointer-events: none;
}
.cat-card > * { position: relative; z-index: 1; }
.cat-card .cat-count { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .85; margin-bottom: 8px; }
.cat-card h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 8px; }
.cat-card p { font-size: .92rem; color: rgba(255,255,255,.85); margin-bottom: 18px; }
.cat-card .cat-link { font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; transition: gap .3s ease; }
.cat-card:hover .cat-link { gap: 12px; }
.cat-card .cat-icon { position: absolute; top: 26px; right: 30px; font-size: 3rem; opacity: .35; z-index: 1; }

/* ── Feature (why us) ────────────────────── */
.feat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 48px; }
.feat-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 28px 22px; transition: var(--transition); }
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--green-light); }
.feat-icon { width: 54px; height: 54px; border-radius: 13px; background: var(--green-pale); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 16px; }
.feat-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.feat-card p { font-size: .86rem; color: var(--text-soft); line-height: 1.6; }

/* ── Product cards ───────────────────────── */
.prod-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.prod-card {
  background: var(--white); border: 1.5px solid var(--border); border-radius: 18px;
  overflow: hidden; display: flex; flex-direction: column; transition: var(--transition);
  position: relative;
}
/* top accent line that reveals on hover */
.prod-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  transform: scaleX(0); transform-origin: left; transition: transform .35s ease; z-index: 4;
}
.prod-card:hover::before { transform: scaleX(1); }
.prod-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--green-light); }
.prod-img {
  height: 246px; display: flex; align-items: center; justify-content: center;
  padding: 22px; position: relative; overflow: hidden;
  background: radial-gradient(circle at 50% 35%, #ffffff 0%, #eef7ec 100%);
}
.prod-img.seedbg { background: radial-gradient(circle at 50% 35%, #ffffff 0%, #fdf4e2 100%); }
/* soft glow disc behind product */
.prod-img::after {
  content: ''; position: absolute; width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(46,139,64,.10), transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 0;
}
.prod-img.seedbg::after { background: radial-gradient(circle, rgba(232,154,28,.12), transparent 70%); }
.prod-img img { max-height: 100%; width: auto; position: relative; z-index: 1; filter: drop-shadow(0 12px 22px rgba(0,0,0,.18)); transition: var(--transition); }
.prod-card:hover .prod-img img { transform: scale(1.05); }
.prod-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--green); color: #fff; font-size: .68rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; padding: 4px 11px; border-radius: 99px;
}
.prod-badge.gold { background: var(--gold); }
.prod-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.prod-type { font-size: .72rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 6px; }
.prod-type.gold { color: var(--gold-dark); }
.prod-name { font-size: 1.3rem; font-weight: 800; color: var(--green-dark); margin-bottom: 4px; }
.prod-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: auto; }
.prod-features li { display: flex; align-items: flex-start; gap: 9px; font-size: .84rem; color: var(--text-soft); line-height: 1.45; }
.prod-features li::before {
  content: '✓'; width: 18px; height: 18px; margin-top: 1px;
  background: var(--green-pale); color: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: .68rem; font-weight: 700; flex-shrink: 0;
}
.prod-features.gold li::before { background: var(--gold-pale); color: var(--gold-dark); }
.prod-meta { margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--border); font-size: .8rem; color: var(--text-soft); display: flex; flex-wrap: wrap; gap: 6px 16px; }
.prod-meta b { color: var(--green-dark); }

/* Category section heading within products page */
.cat-heading { display: flex; align-items: center; gap: 14px; margin: 0 0 34px; }
.cat-heading .ch-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.cat-heading.bio .ch-icon  { background: var(--green-pale); }
.cat-heading.seed .ch-icon { background: var(--gold-pale); }
.cat-heading h2 { font-size: 1.5rem; font-weight: 800; color: var(--green-dark); }
.cat-heading p  { font-size: .88rem; color: var(--text-soft); }

/* ── About ───────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
/* About product showcase (replaces static image) */
.about-showcase {
  background: linear-gradient(160deg, var(--green-dark), var(--green));
  border-radius: 20px; padding: 30px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-showcase::before { content: ''; position: absolute; width: 240px; height: 240px; background: rgba(255,255,255,.06); border-radius: 50%; top: -80px; right: -70px; }
.about-showcase-head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; position: relative; z-index: 1; }
.about-showcase-head img { width: 54px; height: 54px; object-fit: contain; }
.about-showcase-head strong { color: #fff; font-size: 1.05rem; display: block; line-height: 1.2; }
.about-showcase-head span { color: var(--gold); font-size: .74rem; font-weight: 600; }
.showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; position: relative; z-index: 1; }
.showcase-item { background: #fff; border-radius: 12px; padding: 14px; display: flex; flex-direction: column; align-items: center; gap: 8px; transition: var(--transition); }
.showcase-item:hover { transform: translateY(-4px); }
.showcase-item img { height: 90px; width: auto; filter: drop-shadow(0 6px 12px rgba(0,0,0,.15)); }
.showcase-item span { font-size: .74rem; font-weight: 700; color: var(--green-dark); }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.about-val { background: var(--green-pale); border-radius: var(--radius-sm); padding: 15px 16px; display: flex; align-items: center; gap: 11px; }
.about-val .av-icon { font-size: 1.4rem; }
.about-val .av-text { font-size: .84rem; font-weight: 600; color: var(--green-dark); }
.stat-band { background: var(--green-dark); }
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat-grid .num { font-size: 2.4rem; font-weight: 800; color: var(--gold); }
.stat-grid .lbl { font-size: .82rem; color: rgba(255,255,255,.75); margin-top: 4px; }

/* ── Contact ─────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 52px; align-items: start; }
.contact-items { display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; align-items: flex-start; gap: 15px; }
.contact-item-icon { width: 48px; height: 48px; background: var(--green-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.contact-item-text strong { display: block; font-size: .85rem; font-weight: 700; color: var(--green-dark); margin-bottom: 2px; }
.contact-item-text a, .contact-item-text span { color: var(--text-soft); font-size: .9rem; }
.contact-item-text a:hover { color: var(--green); }
.contact-social { display: flex; gap: 11px; margin-top: 26px; flex-wrap: wrap; }
.contact-social a { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; transition: var(--transition); }
.contact-social a:hover { transform: translateY(-3px); }
.cs-yt { background: #ff0000; } .cs-fb { background: #1877f2; } .cs-ig { background: #e1306c; } .cs-wa { background: #25d366; }
.contact-social svg { width: 19px; height: 19px; fill: #fff; }
.contact-form-wrap { background: var(--white); border: 1.5px solid var(--border); border-radius: 18px; padding: 34px 32px; box-shadow: var(--shadow); }
.contact-form-wrap h3 { font-size: 1.25rem; font-weight: 800; color: var(--green-dark); margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--text-soft); }
.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 12px 14px;
  font-size: .9rem; font-family: inherit; color: var(--text); background: var(--cream);
  transition: var(--transition); outline: none; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); background: var(--green-pale); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-success { display: none; background: var(--green-pale); border: 1.5px solid var(--green-light); border-radius: var(--radius-sm); padding: 14px; font-size: .88rem; color: var(--green); font-weight: 600; text-align: center; margin-top: 12px; }
.form-error { display: none; background: #fdecec; border: 1.5px solid #f5b5b5; border-radius: var(--radius-sm); padding: 14px; font-size: .88rem; color: #b42323; font-weight: 600; text-align: center; margin-top: 12px; }
.g-recaptcha { margin-top: 4px; }
/* Honeypot — hidden from real users, visible to bots */
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.map-wrap { border-radius: 18px; overflow: hidden; margin-top: 40px; border: 1.5px solid var(--border); }
.map-wrap iframe { display: block; width: 100%; height: 320px; border: 0; }

/* ── CTA band ────────────────────────────── */
.cta-band { background: linear-gradient(150deg, var(--gold-dark), var(--gold)); color: #fff; text-align: center; border-radius: 20px; padding: 52px 32px; }
.cta-band h2 { font-size: clamp(1.6rem,4vw,2.3rem); font-weight: 800; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 520px; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Responsive ──────────────────────────── */
@media (max-width: 1024px) {
  .prod-grid { grid-template-columns: 1fr 1fr; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { display: none; }
  .cat-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .feat-grid, .stat-grid, .footer-grid, .about-values { grid-template-columns: 1fr; }
  .hero-actions, .cta-actions { flex-direction: column; }
  .hero-actions .btn, .cta-actions .btn { justify-content: center; }
}
