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

html,
body {
  margin: 0;
  padding: 0;
}

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

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

a:hover {
  text-decoration: underline;
}

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

/* Layout utilities
--------------------------------------------- */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 64px 0;
}

.section-tight {
  padding: 40px 0;
}

.section-muted {
  background: #eef1f8;
}

/* Header / Nav
--------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 246, 251, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

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

.brand {
  font-size: 16px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: #0f1c2e;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}

.nav-links a {
  color: #0f172a;
  font-weight: 500;
}

.nav-links a.nav-active {
  color: #1d4ed8;
}

.nav-cta {
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.35);
  text-decoration: none;
}

.nav-cta:hover {
  text-decoration: none;
  filter: brightness(1.03);
}

/* Hero
--------------------------------------------- */
.hero {
  background: linear-gradient(135deg, #0f1c2e 0%, #23314a 40%, #314664 100%);
  color: #ffffff;
  padding: 72px 0 64px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.3fr);
  gap: 40px;
  align-items: center;
}

.hero-kicker {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.8;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-title span.accent {
  color: #7dd3fc;
}

.hero-body {
  font-size: 15px;
  max-width: 540px;
  opacity: 0.92;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-primary {
  background: #ffffff;
  color: #0f1c2e;
}

.btn-primary:hover {
  background: #e5e7eb;
}

.btn-ghost {
  background: transparent;
  color: #e5edff;
  border: 1px solid rgba(226, 232, 240, 0.6);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.4);
}

.hero-disclaimer {
  margin-top: 14px;
  font-size: 11px;
  opacity: 0.7;
}

/* Hero right card
--------------------------------------------- */
.hero-card {
  background: #ffffff;
  color: #0f172a;
  border-radius: 20px;
  padding: 20px 22px;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.26);
}

.hero-card-header {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 12px;
}

.hero-pill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.hero-pill {
  border-radius: 12px;
  padding: 10px 12px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  font-size: 12px;
}

.hero-pill-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #6b7280;
  margin-bottom: 4px;
}

.hero-pill-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}

.hero-pill-body {
  font-size: 12px;
  color: #4b5563;
}

/* Section headings / tags
--------------------------------------------- */
.section-tag {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #6b7280;
  font-weight: 600;
  margin-bottom: 8px;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

/* Cards
--------------------------------------------- */
.cards-grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 2.3fr) minmax(0, 1.7fr);
  gap: 24px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.28);
}

.card-header {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.card-subtitle {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 10px;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-list li {
  font-size: 13px;
  padding-left: 18px;
  position: relative;
  margin-bottom: 6px;
}

.card-list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: #2563eb;
}

.card-meta {
  font-size: 11px;
  color: #9ca3af;
  margin-top: 12px;
}

/* Two-column split for dealers / flow etc.
--------------------------------------------- */
.split-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

/* Vertical steps
--------------------------------------------- */
.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
}

.step-index {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid #cbd5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #1d4ed8;
  background: #eff3ff;
}

.step-body {
  font-size: 13px;
}

.step-title {
  font-weight: 600;
  margin-bottom: 2px;
}

/* CTA strip
--------------------------------------------- */
.cta-strip {
  padding: 28px 0;
  background: linear-gradient(135deg, #0f1c2e 0%, #23314a 40%, #314664 100%);
  color: #e5edff;
}

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

.cta-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.cta-body {
  font-size: 13px;
  opacity: 0.85;
}

/* Contact area
--------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.7fr);
  gap: 32px;
}

.contact-block {
  font-size: 13px;
}

.contact-block h3 {
  margin: 0 0 8px;
  font-size: 14px;
}

.contact-block p {
  margin: 0 0 4px;
}

/* Form
--------------------------------------------- */
.form-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.22);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-group {
  margin-bottom: 12px;
}

label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 4px;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #cbd5f5;
  padding: 8px 10px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  background: #f9fafb;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.55);
  background: #ffffff;
}

textarea {
  resize: vertical;
  min-height: 90px;
}

/* Footer
--------------------------------------------- */
.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  padding: 18px 0 26px;
  margin-top: 40px;
  font-size: 11px;
  color: #6b7280;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}

/* Page hero for secondary pages
--------------------------------------------- */
.page-hero {
  padding: 48px 0 32px;
  background: linear-gradient(135deg, #0f1c2e 0%, #23314a 40%, #314664 100%);
  color: #ffffff;
}

.page-hero h1 {
  margin: 0 0 8px;
  font-size: 28px;
}

.page-hero p {
  margin: 0;
  max-width: 640px;
  font-size: 14px;
  opacity: 0.9;
}

.page-section {
  padding: 40px 0 56px;
}

/* Thank-you page
--------------------------------------------- */
.thankyou-wrap {
  padding: 72px 0;
}

.thankyou-card {
  max-width: 540px;
  margin: 0 auto;
  text-align: left;
}

/* Responsive
--------------------------------------------- */
@media (max-width: 960px) {
  .hero-inner,
  .cards-grid-2,
  .split-2,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-inner {
    gap: 32px;
  }
}

@media (max-width: 720px) {
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    height: auto;
    padding: 10px 0 12px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero {
    padding-top: 56px;
  }

  .section {
    padding: 48px 0;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .nav-links {
    justify-content: center;
  }
  .brand {
    text-align: center;
    width: 100%;
  }
}
