:root {
  --primary: #38bdf8;
  --primary-light: #0ea5e9;
  --accent: #facc15;
  --bg-main: #020617;
  --bg-elevated: #020617;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --border: #1f2937;
  --radius: 12px;
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.8);
  --max-width: 1120px;
}

/* Reset & base */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
}


a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* Header & navigation */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #1f2937;
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
}

.logo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #020617;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.9);
  overflow: hidden;
}

.logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.logo span {
  display: block;
  line-height: 1.2;
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Desktop nav */

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 0.15rem;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
}

.nav-links a:hover {
  color: var(--primary);
  border-bottom-color: var(--accent);
}

.nav-cta {
  display: flex;
  gap: 0.75rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.1rem;
  font-size: 0.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.1s ease,
    box-shadow 0.1s ease,
    background-color 0.15s ease,
    border-color 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #020617;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.8);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
}

.btn-outline {
  border-color: #334155;
  color: #e5e7eb;
  background-color: transparent;
}

.btn-outline:hover {
  border-color: var(--primary);
  background-color: rgba(15, 23, 42, 0.9);
}

/* Mobile nav trigger */

.mobile-menu-btn {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.25rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

/* Mobile nav panel */

/* Full-screen solid overlay for mobile menu */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 999;                 /* above header + content */
  background: #020617;          /* SOLID background, no transparency */
  transform: translateX(-100%);
  transition: transform 0.2s ease-out;
}

.nav-mobile.open {
  transform: translateX(0);
}

/* Menu content fills the screen on mobile */
.nav-mobile-inner {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 50vh;            /* ensure it covers full height */
  padding: 1.25rem;
  border-right: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: #020617;          /* same solid background */
}


.nav-mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-mobile-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e5e7eb;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mobile-menu-close {
  border: none;
  background: transparent;
  color: #e5e7eb;
  font-size: 1.4rem;
  cursor: pointer;
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 1rem;
  background-color: #020617;
}

.nav-mobile-links a {
  color: #e5e7eb;
}

.nav-mobile-links a:hover {
  color: var(--primary);
}

.nav-mobile-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* Hero */

.hero {
  background: radial-gradient(circle at top left, #0f172a 0, #020617 45%, #020617 100%);
  padding: 3.5rem 1.25rem 2.5rem;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-kicker {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 3.1vw, 2.7rem);
  line-height: 1.1;
  margin-bottom: 0.75rem;
  color: #f9fafb;
}

.hero h1 span {
  color: var(--primary);
}

.hero-sub {
  font-size: 0.98rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  max-width: 34rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: #020617;
  border: 1px solid #1f2937;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-note-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
}

/* Hero van "3D" block */

.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}

/* New container for the two images */
.hero-van-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2 side-by-side */
  gap: 1rem;
  width: 100%;
  max-width: 560px; /* keep it from stretching too wide */
}

.hero-van-wrapper {
  position: relative;
  max-width: 340px;
  width: 100%;
  transform: translateY(6px) rotate(-4deg);
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.85));
  animation: heroFloat 8s ease-in-out infinite;
}

.hero-van-img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  object-fit: cover; 
}

.hero-van-glow {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 220%;
  height: 150%;
  transform: translate(-70%, -40%);
  background:
    radial-gradient(circle at 50% 90%, rgba(56, 189, 248, 0.4), transparent 60%),
    radial-gradient(circle at 20% 20%, rgba(250, 204, 21, 0.3), transparent 55%);
  opacity: 0.9;
  filter: blur(30px);
  z-index: -1;
}

.hero-van-wrapper:hover {
  animation-play-state: paused;
  transform: translateY(0) rotate(-2deg) scale(1.02);
}

/* Hero float animation */

@keyframes heroFloat {
  0% {
    transform: translateY(6px) rotate(-4deg);
  }
  50% {
    transform: translateY(-4px) rotate(-2deg);
  }
  100% {
    transform: translateY(6px) rotate(-4deg);
  }
}

/* Main layout */

main {
  padding: 1.5rem 1.25rem 3.5rem;
}

section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 0 0;
  background: transparent;
}

section h2 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  color: #f9fafb;
}

.section-intro {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  max-width: 42rem;
  font-size: 0.95rem;
}

/* Use cases / highlights */

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--bg-elevated);
  border-radius: var(--radius);
  padding: 1rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: #e5e7eb;
}

.card p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.card-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  font-size: 0.85rem;
  margin-top: 1.5rem;
}

.benefit-item {
  background: var(--bg-elevated);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid #1f2937;
}

/* About */

.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
}

.about-block {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.about-block p + p {
  margin-top: 0.7rem;
}

.about-list {
  margin-top: 0.9rem;
  padding-left: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.about-list li {
  margin-bottom: 0.35rem;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  font-size: 0.88rem;
}

.metric-card {
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 0.8rem 0.9rem;
  box-shadow: var(--shadow-soft);
}

.metric-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.1rem;
}

.metric-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

/* Fleet */

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.fleet-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-elevated);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.9);
  border-color: var(--primary);
}

.fleet-image {
  height: 230px;
  position: relative;
  overflow: hidden;
  background: #020617;
  border-bottom: 1px solid #1f2937;
  margin: 0;
  padding: 0;
}

.fleet-image .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.fleet-card:hover .fleet-image .img {
  transform: scale(1.05);
}

.fleet-image::after {
  position: absolute;
  bottom: 0.7rem;
  left: 0.9rem;
  color: #e5e7eb;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

.fleet-body {
  padding: 0.9rem 1rem 1rem;
  font-size: 0.88rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.fleet-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.fleet-title-row h3 {
  font-size: 1rem;
}

.fleet-pill {
  font-size: 0.7rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  color: #e5e7eb;
  border: 1px solid #1f2937;
}

.fleet-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.fleet-meta span {
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  border: 1px solid #1f2937;
  background: #020617;
}

.fleet-list {
  list-style: disc;
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.fleet-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.fleet-price-caption {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Pricing */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.pricing-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
}

.pricing-card h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0.4rem 0;
}

.price span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-card ul {
  list-style: none;
  margin-top: 0.4rem;
}

.pricing-card ul li {
  margin-bottom: 0.25rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* FAQs */

.faq-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
  font-size: 0.9rem;
}

.faq-question {
  font-weight: 600;
  margin-bottom: 0.15rem;
  color: #e5e7eb;
}

.faq-answer {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.location-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 0.9rem;
  font-size: 0.86rem;
  box-shadow: var(--shadow-soft);
}

.location-list {
  margin-top: 0.5rem;
  list-style: none;
}

.location-list li {
  margin-bottom: 0.25rem;
  color: var(--text-muted);
}

/* Reviews */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  font-size: 0.86rem;
}

.review-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 0.9rem;
  background: var(--bg-elevated);
  box-shadow: var(--shadow-soft);
}

.review-name {
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.review-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.star-row {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.3rem;
}

.star-row span:first-child {
  color: #fbbf24;
}

/* Contact */

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.75rem;
}

form {
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 0.9rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #e5e7eb;
}

input,
select,
textarea {
  border-radius: 999px;
  border: 1px solid #1f2937;
  padding: 0.5rem 0.75rem;
  font-size: 0.86rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  font-family: inherit;
  background: #020617;
  color: var(--text-main);
}

textarea {
  border-radius: 12px;
  min-height: 80px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #6b7280;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.6);
}

.contact-info-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 0.9rem;
  background: var(--bg-elevated);
  font-size: 0.88rem;
  box-shadow: var(--shadow-soft);
}

.contact-info-card p {
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}

.contact-list {
  list-style: none;
  margin-top: 0.4rem;
}

.contact-list li {
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.contact-label {
  font-weight: 600;
}

/* Footer */

footer {
  border-top: 1px solid var(--border);
  padding: 1.25rem 1.25rem 1.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: #020617;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--primary);
}

/* Responsive */

@media (max-width: 960px) {
  .nav-desktop {
    display: none;
  }

  .mobile-menu-btn {
    display: inline-flex;
  }

  .hero-inner,
  .about-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 2.25rem;
  }

  .hero-right {
    margin-top: 1.75rem;
    padding-bottom: 0;
  }

  .hero-van-wrapper {
    max-width: 260px;
  }

  .use-cases-grid,
  .fleet-grid,
  .pricing-grid,
  .reviews-grid,
  .benefits-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .nav-container {
    padding-inline: 1rem;
  }
}

@media (min-width: 961px) {
  .nav-mobile {
    display: none;
  }
}

/* Mobile: stack the two images vertically */
@media (max-width: 768px) {
  .hero-van-grid {
    grid-template-columns: 1fr;  /* 1 per row on phones */
  }
}
