:root {
  --bg: #f7fbff;
  --surface: #ffffff;
  --surface-soft: #eef6ff;
  --text: #14324a;
  --muted: #4d6a81;
  --primary: #0b74de;
  --primary-hover: #075fb6;
  --border: #d5e4f1;
  --shadow: 0 10px 28px rgba(16, 70, 117, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.topbar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.topbar-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.brand {
  margin: 0;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 0.6rem;
  border: 1px solid var(--border);
}

.phone-link {
  text-decoration: none;
  color: var(--primary);
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  padding: 3.5rem 0 3rem;
}

.hero-content {
  max-width: 700px;
}

.eyebrow {
  margin: 0;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 0.92rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0;
}

h1 {
  margin-top: 0.6rem;
  font-size: clamp(1.9rem, 6vw, 3rem);
}

.hero-copy {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.btn {
  border: 0;
  border-radius: 0.75rem;
  text-decoration: none;
  padding: 0.88rem 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--primary-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: #eaf4ff;
}

.section {
  padding: 3rem 0;
}

.section-showcase {
  padding-top: 0;
}

.showcase-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.showcase-image {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.showcase-content {
  padding: 1.1rem;
}

.showcase-content h2 {
  margin-top: 0.45rem;
}

.section-alt {
  background: var(--surface-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

h2 {
  font-size: clamp(1.45rem, 4.5vw, 2rem);
}

.section-intro {
  margin: 0.55rem 0 1.4rem;
  color: var(--muted);
}

.section-drivers {
  padding-top: 0;
}

.drivers-card {
  background: linear-gradient(135deg, #0e6fcc 0%, #064f93 100%);
  border-radius: 1rem;
  padding: 1.4rem;
  color: #fff;
  box-shadow: var(--shadow);
}

.drivers-card h2 {
  margin-top: 0.45rem;
}

.drivers-card .eyebrow,
.drivers-card .section-intro {
  color: #e8f4ff;
}

.driver-call-btn {
  margin-top: 0.2rem;
  background: #fff;
  color: #064f93;
}

.driver-call-btn:hover,
.driver-call-btn:focus-visible {
  background: #e4f1ff;
}

.cards-grid,
.steps-grid,
.footer-grid {
  display: grid;
  gap: 0.95rem;
}

.card,
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.95rem;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.card h3,
.step h3 {
  font-size: 1.06rem;
}

.card p,
.step p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.step-number {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: #d8ecff;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.narrow {
  max-width: 760px;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.95rem;
  box-shadow: var(--shadow);
  padding: 1rem;
  display: grid;
  gap: 0.55rem;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #bfd2e3;
  border-radius: 0.65rem;
  padding: 0.78rem 0.82rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  outline: 2px solid #b8dbff;
  outline-offset: 1px;
}

.form-message {
  margin: 0.35rem 0 0;
  min-height: 1.3rem;
  font-weight: 500;
  color: #1a6d3c;
}

.footer {
  background: #f0f7ff;
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}

.footer p,
.footer a {
  margin: 0.2rem 0;
  color: #2d516f;
  text-decoration: none;
}

.footer-title {
  font-weight: 800;
  color: var(--text) !important;
}

@media (min-width: 700px) {
  .hero-cta {
    flex-direction: row;
  }

  .btn {
    min-width: 170px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .contact-form {
    padding: 1.25rem;
  }

  .showcase-content {
    padding: 1.35rem;
  }
}