:root {
  --black: #0b0b0b;
  --black-soft: #151515;
  --white: #ffffff;
  --off-white: #f6f6f4;
  --gold: #d7aa2b;
  --gold-light: #f0cc5b;
  --gray: #6b6b6b;
  --border: #dedede;
  --shadow: 0 18px 50px rgba(0,0,0,.12);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  color: #1c1c1c;
  background: var(--white);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(1140px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,10,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img, .brand-logo { width: 165px; height: auto; display: block; }
.main-nav { display: flex; gap: 28px; align-items: center; }
.main-nav a {
  color: #fff;
  font-weight: 700;
  font-size: .94rem;
}
.main-nav a:hover { color: var(--gold-light); }
.nav-cta {
  border: 1px solid var(--gold);
  padding: 10px 18px;
  border-radius: 999px;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px 0;
  background: #fff;
  border-radius: 10px;
}

.hero {
  min-height: 760px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.76) 55%, rgba(0,0,0,.45) 100%),
    radial-gradient(circle at 80% 20%, rgba(215,170,43,.25), transparent 32%),
    linear-gradient(145deg, #242424, #080808);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -150px auto;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(215,170,43,.25);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(215,170,43,.04), 0 0 0 160px rgba(215,170,43,.025);
}
.hero-content { position: relative; z-index: 2; padding: 110px 0 90px; }
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .8rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.hero h1, .section h2 {
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.1;
  margin: 0 0 18px;
}
.hero h1 {
  max-width: 850px;
  font-size: clamp(2.7rem, 7vw, 5.5rem);
  letter-spacing: -.04em;
}
.hero p {
  max-width: 720px;
  font-size: 1.2rem;
  color: rgba(255,255,255,.8);
  margin: 0 0 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: #111; }
.btn-primary:hover { background: var(--gold-light); }
.btn-secondary { border-color: rgba(255,255,255,.45); color: #fff; }
.btn-secondary:hover { border-color: #fff; }
.btn-secondary-dark { border-color: #222; color: #222; }

.hero-badges {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 42px;
  color: rgba(255,255,255,.72);
  font-size: .92rem;
  font-weight: 700;
}
.hero-badges span::before {
  content: "✓";
  color: var(--gold);
  margin-right: 8px;
}

.trust-strip { background: var(--gold); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.trust-grid > div {
  padding: 22px 28px;
  border-right: 1px solid rgba(0,0,0,.16);
}
.trust-grid > div:last-child { border-right: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { font-family: "Montserrat"; }
.trust-grid span { font-size: .9rem; }

.section { padding: 100px 0; }
.section-heading { max-width: 760px; margin-bottom: 50px; }
.section h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  letter-spacing: -.03em;
}
.section-heading p { color: var(--gray); font-size: 1.05rem; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--off-white);
  border: 1px solid #ecece8;
  border-radius: var(--radius);
  padding: 30px;
  min-height: 290px;
  transition: .2s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #111; color: var(--gold);
  font-family: "Montserrat";
  font-weight: 800;
  margin-bottom: 24px;
}
.service-card h3 {
  font-family: "Montserrat";
  font-size: 1.25rem;
  margin: 0 0 12px;
}
.service-card p { color: var(--gray); }

.section-dark {
  background: var(--black-soft);
  color: #fff;
}
.section-dark p { color: rgba(255,255,255,.72); }
.split-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}
.feature-panel {
  background: linear-gradient(145deg, #232323, #111);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: 36px;
}
.feature-panel h3 {
  font-family: "Montserrat";
  font-size: 1.5rem;
  margin-top: 0;
}
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  padding: 13px 0 13px 34px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}
.text-link { color: var(--gold-light); font-weight: 800; }

.driver-banner {
  background: var(--off-white);
  border-radius: 28px;
  padding: 50px;
  border: 1px solid #e7e7e2;
}
.driver-banner > div:first-child { max-width: 760px; }
.driver-details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 34px 0;
}
.driver-stat {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  border: 1px solid #e4e4df;
}
.driver-stat strong, .driver-stat span { display: block; }
.driver-stat strong {
  font-family: "Montserrat";
  font-size: 1.35rem;
}
.driver-stat span { color: var(--gray); font-size: .9rem; }
.driver-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.driver-copy p { max-width: 720px; color: var(--gray); }

.quote-section { background: #fafafa; }
.quote-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 12px 35px rgba(0,0,0,.06);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label {
  display: block;
  font-weight: 700;
  font-size: .92rem;
  margin-bottom: 16px;
}
input, textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid #d8d8d8;
  border-radius: 12px;
  padding: 13px 14px;
  background: #fff;
  color: #111;
}
input:focus, textarea:focus {
  outline: 2px solid rgba(215,170,43,.35);
  border-color: var(--gold);
}
textarea { resize: vertical; }
.form-status { min-height: 24px; margin-bottom: 0; color: var(--gray); }
.contact-note {
  margin-top: 28px;
  padding: 20px;
  background: #fff;
  border-left: 4px solid var(--gold);
  border-radius: 10px;
}
.contact-note strong, .contact-note a { display: block; }

.contact-section { padding-top: 0; }
.contact-box {
  background: var(--gold);
  border-radius: 26px;
  padding: 44px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.contact-box .eyebrow { color: #111; opacity: .7; }
.contact-box h2 { margin-bottom: 10px; }
.contact-box p { margin: 0; }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.site-footer {
  background: #090909;
  color: #fff;
  padding: 60px 0 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
}
.footer-brand img, .footer-brand .brand-logo { width: 170px; height: auto; margin-bottom: 20px; display: block; }
.footer-grid strong { display: block; margin-bottom: 12px; color: var(--gold); }
.footer-grid a, .footer-grid span {
  display: block;
  color: rgba(255,255,255,.68);
  margin: 8px 0;
}
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.48);
  font-size: .86rem;
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #0b0b0b;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .split-layout { grid-template-columns: 1fr; gap: 40px; }
  .driver-details { grid-template-columns: repeat(2, 1fr); }
  .driver-copy, .contact-box { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1140px); }
  .nav-wrap { min-height: 70px; }
  .brand img, .brand-logo { width: 140px; }
  .main-nav { top: 70px; }
  .hero { min-height: 690px; }
  .hero-content { padding: 90px 0 70px; }
  .hero p { font-size: 1.03rem; }
  .hero-actions .btn { width: 100%; }
  .hero-badges { flex-direction: column; gap: 10px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { border-right: 0; border-bottom: 1px solid rgba(0,0,0,.15); }
  .section { padding: 72px 0; }
  .card-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .driver-banner { padding: 28px 22px; }
  .driver-details { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form { padding: 24px 18px; }
  .contact-box { padding: 30px 24px; }
  .contact-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 25px; }
  .footer-bottom { flex-direction: column; gap: 5px; }
}
