/* ===================================================
   SPOTNRIDES — BOLT CLONE LANDING PAGE
   Font: Montserrat | Color System: Blue/White/Green
   =================================================== */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Montserrat', sans-serif;
  background: #ffffff;
  color: #0f172a;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---------- VARIABLES ---------- */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --secondary: #3b82f6;
  --bg: #ffffff;
  --bg-light: #f8fafc;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --success: #22c55e;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 16px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 20px 40px rgba(0,0,0,.1), 0 8px 16px rgba(0,0,0,.05);
  --shadow-xl: 0 40px 80px rgba(0,0,0,.12);
}

/* ---------- UTILITIES ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .22s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(37,99,235,.35); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--primary); background: #eff6ff; }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: transparent;
}
.btn-ghost:hover { background: var(--bg-light); }

.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.btn-white:hover { background: #f0f9ff; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,0,0,.15); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: 10px; }



/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* ---------- HEADER (responsive overrides) ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #010221;
  z-index: 1000;
  transition: box-shadow .25s ease;
}
.header.scrolled {
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
}

/* push page content below the fixed header */
body { padding-top: 68px; }

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
  position: relative;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 100%;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
  margin-left: auto;
}

.nav-links > li { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  transition: all .2s;
}
.nav-link:hover,
.dropdown-toggle:hover { color: var(--primary-light); background: rgba(255,255,255,.06); }

.caret { font-size: 20px; transition: transform .2s; }

/* ---- Dropdowns (desktop = hover, mobile = click) ---- */
.dropdown-menu {
  list-style: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width:max-content;
  max-width: calc(100vw - 32px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .2s ease;
  z-index: 1100;
}
.dropdown-menu li a {
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
}
.dropdown-menu li a:hover { background: var(--bg-light); color: var(--primary); }

@media (min-width: 901px) {
  .has-dropdown:hover .dropdown-menu,
  .has-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .has-dropdown:hover .caret,
  .has-dropdown.open .caret { transform: rotate(180deg); }
  .mobile-only-action { display: none; }
}

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 8px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}
.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); }

/* ---- Mobile / tablet drawer ---- */
@media (max-width: 900px) {
  .nav-actions { display: none !important; }
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    position: fixed;
    top: 68px; left: 0; right: 0;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    background: #0f172a;
    padding: 12px 16px 24px;
    box-shadow: var(--shadow-lg);
    margin-left: 0;
    z-index: 999;
  }
  .nav-links.open { display: flex; }

  .nav-link { padding: 12px 10px; justify-content: space-between; }

  .dropdown-menu {
    position: static;
    display: none;
    opacity: 1; visibility: visible; transform: none;
    background: rgba(255,255,255,.04);
    border: none;
    box-shadow: none;
    margin: 0 0 6px;
    padding: 4px 0 4px 14px;
    max-width: 100%;
  }
  .dropdown-menu li a { color: rgba(255,255,255,.75); }
  .dropdown-menu li a:hover { background: rgba(255,255,255,.06); color: #fff; }
  .has-dropdown.open .dropdown-menu { display: block; }
  .has-dropdown.open .caret { transform: rotate(180deg); }

  .mobile-only-action { display: block; margin-top: 10px; }
  .mobile-only-action .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .nav-logo img { height: 100%; max-width: 130px; }
}

@media (max-width: 360px) {
  .nav { gap: 12px; }
  .nav-logo img { height: 28px; max-width: 110px; }
}




/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 10vh;
  display: flex;
  align-items: center;
  padding: 50px 0 20px;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,.12), transparent 70%);
  top: -100px; left: -100px;
}
.hero-glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(34,197,94,.08), transparent 70%);
  bottom: 0; right: 200px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr; 

   /* grid-template-columns: 2fr 1fr; */
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #eff6ff;
  border: 1px solid rgba(37,99,235,.2);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: .02em;
}

.badge-pulse {
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.4); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.hero-title {
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.hero-title em { font-style: normal; color: var(--primary); }
.highlight-7 {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--success));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 0;
}

.stat-item {
  flex: 1;
  min-width: 100px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 26px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.stat-suffix { font-size: 18px; font-weight: 800; color: var(--primary); }
.stat-label { font-size: 11px; color: var(--muted); font-weight: 600; margin-top: 4px; letter-spacing: .04em; text-transform: uppercase; }

.stat-sep { width: 1px; background: var(--border); align-self: stretch; }

/* --- PHONE MOCKUP --- */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.phone-wrap {
  position: relative;
  width: 260px;
  z-index: 2;
}

.phone-frame {
  width: 260px;
  background: #0f172a;
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,.05) inset;
  position: relative;
}

.phone-notch {
  width: 80px; height: 22px;
  background: #0f172a;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 8px;
  position: relative;
  z-index: 2;
}

.phone-screen {
  background: #f8fafc;
  border-radius: 26px;
  overflow: hidden;
  min-height: 480px;
}

.ps-topbar {
  background: #0f172a;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
}
.ps-icons { display: flex; gap: 8px; align-items: center; }

.ps-map {
  height: 200px;
  background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 50%, #ede9fe 100%);
  position: relative;
  overflow: hidden;
}

.map-roads {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148,163,184,.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,.3) 1px, transparent 1px);
  background-size: 24px 24px;
}

.map-pin-green { position: absolute; left: 28%; top: 35%; }
.map-pin-blue { position: absolute; right: 25%; bottom: 30%; }

.map-car {
  position: absolute;
  left: 50%; top: 55%;
  transform: translate(-50%,-50%);
  font-size: 20px;
  animation: driveCar 4s ease-in-out infinite alternate;
}

@keyframes driveCar {
  0% { left: 30%; top: 40%; }
  100% { left: 65%; top: 60%; }
}

.map-route {
  position: absolute;
  left: 28%; top: 40%;
  width: 45%; height: 25%;
  border: 2px dashed rgba(37,99,235,.4);
  border-radius: 0 50% 0 0;
}

.ps-booking {
  background: #fff;
  padding: 14px;
}

.psb-title { font-size: 14px; font-weight: 800; color: var(--text); margin-bottom: 10px; }

.psb-locs {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
}
.psb-loc {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}
.loc-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.green-dot { background: var(--success); }
.blue-dot { background: var(--primary); }
.psb-divider { height: 1px; background: var(--border); margin: 0 10px; }

.psb-vehicles {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}
.psb-v {
  flex: 1;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: 7px;
  padding: 7px 8px;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
}
.psb-v span { display: block; color: var(--muted); font-size: 9px; margin-top: 2px; }
.psb-v.active { border-color: var(--primary); background: #eff6ff; color: var(--primary); }

.psb-fare {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 10px;
}
.psb-fare strong { color: var(--text); font-weight: 700; }

.psb-btn {
  width: 100%;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
}
.psb-btn:hover { background: var(--primary-dark); }

.phone-shadow {
  width: 80%;
  height: 20px;
  background: rgba(0,0,0,.25);
  filter: blur(14px);
  border-radius: 50%;
  margin: 8px auto 0;
}

/* --- FLOATING CARDS --- */
.float-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  animation: floatCard 5s ease-in-out infinite;
}
.float-card:nth-child(2) { animation-delay: 1.5s; }
.float-card:nth-child(3) { animation-delay: 3s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.fc-ico { font-size: 22px; }
.fc-val { font-size: 16px; font-weight: 800; color: var(--text); line-height: 1; }
.fc-lbl { font-size: 10px; color: var(--muted); font-weight: 600; margin-top: 2px; }

.fc-drivers { top: 10%; left: -50px; }
.fc-rating { bottom: 35%; left: -60px; }
.fc-revenue { top: 20%; right: -60px; }

/* ---------- TRUST SECTION ---------- */
.trust-section {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
  text-align: center;
}

.trust-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 16px;
}

.trust-regions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 24px;
}
.trust-regions span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: all .2s;
}
.trust-badge:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ---------- SECTION BASE ---------- */
.section { padding: 40px 0; }
.light-section { background: var(--bg-light); }

.sec-header { text-align: center; max-width: 680px; margin: 0 auto 24px; }
.sec-label {
  display: inline-block;
  background: #eff6ff;
  color: var(--primary);
  border: 1px solid rgba(37,99,235,.2);
  border-radius: 100px;
  padding: 4px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
}
.ai-lbl { background: linear-gradient(135deg, #f0f9ff, #eff6ff); }

.sec-title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.sec-desc-center { color: var(--muted); font-size: 16px; line-height: 1.75; }

/* ---------- WHAT IS ---------- */
.what-is-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.wi-content h2 { text-align: left; margin-bottom: 16px; }
.wi-content { text-align: left; }
.wi-content .sec-label { display: inline-block; text-align: left; }

.wi-content p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: 15px;
}

.wi-highlights { margin: 24px 0; }
.wi-hl {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.wi-hl:last-child { border-bottom: none; }
.check {
  width: 22px; height: 22px;
  background: rgba(34,197,94,.15);
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

/* --- DASHBOARD CARD --- */
.dashboard-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.dc-header {
  background: #0f172a;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.dc-dots { display: flex; gap: 6px; }
.dc-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.dc-dots span:nth-child(1) { background: #ff5f57; }
.dc-dots span:nth-child(2) { background: #ffbd2e; }
.dc-dots span:nth-child(3) { background: #28ca42; }
.dc-title { color: rgba(255,255,255,.6); font-size: 12px; font-weight: 600; }

.dc-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border);
  border-bottom: 1px solid var(--border);
}
.dc-stat {
  background: #fff;
  padding: 14px;
}
.dc-sl { font-size: 10px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; }
.dc-sv { font-size: 18px; font-weight: 800; color: var(--text); }
.dc-sc { font-size: 10px; font-weight: 700; margin-top: 2px; }
.dc-sc.up { color: var(--success); }

.dc-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 80px;
  padding: 12px 16px 0;
  border-bottom: 1px solid var(--border);
}
.dc-bar {
  flex: 1;
  background: #e0e7ff;
  border-radius: 4px 4px 0 0;
  transition: all .3s;
}
.dc-bar.active { background: var(--primary); }

.dc-map {
  padding: 14px;
  height: 100px;
  background: linear-gradient(135deg, #f0f9ff, #eff6ff);
  position: relative;
}
.dcm-dot {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  border: 2px solid #fff;
}
.dcm-dot.active {
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(34,197,94,.2);
  animation: pulse 2s infinite;
}
.dcm-label {
  position: absolute;
  bottom: 10px; left: 14px;
  font-size: 10px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .05em;
}


/* ---------- REVENUE ---------- */
.revenue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.full-width-card { grid-column: 1 / -1; }

.rev-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all .3s;
  position: relative;
}
.rev-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: rgba(37,99,235,.2); }

.primary-rev { background: linear-gradient(135deg, #1e3a8a, #2563eb); color: #fff; }
.primary-rev h3, .primary-rev p { color: #fff; }
.primary-rev h3 { color: #fff; }
.primary-rev p { color: rgba(255,255,255,.8); }
.primary-rev .rev-icon { color: rgba(255,255,255,.8); }
.primary-rev:hover { background: linear-gradient(135deg, #1e40af, #2563eb); }

.rev-badge {
  display: inline-block;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  border-radius: 100px;
  padding: 3px 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
}

.rev-icon {
  width: 48px; height: 48px;
  background: #eff6ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 14px;
}

.rev-card h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.rev-card p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }

.full-width-card { display: flex; gap: 20px; align-items: flex-start; }
.full-width-card .rev-icon { flex-shrink: 0; }

/* ---------- BUSINESS MODELS ---------- */
.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.biz-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all .3s;
}
.biz-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--primary); }

.biz-ico { font-size: 36px; margin-bottom: 14px; }
.biz-card h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.biz-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ---------- CTA BANDS ---------- */
.cta-band { padding: 80px 0; }

.cta-blue { background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%); }
.cta-dark { background: #0f172a; }

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-text h2 { font-size: clamp(20px, 2.5vw, 30px); font-weight: 800; color: #fff; margin-bottom: 10px; }
.cta-text p { color: rgb(255, 255, 255); font-size: 15px; line-height: 1.6; max-width: 560px; }

/* ---------- AI FEATURES ---------- */
.ai-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ai-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.ai-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--success));
  opacity: 0;
  transition: opacity .3s;
}
.ai-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(37,99,235,.2); }
.ai-card:hover::before { opacity: 1; }

.ai-ico {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 14px;
}
.ai-card h3 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.ai-card p { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.ai-tag {
  display: inline-block;
  background: #eff6ff;
  color: var(--primary);
  border: 1px solid rgba(37,99,235,.15);
  border-radius: 100px;
  padding: 2px 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ---------- CAROUSEL ---------- */



/* ── Grid ── */
.Add-On-Features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0px auto;
  padding: 0 20px 40px;
}

/* Tablet */
@media (max-width: 1024px) {
  .Add-On-Features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

/* Mobile */
@media (max-width: 560px) {
  .Add-On-Features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0 14px 30px;
  }
}

/* ── Card ── */
.Add-On-features-card {
  background: #ffffff;
  border: 1.5px solid #e8edf2;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: 0.25s ease;
}

/* Hover */
.Add-On-features-card:hover {
  box-shadow: 0 8px 28px rgba(0,170,91,0.12);
  transform: translateY(-4px);
  border-color: #1835d6;
}

/* ── Icon ── */
.Add-On-icon-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Add-On-icon-wrap img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* ── Text ── */
.Add-On-features-card-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1e2b38;
  line-height: 1.3;
  font-family: Montserrat, sans-serif;
}

/* Optional description */
.Add-On-features-card-body p {
  font-size: 13px;
  color: #555;
  margin-top: 4px;
  line-height: 1.5;
}

/* ── Mobile Fine Tune ── */
@media (max-width: 480px) {

  .Add-On-features-card {
    padding: 14px;
    gap: 12px;
  }

  .Add-On-icon-wrap {
    width: 46px;
    height: 46px;
  }

  .Add-On-icon-wrap img {
    width: 22px;
    height: 22px;
  }

  .Add-On-features-card-body h3 {
    font-size: 14px;
  }

}


/* ---------- GROWTH ---------- */
.growth-grid {
  display: grid;
  /* grid-template-columns: repeat(3, 1fr); */
  gap: 24px;
}

.grow-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 20px;
  position: relative;
  transition: all .3s;
}
.grow-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.grow-num {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 48px;
  font-weight: 900;
  color: rgba(37,99,235,.06);
  line-height: 1;
}

.grow-ico {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 18px;
}

.grow-card h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.grow-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ---------- WHY CHOOSE US ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all .3s;
}
.why-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: rgba(37,99,235,.2); }

.why-ico {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.why-card h3 { font-size: 17px; font-weight: 700; color: var(--text); }
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.7; flex: 1; }
.why-tag {
  display: inline-block;
  background: rgba(34,197,94,.1);
  color: #16a34a;
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 700;
  align-self: flex-start;
}

/* ---------- TECH STACK ---------- */




/* ---------- FAQ ---------- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: all .2s;
}
.faq-q:hover { background: var(--bg-light); }
.faq-q[aria-expanded="true"] { color: var(--primary); background: #eff6ff; }

.faq-arr {
  flex-shrink: 0;
  transition: transform .3s ease;
  color: var(--muted);
}
.faq-q[aria-expanded="true"] .faq-arr { transform: rotate(180deg); color: var(--primary); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-ai {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  position: relative;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #1d4ed8 100%);
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}
.fc-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.fc-inner {
  position: relative;
  z-index: 1;
}
.final-cta h2 { font-size: clamp(26px, 3.5vw, 44px); font-weight: 900; color: #fff; margin-bottom: 16px; letter-spacing: -.02em; max-width: 680px; margin-left: auto; margin-right: auto; }
.final-cta p { color: rgba(255,255,255,.8); font-size: 16px; max-width: 560px; margin: 0 auto 36px; line-height: 1.75; }
.fc-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.fc-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  font-weight: 600;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #0f172a;
  color: rgba(255,255,255,.7);
  padding: 72px 0 0;
  background-image: linear-gradient(90deg, transparent, rgba(146, 121, 255, 0.069) 50%, rgba(22, 75, 235, 0.069) 100%, transparent 95%), linear-gradient(90deg, transparent, rgba(255, 121, 197, 0.069) 50%, rgba(22, 75, 235, 0.069) 100%, transparent 95%), linear-gradient(90deg, transparent, rgba(255, 121, 197, 0.069) 50%, rgba(22, 75, 235, 0.069) 100%, transparent 95%);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .nav-logo { margin-bottom: 16px; color: #fff; }
.footer-brand .nav-logo span { color: #fff; }
.footer-brand p { font-size: 14px; line-height: 1.75; margin-bottom: 20px; }

.ft-socials { display: flex; gap: 10px; flex-wrap:wrap;}
.soc-link {
  width: 25px; height: 25px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all .2s;
}

.ft-links h4 { font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; }
.ft-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ft-links a { font-size: 14px; color: rgba(255,255,255,.55); transition: color .2s; }
.ft-links a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content:center;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; text-align:center; }
.ft-legal { display: flex; gap: 20px; }
.ft-legal a { font-size: 13px; color: rgba(255,255,255,.4); }
.ft-legal a:hover { color: rgba(255,255,255,.8); }

/* ---------- SCROLL REVEAL ---------- */
[data-reveal], [data-reveal-right] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal-right] { transform: translateX(30px); }
[data-reveal].revealed, [data-reveal-right].revealed {
  opacity: 1;
  transform: translate(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .ai-grid { grid-template-columns: repeat(2, 1fr); }

  .revenue-grid { grid-template-columns: repeat(2, 1fr); }
  .full-width-card { grid-column: 1 / -1; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-badge { display: inline-flex; }

  .what-is-grid { grid-template-columns: 1fr; }

  .tl-line { display: none; }
  .tl-item, .tl-item.tl-right {
    display: block;
  }
  .tl-item > *:nth-child(2) { display: none; }
  .tl-num { display: none; }
  .tl-item .tl-card, .tl-item.tl-right .tl-card { grid-column: auto; }
  .timeline { gap: 16px; }

  .growth-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .business-grid { grid-template-columns: repeat(2, 1fr); }
  .tab-inner { grid-template-columns: 1fr; }
  .tab-mockup { display: none; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-text p { max-width: 100%; }



  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .revenue-grid { grid-template-columns: 1fr; }
  .full-width-card { flex-direction: column; }
  .business-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 0; }
  .stat-sep { width: 100%; height: 1px; }
  .stat-item { padding: 14px 24px; text-align: center; align-items: center; }
  .trust-badges { flex-direction: column; align-items: center; }
  .ai-grid { grid-template-columns: 1fr; }

  .section { padding: 40px 0; }
  .tab-nav { flex-direction: column; }
  .tab-btn { border-bottom: none; border-right: 3px solid transparent; justify-content: flex-start; }
  .tab-btn.active { border-right-color: transparent; border-bottom-color: var(--primary); }
}

@media (max-width: 375px) {
  .container { padding: 0 16px; }
  .sec-title { font-size: 22px; }
}

