/* ═══════════════════════════════════════════════
   PHAM BIOSCIENCE — Website Styles
   ═══════════════════════════════════════════════ */

:root {
  --g900: #1b4332;
  --g800: #2d6a4f;
  --g700: #40916c;
  --g600: #52b788;
  --g400: #74c69d;
  --g300: #95d5b2;
  --g200: #b7e4c7;
  --g100: #d8f3dc;
  --g50:  #f0faf3;
  --text:   #1b4332;
  --muted:  #5a8374;
  --light:  #8fb5a3;
  --border: #d1e8da;
  --card:   #ffffff;
  --bg:     #f4f9f6;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow:    0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14);
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}
a    { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
img  { display: block; max-width: 100%; }
strong { font-weight: 700; }
.hidden { display: none !important; }

/* ── Navbar ────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--g900);
  letter-spacing: -0.3px;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex: 1;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  transition: color .18s;
}
.nav-links a:hover { color: var(--g900); }
.nav-cta { display: flex; gap: 0.5rem; align-items: center; }
.btn-nav-outline {
  padding: 0.45rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--g800);
  border: 1.5px solid var(--g200);
  border-radius: var(--radius-sm);
  transition: background .18s, border-color .18s;
}
.btn-nav-outline:hover { background: var(--g50); border-color: var(--g300); }
.btn-nav-solid {
  padding: 0.45rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background: var(--g700);
  border-radius: var(--radius-sm);
  transition: background .18s, transform .18s;
}
.btn-nav-solid:hover { background: var(--g900); transform: translateY(-1px); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--g900);
  border-radius: 2px;
  transition: opacity .2s, transform .2s;
}
.nav-mobile {
  padding: 1rem 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid var(--border);
  background: #fff;
}
.nav-mobile a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--muted);
  padding: 0.25rem 0;
}
.nav-mobile a:hover { color: var(--g900); }
.nav-mobile .btn-nav-solid { text-align: center; width: 100%; }

/* ── Hero ──────────────────────────────────── */
.hero {
  max-width: 1160px;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: var(--g100);
  color: var(--g800);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.875rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
  border: 1px solid var(--g200);
}
.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--g900);
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
}
.hero-accent {
  background: linear-gradient(135deg, var(--g700), var(--g400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2.5rem;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--g800);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(45,106,79,.3);
}
.btn-primary:hover {
  background: var(--g900);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45,106,79,.4);
}
.btn-secondary {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--g700);
  border: 1.5px solid var(--g200);
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius);
  transition: background .2s, border-color .2s;
  background: transparent;
}
.btn-secondary:hover { background: var(--g50); border-color: var(--g300); }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.hero-stat-val {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--g800);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 600;
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.hero-stat-div {
  width: 1.5px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}
.hero-illustration {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-svg {
  width: 100%;
  max-width: 520px;
  filter: drop-shadow(0 20px 60px rgba(27,67,50,.1));
}
.hero-float {
  position: absolute;
  font-size: 1.5rem;
  animation: float 4s ease-in-out infinite;
  pointer-events: none;
}
.hero-float-1 { top: 8%;  left: 6%;  animation-delay: 0s; }
.hero-float-2 { top: 18%; right: 4%; animation-delay: 1.5s; font-size: 1.1rem; }
.hero-float-3 { bottom: 16%; left: 5%; animation-delay: .8s; font-size: 1.2rem; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ── Trust Bar ─────────────────────────────── */
.trust-bar {
  background: var(--g50);
  border-top: 1px solid var(--g100);
  border-bottom: 1px solid var(--g100);
  padding: 0.875rem 1.5rem;
}
.trust-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--muted);
}
.trust-sep { color: var(--g200); }

/* ── Section Shared ────────────────────────── */
.section-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
.section-badge {
  display: inline-block;
  background: var(--g100);
  color: var(--g800);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border: 1px solid var(--g200);
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--g900);
  letter-spacing: -0.04em;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 3rem;
}

/* ── Pillar Cards ──────────────────────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pillar-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--g300);
}
.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: var(--g100);
}
.pillar-stat {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--g800);
  letter-spacing: -0.04em;
  line-height: 1;
}
.pillar-stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--g400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  margin-top: 0.2rem;
}
.pillar-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--g900);
  margin-bottom: 0.625rem;
}
.pillar-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Stats Strip ───────────────────────────── */
.stats-strip { background: var(--g900); padding: 3rem 1.5rem; }
.stats-strip-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stats-strip-val {
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.375rem;
}
.stats-strip-label {
  font-size: 0.8rem;
  color: var(--g300);
  font-weight: 600;
  line-height: 1.5;
}

/* ── Growlytics Release Section ────────────── */
.growlytics-section {
  background: linear-gradient(135deg, var(--g900) 0%, var(--g700) 65%, var(--g600) 100%);
  position: relative;
  overflow: hidden;
}
.growlytics-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.growlytics-leaf {
  position: absolute;
  top: 0;
  width: 200px;
  height: 320px;
}
.growlytics-leaf--left  { left: -30px; }
.growlytics-leaf--right { right: -30px; transform: scaleX(-1); }
.release-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--g100);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.875rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}
.release-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #74c69d;
  animation: relPulse 1.6s ease-in-out infinite;
}
@keyframes relPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(1.35); }
}

/* ── Collab Cards ──────────────────────────── */
.collab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.collab-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: background .2s, transform .2s;
}
.collab-card:hover { background: rgba(255,255,255,.14); transform: translateY(-3px); }
.collab-icon  { font-size: 1.9rem; margin-bottom: 0.875rem; }
.collab-title { font-size: 1rem;   font-weight: 700; color: #fff;        margin-bottom: 0.5rem; }
.collab-desc  { font-size: 0.85rem; color: var(--g300); line-height: 1.65; }

/* ── How It Works Steps ────────────────────── */
.how-section { background: var(--g50); }
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  text-align: center;
  padding: 0 1rem;
}
.step-number {
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--g300);
  letter-spacing: 0.12em;
  margin-bottom: 0.875rem;
}
.step-icon-wrap { display: flex; justify-content: center; margin-bottom: 1.25rem; }
.step h3 { font-size: 1rem; font-weight: 800; color: var(--g900); margin-bottom: 0.5rem; }
.step p  { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }
.step-connector { flex-shrink: 0; padding-top: 56px; opacity: .55; }

/* ── Platform Showcase ─────────────────────── */
.showcase-section { background: #fff; border-top: 1px solid var(--border); }
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.875rem;
  border-radius: var(--radius-sm);
  transition: background .18s;
}
.feature-item:hover { background: var(--g50); }
.feature-item-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--g100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-item-title { font-size: .95rem; font-weight: 700; color: var(--g900); margin-bottom: .25rem; }
.feature-item-desc  { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* ── App Preview Mock ──────────────────────── */
.app-preview {
  background: var(--g50);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}
.app-bar {
  display: flex; align-items: center; gap: .5rem;
  margin-bottom: 1rem;
  padding-bottom: .875rem;
  border-bottom: 1px solid var(--border);
}
.app-dot  { width: 10px; height: 10px; border-radius: 50%; }
.app-title {
  font-size: .78rem; font-weight: 700; color: var(--muted);
  margin-left: auto; margin-right: auto;
}
.app-stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: .75rem; margin-bottom: 1rem;
}
.app-stat-box {
  background: #fff; border: 1px solid var(--border);
  border-radius: 10px; padding: .75rem; text-align: center;
}
.app-stat-val   { font-size: 1.3rem; font-weight: 900; line-height: 1; }
.app-stat-label {
  font-size: .62rem; color: var(--muted); font-weight: 600;
  text-transform: uppercase; letter-spacing: .04em; margin-top: .2rem;
}
.app-chart {
  background: #fff; border: 1px solid var(--border);
  border-radius: 10px; padding: 1rem; margin-bottom: .75rem;
}
.app-chart-label {
  font-size: .7rem; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .04em; margin-bottom: .75rem;
}
.app-bars { display: flex; align-items: flex-end; gap: 4px; height: 80px; }
.app-bar-col {
  flex: 1; background: var(--g200); border-radius: 4px 4px 0 0;
  transition: background .18s;
}
.app-bar-col:hover  { background: var(--g600); }
.app-bar-col.hi     { background: var(--g700); }
.app-plant-row {
  display: flex; align-items: center; gap: .75rem;
  padding: .625rem; background: var(--g50); border-radius: 8px;
  margin-bottom: .5rem;
}
.app-plant-row:last-child { margin-bottom: 0; }
.app-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.app-plant-name { font-size: .85rem; font-weight: 700; color: var(--g900); }
.app-plant-sub  { font-size: .72rem; color: var(--muted); }
.app-badge {
  font-size: .7rem; font-weight: 700;
  padding: .2rem .5rem; border-radius: 999px; white-space: nowrap; flex-shrink: 0;
}
.app-badge-green { background: #d8f3dc; color: #2d6a4f; }
.app-badge-amber { background: #fef3c7; color: #92400e; }

/* ── CTA Section ───────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--g900), var(--g800));
  overflow: hidden;
}
.cta-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  text-align: center;
}
.cta-plant       { width: 80px; opacity: .55; flex-shrink: 0; }
.cta-plant-flip  { transform: scaleX(-1); }
.cta-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900; color: #fff;
  letter-spacing: -0.04em; margin-bottom: 0.75rem;
}
.cta-content p {
  color: var(--g300); font-size: 1rem;
  line-height: 1.7; margin-bottom: 2rem; max-width: 460px;
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.btn-cta-light {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--g900);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.95rem; font-weight: 700;
  transition: background .18s, transform .18s;
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
}
.btn-cta-light:hover { background: var(--g50); transform: translateY(-2px); }
.btn-cta-outline {
  font-size: 0.9rem; font-weight: 600;
  color: var(--g100);
  border: 1.5px solid rgba(255,255,255,.3);
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius);
  transition: background .18s, border-color .18s;
}
.btn-cta-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); }

/* ── Footer ────────────────────────────────── */
.site-footer { background: var(--g900); border-top: 1px solid rgba(255,255,255,.08); }
.footer-top {
  max-width: 1160px; margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 1rem;
}
.footer-about {
  font-size: .85rem; color: var(--g300); line-height: 1.7;
  max-width: 300px; margin-bottom: 1.25rem;
}
.footer-social { display: flex; gap: .625rem; }
.social-link {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  transition: background .18s;
}
.social-link:hover { background: rgba(255,255,255,.18); }
.footer-col-heading {
  font-size: .72rem; font-weight: 700;
  color: rgba(255,255,255,.4);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.25rem;
}
.footer-col-links { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.footer-col-links a {
  font-size: .875rem; color: var(--g300); font-weight: 500; transition: color .18s;
}
.footer-col-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  max-width: 1160px; margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: .75rem;
}
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a {
  font-size: .78rem; color: rgba(255,255,255,.35); transition: color .18s;
}
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ── Responsive ────────────────────────────── */
@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding: 3.5rem 1.5rem 3rem; }
  .hero-desc { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-illustration { order: -1; }
  .hero-svg { max-width: 360px; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .stats-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .collab-grid { grid-template-columns: 1fr 1fr; }
  .showcase-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .pillars-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; align-items: center; }
  .step-connector { transform: rotate(90deg); padding-top: 0; padding-left: 0; }
  .collab-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; }
  .cta-plant { display: none; }
  .trust-sep { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-legal { justify-content: center; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.85rem; }
  .section-title { font-size: 1.5rem; }
  .stats-strip-inner { grid-template-columns: 1fr 1fr; }
  .app-stat-row { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════
   HERBALYTICS SECTION
   ═══════════════════════════════════════════════ */

.herb-section {
  background: linear-gradient(160deg, #0a1f14 0%, #0d2a1c 40%, #111827 100%);
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

/* Decorative background */
.herb-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.herb-bg-molecule {
  position: absolute;
  top: -60px;
  right: -80px;
  width: 500px;
  height: 500px;
  opacity: .6;
}

/* Badge */
.herb-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(251,191,36,.12);
  border: 1px solid rgba(251,191,36,.3);
  color: #fbbf24;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 999px;
  margin-bottom: 1.6rem;
}

/* Title area */
.herb-header { margin-bottom: 3rem; }

.herb-title-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.herb-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: #f0fdf4;
  line-height: 1.15;
  margin-bottom: 1.1rem;
  letter-spacing: -.02em;
}

.herb-accent {
  background: linear-gradient(90deg, #fbbf24, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.herb-sub {
  color: #a7f3d0;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}

/* CTA row */
.herb-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.herb-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: linear-gradient(135deg, #d97706, #fbbf24);
  color: #1a0a00;
  font-weight: 800;
  font-size: .95rem;
  padding: .8rem 1.7rem;
  border-radius: 999px;
  transition: transform .18s, box-shadow .18s;
  box-shadow: 0 4px 20px rgba(251,191,36,.35);
  letter-spacing: .01em;
}
.herb-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(251,191,36,.5);
}

.herb-btn-lg {
  font-size: 1.05rem;
  padding: 1rem 2.2rem;
}

.herb-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: #a7f3d0;
  font-weight: 600;
  font-size: .92rem;
  padding: .75rem 1.5rem;
  border: 1px solid rgba(167,243,208,.35);
  border-radius: 999px;
  transition: background .18s, border-color .18s;
}
.herb-btn-outline:hover {
  background: rgba(167,243,208,.08);
  border-color: rgba(167,243,208,.6);
}

/* Hero SVG */
.herb-hero-svg-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.herb-hero-svg {
  width: 100%;
  max-width: 480px;
  height: auto;
  filter: drop-shadow(0 8px 40px rgba(0,0,0,.5));
}

/* Stats strip */
.herb-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  padding: 1.6rem 2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}
.herb-stat { text-align: center; }
.herb-stat-val {
  font-size: 1.9rem;
  font-weight: 900;
  color: #fbbf24;
  line-height: 1;
  margin-bottom: .25rem;
}
.herb-stat-label {
  font-size: .78rem;
  color: #6ee7b7;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.herb-stat-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.1);
}

/* Feature cards grid */
.herb-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.herb-feat-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 1.6rem 1.4rem;
  transition: background .2s, transform .2s, border-color .2s;
}
.herb-feat-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(251,191,36,.2);
  transform: translateY(-3px);
}

.herb-feat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.herb-feat-icon--amber  { background: rgba(251,191,36,.15); }
.herb-feat-icon--green  { background: rgba(52,211,153,.12); }
.herb-feat-icon--blue   { background: rgba(96,165,250,.12); }
.herb-feat-icon--red    { background: rgba(248,113,113,.12); }
.herb-feat-icon--purple { background: rgba(192,132,252,.12); }
.herb-feat-icon--orange { background: rgba(251,146,60,.12); }

.herb-feat-title {
  font-size: 1rem;
  font-weight: 700;
  color: #f0fdf4;
  margin-bottom: .55rem;
  line-height: 1.3;
}
.herb-feat-desc {
  font-size: .875rem;
  color: #86efac;
  line-height: 1.65;
}

/* Pipeline */
.herb-pipeline {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  margin-bottom: 3rem;
}
.herb-pipeline-label {
  text-align: center;
  color: #6ee7b7;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.herb-pipeline-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  flex-wrap: wrap;
}
.herb-pipe-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
}
.herb-pipe-icon {
  width: 44px;
  height: 44px;
}
.herb-pipe-step-label {
  font-size: .75rem;
  font-weight: 700;
  color: #a7f3d0;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}
.herb-pipe-arrow {
  padding: 0 .25rem;
  margin-bottom: 1.6rem;
}

/* Bottom CTA */
.herb-bottom-cta {
  background: linear-gradient(135deg, rgba(217,119,6,.12), rgba(52,211,153,.08));
  border: 1px solid rgba(251,191,36,.2);
  border-radius: 20px;
  padding: 2.5rem 2.5rem;
}
.herb-bottom-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.herb-bottom-cta-text h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #f0fdf4;
  margin-bottom: .5rem;
}
.herb-bottom-cta-text p {
  font-size: .92rem;
  color: #a7f3d0;
  line-height: 1.6;
  max-width: 520px;
}

/* Responsive */
@media (max-width: 900px) {
  .herb-title-area  { grid-template-columns: 1fr; }
  .herb-hero-svg-wrap { display: none; }
  .herb-features    { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .herb-features    { grid-template-columns: 1fr; }
  .herb-stats       { gap: 1.2rem; }
  .herb-stat-div    { display: none; }
  .herb-pipeline    { padding: 1.5rem 1rem; }
  .herb-pipeline-steps { gap: .2rem; }
  .herb-pipe-step-label { font-size: .65rem; }
  .herb-bottom-cta-inner { flex-direction: column; text-align: center; }
}
