/* ================================================================
   AVARO TECHNOLOGIES — Global Stylesheet
   Company + Product Site  |  Lead-gen optimised
   ================================================================ */

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

:root {
  /* Primary — Deep Navy */
  --navy-900: #0F1A2E;
  --navy-800: #162240;
  --navy-700: #1C2D52;
  --navy-600: #243B6A;
  --navy-500: #2E4A7F;
  /* Accent — Teal / Cyan */
  --teal-500: #2EC4B6;
  --teal-400: #4DD4C8;
  --teal-300: #7EDDD4;
  --teal-200: #B2EDE8;
  --teal-100: #E0F8F6;
  --cyan-500: #4CC9F0;
  --cyan-400: #72D5F3;
  /* Neutrals — Slate */
  --slate-900: #1E293B;
  --slate-800: #334155;
  --slate-700: #475569;
  --slate-600: #64748B;
  --slate-500: #94A3B8;
  --slate-400: #CBD5E1;
  --slate-300: #E2E8F0;
  --slate-200: #F1F5F9;
  --slate-100: #F8FAFC;
  --white: #FFFFFF;
  /* Semantic */
  --error: #EF4444;
  --error-light: #FEF2F2;
  --success: #22C55E;
  --warning: #F59E0B;
}

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-height, 72px) + 16px); }
section[id] { scroll-margin-top: calc(var(--nav-height, 72px) + 16px); }
body {
  font-family: var(--font-body, 'Inter', -apple-system, BlinkMacSystemFont, sans-serif);
  color: var(--slate-800); line-height: var(--lh-body, 1.6); background: var(--white);
  font-size: var(--font-size-base, 16px);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-weight: var(--font-wt-extrabold, 800); letter-spacing: -0.02em; color: var(--navy-800);
  line-height: var(--lh-heading, 1.1);
}

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--nav-bg, rgba(15, 26, 46, 0.97));
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-inner {
  max-width: var(--container-xl, 1200px); margin: 0 auto; padding: 0 var(--section-padding-x, 40px);
  display: flex; align-items: center; justify-content: space-between; height: var(--nav-height, 72px);
}
.nav-logo {
  display: flex; align-items: center; text-decoration: none;
}
.nav-logo-img { height: var(--img-nav-logo-height, 36px); width: var(--img-nav-logo-width, auto); display: block; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  color: var(--slate-400); text-decoration: none; font-size: 14px;
  font-weight: 500; letter-spacing: 0.01em; transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

/* Product dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  cursor: pointer; display: flex; align-items: center; gap: 4px;
}
.nav-dropdown-trigger::after {
  content: ''; display: inline-block;
  width: 0; height: 0; border-left: 4px solid transparent;
  border-right: 4px solid transparent; border-top: 4px solid currentColor;
  margin-top: 1px; transition: transform 0.2s;
}
.nav-dropdown:hover .nav-dropdown-trigger::after { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: -16px; padding-top: 12px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all 0.25s ease;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-panel {
  background: rgba(22, 34, 64, 0.98); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 12px;
  padding: 8px; min-width: 260px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.nav-dropdown-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; border-radius: 8px; text-decoration: none;
  transition: background 0.15s;
}
.nav-dropdown-item:hover { background: rgba(255,255,255,0.05); }
.nav-dropdown-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--navy-700); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.nav-dropdown-icon img { width: 20px; height: 20px; }
.nav-dropdown-label {
  font-size: 14px; font-weight: 600; color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.nav-dropdown-desc {
  font-size: 12px; color: var(--slate-500); margin-top: 2px;
  line-height: 1.4;
}
.nav-dropdown-coming {
  padding: 10px 16px; border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 4px;
}
.nav-dropdown-coming span {
  font-size: 11px; color: var(--slate-600);
  font-family: 'JetBrains Mono', monospace; letter-spacing: 0.5px;
}

.btn-nav {
  background: var(--teal-500); color: var(--white) !important;
  padding: 10px 24px; border-radius: 8px; font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all 0.2s; font-size: 13px;
}
.btn-nav:hover { background: var(--teal-400); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--teal-500); color: var(--white); padding: 15px 32px;
  border-radius: 10px; font-size: 15px; font-weight: 700;
  text-decoration: none; transition: all 0.25s;
  border: 2px solid var(--teal-500);
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-shadow: 0 2px 8px rgba(46,196,182,0.25);
}
.btn-primary:hover { background: var(--teal-400); border-color: var(--teal-400); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(46,196,182,0.3); }
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--white); color: var(--navy-800); padding: 15px 32px;
  border-radius: 10px; font-size: 15px; font-weight: 700;
  text-decoration: none; transition: all 0.25s;
  border: 2px solid var(--slate-300);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-secondary:hover { border-color: var(--teal-500); color: var(--teal-500); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--white); padding: 15px 32px;
  border-radius: 10px; font-size: 15px; font-weight: 700;
  text-decoration: none; transition: all 0.25s;
  border: 2px solid rgba(255,255,255,0.18);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.4); color: var(--teal-300); }
.btn-sm { padding: 11px 24px; font-size: 13px; }

/* ===== SECTIONS (shared) ===== */
.section { padding: var(--section-padding-y, 120px) var(--section-padding-x, 40px); }
.section-inner { max-width: var(--container-xl, 1200px); margin: 0 auto; }
.section-label {
  font-family: 'JetBrains Mono', monospace;
  color: var(--teal-500); font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 14px;
}
.section-title {
  font-size: var(--font-size-h2, clamp(30px, 3.5vw, 44px)); font-weight: 800;
  line-height: var(--lh-heading, 1.1); margin-bottom: 18px;
}
.section-desc {
  font-size: 17px; color: var(--slate-600); max-width: 600px;
  margin-bottom: 60px; line-height: 1.75;
}
.section-desc-centered { margin-left: auto; margin-right: auto; text-align: center; }
.bg-soft { background: var(--slate-100); }
.bg-navy {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  position: relative; overflow: hidden;
}
.bg-navy .section-label { color: var(--teal-400); }
.bg-navy .section-title { color: var(--white); }
.bg-navy .section-desc { color: var(--slate-500); }

/* ===== HOMEPAGE HERO ===== */
.hero-home {
  background: linear-gradient(160deg, var(--hero-bg-from, var(--navy-900)) 0%, var(--hero-bg-via, #111D35) 40%, var(--hero-bg-to, var(--navy-700)) 100%);
  padding: 180px 40px 100px; position: relative; overflow: hidden;
  text-align: center;
}
.hero-home::before {
  content: ''; position: absolute; top: -20%; right: 10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(46,196,182,0.08) 0%, transparent 60%);
  border-radius: 50%;
}
.hero-home::after {
  content: ''; position: absolute; bottom: -30%; left: 5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(76,201,240,0.05) 0%, transparent 60%);
  border-radius: 50%;
}
.hero-home-inner {
  max-width: var(--container-xl, 1200px); margin: 0 auto; position: relative; z-index: 1;
}
.hero-home-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(46,196,182,0.3);
  color: var(--teal-400); padding: 7px 18px; border-radius: 100px;
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 36px; font-family: 'JetBrains Mono', monospace;
}
.hero-home-badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--teal-400);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-home h1 {
  color: var(--white); font-size: var(--font-size-h1, clamp(40px, 5.5vw, 68px));
  font-weight: 800; line-height: 1.05; margin-bottom: 24px;
  max-width: 800px; margin-left: auto; margin-right: auto;
}
.hero-home h1 span { color: var(--teal-400); }
.hero-home-sub {
  color: var(--slate-500); font-size: 19px; max-width: 600px;
  margin: 0 auto 44px; line-height: 1.7;
}
.hero-home-ctas {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 80px;
}

/* Hero product preview */
.hero-preview { max-width: var(--img-hero-max-width, 960px);
  max-width: 960px; margin: 0 auto;
  perspective: 1200px;
}
.hero-preview-browser {
  background: var(--navy-800);
  border-radius: var(--img-hero-radius, 16px);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  box-shadow: 0 48px 96px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04);
  transform: rotateX(4deg);
  transition: transform 0.6s ease;
}
.hero-preview-browser:hover { transform: rotateX(0); }
.hero-preview-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  background: rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-preview-dots { display: flex; gap: 7px; }
.hero-preview-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.hero-preview-dots span:nth-child(1) { background: #EF4444; }
.hero-preview-dots span:nth-child(2) { background: #F59E0B; }
.hero-preview-dots span:nth-child(3) { background: #22C55E; }
.hero-preview-url {
  flex: 1; background: rgba(255,255,255,0.06); border-radius: 8px;
  padding: 6px 16px; color: var(--slate-500); font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
}
.hero-preview-body { padding: 20px; }

/* Dashboard mockup content (shared) */
.mock-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.mock-title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px;
  font-weight: 700; color: var(--white);
}
.mock-tabs { display: flex; gap: 3px; }
.mock-tab {
  padding: 5px 12px; border-radius: 6px; font-size: 10px;
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  color: var(--slate-500);
}
.mock-tab.active { background: var(--teal-500); color: var(--white); }
.mock-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-bottom: 16px;
}
.mock-stat-card {
  background: rgba(255,255,255,0.04); border-radius: 10px; padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.06);
}
.mock-stat-label {
  font-size: 9px; color: var(--slate-500); text-transform: uppercase;
  letter-spacing: 1px; font-family: 'JetBrains Mono', monospace;
  margin-bottom: 6px;
}
.mock-stat-value {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px;
  font-weight: 800; color: var(--white);
}
.mock-stat-value.teal { color: var(--teal-400); }
.mock-stat-change {
  font-size: 9px; font-family: 'JetBrains Mono', monospace;
  color: var(--success); margin-top: 3px;
}
.mock-chart {
  background: rgba(255,255,255,0.03); border-radius: 10px;
  padding: 16px; margin-bottom: 14px;
  border: 1px solid rgba(255,255,255,0.05);
}
.mock-chart-title {
  font-size: 10px; color: var(--slate-500); font-family: 'JetBrains Mono', monospace;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px;
}
.mock-chart-bars {
  display: flex; align-items: flex-end; gap: 8px; height: 72px;
}
.mock-bar {
  flex: 1; border-radius: 4px 4px 0 0; min-width: 0;
  transition: height 0.5s ease;
}
.mock-bar.navy { background: var(--navy-600); }
.mock-bar.teal { background: var(--teal-500); }
.mock-bar.cyan { background: var(--cyan-500); opacity: 0.7; }
.mock-projects { display: flex; flex-direction: column; gap: 8px; }
.mock-project-row {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.03); border-radius: 8px; padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.04);
}
.mock-project-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}
.mock-project-name {
  flex: 1; font-size: 11px; color: var(--slate-400);
  font-family: 'Inter', sans-serif; font-weight: 500;
}
.mock-project-bar-track {
  width: 90px; height: 5px; background: rgba(255,255,255,0.06);
  border-radius: 3px; overflow: hidden;
}
.mock-project-bar-fill { height: 100%; border-radius: 3px; }
.mock-project-pct {
  font-size: 10px; color: var(--slate-500); font-family: 'JetBrains Mono', monospace;
  font-weight: 500; width: 30px; text-align: right;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white); border-bottom: 1px solid var(--slate-200);
  padding: 48px 40px;
}
.trust-inner {
  max-width: var(--container-xl, 1200px); margin: 0 auto; text-align: center;
}
.trust-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--slate-500); letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 28px; font-weight: 500;
}
.trust-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap; opacity: 0.4;
}
.trust-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px; font-weight: 800; color: var(--slate-600);
  letter-spacing: -0.02em;
}

/* ===== PRODUCT SPOTLIGHT (homepage) ===== */
.spotlight {
  padding: 120px 40px;
}
.spotlight-inner {
  max-width: var(--container-xl, 1200px); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.spotlight-content {}
.spotlight-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-100); color: var(--teal-500);
  padding: 6px 14px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 24px;
  font-family: 'JetBrains Mono', monospace;
}
.spotlight h2 {
  font-size: clamp(28px, 3vw, 40px); margin-bottom: 18px; line-height: 1.1;
}
.spotlight-desc {
  font-size: 17px; color: var(--slate-600); line-height: 1.75;
  margin-bottom: 32px; max-width: 480px;
}
.spotlight-features {
  display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px;
}
.spotlight-feature {
  display: flex; align-items: flex-start; gap: 14px;
}
.spotlight-feature-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--teal-100); color: var(--teal-500);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0; font-weight: 700;
  margin-top: 2px;
}
.spotlight-feature-text {
  font-size: 15px; color: var(--slate-700); line-height: 1.5;
}
.spotlight-feature-text strong {
  color: var(--navy-800); font-weight: 600;
}
.spotlight-feature-included {
  padding: 10px 14px; margin-left: -14px;
  background: rgba(46,196,182,0.06); border: 1px solid rgba(46,196,182,0.15);
  border-radius: 10px;
}
.spotlight-feature-icon-included {
  background: var(--teal-500); color: var(--white);
}
.spotlight-replaces {
  display: inline-block; margin-top: 4px;
  font-size: 11px; font-weight: 600; color: var(--teal-500);
  letter-spacing: 0.3px;
}

/* Spotlight product mockup (smaller, side-panel style) */
.spotlight-visual {
  position: relative;
}
.spotlight-mockup {
  background: var(--navy-800); border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden; padding: 24px;
  box-shadow: 0 32px 64px rgba(15,26,46,0.15);
}
.spotlight-mockup-modules {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
.spotlight-module {
  background: rgba(255,255,255,0.04); border-radius: 10px; padding: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.2s;
}
.spotlight-module:hover { border-color: var(--teal-500); }
.spotlight-module-icon {
  font-size: 18px; margin-bottom: 8px;
}
.spotlight-module-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; font-weight: 700; color: var(--white);
  margin-bottom: 4px;
}
.spotlight-module-desc {
  font-size: 11px; color: var(--slate-500); line-height: 1.4;
}

/* ===== COMPANY PILLARS ===== */
.pillars-grid {
  display: grid; grid-template-columns: repeat(var(--grid-pillars-columns, 3), 1fr); gap: var(--grid-gap, 32px);
}
.pillar-card {
  padding: 40px 32px;
  border-radius: var(--radius-lg, 16px);
  border: 1px solid var(--slate-200);
  background: var(--white);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.pillar-card::before {
  content: ''; position: absolute; top: 0; left: 32px; right: 32px;
  height: 3px; background: var(--teal-500); border-radius: 0 0 3px 3px;
  opacity: 0; transition: opacity 0.2s;
}
.pillar-card:hover::before { opacity: 1; }
.pillar-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 600; color: var(--teal-500);
  letter-spacing: 1px; margin-bottom: 20px;
}
.pillar-card h3 {
  font-size: 20px; font-weight: 800; margin-bottom: 12px; line-height: 1.2;
}
.pillar-card p {
  font-size: 15px; color: var(--slate-600); line-height: 1.7;
}

/* ===== HIGHLIGHT CALLOUTS ===== */
.highlight-callout-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
.highlight-callout {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 36px 32px; position: relative; overflow: hidden;
  transition: all 0.3s ease;
}
.highlight-callout:hover { border-color: rgba(46,196,182,0.3); background: rgba(255,255,255,0.06); }
.highlight-callout-badge {
  display: inline-block; font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--teal-400); background: rgba(46,196,182,0.1);
  border: 1px solid rgba(46,196,182,0.2); border-radius: 100px;
  padding: 3px 12px; margin-bottom: 16px;
}
.highlight-callout h3 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 700;
  color: var(--white); margin-bottom: 12px; line-height: 1.3;
}
.highlight-callout p {
  font-size: 14px; color: var(--slate-400); line-height: 1.7; margin-bottom: 20px;
}
.highlight-callout-features {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.highlight-callout-features span {
  font-size: 11px; font-weight: 600; color: var(--teal-400);
  background: rgba(46,196,182,0.08); border: 1px solid rgba(46,196,182,0.15);
  border-radius: 6px; padding: 4px 10px; letter-spacing: 0.3px;
}

/* ===== STATS SECTION ===== */
.stats-row {
  display: grid; grid-template-columns: repeat(var(--grid-stats-columns, 4), 1fr); gap: var(--grid-gap, 32px);
  text-align: center; padding: 32px 0;
}
.stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 44px;
  font-weight: 800; color: var(--teal-400); line-height: 1;
}
.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--slate-500); margin-top: 8px;
  letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
}

/* ===== SERVICES (homepage) ===== */
.services-preview {
  background: var(--white); border-radius: 20px;
  padding: 56px; border: 1px solid var(--slate-200);
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.services-preview h3 {
  font-size: 28px; margin-bottom: 16px; line-height: 1.15;
}
.services-preview p {
  font-size: 16px; color: var(--slate-600); line-height: 1.75; margin-bottom: 32px;
}
.services-list {
  display: flex; flex-direction: column; gap: 14px;
}
.services-list-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: var(--slate-700);
}
.services-list-check {
  width: 22px; height: 22px; border-radius: 6px;
  background: var(--teal-100); color: var(--teal-500);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(160deg, var(--hero-bg-from, var(--navy-900)) 0%, var(--hero-bg-to, var(--navy-700)) 100%);
  padding: 120px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--teal-500), transparent);
}
.cta-section::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(46,196,182,0.06) 0%, transparent 60%);
  border-radius: 50%;
}
.cta-inner {
  max-width: 700px; margin: 0 auto; position: relative; z-index: 1;
}
.cta-section h2 {
  color: var(--white); font-size: clamp(30px, 4vw, 46px);
  font-weight: 800; margin-bottom: 18px; line-height: 1.1;
}
.cta-section p {
  color: var(--slate-500); font-size: 17px; margin-bottom: 44px; line-height: 1.7;
}
.cta-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--footer-bg, var(--navy-900)); padding: var(--footer-padding-top, 64px) var(--section-padding-x, 40px) var(--footer-padding-bottom, 32px);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-inner {
  max-width: var(--container-xl, 1200px); margin: 0 auto;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand-desc {
  font-size: 14px; color: var(--slate-600); line-height: 1.7;
  margin-top: 16px; max-width: 280px;
}
.footer-col-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; font-weight: 700; color: var(--white);
  margin-bottom: 16px; letter-spacing: 0.02em;
}
.footer-col a {
  display: block; color: var(--slate-500); text-decoration: none;
  font-size: 13px; padding: 4px 0; transition: color 0.2s;
}
.footer-col a:hover { color: var(--teal-400); }
.footer-logo-img { height: var(--img-footer-logo-height, 32px); width: var(--img-footer-logo-width, auto); display: block; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; flex-wrap: wrap; gap: 12px;
}
.footer-copy {
  color: var(--slate-600); font-size: 12px;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  color: var(--slate-600); text-decoration: none; font-size: 12px;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--slate-400); }

/* ===== PRODUCT PAGE HERO ===== */
.hero-product {
  background: linear-gradient(160deg, var(--hero-bg-from, var(--navy-900)) 0%, var(--hero-bg-via, #111D35) 40%, var(--hero-bg-to, var(--navy-700)) 100%);
  padding: 160px 40px 120px; position: relative; overflow: hidden;
}
.hero-product::before {
  content: ''; position: absolute; top: -15%; right: -5%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(46,196,182,0.1) 0%, transparent 65%);
  border-radius: 50%;
}
.hero-product-inner {
  max-width: var(--container-xl, 1200px); margin: 0 auto; position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.hero-product-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(46,196,182,0.35);
  color: var(--teal-400); padding: 7px 18px; border-radius: 100px;
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 28px; font-family: 'JetBrains Mono', monospace;
}
.hero-product-badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--teal-400);
}
.hero-product h1 {
  color: var(--white); font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800; line-height: 1.06; margin-bottom: 20px;
}
.hero-product h1 span { color: var(--teal-400); }
.hero-product-tagline {
  color: var(--slate-400); font-size: 18px; font-weight: 400;
  max-width: 520px; margin-bottom: 14px; font-style: italic;
}
.hero-product-sub {
  color: var(--slate-500); font-size: 16px; max-width: 520px;
  margin-bottom: 40px; line-height: 1.7;
}
.hero-product-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-product-mockup {
  position: relative; perspective: 1200px;
}
.hero-product-mockup .hero-preview-browser {
  transform: rotateY(-4deg) rotateX(2deg);
}
.hero-product-mockup .hero-preview-browser:hover {
  transform: rotateY(0) rotateX(0);
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--white); border-bottom: 1px solid var(--slate-300);
}
.stats-bar-inner {
  max-width: var(--container-xl, 1200px); margin: 0 auto; padding: 48px var(--section-padding-x, 40px);
  display: grid; grid-template-columns: repeat(var(--grid-stats-columns, 4), 1fr); gap: var(--grid-gap, 32px); text-align: center;
}
.stats-bar .stat-num { color: var(--navy-800); font-size: 40px; }
.stats-bar .stat-num span { color: var(--teal-500); }

/* ===== PROBLEM SECTION ===== */
.problem-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 28px;
}
.problem-card {
  background: var(--white); border-radius: 14px; padding: 32px 28px;
  border-top: 3px solid var(--error);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05); transition: transform 0.2s;
}
.problem-card:hover { transform: translateY(-3px); }
.problem-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--error-light); color: var(--error);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 18px; font-weight: 700;
}
.problem-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px; font-weight: 700; margin-bottom: 10px;
}
.problem-card p { font-size: 14px; color: var(--slate-600); line-height: 1.7; }

.solution-card {
  background: var(--navy-800); border-radius: 14px; padding: 40px 44px;
  border-top: 3px solid var(--teal-500);
  display: flex; align-items: center; gap: 40px;
  box-shadow: 0 4px 16px rgba(15,26,46,0.12);
}
.solution-card-content { flex: 1; }
.solution-card h3 {
  font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 10px;
}
.solution-card p { font-size: 15px; color: var(--slate-500); line-height: 1.7; max-width: 560px; }
.solution-card-badge {
  flex-shrink: 0; background: var(--teal-500); color: var(--white);
  padding: 11px 24px; border-radius: 8px; font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase;
  white-space: nowrap;
}

/* ===== LIFECYCLE ===== */
.lifecycle-flow {
  display: flex; align-items: center; justify-content: center;
  max-width: 580px; margin: 40px auto 0;
}
.lifecycle-circle-svg {
  width: 100%; height: auto; display: block;
}
/* Fallback linear styles (used before JS loads) */
.lifecycle-step {
  background: rgba(255,255,255,0.06); color: var(--white);
  padding: 14px 28px; border-radius: 10px;
  font-size: 14px; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif;
  border: 1px solid rgba(255,255,255,0.08); backdrop-filter: blur(4px);
}
.lifecycle-arrow { color: var(--teal-400); font-size: 20px; }

/* ===== MODULES GRID ===== */
.modules-grid {
  display: grid; grid-template-columns: repeat(var(--grid-modules-columns, 3), 1fr); gap: var(--grid-gap-sm, 24px);
}
.module-card {
  background: var(--white); border-radius: var(--img-card-radius, 14px); padding: 32px;
  border: 1px solid var(--slate-200);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.module-card::before {
  content: ''; position: absolute; top: 0; left: 24px; right: 24px;
  height: 3px; background: var(--teal-500); border-radius: 0 0 3px 3px;
  opacity: 0; transition: opacity 0.2s;
}
.module-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.07); }
.module-card:hover::before { opacity: 1; }
.module-icon {
  width: var(--img-card-icon-size, 50px); height: var(--img-card-icon-size, 50px); border-radius: var(--img-card-icon-radius, 12px); display: flex;
  align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
  background: var(--navy-800); color: var(--teal-400);
}
.module-card h3 {
  font-size: 18px; font-weight: 700; margin-bottom: 6px;
}
.module-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 500; color: var(--teal-500); margin-bottom: 14px;
  letter-spacing: 1px; text-transform: uppercase;
}
.module-tagline {
  font-size: 12px; font-weight: 600; color: var(--slate-500); margin-bottom: 12px;
  letter-spacing: 0.3px;
}
.module-card p { font-size: 14px; color: var(--slate-600); line-height: 1.7; }
.module-expand-btn {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
  background: none; border: 1px solid var(--slate-300); border-radius: 6px;
  padding: 6px 14px; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600;
  color: var(--teal-500); letter-spacing: 0.3px; transition: all 0.2s ease;
}
.module-expand-btn:hover { border-color: var(--teal-500); background: rgba(46,196,182,0.04); }
.module-expand-arrow { font-size: 10px; transition: transform 0.25s ease; }
.module-expand-btn[aria-expanded="true"] .module-expand-arrow { transform: rotate(180deg); }
.module-highlights {
  list-style: none; padding: 0; margin: 0;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
}
.module-card.expanded .module-highlights {
  max-height: 600px; opacity: 1; margin-top: 14px;
  border-top: 1px solid var(--slate-200); padding-top: 14px;
}
.module-highlights li {
  font-size: 13px; color: var(--slate-600); line-height: 1.6;
  padding: 5px 0 5px 16px; position: relative;
}
.module-highlights li::before {
  content: ''; position: absolute; left: 0; top: 12px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal-500);
}
.module-highlights li strong { color: var(--slate-800); font-weight: 600; }

/* ===== VALUE PROPS ===== */
.values-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
}
.value-item { display: flex; gap: 20px; }
.value-num {
  flex-shrink: 0; width: 44px; height: 44px; background: var(--navy-800);
  color: var(--teal-400); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; font-family: 'JetBrains Mono', monospace;
}
.value-item h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.value-item p { font-size: 14px; color: var(--slate-600); line-height: 1.7; }

/* ===== CLIENT PORTAL ===== */
.portal-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 48px;
}
.portal-feature {
  background: var(--white); border: 1px solid var(--slate-200); border-radius: 14px;
  padding: 32px 24px; text-align: center; transition: all 0.25s ease;
}
.portal-feature:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); border-color: var(--teal-300); }
.portal-feature-icon { font-size: 32px; margin-bottom: 16px; }
.portal-feature h3 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 700;
  color: var(--navy-900); margin-bottom: 10px;
}
.portal-feature p { font-size: 13px; color: var(--slate-600); line-height: 1.65; }

/* ===== COMPLIANCE & SECURITY ===== */
.compliance-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px;
}
.compliance-badge {
  background: var(--white); border: 1px solid var(--slate-200); border-radius: 12px;
  padding: 28px 20px; text-align: center; transition: all 0.25s ease;
}
.compliance-badge:hover { border-color: var(--teal-400); box-shadow: 0 4px 16px rgba(46,196,182,0.08); }
.compliance-badge-icon { font-size: 28px; margin-bottom: 12px; }
.compliance-badge-label {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700;
  color: var(--navy-900); margin-bottom: 8px;
}
.compliance-badge-desc { font-size: 12px; color: var(--slate-500); line-height: 1.55; }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid; grid-template-columns: repeat(var(--grid-pricing-columns, 4), 1fr); gap: var(--grid-gap-sm, 24px);
}
.price-card {
  background: var(--white); border-radius: var(--img-card-radius, 14px); padding: 36px 28px; text-align: center;
  border: 1px solid var(--slate-200); transition: transform 0.2s;
}
.price-card:hover { transform: translateY(-3px); }
.price-featured {
  background: var(--navy-800); border-color: var(--teal-500);
  color: var(--white); position: relative;
  box-shadow: 0 8px 28px rgba(15,26,46,0.2);
}
.price-featured .price-name { color: var(--slate-400); }
.price-featured .price-amount { color: var(--teal-400); }
.price-featured .price-detail { color: var(--slate-500); }
.price-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--teal-500); color: var(--white); font-size: 10px; font-weight: 700;
  padding: 4px 16px; border-radius: 100px; letter-spacing: 1.5px; text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
}
.price-name {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 700;
  color: var(--navy-800); margin-bottom: 18px;
}
.price-amount {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 48px; font-weight: 800;
  color: var(--navy-800); line-height: 1;
}
.price-period { font-size: 13px; color: var(--slate-500); margin-top: 4px; margin-bottom: 22px; }
.price-divider { height: 1px; background: var(--slate-200); margin: 0 0 22px; }
.price-featured .price-divider { background: rgba(255,255,255,0.08); }
.price-detail { font-size: 13px; color: var(--slate-600); line-height: 1.65; }
.price-cta {
  display: inline-block; margin-top: 26px; padding: 11px 26px; border-radius: 8px;
  font-size: 13px; font-weight: 700; text-decoration: none; transition: all 0.2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--teal-500); color: var(--white);
}
.price-cta:hover { background: var(--teal-400); }
.price-cta-outline {
  background: transparent; border: 1.5px solid var(--slate-300); color: var(--navy-700);
}
.price-cta-outline:hover { border-color: var(--teal-500); color: var(--teal-500); }

/* ===== COMPARISON TABLE ===== */
.comparison-table {
  width: 100%; border-collapse: collapse; font-size: 13px;
  background: var(--white); border-radius: 14px; overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05); border: 1px solid var(--slate-200);
}
.comparison-table th {
  background: var(--navy-800); color: var(--white); padding: 16px 20px;
  text-align: left; font-weight: 600; font-size: 12px;
  letter-spacing: 0.03em; font-family: 'Plus Jakarta Sans', sans-serif;
}
.comparison-table td { padding: 13px 20px; border-bottom: 1px solid var(--slate-200); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table td:first-child { font-weight: 600; color: var(--navy-800); }
.comparison-table .highlight-col { background: rgba(46,196,182,0.04); }
.check { color: var(--teal-500); font-weight: 700; }
.cross { color: var(--error); }
.warn { color: var(--warning); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-product-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-product-mockup .hero-preview-browser { transform: none; }
  .spotlight-inner { grid-template-columns: 1fr; gap: 48px; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .services-preview { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-preview-browser { transform: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .section { padding: var(--section-padding-y-mobile, 80px) var(--section-padding-x-mobile, 24px); }
  .hero-home { padding: 140px var(--section-padding-x-mobile, 24px) 80px; }
  .hero-home h1 { font-size: clamp(32px, 8vw, 44px); }
  .hero-home-sub { font-size: 16px; }
  .hero-preview { display: none; }
  .hero-home-ctas { margin-bottom: 0; }
  .hero-product { padding: 130px 24px 80px; }
  .hero-product-mockup { display: none; }
  .spotlight-inner { grid-template-columns: 1fr; }
  .spotlight-visual { display: none; }
  .pillars-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .problem-row { grid-template-columns: 1fr; }
  .solution-card { flex-direction: column; gap: 20px; padding: 28px 24px; }
  .lifecycle-flow { max-width: 340px; margin: 24px auto 0; }
  .modules-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .portal-grid { grid-template-columns: 1fr 1fr; }
  .compliance-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .services-preview { grid-template-columns: 1fr; padding: 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-section { padding: 80px 24px; }
  .portal-grid { grid-template-columns: 1fr; }
  .compliance-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .highlight-callout-grid { grid-template-columns: 1fr; }
}

/* ===== MOBILE HAMBURGER ===== */
.nav-toggle {
  display: none; cursor: pointer; background: none; border: none;
  padding: 8px; position: relative; width: 32px; height: 32px;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; background: var(--white);
  position: absolute; left: 6px; transition: all 0.3s ease;
}
.nav-toggle span:nth-child(1) { top: 8px; }
.nav-toggle span:nth-child(2) { top: 15px; }
.nav-toggle span:nth-child(3) { top: 22px; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg); top: 15px; }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg); top: 15px; }
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; flex-direction: column; position: absolute;
    top: var(--nav-height, 72px); left: 0; right: 0; background: var(--nav-bg, rgba(15,26,46,0.98));
    padding: 24px 40px; gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 15px; padding: 8px 0; }
  .btn-nav { text-align: center; }
  .nav-dropdown-menu { display: none; }
}

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

/* ===== DEMO PAGE ===== */
.demo-hero {
  background: linear-gradient(160deg, var(--hero-bg-from, var(--navy-900)) 0%, var(--hero-bg-via, #111D35) 40%, var(--hero-bg-to, var(--navy-700)) 100%);
  padding: 160px 40px 100px; position: relative; overflow: hidden;
}
.demo-hero::before {
  content: ''; position: absolute; top: -10%; right: 15%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(46,196,182,0.08) 0%, transparent 60%);
  border-radius: 50%;
}
.demo-hero::after {
  content: ''; position: absolute; bottom: -20%; left: 10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(76,201,240,0.05) 0%, transparent 60%);
  border-radius: 50%;
}
.demo-hero-inner {
  max-width: var(--container-xl, 1200px); margin: 0 auto; position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.demo-hero-content { padding-top: 20px; }
.demo-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(46,196,182,0.3);
  color: var(--teal-400); padding: 7px 18px; border-radius: 100px;
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 32px; font-family: 'JetBrains Mono', monospace;
}
.demo-badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--teal-400);
  animation: pulse-dot 2s ease infinite;
}
.demo-hero h1 {
  color: var(--white); font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800; line-height: 1.06; margin-bottom: 20px;
}
.demo-hero h1 span { color: var(--teal-400); }
.demo-hero-sub {
  color: var(--slate-500); font-size: 17px; max-width: 480px;
  margin-bottom: 36px; line-height: 1.75;
}

/* Value points */
.demo-value-points {
  display: flex; flex-direction: column; gap: 14px;
}
.demo-value-point {
  display: flex; align-items: center; gap: 12px;
  color: var(--slate-400); font-size: 14px; font-weight: 500;
}
.demo-value-icon {
  width: 24px; height: 24px; color: var(--teal-400);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Form card */
.demo-form-wrapper { position: relative; }
.demo-form-card {
  background: var(--white); border-radius: 20px;
  padding: 44px 40px; position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.06);
}
.demo-form-card::before {
  content: ''; position: absolute; top: 0; left: 32px; right: 32px;
  height: 3px; background: linear-gradient(90deg, var(--teal-500), var(--cyan-500));
  border-radius: 0 0 3px 3px;
}
.demo-form-header { margin-bottom: 32px; }
.demo-form-header h2 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 24px;
  font-weight: 800; color: var(--navy-800); margin-bottom: 8px;
}
.demo-form-header p {
  font-size: 14px; color: var(--slate-600); line-height: 1.6;
}
.demo-form { display: flex; flex-direction: column; gap: 18px; }
.demo-form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.demo-form-group { display: flex; flex-direction: column; gap: 6px; }
.demo-form-group label {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px;
  font-weight: 600; color: var(--navy-800); letter-spacing: 0.01em;
}
.demo-form-group .required { color: var(--teal-500); }
.demo-form-group .optional {
  color: var(--slate-500); font-weight: 400; font-size: 12px;
}
.demo-form-group input,
.demo-form-group select,
.demo-form-group textarea {
  width: 100%; padding: 12px 16px; border-radius: 10px;
  border: 1.5px solid var(--slate-300); font-size: 14px;
  font-family: 'Inter', sans-serif; color: var(--navy-800);
  background: var(--white); transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.demo-form-group input::placeholder,
.demo-form-group textarea::placeholder {
  color: var(--slate-400);
}
.demo-form-group input:focus,
.demo-form-group select:focus,
.demo-form-group textarea:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(46,196,182,0.12);
}
.demo-form-group input.error,
.demo-form-group select.error,
.demo-form-group textarea.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}
.demo-form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2394A3B8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px; cursor: pointer;
}
.demo-form-group textarea { resize: vertical; min-height: 80px; }

.demo-submit-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--teal-500); color: var(--white); padding: 16px 36px;
  border-radius: 10px; border: 2px solid var(--teal-500);
  font-size: 15px; font-weight: 700; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all 0.25s; margin-top: 6px;
  box-shadow: 0 2px 8px rgba(46,196,182,0.25);
}
.demo-submit-btn:hover {
  background: var(--teal-400); border-color: var(--teal-400);
  transform: translateY(-1px); box-shadow: 0 4px 16px rgba(46,196,182,0.3);
}
.demo-submit-arrow { transition: transform 0.2s; }
.demo-submit-btn:hover .demo-submit-arrow { transform: translateX(3px); }

.demo-form-fine {
  font-size: 12px; color: var(--slate-500); line-height: 1.6;
  margin-top: 4px;
}
.demo-form-fine a { color: var(--teal-500); text-decoration: none; }
.demo-form-fine a:hover { text-decoration: underline; }

/* Form error banner */
.form-error-banner {
  background: var(--error-light); color: var(--error);
  border: 1px solid rgba(239,68,68,0.2); border-radius: 10px;
  padding: 12px 18px; font-size: 13px; line-height: 1.5;
  margin-bottom: 8px;
}
.form-error-banner strong { font-weight: 700; }
.demo-submit-btn:disabled {
  opacity: 0.65; cursor: not-allowed; transform: none !important;
}

/* Success state */
.demo-form-success {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 40px 20px;
}
.demo-success-icon { margin-bottom: 24px; }
.demo-form-success h3 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 24px;
  font-weight: 800; color: var(--navy-800); margin-bottom: 12px;
}
.demo-form-success p {
  font-size: 15px; color: var(--slate-600); line-height: 1.7;
  max-width: 380px; margin-bottom: 28px;
}

/* Social proof bar */
.demo-proof {
  background: var(--white); border-bottom: 1px solid var(--slate-200);
  padding: 48px 40px;
}
.demo-proof-inner {
  max-width: 1200px; margin: 0 auto; text-align: center;
}
.demo-proof-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--slate-500); letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 24px; font-weight: 500;
}
.demo-proof-sectors {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.demo-proof-sector {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px; font-weight: 600; color: var(--slate-500);
  opacity: 0.55;
}
.demo-proof-sector-icon { font-size: 18px; }

/* What to Expect */
.demo-expect-header { text-align: center; margin-bottom: 60px; }
.demo-expect-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.demo-expect-card {
  background: var(--white); border-radius: 16px; padding: 36px 32px;
  border: 1px solid var(--slate-200); position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column;
}
.demo-expect-card:hover {
  transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.demo-expect-card::before {
  content: ''; position: absolute; top: 0; left: 24px; right: 24px;
  height: 3px; background: var(--teal-500); border-radius: 0 0 3px 3px;
  opacity: 0; transition: opacity 0.2s;
}
.demo-expect-card:hover::before { opacity: 1; }
.demo-expect-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 600; color: var(--teal-500);
  letter-spacing: 1px; margin-bottom: 18px;
}
.demo-expect-content { flex: 1; }
.demo-expect-content h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px; font-weight: 800; margin-bottom: 10px;
  color: var(--navy-800);
}
.demo-expect-content p {
  font-size: 14px; color: var(--slate-600); line-height: 1.7;
  margin-bottom: 20px;
}
.demo-expect-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--slate-500); letter-spacing: 0.5px;
  padding: 5px 12px; background: var(--slate-100); border-radius: 6px;
  display: inline-block; align-self: flex-start;
}

/* FAQ */
.demo-faq-header { margin-bottom: 48px; }
.demo-faq-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.demo-faq-item {
  background: var(--slate-100); border-radius: 14px; padding: 28px 28px;
  transition: transform 0.2s;
}
.demo-faq-item:hover { transform: translateY(-2px); }
.demo-faq-item h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px; font-weight: 700; color: var(--navy-800);
  margin-bottom: 8px;
}
.demo-faq-item p {
  font-size: 14px; color: var(--slate-600); line-height: 1.7;
}
.demo-faq-item a { color: var(--teal-500); text-decoration: none; }
.demo-faq-item a:hover { text-decoration: underline; }

/* Demo page responsive */
@media (max-width: 1024px) {
  .demo-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .demo-hero-content { text-align: center; }
  .demo-hero-sub { margin-left: auto; margin-right: auto; }
  .demo-value-points { align-items: center; }
  .demo-form-card { max-width: 560px; margin: 0 auto; }
  .demo-expect-grid { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 768px) {
  .demo-hero { padding: 130px 24px 80px; }
  .demo-hero h1 { font-size: clamp(30px, 8vw, 42px); }
  .demo-form-card { padding: 32px 24px; }
  .demo-form-row { grid-template-columns: 1fr; }
  .demo-proof { padding: 32px 24px; }
  .demo-proof-sectors { gap: 24px; }
  .demo-faq-grid { grid-template-columns: 1fr; }
}

/* ===== SOCIAL PROOF / TESTIMONIALS ===== */
.social-proof {
  background: var(--navy-900); padding: 56px 40px; border-top: 1px solid rgba(255,255,255,0.04);
}
.social-proof-inner {
  max-width: 1200px; margin: 0 auto; text-align: center;
}
.social-proof-headline {
  font-size: 15px; text-transform: uppercase; letter-spacing: 2px; font-weight: 700;
  color: var(--teal-400); margin-bottom: 28px;
}
.social-proof-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-bottom: 48px;
}
.social-proof-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(28px, 3vw, 40px);
  font-weight: 800; color: var(--white); letter-spacing: -0.02em;
}
.social-proof-stat-label {
  font-size: 13px; color: var(--slate-500); margin-top: 6px; line-height: 1.4;
}
.social-proof-industries {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 48px;
}
.social-proof-industry {
  background: rgba(46,196,182,0.08); border: 1px solid rgba(46,196,182,0.15);
  border-radius: 100px; padding: 8px 20px; font-size: 13px; font-weight: 600;
  color: var(--teal-300); letter-spacing: 0.3px;
}
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: left;
}
.testimonial-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; padding: 28px; position: relative;
}
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 16px; left: 20px;
  font-size: 48px; font-weight: 800; color: var(--teal-500); opacity: 0.3;
  line-height: 1; font-family: Georgia, serif;
}
.testimonial-quote {
  font-size: 14px; color: var(--slate-300); line-height: 1.65; margin-bottom: 20px;
  padding-top: 28px; font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.testimonial-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-500), var(--cyan-400));
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--white);
}
.testimonial-meta { display: flex; flex-direction: column; }
.testimonial-name { font-size: 13px; font-weight: 600; color: var(--white); }
.testimonial-role { font-size: 12px; color: var(--slate-500); }

/* ===== MODULE EXPLORER (Tabbed) ===== */
.explorer-tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 40px;
}
.explorer-tab {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px; padding: 10px 22px; font-size: 13px; font-weight: 600;
  color: var(--slate-400); cursor: pointer; transition: all 0.25s ease;
  font-family: 'Inter', sans-serif;
}
.explorer-tab:hover { color: var(--white); border-color: rgba(255,255,255,0.15); }
.explorer-tab.active {
  background: var(--teal-500); border-color: var(--teal-500); color: var(--white);
}
.explorer-panel {
  display: none; animation: panelFadeIn 0.35s ease;
}
.explorer-panel.active { display: block; }
@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.explorer-panel-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start;
  text-align: left;
}
.explorer-desc {
  font-size: 15px; color: var(--slate-300); line-height: 1.65; margin-bottom: 24px;
}
.explorer-feature-list {
  list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px;
}
.explorer-feature-list li {
  font-size: 13px; color: var(--slate-300); padding-left: 22px; position: relative;
  line-height: 1.5;
}
.explorer-feature-list li::before {
  content: '\2713'; position: absolute; left: 0; color: var(--teal-400); font-weight: 700;
}
.explorer-feature-list li strong { color: var(--white); }
.explorer-screenshot {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; padding: 20px; min-height: 280px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.explorer-screenshot-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600;
  color: var(--teal-400); margin-bottom: 12px; width: 100%; text-align: center;
}
.explorer-screenshot-mock {
  width: 100%; background: transparent;
  border-radius: 10px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--slate-500); font-weight: 500;
  line-height: 0;
}
.explorer-screenshot-mock svg {
  width: 100%; height: auto; display: block;
  border: 1px solid rgba(255,255,255,0.06); border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.04);
}
.explorer-module-count {
  font-size: 13px; color: var(--teal-400); font-weight: 600; margin-bottom: 12px;
}

/* ===== TCO PRODUCTIVITY SAVINGS ===== */
.productivity-section {
  background: linear-gradient(145deg, #0C1525 0%, var(--navy-900) 40%, #132038 100%);
  border-radius: 20px; padding: 40px; margin-top: 48px;
  position: relative; overflow: hidden;
  box-shadow: 0 12px 48px rgba(15,26,46,0.4), 0 2px 8px rgba(15,26,46,0.2);
}
.productivity-section::before {
  content: ''; position: absolute; top: -30%; right: -8%; width: 55%; height: 160%;
  background: radial-gradient(ellipse at 60% 40%, rgba(46,196,182,0.1) 0%, transparent 55%);
  pointer-events: none;
}
.productivity-section::after {
  content: ''; position: absolute; bottom: -20%; left: -5%; width: 40%; height: 100%;
  background: radial-gradient(ellipse, rgba(76,201,240,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.productivity-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 10px;
  position: relative; z-index: 1;
}
.productivity-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--teal-500), var(--cyan-500));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--white);
  box-shadow: 0 4px 16px rgba(46,196,182,0.35);
}
.productivity-title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px;
  font-weight: 800; color: var(--white); letter-spacing: -0.02em;
}
.productivity-subtitle {
  font-size: 14px; color: var(--slate-400); line-height: 1.6;
  margin-bottom: 28px; position: relative; z-index: 1; max-width: 600px;
}
.productivity-inputs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 28px;
  position: relative; z-index: 1;
}
.productivity-input-group label {
  display: block; font-size: 11px; font-weight: 600; color: var(--teal-400);
  margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px;
}
.productivity-input-group input {
  width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 14px 16px; font-size: 18px; font-weight: 700;
  color: var(--white); font-family: 'JetBrains Mono', monospace;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.productivity-input-group input:hover {
  background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18);
}
.productivity-input-group input:focus {
  outline: none; border-color: var(--teal-400);
  box-shadow: 0 0 0 3px rgba(46,196,182,0.2); background: rgba(255,255,255,0.08);
}
.productivity-result {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  position: relative; z-index: 1;
}
.productivity-result-item {
  text-align: center; background: rgba(46,196,182,0.06);
  border: 1px solid rgba(46,196,182,0.15); border-radius: 14px;
  padding: 24px 16px;
}
.productivity-result-value {
  font-family: 'JetBrains Mono', monospace; font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 800; color: var(--teal-400); letter-spacing: -0.02em;
}
.productivity-result-label {
  font-size: 11px; color: var(--slate-500); margin-top: 8px;
  text-transform: uppercase; letter-spacing: 1px; font-weight: 600;
}

/* ===== CHANGELOG / ROADMAP ===== */
.changelog-hero {
  background: linear-gradient(160deg, #080E1A 0%, var(--navy-900) 30%, #0D1B33 60%, var(--navy-700) 100%);
  padding: 160px 40px 80px; text-align: center; position: relative; overflow: hidden;
}
.changelog-hero::before {
  content: ''; position: absolute; top: -30%; right: -5%; width: 60%; height: 160%;
  background: radial-gradient(ellipse at 60% 40%, rgba(46,196,182,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.changelog-hero h1 {
  font-size: clamp(36px, 4.5vw, 56px); font-weight: 800; color: var(--white);
  line-height: 1.08; margin-bottom: 16px; letter-spacing: -0.03em;
  position: relative; z-index: 2;
}
.changelog-hero h1 span {
  background: linear-gradient(135deg, var(--teal-400), var(--cyan-400));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.changelog-hero p {
  font-size: 17px; color: var(--slate-400); max-width: 540px;
  margin: 0 auto; line-height: 1.6; position: relative; z-index: 2;
}
.changelog-body {
  padding: 80px 40px; background: var(--white);
}
.changelog-inner {
  max-width: 800px; margin: 0 auto;
}
.changelog-tabs {
  display: flex; gap: 8px; margin-bottom: 48px; justify-content: center;
}
.changelog-tab {
  padding: 8px 20px; border-radius: 100px; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all 0.2s; border: 1px solid var(--slate-300);
  color: var(--slate-600); background: var(--white);
}
.changelog-tab:hover { border-color: var(--teal-500); color: var(--teal-500); }
.changelog-tab.active { background: var(--teal-500); border-color: var(--teal-500); color: var(--white); }
.changelog-timeline { position: relative; padding-left: 32px; }
.changelog-timeline::before {
  content: ''; position: absolute; left: 7px; top: 0; bottom: 0;
  width: 2px; background: var(--slate-200);
}
.changelog-entry {
  position: relative; margin-bottom: 40px; padding-bottom: 40px;
  border-bottom: 1px solid var(--slate-100);
}
.changelog-entry:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.changelog-entry::before {
  content: ''; position: absolute; left: -29px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--teal-500); border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--teal-200);
}
.changelog-entry.roadmap::before { background: var(--slate-400); box-shadow: 0 0 0 2px var(--slate-200); }
.changelog-date {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.5px; color: var(--teal-500); margin-bottom: 6px;
}
.changelog-entry.roadmap .changelog-date { color: var(--slate-500); }
.changelog-version {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px;
  font-weight: 700; color: var(--navy-800); margin-bottom: 12px;
}
.changelog-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.changelog-badge {
  font-size: 11px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px;
}
.changelog-badge.new { background: rgba(46,196,182,0.12); color: var(--teal-500); }
.changelog-badge.improved { background: rgba(59,130,246,0.1); color: #3B82F6; }
.changelog-badge.fixed { background: rgba(249,115,22,0.1); color: #F97316; }
.changelog-badge.coming { background: rgba(148,163,184,0.15); color: var(--slate-600); }
.changelog-items { list-style: none; padding: 0; }
.changelog-items li {
  font-size: 14px; color: var(--slate-700); line-height: 1.65;
  padding: 4px 0 4px 20px; position: relative;
}
.changelog-items li::before {
  content: '\2022'; position: absolute; left: 4px; color: var(--teal-500); font-weight: 700;
}

/* ===== USE-CASE / VERTICAL PAGES ===== */
.vertical-hero {
  background: linear-gradient(160deg, #080E1A 0%, var(--navy-900) 30%, #0D1B33 60%, var(--navy-700) 100%);
  padding: 160px 40px 80px; position: relative; overflow: hidden;
}
.vertical-hero::before {
  content: ''; position: absolute; top: -30%; right: -5%; width: 60%; height: 160%;
  background: radial-gradient(ellipse at 60% 40%, rgba(46,196,182,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.vertical-hero-inner {
  max-width: 760px; margin: 0 auto; text-align: center; position: relative; z-index: 2;
}
.vertical-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(46,196,182,0.08); border: 1px solid rgba(46,196,182,0.2);
  border-radius: 100px; padding: 6px 16px; font-size: 12px; font-weight: 600;
  color: var(--teal-400); text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 24px;
}
.vertical-hero h1 {
  font-size: clamp(36px, 4.5vw, 52px); font-weight: 800; color: var(--white);
  line-height: 1.08; margin-bottom: 18px; letter-spacing: -0.03em;
}
.vertical-hero h1 span {
  background: linear-gradient(135deg, var(--teal-400), var(--cyan-400));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.vertical-hero p {
  font-size: 17px; color: var(--slate-400); line-height: 1.6; margin-bottom: 28px;
}
.vertical-section { padding: 80px 40px; }
.vertical-section-inner { max-width: 1000px; margin: 0 auto; }
.vertical-challenges {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px;
}
.vertical-challenge {
  background: var(--slate-100); border-radius: 14px; padding: 24px;
  border-left: 3px solid var(--error);
}
.vertical-challenge h3 { font-size: 15px; font-weight: 700; color: var(--navy-800); margin-bottom: 8px; }
.vertical-challenge p { font-size: 13px; color: var(--slate-600); line-height: 1.55; }
.vertical-solutions {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 32px;
}
.vertical-solution {
  background: var(--white); border: 1px solid var(--slate-200);
  border-radius: 14px; padding: 28px;
}
.vertical-solution-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(46,196,182,0.1); display: flex; align-items: center;
  justify-content: center; font-size: 20px; margin-bottom: 14px;
}
.vertical-solution h3 { font-size: 16px; font-weight: 700; color: var(--navy-800); margin-bottom: 8px; }
.vertical-solution p { font-size: 13px; color: var(--slate-600); line-height: 1.55; }
.vertical-modules {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px;
}
.vertical-module-tag {
  background: rgba(46,196,182,0.08); border: 1px solid rgba(46,196,182,0.15);
  border-radius: 100px; padding: 4px 12px; font-size: 11px; font-weight: 600;
  color: var(--teal-500);
}

@media (max-width: 1024px) {
  .social-proof-stats { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .explorer-panel-inner { grid-template-columns: 1fr; }
  .vertical-challenges { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .social-proof { padding: 60px 24px; }
  .social-proof-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .explorer-tabs { gap: 6px; }
  .explorer-tab { padding: 8px 14px; font-size: 12px; }
  .explorer-panel-inner { grid-template-columns: 1fr; gap: 24px; }
  .explorer-screenshot { display: none; }
  .productivity-inputs { grid-template-columns: 1fr; }
  .productivity-result { grid-template-columns: 1fr 1fr; }
  .changelog-body { padding: 60px 24px; }
  .changelog-hero { padding: 140px 24px 60px; }
  .vertical-hero { padding: 140px 24px 60px; }
  .vertical-challenges { grid-template-columns: 1fr; }
  .vertical-solutions { grid-template-columns: 1fr; }
}

/* ===== FOCUS STYLES (a11y) ===== */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--teal-400); outline-offset: 2px;
}

/* ===== PRINT ===== */
@media print {
  .nav, .cta-section, .hero-preview, .hero-product-mockup { display: none; }
  body { color: #000; }
  .hero-home, .hero-product { background: #fff; padding: 40px; }
  .hero-home h1, .hero-product h1 { color: #000; }
  .section { padding: 40px; }
}
