/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  --navy:        #0E1F38;
  --navy-mid:    #162D52;
  --navy-light:  #1D4272;
  --gold:        #FFC145;
  --gold-dark:   #E8A800;
  --cyan:        #22D3EE;
  --white:       #FFFFFF;
  --surface:     #F0F5FF;
  --border:      #D6E0F0;
  --text-dark:   #0E1F38;
  --text-mid:    #3D5473;
  --text-light:  #6B85A6;
  --text-muted:  #94AAC3;
  --success:     #10B981;
  --error:       #EF4444;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --shadow-sm:   0 1px 3px rgba(14,31,56,.08);
  --shadow-md:   0 4px 12px rgba(14,31,56,.10);
  --shadow-lg:   0 10px 30px rgba(14,31,56,.12);
  --shadow-xl:   0 20px 50px rgba(14,31,56,.16);
  --r-sm: 6px; --r-md: 12px; --r-lg: 20px; --r-xl: 28px; --r-full: 9999px;
  --t: 250ms ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 1rem; line-height: 1.6; color: var(--text-dark); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } }

/* ============================================================
   LAYOUT
============================================================ */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .75rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: #C47A00;
  background: rgba(255,193,69,.13);
  padding: .2rem 1rem; border-radius: var(--r-full);
  margin-bottom: 1rem;
}
.section-label--light { color: var(--gold); background: rgba(255,193,69,.15); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700; line-height: 1.2; letter-spacing: -.02em;
  color: var(--text-dark); margin-bottom: 1rem;
}
.section-title--light { color: var(--white); }
.section-sub { font-size: 1.0625rem; color: var(--text-mid); max-width: 540px; line-height: 1.75; }
.section-sub--light { color: rgba(255,255,255,.6); }
.section-head { margin-bottom: 3.5rem; }
.section-head--center { text-align: center; }
.section-head--center .section-sub { margin: 0 auto; }

/* ============================================================
   DOT-GRID TEXTURE (OMR motif — the aesthetic risk)
============================================================ */
.dot-grid { position: relative; }
.dot-grid::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none; z-index: 0;
}
.dot-grid > * { position: relative; z-index: 1; }

/* ============================================================
   NAVIGATION
============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background var(--t), box-shadow var(--t);
}
.nav--scrolled { background: var(--navy); box-shadow: 0 2px 20px rgba(14,31,56,.4); }
.nav-inner {
  display: flex; align-items: center; gap: 2rem; height: 68px;
}
.nav-logo {
  display: flex; align-items: center; gap: .625rem; flex-shrink: 0;
}
.nav-logo-mark {
  width: 34px; height: 34px; background: var(--gold);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: .9375rem;
  color: var(--navy); letter-spacing: -.02em;
}
.nav-logo-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.0625rem; color: var(--white); letter-spacing: -.01em;
}
.nav-logo-name em { color: var(--gold); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: .25rem; margin-left: auto; }
.nav-link {
  font-size: .9375rem; font-weight: 500;
  color: rgba(255,255,255,.78);
  padding: .4rem .9rem; border-radius: var(--r-sm);
  transition: color var(--t), background var(--t);
  white-space: nowrap;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.08); }

/* Dropdown */
.nav-has-dropdown { position: relative; }
.nav-has-dropdown > .nav-link {
  display: flex; align-items: center; gap: .3rem;
}
.nav-has-dropdown > .nav-link::after {
  content: '';
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: .55; transition: transform var(--t);
}
.nav-has-dropdown:hover > .nav-link::after { transform: rotate(180deg); opacity: 1; }

.mega-menu {
  position: absolute; top: calc(100% + .75rem); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white); border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl); border: 1px solid var(--border);
  padding: 1.5rem; min-width: 660px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t), transform var(--t);
}
.nav-has-dropdown:hover .mega-menu,
.nav-has-dropdown:focus-within .mega-menu {
  opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.mm-col-title {
  font-family: var(--font-display);
  font-size: .6875rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: .75rem;
  padding-bottom: .5rem; border-bottom: 1px solid var(--border);
}
.mm-item {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .625rem; border-radius: var(--r-sm);
  transition: background var(--t); cursor: pointer;
}
.mm-item:hover { background: var(--surface); }
.mm-icon {
  width: 30px; height: 30px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem; flex-shrink: 0;
}
.mm-icon--b { background: rgba(14,31,56,.09); }
.mm-icon--g { background: rgba(255,193,69,.14); }
.mm-icon--c { background: rgba(34,211,238,.12); }
.mm-name { font-size: .875rem; font-weight: 600; color: var(--text-dark); line-height: 1.3; }
.mm-desc { font-size: .72rem; color: var(--text-light); margin-top: 2px; }

.btn-nav-demo {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--gold); color: var(--navy);
  font-family: var(--font-display); font-size: .875rem; font-weight: 700;
  padding: .5rem 1.25rem; border-radius: var(--r-full);
  transition: background var(--t), box-shadow var(--t), transform var(--t);
  white-space: nowrap;
}
.btn-nav-demo:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255,193,69,.38);
}

/* Mobile toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: .5rem; margin-left: auto; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--t); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile { display: none; background: var(--navy-mid); border-top: 1px solid rgba(255,255,255,.08); }
.nav-mobile.open { display: block; }
.nm-link { display: block; padding: .875rem 1.5rem; color: rgba(255,255,255,.8); font-size: .9375rem; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.06); transition: color var(--t); }
.nm-link:hover { color: var(--gold); }
.nm-section { padding: .625rem 1.5rem .25rem; font-size: .6875rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); }
.nm-cta { padding: 1rem 1.5rem; }
.nm-cta .btn-nav-demo { width: 100%; justify-content: center; }

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100vh; background: var(--navy);
  display: flex; align-items: center;
  padding-top: 68px; overflow: hidden; position: relative;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 72% 50%, rgba(34,211,238,.055) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 15% 75%, rgba(255,193,69,.045) 0%, transparent 65%);
  pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  padding: 5rem 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,193,69,.11);
  border: 1px solid rgba(255,193,69,.24);
  border-radius: var(--r-full);
  padding: .25rem 1rem .25rem .5rem;
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 8px; height: 8px; background: var(--gold);
  border-radius: 50%; animation: pulse 2.2s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.55;transform:scale(.82)} }
.hero-badge-text { font-size: .8125rem; font-weight: 600; color: var(--gold); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.125rem, 4vw, 3.375rem);
  font-weight: 700; line-height: 1.12; letter-spacing: -.03em;
  color: var(--white); margin-bottom: 1.5rem;
}
.hero-title .gold { color: var(--gold); }
.hero-title .cyan { color: var(--cyan); }
.hero-desc {
  font-size: 1.0625rem; color: rgba(255,255,255,.6);
  line-height: 1.78; max-width: 460px; margin-bottom: 2.5rem;
}
.hero-ctas { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold); color: var(--navy);
  font-family: var(--font-display); font-weight: 700; font-size: .9375rem;
  padding: .9rem 2rem; border-radius: var(--r-full);
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,193,69,.38); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.72); font-weight: 500; font-size: .9375rem;
  padding: .9rem 1.5rem; border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,.2);
  transition: color var(--t), border-color var(--t), background var(--t);
}
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.05); }

/* Dashboard mockup */
.hero-visual { position: relative; }
.hero-dash {
  background: rgba(255,255,255,.032);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.09);
}
.dash-bar {
  background: rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: .875rem 1.25rem;
  display: flex; align-items: center; gap: .75rem;
}
.dash-dots { display: flex; gap: .45rem; }
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-dot:nth-child(1){background:#FF5F57} .dash-dot:nth-child(2){background:#FEBC2E} .dash-dot:nth-child(3){background:#28C840}
.dash-bar-title { flex:1; height:7px; background:rgba(255,255,255,.07); border-radius:4px; max-width:160px; margin:0 auto; }
.dash-body { padding: 1.25rem; display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.db-card {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-md); padding: 1rem;
}
.db-card-label { font-size: .65rem; color: rgba(255,255,255,.4); letter-spacing: .07em; text-transform: uppercase; margin-bottom: .25rem; }
.db-card-val { font-family: var(--font-display); font-size: 1.375rem; font-weight: 700; color: var(--white); letter-spacing: -.02em; }
.db-card-val.gold { color: var(--gold); }
.db-card-val.cyan { color: var(--cyan); }
.db-card-delta { font-size: .72rem; color: var(--success); margin-top: .2rem; }
.db-chart { grid-column: 1/-1; background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.06); border-radius: var(--r-md); padding: 1rem; }
.db-chart-label { font-size: .7rem; color: rgba(255,255,255,.4); margin-bottom: .875rem; }
.db-bars { display: flex; align-items: flex-end; gap: .4rem; height: 64px; }
.db-b { flex:1; border-radius: 3px 3px 0 0; opacity:.72; }
.db-row-list { grid-column: 1/-1; }
.db-row {
  display: flex; align-items: center; gap: .75rem;
  padding: .45rem 0; border-bottom: 1px solid rgba(255,255,255,.05);
}
.db-row:last-child { border-bottom: none; }
.db-av { width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 700; color: var(--navy); }
.db-rname { font-size: .78rem; color: rgba(255,255,255,.7); flex:1; }
.db-badge { font-size: .65rem; font-weight: 700; padding: 2px 7px; border-radius: 4px; }
.db-badge.g { background: rgba(16,185,129,.15); color: #10B981; }
.db-badge.y { background: rgba(255,193,69,.15); color: var(--gold); }
.db-badge.c { background: rgba(34,211,238,.12); color: var(--cyan); }

/* Floating cards */
.hero-float {
  position: absolute;
  background: var(--white); border-radius: var(--r-md);
  padding: .875rem 1.125rem;
  box-shadow: var(--shadow-xl);
  display: flex; align-items: center; gap: .75rem;
}
.hero-float.f1 { bottom: -16px; left: -28px; animation: float 4s ease-in-out infinite; }
.hero-float.f2 { top: 14px; right: -24px; animation: float 4s ease-in-out infinite 2s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.float-ico { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.float-ico.g { background: rgba(255,193,69,.14); }
.float-ico.c { background: rgba(34,211,238,.12); }
.float-lbl { font-size: .68rem; color: var(--text-light); }
.float-val { font-family: var(--font-display); font-size: .9375rem; font-weight: 700; color: var(--text-dark); }

/* ============================================================
   STATS BAR
============================================================ */
.stats-bar { background: var(--navy-mid); border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
.stats-inner { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { padding: 2rem 1.5rem; text-align: center; border-right: 1px solid rgba(255,255,255,.07); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold); letter-spacing: -.04em; line-height: 1; margin-bottom: .25rem; }
.stat-lbl { font-size: .8125rem; color: rgba(255,255,255,.45); }

/* ============================================================
   PRODUCTS
============================================================ */
.products-section { background: var(--surface); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.25rem; }
.product-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 2rem; border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 1rem;
  position: relative; overflow: hidden;
  transition: box-shadow var(--t), transform var(--t), border-color var(--t);
}
.product-card::before {
  content:''; position: absolute; top:0; left:0; right:0; height:3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform var(--t);
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.product-card:hover::before { transform: scaleX(1); }
.product-ico { width: 50px; height: 50px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 1.375rem; flex-shrink: 0; }
.product-ico.b { background: rgba(14,31,56,.07); }
.product-ico.g { background: rgba(255,193,69,.12); }
.product-ico.c { background: rgba(34,211,238,.1); }
.product-ico.gr { background: rgba(16,185,129,.1); }
.product-tag { font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); }
.product-name { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; color: var(--text-dark); line-height: 1.3; margin-top: .1rem; }
h3.product-name { margin: .1rem 0 0; font-size: 1.125rem; font-weight: 700; line-height: 1.3; }
.product-desc { font-size: .9rem; color: var(--text-mid); line-height: 1.65; flex:1; }
.product-actions { display: flex; align-items: center; gap: .75rem; padding-top: .5rem; }
.btn-learn { font-size: .875rem; font-weight: 600; color: var(--navy); display: flex; align-items: center; gap: 4px; transition: gap var(--t), color var(--t); }
.btn-learn:hover { color: var(--navy-light); gap: 8px; }
.btn-demo-sm { font-size: .8125rem; font-weight: 700; color: var(--navy); background: var(--gold); padding: .45rem 1rem; border-radius: var(--r-full); transition: background var(--t), transform var(--t); margin-left: auto; }
.btn-demo-sm:hover { background: var(--gold-dark); transform: scale(1.04); }

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why-section { background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-visual { position: relative; height: 420px; }
.why-card-main {
  position: absolute; top: 30px; left: 0; right: 56px;
  background: var(--navy); border-radius: var(--r-xl); padding: 2rem; color: var(--white);
  box-shadow: var(--shadow-xl);
}
.why-card-main-title { font-family: var(--font-display); font-size: 1.0625rem; font-weight: 700; margin-bottom: 1.5rem; }
.why-prog-item { margin-bottom: 1.125rem; }
.why-prog-item:last-child { margin-bottom: 0; }
.why-prog-head { display: flex; justify-content: space-between; margin-bottom: .4rem; font-size: .875rem; color: rgba(255,255,255,.7); }
.why-prog-track { height: 6px; background: rgba(255,255,255,.1); border-radius: 3px; overflow: hidden; }
.why-prog-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--gold), var(--cyan)); }
.why-card-accent {
  position: absolute; bottom: 0; left: 72px; right: 0; top: 286px;
  background: var(--gold); border-radius: var(--r-xl); padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}
.why-accent-num { font-family: var(--font-display); font-size: 2.375rem; font-weight: 700; color: var(--navy); letter-spacing: -.04em; line-height: 1; }
.why-accent-txt { font-size: .875rem; color: rgba(14,31,56,.65); margin-top: .25rem; }
.why-list { display: flex; flex-direction: column; gap: 1.5rem; }
.why-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.why-item-ico { width: 46px; height: 46px; border-radius: var(--r-md); background: var(--surface); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; transition: background var(--t); }
.why-item:hover .why-item-ico { background: var(--navy); }
.why-item-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: .2rem; }
.why-item-desc { font-size: .9rem; color: var(--text-mid); line-height: 1.65; }

/* ============================================================
   FEATURES
============================================================ */
.features-section { background: var(--navy); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.feat-card {
  background: rgba(255,255,255,.038);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-lg); padding: 2rem;
  transition: background var(--t), border-color var(--t), transform var(--t);
}
.feat-card:hover { background: rgba(255,255,255,.065); border-color: rgba(255,193,69,.22); transform: translateY(-4px); }
.feat-ico { font-size: 1.75rem; margin-bottom: 1.125rem; }
.feat-title { font-family: var(--font-display); font-size: 1.0625rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.feat-desc { font-size: .9rem; color: rgba(255,255,255,.52); line-height: 1.65; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-section { background: var(--surface); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.testi-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 2rem; border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 1.25rem;
}
.testi-stars { display: flex; gap: 2px; color: var(--gold); }
.testi-text { font-size: .9375rem; color: var(--text-mid); line-height: 1.78; flex:1; }
.testi-text::before { content:'\201C'; color: var(--gold); font-size: 1.75rem; line-height: 0; vertical-align: -.35em; margin-right: 2px; }
.testi-author { display: flex; align-items: center; gap: .875rem; border-top: 1px solid var(--border); padding-top: 1.25rem; }
.testi-av { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: .875rem; color: var(--navy); background: var(--gold); flex-shrink: 0; }
.testi-name { font-family: var(--font-display); font-size: .9375rem; font-weight: 700; color: var(--text-dark); }
.testi-role { font-size: .8125rem; color: var(--text-light); }

/* ============================================================
   INDUSTRIES
============================================================ */
.industries-section { background: var(--white); }
.industries-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.industry-card {
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 1.375rem 1.25rem;
  display: flex; align-items: center; gap: 1rem;
  transition: background var(--t), border-color var(--t), transform var(--t);
}
.industry-card:hover { background: var(--navy); border-color: var(--navy); transform: translateX(4px); }
.industry-card:hover .industry-name { color: var(--white); }
.industry-card:hover .industry-ico { background: rgba(255,255,255,.1); }
.industry-ico { width: 46px; height: 46px; border-radius: var(--r-md); background: var(--surface); display: flex; align-items: center; justify-content: center; font-size: 1.375rem; flex-shrink: 0; transition: background var(--t); }
.industry-name { font-family: var(--font-display); font-size: .9375rem; font-weight: 600; color: var(--text-dark); transition: color var(--t); }

/* ============================================================
   FAQ
============================================================ */
.faq-section { background: var(--surface); }
.faq-wrap { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.375rem 0;
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  color: var(--text-dark); text-align: left;
  transition: color var(--t);
}
.faq-q:hover { color: var(--navy-light); }
.faq-arr {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; flex-shrink: 0;
  color: var(--text-light); transition: var(--t);
}
.faq-item.open .faq-arr { background: var(--navy); border-color: var(--navy); color: var(--white); transform: rotate(180deg); }
.faq-a { display: none; padding-bottom: 1.375rem; font-size: .9375rem; color: var(--text-mid); line-height: 1.78; }
.faq-item.open .faq-a { display: block; }

/* ============================================================
   CTA BANNER
============================================================ */
.cta-banner { background: var(--navy-mid); position: relative; overflow: hidden; }
.cta-banner::before {
  content:''; position: absolute;
  width: 480px; height: 480px; border-radius: 50%;
  background: rgba(255,193,69,.04);
  right: -80px; top: 50%; transform: translateY(-50%);
}
.cta-inner {
  padding: 5rem 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; position: relative;
}
.cta-title { font-family: var(--font-display); font-size: clamp(1.375rem,2.4vw,2rem); font-weight: 700; color: var(--white); line-height: 1.25; }
.cta-title span { color: var(--gold); }
.cta-sub { font-size: 1rem; color: rgba(255,255,255,.5); margin-top: .625rem; }
.cta-actions { display: flex; gap: 1rem; flex-shrink: 0; }

/* ============================================================
   DEMO MODAL
============================================================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(14,31,56,.78);
  backdrop-filter: blur(4px);
  z-index: 200; display: flex;
  align-items: flex-start; justify-content: center;
  padding: 2rem 1.5rem;
  overflow-y: auto;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t);
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-panel {
  background: var(--white); border-radius: var(--r-xl);
  width: 100%; max-width: 540px;
  transform: translateY(14px) scale(.98);
  transition: transform var(--t);
  margin: auto;
}
.modal-overlay.open .modal-panel { transform: translateY(0) scale(1); }
.modal-header {
  background: var(--navy); padding: 2rem 2rem 1.75rem;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  position: relative;
}
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem; line-height: 1; transition: background var(--t);
}
.modal-close:hover { background: rgba(255,255,255,.2); }
.modal-tag { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); background: rgba(255,193,69,.14); padding: .2rem .75rem; border-radius: var(--r-full); margin-bottom: .875rem; }
.modal-title { font-family: var(--font-display); font-size: 1.375rem; font-weight: 700; color: var(--white); margin-bottom: .25rem; }
.modal-sub { font-size: .9rem; color: rgba(255,255,255,.55); }
.modal-body { padding: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-label { display: block; font-size: .875rem; font-weight: 600; color: var(--text-dark); margin-bottom: .5rem; }
.form-label .req { color: var(--error); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: .875rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--r-md);
  font-size: .9375rem; color: var(--text-dark);
  background: var(--white); outline: none;
  transition: border-color var(--t), box-shadow var(--t);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(14,31,56,.07);
}
.form-input.err, .form-select.err, .form-textarea.err { border-color: var(--error); box-shadow: 0 0 0 3px rgba(239,68,68,.07); }
.form-err { font-size: .8125rem; color: var(--error); margin-top: .3rem; display: none; }
.form-err.show { display: block; }
.form-textarea { resize: vertical; min-height: 96px; }
.btn-submit {
  width: 100%; padding: 1rem;
  background: var(--navy); color: var(--white);
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  border-radius: var(--r-full); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  margin-top: 1.5rem;
}
.btn-submit:hover:not(:disabled) { background: var(--navy-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; }
.btn-submit .spinner { width: 18px; height: 18px; border: 2.5px solid rgba(255,255,255,.3); border-top-color: var(--white); border-radius: 50%; animation: spin .7s linear infinite; display: none; }
.btn-submit.loading .spinner { display: block; }
.btn-submit.loading .btn-txt { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-success, .form-error-state { display: none; text-align: center; padding: 3rem 2rem; }
.form-success.show, .form-error-state.show { display: block; }
.state-ico { font-size: 3rem; margin-bottom: 1rem; }
.state-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--text-dark); margin-bottom: .5rem; }
.state-text { font-size: .9375rem; color: var(--text-mid); }
.btn-try-again { margin-top: 1.25rem; font-size: .9rem; font-weight: 600; color: var(--navy); text-decoration: underline; }

/* ============================================================
   ABOUT US
============================================================ */
.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.about-mission {
  font-family: var(--font-display); font-size: 1.1875rem; font-weight: 600;
  color: var(--navy); line-height: 1.55;
  border-left: 3px solid var(--gold); padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}
.about-story { font-size: .9375rem; color: var(--text-mid); line-height: 1.82; margin-bottom: 2rem; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: .875rem; }
.about-value {
  padding: 1rem 1rem .875rem;
  border: 1px solid var(--border); border-radius: var(--r-md);
  transition: border-color var(--t), box-shadow var(--t);
}
.about-value:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.about-value-icon { font-size: 1.25rem; margin-bottom: .5rem; }
.about-value-title { font-family: var(--font-display); font-size: .9375rem; font-weight: 700; color: var(--text-dark); margin-bottom: .2rem; }
.about-value-desc { font-size: .8125rem; color: var(--text-mid); line-height: 1.55; }

/* Timeline */
.about-right { display: flex; flex-direction: column; gap: 2.5rem; }
.timeline-wrap { position: relative; padding-left: 1.75rem; }
.timeline-wrap::before {
  content: ''; position: absolute; left: 0; top: 4px; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--cyan) 100%);
  border-radius: 2px;
}
.tl-item { position: relative; margin-bottom: 1.625rem; }
.tl-item:last-child { margin-bottom: 0; }
.tl-dot {
  position: absolute; left: -1.75rem; transform: translateX(-50%);
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold); border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold); top: .3125rem;
}
.tl-year {
  font-family: var(--font-display); font-size: .7rem; font-weight: 700;
  color: #C47A00; letter-spacing: .07em; text-transform: uppercase; margin-bottom: .2rem;
}
.tl-text { font-size: .9rem; color: var(--text-mid); line-height: 1.6; }
.tl-text strong { color: var(--text-dark); font-weight: 600; }

/* Founder card */
.founder-card {
  background: var(--navy); border-radius: var(--r-lg);
  padding: 1.5rem; display: flex; align-items: center; gap: 1.125rem;
}
.founder-av {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem;
  color: var(--navy); flex-shrink: 0;
}
.founder-name { font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: 1rem; margin-bottom: .2rem; }
.founder-title { font-size: .8125rem; color: rgba(255,255,255,.5); margin-bottom: .5rem; }
.founder-quote { font-size: .8125rem; color: rgba(255,255,255,.65); line-height: 1.6; font-style: italic; }
.founder-quote::before { content: '\201C'; color: var(--gold); margin-right: 2px; }
.founder-quote::after  { content: '\201D'; color: var(--gold); margin-left: 2px; }

/* ============================================================
   CONTACT
============================================================ */
.contact-section { background: var(--navy); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: .5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-ico { width: 42px; height: 42px; border-radius: var(--r-md); background: rgba(255,193,69,.12); display: flex; align-items: center; justify-content: center; font-size: 1.125rem; flex-shrink: 0; }
.contact-lbl { font-size: .8rem; color: rgba(255,255,255,.45); margin-bottom: 2px; }
.contact-val { color: var(--white); font-weight: 500; }
.contact-form-box {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl); padding: 2rem;
}
.contact-form-box .form-input,
.contact-form-box .form-textarea {
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.12);
  color: var(--white);
}
.contact-form-box .form-input::placeholder,
.contact-form-box .form-textarea::placeholder { color: rgba(255,255,255,.3); }
.contact-form-box .form-input:focus,
.contact-form-box .form-textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(255,193,69,.1); }
.contact-form-box .form-label { color: rgba(255,255,255,.72); }
.btn-contact {
  background: var(--gold); color: var(--navy);
  font-family: var(--font-display); font-weight: 700; font-size: .9375rem;
  padding: .875rem 2rem; border-radius: var(--r-full); border: none; cursor: pointer;
  transition: background var(--t), transform var(--t);
}
.btn-contact:hover { background: var(--gold-dark); transform: translateY(-1px); }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: #071220; border-top: 1px solid rgba(255,255,255,.05); }
.footer-main { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; padding: 5rem 0; }
.footer-desc { font-size: .9rem; color: rgba(255,255,255,.4); line-height: 1.72; margin: 1rem 0 1.5rem; }
.footer-social { display: flex; gap: .75rem; }
.footer-soc { width: 34px; height: 34px; border-radius: 7px; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; font-size: .875rem; color: rgba(255,255,255,.45); transition: background var(--t), color var(--t); }
.footer-soc:hover { background: var(--gold); color: var(--navy); }
.footer-col-title { font-family: var(--font-display); font-size: .875rem; font-weight: 700; color: var(--white); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: .75rem; }
.footer-link { font-size: .875rem; color: rgba(255,255,255,.42); transition: color var(--t), padding-left var(--t); }
.footer-link:hover { color: var(--gold); padding-left: .25rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.05); padding: 1.375rem 0; display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: .8125rem; color: rgba(255,255,255,.28); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .8125rem; color: rgba(255,255,255,.28); transition: color var(--t); }
.footer-legal a:hover { color: var(--gold); }

/* ============================================================
   BACK TO TOP
============================================================ */
.back-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center; font-size: .875rem;
  box-shadow: var(--shadow-lg); z-index: 50;
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity var(--t), transform var(--t), background var(--t);
}
.back-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-top:hover { background: var(--gold-dark); transform: translateY(-2px); }

/* ============================================================
   SCROLL ANIMATIONS
============================================================ */
.fade-up { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.in { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: .1s; }
.fade-up-d2 { transition-delay: .2s; }
.fade-up-d3 { transition-delay: .3s; }
.fade-up-d4 { transition-delay: .4s; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}
@media (max-width: 768px) {
  .nav-links, .btn-nav-demo { display: none; }
  .nav-toggle { display: flex; }
  .mega-menu { display: none !important; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0; }
  .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .section { padding: 4rem 0; }
  .hero-title { font-size: 2rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .industries-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions a { text-align: center; }
}

/* ============================================================
   MEGA MENU — links and buttons render the same
============================================================ */
.mm-item { width: 100%; text-align: left; }

/* ============================================================
   PRODUCT PAGES
============================================================ */
.hero--page { min-height: auto; }
.hero--page .hero-grid { padding: 4rem 0 5rem; }
.hero--page .hero-title { font-size: clamp(2rem, 3.6vw, 3rem); }
.breadcrumb { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; font-size: .8125rem; color: rgba(255,255,255,.45); margin-bottom: 1.25rem; }
.breadcrumb a { color: rgba(255,255,255,.7); transition: color var(--t); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb li + li::before { content: '/'; margin-right: .5rem; opacity: .5; }
.hero-points { display: flex; flex-direction: column; gap: .5rem; margin: -1rem 0 2.25rem; }
.hero-points li { display: flex; gap: .625rem; color: rgba(255,255,255,.75); font-size: .9375rem; }
.hero-points li::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* Mock UI inside .hero-dash */
.mock-title { grid-column: 1/-1; font-family: var(--font-display); font-size: .8125rem; font-weight: 700; color: var(--white); display: flex; justify-content: space-between; align-items: center; }
.mock-list { grid-column: 1/-1; display: flex; flex-direction: column; }
.mock-row { display: flex; justify-content: space-between; align-items: center; gap: .75rem; padding: .55rem 0; border-bottom: 1px solid rgba(255,255,255,.06); font-size: .78rem; color: rgba(255,255,255,.7); }
.mock-row:last-child { border-bottom: none; }
.mock-row strong { color: var(--white); font-weight: 600; }
.mock-row.total { border-top: 1px solid rgba(255,193,69,.35); border-bottom: none; margin-top: .25rem; padding-top: .75rem; }
.mock-row.total strong { color: var(--gold); font-family: var(--font-display); font-size: 1rem; }
.mock-muted { color: rgba(255,255,255,.4); }
.mock-cal { grid-column: 1/-1; display: grid; grid-template-columns: repeat(7, 1fr); gap: .3rem; }
.mock-cal span { aspect-ratio: 1; border-radius: 5px; display: flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 700; }
.mock-cal .h { color: rgba(255,255,255,.35); font-weight: 600; aspect-ratio: auto; }
.mock-cal .p { background: rgba(16,185,129,.16); color: #34D399; }
.mock-cal .a { background: rgba(239,68,68,.18); color: #F87171; }
.mock-cal .o { background: rgba(255,255,255,.04); color: rgba(255,255,255,.25); }
.mock-route { grid-column: 1/-1; position: relative; padding-left: 1.25rem; display: flex; flex-direction: column; gap: .7rem; }
.mock-route::before { content: ''; position: absolute; left: 5px; top: 6px; bottom: 6px; width: 2px; background: rgba(255,193,69,.35); }
.mock-stop { position: relative; display: flex; justify-content: space-between; font-size: .78rem; color: rgba(255,255,255,.7); }
.mock-stop::before { content: ''; position: absolute; left: calc(-1.25rem + 1px); top: 4px; width: 10px; height: 10px; border-radius: 50%; background: var(--navy); border: 2px solid var(--gold); }
.mock-stop.done::before { background: var(--gold); }
.mock-doc { grid-column: 1/-1; background: rgba(255,255,255,.95); border-radius: var(--r-sm); padding: .875rem 1rem; color: #334; font-size: .75rem; line-height: 1.6; font-family: Georgia, serif; }
.mock-doc b { font-family: var(--font-body); }
.mock-arrow { grid-column: 1/-1; text-align: center; color: var(--gold); font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.mock-q { grid-column: 1/-1; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-sm); padding: .875rem 1rem; }
.mock-q-text { font-size: .8rem; color: var(--white); margin-bottom: .6rem; }
.mock-opts { display: grid; grid-template-columns: 1fr 1fr; gap: .35rem; }
.mock-opts span { font-size: .72rem; color: rgba(255,255,255,.65); padding: .3rem .5rem; border-radius: 4px; background: rgba(255,255,255,.04); }
.mock-opts .ok { background: rgba(16,185,129,.16); color: #34D399; font-weight: 700; }
.mock-mods { grid-column: 1/-1; display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; }
.mock-mods span { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: var(--r-sm); padding: .6rem .4rem; text-align: center; font-size: .68rem; color: rgba(255,255,255,.72); line-height: 1.35; }
.mock-mods span i { display: block; font-style: normal; font-size: 1.05rem; margin-bottom: .2rem; }

/* Feature cards as links */
a.feat-card { display: block; }
.feat-more { display: inline-block; margin-top: 1rem; font-size: .8125rem; font-weight: 700; color: var(--gold); }

/* How it works */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; counter-reset: step; }
.step { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.75rem; position: relative; }
.step::before {
  counter-increment: step; content: counter(step);
  width: 36px; height: 36px; border-radius: 50%; background: var(--navy); color: var(--gold);
  font-family: var(--font-display); font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.step-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: .4rem; }
.step-desc { font-size: .9rem; color: var(--text-mid); line-height: 1.65; }
.steps-section { background: var(--surface); }
.faq-section--white { background: var(--white); }

/* Related pages */
.related { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.related a { border: 1px solid var(--border); border-radius: var(--r-full); padding: .5rem 1.125rem; font-size: .875rem; font-weight: 600; color: var(--navy); transition: background var(--t), border-color var(--t); }
.related a:hover { background: var(--surface); border-color: var(--navy-light); }

@media (max-width: 1024px) {
  .hero--page .hero-grid { padding: 3rem 0 4rem; }
}
.product-desc a { color: var(--navy); font-weight: 600; white-space: nowrap; }
.product-desc a:hover { color: var(--navy-light); }
