:root {
  color-scheme: dark;
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-strong: #eff3f8;
  --text: #102a43;
  --text-muted: #50657c;
  --primary: #0f4c81;
  --accent: #ff7a18;
  --accent-soft: #ffeed9;
  --border: rgba(16, 42, 67, 0.12);
  --shadow: 0 24px 80px rgba(16, 42, 67, 0.08);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, rgba(15, 76, 129, 0.12), transparent 35%), var(--bg);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
a {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  background: #0f2b49;
  color: white;
}

.topbar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  font-size: 0.95rem;
}

.topbar__content a {
  color: #cbd6e8;
  text-decoration: none;
}

.navbar {
  background: white;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--primary);
  text-decoration: none;
}

.menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.menu a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: white;
  color: var(--text);
  padding: 0.75rem 1rem;
  border-radius: 999px;
}

.hero {
  padding: 4rem 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 700;
}

.hero h1,
.section h2 {
  margin: 1rem 0 1.2rem;
  line-height: 1.08;
}

.hero h1 {
  font-size: clamp(2.8rem, 4vw, 4.4rem);
  max-width: 12ch;
}

.hero p {
  max-width: 42rem;
  line-height: 1.75;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--accent);
  color: #102a43;
  box-shadow: 0 18px 40px rgba(255, 122, 24, 0.18);
}

.button--secondary {
  border: 1px solid rgba(15, 76, 129, 0.15);
  background: white;
  color: var(--primary);
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.hero__visual {
  display: grid;
  gap: 1.5rem;
}

.hero__card {
  background: linear-gradient(135deg, rgba(15, 76, 129, 0.95), rgba(15, 76, 129, 0.78));
  color: white;
  padding: 2rem;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero__card h2 {
  margin: 0 0 0.8rem;
}

.hero__stats {
  display: grid;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 1.5rem;
}

.hero__stats div {
  display: grid;
  gap: 0.4rem;
}

.hero__stats strong {
  font-size: 1.5rem;
  color: var(--primary);
}

.section {
  padding: 4rem 0;
}

.section--light {
  background: white;
}

.section--accent {
  background: linear-gradient(180deg, #0f4c81 0%, #102a43 100%);
  color: white;
}

.section__inner {
  display: grid;
  gap: 2rem;
}

.section__header {
  max-width: 52rem;
}

.section__header--white h2 {
  color: white;
}

.grid-2 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.9rem;
}

.feature-list li {
  padding-left: 1.3rem;
  position: relative;
  color: var(--text-muted);
}

.feature-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.info-box {
  background: var(--surface-strong);
  padding: 1.6rem;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.cards-grid,
.vehicle-grid,
.pricing-grid,
.faq-grid {
  display: grid;
  gap: 1.5rem;
}

.cards-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card,
.pricing-card,
.vehicle-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.8rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.section--accent .card,
.section--accent .vehicle-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.card:hover,
.pricing-card:hover,
.vehicle-card:hover {
  transform: translateY(-4px);
}

.card h3,
.pricing-card h3,
.vehicle-card strong {
  margin: 0 0 0.75rem;
}

.vehicle-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.vehicle-card {
  display: grid;
  gap: 1rem;
}

.vehicle-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.tag {
  background: rgba(255, 255, 255, 0.18);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.vehicle-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.88);
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.pricing-card {
  min-height: 100%;
}

.pricing-card--featured {
  border-color: rgba(255, 122, 24, 0.35);
}

.pricing-card strong {
  display: block;
  margin: 1rem 0;
  font-size: 2rem;
  color: var(--primary);
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
  color: var(--text-muted);
}

.faq-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.faq-item {
  background: var(--surface);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  padding: 1.4rem 1.6rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.faq-answer {
  padding: 0 1.6rem 1.4rem;
  color: var(--text-muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.section--contact {
  background: #0c1d33;
  color: white;
}

.contact-grid {
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 1rem;
}

.contact-cards div {
  background: rgba(255, 255, 255, 0.08);
  padding: 1.2rem;
  border-radius: 20px;
}

.contact-cards a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.social-links a {
  color: white;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.7rem 1rem;
  border-radius: 999px;
}

.contact-form {
  display: grid;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 2rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-form label {
  display: grid;
  gap: 0.6rem;
  font-weight: 500;
  color: white;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-radius: 14px;
  padding: 0.95rem 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.footer {
  padding: 2rem 0;
  background: #081220;
  color: rgba(255, 255, 255, 0.7);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 900px) {
  .hero__grid,
  .contact-grid,
  .grid-2,
  .pricing-grid,
  .vehicle-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .navbar__inner {
    flex-wrap: wrap;
  }
}

@media (max-width: 720px) {
  .menu {
    position: absolute;
    inset: 100% 0 auto;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    gap: 1rem;
    box-shadow: 0 20px 40px rgba(16, 42, 67, 0.12);
    border-radius: 16px;
    margin-top: 1rem;
    display: none;
  }

  .menu.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .topbar__content,
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
