/* ===================================================================
   GHAAS PAAT — MASTER STYLESHEET
   Built from: data/css style/ghaaspaat-style-tokens.css
   Theme: Dark, earthy "premium agritech" — deep forest green base,
   sprout-green and gold/sun accents, serif display headings,
   glassy/blurred UI layer (backdrop-filter + translucent panels).
   =================================================================== */

/* ===================================================================
   GOOGLE FONTS
   =================================================================== */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ===================================================================
   DESIGN TOKENS (CSS Custom Properties)
   =================================================================== */
:root {
  /* ---------- Color: Greens (brand core) ---------- */
  --forest:       #0d2010;
  --forest-mid:   #122815;
  --moss:         #1a3d1e;
  --fern:         #2b6a30;
  --leaf:         #4caf50;
  --sprout:       #76c442;

  /* ---------- Color: Gold/Sun (secondary accent) ---------- */
  --sun:          #f4c430;
  --gold:         #e8a000;

  /* ---------- Color: Neutrals ---------- */
  --cream:        #f6f2e8;
  --linen:        #faf7ef;
  --text:         #f0ede6;
  --muted:        #9aad92;

  /* ---------- Surfaces & glass ---------- */
  --border:       rgba(255, 255, 255, 0.07);
  --glass:        rgba(13, 32, 16, 0.72);
  --glass-light:  rgba(255, 255, 255, 0.05);

  /* ---------- Shadows ---------- */
  --shadow-deep:  0 40px 100px rgba(0, 0, 0, 0.4);
  --shadow-card:  0 8px 32px rgba(0, 0, 0, 0.25);

  /* ---------- Radius scale ---------- */
  --radius-xl:    32px;
  --radius-lg:    20px;
  --radius-md:    12px;

  /* ---------- Base type ---------- */
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
}

/* ===================================================================
   FONT UTILITY CLASSES
   =================================================================== */
.font-display { font-family: 'DM Serif Display', Georgia, serif; }
.font-head    { font-family: 'Space Grotesk', sans-serif; }
.font-body    { font-family: 'Inter', system-ui, sans-serif; }

/* ===================================================================
   RESET & BASE
   =================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--forest);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ambient radial-gradient glow behind entire page */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(76, 175, 80, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 100%, rgba(244, 196, 48, 0.06) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ===================================================================
   TYPOGRAPHY
   =================================================================== */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  line-height: 1.08;
  color: var(--linen);
}

h1 { font-size: clamp(2.6rem, 6vw, 5.8rem); letter-spacing: -0.02em; line-height: 1.0; }
h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

p { line-height: 1.75; color: var(--text); }

/* ===================================================================
   LAYOUT PRIMITIVES
   =================================================================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section    { position: relative; padding: 8rem 0; z-index: 1; }
.section-sm { padding: 5rem 0; }

/* ===================================================================
   EYEBROW LABEL — small uppercase kicker above headings
   =================================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sun);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--sun);
}

/* ===================================================================
   ANNOUNCEMENT BAR
   =================================================================== */
.announcement-bar {
  background: var(--moss);
  border-bottom: 1px solid rgba(244, 196, 48, 0.15);
  color: var(--text);
  text-align: center;
  padding: 0.55rem 1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 101;
}
.announcement-bar a {
  color: var(--sun);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}
.announcement-bar a:hover { color: var(--sprout); }

/* ===================================================================
   NAV / TOPBAR
   =================================================================== */
.topbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.9rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  background: rgba(10, 22, 12, 0.72);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
}
.brand:hover { color: var(--sprout); }

.brand-logo-wrap {
  width: 92px;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--moss);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(76, 175, 80, 0.2);
  flex-shrink: 0;
}
.brand-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.2;
}
.brand-sub {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sprout);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease;
  position: relative;
  text-decoration: none;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--sprout);
  transition: width 0.25s ease;
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--sprout); }
.nav-link.active::after { width: 100%; }

/* Mobile menu button */
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===================================================================
   BUTTONS
   =================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.015em;
  border: 1.5px solid transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(130deg, var(--fern) 0%, var(--sprout) 100%);
  color: #071309;
  box-shadow: 0 12px 40px rgba(76, 175, 80, 0.28);
}
.btn-primary:hover { box-shadow: 0 18px 50px rgba(76, 175, 80, 0.4); }

.btn-outline {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}
.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.btn-gold {
  background: linear-gradient(130deg, var(--gold) 0%, var(--sun) 100%);
  color: #1a1000;
  box-shadow: 0 12px 40px rgba(244, 196, 48, 0.28);
}
.btn-gold:hover { box-shadow: 0 18px 50px rgba(244, 196, 48, 0.4); }

.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.82rem; }
.btn-lg { padding: 1.1rem 2.6rem; font-size: 1rem; }

/* WhatsApp-specific button */
.btn-whatsapp {
  background: linear-gradient(130deg, var(--fern) 0%, var(--sprout) 100%);
  color: #071309;
  box-shadow: 0 12px 40px rgba(76, 175, 80, 0.28);
  font-weight: 700;
}

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative;
  z-index: 1;
  padding: 6rem 0 5rem;
}
.hero-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--linen);
}
.hero-title em {
  font-style: italic;
  color: var(--sprout);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 540px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(76, 175, 80, 0.12);
  border: 1px solid rgba(76, 175, 80, 0.22);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sprout);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--sprout);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-slideshow {
  background: var(--forest-mid);
  isolation: isolate;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.8s ease, transform 4.2s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-slide-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  padding: 0.4rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(13, 32, 16, 0.64);
  backdrop-filter: blur(12px);
}

.hero-slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-slide-dot.active {
  width: 22px;
  background: var(--sprout);
}

/* ===================================================================
   CARDS — product / service / feature / testimonial
   =================================================================== */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-deep);
}

.glass-card-light {
  background: var(--glass-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.8rem;
  transition: border-color 0.25s ease, transform 0.3s ease;
}
.glass-card-light:hover {
  border-color: rgba(76, 175, 80, 0.22);
  transform: translateY(-3px);
}

.product-card,
.service-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover,
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-deep);
}

.feature-card {
  background: var(--glass-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.8rem;
  transition: border-color 0.25s ease, transform 0.3s ease;
}
.feature-card:hover {
  border-color: rgba(76, 175, 80, 0.22);
  transform: translateY(-3px);
}

/* Testimonial card */
.testimonial-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: border-color 0.25s ease, transform 0.3s ease;
}
.testimonial-card:hover {
  border-color: rgba(76, 175, 80, 0.15);
  transform: translateY(-3px);
}
.testimonial-card p {
  font-family: 'DM Serif Display', Georgia, serif;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
}

/* Price tag */
.price {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--sprout);
}

/* Stats strip */
.stat-strip {
  background: var(--glass-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--linen);
}
.stat-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* B2B growth hub */
.b2b-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 2rem;
  align-items: stretch;
  margin-bottom: 2.5rem;
}

.b2b-intro {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.02rem;
}

.b2b-command-panel,
.b2b-opportunity-card,
.b2b-process-band,
.b2b-metric-card {
  background: var(--glass-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.b2b-command-panel {
  padding: 2rem;
}

.b2b-role-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.b2b-role-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(76, 175, 80, 0.18);
  background: rgba(76, 175, 80, 0.08);
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
}

.b2b-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.b2b-metric-card {
  padding: 1.25rem;
}

.b2b-metric-card strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.45rem;
  color: var(--linen);
}

.b2b-metric-card span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.b2b-opportunity-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  min-height: 100%;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.b2b-opportunity-card:hover {
  border-color: rgba(76, 175, 80, 0.22);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.b2b-opportunity-card.highlighted {
  background: linear-gradient(160deg, rgba(43, 106, 48, 0.28) 0%, rgba(13, 32, 16, 0.95) 100%);
  border-color: rgba(76, 175, 80, 0.28);
}

.model-icon-chip {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(76, 175, 80, 0.1);
  color: var(--sprout);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.card-checklist {
  display: grid;
  gap: 0.6rem;
  margin: 1.25rem 0;
  padding: 0;
  list-style: none;
}

.card-checklist li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.card-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--sprout);
}

.b2b-detail-grid {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.b2b-detail-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0.7rem;
  padding: 0.7rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
}

.b2b-detail-row span:first-child {
  color: var(--sprout);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}

.b2b-detail-row span:last-child {
  color: var(--muted);
  line-height: 1.5;
}

.b2b-process-band {
  margin-top: 5rem;
  padding: 2rem;
}

.b2b-process-step {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 1.25rem;
}

.b2b-process-step strong {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(76, 175, 80, 0.12);
  color: var(--sprout);
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 1rem;
}

/* ===================================================================
   FORM ELEMENTS
   =================================================================== */
.gp-input,
.gp-textarea,
.gp-select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s ease;
  outline: none;
  width: 100%;
}
.gp-input::placeholder,
.gp-textarea::placeholder {
  color: var(--muted);
  opacity: 0.6;
}
.gp-input:focus,
.gp-textarea:focus,
.gp-select:focus {
  border-color: rgba(76, 175, 80, 0.35);
}

.gp-select option {
  background: var(--forest-mid);
  color: var(--text);
}

.form-label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

/* ===================================================================
   SECTION BACKGROUNDS / DIVIDERS
   =================================================================== */
.section-dark {
  background: var(--forest);
  position: relative;
  z-index: 1;
}
.section-mid {
  background: var(--forest-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

/* ===================================================================
   FOOTER
   =================================================================== */
.gp-footer {
  background: var(--forest-mid);
  border-top: 1px solid var(--border);
  color: var(--muted);
  position: relative;
  z-index: 1;
}
.gp-footer h3,
.gp-footer h4 {
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}
.gp-footer a {
  transition: color 0.2s ease;
}
.gp-footer a:hover {
  color: var(--sprout);
}

/* ===================================================================
   BADGES / TAGS
   =================================================================== */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-green {
  background: rgba(76, 175, 80, 0.12);
  border: 1px solid rgba(76, 175, 80, 0.22);
  color: var(--sprout);
}
.badge-gold {
  background: rgba(244, 196, 48, 0.12);
  border: 1px solid rgba(244, 196, 48, 0.22);
  color: var(--sun);
}

/* ===================================================================
   FEATURED / HIGHLIGHTED CARD (consultation / premium)
   =================================================================== */
.card-featured {
  background: linear-gradient(160deg, rgba(43, 106, 48, 0.3) 0%, rgba(13, 32, 16, 0.9) 100%);
  border: 1.5px solid rgba(76, 175, 80, 0.25);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}
.card-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.4), transparent);
}

/* ===================================================================
   IMAGE CONTAINERS
   =================================================================== */
.img-rounded {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* ===================================================================
   SCROLLBAR STYLING
   =================================================================== */
.custom-scrollbar::-webkit-scrollbar { width: 6px; }
.custom-scrollbar::-webkit-scrollbar-track { background: var(--forest-mid); border-radius: 10px; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: var(--moss); border-radius: 10px; }
.custom-scrollbar::-webkit-scrollbar-thumb:hover { background: var(--fern); }

/* Hide scrollbar utility */
.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* ===================================================================
   ANIMATIONS
   =================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grids */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.5); }
}

@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes slide3 {
  0%, 25% { transform: translateX(0%); }
  33%, 58% { transform: translateX(-33.3333%); }
  66%, 91% { transform: translateX(-66.6666%); }
  100% { transform: translateX(0%); }
}
.animate-slide3 {
  animation: slide3 9s infinite ease-in-out;
  width: 300%;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Subtle glow animation for featured items */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(76, 175, 80, 0.1); }
  50% { box-shadow: 0 0 40px rgba(76, 175, 80, 0.2); }
}

/* ===================================================================
   UTILITY CLASSES (complementing Tailwind)
   =================================================================== */
.text-linen { color: var(--linen); }
.text-sprout { color: var(--sprout); }
.text-sun { color: var(--sun); }
.text-muted { color: var(--muted); }
.text-body { color: var(--text); }

.bg-forest { background: var(--forest); }
.bg-forest-mid { background: var(--forest-mid); }
.bg-moss { background: var(--moss); }
.bg-glass { background: var(--glass); }
.bg-glass-light { background: var(--glass-light); }

.border-glow { border-color: rgba(76, 175, 80, 0.22); }

/* ===================================================================
   RESPONSIVE BREAKPOINTS
   =================================================================== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .features-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .b2b-hero-grid { grid-template-columns: 1fr; }
  .b2b-metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .topbar { padding: 0.9rem 1.25rem; }
  .nav-list {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.8rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: rgba(10, 22, 12, 0.96);
    box-shadow: var(--shadow-card);
  }
  .nav-list:not(.hidden) { display: flex; }
  .nav-list li { width: 100%; }
  .nav-link {
    display: block;
    min-height: 44px;
    padding: 0.8rem 0.9rem;
  }
  .menu-btn { display: flex; }
  .hero-title { font-size: clamp(2.6rem, 11vw, 4rem); }
  .section { padding: 5rem 0; }
  .announcement-bar { font-size: 0.7rem; }
  h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .features-grid { grid-template-columns: 1fr !important; }
  .b2b-metric-grid { grid-template-columns: 1fr; }
  .b2b-command-panel,
  .b2b-opportunity-card,
  .b2b-process-band { padding: 1.25rem; }
  .b2b-detail-row { grid-template-columns: 1fr; gap: 0.25rem; }
  .btn-lg { padding: 0.9rem 1.8rem; font-size: 0.9rem; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; }
}

/* ===================================================================
   TAB SYSTEM (existing functionality preserved)
   =================================================================== */
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ===================================================================
   SCROLL SMOOTH
   =================================================================== */
.scroll-smooth { scroll-behavior: smooth; }
