:root {
  --yellow: #f5c400;
  --yellow-dark: #9a7900;
  --ink: #111316;
  --ink-2: #1b1e22;
  --paper: #f6f6f1;
  --white: #fff;
  --gray-50: #fafaf7;
  --gray-100: #ecece6;
  --gray-300: #cfcfc7;
  --gray-500: #6d7076;
  --danger: #b42318;
  --content: 1280px;
  --radius: 8px;
  --shadow: 0 20px 55px rgba(0, 0, 0, .18);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: .012em;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; letter-spacing: .01em; }
button { cursor: pointer; }

h1, h2, h3, h4, p, ul, ol { margin-top: 0; }
h1, h2, h3, h4 {
  margin-bottom: .6em;
  line-height: 1.12;
  letter-spacing: .012em;
}
h1 { font-size: clamp(2.55rem, 5.1vw, 5.2rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.65rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
p { margin-bottom: 1rem; }

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.section { padding-block: clamp(38px, 3.8vw, 54px); }
.section-tight, .section-compact { padding-block: clamp(30px, 3vw, 44px); }
.section-white { background: var(--white); }
.section-dark { background: var(--ink); color: var(--white); }
.section-yellow { background: var(--yellow); color: var(--ink); }
.section-grid {
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(17, 19, 22, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 19, 22, .04) 1px, transparent 1px);
  background-size: 30px 30px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--yellow-dark);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-dark .eyebrow, .hero .eyebrow { color: var(--yellow); }
.lead { max-width: 760px; color: var(--gray-500); font-size: 1.08rem; line-height: 1.75; }
.section-dark .lead { color: #c5c7ca; }
.heading { max-width: 880px; }
.heading-centered { margin-inline: auto; text-align: center; }
.heading-centered .lead { margin-inline: auto; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid transparent;
  border-radius: 4px;
  padding: 12px 21px;
  background: var(--yellow);
  color: var(--ink);
  font-size: .83rem;
  font-weight: 800;
  letter-spacing: .055em;
  text-align: center;
  text-transform: uppercase;
  transition: .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--white); }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: #30343a; }
.button-outline { border-color: currentColor; background: transparent; color: inherit; }
.button-outline:hover { border-color: var(--yellow); background: var(--yellow); color: var(--ink); }

.announcement { background: var(--yellow); color: var(--ink); }
.announcement-inner {
  display: flex;
  min-height: 35px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 6px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(17, 19, 22, .98);
  color: var(--white);
  backdrop-filter: blur(12px);
}
.header-inner { display: flex; min-height: 106px; align-items: center; gap: 22px; }
.site-logo { flex: 0 0 auto; }
.site-logo img { width: 153px; height: 102px; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.desktop-nav > a, .nav-drop > summary {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 12px;
  font-size: .83rem;
  font-weight: 700;
  letter-spacing: .025em;
  list-style: none;
}
.desktop-nav a:hover, .nav-drop > summary:hover { color: var(--yellow); }
.nav-drop { position: relative; }
.nav-drop > summary { cursor: pointer; }
.nav-drop > summary::-webkit-details-marker { display: none; }
.nav-drop > summary::after { margin-left: 7px; content: "▾"; font-size: .72rem; }
.nav-drop-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  display: none;
  width: 520px;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  transform: translateX(-50%);
  border: 1px solid #36393f;
  border-top: 4px solid var(--yellow);
  background: var(--ink-2);
  padding: 14px;
  box-shadow: var(--shadow);
}
.nav-drop[open] .nav-drop-panel { display: grid; }
.nav-drop-panel a { padding: 10px 12px; color: #e8e8e8; font-size: .82rem; font-weight: 700; }
.nav-drop-panel a:hover { background: var(--yellow); color: var(--ink); }
.header-phone { border-left: 1px solid rgba(255,255,255,.16); padding-left: 18px; white-space: nowrap; }
.header-phone small { display: block; color: #aeb1b6; font-size: .59rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.header-phone strong, .header-phone a { display: block; margin-top: 2px; font-size: .86rem; font-weight: 700; letter-spacing: .02em; }
.header-quote { flex: 0 0 auto; }
.menu-button { display: none; margin-left: auto; border: 1px solid rgba(255,255,255,.25); background: transparent; color: white; padding: 9px 12px; font-weight: 800; }

.mobile-menu { display: none; border-top: 1px solid rgba(255,255,255,.12); padding: 14px 20px 22px; background: var(--ink); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; border-bottom: 1px solid rgba(255,255,255,.1); padding: 11px 2px; font-size: .91rem; font-weight: 700; }
.mobile-menu details { border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-menu summary { padding: 11px 2px; cursor: pointer; font-weight: 700; }
.mobile-makes { display: grid; grid-template-columns: 1fr 1fr; gap: 1px 15px; padding-bottom: 10px; }
.mobile-makes a { border: 0; padding: 7px 2px; color: #c9cbd0; font-size: .79rem; }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #0b0d0f;
  background-position: center;
  background-size: cover;
  color: var(--white);
}
.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(5,6,8,.95) 0%, rgba(5,6,8,.76) 43%, rgba(5,6,8,.42) 72%, rgba(5,6,8,.68) 100%);
}
.hero-home .hero-inner { min-height: 650px; }
.hero-inner {
  display: grid;
  min-height: 445px;
  align-items: center;
  gap: clamp(30px, 5vw, 72px);
  padding-block: clamp(46px, 6vw, 78px);
}
.hero-with-form .hero-inner { grid-template-columns: minmax(0, 1.05fr) minmax(420px, .82fr); }
.hero-copy { max-width: 760px; }
.hero-copy p { max-width: 680px; color: #d6d8dc; font-size: 1.06rem; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 13px 24px; margin-top: 24px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; font-size: .84rem; font-weight: 700; }
.hero-trust span::before { display: grid; width: 22px; height: 22px; place-items: center; border-radius: 50%; background: var(--yellow); color: var(--ink); content: "✓"; }
.page-hero .hero-copy { max-width: 760px; }
.page-hero h1 { max-width: 900px; font-size: clamp(2.5rem, 5vw, 4.7rem); }
.breadcrumbs { margin-bottom: 18px; color: #c2c4c8; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumbs a:hover { color: var(--yellow); }

.lead-form {
  border-top: 6px solid var(--yellow);
  border-radius: 4px;
  background: #f4f4ef;
  padding: clamp(20px, 3vw, 28px);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.lead-form-title { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.lead-form-title h2 { margin: 2px 0 0; font-size: clamp(1.55rem, 2.5vw, 2.15rem); }
.lead-form-title p { margin: 0; color: var(--yellow-dark); font-size: .67rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { display: block; margin-bottom: 5px; font-size: .74rem; font-weight: 800; letter-spacing: .025em; }
.form-field .optional-label { font-weight: 600; letter-spacing: 0; color: #6b6b66; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #bdbdb5;
  border-radius: 4px;
  background: white;
  padding: 10px 11px;
  color: var(--ink);
  font-size: .88rem;
}
.form-field textarea { min-height: 88px; resize: vertical; }
.form-field input[aria-invalid="true"], .form-field select[aria-invalid="true"] { border-color: var(--danger); }
.field-error { display: block; margin-top: 3px; color: var(--danger); font-size: .69rem; font-weight: 700; }
.form-status { display: none; margin: 14px 0 0; border-left: 4px solid var(--danger); background: #fff1f0; padding: 9px 11px; color: #8f1b13; font-size: .79rem; font-weight: 700; }
.form-status.show { display: block; }
.form-submit { width: 100%; margin-top: 16px; }
.form-note { display: flex; gap: 8px; margin: 10px 0 0; color: #62656a; font-size: .68rem; line-height: 1.55; }
.form-honeypot { position: absolute; left: -9999px; }

.trust-strip { border-block: 1px solid #303339; background: var(--ink-2); color: white; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { min-height: 106px; border-right: 1px solid rgba(255,255,255,.1); padding: 22px; }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; margin-bottom: 2px; font-size: .83rem; letter-spacing: .035em; text-transform: uppercase; }
.trust-item span { color: #aeb1b6; font-size: .76rem; }
.trust-icon { margin-bottom: 9px; color: var(--yellow); font-size: 1.4rem; }

.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 28px; }
.part-card { position: relative; display: grid; min-height: 310px; grid-template-columns: minmax(190px, .82fr) minmax(0, 1.18fr); overflow: hidden; border: 1px solid var(--gray-300); background: white; }
.part-card.dark { border-color: var(--ink); background: var(--ink); color: white; }
.part-card::after { position: absolute; top: 0; right: 0; width: 8px; height: 100%; background: var(--yellow); content: ""; }
.part-card-media { min-height: 310px; overflow: hidden; background: #202328; }
.part-card-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .35s ease; }
.part-card:hover .part-card-media img { transform: scale(1.04); }
.part-card-body { display: flex; flex-direction: column; justify-content: center; padding: clamp(24px, 3vw, 36px); }
.part-kicker { color: var(--yellow-dark); font-size: .67rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.part-card.dark .part-kicker { color: var(--yellow); }
.part-card h3 { margin: 12px 0; font-size: clamp(1.65rem, 2.35vw, 2.45rem); }
.part-card p { max-width: 560px; color: var(--gray-500); }
.part-card.dark p { color: #b5b8bc; }
.card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; font-size: .8rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }

.make-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 32px; }
.make-card {
  display: flex;
  min-height: 105px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--gray-300);
  background: var(--gray-50);
  padding: 18px;
  transition: .2s ease;
}
.make-card:hover { border-color: var(--ink); background: var(--yellow); transform: translateY(-2px); }
.make-card small { display: block; margin-bottom: 4px; color: var(--gray-500); font-size: .59rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.make-card strong { font-size: .92rem; line-height: 1.35; }
.make-card b { font-size: 1.25rem; }
.section-dark .make-card { border-color: #3d4148; background: #f8f8f4; color: var(--ink); }
.section-dark .make-card:hover { border-color: var(--yellow); background: var(--yellow); }
.section-dark .make-card small { color: #5d6168; }

.steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 28px; }
.steps::before { position: absolute; top: 42px; right: 8%; left: 8%; height: 2px; background: rgba(17,19,22,.24); content: ""; }
.step { position: relative; min-height: 230px; border: 1px solid rgba(17,19,22,.18); border-top: 5px solid var(--ink); border-radius: 5px; background: rgba(255,255,255,.78); padding: 24px; box-shadow: 0 12px 28px rgba(66,52,0,.08); }
.step-number { position: absolute; top: 14px; right: 17px; color: rgba(17,19,22,.2); font-size: 1rem; font-weight: 900; letter-spacing: .08em; }
.step-icon { position: relative; z-index: 1; display: grid; width: 52px; height: 52px; place-items: center; border: 3px solid var(--yellow); border-radius: 50%; background: var(--ink); color: var(--yellow); font-size: .75rem; font-weight: 900; letter-spacing: .05em; }
.step h3 { margin: 24px 0 10px; font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; }
.step p { margin-bottom: 0; color: #4e430f; font-size: .84rem; }

.feature-split { display: grid; grid-template-columns: .9fr 1.1fr; }
.feature-intro { padding: clamp(48px, 6vw, 78px) max(20px, calc((100vw - var(--content)) / 2)); padding-right: clamp(30px, 5vw, 70px); }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.1); }
.feature { background: var(--ink-2); padding: clamp(28px, 4vw, 44px); }
.feature-icon { color: var(--yellow); font-size: 1.6rem; }
.feature h3 { margin-top: 20px; font-size: 1rem; text-transform: uppercase; }
.feature p { color: #adb0b5; font-size: .86rem; }

.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(330px, .72fr); align-items: start; gap: clamp(28px, 5vw, 68px); }
.content-grid.reverse { grid-template-columns: minmax(330px, .72fr) minmax(0, 1fr); }
.content-grid.reverse .content-media { order: -1; }
.content-copy ul { padding-left: 20px; }
.content-copy li { margin-bottom: 8px; }
.content-media img { width: 100%; border-radius: 4px; box-shadow: var(--shadow); }
.part-detail-media img { aspect-ratio: 16 / 10; object-fit: cover; object-position: center; }
.media-crop-right { overflow: hidden; border-radius: 4px; box-shadow: var(--shadow); }
.media-crop-right img { aspect-ratio: 1.24 / 1; object-fit: cover; object-position: right center; border-radius: 0; box-shadow: none; }
.about-overview { align-items: center; }

.brand-parts { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 30px; }
.brand-part-card { overflow: hidden; border: 1px solid var(--gray-300); background: white; }
.brand-part-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.brand-part-body { padding: 24px; }
.brand-part-body h3 { font-size: 1.55rem; }
.brand-part-body p { color: var(--gray-500); font-size: .88rem; }
.brand-models-layout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(300px, .55fr); align-items: center; gap: clamp(28px, 4vw, 52px); }
.brand-models-layout .tag-list { margin-bottom: 0; }

.tag-list { display: flex; flex-wrap: wrap; gap: 9px; margin: 20px 0 0; padding: 0; list-style: none; }
.tag-list li { border: 1px solid var(--gray-300); background: white; padding: 7px 11px; font-size: .75rem; font-weight: 700; }
.section-dark .tag-list li { border-color: #3b3e43; background: var(--ink-2); }

.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 30px; }
.info-card { border: 1px solid var(--gray-300); background: white; padding: 25px; }
.info-card h3 { font-size: 1.08rem; }
.info-card p { color: var(--gray-500); font-size: .85rem; }
.service-highlights { display: grid; gap: 12px; }
.service-card { display: grid; grid-template-columns: 58px 1fr; align-items: center; gap: 18px; border: 1px solid rgba(255,255,255,.14); border-left: 5px solid var(--yellow); border-radius: 4px; background: #202328; padding: 20px; }
.service-icon { display: grid; width: 52px; height: 52px; place-items: center; border: 1px solid rgba(245,196,0,.45); border-radius: 50%; color: var(--yellow); font-size: .76rem; font-weight: 900; letter-spacing: .08em; }
.service-card h3 { margin: 0 0 5px; color: white; font-size: 1rem; text-transform: uppercase; }
.service-card p { margin: 0; color: #b9bcc1; font-size: .84rem; }

.contact-overview { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr); align-items: stretch; gap: clamp(30px, 5vw, 64px); }
.contact-content { align-self: center; }
.contact-cards { display: grid; gap: 12px; margin-top: 24px; }
.contact-card { display: grid; grid-template-columns: 54px 1fr; align-items: center; gap: 16px; border: 1px solid var(--gray-300); border-left: 5px solid var(--yellow); border-radius: 4px; background: var(--gray-50); padding: 16px 18px; transition: .2s ease; }
a.contact-card:hover { border-color: var(--ink); background: white; transform: translateX(3px); }
.contact-icon { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; background: var(--ink); color: var(--yellow); font-size: 1rem; font-weight: 900; }
.contact-card small { display: block; margin-bottom: 2px; color: var(--gray-500); font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-card strong { display: block; font-size: .92rem; line-height: 1.45; }
.contact-media, .contact-media img { height: 100%; min-height: 390px; }

.policy-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); align-items: start; gap: 45px; }
.policy-nav { position: sticky; top: 132px; border-top: 5px solid var(--yellow); background: white; padding: 18px; }
.policy-nav a { display: block; border-bottom: 1px solid var(--gray-100); padding: 9px 2px; font-size: .78rem; font-weight: 700; }
.policy-copy { max-width: 860px; }
.policy-copy section { padding-block: 0 34px; }
.policy-copy h2 { font-size: 1.7rem; }
.policy-copy h3 { margin-top: 24px; font-size: 1.08rem; }
.policy-copy p, .policy-copy li { color: #4f5258; }
.policy-copy ul, .policy-copy ol { margin: 0 0 20px; padding-left: 1.35rem; }
.policy-copy li + li { margin-top: 9px; }
.policy-copy a { color: #705a00; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.policy-copy strong { color: var(--ink); }

.faq-list { margin-top: 26px; border-top: 1px solid var(--gray-300); }
.faq-list details { border-bottom: 1px solid var(--gray-300); }
.faq-list summary { cursor: pointer; padding: 18px 0; font-weight: 800; line-height: 1.4; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { float: right; margin-left: 20px; content: "+"; color: var(--yellow-dark); font-size: 1.25rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-answer { padding: 0 38px 17px 0; color: var(--gray-500); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 30px; }
.blog-card { border: 1px solid var(--gray-300); background: white; padding: 25px; }
.blog-card small { color: var(--yellow-dark); font-size: .66rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.blog-card h2, .blog-card h3 { margin-top: 10px; font-size: 1.3rem; }
.blog-card p { color: var(--gray-500); font-size: .85rem; }

.final-cta { display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: clamp(28px, 5vw, 64px); }
.callout { border-left: 5px solid var(--yellow); padding-left: 18px; }
.callout small { display: block; color: var(--gray-500); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.callout strong, .callout a { display: block; margin-top: 4px; font-size: 1.2rem; font-weight: 700; }

.site-footer { border-top: 6px solid var(--yellow); background: #0c0e10; color: white; }
.footer-main { display: grid; grid-template-columns: minmax(250px, .72fr) minmax(0, 2.28fr); gap: clamp(32px, 5vw, 68px); padding-block: 32px; }
.footer-nav-grid { display: grid; grid-template-columns: .85fr 1.45fr 1.05fr 1.05fr; gap: 26px; }
.footer-logo { width: min(100%, 260px); height: auto; object-fit: contain; }
.footer-about { max-width: 360px; margin: 12px 0; color: #aeb1b6; font-size: .78rem; }
.footer-title { margin-bottom: 16px; color: var(--yellow); font-size: .83rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.footer-links { display: grid; gap: 7px; }
.footer-links.cols { grid-template-columns: 1fr 1fr; gap: 7px 15px; }
.footer-links a, .footer-contact span, .footer-contact a { color: #c4c6ca; font-size: .78rem; }
.footer-links a:hover { color: var(--yellow); }
.footer-contact { display: grid; gap: 7px; }
.footer-links .directory-link { color: var(--yellow); font-weight: 800; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 20px; padding-block: 17px; color: #777b82; font-size: .68rem; }

.directory-page { display: grid; gap: 34px; }
.directory-group { scroll-margin-top: 110px; }
.directory-group + .directory-group { border-top: 1px solid var(--gray-300); padding-top: 32px; }
.directory-group h2 { font-size: clamp(1.5rem, 2.4vw, 2.15rem); }
.directory-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.directory-grid a { display: flex; min-height: 62px; align-items: center; justify-content: space-between; gap: 16px; border: 1px solid var(--gray-300); border-left: 4px solid var(--yellow); background: var(--gray-50); padding: 13px 15px; font-size: .82rem; font-weight: 700; }
.directory-grid a:hover { border-color: var(--ink); background: var(--yellow); }

.mobile-actions { display: none; }
.notice { border-left: 5px solid var(--yellow); background: #fff9d7; padding: 16px 18px; }
.notice strong { display: block; margin-bottom: 4px; }
.notice p { margin: 0; color: #5c4c12; font-size: .83rem; }
.success-card { max-width: 740px; margin-inline: auto; border-top: 7px solid var(--yellow); background: white; padding: clamp(28px, 5vw, 56px); text-align: center; box-shadow: var(--shadow); }
.success-icon { display: grid; width: 70px; height: 70px; margin: 0 auto 20px; place-items: center; border-radius: 50%; background: var(--yellow); font-size: 2rem; }

@media (max-width: 1120px) {
  .desktop-nav, .header-phone, .header-quote { display: none; }
  .menu-button { display: block; }
  .hero-with-form .hero-inner { grid-template-columns: minmax(0, 1fr) minmax(390px, .9fr); gap: 30px; }
  .make-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { display: grid; grid-template-columns: 250px 1fr; align-items: start; gap: 12px 28px; }
  .footer-brand > a { grid-row: 1 / 3; }
  .footer-about { margin-top: 0; }
  .footer-contact { grid-column: 2; }
}

@media (max-width: 860px) {
  body { padding-bottom: 62px; }
  .announcement-inner span:last-child { display: none; }
  .site-logo img { width: 135px; height: 90px; }
  .header-inner { min-height: 94px; }
  .hero-home .hero-inner, .hero-inner { min-height: 0; }
  .hero-with-form .hero-inner, .content-grid, .content-grid.reverse, .final-cta, .policy-layout, .brand-models-layout, .contact-overview { grid-template-columns: 1fr; }
  .content-grid.reverse .content-media { order: initial; }
  .hero-copy { max-width: 760px; }
  .trust-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .make-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-split { grid-template-columns: 1fr; }
  .feature-intro { padding-inline: 20px; }
  .info-cards, .blog-grid { grid-template-columns: 1fr 1fr; }
  .footer-nav-grid { grid-template-columns: 1fr 1fr; }
  .directory-grid { grid-template-columns: 1fr 1fr; }
  .policy-nav { position: static; }
  .mobile-actions { position: fixed; z-index: 60; right: 0; bottom: 0; left: 0; display: grid; height: 62px; grid-template-columns: 1fr 1fr; border-top: 1px solid #34373c; background: var(--ink); }
  .mobile-actions span, .mobile-actions a { display: flex; align-items: center; justify-content: center; padding: 8px; color: white; font-size: .75rem; font-weight: 800; letter-spacing: .04em; text-align: center; text-transform: uppercase; }
  .mobile-actions a { background: var(--yellow); color: var(--ink); }
}

@media (max-width: 620px) {
  body { font-size: 15px; letter-spacing: .014em; }
  .container { width: min(calc(100% - 30px), var(--content)); }
  .section { padding-block: 36px; }
  .section-tight, .section-compact { padding-block: 30px; }
  h1 { font-size: clamp(2.25rem, 11vw, 3.35rem); line-height: 1.08; letter-spacing: .016em; }
  h2 { font-size: clamp(1.8rem, 8.7vw, 2.55rem); line-height: 1.12; }
  .hero-inner { padding-block: 40px; }
  .hero::before { background: linear-gradient(90deg, rgba(5,6,8,.96), rgba(5,6,8,.72)); }
  .page-hero h1 { font-size: clamp(2.25rem, 10vw, 3.2rem); }
  .form-grid, .card-grid, .brand-parts, .info-cards, .blog-grid, .footer-main, .footer-nav-grid, .feature-grid, .directory-grid { grid-template-columns: 1fr; }
  .part-card { grid-template-columns: 1fr; }
  .part-card-media { min-height: 220px; }
  .lead-form { padding: 18px; }
  .make-grid { grid-template-columns: 1fr 1fr; }
  .make-card { min-height: 92px; padding: 13px; }
  .make-card strong { font-size: .82rem; }
  .trust-grid, .steps { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .step { min-height: 220px; }
  .steps::before { display: none; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .footer-links.cols { grid-template-columns: 1fr 1fr; }
  .footer-brand { display: block; }
  .footer-brand > a, .footer-contact { grid-row: auto; grid-column: auto; }
  .footer-logo { width: 230px; }
  .footer-bottom .container { flex-direction: column; }
}
