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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  background: #0b1120;
  line-height: 1.6;
}

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

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

a:hover {
  text-decoration: underline;
}

/* LAYOUT HELPERS */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* HEADER / NAVBAR */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  color: #e5e7eb;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-size: 1.1rem;
  font-weight: 700;
}

.logo-sub {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f97316;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.main-nav a {
  color: #e5e7eb;
  opacity: 0.9;
}

.main-nav a:hover {
  opacity: 1;
}

/* MOBILE NAV TOGGLE */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid #334155;
  background: transparent;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.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);
}

/* HERO / TOP SECTION */
.hero {
  padding: 4rem 0 3.5rem;
  background: radial-gradient(circle at top left, #1d4ed8, #020617);
  color: #e5e7eb;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 2.5rem;
  align-items: stretch;
}

.hero h1 {
  font-size: clamp(1.9rem, 2.6vw + 1rem, 2.6rem);
  margin-bottom: 0.75rem;
}

.hero-lead {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.hero-sub {
  font-size: 0.95rem;
  color: #cbd5f5;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.hero-tags span {
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
}

/* HERO CONTACT CARD */
.hero-card {
  background: rgba(15, 23, 42, 0.94);
  border-radius: 1rem;
  padding: 1.6rem 1.4rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.hero-card h2 {
  margin-top: 0;
  font-size: 1.2rem;
}

.hero-card p {
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
}

.hero-list li + li {
  margin-top: 0.3rem;
}

.hero-note {
  font-size: 0.8rem;
  color: #9ca3af;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.55rem 1.3rem;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn.primary {
  background: #f97316;
  color: #0b1120;
  box-shadow: 0 10px 25px rgba(248, 132, 30, 0.4);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 35px rgba(248, 132, 30, 0.6);
  text-decoration: none;
}

.btn.ghost {
  background: transparent;
  color: #e5e7eb;
  border-color: #64748b;
}

.btn.ghost:hover {
  background: rgba(15, 23, 42, 0.7);
  text-decoration: none;
}

/* SECTIONS */
.section {
  padding: 3.25rem 0;
  background: #020617;
  color: #e5e7eb;
}

.section-alt {
  background: #0f172a;
}

.section h2 {
  font-size: 1.6rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

.section-intro {
  margin-top: 0;
  max-width: 650px;
  font-size: 0.95rem;
  color: #cbd5f5;
}

/* GRID LAYOUTS */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

/* FEATURE / INFO CARDS */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.car-card,
.info-card,
.quote-card {
  background: #020617;
  border-radius: 0.9rem;
  padding: 1.1rem 1.1rem 1.25rem;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.75);
  border: 1px solid #1e293b;
}

.section-alt .car-card,
.section-alt .info-card,
.section-alt .quote-card {
  background: #020617;
}

.car-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}

.car-header h3 {
  margin: 0;
  font-size: 1.02rem;
}

.tag {
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  background: #f97316;
  color: #111827;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.car-meta {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.price {
  font-weight: 600;
  margin-top: 0.6rem;
  font-size: 0.95rem;
  color: #fde68a;
}

/* CHECK LIST */
.check-list {
  padding-left: 1rem;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.95rem;
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #22c55e;
  font-size: 0.9rem;
}

/* QUOTES */
.quote-card p {
  font-size: 0.9rem;
}

.quote-name {
  margin-top: 0.7rem;
  font-size: 0.85rem;
  color: #9ca3af;
}

/* STEPS LIST */
.steps-list {
  margin: 0;
  padding-left: 1.2rem;
}

.steps-list li {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

/* CONTACT */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.contact-list li + li {
  margin-top: 0.35rem;
}

.contact-box {
  background: #020617;
  border-radius: 0.9rem;
  padding: 1rem 1.1rem;
  font-size: 0.85rem;
  border: 1px solid #1f2937;
}

.contact-box pre {
  background: #020617;
  border-radius: 0.5rem;
  padding: 0.7rem;
  overflow-x: auto;
  font-family: ui-monospace, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.78rem;
  color: #e5e7eb;
}

/* FOOTER */
.site-footer {
  background: #020617;
  color: #9ca3af;
  padding: 1.7rem 0 1.5rem;
  font-size: 0.85rem;
  border-top: 1px solid #1f2937;
}

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

.footer-small {
  color: #6b7280;
  margin-top: 0.25rem;
}

/* RESPONSIVE */
@media (max-width: 880px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    order: -1;
  }

  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }

  .three-col {
    grid-template-columns: minmax(0, 1fr);
  }

  .main-nav {
    position: absolute;
    right: 1.25rem;
    top: 64px;
    flex-direction: column;
    align-items: flex-start;
    background: #020617;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.85);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 3rem 0 2.8rem;
  }

  .section {
    padding: 2.6rem 0;
  }
}
