:root {
  --navy-950: #061321;
  --navy-900: #0a1d31;
  --navy-800: #102c49;
  --navy-700: #174268;
  --blue-100: #eaf2f8;
  --blue-50: #f5f9fc;
  --slate-900: #17212b;
  --slate-700: #445464;
  --slate-600: #607080;
  --slate-400: #9aa8b5;
  --slate-300: #c8d1da;
  --slate-200: #dfe6ec;
  --slate-100: #edf2f6;
  --white: #ffffff;
  --gold: #f3a536;
  --gold-dark: #d98713;
  --gold-soft: #fff4df;
  --green: #1f9d69;
  --green-soft: #eaf8f2;
  --red: #c94444;
  --shadow-sm: 0 8px 24px rgba(7, 28, 48, 0.08);
  --shadow-md: 0 18px 50px rgba(7, 28, 48, 0.12);
  --shadow-lg: 0 28px 80px rgba(2, 15, 28, 0.24);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --header-height: 88px;
  --transition: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--slate-900);
  background: var(--white);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--navy-950);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.14;
}

h1 {
  font-size: clamp(2.45rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.15rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  color: var(--slate-600);
}

ul {
  margin-top: 0;
  padding-left: 1.2rem;
}

::selection {
  color: var(--navy-950);
  background: #ffd998;
}

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

.section {
  padding: 60px 0;
}

.section-sm {
  padding: 44px 0;
}

.section-muted {
  background: var(--blue-50);
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 86% 20%, rgba(243, 165, 54, 0.16), transparent 24%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: var(--white);
}

.section-dark p {
  color: #c8d7e4;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  background: currentColor;
  content: "";
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 10px;
}

.section-heading p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.text-left {
  margin-inline: 0;
  text-align: left;
}

.text-left p {
  margin-inline: 0;
}

.text-center {
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 1000;
  padding: 11px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 0 0 8px 8px;
}

.skip-link:focus {
  top: 0;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  padding: 13px 22px;
  gap: 9px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--navy-800);
  border: 1px solid var(--navy-800);
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1;
  text-align: center;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.btn:hover,
.btn:focus-visible {
  background: var(--navy-700);
  border-color: var(--navy-700);
  box-shadow: 0 10px 24px rgba(10, 42, 70, 0.22);
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--navy-950);
  background: var(--gold);
  border-color: var(--gold);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  color: var(--navy-950);
  background: #ffb84e;
  border-color: #ffb84e;
  box-shadow: 0 10px 28px rgba(243, 165, 54, 0.28);
}

.btn-secondary {
  color: var(--navy-900);
  background: var(--white);
  border-color: var(--slate-300);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  color: var(--navy-900);
  background: var(--blue-50);
  border-color: var(--navy-700);
}

.btn-outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.38);
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
  color: var(--navy-950);
  background: var(--white);
  border-color: var(--white);
}

.btn-block {
  width: 100%;
}

.btn:disabled {
  cursor: wait;
  opacity: 0.68;
}

.btn svg,
.inline-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(223, 230, 236, 0.8);
  backdrop-filter: blur(14px);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 8px 30px rgba(6, 19, 33, 0.08);
}

.nav-wrap {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 4px 0;
}

.brand-logo-frame {
  display: block;
  width: 150px;
  height: 80px;
  flex: 0 0 auto;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  gap: 3px;
  align-items: center;
}

.main-nav a:not(.btn) {
  position: relative;
  padding: 10px 12px;
  color: var(--slate-700);
  font-size: 0.91rem;
  font-weight: 650;
}

.main-nav a:not(.btn)::after {
  position: absolute;
  right: 12px;
  bottom: 4px;
  left: 12px;
  height: 2px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity var(--transition), transform var(--transition);
}

.main-nav a:not(.btn):hover,
.main-nav a:not(.btn).active {
  color: var(--navy-900);
}

.main-nav a:not(.btn):hover::after,
.main-nav a:not(.btn).active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta {
  min-height: 44px;
  margin-left: 10px;
  padding: 11px 18px;
}

.menu-toggle {
  display: none;
  width: 45px;
  height: 45px;
  padding: 0;
  background: var(--blue-50);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 34px;
  background:
    radial-gradient(circle at 72% 20%, rgba(243, 165, 54, 0.12), transparent 22%),
    linear-gradient(145deg, #f9fbfd 0%, #edf4f9 56%, #f8fafc 100%);
}

.hero::before {
  position: absolute;
  top: -180px;
  left: -160px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(19, 70, 110, 0.08), transparent 67%);
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  gap: 42px;
  align-items: center;
}

.hero-grid > *,
.split-grid > *,
.checkout-layout > *,
.contact-grid > *,
.sample-cover > * {
  min-width: 0;
}

.hero-copy h1 {
  max-width: 760px;
  margin-bottom: 17px;
}

.hero-copy h1 span {
  color: var(--navy-700);
}

.hero-copy > p {
  max-width: 700px;
  margin-bottom: 20px;
  font-size: 1.08rem;
}

.hero-proof {
  display: flex;
  margin-bottom: 22px;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.proof-item {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--navy-800);
  font-size: 0.88rem;
  font-weight: 700;
}

.proof-check {
  display: grid;
  width: 22px;
  height: 22px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 0.72rem;
  place-items: center;
}

.hero-form {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.hero-form-title {
  display: flex;
  margin-bottom: 14px;
  gap: 10px;
  align-items: center;
  color: var(--navy-950);
  font-weight: 800;
}

.hero-form-title .mini-shield {
  display: grid;
  width: 32px;
  height: 32px;
  color: var(--gold-dark);
  background: var(--gold-soft);
  border-radius: 9px;
  place-items: center;
}

.hero-form-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 12px;
}

.hero-form .form-group {
  margin: 0;
}

.hero-form .vin-field,
.hero-form .form-message {
  grid-column: 1 / -1;
}

.hero-form .package-field,
.hero-form .form-submit {
  grid-column: auto;
}

.hero-form .form-submit {
  align-self: end;
}

.hero-form .form-note {
  grid-column: 1 / -1;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hero-form .hero-form-message {
  display: none;
  margin: 2px 0 0;
  padding: 10px 12px;
  color: #8b2525;
  background: #fff1f1;
  border: 1px solid #f0caca;
  border-radius: 10px;
  font-size: 0.78rem;
}

.hero-form .hero-form-message.show {
  display: block;
}

.hero-form .hero-form-message.is-success {
  color: #126444;
  background: var(--green-soft);
  border-color: #bfe8d7;
}

.hero-visual {
  position: relative;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 34px;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 18, 31, 0.18));
  content: "";
  pointer-events: none;
}

.hero-image {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
}

.floating-stat {
  position: absolute;
  right: -24px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  min-width: 215px;
  padding: 16px 18px;
  gap: 12px;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.floating-stat-icon {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 12px;
  place-items: center;
}

.floating-stat strong,
.floating-stat small {
  display: block;
}

.floating-stat strong {
  color: var(--navy-950);
  font-size: 0.93rem;
}

.floating-stat small {
  color: var(--slate-600);
  font-size: 0.75rem;
}

.trust-bar {
  position: relative;
  z-index: 3;
  margin-top: 34px;
  padding: 14px 0;
  background: var(--navy-950);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.trust-item {
  display: flex;
  padding: 4px 10px;
  gap: 10px;
  align-items: center;
  justify-content: center;
  color: #e7eef5;
  font-size: 0.83rem;
  font-weight: 700;
  text-align: center;
}

.trust-item svg {
  width: 21px;
  height: 21px;
  color: var(--gold);
  flex: 0 0 auto;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card:hover {
  border-color: #bdccd8;
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.icon-box {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
  color: var(--gold-dark);
  background: var(--gold-soft);
  border-radius: 14px;
  place-items: center;
}

.icon-box svg {
  width: 25px;
  height: 25px;
}

.feature-card h3 {
  margin-bottom: 10px;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.report-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
}

.report-feature {
  display: flex;
  min-height: 66px;
  padding: 14px 16px;
  gap: 13px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 13px;
  box-shadow: 0 5px 16px rgba(7, 28, 48, 0.04);
}

.report-feature svg {
  width: 21px;
  height: 21px;
  margin-top: 2px;
  color: var(--green);
  flex: 0 0 auto;
}

.report-feature span {
  color: var(--slate-700);
  font-size: 0.91rem;
  font-weight: 650;
  line-height: 1.45;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  padding: 14px 17px;
  color: var(--white);
  background: rgba(6, 19, 33, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 13px;
  font-size: 0.82rem;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.steps-grid::before {
  position: absolute;
  top: 32px;
  right: 16%;
  left: 16%;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--slate-300) 0 8px, transparent 8px 16px);
  content: "";
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-number {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  color: var(--navy-950);
  background: var(--gold);
  border: 8px solid var(--white);
  border-radius: 50%;
  font-weight: 850;
  box-shadow: 0 8px 22px rgba(7, 28, 48, 0.12);
  place-items: center;
}

.step h3 {
  margin-bottom: 9px;
}

.step p {
  max-width: 300px;
  margin: 0 auto;
  font-size: 0.92rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  padding: 26px;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.price-card.featured {
  border: 2px solid var(--gold);
  box-shadow: 0 22px 58px rgba(10, 42, 70, 0.16);
  transform: translateY(-6px);
}

.popular-label {
  position: absolute;
  top: -14px;
  left: 50%;
  padding: 7px 16px;
  color: var(--navy-950);
  background: var(--gold);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.price-kicker {
  margin-bottom: 8px;
  color: var(--slate-600);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-card h3 {
  margin-bottom: 6px;
  font-size: 1.48rem;
}

.price {
  margin: 15px 0 16px;
  color: var(--navy-950);
  font-size: 2.65rem;
  font-weight: 850;
  letter-spacing: -0.05em;
  line-height: 1;
}

.price small {
  color: var(--slate-600);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0;
}

.price-summary {
  min-height: 0;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.check-list {
  margin: 0 0 21px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 27px;
  color: var(--slate-700);
  font-size: 0.89rem;
  line-height: 1.45;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 50%;
  content: "✓";
  font-size: 0.7rem;
  font-weight: 900;
  place-items: center;
}

.price-card .btn {
  margin-top: auto;
}

.price-card .microcopy {
  margin: 10px 0 0;
  color: var(--slate-600);
  font-size: 0.75rem;
  text-align: center;
}

.report-preview-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.report-preview-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.report-preview-meta {
  display: flex;
  padding: 19px 22px;
  align-items: center;
  justify-content: space-between;
}

.report-preview-meta strong {
  display: block;
  color: var(--navy-950);
}

.report-preview-meta span {
  color: var(--slate-600);
  font-size: 0.8rem;
}

.mini-link {
  color: var(--navy-700);
  font-size: 0.85rem;
  font-weight: 800;
}

.mini-link:hover {
  color: var(--gold-dark);
}

.accordion {
  display: grid;
  max-width: 860px;
  margin: 0 auto;
  gap: 9px;
}

.accordion-item {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(7, 28, 48, 0.045);
}

.accordion-button {
  display: flex;
  width: 100%;
  padding: 17px 20px;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  color: var(--navy-950);
  background: transparent;
  border: 0;
  font-weight: 750;
  text-align: left;
}

.accordion-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.accordion-icon::before,
.accordion-icon::after {
  position: absolute;
  top: 10px;
  left: 4px;
  width: 14px;
  height: 2px;
  background: var(--gold-dark);
  border-radius: 2px;
  content: "";
  transition: transform var(--transition);
}

.accordion-icon::after {
  transform: rotate(90deg);
}

.accordion-button[aria-expanded="true"] .accordion-icon::after {
  transform: rotate(0);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 240ms ease;
}

.accordion-panel > div {
  overflow: hidden;
}

.accordion-button[aria-expanded="true"] + .accordion-panel {
  grid-template-rows: 1fr;
}

.accordion-panel p {
  margin: 0;
  padding: 0 20px 17px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 40px 44px;
  background:
    radial-gradient(circle at 90% 20%, rgba(243, 165, 54, 0.24), transparent 23%),
    linear-gradient(125deg, var(--navy-950), var(--navy-700));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.cta-band::after {
  position: absolute;
  right: -70px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.cta-grid {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: space-between;
}

.cta-copy {
  max-width: 730px;
}

.cta-copy h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(1.85rem, 3vw, 2.75rem);
}

.cta-copy p {
  margin: 0;
  color: #cfdae5;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 12%, rgba(243, 165, 54, 0.2), transparent 25%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.page-hero::after {
  position: absolute;
  right: -80px;
  bottom: -210px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.page-hero h1 {
  margin-bottom: 13px;
  color: var(--white);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.page-hero p {
  max-width: 680px;
  margin-bottom: 0;
  color: #c8d7e4;
  font-size: 1.08rem;
}

.breadcrumb {
  display: flex;
  margin-bottom: 16px;
  gap: 8px;
  align-items: center;
  color: #aebfce;
  font-size: 0.82rem;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--gold);
}

.legal-shell {
  max-width: 920px;
}

.legal-card {
  padding: 42px 46px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.legal-intro {
  margin-bottom: 30px;
  padding: 20px 22px;
  color: var(--navy-800);
  background: var(--blue-50);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  font-size: 1.04rem;
}

.legal-section {
  padding: 27px 0;
  border-top: 1px solid var(--slate-200);
}

.legal-section:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.legal-section:last-child {
  padding-bottom: 0;
}

.legal-section h2 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.5vw, 1.72rem);
}

.legal-section h3 {
  margin: 20px 0 7px;
  font-size: 1.02rem;
}

.legal-section p {
  margin-bottom: 13px;
  color: var(--slate-700);
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

.legal-section li {
  margin-bottom: 8px;
  color: var(--slate-700);
}

.legal-section a {
  color: var(--navy-700);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(217, 135, 19, 0.45);
  text-underline-offset: 3px;
}

.legal-notice {
  margin-top: 17px;
  padding: 17px 19px;
  background: var(--gold-soft);
  border: 1px solid rgba(217, 135, 19, 0.28);
  border-radius: 12px;
}

.legal-notice strong {
  color: var(--navy-950);
}

.pricing-note {
  max-width: 780px;
  margin: 24px auto 0;
  padding: 14px 18px;
  color: var(--slate-700);
  background: var(--blue-50);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  font-size: 0.85rem;
  text-align: center;
}

.comparison-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--slate-200);
  text-align: center;
}

.comparison-table th {
  color: var(--navy-950);
  background: var(--blue-50);
  font-size: 0.88rem;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  width: 43%;
  color: var(--slate-700);
  text-align: left;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.table-check {
  color: var(--green);
  font-weight: 900;
}

.table-dash {
  color: var(--slate-400);
}

.sample-shell {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.sample-cover {
  display: grid;
  padding: 30px;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  color: var(--white);
  background: linear-gradient(130deg, var(--navy-950), var(--navy-700));
}

.sample-cover h2,
.sample-cover p {
  color: var(--white);
}

.sample-cover h2 {
  margin-bottom: 10px;
}

.sample-cover p {
  margin: 0;
  color: #c9d8e4;
}

.vehicle-summary {
  display: grid;
  padding: 18px;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
}

.vehicle-summary div {
  padding: 8px;
}

.vehicle-summary span,
.vehicle-summary strong {
  display: block;
}

.vehicle-summary span {
  color: #aebfce;
  font-size: 0.73rem;
  text-transform: uppercase;
}

.vehicle-summary strong {
  margin-top: 3px;
  color: var(--white);
  font-size: 0.92rem;
}

.sample-content {
  padding: 30px;
}

.report-score {
  display: grid;
  padding: 20px;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  background: var(--green-soft);
  border: 1px solid #ccebdd;
  border-radius: 16px;
}

.score-ring {
  display: grid;
  width: 88px;
  height: 88px;
  color: var(--navy-950);
  background: conic-gradient(var(--green) 0 83%, #d7e8e0 83% 100%);
  border-radius: 50%;
  font-size: 1.55rem;
  font-weight: 850;
  place-items: center;
}

.score-ring::after {
  position: absolute;
}

.score-inner {
  display: grid;
  width: 68px;
  height: 68px;
  background: var(--white);
  border-radius: 50%;
  place-items: center;
}

.report-score h3 {
  margin-bottom: 6px;
}

.report-score p {
  margin: 0;
  font-size: 0.9rem;
}

.report-section-grid {
  display: grid;
  margin-top: 18px;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.report-section-card {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 15px;
}

.report-section-card h3 {
  display: flex;
  margin-bottom: 15px;
  gap: 10px;
  align-items: center;
  font-size: 1.05rem;
}

.report-section-card h3 svg {
  width: 21px;
  height: 21px;
  color: var(--gold-dark);
}

.report-row {
  display: flex;
  padding: 10px 0;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--slate-100);
}

.report-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.report-row span {
  color: var(--slate-600);
  font-size: 0.83rem;
}

.report-row strong {
  color: var(--navy-900);
  font-size: 0.83rem;
  text-align: right;
}

.status-good {
  color: var(--green) !important;
}

.status-note {
  color: var(--gold-dark) !important;
}

.timeline {
  position: relative;
  margin: 10px 0 0 8px;
  padding-left: 25px;
}

.timeline::before {
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: 4px;
  width: 2px;
  background: var(--slate-200);
  content: "";
}

.timeline-item {
  position: relative;
  padding-bottom: 16px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  position: absolute;
  top: 5px;
  left: -26px;
  width: 11px;
  height: 11px;
  background: var(--gold);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--gold);
  content: "";
}

.timeline-item strong,
.timeline-item span {
  display: block;
}

.timeline-item strong {
  color: var(--navy-900);
  font-size: 0.87rem;
}

.timeline-item span {
  color: var(--slate-600);
  font-size: 0.78rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 34px;
  align-items: start;
}

.faq-aside {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding: 22px;
  background: var(--navy-950);
  border-radius: var(--radius-md);
}

.faq-aside h3 {
  margin-bottom: 10px;
  color: var(--white);
}

.faq-aside p {
  color: #bdcbd8;
  font-size: 0.87rem;
}

.faq-category {
  margin-bottom: 27px;
}

.faq-category:last-child {
  margin-bottom: 0;
}

.faq-category > h2 {
  margin-bottom: 14px;
  font-size: 1.55rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.blog-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.blog-card-image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--navy-800);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.04);
}

.blog-card:nth-child(2) .blog-card-image img {
  object-position: 50% center;
}

.blog-card:nth-child(3) .blog-card-image img {
  object-position: 100% center;
}

.blog-card:nth-child(4) .blog-card-image img {
  object-position: 0 center;
}

.blog-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 10px;
  color: var(--navy-950);
  background: var(--gold);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-card-body {
  padding: 20px;
}

.blog-meta {
  margin-bottom: 9px;
  color: var(--slate-600);
  font-size: 0.75rem;
}

.blog-card h2,
.blog-card h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.3;
}

.blog-card p {
  margin-bottom: 14px;
  font-size: 0.87rem;
}

.blog-card-body {
  display: flex;
  min-height: 218px;
  flex-direction: column;
}

.blog-card-body .btn {
  margin-top: auto;
  align-self: flex-start;
}

.blog-date {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.blog-date::before {
  width: 6px;
  height: 6px;
  background: var(--gold-dark);
  border-radius: 50%;
  content: "";
}

.article-hero {
  position: relative;
  overflow: hidden;
  padding: 50px 0 44px;
  background:
    radial-gradient(circle at 78% 22%, rgba(243, 165, 54, 0.16), transparent 24%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.article-hero .breadcrumb,
.article-hero .breadcrumb a {
  color: #bed0df;
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 40px;
  align-items: center;
}

.article-hero-copy h1 {
  margin: 11px 0 14px;
  color: var(--white);
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.article-hero-copy > p {
  max-width: 680px;
  margin-bottom: 17px;
  color: #c6d5e1;
  font-size: 1.02rem;
}

.article-meta {
  display: flex;
  gap: 12px 20px;
  flex-wrap: wrap;
  color: #d8e4ec;
  font-size: 0.78rem;
  font-weight: 700;
}

.article-meta span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.article-meta span::before {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  content: "";
}

.article-hero-image {
  overflow: hidden;
  aspect-ratio: 3 / 2;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
}

.article-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 760px);
  gap: 40px;
  justify-content: center;
  align-items: start;
}

.article-toc {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding: 20px;
  background: var(--blue-50);
  border: 1px solid var(--slate-200);
  border-radius: 16px;
}

.article-toc h2 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.article-toc ol {
  margin: 0;
  padding-left: 18px;
}

.article-toc li {
  margin: 9px 0;
  color: var(--slate-600);
  font-size: 0.79rem;
  line-height: 1.45;
}

.article-toc a:hover {
  color: var(--gold-dark);
}

.article-content {
  min-width: 0;
}

.article-content .article-lead {
  color: var(--navy-800);
  font-size: 1.17rem;
  line-height: 1.75;
}

.article-content h2 {
  margin: 36px 0 12px;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.article-content h3 {
  margin: 23px 0 8px;
  font-size: 1.2rem;
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.article-content p,
.article-content li {
  color: var(--slate-700);
  font-size: 1rem;
  line-height: 1.8;
}

.article-content p {
  margin-bottom: 15px;
}

.article-content ul,
.article-content ol {
  margin: 0 0 19px;
  padding-left: 24px;
}

.article-content li {
  margin-bottom: 7px;
}

.article-content a:not(.btn) {
  color: var(--navy-700);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(217, 135, 19, 0.45);
  text-underline-offset: 3px;
}

.article-callout {
  margin: 23px 0;
  padding: 20px 22px;
  background: var(--gold-soft);
  border-left: 4px solid var(--gold);
  border-radius: 0 14px 14px 0;
}

.article-callout strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy-950);
}

.article-callout p {
  margin: 0;
}

.article-faq {
  margin-top: 36px;
}

.article-faq details {
  margin-bottom: 9px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 13px;
}

.article-faq summary {
  padding: 15px 18px;
  color: var(--navy-950);
  cursor: pointer;
  font-weight: 800;
}

.article-faq details p {
  margin: 0;
  padding: 0 18px 15px;
}

.related-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.related-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.related-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.related-card-body {
  padding: 16px;
}

.related-card h3 {
  margin-bottom: 9px;
  font-size: 1rem;
  line-height: 1.35;
}

.related-card a {
  color: var(--navy-700);
  font-size: 0.78rem;
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 32px;
  align-items: start;
}

.contact-panel {
  padding: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 15%, rgba(243, 165, 54, 0.18), transparent 25%),
    var(--navy-950);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-panel h2,
.contact-panel p {
  color: var(--white);
}

.contact-panel p {
  color: #bfceda;
}

.contact-list {
  display: grid;
  margin-top: 20px;
  gap: 14px;
}

.contact-item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.contact-item-icon {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  place-items: center;
  flex: 0 0 auto;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
}

.contact-item strong,
.contact-item span {
  display: block;
}

.contact-item strong {
  color: var(--white);
  font-size: 0.9rem;
}

.contact-item span,
.contact-item a {
  color: #bfceda;
  font-size: 0.84rem;
}

.form-card {
  padding: 29px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-card h2 {
  margin-bottom: 10px;
}

.form-card > p {
  margin-bottom: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

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

.form-grid .form-group {
  margin: 0;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy-900);
  font-size: 0.84rem;
  font-weight: 750;
}

.field {
  width: 100%;
  min-height: 49px;
  padding: 12px 14px;
  color: var(--slate-900);
  background: var(--white);
  border: 1px solid var(--slate-300);
  border-radius: 10px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.field::placeholder {
  color: #93a0ab;
}

.field:hover {
  border-color: #9dadba;
}

.field:focus {
  background: var(--white);
  border-color: var(--navy-700);
  box-shadow: 0 0 0 4px rgba(23, 66, 104, 0.1);
}

.field.is-invalid,
.field:invalid:not(:placeholder-shown) {
  border-color: var(--red);
}

textarea.field {
  min-height: 110px;
  resize: vertical;
}

.field-help {
  display: flex;
  margin-top: 6px;
  justify-content: space-between;
  color: var(--slate-600);
  font-size: 0.72rem;
}

.field-error {
  display: none;
  margin-top: 6px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 650;
}

.field.is-invalid + .field-help + .field-error,
.field.is-invalid + .field-error {
  display: block;
}

.form-note {
  margin: 0;
  color: var(--slate-600);
  font-size: 0.75rem;
}

.form-message {
  display: none;
  margin-top: 14px;
  padding: 14px 16px;
  color: #116542;
  background: var(--green-soft);
  border: 1px solid #ccebdd;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 650;
}

.form-message.show {
  display: block;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  gap: 32px;
  align-items: start;
}

.checkout-progress {
  display: flex;
  margin-bottom: 24px;
  gap: 14px;
  align-items: center;
}

.progress-step {
  display: flex;
  gap: 9px;
  align-items: center;
  color: var(--slate-600);
  font-size: 0.78rem;
  font-weight: 750;
}

.progress-step span {
  display: grid;
  width: 28px;
  height: 28px;
  color: var(--white);
  background: var(--navy-800);
  border-radius: 50%;
  place-items: center;
}

.progress-line {
  width: 55px;
  height: 1px;
  background: var(--slate-300);
}

.order-summary {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.summary-head {
  padding: 23px;
  color: var(--white);
  background: var(--navy-950);
}

.summary-head h2 {
  margin: 0;
  color: var(--white);
  font-size: 1.2rem;
}

.summary-body {
  padding: 23px;
}

.summary-package {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--slate-200);
}

.summary-package strong,
.summary-package span {
  display: block;
}

.summary-package strong {
  color: var(--navy-950);
}

.summary-package span {
  color: var(--slate-600);
  font-size: 0.82rem;
}

.summary-price {
  display: flex;
  padding: 19px 0;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--slate-200);
}

.summary-price strong {
  color: var(--navy-950);
  font-size: 1.5rem;
}

.secure-box {
  display: flex;
  margin-top: 18px;
  padding: 13px;
  gap: 10px;
  align-items: flex-start;
  color: var(--slate-600);
  background: var(--blue-50);
  border-radius: 10px;
  font-size: 0.75rem;
}

.secure-box svg {
  width: 20px;
  height: 20px;
  color: var(--green);
  flex: 0 0 auto;
}

.checkout-disclaimer {
  margin: 16px 0 0;
  color: var(--slate-600);
  font-size: 0.72rem;
}

.site-footer {
  padding-top: 48px;
  color: var(--white);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  padding-bottom: 30px;
  grid-template-columns: 1.45fr 0.8fr 0.8fr 1fr;
  gap: 28px;
}

.footer-brand .brand {
  padding: 10px 14px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.footer-brand .brand-logo-frame {
  width: 210px;
  height: 140px;
}

.footer-brand .brand-logo {
  width: 100%;
  height: 100%;
}

.footer-brand > p {
  max-width: 350px;
  margin: 15px 0;
  color: #aebdcc;
  font-size: 0.86rem;
}

.footer-trust {
  display: flex;
  gap: 9px;
  align-items: center;
  color: #dbe6ef;
  font-size: 0.78rem;
  font-weight: 700;
}

.footer-trust svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.footer-column h3 {
  margin-bottom: 13px;
  color: var(--white);
  font-size: 0.96rem;
  letter-spacing: 0;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-links span {
  color: #aebdcc;
  font-size: 0.83rem;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-disclaimer {
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-disclaimer p {
  margin: 0;
  color: #8899a8;
  font-size: 0.73rem;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  padding: 16px 0;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: #8495a5;
  font-size: 0.73rem;
}

.footer-bottom-links {
  display: flex;
  gap: 8px 18px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .main-nav a:not(.btn) {
    padding-inline: 8px;
    font-size: 0.85rem;
  }

  .nav-cta {
    margin-left: 4px;
    padding-inline: 15px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 30px;
  }

  .hero-form-grid {
    grid-template-columns: 1fr;
  }

  .hero-form .form-note {
    grid-column: auto;
  }

  .floating-stat {
    right: 14px;
  }

  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
  }

  .menu-toggle {
    display: block;
  }

  .brand-logo-frame {
    width: 118px;
    height: 64px;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border-bottom: 1px solid var(--slate-200);
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: max-height 260ms ease, opacity 180ms ease, padding 260ms ease;
  }

  .main-nav.open {
    max-height: calc(100vh - var(--header-height));
    padding-top: 14px;
    padding-bottom: 22px;
    overflow-y: auto;
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a:not(.btn) {
    padding: 13px 8px;
    border-bottom: 1px solid var(--slate-100);
    font-size: 0.95rem;
  }

  .main-nav a:not(.btn)::after {
    display: none;
  }

  .nav-cta {
    margin: 14px 0 0;
  }

  .hero {
    padding-top: 46px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    max-width: 720px;
  }

  .hero-image {
    min-height: 350px;
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-item:nth-child(4),
  .trust-item:nth-child(5) {
    grid-column: span 1;
  }

  .card-grid,
  .pricing-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card.featured {
    transform: none;
  }

  .split-grid {
    gap: 30px;
  }

  .report-feature span {
    font-size: 0.85rem;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-aside {
    position: static;
  }

  .article-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .article-hero-image {
    max-width: 760px;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .article-toc {
    position: static;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 44px 0;
  }

  .section-sm {
    padding: 34px 0;
  }

  .section-heading {
    margin-bottom: 25px;
  }

  .hero {
    padding-top: 32px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 10.5vw, 3.2rem);
  }

  .eyebrow {
    max-width: 100%;
    font-size: 0.72rem;
    line-height: 1.45;
    white-space: normal;
  }

  .hero-copy > p {
    font-size: 1rem;
  }

  .hero-proof {
    margin-bottom: 18px;
    gap: 10px 13px;
  }

  .hero-form {
    padding: 17px;
  }

  .hero-image {
    min-height: 260px;
  }

  .floating-stat {
    right: 12px;
    bottom: 12px;
    min-width: 0;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item {
    justify-content: flex-start;
  }

  .trust-item:last-child {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .card-grid,
  .pricing-grid,
  .blog-grid,
  .related-posts,
  .split-grid,
  .report-section-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .report-features {
    grid-template-columns: 1fr;
  }

  .split-grid {
    gap: 24px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .steps-grid::before {
    display: none;
  }

  .step-number {
    margin-bottom: 14px;
  }

  .price-card {
    padding: 22px;
  }

  .cta-band {
    padding: 28px 22px;
  }

  .cta-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    padding: 42px 0;
  }

  .legal-card {
    padding: 28px 24px;
  }

  .article-hero {
    padding: 38px 0 32px;
  }

  .article-hero-copy h1 {
    font-size: clamp(2.15rem, 10vw, 3.25rem);
  }

  .article-content h2 {
    margin-top: 29px;
  }

  .sample-cover {
    padding: 22px;
    grid-template-columns: 1fr;
  }

  .sample-content {
    padding: 21px;
  }

  .report-score {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .score-ring {
    margin: 0 auto;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: auto;
  }

  .form-card,
  .contact-panel {
    padding: 22px;
  }

  .blog-card-body {
    min-height: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 40px 0;
  }

  .section-sm {
    padding: 30px 0;
  }

  .legal-card {
    padding: 24px 19px;
  }

  .legal-intro {
    padding: 17px 18px;
  }

  .legal-section {
    padding: 23px 0;
  }

  .brand-logo-frame {
    width: 108px;
    height: 60px;
  }

  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-form-title {
    font-size: 0.9rem;
  }

  .floating-stat {
    display: none;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:last-child {
    grid-column: auto;
    justify-content: flex-start;
  }

  .vehicle-summary {
    grid-template-columns: 1fr;
  }

  .checkout-progress {
    align-items: flex-start;
    flex-direction: column;
  }

  .progress-line {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
