:root {
  --navy: #0b1f3a;
  --navy-dark: #081628;
  --orange: #f26522;
  --orange-hover: #e05512;
  --blue: #1e5eff;
  --text: #1a2b3c;
  --muted: #5c6b7a;
  --bg: #ffffff;
  --bg-soft: #f4f7fb;
  --border: #e2e8f0;
  --radius: 12px;
  --shadow: 0 8px 30px rgba(11, 31, 58, 0.08);
  --max: 1140px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max), 92%);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--orange), #ff8c42);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
}

.logo span {
  color: var(--orange);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.nav a:hover {
  color: var(--navy);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-primary:hover {
  background: var(--orange-hover);
}

.btn-outline {
  border-color: var(--blue);
  color: var(--blue);
  background: #fff;
}

.btn-outline:hover {
  background: #eef4ff;
}

.btn-ghost {
  color: var(--muted);
  padding-inline: 0.5rem;
}

.btn-ghost:hover {
  color: var(--navy);
}

.btn-white {
  background: #fff;
  color: var(--navy);
}

.btn-lg {
  padding: 0.85rem 1.6rem;
  font-size: 1rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--navy);
}

/* Hero */
.hero {
  padding: 3.5rem 0 4rem;
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.65rem);
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 1rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero-lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text);
}

.checklist li::before {
  content: '✓';
  color: #22a06b;
  font-weight: 700;
}

/* Hero visual / laptop mockup */
.hero-visual {
  position: relative;
  overflow: visible;
  padding: 0 0.5rem;
}

.hero-visual-frame {
  position: relative;
  max-width: 540px;
  margin: 0 auto;
  padding: 4rem 1.25rem 0;
}

.stat-float {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(15, 39, 68, 0.1);
  padding: 0.7rem 1rem;
  font-size: 0.78rem;
  z-index: 3;
  border: 1px solid var(--border);
  min-width: 108px;
  white-space: nowrap;
}

.stat-float strong {
  display: block;
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.2;
}

.stat-float span {
  color: var(--muted);
  font-size: 0.72rem;
}

.stat-1 { top: 0; left: 1.25rem; }
.stat-2 { top: 0.5rem; right: 1.25rem; }
.stat-3 { top: 52%; left: 0; transform: translateY(-50%); }
.stat-4 { bottom: 14%; right: 0; }

.laptop-mock {
  margin: 0 auto;
  max-width: 100%;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #334155 0%, #1e293b 100%);
  border-radius: 14px 14px 0 0;
  padding: 10px 10px 0;
  box-shadow: 0 24px 48px rgba(15, 39, 68, 0.18), 0 8px 16px rgba(0, 0, 0, 0.08);
}

.laptop-screen {
  background: #e8eef5;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
}

.mock-sidebar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 22%;
  background: linear-gradient(180deg, #0f2744 0%, #1a365d 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 8px;
  gap: 10px;
  z-index: 2;
}

.mock-sidebar-logo {
  width: 28px;
  height: 28px;
  background: var(--orange);
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-size: 0.55rem;
  font-weight: 800;
  color: #fff;
}

.mock-sidebar-line {
  width: 70%;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}

.mock-sidebar-line.short {
  width: 45%;
  align-self: flex-start;
  margin-left: 15%;
}

.mock-map {
  position: absolute;
  left: 22%;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
  background: #d4e8f7;
}

.hero-map-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.map-route-line {
  stroke-dasharray: 10 8;
  animation: routeDash 24s linear infinite;
}

@keyframes routeDash {
  to { stroke-dashoffset: -180; }
}

.mock-map-badge {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 39, 68, 0.88);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 3;
  letter-spacing: 0.02em;
}

.laptop-base {
  height: 12px;
  background: #cbd5e1;
  border-radius: 0 0 8px 8px;
  margin: 0 auto;
  width: 108%;
  margin-left: -4%;
}

/* Sections */
section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.section-title h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--navy);
  margin: 0 0 0.5rem;
}

.section-title h2 em {
  font-style: normal;
  color: var(--orange);
}

.section-title p {
  color: var(--muted);
  margin: 0;
}

.bg-soft {
  background: var(--bg-soft);
}

/* Cards */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--navy);
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.step {
  padding: 1rem;
}

.step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  box-shadow: var(--shadow);
}

.step h3 {
  font-size: 0.95rem;
  color: var(--navy);
  margin: 0 0 0.35rem;
}

.step p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.feature-card .card-icon {
  margin: 0 0 0.85rem;
  width: 48px;
  height: 48px;
  font-size: 1.25rem;
}

.feature-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: var(--navy);
}

.feature-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

/* Mobile section */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.phones {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: flex-end;
}

.phone {
  width: 100px;
  background: var(--navy-dark);
  border-radius: 18px;
  padding: 8px 6px;
  box-shadow: var(--shadow);
}

.phone.mid {
  width: 115px;
  transform: translateY(-12px);
}

.phone-screen {
  aspect-ratio: 9/16;
  border-radius: 12px;
  background: linear-gradient(180deg, #b8d4f0, #dce8f5);
  position: relative;
  overflow: hidden;
}

.phone-screen.list {
  background: #fff;
}

.phone-screen.list::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 10%;
  right: 10%;
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  box-shadow: 0 14px 0 #e2e8f0, 0 28px 0 #e2e8f0, 0 42px 0 #e2e8f0;
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.bullet-list li {
  padding: 0.35rem 0 0.35rem 1.25rem;
  position: relative;
  color: var(--muted);
}

.bullet-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.badge {
  background: var(--navy);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Dashboard */
.dashboard-wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.module-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.module-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text);
}

.dash-mock {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.dash-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  padding: 1rem;
  background: var(--bg-soft);
}

.dash-stat {
  background: #fff;
  border-radius: 8px;
  padding: 0.65rem;
  font-size: 0.75rem;
  border: 1px solid var(--border);
}

.dash-stat strong {
  display: block;
  font-size: 1rem;
  color: var(--navy);
}

.dash-charts {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
  padding: 1rem;
}

.chart-box {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
  min-height: 140px;
  font-size: 0.8rem;
  color: var(--muted);
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
  margin-top: 1rem;
}

.bar-chart span {
  flex: 1;
  background: var(--blue);
  border-radius: 4px 4px 0 0;
  opacity: 0.85;
}

.bar-chart span:nth-child(1) { height: 40%; }
.bar-chart span:nth-child(2) { height: 65%; }
.bar-chart span:nth-child(3) { height: 50%; }
.bar-chart span:nth-child(4) { height: 90%; }
.bar-chart span:nth-child(5) { height: 70%; }

.donut {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 12px solid var(--orange);
  border-right-color: var(--blue);
  border-bottom-color: #94a3b8;
  margin: 1rem auto;
}

/* White label */
.brand-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto 1.5rem;
}

.browser-frame {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.browser-bar {
  background: #e2e8f0;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.browser-body {
  padding: 1.25rem;
  min-height: 120px;
  text-align: center;
}

.browser-body.orange-theme {
  background: linear-gradient(180deg, #fff5ee, #fff);
}

.browser-body h4 {
  margin: 0 0 0.25rem;
  color: var(--navy);
}

.compare-arrow {
  font-size: 2rem;
  color: var(--orange);
}

.text-center {
  text-align: center;
}

/* Stats bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-item {
  text-align: center;
  padding: 1.25rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.stat-item .icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.stat-item strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
}

.stat-item span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* CTA */
.cta-band {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  margin: 2rem 0;
}

.cta-band h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: #cbd5e1;
  padding: 3rem 0 1.5rem;
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr) 1.2fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-grid h4 {
  color: #fff;
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li {
  margin-bottom: 0.4rem;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-brand p {
  margin: 0.75rem 0 1rem;
  max-width: 280px;
  line-height: 1.5;
}

.social {
  display: flex;
  gap: 0.5rem;
}

.social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
}

.powered {
  text-align: right;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 1rem;
}

.powered strong {
  display: block;
  color: var(--orange);
  font-size: 0.95rem;
  margin-top: 0.35rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: #94a3b8;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid,
  .split,
  .dashboard-wrap,
  .brand-compare {
    grid-template-columns: 1fr;
  }

  .cards-3,
  .features-grid,
  .steps,
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .compare-arrow {
    text-align: center;
    transform: rotate(90deg);
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .header-actions .btn-ghost {
    display: none;
  }
}

@media (max-width: 600px) {
  .cards-3,
  .features-grid,
  .steps,
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .dash-top {
    grid-template-columns: 1fr 1fr;
  }

  .dash-charts {
    grid-template-columns: 1fr;
  }

  .stat-float {
    display: none;
  }
}
