*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --top-header-text: #ffffff;
  --bottom-header: #ffffff;
  --bottom-header-text: #1f1f1f;
  --footer-bg: #000;
  --footer-text: #ffffff;
  --header-bg: #ffffff;
  --active-menu: #08b4d9;
  --active-bg: #08b4d9;
  --active-bg-text: #ffffff;
  --btn-bg: #08b4d9;
  --btn-bg--hover: #0099ba;
  --btn-two-bg: #ffffff;
  --color: #ffffff;
  --color-two: #333333;
  --other-bg: #0a1023;
  --other-bg-light: rgb(247, 249, 250);
  --hover: #d15613;
  --all-text-main: #06030c;
  --all-text-sub: #697080;
  --all-text-third: #62a916;
  --title-text: #4b4b4a;
  --input_text: 000;
  --label-color: #757575;
  --border-color: rgb(216, 220, 222);
  --table-head: #e7e7e7;
  --common-tag-bg: #ffffff;
  --common-tag-text: #333333;
  --box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
  --font-family: "Inter", sans-serif;
  --footer-text-muted: #a8a8a8;
  /* Semantic aliases */
  --bg: #0a1023;
  --bg2: #0d1530;
  --bg3: #111e3a;
  --surface: #132042;
  --surface2: #1a2d56;
  --surface-hover: #1e3464;
  --neon: #08b4d9;
  --neon-dim: #0099ba;
  --neon-glow: rgba(8, 180, 217, 0.18);
  --neon-glow2: rgba(8, 180, 217, 0.07);
  --accent2: #62a916;
  --accent3: #d15613;
  --amber: #f59e0b;
  --red: #ef4444;
  --purple: #8b5cf6;
  --cyan: #06b6d4;
  --green: #62a916;
  --text: #f0f4ff;
  --text2: #8fa4c8;
  --text3: #4d6080;
  --border: #1e3464;
  --border2: #2a4272;
  --font-display: "Sora", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --font-body: "Inter", sans-serif;
  --max-w: 1200px;
  --radius: 12px;
  --radius-lg: 20px;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
/* Custom Icons puts here iconstrip*/
.icon-sm,
.icon-md {
  width: 50px;
  height: 36px;
}
.icon-custom {
  display: inline-block;
  background-image: url("/images/Tour-Operation-Icons.svg"); /* Ensure filename is correct */
  background-repeat: no-repeat;
  flex-shrink: 0;
  vertical-align: middle;
}
.ic-warn {
  background-position: 2px -59px;
  transform: scale(1.7);
}
.ic-office {
  background-position: -704px -3px;
}
.ic-suv {
  background-position: -280px -60px;
}
/* GRID BG TEXTURE */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(8, 180, 217, 0.04) 1px,
    transparent 0
  );
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  font-family: var(--font-body);
  letter-spacing: 0.1px;
  white-space: nowrap;
}
.btn-primary {
  background: var(--btn-bg);
  color: var(--active-bg-text);
  box-shadow: 0 0 20px var(--neon-glow);
}
.btn-primary:hover {
  background: var(--btn-bg--hover);
  box-shadow: 0 0 32px rgba(8, 180, 217, 0.35);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border2);
}
.btn-ghost:hover {
  border-color: var(--neon);
  color: var(--neon);
}
.btn-lg {
  padding: 14px 32px;
  font-size: 15px;
  border-radius: 10px;
}
/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: all 0.35s;
}
.nav.scrolled {
  background: rgba(10, 16, 35, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(8, 180, 217, 0.1);
  border: 1.5px solid rgba(8, 180, 217, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 13px;
  background: var(--neon-glow);
  filter: blur(6px);
  z-index: -1;
}
.brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.3px;
}
.brand-text em {
  font-style: normal;
  color: var(--neon);
}
.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
  transition: color 0.2s;
  padding: 6px 10px;
  border-radius: 6px;
}
.nav-links a:hover {
  color: var(--neon);
  background: var(--neon-glow2);
}
.nav-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}
/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  border: 1.5px solid var(--border2);
  background: transparent;
  transition: border-color 0.2s;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text2);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* Mobile drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 16, 35, 0.98);
  backdrop-filter: blur(24px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav.open {
  transform: translateY(0);
  display: flex;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text2);
  padding: 12px 24px;
  border-radius: 10px;
  transition: all 0.2s;
  text-align: center;
}
.mobile-nav a:hover {
  color: var(--neon);
  background: var(--neon-glow2);
}
.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  width: 100%;
  max-width: 260px;
  align-items: stretch;
}
.mobile-nav-actions .btn {
  justify-content: center;
}
/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(
    ellipse at center,
    rgba(8, 180, 217, 0.08) 0%,
    rgba(8, 180, 217, 0.03) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}
.hero-glow2 {
  position: absolute;
  bottom: 0;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(98, 169, 22, 0.05), transparent 60%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(8, 180, 217, 0.07);
  border: 1px solid rgba(8, 180, 217, 0.2);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--neon);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.hero-badge .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon);
  animation: blink 2s infinite;
  flex-shrink: 0;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 66px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.hero h1 .accent {
  color: var(--neon);
}
.hero-desc {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text2);
  max-width: 580px;
  margin-bottom: 36px;
}
.hero-desc strong {
  color: var(--text);
  font-weight: 600;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
}
.metric {
  padding: 18px 16px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.metric:last-child {
  border-right: none;
}
.metric-val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--neon);
  line-height: 1;
}
.metric-label {
  font-size: 11px;
  color: var(--text2);
  margin-top: 6px;
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
/* Hero right panel */
.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mock-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  animation: floatCard 6s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}
.mock-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon), var(--accent2));
}
.mock-card:nth-child(2) {
  animation-delay: -2s;
}
.mock-card:nth-child(3) {
  animation-delay: -4s;
}
@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 8px;
}
.mock-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mock-badge {
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.badge-live {
  background: rgba(8, 180, 217, 0.1);
  color: var(--neon);
  border: 1px solid rgba(8, 180, 217, 0.2);
}
.badge-active {
  background: rgba(98, 169, 22, 0.1);
  color: var(--green);
  border: 1px solid rgba(98, 169, 22, 0.2);
}
.badge-alert {
  background: rgba(239, 68, 68, 0.1);
  color: var(--red);
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.mock-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text2);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  gap: 8px;
}
.mock-row:last-child {
  border: none;
}
.mock-row span:last-child {
  color: var(--text);
  text-align: right;
}
.mock-row .neon-text {
  color: var(--neon);
}
.mock-row .red-text {
  color: var(--red);
}
.mock-row .amber-text {
  color: var(--amber);
}
/* ===== SECTION COMMON ===== */
.section {
  padding: 90px 0;
  position: relative;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0px;
  padding: 1px 10px;
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.tag-cyan {
  background: rgba(8, 180, 217, 0.07);
  color: var(--neon);
  border: 1px solid rgba(8, 180, 217, 0.2);
}
.tag-green {
  background: rgba(98, 169, 22, 0.07);
  color: var(--green);
  border: 1px solid rgba(98, 169, 22, 0.2);
}
.tag-amber {
  background: rgba(245, 158, 11, 0.07);
  color: var(--amber);
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.tag-purple {
  background: rgba(139, 92, 246, 0.07);
  color: var(--purple);
  border: 1px solid rgba(139, 92, 246, 0.2);
}
.tag-red {
  background: rgba(239, 68, 68, 0.07);
  color: var(--red);
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.tag-blue {
  background: rgba(8, 180, 217, 0.07);
  color: var(--cyan);
  border: 1px solid rgba(8, 180, 217, 0.2);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.2px;
  margin-bottom: 14px;
  color: var(--text);
}
.section-desc {
  font-size: 16px;
  color: var(--text2);
  max-width: 580px;
  line-height: 1.75;
}
.section-header {
  margin-bottom: 48px;
}
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}
/* ===== PROBLEM SECTION ===== */
.problem-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
  align-items: start;
}
.pain-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pain-item {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: all 0.3s;
  align-items: flex-start;
}
.pain-item:hover {
  border-color: var(--red);
  background: rgba(239, 68, 68, 0.03);
}
.pain-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 92, 92, 0.08);
}
.pain-item h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}
.pain-item p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
}
.solution-box {
  background: var(--surface);
  border: 1.5px solid var(--neon);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.solution-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at top right,
    rgba(8, 180, 217, 0.08),
    transparent 60%
  );
  pointer-events: none;
}
.solution-box h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
  color: var(--neon);
  position: relative;
}
.solution-box p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.8;
  position: relative;
}
.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  position: relative;
}
.s-tag {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-mono);
  letter-spacing: 0.3px;
}
/* ===== FEATURES ===== */
.feature-section {
  border-top: 1px solid var(--border);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.f-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.f-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon), var(--accent2));
  opacity: 0;
  transition: opacity 0.35s;
}
.f-card:hover {
  border-color: rgba(8, 180, 217, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.f-card:hover::after {
  opacity: 1;
}
.f-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.f-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.f-card p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
}
.f-card .f-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.f-tag {
  padding: 3px 10px;
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
/* ===== DRIVER SECTION ===== */
.driver-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.driver-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.driver-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}
.driver-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.driver-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.driver-card-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  color: var(--text);
}
.driver-card-sub {
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
  margin-top: 2px;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-row {
  padding: 12px;
  border-radius: 8px;
  background: var(--bg2);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.feature-row:hover {
  border-color: var(--border2);
}
.feature-row-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--text);
}
.feature-row-desc {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.5;
}
/* ===== TIMELINE ===== */
.journey-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.timeline {
  position: relative;
  margin-top: 52px;
  padding-left: 36px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--neon),
    var(--accent2),
    var(--purple),
    var(--amber),
    var(--neon)
  );
}
.tl-item {
  position: relative;
  padding: 0 0 44px 32px;
}
.tl-item:last-child {
  padding-bottom: 0;
}
.tl-dot {
  position: absolute;
  left: -36px;
  top: 2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  border: 2px solid;
  z-index: 1;
  font-family: var(--font-mono);
}
.tl-item h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--text);
}
.tl-time {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text3);
  font-weight: 400;
  letter-spacing: 0.5px;
}
.tl-item p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  max-width: 620px;
}
.tl-notif {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  margin-top: 10px;
  font-family: var(--font-body);
}
/* ===== VEHICLE ===== */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
}
.v-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.v-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.v-card:hover {
  border-color: rgba(8, 180, 217, 0.3);
  background: rgba(8, 180, 217, 0.03);
}
.v-card:hover::before {
  opacity: 1;
}
.v-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(8, 180, 217, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 28px;
}
.v-card h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}
.v-cap {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--neon);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.v-card p {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.55;
}
.vehicle-ai-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
  margin-top: 20px;
  display: flex;
  gap: 18px;
  align-items: center;
}
.vehicle-ai-icon {
  font-size: 32px;
  flex-shrink: 0;
}
.vehicle-ai-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}
.vehicle-ai-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
}
/* ===== COMPLIANCE ===== */
.compliance-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 40px;
}
.c-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s;
}
.c-card:hover {
  border-color: var(--amber);
  background: rgba(245, 158, 11, 0.02);
}
.c-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  background: rgba(245, 158, 11, 0.08);
}
.c-card h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.c-card p {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.6;
}
/* ===== WHATSAPP ===== */
.wa-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.wa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
  align-items: start;
}
.wa-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.wa-feature {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.wa-feature:hover {
  border-color: rgba(8, 180, 217, 0.3);
}
.wa-feature h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.wa-feature p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
}
/* Chat Mock */
.chat-mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  max-width: 380px;
  margin: 0 auto;
  position: sticky;
  top: 100px;
}
.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(8, 180, 217, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  border: 1px solid rgba(8, 180, 217, 0.2);
}
.chat-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.chat-status {
  font-size: 10px;
  color: var(--neon);
  font-family: var(--font-mono);
  margin-top: 1px;
}
.chat-msgs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat-msg {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.6;
  max-width: 88%;
}
.chat-msg.from {
  background: rgba(8, 180, 217, 0.1);
  border: 1px solid rgba(8, 180, 217, 0.15);
  color: var(--text);
  border-radius: 10px 10px 10px 3px;
}
.chat-msg.to {
  background: var(--surface2);
  border: 1px solid var(--border2);
  color: var(--text2);
  border-radius: 10px 10px 3px 10px;
  align-self: flex-end;
}
.chat-time {
  font-size: 10px;
  color: var(--text3);
  margin-top: 4px;
  display: block;
  text-align: right;
}
/* ===== FAQ ===== */
.faq-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq.open {
  border-color: var(--neon);
}
.faq-q {
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  gap: 14px;
  transition: color 0.2s;
  color: var(--text);
}
.faq-q:hover {
  color: var(--neon);
}
.faq-toggle {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text3);
  transition: all 0.3s;
}
.faq.open .faq-toggle {
  background: var(--neon);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  padding: 0 22px 18px;
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.8;
  display: none;
}
.faq.open .faq-a {
  display: block;
}
.faq-a a {
  color: var(--neon);
  text-decoration: underline;
}
/* ===== CTA ===== */
.cta-section {
  text-align: center;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(8, 180, 217, 0.07),
    transparent 65%
  );
}
.wa-grid.reveal.visible p {
    color: var(--text2);
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
  position: relative;
}
.cta-section p {
  font-size: 16px;
  color: var(--text2);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.cta-note {
  font-size: 12px;
  color: var(--text2);
  margin-top: 18px;
  font-family: var(--font-mono);
  letter-spacing: 0.3px;
}
/* ===== FOOTER ===== */
.footer {
  background: var(--footer-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--footer-text-muted);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 280px;
}
.footer-brand-note {
  margin-top: 10px;
  font-size: 11px;
  color: rgba(168, 168, 168, 0.6);
  font-family: var(--font-mono);
  line-height: 1.6;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  color: var(--footer-text);
  text-transform: uppercase;
}
.footer-col a {
  display: block;
  font-size: 12px;
  color: var(--footer-text-muted);
  padding: 3px 0;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--neon);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--footer-text-muted);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.3s;
}
.wa-float:hover {
  transform: scale(1.1);
}
/* ===== SCROLL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ========================== icon strip ==================================== */
.ic-problem {
  background-position: 3px -58px;
}
.ic-driver {
  background-position: 1px -6px;
}
.ic-visibility {
  background-position: -43px -5px;
}
.ic-vehicle {
  background-position: -86px -6px;
}
.ic-compliance {
  background-position: -126px -6px;
}
.ic-supplier {
  background-position: -167px -6px;
}

/* === */

.icf-feature {
  background-position: -20px -80px;
}
.icf-ai {
  background-position: -229px -4px;
}
.icf-driver {
  background-position: -279px -4px;
}
.icf-supplier {
  background-position: -327px -4px;
}
.icf-vehicle {
  background-position: -380px -4px;
}
.icf-notification {
  background-position: -444px -4px;
}
.icf-safety {
  background-position: -500px -4px;
}
.icf-rating {
  background-position: -550px -4px;
}
.icf-sop {
  background-position: -600px -4px;
}
.icf-flow {
  background-position: -651px -4px;
}
.icf-dashboard {
  background-position: -700px -4px;
}
.icf-chat {
  background-position: -758px -4px;
}
.icf-cost {
  background-position: -48px -57px;
}
/* ====== */
.icv-sedan {
  background-position: -189px -62px;
  width: 69px;
}
.icv-suv {
  background-position: -278px -66px;
}
.icv-tempo {
  background-position: -344px -63px;
}
.icv-mini-coach {
  background-position: -417px -63px;
}
.icv-coach {
  background-position: -492px -63px;
}
.icv-luxury {
  background-position: -569px -63px;
}
/* ===== */

.icc-license {
  background-position: -704px -68px;
}
.icc-insurance {
  background-position: -753px -68px;
}
.icc-incident {
  background-position: -2px -117px;
}
.icc-checklist {
  background-position: -50px -117px;
}
.icc-medical {
  background-position: -93px -117px;
}
.icc-doc {
  background-position: -137px -117px;
}
.icc-report {
  background-position: -191px -114px;
}
.icc-block {
  background-position: -242px -114px;
}
.wa-msgs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}
.wa-msg {
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.6;
    max-width: 320px;
    position: relative;
    animation: slideIn .6s ease-out both;
}
.wa-msg:nth-child(4) {
    animation-delay: .6s;
}
.wa-msg.guest {
    background: var(--surface2);
    border: 1px solid var(--border);
    color: var(--text2);
    border-radius: 12px 12px 4px 12px;
    align-self: flex-end;
}
.wa-msg.system {
    background: #1A3A2A;
    border: 1px solid rgba(0, 255, 148, 0.15);
    color: var(--neon);
    border-radius: 12px 12px 12px 4px;
    align-self: flex-start;
}
.wa-msg .wa-time {
    font-size: 10px;
    color: var(--text3);
    margin-top: 6px;
    display: block;
    text-align: right;
}
.driver-section {
  margin-top: 48px;
  padding: 0 16px;
}

/* GRID */
.driver-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* CARD */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}

/* HEADER */
.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.icon-green {
  background: rgba(0, 255, 148, 0.08);
}

.icon-blue {
  background: rgba(77, 158, 255, 0.08);
}

/* TEXT */
.card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
}

.card-subtitle {
  font-size: 12px;
  font-family: var(--font-mono);
}

.green {
  color: var(--neon);
}

.blue {
  color: var(--blue);
}

/* LIST */
.card-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-item {
  padding: 12px;
  border-radius: 8px;
  background: var(--bg2);
  border: 1px solid var(--border);
}

.item-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}

.item-text {
  font-size: 12px;
  color: var(--text2);
}

/* ===== RESPONSIVE ===== */
/* 1024px — tablet landscape */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-panel {
    display: none;
  }
  .hero-metrics {
    grid-template-columns: repeat(4, 1fr);
  }
  .driver-grid {
    grid-template-columns: 1fr;
  }
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .driver-grid {
    grid-template-columns: 1fr 1fr;
  }
  .compliance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wa-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .vehicle-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* 768px — tablet portrait */
@media (max-width: 768px) {
  :root {
    --max-w: 100%;
  }
  .section {
    padding: 64px 0;
  }
  .cta-section h2 {
    font-size: clamp(27px, 5vw, 54px);
}
  .hero {
    padding: 100px 0 60px;
  }
  .nav-links,
  .nav-actions {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: clamp(32px, 7vw, 52px);
    letter-spacing: -1.5px;
  }
  .hero-desc {
    font-size: 16px;
  }
  .hero-btns {
    gap: 10px;
  }
  .hero-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .metric {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 14px;
  }
  .metric:nth-child(odd) {
    border-right: 1px solid var(--border);
  }
  .metric:nth-child(3),
  .metric:nth-child(4) {
    border-bottom: none;
  }
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .driver-grid {
    grid-template-columns: 1fr;
  }
  .vehicle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .compliance-grid {
    grid-template-columns: 1fr 1fr;
  }
  .wa-grid {
    grid-template-columns: 1fr;
  }
  .chat-mock {
    position: static;
    margin-top: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .cta-btns .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .btn-lg {
    padding: 13px 24px;
    font-size: 14px;
  }
  .vehicle-ai-box {
    flex-direction: column;
    text-align: center;
  }
  .card {
    padding: 20px;
  }

  .card-title {
    font-size: 18px;
  }

  .icon {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
}
/* 480px — mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero h1 {
    font-size: clamp(28px, 8vw, 42px);
  }
  .section-title {
    font-size: clamp(24px, 6vw, 36px);
  }
  .hero-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .vehicle-grid {
    grid-template-columns: 1fr;
  }
  .compliance-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .driver-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .mock-card {
    font-size: 12px;
  }
  .hero-btns {
    flex-direction: column;
  }
  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }
  .nav-inner {
    padding: 0 16px;
  }
}
