/* ============================================================
   DrivewayNew — fresh build
   Palette: navy text + white surfaces + red CTA + image hero
   ============================================================ */

:root {
  --navy: #07182a;
  --navy-2: #0f2d4d;
  --navy-3: #0a2540;
  --ink: #0c1b30;
  --muted: #5a6a7d;
  --line: #e3e8ef;
  --line-2: #d8dee7;
  --bg: #ffffff;
  --bg-alt: #f5f7fa;
  --brand: #1e6cdb;
  --brand-dark: #1858bb;
  --brand-light: #4a8bee;
  --brand-glow: rgba(30, 108, 219, 0.32);
  --gold: #ffd23f;
  --gold-dark: #f5b800;
  --shadow-sm: 0 1px 2px rgba(7, 24, 42, 0.08);
  --shadow-md: 0 8px 24px rgba(7, 24, 42, 0.10);
  --shadow-lg: 0 24px 60px rgba(7, 24, 42, 0.22);
  --radius: 8px;
  --radius-lg: 14px;
  --maxw: 1240px;
  --header-h: 80px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  transition: transform 0.06s ease, background-color 0.15s ease,
              border-color 0.15s ease, color 0.15s ease,
              box-shadow 0.15s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 14px var(--brand-glow);
}
.btn--primary:hover { background: var(--brand-dark); }

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}
.btn--ghost-light {
  border-color: #fff;
}

.btn--lg {
  padding: 16px 26px;
  font-size: 16px;
}
.btn--block {
  display: flex;
  width: 100%;
  padding: 18px 22px;
  font-size: 16px;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: var(--header-h);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo__text {
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--navy-3);
  display: inline-flex;
  align-items: baseline;
}
.logo__accent { color: var(--brand); }
.logo__sub {
  font-weight: 800;
  font-size: 15px;
  color: var(--navy-3);
  letter-spacing: -0.01em;
  margin-left: 1px;
}
.logo--footer .logo__sub { color: #fff; }
.nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
  margin-right: auto;
}
.nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  padding: 8px 0;
  position: relative;
}
.nav a:hover { color: var(--brand); }

.header__cta {
  display: flex;
  align-items: center;
  gap: 22px;
}
.header__phone {
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}
.header__phone:hover { color: var(--brand); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  background: transparent;
  border: 0;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  padding: 56px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 80% 40%, rgba(30, 108, 219, 0.18), transparent 60%),
    radial-gradient(800px 500px at 15% 80%, rgba(15, 45, 77, 0.55), transparent 70%),
    linear-gradient(135deg, #0a2540 0%, #0c2b4d 45%, #07182a 100%);
  z-index: -2;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      135deg,
      transparent 0,
      transparent 60px,
      rgba(255, 255, 255, 0.025) 60px,
      rgba(255, 255, 255, 0.025) 61px
    ),
    repeating-linear-gradient(
      45deg,
      transparent 0,
      transparent 90px,
      rgba(255, 255, 255, 0.015) 90px,
      rgba(255, 255, 255, 0.015) 91px
    );
  pointer-events: none;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(7, 24, 42, 0.4) 0%,
    rgba(7, 24, 42, 0.15) 60%,
    rgba(7, 24, 42, 0.5) 100%
  );
  z-index: -1;
}
.hero__lane {
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(30, 108, 219, 0.20), transparent 65%);
  z-index: -1;
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero__copy { color: #fff; max-width: 620px; }
.hero__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #e6ecf3;
  margin: 0 0 18px;
}
.hero__title {
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  color: #fff;
}
.hero__lede {
  font-size: 18px;
  line-height: 1.55;
  color: #d8e1ec;
  max-width: 540px;
  margin: 0 0 24px;
}
.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  max-width: 580px;
}
.hero__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 15.5px;
  color: #eaf0f7;
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  color: var(--brand);
  font-weight: 900;
  font-size: 14px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== Form card ===== */
.quote {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 36px 32px;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
  max-width: 560px;
  justify-self: end;
  width: 100%;
}
.quote__eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--brand);
  margin: 0 0 10px;
}
.quote__title {
  font-size: clamp(22px, 2.2vw, 26px);
  line-height: 1.22;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}

.form { display: flex; flex-direction: column; gap: 14px; }
.form__row { display: flex; gap: 14px; }
.form__row--2 { display: grid; grid-template-columns: 1fr 1fr; }
.form__field { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 0; }
.form__field--half { max-width: 50%; }
.form__label {
  font-weight: 700;
  font-size: 13.5px;
  color: var(--navy);
}
.req { color: var(--brand); }

.form input,
.form select,
.form textarea {
  font: inherit;
  font-size: 15px;
  padding: 11px 12px;
  border-radius: 6px;
  border: 1px solid var(--line-2);
  background: #fff;
  color: var(--ink);
  width: 100%;
  transition: border-color 0.12s ease, box-shadow 0.12s ease;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.12);
}
.form textarea { resize: vertical; min-height: 84px; font-family: inherit; }
.form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--navy) 50%), linear-gradient(135deg, var(--navy) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 34px; }

.form__honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: 0;
}

.form__fineprint {
  margin: 6px 0 0;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--brand);
  text-align: center;
}
.form__success {
  margin: 4px 0 0;
  padding: 12px 14px;
  border-radius: 6px;
  background: #e9f7ef;
  color: #176c3a;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}

/* ===== Trust strip ===== */
.trust {
  background: var(--navy);
  color: #fff;
}
.trust__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 36px 24px;
  text-align: center;
}
.trust__num {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.01em;
}
.trust__label {
  font-size: 13.5px;
  color: #b3c4d8;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

/* ===== Section base ===== */
section { scroll-margin-top: 90px; }
.section__eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--brand);
  margin: 0 0 12px;
}
.section__title {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.1;
  margin: 0 0 16px;
  max-width: 800px;
}
.section__lede {
  font-size: 17px;
  color: var(--muted);
  max-width: 720px;
  margin: 0 0 36px;
}

/* ===== Services ===== */
.services { padding: 88px 0 88px; }
.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.service {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  display: flex;
  flex-direction: column;
}
.service:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-2);
}
.service__img {
  position: relative;
  height: 230px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.service__img svg { position: relative; z-index: 1; width: 150px; height: 150px; filter: drop-shadow(0 6px 16px rgba(0,0,0,0.35)); }
.service__img::before {
  content: "";
  position: absolute;
  inset: 0;
}
.service__img::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 70%;
  transform: translateX(-50%);
  height: 5px;
  border-radius: 999px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.85) 0,
    rgba(255, 255, 255, 0.85) 14px,
    transparent 14px,
    transparent 26px
  );
  opacity: 0.4;
}
.service__img--seal::before {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 8px),
    linear-gradient(180deg, #1a2434 0%, #07182a 100%);
}
.service__img--wash::before {
  background:
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.14), transparent 55%),
    radial-gradient(circle at 25% 65%, rgba(255,255,255,0.10), transparent 60%),
    linear-gradient(160deg, #0f4c75 0%, #0a2540 100%);
}
.service__body { padding: 28px 28px 30px; flex: 1; display: flex; flex-direction: column; }
.service__title {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.service__desc { color: var(--muted); margin: 0 0 18px; font-size: 15.5px; }
.service__list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.service__list li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  color: var(--ink);
}
.service__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 900;
}
.service__cta {
  margin-top: auto;
  color: var(--brand);
  font-weight: 700;
  font-size: 15px;
}
.service__cta:hover { color: var(--brand-dark); }

/* ===== Process ===== */
.process { background: var(--bg-alt); padding: 88px 0; }
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
}
.step__num {
  font-size: 28px;
  font-weight: 900;
  color: var(--brand);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.step__title { font-size: 18px; font-weight: 800; color: var(--navy); margin: 0 0 8px; }
.step__desc { color: var(--muted); font-size: 14.5px; margin: 0; }

/* ===== About ===== */
.about { padding: 88px 0; }
.about__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: flex-start;
}
.about__body {
  color: var(--ink);
  font-size: 16.5px;
  margin: 0 0 14px;
  max-width: 620px;
}
.about__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
  margin-top: 28px;
  max-width: 620px;
}
.value__title { font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.value p { margin: 0; color: var(--muted); font-size: 14.5px; }

.reviews {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 28px 8px;
}
.review { margin: 0 0 22px; }
.review blockquote {
  margin: 0 0 8px;
  padding: 0;
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.55;
}
.review blockquote::before { content: "“"; color: var(--brand); font-size: 22px; line-height: 0; margin-right: 2px; }
.review blockquote::after { content: "”"; color: var(--brand); font-size: 22px; line-height: 0; margin-left: 1px; }
.review figcaption { font-size: 13.5px; color: var(--muted); font-weight: 600; }

/* ===== Final CTA ===== */
.cta {
  background: var(--navy);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.cta__title {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 900;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  color: #fff;
}
.cta__lede { color: #c5d3e3; font-size: 17px; max-width: 620px; margin: 0 auto 30px; }
.cta__buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== Footer ===== */
.footer {
  background: #07182a;
  color: #c5d3e3;
  padding: 56px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 40px;
}
.logo--footer .logo__text,
.logo--footer .logo__sub { color: #fff; }
.footer__tag { margin: 14px 0 0; color: #a3b3c8; font-size: 14.5px; max-width: 260px; }
.footer__head {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #fff;
  margin: 0 0 14px;
  text-transform: uppercase;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer__col a { color: #c5d3e3; font-size: 14.5px; }
.footer__col a:hover { color: #fff; }
.footer__col li { font-size: 14.5px; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  font-size: 13px;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: #8b9bb1;
}
.footer__bottom a { color: #c5d3e3; }
.footer__bottom a:hover { color: #fff; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .nav { gap: 22px; }
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .quote { justify-self: stretch; max-width: 100%; }
  .about__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --header-h: 68px; }
  .header__inner { gap: 12px; }
  .nav { display: none; }
  .header__phone { display: none; }
  .header__btn { padding: 10px 14px; font-size: 14px; }
  .hamburger { display: flex; }

  .hero { padding: 40px 0 60px; min-height: auto; }
  .hero__bullets { grid-template-columns: 1fr; gap: 8px; }

  .quote { padding: 24px 22px; }
  .form__row--2 { grid-template-columns: 1fr; }
  .form__field--half { max-width: 100%; }

  .trust__inner { grid-template-columns: 1fr 1fr; gap: 22px 16px; padding: 28px 18px; }

  .services { padding: 60px 0; }
  .services__grid { grid-template-columns: 1fr; gap: 22px; }

  .process { padding: 60px 0; }
  .steps { grid-template-columns: 1fr; }

  .about { padding: 60px 0; }
  .about__values { grid-template-columns: 1fr; }

  .cta { padding: 60px 0; }
  .cta__buttons .btn { width: 100%; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 24px; padding-bottom: 32px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom-inner { flex-direction: column; gap: 6px; }
}

/* ===== Pricing strip (hero) ===== */
.pricing-strip {
  display: flex;
  gap: 14px;
  margin: 0 0 26px;
  flex-wrap: wrap;
}
.price-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.price-pill__amount {
  font-weight: 900;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: -0.01em;
  line-height: 1;
}
.price-pill__label {
  font-size: 13px;
  font-weight: 700;
  color: #eaf0f7;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===== Service price ribbon ===== */
.service__price {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin: 0 0 6px;
  padding: 8px 14px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  align-self: flex-start;
}
.service__price-from {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}
.service__price-num { font-size: 22px; }

/* ===== Satisfaction Guaranteed badge ===== */
.guarantee {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 26px 0 0;
  padding: 14px 22px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(255, 210, 63, 0.25);
  transform: rotate(-1.5deg);
  position: relative;
}
.guarantee::before, .guarantee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 14px;
  background: var(--gold);
  filter: blur(0.6px);
}
.guarantee::before { left: -8px; clip-path: polygon(0% 30%, 100% 0%, 100% 100%, 20% 80%); }
.guarantee::after  { right: -8px; clip-path: polygon(0% 0%, 100% 30%, 80% 100%, 0% 80%); }
.guarantee__row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
.guarantee__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2.5px solid var(--navy);
  font-weight: 900;
  font-size: 14px;
  background: transparent;
}
.guarantee__stars {
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--navy);
}

/* ===== Value pillars (about) — replaces the value cards visually ===== */
.value {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.value__icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(30, 108, 219, 0.10);
  color: var(--brand);
}
.value__icon svg { width: 24px; height: 24px; }
.value__body { flex: 1; min-width: 0; }
.value__title { font-weight: 800; color: var(--navy-3); margin-bottom: 2px; font-size: 15.5px; }
.value__body p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.5; }

/* ===== Final tagline ===== */
.tagline {
  text-align: center;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 32px 0 0;
  text-transform: uppercase;
}
.tagline__accent { color: var(--gold); }

/* Mobile nav drawer */
.nav.is-open {
  display: flex;
  position: absolute;
  top: var(--header-h);
  left: 0; right: 0;
  background: #fff;
  flex-direction: column;
  gap: 0;
  padding: 12px 24px 18px;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.nav.is-open a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.nav.is-open a:last-child { border-bottom: 0; }
