/* =====================================================
   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;

  --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.85rem; 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-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: 210px; 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(255,255,255,0.15);
  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(--green-400); 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; }

/* ============================
   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: 2fr 1fr 1fr 1.6fr 1.5fr; 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); } }

.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
   ============================ */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
[data-reveal].visible { opacity: 1; transform: translateY(0); }
[data-reveal="fade"] { transform: none; }
[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: start; 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(--green-400);
}
.journey-step h3 { color: var(--white); font-size: 1.5rem; font-weight: 700; margin: 0; }
.journey-step > p { color: rgba(255,255,255,0.55); 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.7);
  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(--green-400);
}
.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.55); 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.55); 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;
}
.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 + keep content visible without JS */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ============================
   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: var(--green-950);
  border-top: 1px solid rgba(255,255,255,0.08);
  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(--white); 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%;
  /* blur both hides the source photo's low resolution and keeps it ambient */
  filter: blur(2px) saturate(1.08) brightness(0.92);
  transform: scale(1.08); /* hides the soft blurred edge from the scale-free crop */
  opacity: 0.6;
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    /* left-weighted: near-opaque where the headline sits, lighter behind the dashboard */
    linear-gradient(100deg,
      rgba(6,21,11,0.97) 0%,
      rgba(7,24,13,0.93) 34%,
      rgba(9,34,20,0.78) 62%,
      rgba(11,44,27,0.66) 100%),
    /* vertical anchor so top nav area and bottom stats bar stay grounded */
    linear-gradient(180deg, rgba(6,21,11,0.45) 0%, rgba(6,21,11,0) 32%, rgba(6,21,11,0.55) 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.92) 0%, rgba(7,26,15,0.86) 55%, rgba(9,34,20,0.8) 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; }
}
