/* ============================================================
   AGROSEEDS PRO — Main Stylesheet
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@600;700;800&display=swap');

/* ── CSS Variables ── */
:root {
  --g50:  #f2f8ed; --g100: #d6ecca; --g200: #aed98e;
  --g400: #72b84a; --g600: #3d7a22; --g700: #2d5d18;
  --g800: #1e4010; --g900: #0e2006;
  --e50:  #faf6f0; --e100: #f0e4cc; --e300: #c9a46a;
  --e500: #9b6e32; --e700: #5c3d14;
  --s50:  #f0f4ff; --s600: #2554d4;
  --r50:  #fff0f0; --r600: #c0392b;
  --cream: #fdfaf5;
  --td: #12170a; --tm: #384026; --ts: #697257;
  --border:  rgba(61,122,34,0.14);
  --border2: rgba(61,122,34,0.28);
  --sh1: 0 1px 4px rgba(14,32,6,0.07);
  --sh2: 0 4px 16px rgba(14,32,6,0.10);
  --sh3: 0 12px 40px rgba(14,32,6,0.14);
  --sh4: 0 24px 80px rgba(14,32,6,0.18);
  --r-sm: 8px; --r-md: 12px; --r-lg: 18px; --r-xl: 24px; --r-full: 999px;
  --nav-h: 68px;
  --font-display: 'Manrope', 'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--cream); color: var(--td); line-height: 1.65; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
button, input, select, textarea { font-family: inherit; }
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.15; }

/* ── Utilities ── */
.hidden  { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section  { padding: 90px 0; }
.text-muted { color: var(--ts); }
.text-green { color: var(--g600); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 11px 24px; border-radius: var(--r-full);
  font-size: 14px; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; border: none; cursor: pointer;
  transition: all .2s; white-space: nowrap; font-family: var(--font-body);
}
.btn-primary { background: var(--g600); color: #fff; box-shadow: 0 4px 18px rgba(61,122,34,.25); }
.btn-primary:hover { background: var(--g800); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(61,122,34,.3); }
.btn-outline { background: transparent; color: var(--g600); border: 2px solid var(--g400); }
.btn-outline:hover { background: var(--g50); border-color: var(--g600); }
.btn-ghost  { background: transparent; color: var(--ts); border: 1.5px solid var(--border2); }
.btn-ghost:hover { background: var(--g50); color: var(--g600); border-color: var(--g400); }
.btn-danger { background: var(--r600); color: #fff; }
.btn-danger:hover { background: #a03025; transform: translateY(-1px); }
.btn-sm  { padding: 7px 16px; font-size: 12px; }
.btn-lg  { padding: 15px 40px; font-size: 15px; }
.btn-w   { width: 100%; }

/* ── Form Elements ── */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block; font-size: 12px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--tm); margin-bottom: 7px;
}
.form-input {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border2); border-radius: var(--r-md);
  font-size: 15px; color: var(--td); background: var(--cream);
  outline: none; transition: all .2s; font-family: var(--font-body);
}
.form-input:focus {
  border-color: var(--g400); background: #fff;
  box-shadow: 0 0 0 3px rgba(114,184,74,.12);
}
.form-input::placeholder { color: var(--ts); }
textarea.form-input { resize: vertical; min-height: 90px; }
select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23697257' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.form-error { font-size: 12px; color: var(--r600); margin-top: 5px; display: none; }

/* ── Cards ── */
.card { background: #fff; border-radius: var(--r-xl); border: 1px solid var(--border); box-shadow: var(--sh1); }
.card-body { padding: 28px; }

/* ── Badges ── */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: var(--r-full);
  font-size: 11px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
}
.badge-green { background: var(--g50);  color: var(--g600); border: 1px solid var(--g100); }
.badge-earth { background: var(--e50);  color: var(--e500); border: 1px solid var(--e100); }
.badge-blue  { background: var(--s50);  color: var(--s600); border: 1px solid #c5d8ff; }
.badge-red   { background: var(--r50);  color: var(--r600); border: 1px solid #ffd5d5; }
.badge-gray  { background: #f4f3ee;     color: var(--ts);   border: 1px solid #e8e5dd; }

/* ── Toast ── */
#toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--g800); color: #fff;
  padding: 12px 24px; border-radius: var(--r-full);
  font-size: 14px; font-weight: 500; z-index: 9999;
  opacity: 0; transition: all .3s; pointer-events: none; white-space: nowrap;
}
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
#toast.error { background: var(--r600); }
#toast.success { background: var(--g600); }

/* ── Modal ── */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(14,32,6,.55); backdrop-filter: blur(6px);
  z-index: 500; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff; border-radius: var(--r-xl);
  width: 100%; max-width: 620px; max-height: 90vh; overflow-y: auto;
  box-shadow: var(--sh4); animation: fadeIn .25s ease;
}
.modal-header {
  padding: 24px 28px 20px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; background: #fff; z-index: 1;
}
.modal-header h2 { font-size: 22px; color: var(--g800); }
.modal-close {
  background: none; border: none; cursor: pointer; color: var(--ts);
  font-size: 20px; width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: all .2s;
}
.modal-close:hover { background: var(--g50); color: var(--g600); }
.modal-body   { padding: 28px; }
.modal-footer {
  padding: 20px 28px; border-top: 1px solid var(--border);
  display: flex; justify-content: flex-end; gap: 12px;
}

/* ── Navigation ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h); background: rgba(253,250,245,.94);
  backdrop-filter: blur(14px); border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
}
.nav-inner {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display); font-size: 24px; font-weight: 700;
  color: var(--g700); display: flex; align-items: center; gap: 10px; cursor: pointer;
}
.nav-logo span { color: var(--e500); }
.seedpro-logo-mark {
  font-size: 30px; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  filter: drop-shadow(0 2px 6px rgba(46,123,69,.22));
}
.seedpro-logo-text { display: inline-flex; flex-direction: column; line-height: 1; }
.seedpro-logo-name { font-family: var(--font-display); font-size: 22px; font-weight: 800; letter-spacing: -.03em; }
.seedpro-logo-name .seed { color: #0f6a4f; }
.seedpro-logo-name .pro { color: #4f6472; }
.seedpro-logo-tag { font-family: var(--font-body); font-size: 10px; color: var(--ts); letter-spacing: .08em; text-transform: uppercase; margin-top: 2px; }
.icon-svg { display: inline-block; vertical-align: middle; }
.category-icon { color: var(--g600); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; color: var(--tm); transition: color .2s; cursor: pointer;
}
.nav-links a:hover, .nav-links a.active { color: var(--g600); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none; width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid var(--border2); background: #fff; color: var(--g700);
  align-items: center; justify-content: center; font-size: 18px; cursor: pointer;
}
.mobile-nav {
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 190;
  background: rgba(253,250,245,.98); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border); padding: 18px 5% 20px;
  display: none; box-shadow: var(--sh2);
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.mobile-nav.open { display: block; animation: fadeIn .2s ease; }
.mobile-nav-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.mobile-nav-links a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; border-radius: var(--r-md); background: #fff;
  border: 1px solid var(--border); color: var(--tm); font-size: 14px; font-weight: 600;
}
.mobile-nav-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }

/* Page offset for fixed nav */
.page-wrap { padding: calc(var(--nav-h) + 15px) 0 56px !important; }

/* ── Section typography ── */
.section-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--e500); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(30px, 3vw, 46px); font-weight: 700;
  color: var(--g800); line-height: 1.18; margin-bottom: 16px;
}
.section-sub { font-size: 16px; color: var(--ts); max-width: 520px; line-height: 1.75; }

/* ── Hero ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  background: linear-gradient(150deg, #f0f8ea 0%, var(--cream) 50%, var(--e50) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(114,184,74,.09) 0%, transparent 70%);
}
.hero::after {
  content: ''; position: absolute; bottom: -80px; left: 100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(155,110,50,.06) 0%, transparent 70%);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--g50); border: 1px solid var(--g100);
  color: var(--g600); font-size: 12px; font-weight: 600;
  padding: 5px 14px; border-radius: var(--r-full);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--g400); animation: pulse 2s infinite;
}
.hero h1 { font-size: clamp(44px, 4.5vw, 72px); font-weight: 700; color: var(--g800); margin-bottom: 22px; }
.hero h1 em { color: var(--e500); font-style: italic; }
.hero-lead { font-size: 17px; font-weight: 300; color: var(--ts); margin-bottom: 36px; line-height: 1.8; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 36px; margin-top: 48px; padding-top: 36px; border-top: 1px solid var(--border); }
.stat-val { font-family: var(--font-display); font-size: 38px; font-weight: 700; color: var(--g600); line-height: 1; }
.stat-lab { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--ts); margin-top: 4px; }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-blob {
  width: 420px; height: 420px; border-radius: 58% 42% 46% 54% / 50% 46% 54% 50%;
  background: var(--g50); border: 2px solid var(--g100);
  display: flex; align-items: center; justify-content: center;
  font-size: 130px; position: relative; animation: morphBlob 8s ease-in-out infinite;
}
.ftag {
  position: absolute; background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 9px 14px;
  font-size: 13px; font-weight: 500; box-shadow: var(--sh2);
  white-space: nowrap; animation: float 4s ease-in-out infinite;
}
.ftag:nth-child(2) { top: 40px;  left: -80px; animation-delay: 0s; }
.ftag:nth-child(3) { bottom: 100px; left: -90px; animation-delay: 1s; }
.ftag:nth-child(4) { top: 80px;  right: -70px; animation-delay: .5s; }
.ftag:nth-child(5) { bottom: 50px; right: -60px; animation-delay: 1.5s; }

/* ── Features grid ── */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.feat-card {
  padding: 32px 24px; border-radius: var(--r-xl);
  background: var(--g50); border: 1px solid var(--g100); transition: all .3s;
}
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--sh3); }
.feat-icon { font-size: 36px; margin-bottom: 16px; }
.feat-card h3 { font-size: 18px; font-weight: 700; color: var(--g800); margin-bottom: 10px; }
.feat-card p  { font-size: 14px; color: var(--ts); line-height: 1.7; }

/* ── Steps ── */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 56px; position: relative;
}
.steps-grid::before {
  content: ''; position: absolute; top: 32px; left: 10%; right: 10%;
  height: 2px; background: linear-gradient(to right, var(--g200), var(--g400), var(--g200)); z-index: 0;
}
.step-item { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%; background: var(--g600); color: #fff;
  font-family: var(--font-display); font-size: 28px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; box-shadow: 0 4px 16px rgba(61,122,34,.3);
}
.step-item h3 { font-size: 17px; font-weight: 700; color: var(--g800); margin-bottom: 8px; }
.step-item p  { font-size: 13px; color: var(--ts); line-height: 1.6; }

/* ── Categories tiles ── */
.cats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 32px; }
.cat-tile {
  border-radius: var(--r-lg); padding: 20px 16px; text-align: center;
  cursor: pointer; transition: all .25s; text-decoration: none; display: block;
}
.cat-tile:hover { transform: translateY(-4px); box-shadow: var(--sh3); }
.cat-tile-icon { font-size: 36px; margin-bottom: 10px; }
.cat-tile-emoji { font-size: 36px; margin-bottom: 10px; line-height: 1; }
.cat-tile-thumb { width: 58px; height: 58px; margin: 0 auto 10px; border-radius: 14px; overflow: hidden; border: 1px solid var(--border2); background:#fff; }
.cat-tile-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cat-tile-name { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.cat-tile-count { font-size: 12px; color: var(--ts); }
.cat-tile-desc { font-size: 12px; color: var(--ts); line-height: 1.55; margin-top: 8px; }

/* ── Product cards ── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; min-height: 300px; }
.prod-card {
  background: #fff; border-radius: var(--r-xl);
  border: 1px solid var(--g100); overflow: hidden;
  transition: all .3s; cursor: pointer; display: flex; flex-direction: column;
}
.prod-card:hover { transform: translateY(-5px); box-shadow: var(--sh3); }

.prod-img {
  height: 200px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: var(--g50);
}
.prod-img img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0; transition: transform .45s ease;
}
.prod-card:hover .prod-img img { transform: scale(1.07); }
.prod-img-fallback {
  position: absolute; inset: 0; display: flex; align-items: center;
  justify-content: center; font-size: 72px; z-index: 1;
}
.prod-img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; height: 70px;
  background: linear-gradient(to top, rgba(0,0,0,.32) 0%, transparent 100%);
  z-index: 2; pointer-events: none;
}
.prod-img-badge { position: absolute; top: 10px; right: 10px; z-index: 3; }
.prod-img-brand {
  position: absolute; bottom: 10px; left: 12px; z-index: 3;
  font-size: 10px; font-weight: 700; color: #fff;
  background: rgba(0,0,0,.38); padding: 3px 10px;
  border-radius: 20px; letter-spacing: .04em; backdrop-filter: blur(4px);
}
/* skeleton shimmer */
@keyframes shimmer {
  0%   { background-position: -480px 0; }
  100% { background-position:  480px 0; }
}
.prod-img-skeleton {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, #eeeee6 25%, #e4e4dc 50%, #eeeee6 75%);
  background-size: 480px 100%; animation: shimmer 1.5s infinite; z-index: 0;
}

.prod-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.prod-cat  { font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; }
.prod-name { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--g800); margin-bottom: 8px; }
.prod-desc {
  font-size: 13px; color: var(--ts); margin-bottom: 12px; line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  min-height: 42px;
}
.prod-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.prod-meta-item { display: flex; align-items: center; gap: 4px; }
.prod-meta-dot  { width: 6px; height: 6px; border-radius: 50%; display: inline-block; }
.prod-meta-text { font-size: 11px; font-weight: 600; }
.prod-footer { display: flex; align-items: center; justify-content: space-between; }
.prod-pack-price {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.prod-price  { font-family: var(--font-display); font-size: 22px; font-weight: 700; }
.prod-price small { font-family: var(--font-body); font-size: 12px; font-weight: 400; color: var(--ts); }
.prod-min { font-size: 11px; color: var(--ts); margin-top: 3px; }
.prod-package-select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 8px 34px 8px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--g600);
  background: transparent;
  border: 2px solid var(--g400);
  border-radius: var(--r-full);
  cursor: pointer;
  outline: none;
}
.prod-select-arrow {
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--g600);
  font-size: 11px;
}

/* ── Catalog filters ── */
.catalog-toolbar { display: flex; gap: 12px; align-items: center; margin-bottom: 28px; flex-wrap: wrap; }
.search-wrap { position: relative; flex: 1; min-width: 200px; }
.search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--ts); font-size: 16px; pointer-events: none; }
.search-input {
  width: 100%; padding: 11px 14px 11px 42px;
  border: 1.5px solid var(--border2); border-radius: var(--r-full);
  font-size: 14px; background: #fff; outline: none;
  transition: all .2s; font-family: var(--font-body);
}
.search-input:focus { border-color: var(--g400); box-shadow: 0 0 0 3px rgba(114,184,74,.1); }
.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.filter-btn {
  padding: 8px 18px; border-radius: var(--r-full);
  border: 1.5px solid var(--border2); background: transparent;
  font-size: 13px; font-weight: 500; color: var(--tm); cursor: pointer; transition: all .2s;
  font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active { background: var(--g600); color: #fff; border-color: var(--g600); }

/* ── Testimonials ── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.testi-card {
  background: var(--cream); border-radius: var(--r-xl); padding: 32px;
  border: 1px solid var(--border); position: relative;
}
.testi-q {
  font-family: var(--font-display); font-size: 72px; color: var(--g100);
  line-height: 1; position: absolute; top: 16px; right: 24px;
}
.testi-stars { color: #f5a623; font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-card p { font-size: 15px; color: var(--tm); line-height: 1.8; font-style: italic; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.tav { width: 42px; height: 42px; border-radius: 50%; background: var(--g100); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--g600); }
.tav-name { font-size: 14px; font-weight: 600; color: var(--td); }
.tav-role { font-size: 12px; color: var(--ts); }

/* ── About page ── */
.about-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-visual { background: var(--g50); border-radius: var(--r-xl); padding: 48px; text-align: center; border: 1px solid var(--g100); }
.team-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.team-card  { background: #fff; border-radius: var(--r-xl); padding: 28px; text-align: center; border: 1px solid var(--border); }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--g50); display: flex; align-items: center; justify-content: center; font-size: 30px; margin: 0 auto 16px; }
.team-card h4 { font-size: 18px; font-weight: 700; color: var(--g800); margin-bottom: 4px; }
.team-card p  { font-size: 13px; color: var(--ts); }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; }
.value-item  { padding: 28px; background: var(--g50); border-radius: var(--r-lg); border: 1px solid var(--g100); }
.value-item h3 { font-size: 18px; font-weight: 700; color: var(--g800); margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.value-item p  { font-size: 14px; color: var(--ts); line-height: 1.7; }

/* ── Contacts page ── */
.contacts-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.contact-card  { background: var(--g800); border-radius: var(--r-xl); padding: 40px; color: #fff; }
.contact-card h3  { font-size: 26px; color: #fff; margin-bottom: 8px; }
.contact-card .lead { color: rgba(255,255,255,.65); font-size: 15px; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.contact-item:last-child { border-bottom: none; }
.contact-ic { width: 40px; height: 40px; border-radius: var(--r-md); background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-item-text strong { display: block; color: #fff; font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.contact-item-text span   { color: rgba(255,255,255,.6); font-size: 14px; }
.order-form-card { background: #fff; border-radius: var(--r-xl); padding: 40px; box-shadow: var(--sh3); border: 1px solid var(--border); }
.order-form-card h3 { font-size: 26px; color: var(--g800); margin-bottom: 6px; }
.order-form-card .sub { font-size: 14px; color: var(--ts); margin-bottom: 28px; }

/* ── Why/dark section ── */
.why-section { background: var(--g800); position: relative; overflow: hidden; }
.why-section::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; border-radius: 50%; background: rgba(106,181,72,.06); pointer-events: none; }
.why-section .section-eyebrow { color: var(--g200); }
.why-section .section-title   { color: #fff; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-top: 56px; border-radius: 20px; overflow: hidden; }
.why-item { padding: 48px 40px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); transition: background .3s; }
.why-item:hover { background: rgba(255,255,255,.08); }
.why-num { font-family: var(--font-display); font-size: 48px; font-weight: 900; color: var(--g400); opacity: .4; line-height: 1; margin-bottom: 16px; }
.why-item h3 { font-family: var(--font-display); font-size: 22px; color: #fff; margin-bottom: 12px; font-weight: 700; }
.why-item p  { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.7; }

/* ── Footer ── */
.site-footer { background: var(--g900); color: rgba(255,255,255,.65); padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: #fff; margin-bottom: 14px; cursor: pointer; display: inline-block; }
.footer-logo span { color: var(--e300); }
.footer-tagline { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a  { font-size: 14px; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col a:hover { color: var(--g200); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; flex-wrap: wrap; gap: 12px; }

/* ── Product detail modal ── */
.pdm-hero { position: relative; height: 240px; overflow: hidden; border-radius: var(--r-xl) var(--r-xl) 0 0; }
.pdm-hero img { width: 100%; height: 100%; object-fit: cover; }
.pdm-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,.1) 50%, transparent 100%); }
.pdm-hero-text { position: absolute; bottom: 16px; left: 20px; z-index: 1; }
.pdm-hero-text h2 { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.4); }
.pdm-hero-text .sub { font-size: 12px; color: rgba(255,255,255,.8); margin-top: 2px; }
.pdm-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.pdm-stat { border-radius: var(--r-md); padding: 14px; text-align: center; }
.pdm-stat-val { font-family: var(--font-display); font-size: 24px; font-weight: 700; line-height: 1; }
.pdm-stat-key { font-size: 11px; color: var(--ts); margin-top: 3px; text-transform: uppercase; letter-spacing: .05em; }
.pdm-detail-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); }
.pdm-detail-row:last-child { border-bottom: none; }
.pdm-detail-key { font-size: 13px; color: var(--ts); }
.pdm-detail-val { font-size: 14px; font-weight: 600; }

/* ── New public site sections ── */
.page-hero {
  padding: calc(var(--nav-h) + 54px) 0 56px;
  background: linear-gradient(160deg, var(--g50) 0%, #fff 55%, var(--cream) 100%);
}
.page-hero-grid { display: grid; gap: 36px; align-items: start; }
.hero-panel, .info-panel, .faq-card, .supply-card, .metric-card, .doc-card, .quote-card, .cta-banner {
  background: #fff; border-radius: var(--r-xl); border: 1px solid var(--border); box-shadow: var(--sh1);
}
.hero-panel { padding: 30px; }
.hero-panel .section-title { margin-bottom: 14px; }
.hero-panel p { font-size: 15px; color: var(--ts); }
.hero-badges, .chip-row, .brand-cloud { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-badges { margin: 22px 0 28px; }
.hero-badge, .chip, .brand-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: var(--r-full);
  background: var(--g50); border: 1px solid var(--g100); color: var(--g700); font-size: 12px; font-weight: 600;
}
.chip { background: #fff; border-color: var(--border2); color: var(--tm); }
.brand-pill { background: #fff; border-color: var(--border); color: var(--tm); }
.hero-aside { display: grid; gap: 14px; }
.info-panel { padding: 24px; }
.info-panel h3 { font-size: 22px; color: var(--g800); margin-bottom: 10px; }
.info-panel p { font-size: 14px; color: var(--ts); }
.contact-mini-list { display: grid; gap: 12px; margin-top: 18px; }
.contact-mini {
  display: flex; align-items: flex-start; gap: 12px; padding: 14px;
  background: var(--cream); border-radius: var(--r-lg); border: 1px solid var(--border);
}
.contact-mini strong { display: block; font-size: 13px; color: var(--td); margin-bottom: 2px; }
.contact-mini span, .contact-mini a { font-size: 13px; color: var(--ts); }
.metrics-grid, .supply-grid, .faq-grid, .docs-grid, .quote-grid, .value-strip { display: grid; gap: 20px; }
.metrics-grid { grid-template-columns: repeat(3, 1fr); }
.metric-card { padding: 24px; }
.metric-card .num { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--g600); line-height: 1; }
.metric-card .lab { font-size: 11px; color: var(--ts); margin-top: 6px; text-transform: uppercase; letter-spacing: .08em; }
.metric-card p { font-size: 13px; color: var(--ts); margin-top: 10px; }
.supply-grid { grid-template-columns: repeat(4, 1fr); }
.supply-card { padding: 26px; }
.supply-card h3, .faq-card h3, .doc-card h3 { font-size: 21px; color: var(--g800); margin-bottom: 10px; }
.supply-card p, .faq-card p, .doc-card p { font-size: 14px; color: var(--ts); }
.supply-icon { font-size: 34px; margin-bottom: 16px; }
.supply-emoji { font-size: 38px; margin-bottom: 16px; line-height: 1; }
.quote-grid { grid-template-columns: repeat(3, 1fr); }
.quote-card { padding: 28px; }
.quote-card p { font-size: 15px; line-height: 1.75; color: var(--tm); margin-bottom: 16px; }
.quote-author { font-size: 13px; font-weight: 600; color: var(--g700); }
.faq-grid { grid-template-columns: repeat(3, 1fr); }
.faq-card { padding: 24px; }
.value-strip { grid-template-columns: repeat(3, 1fr); }
.catalog-topbar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-bottom: 18px;
}
.catalog-summary {
  display: flex; gap: 12px; flex-wrap: wrap; margin: 20px 0 26px;
}
.summary-pill {
  padding: 10px 14px; border-radius: var(--r-full); background: #fff;
  border: 1px solid var(--border); color: var(--tm); font-size: 13px; font-weight: 600;
}
.docs-grid { grid-template-columns: repeat(3, 1fr); }
.doc-card { padding: 24px; }
.doc-card ul { margin-top: 14px; padding-left: 18px; color: var(--ts); }
.doc-card li { margin-bottom: 8px; }
.split-card {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; background: #fff;
  border-radius: var(--r-xl); border: 1px solid var(--border); padding: 28px;
}
.list-check { list-style: none; display: grid; gap: 10px; }
.list-check li {
  display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--tm);
}
.list-check li::before {
  content: '✓'; width: 20px; height: 20px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--g600); color: #fff; font-size: 11px; font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
.muted-box {
  background: var(--cream); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 18px;
}
.muted-box h4 { font-size: 18px; color: var(--g800); margin-bottom: 8px; }
.muted-box p, .muted-box li { font-size: 14px; color: var(--ts); }
.cta-banner {
  padding: 34px; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; background: linear-gradient(135deg, var(--g800) 0%, var(--g600) 100%); color: #fff;
}
.cta-banner h3 { font-size: 34px; color: #fff; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,.78); font-size: 15px; max-width: 620px; }
.cta-banner .btn-outline { color: #fff; border-color: rgba(255,255,255,.4); }
.cta-banner .btn-outline:hover { background: rgba(255,255,255,.12); color: #fff; }

/* ── Animations ── */
@keyframes fadeIn     { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse      { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
@keyframes float      { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes morphBlob  {
  0%,100% { border-radius: 58% 42% 46% 54% / 50% 46% 54% 50%; }
  33%     { border-radius: 44% 56% 62% 38% / 55% 40% 60% 45%; }
  66%     { border-radius: 60% 40% 38% 62% / 42% 58% 42% 58%; }
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .nav-actions { gap: 8px; }
  .nav-actions .btn { padding-inline: 12px; }
  .features-grid  { grid-template-columns: repeat(2, 1fr); }
  .steps-grid     { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .cats-grid      { grid-template-columns: repeat(4, 1fr); }
  .metrics-grid, .supply-grid, .faq-grid, .docs-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-grid, .value-strip { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  .hero-grid      { grid-template-columns: 1fr; }
  .hero-visual    { display: none; }
  .about-grid     { grid-template-columns: 1fr; }
  .contacts-grid  { grid-template-columns: 1fr; }
  .testi-grid     { grid-template-columns: 1fr; }
  .why-grid       { grid-template-columns: 1fr; }
  .nav-links      { display: none; }
  .nav-actions .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .seedpro-logo-tag { display: none; }
  .hero-stats { gap: 18px; flex-wrap: wrap; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
  .cats-grid      { grid-template-columns: repeat(3, 1fr); }
  .page-hero-grid, .split-card { grid-template-columns: 1fr; }
  .cta-banner { display: grid; grid-template-columns: 1fr; align-items: start; }
  .cta-banner .hero-btns { width: 100%; }
  .hero h1 { font-size: clamp(34px, 8vw, 54px); }
  .hero-lead { font-size: 15px; }
}
@media (max-width: 600px) {
   :root { --nav-h: 62px; }
   .container { padding: 0 14px; }
   .section { padding: 56px 0; }
   .form-row, .form-row-3 { grid-template-columns: 1fr; }
   .footer-grid    { grid-template-columns: 1fr; }
   .team-grid      { grid-template-columns: 1fr; }
   .values-grid    { grid-template-columns: 1fr; }
   .pdm-stats      { grid-template-columns: 1fr 1fr; }
   .cats-grid      { grid-template-columns: repeat(2, 1fr); }
   .metrics-grid, .supply-grid, .faq-grid, .docs-grid, .quote-grid, .value-strip, .mobile-nav-actions { grid-template-columns: 1fr; }
   .hero-panel, .info-panel, .quote-card, .faq-card, .supply-card, .metric-card, .doc-card { padding: 20px; }
   .cta-banner { padding: 24px; }
   .hero-btns { width: 100%; }
   .hero-btns .btn { width: 100%; }
   .prod-pack-price { grid-template-columns: 1fr; gap: 8px; }
   .prod-price { font-size: 20px; }
   .prod-body .order-btn { width: 100%; }
   .split-card { padding: 18px; gap: 16px; }
   .products-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
   .cta-banner h3 { font-size: 26px; }
   #toast { max-width: calc(100vw - 24px); white-space: normal; text-align: center; }
}

/* ── Package checklist (admin product form) ── */
.check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px;
  margin-top: 4px;
  padding: 12px;
  background: var(--cream, #f9f7f2);
  border-radius: 10px;
  border: 1px solid var(--border, #e8e4dc);
}
.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--td, #1a1a18);
  background: #fff;
  border: 1.5px solid var(--border, #e8e4dc);
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  user-select: none;
}
.check-item:hover {
  border-color: var(--g400, #84b85c);
  background: var(--g50, #f2f9ed);
}
.check-item input[type="checkbox"] {
  accent-color: var(--g600, #3d7a22);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.check-item:has(input:checked) {
  border-color: var(--g600, #3d7a22);
  background: var(--g50, #f2f9ed);
  color: var(--g600, #3d7a22);
  font-weight: 700;
}

/* ── Product card package select ── */

