* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

:root {
  /* Primary greens */
  --g: #36bf4e;
  --g2: #27a840;
  --green: #36bf4e;
  --green-d: #27a840;
  --green-mid: #86efac;
  --g-tint: #f0fdf4;
  --g-border: #bbf7d0;

  /* Sky / blue */
  --sky: #0ea5e9;
  --sky-d: #0284c7;
  --sky-mid: #38bdf8;
  --sky-light: #e0f2fe;
  --sky-tint: #f0f9ff;
  --sky-border: #bae6fd;

  /* Neutrals */
  --ink: #0f172a;
  --text: #475569;
  --body: #475569;
  /* alias for text */
  --sub: #94a3b8;
  --muted:#5a7080;
  /* alias for sub */
  --line: #e2e8f0;
  --border: #e2e8f0;
  /* alias for line */
  --surface: #f8fafc;
  --surface2: #f1f5f9;
  --white: #ffffff;

  /* Accent teal */
  --teal: #00a79d;
  --teal-dark: #007a73;

  /* Fonts */
  --font-head: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
}

/* ── NAV ─────────────────────────────── */
/* Shared navigation styles are now handled by common.css */







/* ── HERO BAND ───────────────────────── */
.hero {
  padding: 60px 40px 100px; /* Much larger vertical padding */
  background:
    radial-gradient(at 0% 0%, rgba(54, 191, 78, 0.08) 0%, transparent 50%),
    radial-gradient(at 100% 0%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
    radial-gradient(at 50% 100%, rgba(20, 184, 166, 0.03) 0%, transparent 50%),
    #f1f5f9;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

.hero-grid {
  max-width: 1400px; /* Expanded from 1200px */
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr; /* More space for the image (right side) */
  gap: 80px;
  align-items: center;
}

.hero-text {
  position: relative;
  z-index: 3;
}

.hero h1 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  letter-spacing: 0.5px;
  line-height: 1.08;
  color: var(--ink);
  position: relative;
  z-index: 3;
}

.hero h1 .hl-sky {
  color: var(--sky-d);
}

.hero h1 .hl-green {
  color: var(--green);
}

.hero-sub {
  margin-top: 14px;
  font-size: 14px;
  color: var(--body);
  line-height: 1.8;
  max-width: 480px;
  font-weight: 400;
  position: relative;
  z-index: 3;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.btn-primary,
.btn-secondary {
  position: relative;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all .3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  z-index: 1;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #23bf44, #15803d);
  box-shadow: 0 4px 14px rgba(35, 191, 68, 0.3);
}

.btn-secondary {
  color: #0a2540;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(35, 191, 68, 0.4);
  background: #15803d;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: #f8fafc;
  border-color: #0693e3;
  color: #0693e3;
}

.hero-note {
  margin-top: 12px;
  font-size: 11.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-note svg {
  color: var(--green);
}

/* ── HERO CAROUSEL ────────────────── */
.hero-carousel-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 3;
}

.hero-carousel {
  position: relative;
  width: 100%;
  max-width: 880px; /* Big enough to show dashboard text clearly */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease;
}

.hero-carousel:hover {
  transform: translateY(-5px);
}

.hero-carousel-slides {
  position: relative;
  height: 600px; /* Deep height to allow image scaling */
  width: 100%;
}
.hero-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-carousel-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Ensures the whole browser frame is visible */
  display: block;
}

/* ── BROWSER FRAME ────────────────── */
.browser-frame {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  width: 100%;
}

.browser-header {
  height: 28px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.browser-dots {
  display: flex;
  gap: 7px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28c840; }

/* ── IMAGE MODAL (LIGHTBOX) ────────── */
.image-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 40px;
}

.image-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.image-modal-content {
  position: relative;
  max-width: 95vw;
  max-height: 90vh;
  transform: scale(0.95) translateY(20px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.image-modal-overlay.active .image-modal-content {
  transform: scale(1) translateY(0);
}

.image-modal-content img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  display: block;
  border-radius: 16px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.image-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  backdrop-filter: blur(5px);
}

.image-modal-close:hover {
  background: #ff5f57;
  border-color: #ff5f57;
  transform: rotate(90deg);
}

.hero-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 25px;
}

.carousel-dot {
  width: 12px;
  height: 6px;
  border-radius: 99px;
  background: rgba(6, 147, 227, 0.12);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

.carousel-dot.on {
  background: #0693e3;
  width: 36px;
}

/* ── VERSION SELECTOR (NEW HORIZONTAL) ── */
.version-selector-horizontal {
  display: flex;
  justify-content: flex-start;
  gap: 24px;
  margin-bottom: 40px;
  width: 100%;
}

.version-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 14px 22px;
  cursor: default;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  user-select: none;
  width: 100%;
  max-width: 300px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.vc-logo {
  width: 70px;
  flex-shrink: 0;
}

.vc-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.vc-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vc-tag {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #0084ff;
  background: rgba(0, 195, 255, 0.08);
  padding: 3px 10px;
  border-radius: 4px;
  width: fit-content;
}

.vc-tag.sky {
  color: #d946ef;
  background: rgba(229, 0, 255, 0.08);
}

.vc-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  margin: 0;
}

/* Animations removed as requested */

/* Responsive */
@media (max-width: 960px) {
  .hero {
    padding-left: 24px;
    padding-right: 24px;
  }
  
  .version-selector-horizontal {
    flex-direction: column;
    align-items: center;
  }
  
  .version-card {
    width: 100%;
    max-width: 400px;
  }
}











/* ── PRODUCT BODY WRAPPER ────────────── */
.product-body {
  max-width: 1360px;
  margin: 0 auto;
  padding: 60px 32px;
}

/* ── CATEGORY TABS (Modern Segmented Pill) ── */
.cat-tabs {
  position: relative;
  display: flex;
  padding: 6px;
  margin-bottom: 40px;
  background: var(--surface2);
  border-radius: 16px;
  width: fit-content;
  border: 1px solid var(--line);
}

.cat-tab-indicator {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 6px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
}

.cat-tab {
  position: relative;
  padding: 10px 28px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
  border: none;
  background: none;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-body);
  flex-shrink: 0;
  transition: color 0.3s;
  z-index: 2;
  letter-spacing: -0.2px;
}

.cat-tab:hover {
  color: var(--ink);
}

.cat-tab.on {
  color: var(--sky);
}

/* ── PAGE LAYOUT ─────────────────────── */
.layout {
  display: grid;
  grid-template-columns: 232px 1fr;
  gap: 48px;
}

/* ── SIDEBAR (Floating Glass) ────────── */
.sidebar {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 24px;
  padding: 20px 6px;
  position: sticky;
  top: 90px;
  height: fit-content;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 10px 15px -3px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.sidebar:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

.sidebar::-webkit-scrollbar {
  display: none;
}

.sb-group {
  margin-bottom: 2px;
}

.sb-head {
  padding: 10px 18px 5px;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #0f172a;
  ;
}

.sb-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 18px;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: all .12s;
  cursor: pointer;
}

.sb-item:hover {
  background: var(--surface);
  color: var(--ink);
}

.sb-item.on {
  background: var(--g-tint);
  border-left-color: var(--g);
  color: #15803d;
  font-weight: 700;
}

.sb-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--line);
  flex-shrink: 0;
  transition: background .12s;
}

.sb-item.on .sb-dot {
  background: var(--g);
}

.sb-rule {
  height: 1px;
  background: var(--line);
  margin: 8px 18px;
}

/* ── MAIN CONTENT ────────────────────── */
.main {
  padding: 28px 36px 60px;
  min-width: 0;
}

/* breadcrumb */
.bc {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--sub);
  margin-bottom: 22px;
}

.bc a {
  color: var(--sub);
  text-decoration: none;
  transition: color .1s;
}

.bc a:hover {
  color: var(--ink);
}

.bc .now {
  color: var(--ink);
  font-weight: 600;
}

.bc-sep {
  color: #d1d5db;
}

/* module header */
.mod-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.mh-badge {
  display: inline-flex;
  align-items: center;
  background: var(--sky-tint);
  border: 1px solid var(--sky-border);
  color: var(--sky);
  border-radius: 4px;
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.mh-title {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.7px;
  line-height: 1;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}

.title-play-icon {
  background: var(--g);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  left:20px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(54, 191, 78, 0.25);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.title-play-icon:hover {
  transform: scale(1.12);
  background: var(--g2);
  box-shadow: 0 6px 18px rgba(54, 191, 78, 0.4);
}

.title-play-icon svg {
  width: 10px;
  height: 10px;
  padding-bottom:30px;
  margin-left: 2px; /* Center the triangle visually */
}


.mh-desc {
  margin-top: 8px;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.75;
  max-width: 520px;
}

.btn-demo {
  flex-shrink: 0;
  padding: 9px 20px;
  border-radius: 7px;
  border: none;
  background: var(--g);
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background .12s, box-shadow .12s;
  white-space: nowrap;
}

.btn-demo:hover {
  background: var(--g2);
  box-shadow: 0 4px 14px rgba(54, 191, 78, .22);
}

/* ── SECTION LABEL ── */
.sec-label {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #cbd5e1;
  margin-bottom: 14px;
}

/* ── KEY CAPABILITIES — numbered, no icons ── */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 28px;
}

.cap-cell {
  background: #fff;
  padding: 20px 22px;
  transition: background .15s;
  cursor: default;
}

.cap-cell:hover {
  background: var(--surface);
}

.cap-num {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--g);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.cap-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.cap-desc {
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
}

/* ── KEY CAPABILITIES SIMPLE (Icons and text only) ── */
.cap-list-simple {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin-bottom: 28px;
}

.cap-item-simple {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cap-ico-simple {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cap-title-simple {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

/* ── INFO CARDS (How it works / Compliance) ── */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.info-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px 22px;
  background: var(--surface);
}

.ic-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.ic-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
}

.ic-pill {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 9px;
  border-radius: 99px;
}

.ic-pill.g {
  background: var(--g-tint);
  color: #16a34a;
  border: 1px solid var(--g-border);
}

.ic-pill.s {
  background: var(--sky-tint);
  color: var(--sky);
  border: 1px solid var(--sky-border);
}

.ic-body {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 14px;
}

.ic-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ic-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.5;
}

.ck {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  border-radius: 4px;
  background: var(--g-tint);
  border: 1px solid var(--g-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ck svg {
  width: 9px;
  height: 9px;
}

/* ── ALL MODULES GRID ── */
.mods-section {
  margin-bottom: 30px;
}

.mods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 7px;
}

.mod-tile {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background: #fff;
  text-align: center;
  transition: all .14s;
}

.mod-tile:hover {
  border-color: var(--g);
  background: var(--g-tint);
  transform: translateY(-1px);
}

.mod-tile.active {
  border-color: var(--g);
  background: var(--g-tint);
}

.mt-ico {
  font-size: 17px;
}

.mt-lbl {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

/* ── CTA ── */
.cta {
  background: var(--ink);
  border-radius: 10px;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta h3 {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}

.cta p {
  font-size: 13.5px;
  color: #64748b;
}

.cta-btns {
  display: flex;
  gap: 9px;
  flex-shrink: 0;
}

.cta-primary {
  padding: 10px 22px;
  border-radius: 7px;
  border: none;
  background: var(--g);
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background .12s;
}

.cta-primary:hover {
  background: var(--g2);
}

.cta-outline {
  padding: 9px 20px;
  border-radius: 7px;
  border: 1px solid rgba(14, 165, 233, .4);
  background: transparent;
  color: #38bdf8;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: border-color .12s;
}

.cta-outline:hover {
  border-color: #38bdf8;
}


/* ─────────────────────────────────────────────────────────
   CTA RESPONSIVE ADJUSTMENTS
───────────────────────────────────────────────────────── */

/* Tablet (Max-width: 1080px) */
@media(max-width:1080px) {
  .cta-band {
    margin: 0 0 0;      /* Removes side margins if any */
    padding: 40px 32px; /* Reduces padding for smaller width */
  }
}

/* Mobile (Max-width: 640px) */
@media(max-width:640px) {
  .cta-band {
    margin: 0 0 60px;   /* Adds bottom spacing for mobile flow */
    padding: 32px 20px; /* Tightens padding */
    flex-direction: column; /* Stacks text and buttons vertically */
    text-align: center;     /* Centers text for mobile balance (implied) */
  }

  .cta-text p {
    max-width: 100%;    /* Allows text to fill the width */
  }

  .cta-acts {
    width: 100%;        /* Forces action container to full width */
    justify-content: center;
  }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-content {
  animation: fadeUp .22s ease both;
}

/* ── RESPONSIVE ── */
@media (max-width: 920px) {
    
    .hero {
    padding-top: -10px;    /* Reduced from 60px */
    padding-bottom: 40px; /* Reduced from 100px */
  }
  
  .cap-list-simple {
  flex-direction: column;  /* Forces the items to stack vertically instead of wrapping horizontally */
  gap: 12px;               /* Cleans up the vertical spacing between each bullet point */
}

.cap-item-simple {
  width: 100%;             /* Ensures each list item occupies its own full line */
}
  
  .hero-carousel-slides {
    height: auto;         /* Allow height to be defined by content */
    min-height: 300px;    /* Adjust this value based on your image aspect ratio */
  }
  
  .hero-carousel-wrapper {
    margin-top: 10px;     /* Optional: adds a small gap between text and image */
  }
    
  .layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: flex;
    overflow-x: auto;
    padding: 12px 16px;
    border-right: none;
    border-bottom: 1px solid var(--line);
    background: #fff;
    gap: 8px;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
    position: sticky;
    top: 0;
    /* sticky below main nav if possible, or just scrolls with page */
    z-index: 10;
  }

  .sidebar::-webkit-scrollbar {
    display: none;
  }

  .sb-group {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .sb-head {
    display: none;
  }

  .sb-item {
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: var(--surface);
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
    border-left: none;
    transition: all 0.2s;
  }

  .sb-item:hover {
    background: #fff;
    border-color: var(--g);
  }

  .sb-item.on {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
  }

  .sb-dot {
    display: none;
  }

  .cat-tabs {
    padding-left: 16px;
  }

  .cap-grid {
    grid-template-columns: 1fr 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .cat-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
    padding: 6px;
  }

  .cat-tabs::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 540px) {
  .cap-grid {
    grid-template-columns: 1fr;
  }

  .mod-header {
    flex-direction: column;
  }

  nav,
  .hero-left,
  .main {
    padding-left: 16px;
    padding-right: 16px;
  }

  .version-card {
    padding: 16px;
    gap: 16px;
  }

  .vc-logo {
    width: 60px;
  }

  .vc-name {
    font-size: 16px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .version-card.active::before {
    top: 6px;
    right: 10px;
    font-size: 8px;
  }

  .cta-btns {
    width: 100%;
    flex-wrap: wrap;
  }

  .btn-primary,
  .btn-secondary,
  .cta-primary,
  .cta-outline {
    width: 100%;
    justify-content: center;
  }
}


/* =========================================================================
   SMART ASSETS PAGE — IPAD PRO TOP NAV
   IDENTICAL TO ASSET SCORE NAVIGATION
   ========================================================================= */

@media only screen 
and (min-width: 820px) 
and (max-width: 1180px) {

  /* ─── NAVBAR ────────────────────────────────────────── */
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 14px !important;
    overflow: visible !important;
    background: #ffffff !important;
    border-bottom: 1px solid #eef2f7 !important;
    position: relative !important;
  }

  /* LOGO — uses max-height, no fixed width (like Asset Score) */
  .nav-logo img,
  .brand-logo img,
  .logo img {
    max-height: 30px !important;
    width: auto !important;
  }

  /* NAV LINKS CONTAINER */
  .nav-links {
    display: flex !important;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0px;
    flex: 0 1 auto !important;    /* prevents pushing login too far */
    min-width: 0;
    overflow-x: auto;
    overflow-y: visible !important;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  /* INDIVIDUAL NAV LINKS */
  .nav-links a {
    white-space: nowrap;
    font-size: 10px !important;
    padding: 5px 6px !important;
    flex-shrink: 0;
  }

  /* RIGHT BUTTON AREA (Login / Demo) */
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    margin-left: 12px !important;  /* controls gap between last link and login */
  }

  /* LOGIN BUTTON */
  .btn-ghost-sm,
  .login-btn {
    font-size: 10px !important;
    padding: 7px 10px !important;
    white-space: nowrap;
    min-width: fit-content;
    flex-shrink: 0;
  }

  /* DROPDOWN FIX – ensure they stay on top */
  .dropdown,
  .dropdown-menu,
  .submenu {
    z-index: 99999 !important;
  }

  .dropdown-menu,
  .submenu {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    padding: 8px 0;
    min-width: 220px;
  }
  
  
  /* ─── HERO CENTER ALIGNED (IPAD PRO) ────────────── */
/* Smart Assets Hero – Match Service Page Spacing */
.hero {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 32px 20px 60px !important;  /* reduced top padding from 56px to 32px */
}

.hero-grid {
  grid-template-columns: 1fr !important;
  gap: 30px !important;               /* reduced gap */
  text-align: center !important;
}

.hero-text {
  text-align: center !important;
  margin: 0 auto !important;
}

.hero h1 {
  text-align: center !important;
  margin: 0 auto 12px auto !important;
  font-size: 38px !important;        /* slightly smaller to match service page */
  line-height: 1.2 !important;
}

.hero-sub {
  text-align: center !important;
  margin: 0 auto 24px auto !important;
  max-width: 85% !important;
  font-size: 14px !important;
}

.hero-actions {
  justify-content: center !important;
  margin: 0 auto !important;
  gap: 12px !important;
}

.hero-carousel-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  margin-top: 0 !important;
}

.hero-carousel-slides {
  min-height: 380px !important;      /* reduce height to match service page carousel */
}

.hero-carousel-slide img {
  object-fit: contain !important;
  width: 100% !important;
  height: auto !important;
}

.hero-carousel-wrapper {
  margin: 0 auto !important;
  width: 100% !important;
}



/* Fix image modal on iPad – prevent bottom cut-off */
.image-modal-overlay {
  overflow-y: auto !important;      /* allow vertical scroll if needed */
  padding: 60px !important;
  align-items: flex-start !important; /* let content start from top */
}

.image-modal-content {
  max-width: 95vw !important;
  max-height: none !important;      /* remove fixed height limit */
  height: auto !important;
  margin: 20px auto !important;
}

.image-modal-content img {
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 85vh !important;      /* limit image height but keep scrollable */
  object-fit: contain;
}


/* Move carousel up – reduce top spacing */
.hero-carousel-wrapper {
  margin-top: -40px !important;   /* or adjust to desired lift */
}

/* Alternatively, if the gap comes from the parent */
.hero-grid {
  row-gap: 20px !important;       /* reduce gap between text and carousel */
}

/* If carousel itself has top margin */
.hero-carousel {
  margin-top: 0 !important;
}

  /* Ensure all content containers don't clip dropdowns */
  header,
  .hero-section,
  .product-body,
  .layout {
    overflow: visible !important;
  }

  /* ─── REMOVE TOP GAP ABOVE NAV ───────────────────────── */
  html,
  body {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  body > *:first-child {
    margin-top: 0 !important;
  }

  /* ─── PRESERVE YOUR EXISTING SMART ASSETS PAGE LAYOUT ─── */
  /* The rest of your page layout remains untouched */
}

  /* ── 5. CONTENT WRAPPER ───────────────────────── */
  .product-body,
  .main-content-area {
    width: 100% !important;
    max-width: 100% !important;

    padding-left: 16px !important;
    padding-right: 16px !important;

    box-sizing: border-box !important;

    overflow-x: hidden !important;
  }

  /* ── 6. CATEGORY TABS ─────────────────────────── */
  .cat-tabs {
    display: flex !important;
    align-items: center !important;

    flex-wrap: nowrap !important;

    width: 100% !important;
    max-width: 100% !important;

    margin: 0 0 24px 0 !important;
    padding: 6px !important;

    background: #f1f5f9 !important;
    border-radius: 12px !important;

    overflow-x: auto !important;

    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;

    box-sizing: border-box !important;
  }

  .cat-tabs::-webkit-scrollbar {
    display: none !important;
  }

  .cat-tab {
    display: inline-block !important;

    flex-shrink: 0 !important;

    padding: 10px 20px !important;

    font-size: 13px !important;

    white-space: nowrap !important;
  }

/* ─────────────────────────────────────────────────────────
   CTA BAND
───────────────────────────────────────────────────────── */
.cta-band {
  /* margin:0 48px 72px; */
  background: linear-gradient(130deg, #0d3d28 0%, #1a8a45 50%, #0272b0 100%);
  padding: 56px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-band::before {
  content: 'SMART ASSETS';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 160px;
  font-weight: 900;
  font-style: italic;
  color: rgba(255, 255, 255, .05);
  letter-spacing: -.06em;
  pointer-events: none;
}

.cta-band::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  top: -120px;
  right: 180px;
}

.cta-text h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.1;
}

.cta-text h2 em {
  font-style: italic;
}

.cta-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.65;
  max-width: 400px
}

.cta-acts {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
  z-index: 1
}

.cbtn-w {
  padding: 12px 24px;
  border-radius: 9px;
  background: #fff;
  color: #0d3d28;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all .16s;
}

.cbtn-w:hover {
  opacity: .92;
  transform: translateY(-2px)
}

.cbtn-g {
  padding: 12px 18px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  cursor: pointer;
  transition: all .14s;
  font-family: 'Inter', sans-serif;
}

.cbtn-g:hover {
  background: rgba(255, 255, 255, .17);
  color: #fff
}











  /* ========== VIDEO MODAL STYLES ========== */
  .video-modal {
    display: none;
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(2px);
    align-items: center;
    justify-content: center;
  }
  .video-modal.show {
    display: flex;
  }
  .video-modal-content {
    background-color: #fff;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 900px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
  }
  @media (prefers-reduced-motion: no-preference) {
    .video-modal-content {
      animation: modalFadeIn 0.3s ease-out;
    }
  }
  @keyframes modalFadeIn {
    from {
      opacity: 0;
      transform: translateY(-30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .video-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
  }
  .video-modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
  }
  .video-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    color: #64748b;
    transition: color 0.2s;
    line-height: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
  }
  .video-modal-close:hover {
    color: #1e293b;
    background-color: #f1f5f9;
  }
  .video-modal-body {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
  }
  .video-modal-body iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }
  /* Example play button style (if not already defined) */
  .play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    background: #10b981;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    vertical-align: middle;
  }
  .play-icon:hover {
    background: #059669;
    transform: scale(1.05);
  }
  .play-icon svg {
    width: 14px;
    height: 14px;
    fill: white;
  }
  /* For demo only – style the module titles */
  .module-demo {
    font-family: system-ui, 'Inter', sans-serif;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
  }
  .module-demo h2 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.75rem;
    margin: 0.5rem 0;
  }




/* Force product body centered on desktop (≥1181px) */
@media (min-width: 1181px) {
  .product-body {
    width: auto !important;
    max-width: 1360px !important;
    margin: 0 auto !important;
    padding: 60px 32px !important;
  }
}


/* ── FOOTER ── */

/* ── FOOTER (UNIFIED COLOR THEME) ── */
/* Shared footer styles are now handled by common.css */






/*  */

/* ── NAV ─────────────────────────────── */
/* Shared navigation styles are now handled by common.css */