/* =====================================================
   FreshTrack Systems — Design System
   ===================================================== */

/* Display: Exo (FreshTrack brand typeface, per official brochures) · Body: Outfit */
@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,400;0,500;0,600;0,700;0,800;1,500&family=Outfit:wght@300;400;500;600;700&display=swap');

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text-body); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

/* === Design Tokens === */
:root {
  --green-950: #071a0d;
  --green-900: #132f1d;  /* brand dark green (matches official brochures) */
  --green-800: #1a4826;
  --green-700: #1e5c2e;
  --green-600: #2d6a3f;
  --green-500: #3a8c52;
  --green-400: #5bba74;
  --green-300: #8fd4a0;
  --green-200: #bce8c8;
  --green-100: #e8f4ec;
  --green-50:  #f2f9f4;

  --cream:      #f2f1ef;  /* brand off-white (matches official brochures) */
  --cream-dark: #e8e6e2;
  --white:      #ffffff;

  /* ── Warm sunlit accent tokens ──────────────────────────────────────────────
     Amber that pairs with the forest-greens and cream. Used SPARINGLY as
     accents only — NOT for buttons or backgrounds. Good uses: eyebrow dot,
     section-tag labels on dark, hstat-value numbers, H2 keylines, link warmth.
     ────────────────────────────────────────────────────────────────────────── */
  --gold:      #E0A33E;   /* main amber accent — use on dark backgrounds */
  --gold-soft: #F4C772;   /* lighter amber — glows/highlights on dark */
  --gold-50:   #FBF4E6;   /* warm cream tint — subtle background wash */

  --text-dark:  #111111;
  --text-body:  #374151;
  --text-muted: #6b7280;
  --text-light: #9ca3af;

  --border:       #e5e7eb;
  --border-green: #c0dbc8;

  --font-display: 'Exo', system-ui, sans-serif;
  --font-body:    'Outfit', system-ui, sans-serif;

  --max-width:  1240px;
  --nav-height: 52px;
  --topbar-height: 80px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 150ms var(--ease);
  --t-base: 280ms var(--ease);
  --t-slow: 550ms var(--ease);

  --shadow-sm:    0 1px 2px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-md:    0 4px 6px rgba(0,0,0,0.07), 0 10px 28px rgba(0,0,0,0.07);
  --shadow-lg:    0 8px 16px rgba(0,0,0,0.08), 0 24px 48px rgba(0,0,0,0.1);
  --shadow-green: 0 8px 32px rgba(30,92,46,0.3);
}

/* === Base Typography === */
h1, h2, h3, h4, h5 { font-family: var(--font-display); color: var(--text-dark); font-weight: 700; line-height: 1.12; letter-spacing: -0.025em; }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { line-height: 1.75; }
.lead { font-size: 1.0625rem; line-height: 1.75; }

/* === Layout === */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
section { padding: 5rem 0; }

/* ============================
   NAVIGATION
   ============================ */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }

/* ── Topbar (white, collapses on scroll) ── */
.nav-topbar {
  background: var(--white); border-bottom: 1px solid var(--border);
  height: var(--topbar-height); overflow: hidden;
  transition: height 0.3s ease;
}
.site-header.scrolled .nav-topbar { height: 0; }

.nav-topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--max-width); margin: 0 auto;
  padding: 0 2rem; height: 100%;
}

/* Logo in topbar */
.topbar-logo { display: flex; align-items: center; text-decoration: none; }
.topbar-logo-img { height: 62px; width: auto; display: block; }

/* Right cluster: social + divider + contacts */
.topbar-right { display: flex; align-items: center; gap: 1.5rem; }

/* Social buttons — brand colours on hover with scale + icon animation */
.topbar-social-wrap { display: flex; align-items: center; gap: 0.45rem; }
.topbar-social-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: #efefef; border: 1.5px solid #e0e0e0;
  display: flex; align-items: center; justify-content: center;
  color: #666;
  transition: transform 0.22s var(--ease), background 0.22s var(--ease),
              color 0.22s var(--ease), border-color 0.22s var(--ease),
              box-shadow 0.22s var(--ease);
  overflow: hidden;
}
.topbar-social-btn svg { transition: transform 0.22s var(--ease); }
.topbar-social-btn:hover { transform: translateY(-2px); }
.topbar-social-btn:hover svg { transform: scale(1.18); }

.topbar-social-btn[aria-label="Facebook"]:hover  { background: #1877F2; border-color: #1877F2; color: #fff; box-shadow: 0 4px 14px rgba(24,119,242,0.35); }
.topbar-social-btn[aria-label="LinkedIn"]:hover  { background: #0A66C2; border-color: #0A66C2; color: #fff; box-shadow: 0 4px 14px rgba(10,102,194,0.35); }
.topbar-social-btn[aria-label="Instagram"]:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); border-color: #d6249f; color: #fff; box-shadow: 0 4px 14px rgba(214,36,159,0.35); }

.topbar-rule { width: 1px; height: 48px; background: var(--border); flex-shrink: 0; }

/* Contact items — icon pulse/lift on hover */
.topbar-contacts { display: flex; align-items: center; gap: 1.75rem; }
.topbar-contact-item {
  display: flex; align-items: center; gap: 0.8rem;
  text-decoration: none; color: var(--text-body);
  transition: color 0.22s var(--ease);
}
.topbar-contact-item:hover { color: var(--green-700); }
.tci-icon {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--border-green); background: var(--green-50);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-600); flex-shrink: 0;
  transition: background 0.22s var(--ease), border-color 0.22s var(--ease),
              box-shadow 0.22s var(--ease), transform 0.22s var(--ease);
}
.tci-icon svg { transition: transform 0.22s var(--ease); }
.topbar-contact-item:hover .tci-icon {
  background: var(--green-700); border-color: var(--green-700); color: #fff;
  box-shadow: 0 4px 14px rgba(30,92,46,0.3); transform: translateY(-2px);
}
.topbar-contact-item:first-child:hover .tci-icon svg { animation: phoneRing 0.5s ease; }
.topbar-contact-item:last-child:hover  .tci-icon svg { animation: mailBounce 0.45s ease; }

@keyframes phoneRing {
  0%,100% { transform: rotate(0deg); }
  20% { transform: rotate(-18deg); }
  40% { transform: rotate(18deg); }
  60% { transform: rotate(-12deg); }
  80% { transform: rotate(10deg); }
}
@keyframes mailBounce {
  0%,100% { transform: translateY(0) scale(1); }
  40% { transform: translateY(-4px) scale(1.12); }
  70% { transform: translateY(2px) scale(0.96); }
}

.tci-body { display: flex; flex-direction: column; gap: 1px; }
.tci-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); font-weight: 500; line-height: 1; }
.tci-val { font-size: 0.875rem; font-weight: 700; color: var(--text-dark); line-height: 1.2; transition: color 0.22s var(--ease); }
.topbar-contact-item:hover .tci-val { color: var(--green-700); }

/* ── Nav bar (light grey, always visible) ── */
.nav {
  position: relative; height: var(--nav-height); background: #f3f5f3;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  transition: box-shadow var(--t-base);
}
.site-header.scrolled .nav { box-shadow: 0 2px 12px rgba(0,0,0,0.09); border-bottom-color: transparent; }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 2rem;
}

.nav-links { display: flex; align-items: center; gap: 0; }
.nav-link {
  padding: 0.45rem 0.7rem; font-size: 0.875rem; font-weight: 500;
  color: var(--text-body); border-radius: 4px;
  transition: color var(--t-fast), background var(--t-fast);
  white-space: nowrap; border: none; background: none; cursor: pointer;
}
.nav-link:hover { color: var(--green-700); background: rgba(30,92,46,0.07); }

.nav-right-actions { display: flex; align-items: center; gap: 0.4rem; }

/* Logo that slides in when topbar is hidden */
.nav-scrolled-logo {
  display: none; align-items: center; text-decoration: none; flex-shrink: 0; margin-right: 0.75rem;
}
.site-header.scrolled .nav-scrolled-logo {
  display: flex; animation: navFadeInLeft 0.28s var(--ease) both;
}
.nav-scrolled-logo img { height: 28px; width: auto; display: block; }

/* Social icons that appear in nav when scrolled */
.nav-scrolled-social { display: none; align-items: center; gap: 0.25rem; margin-right: 0.25rem; }
.site-header.scrolled .nav-scrolled-social {
  display: flex; animation: navFadeInRight 0.28s var(--ease) both;
}
.nav-social-btn {
  width: 30px; height: 30px; border-radius: 50%;
  background: #efefef; border: 1px solid #e0e0e0;
  display: flex; align-items: center; justify-content: center;
  color: #666; transition: background 0.2s var(--ease), color 0.2s var(--ease),
               border-color 0.2s, transform 0.2s var(--ease);
}
.nav-social-btn svg { transition: transform 0.2s var(--ease); }
.nav-social-btn:hover { transform: translateY(-2px); }
.nav-social-btn:hover svg { transform: scale(1.15); }
.nav-social-btn[aria-label="Facebook"]:hover  { background: #1877F2; border-color: #1877F2; color: #fff; }
.nav-social-btn[aria-label="LinkedIn"]:hover  { background: #0A66C2; border-color: #0A66C2; color: #fff; }
.nav-social-btn[aria-label="Instagram"]:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); border-color: #d6249f; color: #fff; }

@keyframes navFadeInLeft  { from { opacity: 0; transform: translateX(-10px); } to { opacity: 1; transform: translateX(0); } }
@keyframes navFadeInRight { from { opacity: 0; transform: translateX(10px);  } to { opacity: 1; transform: translateX(0); } }

.nav-dropdown { position: relative; }
.nav-dropdown-systems,
.nav-dropdown-hardware {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.nav-dropdown-main { flex: 0 0 auto; }
.nav-dropdown-arrow {
  flex: 0 0 auto;
  padding: 0.45rem 0.45rem;
  border-radius: 4px;
  border: 0;
  background: none;
  color: var(--text-body);
  cursor: pointer;
}
.nav-dropdown-arrow:hover { color: var(--green-700); background: rgba(30,92,46,0.07); }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 0.3rem; }
.nav-dropdown-toggle svg { transition: transform var(--t-fast); }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  padding: 0.5rem; min-width: 230px; box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none;
  transition: opacity var(--t-base), transform var(--t-base);
  margin-top: 0.5rem;
}
/* Invisible bridge fills the gap so hover isn't lost on mouse travel */
.nav-dropdown-menu::before {
  content: ''; position: absolute; bottom: 100%; left: 0; right: 0; height: 0.6rem;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.nav-dropdown.open .nav-dropdown-toggle svg,
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }

.nav-dropdown-item {
  display: flex; align-items: center; gap: 0.75rem; padding: 0.7rem 1rem;
  border-radius: 6px; font-size: 0.875rem; font-weight: 500; color: var(--text-body);
  transition: background var(--t-fast), color var(--t-fast);
}
.nav-dropdown-item:hover { background: var(--green-50); color: var(--green-700); }
.nav-dropdown-item-icon {
  width: 30px; height: 30px; background: var(--green-100); border-radius: 6px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--green-600);
}

.btn-demo {
  background: var(--green-700) !important; color: var(--white) !important;
  padding: 0.45rem 1.1rem !important; border-radius: 6px !important; font-weight: 600 !important;
  transition: background var(--t-fast), box-shadow var(--t-fast) !important;
}
.btn-demo:hover { background: var(--green-800) !important; box-shadow: var(--shadow-green) !important; }

.nav-mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; color: var(--text-dark); }

/* Mobile menu */
.nav-mobile-menu {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem; flex-direction: column; gap: 0;
  box-shadow: var(--shadow-lg);
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-link {
  padding: 0.75rem 0.5rem; font-size: 0.9375rem; font-weight: 500;
  color: var(--text-body); border-bottom: 1px solid var(--border);
  transition: color var(--t-fast);
}
.nav-mobile-link:last-of-type { border-bottom: none; }
.nav-mobile-link:hover { color: var(--green-700); }
.nav-mobile-submenu { padding-left: 1rem; }
.nav-mobile-submenu a { display: block; padding: 0.4rem 0; font-size: 0.9rem; color: var(--text-muted); }
.nav-mobile-submenu a:hover { color: var(--green-700); }

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem; border-radius: 6px;
  font-family: var(--font-body); font-size: 0.9375rem; font-weight: 600;
  cursor: pointer; transition: all var(--t-base);
  border: 2px solid transparent; text-decoration: none; line-height: 1;
}
.btn-primary { background: var(--green-700); color: var(--white); border-color: var(--green-700); }
.btn-primary:hover { background: var(--green-800); border-color: var(--green-800); transform: translateY(-2px); box-shadow: var(--shadow-green); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); }
.btn-outline-dark { background: transparent; color: var(--green-700); border-color: var(--green-600); }
.btn-outline-dark:hover { background: var(--green-50); border-color: var(--green-700); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }

/* ============================
   HERO (HOME)
   ============================ */
.hero {
  min-height: 100vh;
  background:
    radial-gradient(120% 90% at 80% 0%, #14361f 0%, rgba(20,54,31,0) 55%),
    radial-gradient(90% 80% at 10% 100%, #0f2d18 0%, rgba(15,45,24,0) 60%),
    linear-gradient(160deg, #0a2010 0%, #071a0d 60%, #061509 100%);
  display: flex; align-items: center; position: relative; overflow: hidden;
}

/* Self-hosted ambient background — orbs + topographic lines */
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5;
}
.hero-orb-1 {
  width: 540px; height: 540px; top: -160px; right: -120px;
  background: radial-gradient(circle, rgba(58,140,82,0.55), rgba(58,140,82,0) 70%);
  animation: heroOrb 13s ease-in-out infinite;
}
.hero-orb-2 {
  width: 460px; height: 460px; bottom: -180px; left: -100px;
  background: radial-gradient(circle, rgba(30,92,46,0.6), rgba(30,92,46,0) 70%);
  animation: heroOrb 16s ease-in-out infinite reverse;
}
@keyframes heroOrb {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-24px,28px) scale(1.08); }
}
.hero-topo { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.9; }

.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(120% 100% at 50% 40%, #000 30%, transparent 80%);
          mask-image: radial-gradient(120% 100% at 50% 40%, #000 30%, transparent 80%);
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max-width); margin: 0 auto; width: 100%;
  padding: calc(var(--nav-height) + var(--topbar-height) + 4rem) 2rem 5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(224,163,62,0.35);
  border-radius: 100px; padding: 0.375rem 1rem;
  font-size: 0.75rem; font-weight: 700; color: var(--green-300);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.5rem;
}
.eyebrow-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

.hero h1 { color: var(--white); margin-bottom: 1.5rem; line-height: 1.08; font-weight: 800; }
.hero h1 strong { font-style: normal; color: var(--green-300); font-weight: 700; }

.hero-sub { color: rgba(255,255,255,0.72); font-size: 1.0625rem; margin-bottom: 2.5rem; line-height: 1.75; max-width: 520px; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero visual — live dashboard panel + floating metric cards */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 420px; }

/* Faux app window */
.hero-stage {
  position: relative; width: 100%; max-width: 460px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.14); border-radius: 18px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.45), 0 8px 24px rgba(0,0,0,0.3);
  backdrop-filter: blur(12px); overflow: hidden;
  animation: flt1 6s ease-in-out infinite;
}
.hero-stage-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 0.7rem 1rem; background: rgba(0,0,0,0.28);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hsb-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.22); }
.hsb-dot:nth-child(1) { background: #ff5f57; } .hsb-dot:nth-child(2) { background: #febc2e; } .hsb-dot:nth-child(3) { background: #28c840; }
.hsb-title { margin-left: 0.5rem; font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.6); letter-spacing: 0.01em; }
.hsb-live { margin-left: auto; display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.66rem; font-weight: 700; color: var(--green-300); text-transform: uppercase; letter-spacing: 0.08em; }
.hero-stage-body { padding: 1.25rem 1.35rem 1.4rem; }

.hs-chart-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 0.6rem; }
.hs-chart-label { display: block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.45); font-weight: 600; margin-bottom: 0.3rem; }
.hs-chart-value { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--white); letter-spacing: -0.02em; }
.hs-trend { font-size: 0.78rem; font-weight: 700; color: var(--green-300); font-family: var(--font-body); margin-left: 0.25rem; }
.hs-chip-row { display: flex; gap: 0.3rem; }
.hs-chip { font-size: 0.66rem; font-weight: 600; color: rgba(255,255,255,0.5); padding: 0.2rem 0.5rem; border-radius: 7px; border: 1px solid rgba(255,255,255,0.1); }
.hs-chip-on { color: var(--green-200); background: rgba(91,186,116,0.16); border-color: rgba(91,186,116,0.3); }
.hs-chart { width: 100%; height: 84px; display: block; margin-bottom: 1rem; }

.hs-rows { display: flex; flex-direction: column; gap: 0.5rem; }
.hs-row {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 0.6rem;
  padding: 0.55rem 0.7rem; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; font-size: 0.76rem;
}
.hs-row-id { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 700; color: var(--white); font-variant-numeric: tabular-nums; }
.hs-row-flow { color: rgba(255,255,255,0.5); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hs-row-tag { font-size: 0.64rem; font-weight: 700; padding: 0.18rem 0.5rem; border-radius: 100px; white-space: nowrap; }
.hs-tag-ok { color: var(--green-200); background: rgba(91,186,116,0.16); }
.hs-tag-pack { color: #fbd27a; background: rgba(251,188,46,0.14); }
.hs-dot-amber { width: 6px; height: 6px; border-radius: 50%; background: #febc2e; flex-shrink: 0; }

/* Floating metric cards overlapping the panel */
.h-card {
  position: absolute; background: rgba(20,40,26,0.72);
  border: 1px solid rgba(91,186,116,0.28); border-radius: 16px;
  padding: 1rem 1.15rem; backdrop-filter: blur(14px); color: var(--white);
  box-shadow: 0 18px 40px rgba(0,0,0,0.4); z-index: 3; width: 190px;
}
.h-card-profit { top: -28px; right: -26px; animation: flt2 5s ease-in-out infinite; }
.h-card-trace  { bottom: -30px; left: -30px; width: 220px; animation: flt3b 4.6s ease-in-out infinite; animation-delay: 0.8s; }
.h-card-integ-logos { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.2rem; }
.h-card-integ-logos span { font-size: 0.68rem; font-weight: 600; color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); border-radius: 7px; padding: 0.18rem 0.45rem; }
@keyframes flt3b { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.h-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.55rem; }
.h-card-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.09em; color: var(--green-300); margin-bottom: 0.4rem; font-weight: 700; }
.h-card-head .h-card-label { margin-bottom: 0; }
.h-card-value { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; line-height: 1.05; margin-bottom: 0.35rem; letter-spacing: -0.02em; }
.h-card-value-lg { font-size: 2.1rem; color: var(--green-300); margin-bottom: 0.5rem; }
.h-card-meta { font-size: 0.76rem; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 0.4rem; }
.h-card-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-400); flex-shrink: 0; box-shadow: 0 0 0 0 rgba(91,186,116,0.7); animation: hcPulse 2s ease-out infinite; }
.h-card-live { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.68rem; font-weight: 700; color: var(--green-300); }
.h-card-flow { display: flex; align-items: center; gap: 0.4rem; font-size: 0.74rem; font-weight: 600; color: rgba(255,255,255,0.78); }
.hc-arrow { color: var(--green-400); }
.h-card-spark { width: 100%; height: 30px; display: block; margin-bottom: 0.45rem; }

@keyframes hcPulse {
  0%   { box-shadow: 0 0 0 0 rgba(91,186,116,0.6); }
  70%  { box-shadow: 0 0 0 7px rgba(91,186,116,0); }
  100% { box-shadow: 0 0 0 0 rgba(91,186,116,0); }
}

/* Hero trust row */
.hero-trust { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 2.25rem; }
.hero-trust li { display: flex; align-items: center; gap: 0.6rem; color: rgba(255,255,255,0.72); font-size: 0.9rem; font-weight: 500; }
.hero-trust svg { color: var(--green-400); flex-shrink: 0; }

@keyframes flt1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes flt2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes flt3 { 0%,100% { transform: translate(-40%, -50%) translateY(0); } 50% { transform: translate(-40%, -50%) translateY(-10px); } }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.35); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
@keyframes scrollBounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(5px); } }

/* ============================
   SECTION HEADER
   ============================ */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--green-600);
  margin-bottom: 0.75rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--text-muted); max-width: 560px; margin: 0 auto; font-size: 1.0625rem; }
.section-header.left { text-align: left; }
.section-header.left p { margin: 0; }

/* ── Warm accent: section-tag on dark backgrounds uses gold ──────────────────
   Applied via .section-tag--warm modifier, or via parent dark-section overrides
   below. NOT applied globally — only where the context benefits from warmth.
   ──────────────────────────────────────────────────────────────────────────── */
.section-tag--warm { color: var(--gold) !important; }

/* Warm keyline accent under key H2s on light/cream sections (opt-in via class) */
.h2-warm-underline {
  display: inline-block;
  position: relative;
}
.h2-warm-underline::after {
  content: '';
  display: block;
  width: 3rem;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  border-radius: 2px;
  margin-top: 0.65rem;
}

/* ============================
   SOLUTIONS CARDS
   ============================ */
.solutions-preview { background: var(--cream); }
.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.solution-card {
  background: var(--white); border-radius: 14px; padding: 2rem;
  border: 1px solid var(--border); position: relative; overflow: hidden;
  transition: box-shadow var(--t-base), transform var(--t-base), border-color var(--t-base);
}
.solution-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green-600), var(--green-400));
  transform: scaleX(0); transform-origin: left; transition: transform var(--t-base);
}
.solution-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: var(--border-green); }
.solution-card:hover::after { transform: scaleX(1); }

.solution-icon {
  width: 50px; height: 50px; background: var(--green-100); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
  color: var(--green-700);
}
.solution-card h3 { font-size: 1.25rem; margin-bottom: 0.625rem; }
.solution-card p { color: var(--text-muted); font-size: 0.9375rem; margin-bottom: 1.5rem; line-height: 1.65; }

.solution-link {
  display: inline-flex; align-items: center; gap: 0.375rem;
  color: var(--green-600); font-weight: 600; font-size: 0.875rem;
  transition: gap var(--t-fast), color var(--t-fast);
}
.solution-link:hover { gap: 0.625rem; color: var(--green-800); }

/* ============================
   WHY FRESHTRACK
   ============================ */
.why-pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

.pillar { text-align: center; padding: 2rem 1.25rem; }
.pillar-icon {
  width: 64px; height: 64px; background: var(--green-100); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; color: var(--green-700);
}
.pillar h4 { font-size: 1.125rem; margin-bottom: 0.625rem; font-family: var(--font-body); font-weight: 700; color: var(--text-dark); }
.pillar p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.65; }

/* ============================
   CLIENTS MARQUEE
   ============================ */
.clients-section {
  background: var(--green-50); padding: 5rem 0 4.5rem; overflow: hidden;
  border-top: 1px solid var(--green-100); border-bottom: 1px solid var(--green-100);
}
.clients-header-block { text-align: center; margin-bottom: 3.5rem; }
.clients-header-block h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); color: var(--green-900); margin-top: 0.5rem; }

.marquee-outer { overflow: hidden; }
.marquee-track {
  display: flex; gap: 1.75rem; width: max-content; padding: 0.5rem 0;
  animation: marquee 32s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.client-logo-pill {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  background: var(--white); border: 1.5px solid var(--green-200); border-radius: 16px;
  padding: 1.25rem 2.25rem; min-width: 190px; height: 100px;
  box-shadow: 0 2px 10px rgba(26,92,46,0.06); transition: all 0.28s ease;
}
.client-logo-pill:hover {
  border-color: var(--green-400); box-shadow: 0 10px 32px rgba(26,92,46,0.14);
  transform: translateY(-4px);
}

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials { background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.testimonial-card {
  background: var(--white); border-radius: 14px; padding: 2rem;
  border: 1px solid var(--border); transition: box-shadow var(--t-base);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }

.quote-mark { font-family: var(--font-display); font-size: 4rem; color: var(--green-300); line-height: 0.6; margin-bottom: 1.25rem; display: block; }
.testimonial-text { font-size: 0.9375rem; color: var(--text-body); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }

.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.t-avatar {
  width: 42px; height: 42px; background: var(--green-100); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--green-700);
  font-weight: 700; font-size: 0.875rem; flex-shrink: 0; font-family: var(--font-body);
}
.t-name { font-weight: 700; font-size: 0.9375rem; color: var(--text-dark); font-family: var(--font-body); }
.t-company { font-size: 0.8125rem; color: var(--text-muted); margin-top: 0.1rem; }

/* ============================
   NEWS CARDS
   ============================ */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.news-card { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: var(--white); transition: box-shadow var(--t-base), transform var(--t-base); }
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.news-card-img {
  height: 156px; background: var(--green-100); display: flex;
  align-items: center; justify-content: center; position: relative; overflow: hidden; color: var(--green-400);
}
.news-card-img::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(30,92,46,0.12) 1px, transparent 0);
  background-size: 18px 18px;
}
.news-card-img svg { position: relative; z-index: 1; opacity: 0.6; }
.news-card-body { padding: 1.5rem; }
.news-date { font-size: 0.8rem; color: var(--text-light); margin-bottom: 0.5rem; font-weight: 500; }
.news-card h3 { font-size: 0.9375rem; margin-bottom: 1rem; line-height: 1.45; font-family: var(--font-body); font-weight: 600; color: var(--text-dark); }
.read-more { font-size: 0.875rem; color: var(--green-600); font-weight: 600; display: inline-flex; align-items: center; gap: 0.25rem; transition: gap var(--t-fast), color var(--t-fast); }
.read-more:hover { gap: 0.5rem; color: var(--green-800); }

/* ============================
   CTA BANNER
   ============================ */
.cta-banner {
  background:
    radial-gradient(90% 140% at 50% -20%, rgba(91,186,116,0.35) 0%, rgba(91,186,116,0) 55%),
    linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  padding: 5.5rem 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(100% 100% at 50% 0%, #000 35%, transparent 85%);
          mask-image: radial-gradient(100% 100% at 50% 0%, #000 35%, transparent 85%);
}
.cta-inner { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 0.875rem; font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 800; }
.cta-banner p { color: rgba(255,255,255,0.68); margin-bottom: 2rem; font-size: 1.0625rem; }
.cta-banner .btn-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================
   FOOTER
   ============================ */
footer { background: var(--green-900); color: rgba(255,255,255,0.65); padding: 4.5rem 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 2fr) repeat(auto-fit, minmax(130px, 1fr));
  gap: 2.25rem;
  padding-bottom: 3rem;
}

.footer-logo-img { height: 34px; width: auto; filter: brightness(0) invert(1); }
.footer-tagline { margin-top: 1rem; font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.7; }

.footer-heading { font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--green-400); margin-bottom: 1.25rem; }
.footer-links li + li { margin-top: 0.6rem; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.55); transition: color var(--t-fast); }
.footer-links a:hover { color: var(--white); }

.footer-contact-item { display: flex; flex-direction: column; margin-bottom: 0.75rem; font-size: 0.875rem; }
.footer-contact-item strong { color: var(--green-400); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.15rem; }
.footer-contact-item span, .footer-contact-item a { color: rgba(255,255,255,0.7); transition: color var(--t-fast); }
.footer-contact-item a:hover { color: var(--white); }

.footer-social { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
.footer-social-btn {
  width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: all 0.22s ease;
}
.footer-social-btn:hover { color: #fff; }
.footer-social-btn[aria-label="Facebook"]:hover { background: #1877F2; border-color: #1877F2; }
.footer-social-btn[aria-label="LinkedIn"]:hover { background: #0A66C2; border-color: #0A66C2; }
.footer-social-btn[aria-label="Instagram"]:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%); border-color: transparent; }

.footer-news { display: flex; flex-direction: column; }
.footer-news-item { display: flex; flex-direction: column; gap: 0.2rem; text-decoration: none; padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-news-item:first-child { padding-top: 0; }
.footer-news-item:last-child { border-bottom: none; }
.footer-news-date { font-size: 0.68rem; color: var(--green-400); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-news-title { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.45; transition: color var(--t-fast); }
.footer-news-item:hover .footer-news-title { color: var(--white); }

.footer-bottom { background: var(--green-950); padding: 1.5rem 0; }
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.8125rem; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 0.75rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color var(--t-fast); }
.footer-bottom a:hover { color: var(--white); }

/* ============================
   PAGE HERO (inner pages)
   ============================ */
.page-hero {
  background:
    radial-gradient(120% 90% at 85% 0%, #14361f 0%, rgba(20,54,31,0) 55%),
    radial-gradient(90% 90% at 5% 100%, #0f2d18 0%, rgba(15,45,24,0) 60%),
    linear-gradient(160deg, #0d2a16 0%, #0a2010 60%, #071a0d 100%);
  padding: calc(var(--nav-height) + var(--topbar-height) + 5rem) 0 4.25rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(91,186,116,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 10%, rgba(143,212,160,0.08) 0%, transparent 50%);
}
.page-hero::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(120% 120% at 70% 30%, #000 25%, transparent 80%);
          mask-image: radial-gradient(120% 120% at 70% 30%, #000 25%, transparent 80%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 820px; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; font-weight: 800; }
.page-hero .lead { color: rgba(255,255,255,0.72); }
.page-hero .hero-eyebrow { margin-bottom: 1.25rem; }

/* ============================
   CAREERS / JOBS PAGE
   ============================ */
.benefit-item strong { color: var(--text-dark); font-weight: 700; }
.roles-section { background: var(--cream); }
.role-list { display: flex; flex-direction: column; gap: 1rem; }
.role-card {
  display: flex; align-items: center; gap: 1.5rem; justify-content: space-between;
  background: var(--white); border: 1px solid var(--border); border-radius: 14px;
  padding: 1.75rem 2rem; position: relative; overflow: hidden;
  transition: box-shadow var(--t-base), transform var(--t-base), border-color var(--t-base);
}
.role-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--green-500), var(--green-700));
  transform: scaleY(0); transform-origin: top; transition: transform var(--t-base);
}
.role-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--border-green); }
.role-card:hover::before { transform: scaleY(1); }
.role-main { min-width: 0; }
.role-title { font-size: 1.25rem; margin-bottom: 0.4rem; }
.role-desc { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.6; margin-bottom: 1rem; max-width: 60ch; }
.role-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.role-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; font-weight: 600; color: var(--text-muted);
  background: var(--green-50); border: 1px solid var(--green-100);
  border-radius: 100px; padding: 0.3rem 0.75rem;
}
.role-tag svg { color: var(--green-600); }
.role-tag-dept { color: var(--green-700); background: var(--green-100); border-color: var(--border-green); }
.role-apply { flex-shrink: 0; }
.roles-open-app {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  margin-top: 2.5rem; padding: 2rem 2.25rem;
  background: var(--white); border: 1px dashed var(--border-green); border-radius: 14px;
}
.roles-open-app h3 { font-size: 1.2rem; margin-bottom: 0.35rem; }
.roles-open-app p { color: var(--text-muted); font-size: 0.9375rem; }

@media (max-width: 700px) {
  .role-card { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .role-apply { width: 100%; justify-content: center; }
  .roles-open-app { flex-direction: column; align-items: flex-start; }
}

/* ============================
   PRICING PAGE
   ============================ */
.pricing-section { background: var(--cream); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }

.price-card {
  border-radius: 22px; padding: 2.25rem 2rem 2.5rem;
  display: flex; flex-direction: column; position: relative; overflow: hidden;
  border: 1px solid transparent;
}
.price-card--grower   { background: var(--green-50); border-color: var(--green-100); color: var(--text-body); }
.price-card--packer   { background: linear-gradient(170deg, var(--green-500) 0%, var(--green-600) 100%); color: #fff; box-shadow: 0 30px 70px rgba(19,47,29,0.3); }
.price-card--marketer { background: linear-gradient(170deg, #1a4826 0%, #132f1d 100%); color: #fff; border-color: rgba(255,255,255,0.1); }
@media (min-width: 921px) { .price-card--packer { transform: translateY(-16px); } }

.price-ribbon {
  position: absolute; top: 1.25rem; right: -2.5rem; transform: rotate(45deg);
  background: var(--green-950); color: var(--green-200);
  font-size: 0.64rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.35rem 3rem;
}

.price-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.25rem; }
.price-badge { display: flex; flex-direction: column; line-height: 1; }
.pb-from { font-size: 0.8rem; font-weight: 600; opacity: 0.7; margin-bottom: 0.2rem; }
.pb-amount { font-family: var(--font-display); font-size: 2.75rem; font-weight: 800; letter-spacing: -0.02em; }
.pb-period { font-size: 0.8rem; opacity: 0.7; margin-top: 0.25rem; }
.plan-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.price-card--grower   .plan-icon { background: var(--green-100); color: var(--green-700); }
.price-card--packer   .plan-icon { background: rgba(255,255,255,0.18); color: #fff; }
.price-card--marketer .plan-icon { background: rgba(255,255,255,0.1); color: var(--green-300); }

.plan-name { font-size: 1.6rem; margin-bottom: 0.35rem; font-weight: 700; }
.price-card--grower   .plan-name { color: var(--text-dark); }
.price-card--packer   .plan-name, .price-card--marketer .plan-name { color: #fff; }
.plan-name span { color: var(--green-500); }
.price-card--packer   .plan-name span { color: var(--green-100); }
.price-card--marketer .plan-name span { color: var(--green-300); }

.plan-tagline { font-size: 0.95rem; line-height: 1.5; margin-bottom: 1.25rem; opacity: 0.85; }
.price-card--grower .plan-tagline { color: var(--green-700); opacity: 1; }

.plan-includes {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; font-weight: 700; margin-bottom: 1rem;
  padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.18);
}
.plan-includes svg { flex-shrink: 0; }

.plan-features { display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 1.5rem; }
.plan-features li {
  position: relative; padding-left: 1.9rem; font-size: 0.9rem; line-height: 1.55;
}
.plan-features li::before {
  content: ''; position: absolute; left: 0; top: 0.05em; width: 1.15rem; height: 1.15rem;
  background-repeat: no-repeat; background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233a8c52'%3E%3Cpath d='M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.52-4.48 10-10 10Z'/%3E%3C/svg%3E");
}
.price-card--packer .plan-features li::before,
.price-card--marketer .plan-features li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23bce8c8'%3E%3Cpath d='M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.52-4.48 10-10 10Z'/%3E%3C/svg%3E");
}
.plan-features strong { font-weight: 700; }
.price-card--grower .plan-features strong { color: var(--text-dark); }
.price-card--packer .plan-features strong, .price-card--marketer .plan-features strong { color: #fff; }
.price-card--packer .plan-features li, .price-card--marketer .plan-features li { color: rgba(255,255,255,0.85); }

.plan-addons { margin-top: auto; padding-top: 1.25rem; }
.plan-addons-label {
  display: block; font-size: 0.68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 0.4rem;
}
.price-card--grower .plan-addons-label { color: var(--green-600); }
.price-card--packer .plan-addons-label, .price-card--marketer .plan-addons-label { color: var(--green-200); }
.plan-addons p { font-size: 0.8rem; line-height: 1.55; opacity: 0.8; }

.price-cta { width: 100%; justify-content: center; margin-top: 1.5rem; }
.price-card--packer .price-cta { background: #fff; color: var(--green-700); border-color: #fff; }
.price-card--packer .price-cta:hover { background: var(--green-50); border-color: var(--green-50); color: var(--green-800); }
.price-card--marketer .price-cta { background: var(--green-500); border-color: var(--green-500); }
.price-card--marketer .price-cta:hover { background: var(--green-400); border-color: var(--green-400); }

.pricing-note { text-align: center; font-size: 0.85rem; color: var(--text-muted); margin: 2.5rem auto 0; max-width: 640px; line-height: 1.6; }
.pricing-note a { color: var(--green-700); font-weight: 600; text-decoration: underline; }

.pricing-platform {
  display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap;
  margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--border);
}
.pp-item { display: flex; align-items: center; gap: 1rem; max-width: 360px; }
.pp-icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: var(--green-100); color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
}
.pp-item strong { display: block; font-size: 0.95rem; color: var(--text-dark); font-weight: 700; margin-bottom: 0.15rem; }
.pp-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

@media (max-width: 920px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ============================
   FIELD & SHED SYSTEMS (solutions pages)
   ============================ */
.systems-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.system-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 18px;
  padding: 2rem; display: flex; flex-direction: column; position: relative; overflow: hidden;
  transition: box-shadow var(--t-base), transform var(--t-base), border-color var(--t-base);
}
.system-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green-600), var(--green-400));
  transform: scaleX(0); transform-origin: left; transition: transform var(--t-base);
}
.system-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--border-green); }
.system-card:hover::after { transform: scaleX(1); }

.system-card-head { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.1rem; }
.system-icon {
  width: 52px; height: 52px; border-radius: 13px; flex-shrink: 0;
  background: var(--green-100); color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
}
.system-badge {
  display: inline-block; font-size: 0.62rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.09em; color: var(--green-700); background: var(--green-100);
  border-radius: 100px; padding: 0.2rem 0.6rem; margin-bottom: 0.5rem;
}
.system-name { font-size: 1.3rem; margin-bottom: 0.2rem; }
.system-tagline { color: var(--green-600); font-weight: 600; font-size: 0.9rem; font-style: italic; }
.system-desc { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.65; margin-bottom: 1.25rem; }

.system-features { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.25rem; }
.system-features li { position: relative; padding-left: 1.7rem; font-size: 0.9rem; line-height: 1.5; color: var(--text-body); }
.system-features li::before {
  content: ''; position: absolute; left: 0; top: 0.05em; width: 1.1rem; height: 1.1rem;
  background-repeat: no-repeat; background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233a8c52'%3E%3Cpath d='M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.52-4.48 10-10 10Z'/%3E%3C/svg%3E");
}
.system-features strong { color: var(--text-dark); font-weight: 700; }

.gs1-tag {
  display: inline-flex; align-items: center; gap: 0.45rem; align-self: flex-start;
  font-size: 0.74rem; font-weight: 700; color: var(--green-700);
  background: var(--green-50); border: 1px solid var(--border-green); border-radius: 100px;
  padding: 0.35rem 0.8rem; margin-bottom: 1.25rem;
}
.gs1-tag svg { color: var(--green-600); }

.system-flow { display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem; margin-top: auto; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.system-step { font-size: 0.7rem; font-weight: 600; color: var(--text-muted); background: var(--green-50); border: 1px solid var(--green-100); border-radius: 8px; padding: 0.3rem 0.55rem; }
.system-flow-arrow { color: var(--green-400); font-weight: 700; font-size: 0.8rem; }

@media (max-width: 768px) { .systems-grid { grid-template-columns: 1fr; } }

/* ============================
   HOMEPAGE PRICING TEASER
   ============================ */
.pricing-teaser-section { background: var(--cream); }
.pricing-teaser {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 3rem; align-items: center;
  background: var(--white); border: 1px solid var(--border); border-radius: 22px;
  padding: 3rem 3.25rem; box-shadow: var(--shadow-sm);
}
.pt-text .section-tag { display: block; }
.pt-text h2 { margin: 0.5rem 0 1rem; }
.pt-text p { color: var(--text-muted); margin-bottom: 1.75rem; max-width: 44ch; line-height: 1.7; }

.pt-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.pt-plan {
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
  padding: 1.6rem 1rem; border-radius: 16px; border: 1px solid var(--border);
  background: var(--cream); text-align: center; position: relative;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.pt-plan:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--border-green); }
.pt-plan-featured { background: linear-gradient(165deg, var(--green-500), var(--green-600)); border-color: transparent; box-shadow: var(--shadow-md); }
@media (min-width: 769px) { .pt-plan-featured { transform: translateY(-10px); } .pt-plan-featured:hover { transform: translateY(-15px); } }
.pt-plan-name { font-weight: 700; font-size: 0.95rem; color: var(--text-dark); }
.pt-plan-featured .pt-plan-name { color: #fff; }
.pt-plan-price { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--green-700); letter-spacing: -0.02em; }
.pt-plan-price span { font-size: 0.8rem; font-weight: 500; opacity: 0.65; }
.pt-plan-featured .pt-plan-price { color: #fff; }
.pt-plan-note { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; }
.pt-plan-featured .pt-plan-note { color: rgba(255,255,255,0.8); }
.pt-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--green-950); color: var(--green-200);
  font-size: 0.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.22rem 0.65rem; border-radius: 100px; white-space: nowrap;
}
@media (max-width: 768px) {
  .pricing-teaser { grid-template-columns: 1fr; gap: 2.5rem; padding: 2rem 1.5rem; }
}

/* ============================
   BENEFITS
   ============================ */
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.benefit-item {
  display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem;
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.benefit-item:hover { border-color: var(--border-green); background: var(--green-50); }
.benefit-check {
  width: 22px; height: 22px; background: var(--green-700); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 0.1rem; color: var(--white);
}
.benefit-item strong { font-size: 0.9375rem; font-weight: 600; color: var(--text-dark); font-family: var(--font-body); line-height: 1.5; }

/* ============================
   MODULES
   ============================ */
.modules-section { background: var(--cream); }
.modules-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

.modules-block { background: var(--white); border-radius: 14px; padding: 2rem; border: 1px solid var(--border); }
.modules-block-heading {
  font-family: var(--font-body); font-size: 0.8125rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--green-700);
  margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 0.5rem;
}
.tags-wrap { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.mtag {
  display: inline-block; padding: 0.3rem 0.8rem; border-radius: 100px;
  font-size: 0.8125rem; font-weight: 500; border: 1px solid;
}
.mtag-base { background: var(--green-100); color: var(--green-800); border-color: var(--green-200); }
.mtag-addon { background: var(--cream); color: var(--text-body); border-color: var(--border); }

/* ============================
   ABOUT PAGE
   ============================ */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.about-stat-card {
  background: var(--green-800); border-radius: 16px; padding: 2.5rem;
  color: var(--white); position: relative; overflow: hidden;
}
.about-stat-card::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 22px 22px;
}
.stat-row { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.stat-item {}
.stat-value { font-family: var(--font-display); font-size: 2.75rem; font-weight: 700; color: var(--green-300); line-height: 1; }
.stat-label { font-size: 0.8125rem; color: rgba(255,255,255,0.5); margin-top: 0.25rem; }

.mission-block {
  position: relative; z-index: 1;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 1.5rem;
}
.mission-block p { font-size: 0.9375rem; color: rgba(255,255,255,0.75); line-height: 1.75; }

.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 2rem; }
.value-item {
  display: flex; align-items: flex-start; gap: 0.875rem; padding: 1.25rem;
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
}
.value-icon { width: 36px; height: 36px; background: var(--green-100); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--green-700); }
.value-item h4 { font-size: 0.9375rem; font-weight: 700; font-family: var(--font-body); margin-bottom: 0.25rem; }
.value-item p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ============================
   CONTACT PAGE
   ============================ */
.contact-layout { display: grid; grid-template-columns: 3fr 2fr; gap: 3.5rem; align-items: start; }

.contact-form-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 2.5rem; }
.contact-form-card h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.contact-form-card .sub { color: var(--text-muted); font-size: 0.9375rem; margin-bottom: 2rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.4rem; }
.form-group input, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border); border-radius: 8px;
  font-family: var(--font-body); font-size: 0.9375rem; color: var(--text-dark); background: var(--white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast); outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(58,140,82,0.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Validation + submit states */
.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
  border-color: #dc2626 !important; box-shadow: 0 0 0 3px rgba(220,38,38,0.1) !important;
}
.field-error { display: block; margin-top: 0.35rem; font-size: 0.8rem; font-weight: 500; color: #dc2626; min-height: 1em; }
.field-error:empty { display: none; }

.form-status { margin-top: 1rem; font-size: 0.9rem; font-weight: 500; line-height: 1.5; }
.form-status:empty { display: none; }
.form-status.success { color: var(--green-700); background: var(--green-50); border: 1px solid var(--border-green); border-radius: 8px; padding: 0.75rem 1rem; }
.form-status.error { color: #b91c1c; }

.btn.is-loading { position: relative; color: transparent !important; pointer-events: none; }
.btn.is-loading::after {
  content: ''; position: absolute; top: 50%; left: 50%; width: 18px; height: 18px; margin: -9px 0 0 -9px;
  border: 2px solid rgba(255,255,255,0.4); border-top-color: #fff; border-radius: 50%;
  animation: btnSpin 0.7s linear infinite;
}
@keyframes btnSpin { to { transform: rotate(360deg); } }

/* Homepage proof and relationship-led sections */
.proof-strip {
  background: var(--white);
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.proof-strip-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 1rem;
}
.proof-strip-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
  background: var(--cream);
}
.proof-strip-feature {
  background: var(--green-900);
  border-color: var(--green-800);
}
.proof-strip-kicker {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--green-700);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.proof-strip-item strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--green-900);
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.15;
}
.proof-strip-item span:last-child {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}
.proof-strip-feature .proof-strip-kicker,
.proof-strip-feature strong {
  color: var(--green-300);
}
.proof-strip-feature span:last-child {
  color: rgba(255,255,255,0.72);
}
.proof-strip-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.35rem;
}
.switch-section {
  background: var(--white);
  padding: 5rem 0;
}
.switch-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: start;
}
.switch-copy {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}
.switch-copy h2 {
  margin-top: 0.7rem;
  margin-bottom: 1rem;
  color: var(--green-900);
}
.switch-copy p {
  color: var(--text-body);
  font-size: 1rem;
  max-width: 560px;
}
.switch-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}
.switch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.switch-card {
  min-height: 220px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--cream);
  padding: 1.5rem;
}
.switch-card h3 {
  margin: 0.55rem 0 0.65rem;
  color: var(--text-dark);
  font-size: 1.12rem;
}
.switch-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}
.switch-label {
  display: inline-flex;
  color: var(--green-700);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.switch-card-proof {
  background: var(--green-900);
  border-color: var(--green-800);
}
.switch-card-proof h3 {
  color: var(--white);
}
.switch-card-proof p {
  color: rgba(255,255,255,0.72);
}
.switch-card-proof .switch-label,
.switch-card-proof a {
  color: var(--green-300);
}
.switch-card-proof a {
  display: inline-flex;
  margin-top: 0.9rem;
  font-size: 0.875rem;
  font-weight: 700;
}
.local-support-section {
  background: var(--green-50);
  border-top: 1px solid var(--green-100);
  border-bottom: 1px solid var(--green-100);
  padding: 5rem 0;
}
.local-support-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 3rem;
  align-items: center;
}
.local-support-copy h2 {
  margin-top: 0.7rem;
  margin-bottom: 1rem;
  color: var(--green-900);
}
.local-support-copy p {
  color: var(--text-body);
  font-size: 1rem;
  max-width: 600px;
}
.local-support-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}
.local-support-panel {
  display: grid;
  gap: 1rem;
}
.local-support-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--border-green);
  border-radius: 8px;
  padding: 1.35rem;
  box-shadow: 0 4px 18px rgba(26,92,46,0.06);
}
.local-support-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  background: var(--green-100);
  flex-shrink: 0;
}
.local-support-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  color: var(--green-900);
}
.local-support-item p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}
.outcomes-section {
  background: var(--white);
  padding: 5rem 0;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.outcome-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.35rem;
  background: var(--cream);
}
.outcome-card h3 {
  color: var(--green-900);
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
}
.outcome-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}
.suite-fit-section {
  background: var(--cream);
  padding: 5rem 0;
}
.suite-fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.suite-fit-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.4rem;
  box-shadow: 0 6px 24px rgba(26,92,46,0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.suite-fit-card:hover {
  transform: translateY(-4px);
  border-color: var(--green-300);
  box-shadow: 0 12px 34px rgba(26,92,46,0.12);
}
.suite-fit-card-featured {
  border-color: var(--green-500);
  box-shadow: 0 14px 42px rgba(26,92,46,0.14);
}
.suite-fit-role {
  width: fit-content;
  color: var(--green-800);
  background: var(--green-100);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.suite-fit-card h3 {
  color: var(--green-950);
  font-size: 1.15rem;
}
.suite-fit-card p,
.suite-fit-card span:not(.suite-fit-role) {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.94rem;
}
.suite-fit-card strong {
  color: var(--green-900);
  margin-top: auto;
  font-size: 0.9rem;
}
.before-after-section {
  background: var(--white);
  padding: 5rem 0;
}
.before-after-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.35fr);
  gap: 3rem;
  align-items: center;
}
.before-after-copy h2 {
  color: var(--green-950);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.1;
  margin: 0.5rem 0 1rem;
}
.before-after-copy p {
  color: var(--text-body);
  line-height: 1.7;
  max-width: 560px;
}
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.before-after-card {
  border-radius: 8px;
  padding: 1.35rem;
  border: 1px solid var(--border);
}
.before-after-card span {
  display: block;
  font-weight: 800;
  color: var(--green-950);
  margin-bottom: 1rem;
}
.before-after-card ul {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-body);
  line-height: 1.55;
  font-size: 0.94rem;
}
.before-card {
  background: #fff8f0;
  border-color: #f1d6b6;
}
.after-card {
  background: var(--green-50);
  border-color: var(--border-green);
}
.home-faq-section {
  background: var(--cream);
  padding: 5rem 0;
}
.home-faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.home-faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
}
.home-faq-item h3 {
  color: var(--green-950);
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: 0.65rem;
}
.home-faq-item p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.92rem;
}
.home-faq-actions {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
@media (max-width: 900px) {
  .proof-strip-grid,
  .switch-layout,
  .local-support-layout,
  .before-after-layout {
    grid-template-columns: 1fr;
  }
  .switch-copy {
    position: static;
  }
  .outcomes-grid,
  .suite-fit-grid,
  .home-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .switch-section,
  .local-support-section,
  .outcomes-section,
  .suite-fit-section,
  .before-after-section,
  .home-faq-section {
    padding: 3.5rem 0;
  }
  .switch-grid,
  .outcomes-grid,
  .suite-fit-grid,
  .before-after-grid,
  .home-faq-grid {
    grid-template-columns: 1fr;
  }
  .switch-card {
    min-height: auto;
  }
  .local-support-item {
    grid-template-columns: 1fr;
  }
  .switch-actions .btn,
  .local-support-actions .btn,
  .home-faq-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

body.submit-dialog-open { overflow: hidden; }

.submit-dialog {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(8, 25, 14, 0.58);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s var(--ease);
}
.submit-dialog.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.submit-dialog-card {
  width: min(100%, 430px);
  background: var(--white);
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 16px;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.32);
  padding: 2.1rem;
  text-align: center;
  transform: translateY(10px) scale(0.98);
  transition: transform 0.22s var(--ease);
  outline: none;
}
.submit-dialog.is-visible .submit-dialog-card {
  transform: translateY(0) scale(1);
}
.submit-dialog-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.2rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  background: var(--green-50);
  border: 1px solid var(--border-green);
}
.submit-dialog-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(58,140,82,0.2);
  border-top-color: var(--green-700);
  border-radius: 50%;
  animation: btnSpin 0.75s linear infinite;
}
.submit-dialog-check,
.submit-dialog-error,
.submit-dialog-close {
  display: none;
}
.submit-dialog h3 {
  margin-bottom: 0.55rem;
  color: var(--text-dark);
  font-size: 1.45rem;
}
.submit-dialog p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.55;
}
.submit-dialog.is-success .submit-dialog-spinner,
.submit-dialog.is-error .submit-dialog-spinner {
  display: none;
}
.submit-dialog.is-success .submit-dialog-check,
.submit-dialog.is-error .submit-dialog-error {
  display: block;
}
.submit-dialog.is-success .submit-dialog-close,
.submit-dialog.is-error .submit-dialog-close {
  display: inline-flex;
  margin-top: 1.4rem;
  min-width: 128px;
  justify-content: center;
}
.submit-dialog.is-error .submit-dialog-icon {
  color: #b91c1c;
  background: #fef2f2;
  border-color: #fecaca;
}

.contact-info-panel { background: var(--green-800); border-radius: 16px; padding: 2.5rem; color: var(--white); position: sticky; top: calc(var(--nav-height) + 1rem); }
.contact-info-panel h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 2rem; }
.c-info-item { display: flex; gap: 1rem; margin-bottom: 1.75rem; }
.c-info-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--green-300); }
.c-info-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.09em; color: rgba(255,255,255,0.4); font-weight: 700; margin-bottom: 0.2rem; }
.c-info-value { font-size: 0.9rem; color: rgba(255,255,255,0.82); line-height: 1.6; }
.c-info-value a { color: var(--green-300); transition: color var(--t-fast); }
.c-info-value a:hover { color: var(--white); }

.contact-social { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
.contact-social p { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.09em; color: rgba(255,255,255,0.35); font-weight: 700; margin-bottom: 0.875rem; }
.contact-social-btns { display: flex; gap: 0.6rem; }
.contact-social-btn {
  width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65); transition: all 0.22s ease;
}
.contact-social-btn:hover { color: #fff; }
.contact-social-btn[aria-label="Facebook"]:hover { background: #1877F2; border-color: #1877F2; }
.contact-social-btn[aria-label="LinkedIn"]:hover { background: #0A66C2; border-color: #0A66C2; }
.contact-social-btn[aria-label="Instagram"]:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%); border-color: transparent; }

/* ============================
   NEWS PAGE
   ============================ */
.news-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.news-page-card { border-radius: 14px; border: 1px solid var(--border); overflow: hidden; background: var(--white); transition: box-shadow var(--t-base), transform var(--t-base); }
.news-page-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.npc-img {
  height: 200px; background: var(--green-100); display: flex; align-items: center;
  justify-content: center; position: relative; overflow: hidden; color: var(--green-400);
}
.npc-img::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(30,92,46,0.1) 1px, transparent 0);
  background-size: 16px 16px;
}
.npc-img svg { position: relative; z-index: 1; opacity: 0.5; }
.npc-body { padding: 1.75rem; }

.npc-tag {
  display: inline-block; padding: 0.2rem 0.65rem; background: var(--green-100);
  color: var(--green-700); border-radius: 100px; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.75rem;
}
.npc-date { font-size: 0.8rem; color: var(--text-light); margin-bottom: 0.5rem; font-weight: 500; }
.npc-body h3 { font-size: 1.0625rem; margin-bottom: 0.75rem; font-family: var(--font-body); font-weight: 600; color: var(--text-dark); line-height: 1.4; }
.npc-body p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }

/* Homepage "view all news" CTA */
.news-viewall { text-align: center; margin-top: 2.75rem; }

/* News listing layout + dated navigator */
.news-layout { display: grid; grid-template-columns: minmax(0, 1fr) 290px; gap: 2.5rem; align-items: start; }
.news-layout .news-page-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

.news-nav {
  position: sticky; top: calc(var(--nav-height) + 1.5rem);
  background: var(--white); border: 1px solid var(--border); border-radius: 16px;
  padding: 1.5rem 1.5rem 0.75rem; box-shadow: var(--shadow-sm);
}
.news-nav-h {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text-dark);
  padding-bottom: 1rem; border-bottom: 1px solid var(--border); margin-bottom: 0.5rem;
}
.news-nav-h svg { color: var(--green-600); }
.news-nav-year {
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--green-700); margin: 1rem 0 0.25rem;
}
.news-nav-item { display: block; padding: 0.7rem 0; border-top: 1px solid var(--border); }
.news-nav-year + .news-nav-item { border-top: none; }
.news-nav-date { display: block; font-size: 0.68rem; font-weight: 700; color: var(--green-600); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.15rem; }
.news-nav-headline { display: block; font-size: 0.82rem; color: var(--text-body); line-height: 1.4; transition: color var(--t-fast); }
.news-nav-item:hover .news-nav-headline { color: var(--green-700); }

@media (max-width: 980px) {
  .news-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .news-nav { position: static; order: 2; }
}
@media (max-width: 768px) {
  .news-layout .news-page-grid { grid-template-columns: 1fr; }
}

/* ============================
   SCROLL REVEAL
   Legacy block — rules moved to "Warm Refresh" block at end of file
   where they are refactored for progressive enhancement. Kept as
   a no-op placeholder to preserve line structure for diff readability.
   ============================ */
/* transition base still defined in Warm Refresh block */
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }

/* ============================
   JOURNEY SECTION
   ============================ */
.journey-section { background: var(--green-900); padding: 6rem 0; }

.journey-flow {
  display: grid; grid-template-columns: 1fr 56px 1fr 56px 1fr;
  gap: 0; align-items: stretch; margin-top: 3.5rem;
}
.journey-connector {
  display: flex; align-items: flex-start; justify-content: center; padding-top: 5rem;
}
.journey-step {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 2.25rem; display: flex; flex-direction: column; gap: 0.75rem;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.journey-step:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.2); }
.journey-step-icon {
  width: 60px; height: 60px; border-radius: 14px;
  background: rgba(91,186,116,0.18); border: 1px solid rgba(91,186,116,0.3);
  display: flex; align-items: center; justify-content: center; color: var(--green-400);
}
.journey-step-num {
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--gold-soft);
}
.journey-step h3 { color: var(--white); font-size: 1.5rem; font-weight: 700; margin: 0; }
.journey-step > p { color: rgba(255,255,255,0.75); font-size: 0.9375rem; margin: 0; }
.journey-features { list-style: none; padding: 0; margin: 0.5rem 0 0; display: flex; flex-direction: column; gap: 0.5rem; }
.journey-features li {
  font-size: 0.875rem; color: rgba(255,255,255,0.82);
  padding-left: 1.25rem; position: relative;
}
.journey-features li::before {
  content: ''; position: absolute; left: 0; top: 0.55em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
}
.journey-link {
  display: inline-block; margin-top: 0.75rem;
  font-size: 0.875rem; font-weight: 700; color: var(--green-400);
  text-decoration: none; letter-spacing: 0.02em;
  transition: color 0.2s ease, gap 0.2s ease;
}
.journey-link:hover { color: var(--white); }

/* ============================
   INTEGRATIONS SECTION
   ============================ */
.integrations-section { background: var(--green-50); padding: 6rem 0; border-top: 1px solid var(--green-100); }

.integrations-layout {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start;
}
.integrations-text h2 { margin-top: 0.5rem; margin-bottom: 1rem; }
.integrations-text p { color: var(--text-muted); line-height: 1.75; margin-bottom: 0; }
.integrations-highlight { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.ih-item {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.9375rem; color: var(--text-body);
}
.ih-item svg { color: var(--green-600); flex-shrink: 0; margin-top: 2px; }

.integrations-grid-wrap { display: flex; flex-direction: column; gap: 1.5rem; }
.int-category-block { }
.int-cat-label {
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--green-600); margin-bottom: 0.75rem;
}
.int-tiles { display: flex; flex-wrap: wrap; gap: 0.625rem; }
.int-tile {
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 10px; padding: 0.6rem 1rem;
  font-size: 0.875rem; font-weight: 600; color: var(--text-body);
  transition: all 0.2s ease;
}
.int-tile:hover { border-color: var(--green-400); box-shadow: 0 4px 16px rgba(26,92,46,0.1); transform: translateY(-2px); }
.int-tile-icon {
  width: 32px; height: 32px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.int-icon-retail  { background: #e8f4ec; color: var(--green-700); }
.int-icon-data    { background: #e8f4ec; color: var(--green-700); }
.int-icon-accounting { background: #e8f0fc; color: #2d5be3; }
.int-icon-mobile  { background: #f0e8fc; color: #7c3aed; }
.int-icon-report  { background: #fef3e8; color: #d4730a; }

/* ============================
   HARDWARE + AUSTRALIAN OWNED
   ============================ */
.hardware-section { background: var(--green-950); padding: 6rem 0; }

/* Australian Owned banner */
.aus-banner {
  display: grid; grid-template-columns: auto 1fr auto; gap: 2.5rem; align-items: center;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 2rem 2.5rem; margin-bottom: 5rem;
}
.aus-flag-icon { flex-shrink: 0; display: flex; align-items: center; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4)); }
.aus-banner-title {
  font-size: 1.1rem; font-weight: 800; color: var(--white); margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.aus-banner-content p { font-size: 0.9375rem; color: rgba(255,255,255,0.55); margin: 0; line-height: 1.65; }
.aus-banner-signals { display: flex; align-items: center; gap: 0; flex-shrink: 0; }
.aus-signal { display: flex; flex-direction: column; align-items: center; padding: 0 1.5rem; }
.aus-signal-val { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; color: var(--green-400); line-height: 1; }
.aus-signal-lbl { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); margin-top: 0.25rem; font-weight: 700; text-align: center; }
.aus-signal-div { width: 1px; height: 32px; background: rgba(255,255,255,0.12); }

/* Hardware intro */
.hardware-intro { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.hardware-intro h2 { color: var(--white); }
.hardware-intro p { color: rgba(255,255,255,0.72); line-height: 1.75; }
.hardware-intro .section-tag { color: var(--green-400); }

/* Hardware grid */
.hw-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.hw-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 1.75rem; position: relative; overflow: hidden;
  transition: background 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}
.hw-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); transform: translateY(-4px); }
.hw-card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(91,186,116,0.14); border: 1px solid rgba(91,186,116,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-400); margin-bottom: 1.25rem;
}
.hw-card h4 { color: var(--white); font-size: 1.0625rem; margin-bottom: 0.5rem; }
.hw-card p { color: rgba(255,255,255,0.72); font-size: 0.9rem; line-height: 1.65; margin: 0; }
.hw-card p strong { color: var(--green-400); font-weight: 700; }

/* ABS highlight card */
.hw-card-abs {
  background: linear-gradient(135deg, rgba(91,186,116,0.12) 0%, rgba(26,92,46,0.3) 100%);
  border-color: rgba(91,186,116,0.3);
}
.hw-card-abs:hover { border-color: rgba(91,186,116,0.55); }
.hw-abs-badge {
  position: absolute; top: 1.25rem; right: 1.25rem;
  font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--green-400); background: rgba(91,186,116,0.15); border: 1px solid rgba(91,186,116,0.35);
  border-radius: 100px; padding: 0.2rem 0.65rem;
}

/* Footer note */
.hw-footer-note {
  display: flex; align-items: center; gap: 0.75rem;
  margin-top: 2.5rem; padding: 1.25rem 1.75rem;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px;
  font-size: 0.9rem; color: rgba(255,255,255,0.5);
}
.hw-footer-note svg { color: var(--green-400); flex-shrink: 0; }

@media (max-width: 1100px) {
  .hw-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .aus-banner { grid-template-columns: auto 1fr; }
  .aus-banner-signals { display: none; }
  .hw-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hw-grid { grid-template-columns: 1fr; }
  .aus-banner { grid-template-columns: 1fr; }
}

/* ============================
   WHY FRESHTRACK (dark)
   ============================ */
.why-section { background: var(--green-950); padding: 6rem 0; }
.why-pillar { border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 2rem; background: rgba(255,255,255,0.03); transition: background 0.3s, border-color 0.3s; }
.why-pillar:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.15); }
.why-pillar-icon { background: rgba(91,186,116,0.15) !important; color: var(--green-400) !important; border: 1px solid rgba(91,186,116,0.25) !important; }

/* ============================
   CASE STUDY SECTION
   ============================ */
.case-study-section { padding: 4rem 0; }
.case-study-card {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 100%);
  border-radius: 24px; padding: 3.5rem; position: relative; overflow: hidden;
}

/* Dedicated proof, integrations, and ROI pages */
.case-hub-section,
.integration-detail-section,
.roi-section {
  background: var(--cream);
  padding: 5.5rem 0;
}

.case-hub-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.case-hub-card,
.integration-detail-card,
.roi-card,
.roi-results {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.case-hub-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.case-hub-card-featured {
  grid-row: span 2;
}

.case-hub-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--green-100);
}

.case-hub-card-featured .case-hub-image {
  aspect-ratio: 5 / 3;
}

.case-hub-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-hub-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}

.case-hub-body h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.25;
}

.case-hub-card-featured .case-hub-body h3 {
  font-size: 1.65rem;
}

.case-hub-body p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.case-hub-tag {
  color: var(--green-700);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.case-hub-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin: 0.5rem 0 0.35rem;
}

.case-hub-metrics span {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.case-hub-metrics strong {
  display: block;
  color: var(--green-800);
  font-size: 1.05rem;
}

.case-hub-placeholder {
  border-style: dashed;
  background:
    linear-gradient(180deg, rgba(247,250,244,0.86), rgba(255,255,255,0.98));
}

.case-hub-placeholder .case-hub-body {
  justify-content: center;
  min-height: 220px;
}

.placeholder-pill {
  display: inline-flex;
  align-self: flex-start;
  border: 1px solid var(--green-100);
  background: var(--green-50);
  color: var(--green-800);
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.integration-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.integration-detail-card {
  padding: 1.5rem;
}

.integration-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-900);
  color: var(--green-300);
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.integration-detail-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
}

.integration-detail-card p,
.integration-list li,
.roi-card-header p,
.roi-note {
  color: var(--text-muted);
  line-height: 1.6;
}

.integration-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.integration-list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.9rem;
}

.integration-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-500);
}

.integration-page-hardware {
  padding-top: 5rem;
}

.hardware-capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.hardware-capability-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 1.1rem;
}

.hardware-capability-card strong {
  display: block;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.hardware-capability-card span {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.55;
}

.roi-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 2rem;
  align-items: start;
}

.roi-card,
.roi-results {
  padding: 2rem;
}

.roi-card-header h2 {
  margin-bottom: 0.65rem;
}

.roi-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.roi-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-dark);
}

.roi-field input {
  min-height: 46px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
  font: inherit;
  color: var(--text-dark);
  background: var(--white);
}

.roi-field input:focus {
  outline: 3px solid rgba(91,186,116,0.18);
  border-color: var(--green-500);
}

.roi-results {
  position: sticky;
  top: calc(var(--nav-height) + 1.25rem);
}

.roi-result-main {
  background: var(--green-900);
  color: var(--white);
  border-radius: 8px;
  padding: 1.25rem;
  margin: 1rem 0;
}

.roi-result-main span,
.roi-result-grid span,
.roi-payback span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.roi-result-main strong {
  display: block;
  margin-top: 0.4rem;
  color: var(--green-300);
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1;
}

.roi-result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.roi-result-grid div,
.roi-payback {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
}

.roi-result-grid span,
.roi-payback span {
  color: var(--text-muted);
  font-size: 0.68rem;
}

.roi-result-grid strong,
.roi-payback strong {
  display: block;
  margin-top: 0.3rem;
  color: var(--green-800);
  font-size: 1.2rem;
}

.roi-payback {
  margin-top: 0.85rem;
  background: var(--green-50);
  border-color: var(--green-100);
}

.roi-note {
  margin: 1rem 0 0;
  font-size: 0.82rem;
}

.roi-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.local-region-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.local-region-line span {
  border: 1px solid var(--green-100);
  background: var(--green-50);
  color: var(--green-800);
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.support-proof-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.support-proof-card {
  display: block;
  text-decoration: none;
  border: 1px solid var(--green-100);
  background: var(--white);
  border-radius: 8px;
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}

.support-proof-card:hover {
  transform: translateY(-2px);
  border-color: var(--green-300);
  box-shadow: var(--shadow-md);
}

.support-proof-card strong {
  display: block;
  color: var(--green-900);
  margin-bottom: 0.35rem;
}

.support-proof-card span {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* Inside FreshTrack Hardware */
.hardware-proof-section,
.hardware-stack-section,
.hardware-architecture-section,
.hardware-commercial-section {
  padding: 5.5rem 0;
}

.hardware-proof-section,
.hardware-architecture-section {
  background: var(--cream);
}

.hardware-stack-section,
.hardware-commercial-section {
  background: var(--white);
}

.hardware-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.hardware-proof-card,
.hardware-stack-card,
.hardware-protocol-panel,
.hardware-commercial-points div {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.hardware-proof-card {
  padding: 1.25rem;
}

.hardware-proof-card strong,
.hardware-commercial-points strong {
  display: block;
  color: var(--green-900);
  margin-bottom: 0.35rem;
}

.hardware-proof-card span,
.hardware-commercial-points span {
  display: block;
  color: var(--text-muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

.hardware-stack-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.hardware-stack-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(0, 1.2fr);
}

.hardware-board-placeholder {
  min-height: 100%;
  background:
    linear-gradient(135deg, rgba(10,35,20,0.92), rgba(18,75,38,0.86)),
    repeating-linear-gradient(90deg, transparent 0 14px, rgba(255,255,255,0.05) 14px 15px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  color: rgba(255,255,255,0.74);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}

.hardware-software-placeholder {
  background:
    linear-gradient(135deg, rgba(11,28,44,0.95), rgba(24,71,86,0.88)),
    repeating-linear-gradient(0deg, transparent 0 12px, rgba(255,255,255,0.05) 12px 13px);
}

.hardware-stack-body {
  padding: 1.5rem;
}

.hardware-stack-kicker {
  display: block;
  color: var(--green-700);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.45rem;
}

.hardware-stack-body h3 {
  margin: 0 0 0.7rem;
  color: var(--green-950);
}

.hardware-stack-body p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.hardware-stack-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
}

.hardware-stack-body li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.45;
}

.hardware-stack-body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-500);
}

.hardware-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.hardware-tags span {
  border: 1px solid var(--green-100);
  background: var(--green-50);
  color: var(--green-800);
  border-radius: 999px;
  padding: 0.35rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 800;
}

.hardware-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0.8rem;
  align-items: stretch;
}

.hardware-flow-box {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  padding: 1.15rem;
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hardware-flow-box strong {
  color: var(--green-900);
  margin-bottom: 0.35rem;
}

.hardware-flow-box span {
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.hardware-flow-core {
  background: var(--green-900);
  border-color: var(--green-800);
}

.hardware-flow-core strong,
.hardware-flow-core span,
.hardware-flow-cloud strong,
.hardware-flow-cloud span {
  color: var(--white);
}

.hardware-flow-cloud {
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  border-color: var(--green-500);
}

.hardware-flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  font-size: 1.6rem;
  font-weight: 900;
}

.hardware-protocol-panel {
  margin-top: 1.25rem;
  padding: 1.5rem;
}

.hardware-protocol-panel h3 {
  margin: 0 0 1rem;
  color: var(--green-900);
}

.protocol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.protocol-grid div {
  border: 1px solid var(--green-100);
  background: var(--green-50);
  border-radius: 8px;
  padding: 0.9rem;
}

.protocol-grid strong {
  display: block;
  color: var(--green-900);
  margin-bottom: 0.25rem;
}

.protocol-grid span {
  display: block;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

.hardware-commercial-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: start;
}

.hardware-commercial-layout h2 {
  margin: 0.6rem 0 1rem;
}

.hardware-commercial-layout p {
  color: var(--text-muted);
  line-height: 1.7;
}

.hardware-commercial-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.hardware-commercial-points div {
  padding: 1.1rem;
}

@media (max-width: 1050px) {
  .hardware-stack-card,
  .hardware-commercial-layout {
    grid-template-columns: 1fr;
  }
  .hardware-board-placeholder {
    min-height: 190px;
  }
  .hardware-flow {
    grid-template-columns: 1fr;
  }
  .hardware-flow-arrow {
    transform: rotate(90deg);
    min-height: 22px;
  }
}

@media (max-width: 760px) {
  .hardware-proof-grid,
  .hardware-stack-grid,
  .protocol-grid,
  .hardware-commercial-points {
    grid-template-columns: 1fr;
  }
  .hardware-proof-section,
  .hardware-stack-section,
  .hardware-architecture-section,
  .hardware-commercial-section {
    padding: 4rem 0;
  }
}

@media (max-width: 1100px) {
  .case-hub-grid,
  .integration-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .case-hub-card-featured {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .roi-layout {
    grid-template-columns: 1fr;
  }
  .roi-results {
    position: static;
  }
}

@media (max-width: 700px) {
  .case-hub-grid,
  .integration-detail-grid,
  .hardware-capability-grid,
  .roi-fields,
  .roi-result-grid,
  .case-hub-metrics,
  .support-proof-links {
    grid-template-columns: 1fr;
  }
  .case-hub-section,
  .integration-detail-section,
  .roi-section {
    padding: 4rem 0;
  }
}
.case-study-card::before {
  content: '"'; position: absolute; top: -1rem; right: 2rem;
  font-family: var(--font-display); font-size: 14rem; color: rgba(255,255,255,0.04);
  line-height: 1; pointer-events: none;
}
.cs-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--green-400); margin-bottom: 1.75rem;
}
.cs-layout { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; }
.cs-quote {
  font-size: 1.25rem; line-height: 1.65; color: rgba(255,255,255,0.85);
  font-style: italic; margin: 0 0 1.75rem;
  border: none; padding: 0;
}
.cs-author { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.cs-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.875rem; color: var(--white);
}
.cs-name { font-weight: 700; color: var(--white); font-size: 0.9375rem; }
.cs-company { font-size: 0.8125rem; color: rgba(255,255,255,0.5); }
.cs-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 700; font-size: 0.9375rem; color: var(--green-400);
  text-decoration: none; transition: color 0.2s, gap 0.2s;
}
.cs-cta:hover { color: var(--white); gap: 0.75rem; }
.cs-stats { display: flex; flex-direction: column; gap: 1.5rem; min-width: 180px; }
.cs-stat { display: flex; flex-direction: column; gap: 0.2rem; padding: 1rem 1.25rem; border-radius: 12px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); }
.cs-stat-highlight { background: rgba(91,186,116,0.18); border-color: rgba(91,186,116,0.3); }
.cs-stat-value { font-family: var(--font-display); font-size: 1.75rem; font-weight: 800; color: var(--white); line-height: 1; }
.cs-stat-highlight .cs-stat-value { color: var(--green-400); }
.cs-stat-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.45); font-weight: 600; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; max-width: 680px; }
  .hero-visual { display: none; }
  .why-pillars { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .about-intro { grid-template-columns: 1fr; gap: 3rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-panel { position: static; }
}

@media (max-width: 1024px) {
  .topbar-contacts { display: none; }
  .topbar-rule { display: none; }
}

@media (max-width: 768px) {
  .nav-topbar { height: 64px; }
  :root { --topbar-height: 64px; }
  .topbar-social-wrap { display: none; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav-scrolled-social { display: none !important; }
  section { padding: 3.5rem 0; }
  .vp-grid { grid-template-columns: 1fr; }
  .solutions-grid, .testimonials-grid, .news-grid, .news-page-grid { grid-template-columns: 1fr; }
  .why-pillars, .modules-grid, .benefits-grid, .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .hero { min-height: auto; }
  .hero-inner { padding: calc(var(--nav-height) + var(--topbar-height) + 2.5rem) 1.5rem 3.5rem; }
  .hero-scroll { display: none; }
  .stat-row { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

@media (max-width: 600px) {
  .hero-inner { text-align: center; }
  .hero-content { align-items: center; text-align: center; }
  .hero h1 { font-size: clamp(1.85rem, 8.5vw, 2.4rem); overflow-wrap: break-word; }
  .hero-sub { text-align: center; margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-trust { align-items: flex-start; }
}

@media (max-width: 600px) {
  .page-hero h1 { font-size: clamp(1.7rem, 7.8vw, 2.2rem); overflow-wrap: break-word; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-ctas, .cta-banner .btn-ctas { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-ctas .btn { justify-content: center; }
  .cta-banner .btn-ctas { align-items: center; }
}

/* Respect reduced-motion — comprehensive block moved to Warm Refresh section at end of file */
/* This block kept as placeholder to avoid breaking line references */

/* ============================
   VALUE PILLARS (3 cards)
   ============================ */
.value-pillars {
  padding: 3rem 0 4rem;
  position: relative; z-index: 1;
}
.vp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}

.vp-card {
  background: var(--white); border-radius: 18px;
  border: 1px solid var(--border);
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease);
}
.vp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(15,45,24,0.16);
}

/* Coloured top band */
.vp-card-top {
  position: relative; padding: 2.25rem 2rem 2rem;
  background: linear-gradient(135deg, var(--green-600) 0%, var(--green-900) 100%);
  display: flex; flex-direction: column; gap: 1rem;
  overflow: hidden;
}
.vp-card-top--mid  { background: linear-gradient(135deg, var(--green-500) 0%, var(--green-800) 100%); }
.vp-card-top--dark { background: linear-gradient(135deg, var(--green-800) 0%, var(--green-950) 100%); }

/* Subtle radial highlight */
.vp-card-top::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.12) 0%, transparent 65%);
  pointer-events: none;
}

/* Large decorative number */
.vp-num {
  position: absolute; top: 0.75rem; right: 1.25rem;
  font-size: 5.5rem; font-weight: 800; line-height: 1;
  color: rgba(255,255,255,0.08); font-family: var(--font-display);
  pointer-events: none; user-select: none;
}

/* Icon circle */
.vp-icon {
  width: 68px; height: 68px; border-radius: 16px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; backdrop-filter: blur(4px);
  transition: transform 0.32s var(--ease), background 0.32s var(--ease);
}
.vp-card:hover .vp-icon {
  transform: translateY(-3px) scale(1.06);
  background: rgba(255,255,255,0.22);
}

.vp-card-top-label {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.11em; color: rgba(255,255,255,0.65);
}

/* Card body */
.vp-card-body { padding: 1.75rem 2rem 2rem; display: flex; flex-direction: column; flex: 1; }

.vp-title {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 0.75rem; line-height: 1.2;
}
.vp-desc {
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.78; flex: 1;
  margin-bottom: 1.5rem;
}
.vp-link {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.82rem; font-weight: 700; color: var(--green-700);
  padding-top: 1.25rem; border-top: 1px solid var(--border);
  transition: gap var(--t-fast), color var(--t-fast);
}
.vp-link:hover { gap: 0.7rem; color: var(--green-800); }

/* ============================
   CLIENT LOGO IMAGES
   ============================ */
.client-logo-pill img {
  height: 58px; max-width: 150px; object-fit: contain; display: block;
  filter: grayscale(100%); opacity: 0.6; transition: all 0.32s ease;
}
.client-logo-pill:hover img { filter: grayscale(0%); opacity: 1; }

/* ============================
   NEWS CARD REAL IMAGES
   ============================ */
.news-card-img { position: relative; }
.news-card-img::before { display: none; }
.news-card-img img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform var(--t-slow);
}
.news-card:hover .news-card-img img { transform: scale(1.04); }

.npc-img { position: relative; }
.npc-img::before { display: none; }
.npc-img img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform var(--t-slow);
}
.news-page-card:hover .npc-img img { transform: scale(1.04); }

/* ============================
   ARTICLE PAGES
   ============================ */
.article-hero-img { width: 100%; max-height: 460px; object-fit: cover; border-radius: 16px; display: block; margin-bottom: 2.5rem; }
.article-meta { display: flex; align-items: center; gap: 1.25rem; font-size: 0.875rem; color: var(--text-muted); margin-bottom: 2rem; flex-wrap: wrap; }
.article-tag { display: inline-block; padding: 0.25rem 0.75rem; background: var(--green-100); color: var(--green-700); border-radius: 100px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; }
.back-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--green-600); font-weight: 600; font-size: 0.875rem; margin-bottom: 2.5rem; transition: gap var(--t-fast), color var(--t-fast); }
.back-link:hover { gap: 0.75rem; color: var(--green-800); }
.article-content { max-width: 740px; }
.article-content p { margin-bottom: 1.5rem; color: var(--text-body); font-size: 1.0625rem; line-height: 1.8; }
.article-content h2 { margin: 2.5rem 0 1rem; }
.article-content h3 { margin: 2rem 0 0.75rem; font-family: var(--font-body); font-weight: 700; font-size: 1.125rem; color: var(--text-dark); }
.article-content ul { list-style: none; padding: 0; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.article-content ul li { padding-left: 1.5rem; position: relative; color: var(--text-body); font-size: 1.0625rem; line-height: 1.7; }
.article-content ul li::before { content: ''; position: absolute; left: 0; top: 0.62em; width: 6px; height: 6px; background: var(--green-500); border-radius: 50%; }
.article-content blockquote { border-left: 3px solid var(--green-400); padding: 1rem 1.5rem; margin: 2rem 0; background: var(--green-50); border-radius: 0 8px 8px 0; font-style: italic; color: var(--text-body); font-size: 1.0625rem; line-height: 1.75; }

/* ====================================================
   HOME PAGE ENHANCEMENTS
   ==================================================== */

/* Hero — two-column: copy left, live data cards right */
.hero-inner { grid-template-columns: 1.05fr 0.95fr; max-width: var(--max-width); text-align: left; gap: 4rem; padding-bottom: 5rem; align-items: center; }
.hero-content { display: flex; flex-direction: column; align-items: flex-start; }
.hero-content h1, .hero-content .hero-sub { align-self: stretch; }
.hero-ctas { justify-content: flex-start; }
.hero-sub { max-width: 540px; text-align: left; }

/* Hero: YouTube video frame (right side) */
.hero-video-frame {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 40px 100px rgba(0,0,0,0.55), 0 8px 24px rgba(0,0,0,0.3);
}
.hvf-dots {
  height: 38px;
  background: rgba(0,0,0,0.45);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; gap: 7px; padding: 0 14px;
}
.hvf-dots span { width: 11px; height: 11px; border-radius: 50%; display: block; }
.hvf-dots span:nth-child(1) { background: #ff5f57; }
.hvf-dots span:nth-child(2) { background: #febc2e; }
.hvf-dots span:nth-child(3) { background: #28c840; }
.hvf-body { position: relative; padding-bottom: 56.25%; height: 0; background: #000; }
.hvf-body iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* Hero stats row */
.hero-stat-row {
  display: flex; align-items: center; gap: 2.25rem; flex-wrap: wrap;
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hsi-value {
  display: block; font-family: var(--font-display); font-size: 1.875rem;
  font-weight: 700; color: var(--green-300); line-height: 1;
}
.hsi-label {
  display: block; font-size: 0.78rem; color: rgba(255,255,255,0.42);
  margin-top: 0.25rem; line-height: 1.4;
}
.hero-stat-divider { width: 1px; height: 42px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

/* Hero stats bar — in normal flow below the hero */
.hero-stats-bar {
  background: linear-gradient(180deg, var(--green-950) 0%, #0c2014 100%);
  border-top: 1px solid rgba(224,163,62,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-stats-inner {
  display: flex; align-items: center; justify-content: center;
  padding: 1.25rem 2rem; gap: 0; flex-wrap: wrap;
}
.hstat { display: flex; flex-direction: column; align-items: center; padding: 0 2rem; gap: 0.25rem; min-width: 0; }
.hstat-value { font-family: var(--font-display); font-size: 1.75rem; font-weight: 800; color: var(--gold-soft); line-height: 1; white-space: nowrap; }
.hstat-label { font-size: 0.8rem; color: rgba(255,255,255,0.55); font-weight: 500; text-align: center; line-height: 1.35; white-space: nowrap; }
.hstat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); flex-shrink: 0; }

/* ====================================================
   SOLUTION CARDS WITH PHOTOS
   ==================================================== */
.solution-card { padding: 0; }
.solution-card-img {
  height: 210px; overflow: hidden;
  border-radius: 14px 14px 0 0; position: relative;
}
.solution-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform var(--t-slow);
}
.solution-card:hover .solution-card-img img { transform: scale(1.06); }
.solution-card-body { padding: 1.75rem 2rem 2rem; }

/* ====================================================
   PRODUCT VIDEO SECTION (click-to-play facade)
   ==================================================== */
.video-section {
  position: relative; overflow: hidden;
  background:
    radial-gradient(110% 90% at 80% 0%, #14361f 0%, rgba(20,54,31,0) 55%),
    linear-gradient(170deg, #0a2010 0%, #071a0d 70%, #061509 100%);
}
.video-section .section-header { margin-bottom: 0; }

.video-frame {
  max-width: 940px; margin: 3rem auto 0;
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05); backdrop-filter: blur(10px);
  box-shadow: 0 50px 110px rgba(0,0,0,0.5), 0 10px 30px rgba(0,0,0,0.35);
}
.video-window-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 0.7rem 1rem; background: rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.vwb-dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.vwb-dot:nth-child(1) { background: #ff5f57; } .vwb-dot:nth-child(2) { background: #febc2e; } .vwb-dot:nth-child(3) { background: #28c840; }
.vwb-title { margin-left: 0.5rem; font-size: 0.74rem; font-weight: 600; color: rgba(255,255,255,0.6); }
.vwb-badge { margin-left: auto; display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.7rem; font-weight: 700; color: var(--green-300); font-variant-numeric: tabular-nums; }

.video-stage { position: relative; aspect-ratio: 16 / 9; background: #05110a; }
.video-facade {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: 0; padding: 0; margin: 0; cursor: pointer; background: #05110a;
  display: block; overflow: hidden;
}
.video-poster {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(0.62) saturate(1.05);
  transition: transform var(--t-slow), filter var(--t-base);
}
.video-facade:hover .video-poster,
.video-facade:focus-visible .video-poster { transform: scale(1.04); filter: brightness(0.7); }

.video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 78px; height: 78px; border-radius: 50%;
  background: var(--green-600); color: #fff;
  display: flex; align-items: center; justify-content: center;
  padding-left: 5px; box-shadow: 0 10px 36px rgba(0,0,0,0.45);
  transition: transform var(--t-base), background var(--t-base), box-shadow var(--t-base);
}
.video-play::after {
  content: ''; position: absolute; inset: -10px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4); animation: videoPulse 2.4s ease-out infinite;
}
@keyframes videoPulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.35); opacity: 0; }
}
.video-facade:hover .video-play,
.video-facade:focus-visible .video-play { transform: translate(-50%, -50%) scale(1.08); background: var(--green-500); }

.video-cta-label {
  position: absolute; left: 0; right: 0; bottom: 1.5rem; text-align: center;
  color: #fff; font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6); pointer-events: none;
}
.video-facade:focus-visible { outline: 3px solid var(--green-300); outline-offset: -3px; }

.video-embed { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

@media (max-width: 600px) {
  .video-play { width: 60px; height: 60px; }
  .video-cta-label { bottom: 1rem; font-size: 0.85rem; }
}

/* ====================================================
   ELEVATING AGRICULTURE SECTION
   ==================================================== */
.elevating-section {
  background: var(--green-900); padding: 6rem 0;
  position: relative; overflow: hidden;
}
.elevating-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 55%, rgba(91,186,116,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(30,92,46,0.2) 0%, transparent 50%);
}
.elevating-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center; position: relative; z-index: 1;
}
.elevating-text .section-tag { color: var(--green-300); }
.elevating-text h2 { color: var(--white); margin-bottom: 1.25rem; }
.elevating-text > p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; font-size: 1.0625rem; line-height: 1.8; }
.elevating-features { display: flex; flex-direction: column; gap: 0.75rem; }
.ef-item { display: flex; align-items: center; gap: 0.875rem; color: rgba(255,255,255,0.72); font-size: 0.9375rem; }
.ef-check {
  width: 22px; height: 22px; background: var(--green-700); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--white);
}
.elevating-img-wrap { position: relative; }
.elevating-img-wrap > img { width: 100%; height: 500px; object-fit: cover; border-radius: 16px; display: block; }
.elevating-badge {
  position: absolute; bottom: 2.5rem; left: -2rem;
  background: var(--white); border-radius: 12px; padding: 1.1rem 1.5rem;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 1rem; min-width: 240px;
}
.elevating-badge-icon {
  width: 42px; height: 42px; background: var(--green-100); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--green-700);
}
.elevating-badge strong { display: block; font-size: 0.9375rem; font-weight: 700; color: var(--text-dark); font-family: var(--font-body); }
.elevating-badge span { display: block; font-size: 0.8rem; color: var(--text-muted); margin-top: 0.1rem; }

/* ====================================================
   TESTIMONIALS — DARK PHOTO BACKGROUND
   ==================================================== */
.testimonials {
  background:
    linear-gradient(rgba(8,28,15,0.88), rgba(15,45,22,0.92)),
    url('assets/img/farmer.webp') center / cover no-repeat;
  background-color: var(--green-900);
}
.testimonials-grid { grid-template-columns: repeat(2, 1fr); }
.testimonials .section-tag { color: var(--green-300); }
.testimonials .section-header h2 { color: var(--white); }
.testimonials .testimonial-card {
  background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
}
.testimonials .quote-mark { color: rgba(91,186,116,0.45); }
.testimonials .testimonial-text { color: rgba(255,255,255,0.78); }
.testimonials .t-name { color: var(--white); }
.testimonials .t-company { color: var(--green-300); }
.testimonials .t-avatar { background: var(--green-700); color: var(--white); }
.t-logo { width: 42px; height: 42px; border-radius: 8px; object-fit: contain; flex-shrink: 0; background: rgba(255,255,255,0.08); padding: 4px; }

/* ====================================================
   RESPONSIVE — HOME ADDITIONS
   ==================================================== */
@media (max-width: 900px) {
  .journey-flow { grid-template-columns: 1fr; }
  .journey-connector { display: none; }
  .integrations-layout { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .hero-stats-inner { padding: 1rem; gap: 0.5rem; }
  .hstat { padding: 0.5rem 1rem; }
  .hstat-value { font-size: 1.35rem; }
  .cs-layout { grid-template-columns: 1fr; }
  .cs-stats { flex-direction: row; flex-wrap: wrap; }
  .cs-stat { flex: 1; min-width: 120px; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ============================
   SMARTPACK / AUTOPACK PRODUCT CARDS
   ============================ */
.hw-products {
  margin-top: 4rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 4rem;
}
.hw-products-header {
  text-align: center; margin-bottom: 2.5rem;
}
.hw-products-header .section-tag { color: var(--green-400); }
.hw-products-header h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700; color: var(--white); margin: 0.5rem 0 0.75rem;
}
.hw-products-header p {
  font-size: 1rem; color: rgba(255,255,255,0.55); max-width: 520px; margin: 0 auto;
}

.hw-product-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem;
}

.hw-product-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 2.25rem;
  display: flex; flex-direction: column; gap: 1.5rem;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
}
.hw-product-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(91,186,116,0.35);
  transform: translateY(-4px);
}
.hw-product-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 15% 0%, rgba(91,186,116,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hw-product-header {
  display: flex; align-items: flex-start; gap: 1.25rem;
}
.hw-product-icon {
  width: 54px; height: 54px; border-radius: 14px; flex-shrink: 0;
  background: rgba(91,186,116,0.15); border: 1px solid rgba(91,186,116,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-400);
}
.hw-product-badge {
  display: inline-block; font-size: 0.62rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--green-400); background: rgba(91,186,116,0.12);
  border: 1px solid rgba(91,186,116,0.25); border-radius: 100px;
  padding: 0.2rem 0.6rem; margin-bottom: 0.4rem;
}
.hw-product-name {
  font-family: var(--font-display); font-size: 1.375rem;
  font-weight: 700; color: var(--white); margin: 0 0 0.25rem; line-height: 1.2;
}
.hw-product-tagline {
  font-size: 0.875rem; color: rgba(255,255,255,0.45);
  font-style: italic; margin: 0;
}

.hw-product-features {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0.625rem;
}
.hw-product-features li {
  display: flex; align-items: flex-start; gap: 0.625rem;
  font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.45;
}
.hw-product-features li::before {
  content: ''; display: block; flex-shrink: 0; width: 16px; height: 16px;
  margin-top: 1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235bba74' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='20,6 9,17 4,12'/%3E%3C/svg%3E") center/contain no-repeat;
}

.hw-product-divider {
  border: none; border-top: 1px solid rgba(255,255,255,0.07); margin: 0;
}

.hw-product-gs1 {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.45);
}
.hw-product-gs1 svg { color: var(--green-400); flex-shrink: 0; }

/* Packers page SmartPack section */
.smartpack-section {
  padding: 6rem 0; background: var(--green-950);
}
.smartpack-header { text-align: center; margin-bottom: 4rem; }
.smartpack-header .section-tag { color: var(--green-400); }
.smartpack-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700; color: var(--white); margin: 0.5rem 0 1rem;
}
.smartpack-header p {
  font-size: 1.0625rem; color: rgba(255,255,255,0.55);
  max-width: 620px; margin: 0 auto;
}

@media (max-width: 768px) {
  .hw-product-grid { grid-template-columns: 1fr; }
}

/* ============================
   PATENTS SECTION
   ============================ */
.patents-section {
  padding: 4rem 0;
  background: var(--green-950);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.patents-inner {
  display: flex; flex-direction: column; gap: 2.5rem;
}
.patents-header {
  display: flex; align-items: flex-start; gap: 1.5rem;
}
.patents-seal {
  width: 56px; height: 56px; flex-shrink: 0; border-radius: 50%;
  background: rgba(91,186,116,0.12); border: 1px solid rgba(91,186,116,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-400);
}
.patents-title {
  font-family: var(--font-display); font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700; color: var(--white); margin: 0 0 0.4rem; line-height: 1.2;
}
.patents-sub {
  font-size: 0.9375rem; color: rgba(255,255,255,0.5); margin: 0; line-height: 1.65; max-width: 560px;
}
.patents-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
  max-width: 640px;
}
.patent-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: border-color 0.3s, background 0.3s;
}
.patent-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(91,186,116,0.35);
}
.patent-card-top {
  display: flex; align-items: center; gap: 0.875rem;
}
.patent-flag-icon {
  border-radius: 3px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.5);
  flex-shrink: 0;
}
.patent-jurisdiction {
  font-size: 0.8125rem; font-weight: 700; color: var(--white); line-height: 1.3;
}
.patent-authority {
  font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-top: 0.15rem;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.patent-number {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
  color: var(--green-400); letter-spacing: 0.04em; line-height: 1;
}
.patent-granted {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; font-weight: 600; color: var(--green-400);
}

@media (max-width: 600px) {
  .patents-grid { grid-template-columns: 1fr; max-width: 100%; }
  .patents-header { flex-direction: column; }
}

/* ============================
   ABOUT — MISSION & VISION
   ============================ */
.mv-section { position: relative; overflow: hidden;
  background:
    radial-gradient(110% 90% at 85% 0%, #14361f 0%, rgba(20,54,31,0) 55%),
    linear-gradient(170deg, #0f2d18 0%, #0a2010 70%, #071a0d 100%);
}
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.mv-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px; padding: 2.25rem; backdrop-filter: blur(10px);
}
.mv-card-icon {
  width: 54px; height: 54px; border-radius: 14px; margin-bottom: 1.25rem;
  background: rgba(91,186,116,0.15); border: 1px solid rgba(91,186,116,0.28);
  display: flex; align-items: center; justify-content: center; color: var(--green-400);
}
.mv-card h3 { color: var(--white); font-size: 1.35rem; margin-bottom: 0.75rem; }
.mv-card p { color: rgba(255,255,255,0.72); font-size: 1rem; line-height: 1.7; }

.mv-values { text-align: center; margin-top: 3rem; }
.mv-values-label { display: block; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--green-300); margin-bottom: 1.25rem; }
.value-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; }
.value-chip {
  font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px; padding: 0.5rem 1.1rem;
}

/* ============================
   ABOUT — TEAM
   ============================ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.team-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 16px;
  padding: 2rem; text-align: center; display: flex; flex-direction: column; align-items: center;
  transition: box-shadow var(--t-base), transform var(--t-base), border-color var(--t-base);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--border-green); }
.team-avatar {
  width: 76px; height: 76px; border-radius: 50%; margin-bottom: 1.25rem;
  background: linear-gradient(165deg, var(--green-500), var(--green-700)); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(30,92,46,0.25);
}
.team-name { font-size: 1.15rem; margin-bottom: 0.25rem; color: var(--text-dark); }
.team-role { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green-600); margin-bottom: 0.75rem; }
.team-bio { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.team-card-join { background: var(--green-50); border-style: dashed; border-color: var(--border-green); }
.team-avatar-join { background: var(--white); border: 2px dashed var(--green-400); color: var(--green-600); box-shadow: none; }
.team-join-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.9rem; color: var(--green-700); font-weight: 600; font-size: 0.875rem; transition: gap var(--t-fast); }
.team-join-link:hover { gap: 0.7rem; }

@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .mv-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }

/* ============================
   PHOTOGRAPHIC HERO BACKDROP
   Authentic farm photo beneath a green scrim. Photo is the first child of
   .hero-bg, so paint order (DOM order, all absolutely positioned) is:
   photo → scrim → orbs (glow over scrim) → topo lines. Keeps white headline
   and the dashboard mockup crisp while adding organic texture on the right.
   ============================ */
.hero-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 42%;
  /* Reduced blur so produce texture reads; slight warmth boost via saturate */
  /* Before: blur(2px) saturate(1.08) brightness(0.92) opacity(0.6) */
  /* After:  blur(0.5px) saturate(1.25) brightness(0.82) opacity(0.82) */
  filter: blur(0.5px) saturate(1.25) brightness(0.82);
  transform: scale(1.08); /* hides the soft blurred edge from the scale-free crop */
  opacity: 0.82;
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    /* Left side: WCAG-safe dark for white headline/CTAs; right side lifts to reveal produce */
    /* Before: left rgba(6,21,11,0.97) → right rgba(11,44,27,0.66) — near-opaque throughout */
    /* After:  left rgba(6,21,11,0.92) → right rgba(20,55,10,0.28) — warm reveal on right */
    linear-gradient(105deg,
      rgba(6,21,11,0.92) 0%,
      rgba(7,24,13,0.86) 30%,
      rgba(10,36,18,0.62) 55%,
      rgba(20,55,10,0.28) 100%),
    /* Warm gold tint layered over the right — amber glow on produce */
    linear-gradient(100deg,
      transparent 40%,
      rgba(120,80,8,0.18) 100%),
    /* vertical anchor: nav area + stats bar stay grounded */
    linear-gradient(180deg, rgba(6,21,11,0.40) 0%, rgba(6,21,11,0) 28%, rgba(6,21,11,0.48) 100%);
}
/* On stacked layouts the copy overlaps the centre of the photo — darken further. */
@media (max-width: 860px) {
  .hero-scrim { background:
    linear-gradient(180deg, rgba(6,21,11,0.93) 0%, rgba(7,26,15,0.88) 55%, rgba(9,34,20,0.82) 100%); }
  .hero-photo { object-position: center 30%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-photo { transform: none; }
}

/* ============================
   PHOTOGRAPHIC SOLUTION-PAGE HEROES
   Same scrim technique as the home hero, applied to .page-hero. Photo + scrim
   are real children at z-index 0 (behind .page-hero-content at z-index 1).
   ============================ */
.page-hero-photo {
  position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0;
  object-fit: cover; object-position: center 40%;
  filter: blur(2px) saturate(1.06) brightness(0.9);
  transform: scale(1.07); opacity: 0.5;
}
.page-hero-scrim {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(100deg,
      rgba(8,26,15,0.96) 0%,
      rgba(9,28,16,0.9) 38%,
      rgba(11,38,22,0.74) 66%,
      rgba(13,46,28,0.62) 100%),
    linear-gradient(180deg, rgba(7,21,11,0.4) 0%, rgba(7,21,11,0) 35%, rgba(7,21,11,0.5) 100%);
}
@media (max-width: 860px) {
  .page-hero-scrim { background:
    linear-gradient(180deg, rgba(8,24,14,0.92) 0%, rgba(9,28,16,0.86) 60%, rgba(11,38,22,0.8) 100%); }
}
@media (prefers-reduced-motion: reduce) {
  .page-hero-photo { transform: none; }
}

/* ============================
   PHOTOGRAPHIC JOURNEY BACKDROP (Grow → Pack → Market)
   Subtle, heavily-scrimmed field photo warms the flat green-900 block while
   keeping the translucent step cards fully readable. Photo + scrim at z-index 0,
   content lifted to z-index 1.
   ============================ */
.journey-section { position: relative; overflow: hidden; }
.journey-section .container { position: relative; z-index: 1; }
.journey-photo {
  position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0;
  object-fit: cover; object-position: center;
  filter: blur(3px) saturate(1.05) brightness(0.8);
  transform: scale(1.08); opacity: 0.3;
}
.journey-scrim {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg,
    rgba(19,47,29,0.93) 0%, rgba(15,40,24,0.86) 50%, rgba(19,47,29,0.94) 100%);
}
@media (prefers-reduced-motion: reduce) {
  .journey-photo { transform: none; }
}

/* ====================================================
   SYSTEMS PAGE — scoped styles (prefix: sys-)
   All classes below are exclusive to systems.html.
   Palette: existing tokens only (--green-*, --cream, --white, --border*).
   ==================================================== */

/* ── Systems overview grid ── */
.sys-group-label {
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--green-700);
  border-left: 3px solid var(--green-500); padding-left: 0.75rem;
  margin: 2.5rem 0 1rem;
}
.sys-overview-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 900px) { .sys-overview-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .sys-overview-grid { grid-template-columns: 1fr; } }

.sys-overview-card {
  display: flex; flex-direction: column; gap: 0.75rem;
  background: var(--white); border: 1px solid var(--border); border-radius: 14px;
  padding: 1.75rem; text-decoration: none;
  position: relative; overflow: hidden;
  transition: box-shadow var(--t-base), transform var(--t-base), border-color var(--t-base);
}
.sys-overview-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green-600), var(--green-400));
  transform: scaleX(0); transform-origin: left; transition: transform var(--t-base);
}
.sys-overview-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--border-green); }
.sys-overview-card:hover::after { transform: scaleX(1); }
.sys-overview-card--flagship { border-color: var(--green-300); background: var(--green-50); }
.sys-overview-card--flagship::after { background: linear-gradient(90deg, var(--green-500), var(--green-300)); }

.sys-icon-flagship { background: var(--green-700) !important; color: var(--white) !important; }

.sys-overview-card-body { flex: 1; display: flex; flex-direction: column; gap: 0.3rem; }
.sys-overview-card h3 { font-size: 1.05rem; color: var(--text-dark); margin: 0; line-height: 1.3; font-family: var(--font-display); font-weight: 700; }
.sys-overview-tagline { font-size: 0.85rem; color: var(--green-700); font-weight: 600; font-style: italic; margin: 0; }
.sys-overview-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; margin: 0.25rem 0 0; flex: 1; }

/* ── System detail sections ── */
.sys-detail-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.sys-detail-layout--reversed { direction: rtl; }
.sys-detail-layout--reversed > * { direction: ltr; }
.sys-detail-layout--centre { grid-template-columns: 1fr; }

.sys-detail-meta {
  display: flex; flex-direction: column; gap: 1rem;
}
.sys-detail-meta--wide { max-width: 740px; }

.sys-detail-para {
  color: var(--text-body); font-size: 1.0625rem; line-height: 1.78; margin: 0;
}

.sys-note {
  font-size: 0.82rem; color: var(--text-muted); font-style: italic;
  border-left: 2px solid var(--border-green); padding-left: 0.75rem; margin-top: 0.25rem;
}

/* ── Differentiator badge (Forms & QA) ── */
.sys-differentiator-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--white); background: var(--green-700);
  border-radius: 100px; padding: 0.25rem 0.8rem; align-self: flex-start;
}

/* ── How it works card ── */
.sys-detail-flow-col { display: flex; flex-direction: column; }
.sys-how-card {
  background: var(--green-900); border-radius: 18px; padding: 2rem 2rem 2.25rem;
  color: var(--white); position: sticky; top: calc(var(--nav-height) + 1.5rem);
}
.sys-how-heading {
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--green-400); margin-bottom: 1.25rem;
}
.sys-how-steps {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0;
}
.sys-how-steps li {
  display: flex; align-items: center; gap: 0.875rem;
  font-size: 0.9rem; color: rgba(255,255,255,0.85); line-height: 1.4;
}
.sys-how-num {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: rgba(91,186,116,0.18); border: 1px solid rgba(91,186,116,0.35);
  color: var(--green-400); font-size: 0.72rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.sys-how-arrow {
  display: flex; align-items: center; padding-left: 0.875rem;
  font-size: 1.1rem; color: var(--green-600); line-height: 1; margin: 0.15rem 0;
  font-weight: 700;
}

@media (max-width: 900px) {
  .sys-detail-layout { grid-template-columns: 1fr; gap: 2.5rem; direction: ltr; }
  .sys-detail-layout--reversed { direction: ltr; }
  .sys-how-card { position: static; }
}

/* ── Flagship section (Timeclock) ── */
.sys-flagship-section {
  background:
    radial-gradient(90% 140% at 50% -10%, rgba(91,186,116,0.28) 0%, rgba(91,186,116,0) 55%),
    linear-gradient(160deg, var(--green-900) 0%, var(--green-950) 100%);
  padding: 6rem 0; position: relative; overflow: hidden;
}
.sys-flagship-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(110% 110% at 50% 0%, #000 30%, transparent 80%);
          mask-image: radial-gradient(110% 110% at 50% 0%, #000 30%, transparent 80%);
}
.sys-flagship-inner { position: relative; z-index: 1; max-width: 900px; }

.sys-flagship-eyebrow { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; flex-wrap: wrap; }
.sys-flagship-pill {
  display: inline-flex; align-items: center;
  font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--green-200); background: rgba(91,186,116,0.18);
  border: 1px solid rgba(91,186,116,0.35); border-radius: 100px; padding: 0.25rem 0.85rem;
}
.sys-badge-light { color: var(--green-300) !important; background: rgba(91,186,116,0.12) !important; border: 1px solid rgba(91,186,116,0.25) !important; }

.sys-flagship-inner h2 { color: var(--white); margin-bottom: 0.5rem; font-weight: 800; }
.sys-flagship-tagline { color: var(--green-300); font-size: 1.125rem; font-weight: 600; margin-bottom: 1rem; font-style: italic; }
.sys-flagship-para { color: rgba(255,255,255,0.7); font-size: 1.0625rem; line-height: 1.78; margin-bottom: 3rem; max-width: 680px; }

.sys-flagship-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 3rem;
}
@media (max-width: 860px) { .sys-flagship-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .sys-flagship-grid { grid-template-columns: 1fr; } }

.sys-flagship-feature {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 1.5rem;
  transition: background 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}
.sys-flagship-feature:hover { background: rgba(255,255,255,0.09); border-color: rgba(91,186,116,0.35); transform: translateY(-3px); }
.sys-flagship-feat-icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: rgba(91,186,116,0.14); border: 1px solid rgba(91,186,116,0.28);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-400); margin-bottom: 1rem;
}
.sys-flagship-feature h4 { color: var(--white); font-size: 0.9375rem; font-weight: 700; margin-bottom: 0.5rem; font-family: var(--font-body); line-height: 1.3; }
.sys-flagship-feature p { color: rgba(255,255,255,0.55); font-size: 0.875rem; line-height: 1.65; margin: 0; }

.sys-flagship-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Ecosystem diagram ── */
.sys-eco-wrap {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: nowrap; margin: 0 auto 2rem;
  padding: 2.5rem 2rem;
  background: var(--green-50); border: 1px solid var(--green-100); border-radius: 22px;
  overflow-x: auto;
}

.sys-eco-node {
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  min-width: 130px; flex-shrink: 0; text-align: center;
}
.sys-eco-icon {
  width: 72px; height: 72px; border-radius: 20px;
  background: var(--green-700); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(19,47,29,0.22);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.sys-eco-node:hover .sys-eco-icon { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(19,47,29,0.3); }
.sys-eco-icon--retail { background: var(--green-900); }
.sys-eco-label { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--text-dark); line-height: 1.2; }
.sys-eco-sublabel { font-size: 0.74rem; color: var(--text-muted); line-height: 1.4; max-width: 120px; }

.sys-eco-arrows {
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  flex: 1; min-width: 90px; max-width: 140px; flex-shrink: 1;
  padding: 0 0.25rem;
}
.sys-eco-arrow { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; width: 100%; }
.sys-eco-arrow-svg { width: 100%; height: 22px; color: var(--green-500); }
.sys-eco-arrow-label {
  font-size: 0.67rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--green-700); text-align: center; line-height: 1.3; white-space: nowrap;
}
.sys-eco-arrow--return .sys-eco-arrow-svg { color: var(--green-300); }
.sys-eco-arrow-label--return { color: var(--green-500); }

.sys-eco-caption {
  text-align: center; font-size: 0.9375rem; color: var(--text-muted);
  max-width: 620px; margin: 0 auto; line-height: 1.75;
}

/* Stack ecosystem on mobile */
@media (max-width: 820px) {
  .sys-eco-wrap {
    flex-direction: column; gap: 0.5rem; align-items: center;
    padding: 2rem 1.5rem;
  }
  .sys-eco-arrows { flex-direction: column; min-width: auto; max-width: 220px; padding: 0.25rem 0; }
  .sys-eco-arrow-svg { width: 22px; height: 40px; transform: rotate(90deg); }
  .sys-eco-arrow-label { white-space: normal; }
  .sys-eco-arrow--return { flex-direction: column-reverse; }
}

/* ── Permissions section ── */
.sys-perm-layout {
  display: grid; grid-template-columns: auto 1fr 1fr; gap: 2.5rem; align-items: start;
}
@media (max-width: 900px) { .sys-perm-layout { grid-template-columns: 1fr; } }

.sys-perm-shield {
  width: 100px; height: 100px; background: var(--green-700); border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); box-shadow: var(--shadow-green); flex-shrink: 0;
  align-self: start;
}
@media (max-width: 900px) { .sys-perm-shield { width: 72px; height: 72px; border-radius: 18px; } }

.sys-perm-examples { display: flex; flex-direction: column; gap: 1rem; }

.sys-perm-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--white); border: 1px solid var(--border); border-radius: 14px;
  padding: 1.5rem;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.sys-perm-card:hover { border-color: var(--border-green); box-shadow: var(--shadow-md); }

.sys-perm-card-icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: var(--green-100); color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
}
.sys-perm-card-scenario {
  font-weight: 700; font-size: 0.9rem; color: var(--text-dark); margin-bottom: 0.4rem;
  font-family: var(--font-body);
}
.sys-perm-card p { font-size: 0.875rem; color: var(--text-body); line-height: 1.65; margin: 0; }
.sys-perm-card p strong { color: var(--green-800); }

.sys-perm-bullets { display: flex; align-items: flex-start; }
.sys-perm-bullets .system-features { margin: 0; }

/* ── Point-of-Pack Labelling — mode sub-cards ── */
.sys-mode-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 1.5rem;
}
@media (max-width: 640px) { .sys-mode-grid { grid-template-columns: 1fr; } }

.sys-mode-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--white); border: 1px solid var(--border); border-radius: 14px;
  padding: 1.5rem;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.sys-mode-card:hover { border-color: var(--border-green); box-shadow: var(--shadow-md); }

.sys-mode-card-icon {
  width: 42px; height: 42px; border-radius: 11px; flex-shrink: 0;
  background: var(--green-100); color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
}

.sys-mode-card-name {
  font-weight: 700; font-size: 0.9rem; color: var(--text-dark);
  margin-bottom: 0.35rem; font-family: var(--font-body);
}
.sys-mode-card p { font-size: 0.84rem; color: var(--text-body); line-height: 1.65; margin: 0; }

/* ── sys-mode-card enrichment (SmartPack / AutoPack tagline + bullets) ── */
.sys-mode-card-tagline {
  font-size: 0.78rem; font-weight: 700; font-style: italic;
  color: var(--green-700); margin: 0.2rem 0 0.4rem;
}
.sys-mode-card-bullets {
  list-style: none; margin: 0.6rem 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 0.3rem;
}
.sys-mode-card-bullets li {
  font-size: 0.8rem; color: var(--text-body); line-height: 1.5;
  padding-left: 1.1rem; position: relative;
}
.sys-mode-card-bullets li::before {
  content: "✓"; position: absolute; left: 0;
  color: var(--green-600); font-weight: 700; font-size: 0.75rem;
}

/* end of sys- scoped styles */

/* ====================================================================
   BROCHURES PAGE — download card grid
   ==================================================================== */

/* ── Brochures hero (reuses .page-hero; no extra overrides needed) ── */

/* ── Download card grid ── */
.brochures-section { background: var(--cream); }

.brochures-group-label {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.09em; color: var(--green-700);
  border-bottom: 2px solid var(--green-200);
  padding-bottom: 0.5rem; margin: 2.5rem 0 1.25rem;
}

.brochures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .brochures-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .brochures-grid { grid-template-columns: 1fr; } }

.brochure-card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--border); border-radius: 16px;
  padding: 1.5rem; gap: 0.75rem;
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
}
.brochure-card:hover {
  border-color: var(--border-green); box-shadow: var(--shadow-md); transform: translateY(-3px);
}

.brochure-card-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: var(--green-100); color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
}

.brochure-card-title {
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  color: var(--text-dark); line-height: 1.35; margin: 0;
}

.brochure-card-desc {
  font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; margin: 0; flex: 1;
}

.brochure-card-btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  align-self: flex-start; margin-top: 0.25rem;
  padding: 0.55rem 1rem; border-radius: 8px;
  background: var(--green-700); color: var(--white);
  font-size: 0.8rem; font-weight: 600; text-decoration: none;
  transition: background var(--t-base), box-shadow var(--t-base);
  white-space: nowrap;
}
.brochure-card-btn:hover { background: var(--green-900); box-shadow: var(--shadow-sm); }
.brochure-card-btn svg { flex-shrink: 0; }

/* end of brochures styles */

/* ====================================================================
   HOMEPAGE WARM REFRESH — 2026-06
   All new blocks below are clearly commented and reversible.
   ==================================================================== */

/* ====================================================================
   1. SCROLL REVEAL — PROGRESSIVE ENHANCEMENT (site-wide)
   Problem: [data-reveal] starts at opacity:0 so content is invisible
   if JS fails. Fix: content is VISIBLE by default; CSS only hides it
   when JS adds html.reveal-enabled (set in main.js on DOMContentLoaded).
   The existing [data-reveal].visible rule still applies the shown state.
   ==================================================================== */

/* Remove the unconditional hide — replace with JS-gated hide */
[data-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
[data-reveal].visible { opacity: 1; transform: translateY(0); }
[data-reveal="fade"]   { transform: none; }

/* Only apply the hidden-start state when JS is active */
html.reveal-enabled [data-reveal]:not(.visible) {
  opacity: 0;
  transform: translateY(20px);
}
html.reveal-enabled [data-reveal="fade"]:not(.visible) {
  opacity: 0;
  transform: none;
}

/* Delay tokens still apply in both states (harmless when visible) */
html.reveal-enabled [data-delay="1"]:not(.visible) { transition-delay: 0.1s; }
html.reveal-enabled [data-delay="2"]:not(.visible) { transition-delay: 0.2s; }
html.reveal-enabled [data-delay="3"]:not(.visible) { transition-delay: 0.3s; }
html.reveal-enabled [data-delay="4"]:not(.visible) { transition-delay: 0.4s; }
html.reveal-enabled [data-delay="5"]:not(.visible) { transition-delay: 0.5s; }

/* ── Reduced-motion: disable ALL animation, keep everything visible ── */
@media (prefers-reduced-motion: reduce) {
  /* Kill transitions & animations globally */
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  /* Force all reveal elements visible regardless of JS state */
  [data-reveal],
  html.reveal-enabled [data-reveal]:not(.visible) {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  /* Stop the client marquee */
  .marquee-track { animation-play-state: paused !important; }
  /* Stop hero orbs and other ambient animations */
  .hero-orb, .hero-stage, .h-card-profit, .h-card-trace,
  .hero-scroll, .video-play::after { animation: none !important; }
}

/* ====================================================================
   2. DARK-GREEN HEAVINESS REBALANCE (homepage only)
   Lift low-contrast text in dark sections so nothing reads washed-out.
   Rule: increase rgba opacity of subtitles from ~0.55 → 0.75+.
   ==================================================================== */

/* Journey section header subtitle */
.journey-section .section-header p {
  color: rgba(255,255,255,0.78) !important;
}

/* Video section subtitle */
.video-section .section-header p {
  color: rgba(255,255,255,0.75) !important;
}

/* Why section body text */
.why-pillar p {
  color: rgba(255,255,255,0.72) !important;
}

/* Stats bar label */
.hstat-label { color: rgba(255,255,255,0.72); }

/* Hardware intro section tag gets gold warmth */
.hardware-intro .section-tag { color: var(--gold); }

/* ====================================================================
   3. MISSION STATEMENT SECTION
   A prominent, emotionally-resonant purpose statement in large type.
   Warm cream / subtly gold-tinted background — breathable, confident.
   Inserted in index.html after .value-pillars (before the video section).
   ==================================================================== */
.mission-statement {
  /* Warm gold-tinted cream — the sunlit counterpoint to dark green sections */
  background: linear-gradient(160deg, var(--gold-50) 0%, var(--cream) 55%, #ede9e1 100%);
  padding: 6rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}

/* Subtle warm texture overlay */
.mission-statement::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(224,163,62,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(30,92,46,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.mission-statement .container {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

/* Eyebrow label */
.ms-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 2rem;
}
.ms-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* The big statement text */
.ms-body {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--green-900);
  max-width: 860px;
  margin: 0;
}

/* Warm accent underline beneath the statement */
.ms-underline {
  display: block;
  width: 4rem;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  border-radius: 2px;
  margin-top: 2rem;
}

/* ====================================================================
   4. MOBILE HERO IMPROVEMENTS (≤480px)
   - Reduce H1 font size so headline fits in ~3 lines max
   - Clamp and shorten .hero-sub
   - Stack CTAs vertically, primary first (already column via existing rule)
   - Ensure the primary CTA and proof line are in the first screenful
   ==================================================================== */
@media (max-width: 480px) {
  .hero-inner {
    padding-top: calc(var(--nav-height) + var(--topbar-height) + 1.5rem);
    padding-bottom: 3rem;
  }
  .hero h1 {
    font-size: clamp(1.65rem, 8vw, 2.1rem);
    line-height: 1.12;
    margin-bottom: 1rem;
  }
  .hero-sub {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    /* Clamp to 3 lines so CTA stays above the fold */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  .hero-ctas .btn { justify-content: center; width: 100%; }
  /* Push trust bullets down so they don't crowd the CTA */
  .hero-trust { margin-top: 1.5rem; }
  .hero-trust li { font-size: 0.82rem; }
}

/* ── Sticky "Book a Demo" bar (mobile only, appears after hero scroll) ── */
.mobile-demo-bar {
  display: none; /* hidden on desktop */
}

@media (max-width: 768px) {
  .mobile-demo-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 900;
    background: var(--green-900);
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 0.75rem 1.25rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    /* Hidden by default — JS adds .is-visible after user scrolls past hero */
    transform: translateY(100%);
    transition: transform 0.32s var(--ease);
    /* Safe area for phones with home indicator */
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
  }
  .mobile-demo-bar.is-visible {
    transform: translateY(0);
  }
  .mobile-demo-bar-text {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.3;
    flex: 1;
    min-width: 0;
  }
  .mobile-demo-bar-text strong {
    display: block;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
  }
  .mobile-demo-bar .btn {
    flex-shrink: 0;
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
    white-space: nowrap;
  }
}

/* On desktop/tablet the bar is always hidden */
@media (min-width: 769px) {
  .mobile-demo-bar { display: none !important; }
}

/* =====================================================
   APPENDED STYLES — book-a-demo.html · faq.html
   case-studies/we-pack.html · index.html ICP section
   ===================================================== */

/* ── book-a-demo.html ──────────────────────────────── */

/* Two-column demo page layout */
.demo-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .demo-layout { grid-template-columns: 1fr; }
}

/* "What the demo covers" icon list */
.demo-covers-list {
  list-style: none;
  margin: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.demo-covers-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.6;
}
.demo-covers-list .dc-icon {
  width: 28px;
  height: 28px;
  background: var(--green-100);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-600);
  margin-top: 0.1rem;
}

/* Ideal-fit chips */
.ideal-fit-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.ideal-fit-chip {
  background: var(--green-50);
  border: 1px solid var(--border-green);
  color: var(--green-700);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
}

/* Pilot option box */
.pilot-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
}
.pilot-box h4 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.pilot-box p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* Testimonial aside on dark bg */
.demo-aside-testimonial {
  background: var(--green-900);
  border-radius: 14px;
  padding: 1.75rem;
  color: var(--white);
  position: relative;
}
.demo-aside-testimonial .quote-mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--green-400);
  line-height: 1;
  display: block;
  margin-bottom: -0.5rem;
}
.demo-aside-testimonial blockquote {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin: 0.75rem 0 1.25rem;
  border: none;
  padding: 0;
}

/* "What happens next" steps box */
.demo-next-steps {
  margin-top: 1.75rem;
  background: var(--green-50);
  border: 1px solid var(--border-green);
  border-radius: 12px;
  padding: 1.5rem;
}
.demo-next-steps h4 {
  font-size: 0.95rem;
  color: var(--green-800);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.demo-next-steps ol {
  list-style: none;
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.demo-next-steps ol li {
  counter-increment: steps;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.55;
}
.demo-next-steps ol li::before {
  content: counter(steps);
  background: var(--green-700);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Consistent select styling for demo form */
.form-select-styled {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-select-styled:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(58,140,82,0.1);
}

/* ── faq.html ──────────────────────────────────────── */

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.35rem 1.5rem;
  background: var(--white);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  transition: background var(--t-fast), color var(--t-fast);
}
.faq-question:hover,
.faq-item.open .faq-question {
  background: var(--green-50);
  color: var(--green-700);
}
.faq-chevron {
  flex-shrink: 0;
  color: var(--green-500);
  transition: transform var(--t-base);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 600px; }

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.75;
  background: var(--green-50);
}
.faq-answer-inner p + p { margin-top: 0.75rem; }
.faq-answer-inner ul {
  margin-top: 0.6rem;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.faq-answer-inner ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  list-style: none;
}
.faq-answer-inner ul li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-500);
  flex-shrink: 0;
  margin-top: 0.55rem;
}

/* FAQ category divider rows */
.faq-category {
  padding: 0.6rem 1.5rem;
  background: var(--green-900);
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-display);
}

/* ── case-studies/we-pack.html ─────────────────────── */

/* Two-column article + sticky sidebar */
.cs-page-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 960px) {
  .cs-page-layout { grid-template-columns: 1fr; }
}
.cs-sidebar {
  position: sticky;
  top: calc(var(--topbar-height) + var(--nav-height) + 2rem);
}

/* Customer profile sidebar card */
.cs-profile-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.cs-profile-card h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.cs-profile-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.cs-profile-row:last-child { border-bottom: none; }
.cs-profile-row .pr-label { color: var(--text-muted); font-weight: 500; }
.cs-profile-row .pr-val { color: var(--text-dark); font-weight: 600; text-align: right; }

/* Results metric grid */
.cs-results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
@media (max-width: 600px) {
  .cs-results-grid { grid-template-columns: 1fr; }
}
.cs-metric-card {
  background: var(--green-50);
  border: 1px solid var(--border-green);
  border-radius: 12px;
  padding: 1.25rem;
}
.cs-metric-card.cs-metric-hero {
  background: var(--green-900);
  border-color: var(--green-900);
  grid-column: 1 / -1;
}
.cs-metric-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green-700);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.cs-metric-card.cs-metric-hero .cs-metric-value {
  color: var(--green-300);
  font-size: 2.8rem;
}
.cs-metric-label { font-size: 0.875rem; font-weight: 600; color: var(--text-dark); }
.cs-metric-card.cs-metric-hero .cs-metric-label { color: rgba(255,255,255,0.75); }
.cs-metric-note { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.35rem; }
.cs-metric-card.cs-metric-hero .cs-metric-note { color: rgba(255,255,255,0.45); }

/* Case study pull quote */
.cs-pull-quote {
  background: var(--cream);
  border-left: 4px solid var(--green-500);
  border-radius: 0 10px 10px 0;
  padding: 1.5rem 1.75rem;
  margin: 2.5rem 0;
}
.cs-pull-quote blockquote {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.6;
  font-style: italic;
}
.cs-pull-quote .cs-q-attr {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Section labels within case study article */
.cs-section-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--green-600);
  margin-bottom: 0.75rem;
  margin-top: 2.5rem;
}
.cs-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-green);
}

/* Module chips */
.cs-modules {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.cs-module-chip {
  background: var(--green-100);
  color: var(--green-800);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
}

/* Results/metric disclaimer box */
.cs-disclaimer {
  background: var(--gold-50);
  border: 1px solid #e8c97a;
  border-radius: 8px;
  padding: 0.9rem 1.1rem;
  font-size: 0.8125rem;
  color: #6b5a1e;
  line-height: 1.55;
  margin-top: 2rem;
}

/* ── index.html ICP section responsive ─────────────── */
/* The ICP section reuses .solutions-grid + .solution-card — no new layout
   classes needed. The dark card variation uses inline styles intentionally
   to avoid adding specificity conflicts with existing solution-card rules. */

/* ── End of Warm Refresh 2026-06 ── */

/* ============================
   PRODUCE BAND — "Built Around What You Grow"
   (.grow-band, .grow-tile, .grow-tile-img-wrap, .grow-tile-label)
   Bright, no-scrim section showcasing real crop close-ups.
   Placed between the Clients marquee and the Journey section.
   ============================ */
.grow-band {
  padding: 5rem 0 5.5rem;
  background: var(--cream);
  overflow: hidden;
}
.grow-band-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}
.grow-band-header h2 {
  margin: 0.4rem 0 0.75rem;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  color: var(--green-900);
}
.grow-band-sub {
  font-size: 1.0625rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

/* Five-up responsive tile row */
.grow-band-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1024px) {
  .grow-band-grid { grid-template-columns: repeat(3, 1fr); }
  /* push last 2 tiles to centre on the second row */
  .grow-tile:nth-child(4) { grid-column: 1; }
  .grow-tile:nth-child(5) { grid-column: 2; }
}
@media (max-width: 640px) {
  .grow-band-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .grow-tile:nth-child(4),
  .grow-tile:nth-child(5) { grid-column: auto; }
}

/* Individual crop tile */
.grow-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.grow-tile:hover { transform: translateY(-5px); }

.grow-tile-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(15,45,24,0.10);
  transition: box-shadow 0.22s ease;
}
.grow-tile:hover .grow-tile-img-wrap {
  box-shadow: 0 10px 32px rgba(15,45,24,0.18);
}
.grow-tile-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.38s ease;
}
.grow-tile:hover .grow-tile-img-wrap img {
  transform: scale(1.04);
}

.grow-tile-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--green-900);
  letter-spacing: 0.01em;
}
/* ── End of Produce Band ── */

/* ── Mobile layout fixes (appended last so they override base grid rules
      that were defined after the 768px media block) ───────────────────── */
@media (max-width: 768px) {
  .vp-grid { grid-template-columns: 1fr; }        /* value-pillar cards: stack 1-col */
  .pt-plans { grid-template-columns: 1fr; }       /* pricing-teaser plans: stack */
  .hero-stats-inner { flex-direction: column; }   /* stats: clean vertical stack */
  .hstat-divider { display: none; }               /* hide stray vertical dividers when stacked */
}

/* ====================================================================
   TASK 1 — MOBILE HERO ALIGNMENT (≤768px)
   Centers hero copy, eyebrow, CTAs, and trust list on mobile.
   Desktop (two-column, left-aligned) is completely untouched.
   ==================================================================== */
@media (max-width: 768px) {
  .hero-content {
    align-items: center;
    text-align: center;
  }
  .hero-eyebrow {
    /* eyebrow is inline-flex; auto margins centre it */
    margin-left: auto;
    margin-right: auto;
  }
  .hero h1 {
    text-align: center;
  }
  .hero-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
  .hero-ctas {
    justify-content: center;
    width: 100%;
  }
  .hero-trust {
    align-items: center;
    width: 100%;
  }
  /* Ensure trust list items themselves stay readable */
  .hero-trust li {
    justify-content: center;
  }
}

/* ====================================================================
   TASK 2 — HERO MISSION HIGHLIGHT
   Styled inline beneath .hero-sub. Class: .hero-mission-line
   ==================================================================== */
.hero-mission-line {
  display: block;
  margin-top: -1.25rem;      /* tighten gap after .hero-sub */
  margin-bottom: 2.25rem;
  padding: 0.95rem 1.25rem;
  border-left: 4px solid var(--gold);
  background: rgba(224,163,62,0.14);
  border-radius: 0 10px 10px 0;
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.55;
  font-style: italic;
  font-weight: 500;
  max-width: 560px;
}
@media (max-width: 768px) {
  .hero-mission-line {
    border-left: none;
    border-top: 2px solid var(--gold);
    border-radius: 0 0 8px 8px;
    background: rgba(224,163,62,0.08);
    text-align: center;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0.65rem 1rem;
  }
}

/* ====================================================================
   TASK 3 — JOURNEY PLATFORM (merged section)
   Replaces .journey-section + .solutions-preview with one cohesive
   dark-green section: header + 3 equal-height role cards.
   ==================================================================== */
.journey-platform {
  background: var(--green-900);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

/* Reuse the photographic backdrop pattern from old journey section */
.journey-platform .journey-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
  filter: blur(1.5px) saturate(1.1) brightness(0.5);
  transform: scale(1.04);
  opacity: 0.28;
  z-index: 0;
  pointer-events: none;
}
.journey-platform .journey-scrim {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(9,27,16,0.72) 0%, rgba(7,26,13,0.65) 50%, rgba(9,27,16,0.72) 100%);
}
.journey-platform .container { position: relative; z-index: 1; }

/* Section header inherits .section-header; gold tag + white heading */
.journey-platform .section-header { margin-bottom: 3.5rem; }

/* 3-column grid for role cards */
.jp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}

/* Individual role card */
.jp-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.jp-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(91,186,116,0.35);
  transform: translateY(-5px);
}

/* Role photo header */
.jp-card-photo {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.jp-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow);
}
.jp-card:hover .jp-card-photo img { transform: scale(1.06); }

/* Photo overlay for legibility */
.jp-card-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(9,27,16,0.7) 100%);
  pointer-events: none;
}

/* Card body */
.jp-card-body {
  padding: 1.75rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

/* Step number + icon row */
.jp-step-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}
.jp-step-num {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-soft);
}
.jp-step-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: rgba(91,186,116,0.18);
  border: 1px solid rgba(91,186,116,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-400);
  flex-shrink: 0;
}

.jp-card-body h3 {
  color: var(--white);
  font-size: 1.45rem;
  font-weight: 700;
  margin: 0;
}
.jp-card-body > p {
  color: rgba(255,255,255,0.72);
  font-size: 0.9375rem;
  margin: 0;
  line-height: 1.6;
}

/* Feature bullets — reuse .journey-features styling */
.jp-features {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}
.jp-features li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.82);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}
.jp-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* "Solutions for X →" link */
.jp-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--green-400);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, gap 0.2s ease;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.jp-card-link:hover { color: var(--white); gap: 0.6rem; }
.jp-card-link svg { flex-shrink: 0; }

/* Responsive: 3-col → 1-col on mobile */
@media (max-width: 900px) {
  .jp-grid { grid-template-columns: 1fr; }
  .jp-card-photo { height: 220px; }
}
@media (max-width: 768px) {
  .journey-platform { padding: 4rem 0; }
  .jp-card-photo { height: 200px; }
}

/* ====================================================================
   HERO STATS BAR — PINNED TO BOTTOM OF HERO (desktop ≥769px)
   Stats bar moved inside <section class="hero"> as last child.
   On desktop: hero is a flex column so stats bar sits at the bottom
   of the 100vh hero, fully visible in the first screen.
   On mobile: hero reverts to auto height, stats bar flows naturally.
   ==================================================================== */

/* ── Desktop: flex-column hero so stats bar anchors to bottom ── */
@media (min-width: 769px) {
  .hero {
    /* Switch from align-items:center to a flex column so children
       stack: hero-bg (abs), hero-inner (flex:1), hero-scroll (abs), stats bar */
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 100vh;
    /* Trim bottom padding that was previously on hero-inner; stats bar
       now occupies that space. Top padding stays on hero-inner itself. */
  }

  /* hero-inner grows to fill remaining height, centres its grid content */
  .hero-inner {
    flex: 1;
    display: grid; /* already grid in base; keep two-column layout */
    align-items: center;
    /* Reduce bottom padding so content + stats bar fit in 100vh at 800–900px */
    padding-bottom: 2rem;
  }

  /* Stats bar sits at the bottom edge of the hero — no position:absolute
     needed; flex column natural flow places it last.
     The dark gradient background already covers the photo beneath it. */
  .hero-stats-bar {
    position: relative;
    z-index: 3; /* above .hero::after grid overlay (z-index:1) */
    flex-shrink: 0;
    /* Ensure the background photo/scrim still shows behind — the bar's own
       dark gradient (defined in base rule) keeps text legible. */
  }

  /* hero-scroll sits absolute so it overlaps the hero-inner/stats boundary;
     hide it on desktop to avoid visual clutter with the stats bar pinned below */
  .hero-scroll {
    display: none;
  }
}

/* ── Mobile (≤768px): revert to natural flow ── */
@media (max-width: 768px) {
  .hero {
    /* Remove flex-column forcing; height is driven by content */
    display: block;
    min-height: auto;
    /* Restore the original centre-alignment for ambient bg elements */
    position: relative;
    overflow: hidden;
  }

  /* Stats bar flows below hero content, full-width, not constrained */
  .hero-stats-bar {
    position: static;
    z-index: auto;
  }
}

/* Desktop hero fit: claw back vertical space so hero content + stats bar fit in
   100vh and the stats bar pins at the bottom of the first screen (no overflow). */
@media (min-width: 769px) {
  .hero-inner { padding-top: calc(var(--nav-height) + var(--topbar-height) + 0.25rem); padding-bottom: 0.5rem; min-height: 0; }
  .hero-mission-line { margin-top: -0.75rem; margin-bottom: 1.1rem; }  /* kept large, tighter spacing */
  .hero-sub { margin-bottom: 1.1rem; }
  .hero-visual { zoom: 0.85; }  /* shrink dashboard AND its layout box so the row is shorter */
}
