/* ═══════════════════════════════════════════════════════
   NOVA AI — SHARED STYLES FOR PRODUCT & SOLUTION PAGES
   ═══════════════════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ── YouTube Lightbox ── */
.yt-lightbox { position: fixed; inset: 0; z-index: 10000; background: rgba(0,0,0,0.9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); display: none; align-items: center; justify-content: center; padding: 32px; cursor: zoom-out; opacity: 0; transition: opacity 0.35s ease; }
.yt-lightbox.active { display: flex; opacity: 1; }
.yt-lightbox-inner { position: relative; width: 100%; max-width: 1100px; aspect-ratio: 16 / 9; background: #000; border-radius: 16px; overflow: hidden; box-shadow: 0 32px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(88,217,0,0.2); cursor: default; transform: scale(0.96); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); }
.yt-lightbox.active .yt-lightbox-inner { transform: scale(1); }
.yt-lightbox-inner iframe { width: 100%; height: 100%; border: 0; display: block; }
.yt-lightbox-close { position: absolute; top: -48px; right: 0; width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); background: rgba(0,0,0,0.5); color: #fff; font-size: 22px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; z-index: 2; }
.yt-lightbox-close:hover { background: rgba(255,255,255,0.15); }

/* ── Reusable "Watch Demo" button ── */
.watch-demo-btn { display: inline-flex; align-items: center; gap: 10px; padding: 12px 22px; background: linear-gradient(135deg, #dc2626, #b91c1c); color: #ffffff; border: 1px solid rgba(255,255,255,0.2); border-radius: 100px; font-size: 14px; font-weight: 700; cursor: pointer; text-decoration: none; font-family: inherit; box-shadow: 0 8px 24px rgba(220,38,38,0.35), inset 0 1px 0 rgba(255,255,255,0.2); transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s; }
.watch-demo-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(220,38,38,0.45); color: #fff; }
.watch-demo-btn svg { width: 16px; height: 16px; flex-shrink: 0; fill: #58d900; }
.watch-demo-btn .watch-demo-duration { font-size: 11px; font-weight: 600; opacity: 0.85; padding: 2px 8px; background: rgba(255,255,255,0.15); border-radius: 100px; }

/* ── Lightbox Modal (opens on hover of any content image) ── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
  cursor: zoom-out;
}
.lightbox-overlay.active { opacity: 1; visibility: visible; }
.lightbox-overlay img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 32px 100px rgba(0,0,0,0.5);
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.lightbox-overlay.active img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.06);
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(8px);
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }

/* ── Global Image Pop-Out Hover (applies to all content images) ── */
main img, section img, .container img, article img,
.feature-card img, .feat-screen img, .screen-frame img,
.guide-card img, .blog-card img, .comparison-card img {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  cursor: zoom-in;
}
main img:hover, section img:hover, .container img:hover, article img:hover,
.feature-card img:hover, .feat-screen img:hover, .screen-frame img:hover,
.guide-card img:hover, .blog-card img:hover, .comparison-card img:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 70px rgba(0,0,0,0.35), 0 0 0 1px rgba(88,217,0,0.25);
  position: relative;
  z-index: 10;
}
/* Exclude nav logos, footer images, tracking pixels, and SVGs from hover zoom */
nav img, .nav img, .navbar img,
.footer img, .footer-brand img, .footer-img img, .footer-bg-img img, .footer-banner-top img,
.proof-logos img,
#promoBannerImg,
img[width="1"], img[height="1"],
svg { transition: none !important; cursor: auto !important; }
nav img:hover, .nav img:hover, .navbar img:hover,
.footer img:hover, .footer-brand img:hover, .footer-img img:hover, .footer-bg-img img:hover, .footer-banner-top img:hover,
.proof-logos img:hover,
#promoBannerImg:hover {
  transform: none !important;
  box-shadow: none !important;
}

:root {
  --background: #f0fdf4;
  --white: #f0fdf4;
  --off-white: #dcfce7;
  --gray-50: #f8fafc; --gray-100: #f1f5f9; --gray-200: #e2e8f0;
  --gray-300: #cbd5e1; --gray-400: #94a3b8; --gray-500: #64748b;
  --gray-600: #475569; --gray-700: #334155; --gray-800: #1e293b;
  --gray-900: #0f172a;
  --brand: #58d900;
  --brand-light: rgba(88,217,0,0.08);
  --navy: #0f172a; --navy-light: #1e293b;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.16,1,0.3,1);
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.06),0 1px 2px rgba(15,23,42,0.04);
  --shadow-md: 0 4px 6px rgba(15,23,42,0.05),0 10px 15px rgba(15,23,42,0.08);
  --shadow-lg: 0 10px 25px rgba(15,23,42,0.08),0 20px 48px rgba(15,23,42,0.06);
  --r-sm: 8px; --r-md: 12px; --r-lg: 16px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); color: var(--gray-700); background: #f0fdf4; overflow-x: hidden; line-height: 1.6; }
a { text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1400px; margin: 0 auto; padding: 0 32px; }

/* ── NAV (synced from homepage) ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 48px;
  transition: all 0.4s ease;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  border-bottom-color: rgba(0,0,0,0.06);
  box-shadow: 0 1px 8px rgba(15,23,42,0.06);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 108px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  margin-left: 0;
  flex-shrink: 0;
}

.nav-logo-block {
  display: flex;
  align-items: center;
  gap: 14px;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 6px 18px 6px 6px;
  position: relative;
}

.nav-beta-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #000;
  background: #58d900;
  padding: 3px 7px;
  border-radius: 4px;
  line-height: 1;
  text-transform: uppercase;
  margin-left: 8px;
  align-self: center;
}

.nav-logo-block:hover {
  border: none;
  box-shadow: none;
}

.nav-logo-block img {
  height: 90px;
  width: auto;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-logo-wordmark {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}

.nav-beta-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  background: #dc2626;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  border-radius: 4px;
  text-transform: uppercase;
  margin-left: 8px;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.35);
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.nav-logo-wordmark em {
  font-style: normal;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.nav-logo-wordmark strong {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #a8ff3e 0%, #58d900 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 16px rgba(88,217,0,0.7));
}

.nav-logo-tagline {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #58d900, #a8ff3e, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.75;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 6px;
  transition: color 0.2s, background-color 0.2s;
}

.nav-links a:hover { color: #ffffff; background-color: #58d900; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #6aea00 0%, #58d900 60%, #3fb800 100%);
  color: #000000 !important;
  border-radius: 100px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 0 0 1px rgba(88,217,0,0.4), 0 4px 14px rgba(88,217,0,0.35);
  transition: box-shadow 0.25s, transform 0.2s, filter 0.2s;
}

.nav-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(88,217,0,0.6), 0 6px 20px rgba(88,217,0,0.5);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-icon-btn {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: rgba(88,217,0,0.1);
  border: 1px solid rgba(88,217,0,0.25);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s;
  color: #58d900;
  box-shadow: 0 0 8px rgba(88,217,0,0.08);
}

.nav-icon-btn:hover {
  background: rgba(88,217,0,0.2);
  border-color: rgba(88,217,0,0.5);
  color: #6aea00;
  box-shadow: 0 0 16px rgba(88,217,0,0.2);
  transform: translateY(-1px);
}

.nav-icon-btn svg { stroke: currentColor; }

.nav-btn-trial {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: #58d900;
  color: #000000 !important;
  border: none;
  border-radius: 100px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.nav-btn-trial:hover {
  filter: brightness(1.1);
  color: #ffffff !important;
  transform: translateY(-1px);
}

.nav-btn-demo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: rgba(88,217,0,0.12);
  color: #58d900 !important;
  border: 1px solid rgba(88,217,0,0.35);
  border-radius: 100px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.nav-btn-demo:hover {
  background: rgba(88,217,0,0.22);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(88,217,0,0.25);
}

.nav-item-dropdown {
  position: relative;
}

.nav-item-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-item-dropdown > a .chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
  opacity: 0.7;
}

.nav-item-dropdown:hover > a .chevron {
  transform: rotate(180deg);
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: #0a0a0a;
  border: 1px solid rgba(88,217,0,0.15);
  border-radius: 16px;
  padding: 20px;
  min-width: 560px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(88,217,0,0.06);
  z-index: 2000;
  gap: 8px;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -20px;
  right: -20px;
  height: 10px;
}

.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown.dd-open .nav-dropdown {
  display: grid;
}

.nav-dropdown-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-right: 1px solid rgba(88,217,0,0.1);
  padding-right: 8px;
}

.nav-dropdown-col:last-child {
  border-right: none;
  padding-right: 0;
}

.nav-dropdown-heading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(88,217,0,0.7);
  padding: 6px 12px 8px;
  border-bottom: 1px solid rgba(88,217,0,0.1);
  margin-bottom: 6px;
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: rgba(255,255,255,0.75) !important;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  background: transparent;
  transition: background 0.15s, color 0.15s;
  border-bottom: 1px solid rgba(88,217,0,0.06);
}

.nav-dropdown a:last-child {
  border-bottom: none;
}

.nav-dropdown a:hover {
  background: rgba(88,217,0,0.08);
  color: #ffffff !important;
}

.nav-dropdown a .dd-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(88,217,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
}

.nav-dropdown a .dd-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
}

.nav-dropdown a .dd-text span {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}

.nav-dropdown.product-dd {
  grid-template-columns: 1fr 1fr 1fr;
  min-width: 860px;
}

.nav-dropdown.platform-dd {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  min-width: 1100px;
  left: 50%;
  transform: translateX(-50%);
}

.nav-dropdown.solutions-dd {
  grid-template-columns: 1fr 1fr 1fr;
  min-width: 640px;
}

.nav-dropdown.compare-dd {
  grid-template-columns: 1fr 1fr;
  min-width: 400px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
  position: relative;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  margin: 5px auto;
  transition: transform 0.3s ease, opacity 0.2s ease;
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.nav-open { overflow: hidden; }

@media (max-width: 1100px) {
  .nav-btn-trial { display: none; }
  .nav-links { gap: 20px; }
  .nav { padding: 0 24px; }
  .nav-logo { margin-left: 0; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-actions { gap: 8px; }
  .nav-btn-demo { padding: 8px 14px; font-size: 11px; }
  .nav-inner { height: 72px; }
  .nav-logo-block img { height: 56px; }
  .nav-logo-wordmark em,
    .nav-logo-wordmark strong { font-size: 28px; }
  .nav-logo { margin-left: 0; }
  .nav-links.open {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(5,5,10,0.98);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      padding: 90px 24px 32px;
      gap: 0;
      z-index: 1050;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      animation: navSlideIn 0.3s ease forwards;
    }
  .nav-links.open > li {
      border-bottom: 1px solid rgba(88,217,0,0.08);
    }
  .nav-links.open > li > a {
      display: block;
      font-size: 16px;
      font-weight: 600;
      padding: 16px 0;
      color: #ffffff !important;
      background: transparent !important;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }
  .nav-links.open .nav-item-dropdown > a {
      pointer-events: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
  .nav-links.open .nav-item-dropdown > a .chevron {
      display: block;
      width: 16px;
      height: 16px;
      opacity: 0.5;
      transition: transform 0.3s ease;
      stroke: #58d900;
    }
  .nav-links.open .nav-item-dropdown.mobile-open > a .chevron {
      transform: rotate(180deg);
      opacity: 1;
    }
  .nav-links.open .nav-dropdown {
      display: none !important;
    }
  .nav-links.open .nav-item-dropdown.mobile-open .nav-dropdown {
      display: flex !important;
      position: static;
      transform: none;
      background: rgba(88,217,0,0.04);
      border: none;
      border-radius: 12px;
      padding: 8px 0;
      min-width: unset;
      box-shadow: none;
      flex-direction: column;
      gap: 0;
      margin-bottom: 8px;
      animation: mobileAccordion 0.25s ease forwards;
    }
  .nav-links.open .nav-dropdown::before { display: none; }
  .nav-links.open .nav-dropdown-col {
      border-right: none;
      padding-right: 0;
      border-bottom: 1px solid rgba(88,217,0,0.06);
      padding-bottom: 4px;
      margin-bottom: 4px;
    }
  .nav-links.open .nav-dropdown-col:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }
  .nav-links.open .nav-dropdown a {
      padding: 10px 16px;
      font-size: 14px;
      border-bottom: none;
    }
  .nav-links.open .nav-dropdown a .dd-icon {
      width: 26px;
      height: 26px;
      border-radius: 6px;
    }
  .nav-links.open .nav-dropdown a .dd-text strong {
      font-size: 13px;
    }
  .nav-links.open .nav-dropdown a .dd-text span {
      font-size: 10px;
    }
  .nav-links.open .nav-dropdown-heading {
      font-size: 9px;
      padding: 8px 16px 6px;
      color: rgba(88,217,0,0.6);
    }
  .nav-links.open::after {
      content: '';
      display: block;
      flex-shrink: 0;
      height: 80px;
    }
}

@media (max-width: 480px) {
  .nav { padding: 0 12px; }
  .nav-inner { height: 60px; }
  .nav-logo-block img { height: 40px; }
  .nav-logo-wordmark em,
    .nav-logo-wordmark strong { font-size: 22px; }
  .nav-cta { padding: 7px 12px; font-size: 10px; }
  .nav-btn-demo { padding: 6px 12px; font-size: 10px; }
  .nav-btn-demo svg { display: none; }
  .nav-links.open { padding: 70px 16px 24px; }
}

@media (max-width: 360px) {
  .nav-cta { display: none; }
}

@media (min-width: 901px) {
  .nav-item-dropdown > a .chevron { display: inline-block; }
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: #58d900; color: #000; border: none; border-radius: 100px;
  font-size: 15px; font-weight: 700; font-family: var(--font); cursor: pointer; letter-spacing: 0.01em;
  transition: transform 0.2s, filter 0.2s;
  box-shadow: 0 0 0 1px rgba(88,217,0,0.4),0 4px 20px rgba(88,217,0,0.45),0 8px 40px rgba(88,217,0,0.2);
}
.btn-primary:hover { transform: translateY(-2px) scale(1.02); filter: brightness(1.08); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; background: transparent; color: var(--gray-700); border: 1px solid var(--gray-300); border-radius: 100px;
  font-size: 15px; font-weight: 600; font-family: var(--font); cursor: pointer; letter-spacing: 0.01em;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-secondary:hover { border-color: var(--gray-900); color: var(--gray-900); transform: translateY(-1px); }

/* ── PRODUCT PAGE HERO ── */
.page-hero {
  padding: 120px 32px 80px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(88,217,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px 5px 8px; border-radius: 100px;
  background: rgba(88,217,0,0.1); border: 1px solid rgba(88,217,0,0.25);
  font-size: 12px; font-weight: 700; color: #58d900; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: #58d900; animation: pulse 2s ease infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }

.page-hero h1 { font-size: clamp(38px,5vw,64px); font-weight: 800; color: #fff; line-height: 1.08; letter-spacing: -0.04em; margin-bottom: 20px; max-width: 820px; margin-left: auto; margin-right: auto; }
.page-hero h1 em { font-style: normal; background: linear-gradient(135deg,#58d900,#a8ff3e); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.6); max-width: 640px; margin: 0 auto 40px; line-height: 1.7; }
.page-hero-actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 60px; }

/* Hero screenshot */
.hero-screen-wrap { max-width: 1100px; margin: 0 auto; position: relative; }
.screen-frame {
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(88,217,0,0.2);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.5), 0 32px 80px rgba(0,0,0,0.6), 0 0 60px rgba(88,217,0,0.08);
  background: #0a0a0f;
}
.screen-chrome {
  background: #111118; padding: 10px 18px;
  display: flex; align-items: center; gap: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.chrome-dots { display: flex; gap: 6px; }
.chrome-dots span { width: 11px; height: 11px; border-radius: 50%; }
.chrome-dots span:nth-child(1) { background: #ef4444; }
.chrome-dots span:nth-child(2) { background: #eab308; }
.chrome-dots span:nth-child(3) { background: #22c55e; }
.chrome-url { flex: 1; text-align: center; font-size: 12px; color: rgba(255,255,255,0.3); }
.chrome-badge { font-size: 11px; color: #22c55e; font-weight: 600; }
.screen-frame img { width: 100%; display: block; object-fit: cover; }

/* ── STATS BAR ── */
.stats-bar {
  background: #fff; border-top: 1px solid #e8f5e9; border-bottom: 1px solid #e8f5e9;
  padding: 48px 32px;
}
.stats-bar-inner { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; max-width: 900px; margin: 0 auto; }
.stat-item { text-align: center; padding: 16px 40px; border-right: 1px solid var(--gray-200); }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 42px; font-weight: 800; color: var(--gray-900); line-height: 1; letter-spacing: -0.03em; }
.stat-num span { color: #58d900; }
.stat-label { font-size: 13px; color: var(--gray-500); font-weight: 500; margin-top: 4px; }

/* ── FEATURE SECTIONS ── */
.feature-section { padding: 100px 32px; }
.feature-section:nth-child(even) { background: #f8fffe; }
.feature-section:nth-child(odd) { background: #fff; }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #58d900; margin-bottom: 12px; }
.feature-row h2 { font-size: clamp(26px,3vw,38px); font-weight: 800; color: var(--gray-900); line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 16px; }
.feature-row p { font-size: 16px; color: var(--gray-500); line-height: 1.75; margin-bottom: 28px; }
.feature-bullets { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.feature-bullets li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--gray-600); line-height: 1.5; }
.bullet-check { width: 20px; height: 20px; border-radius: 50%; background: rgba(88,217,0,0.12); border: 1px solid rgba(88,217,0,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; color: #58d900; font-size: 11px; font-weight: 700; }
.feature-bullets li strong { color: var(--gray-800); }

/* Feature screenshot */
.feat-screen { position: relative; }
.feat-screen .screen-frame img { max-height: 380px; object-fit: cover; object-position: top; }

/* ── RELATED PRODUCTS ── */
.related-section { padding: 80px 32px; background: var(--navy); }
.related-section h3 { text-align: center; font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 40px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 900px; margin: 0 auto; }
.related-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 20px; transition: border-color 0.2s, background 0.2s; }
.related-card:hover { border-color: rgba(88,217,0,0.3); background: rgba(88,217,0,0.04); }
.related-card a { text-decoration: none; display: block; }
.related-icon { font-size: 24px; margin-bottom: 10px; }
.related-card h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.related-card p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* ── PAGE CTA BANNER ── */
.page-cta { padding: 100px 32px; background: #f0fdf4; text-align: center; }
.page-cta h2 { font-size: clamp(28px,3.5vw,44px); font-weight: 800; color: var(--gray-900); letter-spacing: -0.03em; margin-bottom: 16px; }
.page-cta p { font-size: 17px; color: var(--gray-500); max-width: 520px; margin: 0 auto 36px; line-height: 1.7; }
.page-cta-actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ── FOOTER (Premium Multi-Variant with footer.png) ── */
.footer { background: #0f172a; padding: 0; position: relative; overflow: hidden; }
.footer-col h5 { font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: #58d900; margin: 0 0 20px; padding: 0 0 12px; border-bottom: 1px solid rgba(88,217,0,0.2); position: relative; }
.footer-col h5::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 24px; height: 2px; background: #58d900; border-radius: 2px; }
.footer-col a { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.65); text-decoration: none; padding: 7px 0; transition: all 0.25s cubic-bezier(0.4,0,0.2,1); font-weight: 500; }
.footer-col a::before { content: '→'; color: #58d900; opacity: 0; transform: translateX(-8px); transition: all 0.25s cubic-bezier(0.4,0,0.2,1); font-weight: 700; font-size: 13px; }
.footer-col a:hover { color: #fff; transform: translateX(4px); }
.footer-col a:hover::before { opacity: 1; transform: translateX(0); }
.footer-eyebrow { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em; color: #58d900; margin: 0 0 8px; display: flex; align-items: center; gap: 10px; }
.footer-eyebrow::before { content: ''; width: 24px; height: 2px; background: #58d900; border-radius: 2px; }
.footer-headline { font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 26px; font-weight: 900; color: #fff; margin: 0 0 28px; line-height: 1.2; letter-spacing: -0.02em; }
.footer-headline span { color: #58d900; }
.footer-bottom { background: #0a0a0a; padding: 20px 32px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; border-top: 3px solid #58d900; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.5); margin: 0; }

/* ── VARIANT 1: IMAGE LEFT HALF (Solutions pages) ── */
.footer.variant-left .footer-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; gap: 0; }
.footer.variant-left .footer-img { background: #000; border-right: 4px solid #58d900; position: relative; overflow: hidden; }
.footer.variant-left .footer-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.footer.variant-left .footer-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 70%, rgba(15,23,42,0.5) 100%); }
.footer.variant-left .footer-content { padding: 72px 56px; display: flex; flex-direction: column; gap: 40px; background: radial-gradient(ellipse at top right, rgba(88,217,0,0.08) 0%, transparent 60%), #0f172a; }
.footer.variant-left .footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }

/* ── VARIANT 2: IMAGE RIGHT HALF (Product pages) ── */
.footer.variant-right .footer-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; gap: 0; }
.footer.variant-right .footer-img { background: #000; border-left: 4px solid #58d900; position: relative; overflow: hidden; order: 2; }
.footer.variant-right .footer-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.footer.variant-right .footer-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(270deg, transparent 70%, rgba(15,23,42,0.5) 100%); }
.footer.variant-right .footer-content { padding: 72px 56px; display: flex; flex-direction: column; gap: 40px; background: radial-gradient(ellipse at top left, rgba(88,217,0,0.08) 0%, transparent 60%), #0f172a; }
.footer.variant-right .footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }

/* ── VARIANT 3: TOP BANNER (Platform pages) ── */
.footer.variant-banner .footer-banner-top { position: relative; width: 100%; height: 260px; overflow: hidden; background: #000; border-bottom: 4px solid #58d900; box-shadow: 0 0 60px rgba(88,217,0,0.15); }
.footer.variant-banner .footer-banner-top img { width: 100%; height: 100%; object-fit: cover; display: block; }
.footer.variant-banner .footer-banner-top::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%); }
.footer.variant-banner .footer-banner-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; z-index: 2; padding: 0 24px; }
.footer.variant-banner .footer-banner-title { font-size: clamp(22px, 3.5vw, 36px); font-weight: 900; color: #fff; margin: 0 0 10px; text-shadow: 0 4px 24px rgba(0,0,0,0.7), 0 0 40px rgba(88,217,0,0.3); letter-spacing: -0.02em; }
.footer.variant-banner .footer-banner-sub { color: rgba(255,255,255,0.85); font-size: 14px; margin: 0; font-weight: 500; text-shadow: 0 2px 12px rgba(0,0,0,0.7); }
.footer.variant-banner .footer-inner { max-width: 1200px; margin: 0 auto; padding: 64px 32px; display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 48px; }
.footer.variant-banner .footer-intro .footer-headline { font-size: 22px; max-width: 320px; }

/* ── VARIANT 4: CIRCULAR BADGE (Compare pages) ── */
.footer.variant-badge .footer-inner { max-width: 1200px; margin: 0 auto; padding: 72px 32px; display: grid; grid-template-columns: auto 1fr; gap: 56px; align-items: start; }
.footer.variant-badge .footer-img { width: 220px; height: 220px; border-radius: 50%; overflow: hidden; border: 4px solid #58d900; box-shadow: 0 20px 60px rgba(88,217,0,0.25), 0 0 0 1px rgba(88,217,0,0.2); position: relative; flex-shrink: 0; }
.footer.variant-badge .footer-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.footer.variant-badge .footer-content { display: flex; flex-direction: column; gap: 32px; }
.footer.variant-badge .footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }

/* ── VARIANT 5: BACKGROUND OVERLAY (Docs pages) ── */
.footer.variant-bg { position: relative; }
.footer.variant-bg .footer-bg-img { position: absolute; inset: 0; z-index: 0; }
.footer.variant-bg .footer-bg-img img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.25; }
.footer.variant-bg .footer-bg-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.95) 50%, #0f172a 100%); }
.footer.variant-bg .footer-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 80px 32px; display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 48px; }
.footer.variant-bg .footer-intro { max-width: 360px; }

/* ── Responsive for all variants ── */
@media (max-width: 900px) {
  .footer.variant-left .footer-inner,
  .footer.variant-right .footer-inner { grid-template-columns: 1fr; min-height: auto; }
  .footer.variant-left .footer-img,
  .footer.variant-right .footer-img { border-right: none; border-left: none; border-bottom: 4px solid #58d900; order: 0; }
  .footer.variant-left .footer-img img,
  .footer.variant-right .footer-img img { height: 240px; }
  .footer.variant-left .footer-content,
  .footer.variant-right .footer-content { padding: 48px 24px; }
  .footer.variant-left .footer-cols,
  .footer.variant-right .footer-cols,
  .footer.variant-badge .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer.variant-banner .footer-inner,
  .footer.variant-bg .footer-inner { grid-template-columns: 1fr; padding: 48px 24px; }
  .footer.variant-badge .footer-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer.variant-badge .footer-img { width: 180px; height: 180px; }
}

/* ── SOLUTION HERO (green tint) ── */
.solution-hero { background: linear-gradient(135deg, var(--navy) 0%, #0a1f0a 100%); }
.solution-hero::before { background: radial-gradient(ellipse, rgba(88,217,0,0.12) 0%, transparent 70%); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .stats-bar-inner { gap: 0; }
  .stat-item { padding: 16px 24px; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .page-hero { padding: 100px 20px 60px; }
  .page-hero h1 { font-size: 32px; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .stat-item:last-child { border-bottom: none; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  body { overflow-x: hidden; }
  .nav { padding: 0 16px; }
  .nav-inner { height: 60px; }
  .nav-logo-block img { height: 42px; }
  .nav-cta { padding: 8px 14px; font-size: 11px; }
  .nav-btn-demo { padding: 6px 10px; font-size: 10px; }
  .nav-btn-demo svg { display: none; }
  .btn-primary { padding: 12px 24px; font-size: 14px; }
  .btn-secondary { padding: 11px 22px; font-size: 14px; }
  .page-hero { padding: 100px 16px 48px; }
  .page-hero h1 { font-size: 26px; }
  .page-hero p { font-size: 14px; }
  .container { padding: 0 16px; }
  .nav-icon-btn { width: 32px; height: 32px; }
}

/* ── Cookie Consent Banner ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: #0f172a; border-top: 1px solid rgba(88,217,0,0.2);
  padding: 16px 32px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
  transform: translateY(100%); transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; flex: 1; }
.cookie-banner p a { color: #58d900; text-decoration: underline; }
.cookie-banner-btns { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn-accept { padding: 8px 20px; background: #58d900; color: #000; border: none; border-radius: 8px; font-size: 12px; font-weight: 700; cursor: pointer; font-family: inherit; }
.cookie-btn-decline { padding: 8px 20px; background: transparent; color: rgba(255,255,255,0.4); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; font-size: 12px; font-weight: 600; cursor: pointer; font-family: inherit; }
@media (max-width: 640px) {
  .cookie-banner { flex-direction: column; padding: 16px 20px; gap: 12px; }
  .cookie-banner-btns { width: 100%; }
  .cookie-btn-accept, .cookie-btn-decline { flex: 1; }
}

/* ── Reading Progress Bar ── */
.reading-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 10001;
  background: linear-gradient(90deg, #58d900, #6aea00);
  width: 0%; transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(88,217,0,0.4);
}

/* ── Share Buttons ── */
.share-bar { display: flex; align-items: center; gap: 10px; margin: 24px 0; padding: 16px 0; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; }
.share-bar-label { font-size: 12px; font-weight: 700; color: #64748b; text-transform: uppercase; letter-spacing: 0.06em; }
.share-btn { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; border: 1px solid #e2e8f0; background: #fff; cursor: pointer; transition: all 0.2s; color: #64748b; }
.share-btn:hover { border-color: rgba(88,217,0,0.4); background: rgba(88,217,0,0.05); color: #58d900; }
.share-btn svg { width: 16px; height: 16px; }
.share-btn-copy { padding: 6px 14px; width: auto; font-size: 11px; font-weight: 600; gap: 6px; font-family: inherit; }
