@charset "UTF-8";

/* =========================================================== */
/*  AutosCheckPro — VINtrace Dark Theme                        */
/*  Design language: dark navy + electric blue + orange glow   */
/*  Structure & content unchanged (all selectors preserved)    */
/* =========================================================== */

/* ---- LOCAL ICON FONTS (Font Awesome) ---- */
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 400;
  src: url('images/fa-regular-400-3afaa9d1.eot');
  src: url('images/fa-regular-400-9239bdc4.eot') format("embedded-opentype"),
       url('images/fa-regular-400-63f5ebe9.woff') format("woff"),
       url('images/fa-regular-400-37fb5a26.ttf') format("truetype"),
       url('images/fa-regular-400-1b3519dd.svg') format("svg");
}
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  src: url('images/fa-solid-900-516e82e4.eot');
  src: url('images/fa-solid-900d41d-d4d86eb9.eot') format("embedded-opentype"),
       url('images/fa-solid-900-dc1943f5.woff') format("woff"),
       url('images/fa-solid-900-f1dd793c.ttf') format("truetype"),
       url('images/fa-solid-900-80b41068.svg') format("svg");
}
@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: 400;
  src: url('images/fa-brands-400-0e8372b3.eot');
  src: url('images/fa-brands-400d41d-1d5dfcc9.eot') format("embedded-opentype"),
       url('images/fa-brands-400-f66ffb14.woff') format("woff"),
       url('images/fa-brands-400-0a1298cf.ttf') format("truetype"),
       url('images/fa-brands-400-9c016090.svg') format("svg");
}
.fa, .fas, .far, .fal, .fab {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
.fa, .fas { font-family: "Font Awesome 5 Free"; font-weight: 900; }
.far { font-family: "Font Awesome 5 Free"; font-weight: 400; }
.fab { font-family: "Font Awesome 5 Brands"; font-weight: 400; }

/* Icons used across the site */
.fa-times::before { content: "\f00d"; }
.fa-bars::before { content: "\f0c9"; }
.fa-arrow-alt-circle-right::before { content: "\f35a"; }
.fa-user::before { content: "\f007"; }
.fa-lock::before { content: "\f023"; }
.fa-link::before { content: "\f0c1"; }
.fa-money-bill-alt::before { content: "\f3d1"; }
.fa-check::before { content: "\f00c"; }
.fa-chevron-down::before { content: "\f078"; }
.fa-home::before { content: "\f015"; }
.fa-question-circle::before { content: "\f059"; }
.fa-handshake::before { content: "\f2b5"; }
.fa-file-alt::before { content: "\f15c"; }

/* Swiper accessibility helpers */
.swiper-notification { display: none !important; }

/* ---- DESIGN TOKENS ---- */
:root {
  --navy: #080c18;
  --graphite: #0f1623;
  --panel: #131b2e;
  --panel2: #1a2440;
  --blue: #2563eb;
  --blue-bright: #3b82f6;
  --blue-glow: #60a5fa;
  --orange: #f97316;
  --silver: #94a3b8;
  --silver-light: #cbd5e1;
  --white: #f8fafc;
  --text: #e2e8f0;
  --muted: #64748b;
  --border: rgba(59, 130, 246, 0.18);
  --glass: rgba(19, 27, 46, 0.72);
  --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.3s linear;
}

html {
  scroll-behavior: smooth;
  font-size: 14px;
}

body {
  width: 100%;
  background: var(--navy);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: normal;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

::selection { background: rgba(37, 99, 235, 0.4); color: var(--white); }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  text-wrap: balance;
}
h1, .text-size-h1 { font-size: clamp(3rem, 6vw, 5rem); }
h2, .text-size-h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3, .text-size-h3 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h4, .text-size-h4 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h5, .text-size-h5 { font-size: clamp(1.05rem, 2.5vw, 1.3rem); }

p {
  font-size: 1.05rem;
}

a {
  color: var(--blue-glow);
  text-decoration: none;
}

.main { width: 100%; overflow: hidden; }

/* ---- NAV ---- */
nav#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 4rem;
  background: rgba(8, 12, 24, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: none;
}
nav#navbar .logo {
  display: flex;
  align-items: center;
}
nav#navbar .logo img {
  width: auto;
  height: 48px;
  aspect-ratio: auto;
  object-fit: contain;
}
nav#navbar .menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
nav#navbar .menu ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}
nav#navbar .menu li {
  list-style: none;
  align-self: center;
}
nav#navbar .menu li a {
  color: var(--silver);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.4rem 0.2rem;
  transition: color 0.2s;
}
nav#navbar .menu li a:hover,
nav#navbar .menu li a.active {
  color: var(--white);
  text-shadow: 0 0 14px rgba(96, 165, 250, 0.5);
}
nav#navbar .menu .mobile-view-btns {
  display: none;
  align-self: center;
  color: var(--silver);
  font-size: 1.3rem;
}
nav#navbar .menu .mobile-view-btns .close-btn { display: none; }
nav#navbar .menu .mobile-view-btns .menu-btn { display: block; }
nav#navbar .menu .mobile-view-btns i {
  cursor: pointer;
  font-size: 1.3rem;
  transition: color 0.2s;
}
nav#navbar .menu .mobile-view-btns i:hover { color: var(--white); }

/* ---- HERO ---- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 4rem 4rem;
  background:
    radial-gradient(ellipse 70% 55% at 20% 20%, rgba(37, 99, 235, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 85%, rgba(249, 115, 22, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, #0a1020 0%, var(--navy) 100%);
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 75%);
}
#hero .hero-grid {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 8.5rem 2rem 2.5rem;
  text-align: center;
}
.hero-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse 80% 60% at 50% 60%, transparent 0%, rgba(8, 12, 24, 0.42) 88%);
  pointer-events: none;
}
.vin-floating {
  position: absolute;
  top: 30%;
  left: 5%;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(59, 130, 246, 0.4);
  pointer-events: none;
  animation: floatLeft 8s ease-in-out infinite;
}
.vin-floating2 {
  position: absolute;
  top: 40%;
  right: 5%;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(249, 115, 22, 0.3);
  pointer-events: none;
  animation: floatRight 10s ease-in-out infinite;
}
@keyframes floatLeft { 0%,100%{transform:translateY(0) rotate(-2deg)} 50%{transform:translateY(-20px) rotate(2deg)} }
@keyframes floatRight { 0%,100%{transform:translateY(-10px) rotate(1deg)} 50%{transform:translateY(10px) rotate(-2deg)} }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.35);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue-glow);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.hero-badge::before { content: '●'; font-size: 0.5rem; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
#hero .hero-grid .text h2 {
  color: var(--white);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
#hero .hero-grid .text h2 span {
  color: var(--blue-bright);
  text-shadow: 0 0 30px rgba(59, 130, 246, 0.45);
}
#hero .hero-grid .text p {
  color: var(--silver);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 620px;
  margin: 0 auto;
}

/* VIN form — glass search bar */
.vinnew {
  display: flex;
  flex-direction: row;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.5rem 0.5rem 0.5rem 1.2rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 0 40px rgba(37, 99, 235, 0.15);
}
.vinnew form {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}
.vinnew form input#vininput,
.vinnew form input#emailinput {
  flex: 1;
  min-width: 0;
  padding: 0.9rem 1rem;
  margin: 0;
  border: none;
  background: transparent;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  outline: none;
}
.vinnew form input#emailinput {
  border-right: 1px solid var(--border);
  max-width: 240px;
}
.vinnew form input::placeholder { color: var(--muted); }
.vinnew form input:focus { border-color: var(--blue-bright); }
.vinnew form button {
  background: linear-gradient(135deg, var(--blue), #1d4ed8);
  color: var(--white);
  padding: 0.8rem 1.2rem;
  font-size: 1.3rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  width: auto;
  transition: all 0.25s;
}
.vinnew form button:hover {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
}

/* ---- SERVICE / WHY VEHICLE HISTORY ---- */
#service {
  padding: 4rem 2rem;
  background: var(--navy);
  border-top: 1px solid var(--border);
}
#service .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}
#service .container .text-content {
  padding: 1.5rem 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
#service .container .text-content::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
  pointer-events: none;
}
#service .container .text-content h4 {
  color: var(--white);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
#service .container .text-content p {
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: var(--silver);
  text-align: left;
}
#service .container .text-content ul {
  list-style: none;
  margin: 0.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  align-items: flex-start;
  width: 100%;
}
#service .container .text-content ul li {
  font-size: 0.88rem;
  color: var(--silver-light);
  padding: 0.4rem 0 0.4rem 1.6rem;
  position: relative;
}
#service .container .text-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.45rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--blue-bright);
}
#service .container .text-content ul li b {
  display: block;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.1rem;
}
#service .container .picture-content {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-items: center;
  justify-items: center;
  align-content: center;
}
#service .container .picture-content .picbox {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s, border-color 0.3s;
}
#service .container .picture-content .picbox:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.5);
}
#service .container .picture-content .picbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- COUNTRY / VEHICLE SLIDERS ---- */
#countryies {
  padding: 3rem 2rem;
  background: var(--graphite);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
#countryies .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}
#countryies h4 {
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  letter-spacing: -0.02em;
  text-align: center;
}
.country-slider { width: 100%; }

.swiper {
  width: 100%;
  padding: 0.25rem 0;
  --swiper-theme-color: var(--blue-bright);
  position: relative;
}

/* Static grid — vehicles only (all slides visible at once, no scroll) */
.vehicles-swiper .swiper-wrapper {
  display: grid !important;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 10px;
  transform: none !important;
  transition: none !important;
}
.vehicles-swiper .swiper-slide {
  width: auto !important;
  margin-right: 0 !important;
  min-height: 0;
  padding: 0;
}
.vehicles-swiper .swiper-button-next,
.vehicles-swiper .swiper-button-prev,
.vehicles-swiper .swiper-pagination {
  display: none !important;
}

/* Countries flags — real slider (mobile + web) */
.countries-swiper {
  padding: 0.5rem 0 3.5rem;
}
.countries-swiper .swiper-wrapper {
  display: flex;
  align-items: center;
}
.countries-swiper .swiper-slide {
  width: auto;
  margin-right: 0;
}
.countries-swiper .swiper-slide .swiper-countries {
  width: 190px;
}
.countries-swiper .swiper-button-next,
.countries-swiper .swiper-button-prev {
  display: none !important;
}

.swiper-wrapper { align-items: stretch; }
.swiper-slide {
  text-align: center;
  font-size: 1rem;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}
.swiper-slide .swiper-countries,
.swiper-slide .vehicle-card {
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.swiper-slide .swiper-countries:hover,
.swiper-slide .vehicle-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.15);
}
.swiper-slide .swiper-countries img {
  width: 100%;
  max-height: 80px;
  object-fit: contain;
  border-radius: 6px;
}
.swiper-slide .vehicle-card img {
  width: 100%;
  max-height: 64px;
  object-fit: contain;
  filter: brightness(0) invert(0.85);
  transition: filter 0.3s;
}
.swiper-slide .vehicle-card:hover img {
  filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(96, 165, 250, 0.45));
}
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: auto;
  bottom: 0;
  transform: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--panel2);
  border: 1px solid var(--border);
  color: var(--blue-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.swiper-button-next { right: calc(50% - 60px); }
.swiper-button-prev { left: calc(50% - 60px); }
.swiper-button-next::after,
.swiper-button-prev::after {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
}
.swiper-button-next::after { content: '→'; }
.swiper-button-prev::after { content: '←'; }
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}
.swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: rgba(148, 163, 184, 0.4);
  cursor: pointer;
  transition: all 0.3s;
}
.swiper-pagination-bullet-active {
  background: var(--blue-bright);
  width: 24px;
}

/* ---- WHY CHOOSE US ---- */
#stats-section {
  display: flex;
  align-items: center;
  padding: 5rem 2rem;
  background:
    radial-gradient(ellipse 60% 80% at 85% 20%, rgba(37, 99, 235, 0.15) 0%, transparent 60%),
    var(--navy);
  color: var(--white);
}
#stats-section .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 1rem;
}
#stats-section .text h3 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
#stats-section .text h3 span {
  color: var(--blue-bright);
  text-shadow: 0 0 26px rgba(59, 130, 246, 0.45);
}
#stats-section .text ul {
  margin-top: 1.5rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-start;
  width: 100%;
}
#stats-section .text ul li {
  font-size: 0.98rem;
  color: var(--silver-light);
  padding: 0.5rem 0 0.5rem 1.6rem;
  position: relative;
}
#stats-section .text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--blue-bright);
}
#stats-section .text ul li b {
  display: block;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.1rem;
}
#stats-section .pic {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-content: center;
  align-items: center;
  position: relative;
}
#stats-section .pic::before {
  content: '';
  position: absolute;
  inset: 10%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.35) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}
#stats-section .pic img {
  position: relative;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

/* ---- PRICING ---- */
#prices {
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2.5rem;
  width: 100%;
  background: var(--graphite);
  border-top: 1px solid var(--border);
}
#prices h4 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: -0.02em;
}
#prices .priceplans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  justify-items: center;
  width: 100%;
  max-width: 1100px;
}
#prices .priceplans .box {
  position: relative;
  padding: 2rem 1.8rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: 18px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  background: var(--panel);
  height: max-content;
  width: min(320px, 100%);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
#prices .priceplans .box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
#prices .priceplans .box:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 24px 48px rgba(37, 99, 235, 0.15);
}
#prices .priceplans .box:hover::after { opacity: 1; }
#prices .priceplans .box h5 {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
#prices .priceplans .box .price {
  color: var(--blue-bright);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3rem);
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}
#prices .priceplans .box ul {
  list-style-type: none;
  text-align: left;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
#prices .priceplans .box ul li {
  text-decoration: none;
  font-size: 0.92rem;
  color: var(--silver-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#prices .priceplans .box ul li::before {
  content: '✓';
  color: var(--blue-bright);
  font-weight: 700;
}
#prices .priceplans .box a {
  background: linear-gradient(135deg, var(--blue), #1d4ed8);
  color: var(--white);
  padding: 0.8rem 1.4rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  transition: all 0.25s;
}
#prices .priceplans .box a:hover {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
}

/* ---- CONTACT ---- */
#contact-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
#contact-section h4 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: -0.02em;
}
#contact-section .container .contactform {
  display: flex;
  width: min(540px, 100%);
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
#contact-section .container .contactform::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
  pointer-events: none;
}
#contact-section .container .contactform form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.8rem;
  width: 100%;
}
#contact-section .container .contactform form input,
#contact-section .container .contactform form textarea {
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  font-family: var(--font-body);
  border-radius: 10px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  background: var(--panel2);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
#contact-section .container .contactform form input:focus,
#contact-section .container .contactform form textarea:focus {
  border-color: var(--blue-bright);
}
#contact-section .container .contactform form input::placeholder,
#contact-section .container .contactform form textarea::placeholder {
  color: var(--muted);
  font-family: var(--font-body);
}
#contact-section .container .contactform form button {
  background: linear-gradient(135deg, var(--blue), #1d4ed8);
  color: var(--white);
  border: none;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s;
}
#contact-section .container .contactform form button:hover {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
}

/* ---- LEGAL PAGES (PRIVACY / TERMS) ---- */
.legal-page {
  padding: 9rem 1.5rem 4rem;
  min-height: 70vh;
}
.legal-page .legal-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.legal-page .legal-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.5rem 2.8rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.legal-page h1 {
  font-size: 2.2rem;
  margin: 0 0 0.3rem;
  color: var(--white);
}
.legal-page .legal-date {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 2rem;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.legal-page h2 {
  font-size: 1.25rem;
  color: var(--blue-bright);
  margin: 2.2rem 0 0.7rem;
}
.legal-page p,
.legal-page li {
  color: var(--silver);
  font-size: 0.95rem;
  line-height: 1.75;
}
.legal-page ul { padding-left: 1.2rem; margin: 0.6rem 0 1rem; }
.legal-page li { margin-bottom: 0.4rem; }
.legal-page a { color: var(--blue-bright); }
.legal-page .back-home {
  display: inline-block;
  margin-top: 2.5rem;
  color: var(--blue-bright);
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid rgba(59, 130, 246, 0.35);
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  transition: all 0.2s;
}
.legal-page .back-home:hover { background: rgba(59, 130, 246, 0.12); }
@media (max-width: 640px) {
  .legal-page .legal-card { padding: 1.8rem 1.4rem; }
  .legal-page h1 { font-size: 1.7rem; }
}

/* ---- FOOTER ---- */
#footer {
  background: var(--graphite);
  color: var(--muted);
  text-align: left;
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}
#footer .container { max-width: 1200px; margin: 0 auto; }
#footer p { font-size: 0.85rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.75rem;
  max-width: 280px;
  line-height: 1.7;
  text-align: left;
}
.footer-col h4 {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col ul a {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--silver-light); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-badges { display: flex; gap: 0.75rem; align-items: center; }
.badge {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--silver);
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* =========================================================== */
/*  INNER PAGES                                                */
/* =========================================================== */

/* ---- FAQ PAGE ---- */
#faq-section .container {
  padding: 9rem 2rem 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
#faq-section .container h6 {
  color: var(--blue-bright);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
#faq-section .container h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.025em;
  text-align: center;
  margin-bottom: 2rem;
}
#faq-section .container .faq-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
#faq-section .container .faq-container details {
  box-shadow: none;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--panel);
  padding: 0;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.3s;
}
#faq-section .container .faq-container details:hover,
#faq-section .container .faq-container details[open] {
  border-color: rgba(59, 130, 246, 0.4);
  background: var(--panel);
}
#faq-section .container .faq-container details summary {
  font-size: 0.95rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--white);
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
#faq-section .container .faq-container details summary::-webkit-details-marker { display: none; }
#faq-section .container .faq-container details summary::after {
  content: '▾';
  color: var(--muted);
  transition: transform 0.3s;
  flex-shrink: 0;
}
#faq-section .container .faq-container details[open] summary::after {
  transform: rotate(180deg);
  color: var(--blue-bright);
}
#faq-section .container .faq-container details p {
  padding: 0 1.5rem 1.3rem 1.5rem;
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.7;
  text-align: left;
}

/* ---- HOW TO ORDER PAGE ---- */
#hto .container {
  padding: 9rem 2rem 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  counter-reset: step;
}
#hto .container h6 {
  color: var(--blue-bright);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
#hto .container h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.025em;
  text-align: center;
  margin-bottom: 2rem;
}
#hto .container .hto-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#hto .container .hto-container .process {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem 2rem 1.8rem 4.5rem;
  transition: border-color 0.3s, transform 0.3s;
}
#hto .container .hto-container .process:hover {
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateY(-3px);
}
#hto .container .hto-container .process::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 1.4rem;
  top: 1.8rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue-bright);
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 10px;
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hto .container .hto-container .process:nth-child(1)::before {
  content: '01';
}
#hto .container .hto-container .process h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
#hto .container .hto-container .process p,
#hto .container .hto-container .process li {
  font-size: 0.92rem;
  color: var(--silver);
  line-height: 1.7;
  text-align: left;
  padding: 0.15rem 0;
}
#hto .container .hto-container .process ol {
  padding-left: 1.4rem;
  margin-top: 0.3rem;
}
#hto .container .hto-container .process p.text { padding: 0.15rem 0; }

/* ---- AFFILIATE PAGE ---- */
#affliatehead {
  color: var(--text);
  padding: 9rem 2rem 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 880px;
  justify-self: center;
  margin: 0 auto;
  text-align: center;
}
#affliatehead .section-title {
  padding: 0 0 1.25rem 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
}
#affliatehead .section-text {
  font-size: 1rem;
  color: var(--silver);
  line-height: 1.8;
  max-width: 720px;
}
#affliatehead .section-text b { color: var(--white); }
#affliatehead a {
  color: var(--white);
  text-decoration: none;
  background: linear-gradient(135deg, var(--blue), #1d4ed8);
  margin-top: 1.5rem;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-weight: 700;
  transition: all 0.25s;
  display: inline-block;
}
#affliatehead a:hover {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
}

#affliatecards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 2rem 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
#affliatecards .card {
  flex-basis: 100%;
  margin: 12px;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 2rem 1.8rem;
  text-align: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, border-color 0.3s;
}
#affliatecards .card:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.5);
}
#affliatecards .card .icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
#affliatecards .card .icon {
  width: 72px;
  height: 72px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 50%;
  color: var(--blue-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
  transition: background 0.3s;
}
#affliatecards .card:hover .icon { background: rgba(37, 99, 235, 0.25); }
#affliatecards .card h5 {
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}
#affliatecards .card p {
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.7;
}

/* ---- RESPONSIVE ---- */
@media screen and (min-width: 768px) {
  #affliatecards .card { flex-basis: calc(50% - 30px); }
}
@media screen and (min-width: 992px) {
  #affliatecards .card { flex-basis: calc(25% - 30px); }
}

@media (max-width: 1024px) {
  nav#navbar { padding: 0.9rem 1.5rem; }
  nav#navbar .menu ul { gap: 1.4rem; }
  nav#navbar .menu li a { font-size: 0.85rem; }
  #hero { padding: 7rem 2rem 4rem; }
  #service .container { gap: 2.5rem; }
  #stats-section .pic { width: 60%; }
}

@media (max-width: 768px) {
  nav#navbar { padding: 0.9rem 1.2rem; }
  nav#navbar .menu .mobile-view-btns { display: block; }
  nav#navbar .menu ul {
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding: 2.5rem 1rem;
    gap: 1.8rem;
    background: rgba(15, 22, 35, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    min-height: 0;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  nav#navbar .menu ul li a {
    padding: 0.5rem 0.2rem;
    color: var(--silver-light);
    font-size: 1.05rem;
  }
  nav#navbar .menu ul li a:hover,
  nav#navbar .menu ul li a.active { color: var(--blue-glow); }
  #hero { padding: 6.5rem 1.5rem 3.5rem; }
  #hero .hero-grid {
    position: relative;
    inset: auto;
    justify-content: flex-start;
    gap: 1.5rem;
    padding: 0;
  }
  .hero-bottom { margin-top: 1rem; }
  #service .container { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .lead-card { padding: 2rem; }
  .testi-card { min-width: 0; width: min(320px, 100%); }
  #stats-section { flex-direction: column; gap: 2rem; }
  #stats-section .pic { width: 100%; max-width: 420px; }
  #countryies, #prices, #service { padding: 3rem 1.5rem; }
}

@media (max-width: 640px) {
  .vehicles-swiper .swiper-wrapper {
    grid-auto-flow: row;
    grid-auto-columns: unset;
    grid-template-columns: repeat(auto-fit, minmax(84px, 1fr));
    gap: 10px;
  }
  .swiper-slide .swiper-countries img { max-height: 60px; }
  .swiper-slide .vehicle-card img { max-height: 48px; }
  .countries-swiper .swiper-slide .swiper-countries { width: 150px; }
}

@media (max-width: 500px) {
  .vinnew {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.6rem;
  }
  .vinnew form {
    flex-direction: column;
    align-self: center;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0.6rem;
  }
  .vinnew form input#vininput,
  .vinnew form input#emailinput {
    width: 100%;
    max-width: none;
    border-right: none;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }
  .vinnew form button {
    width: 100%;
  }
  #service .container .text-content { padding: 1.5rem; }
  #service .container .picture-content { grid-template-columns: 1fr 1fr; }
}

/* =========================================================== */
/*  HOMEPAGE — VINtrace-style sections (added)                 */
/* =========================================================== */

/* ---- HERO FORM + TRUST ROW ---- */
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: 0;
  padding: 1.05rem 2.8rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), #1d4ed8);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.4), 0 10px 30px rgba(37, 99, 235, 0.5);
  transition: all 0.25s;
}
.hero-cta i { font-size: 1.2rem; }
.hero-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.6), 0 14px 40px rgba(37, 99, 235, 0.7);
}
.trust-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--silver);
  font-weight: 500;
}
.trust-item .icon { font-size: 1rem; }

/* ---- SECTION BASE ---- */
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--silver);
  max-width: 540px;
  line-height: 1.7;
}
.divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  border-radius: 2px;
  margin: 1.5rem 0;
}

/* ---- BUTTONS ---- */
.btn-primary {
  background: linear-gradient(135deg, var(--blue), #1d4ed8);
  color: var(--white);
  border: none;
  cursor: pointer;
  padding: 0.85rem 1.8rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
}
.btn-ghost {
  background: none;
  border: 1px solid var(--border);
  color: var(--silver);
  cursor: pointer;
  padding: 0.85rem 1.4rem;
  border-radius: 10px;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--blue-bright); color: var(--white); }

/* ---- GET YOUR REPORT (LEAD FORM) ---- */
#lead {
  background: var(--graphite);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 6rem 2rem;
}
.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.lead-left .big-stat {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin: 1rem 0 0.5rem;
}
.lead-left .big-stat span { color: var(--blue-bright); }
.lead-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.lead-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
  pointer-events: none;
}
.form-step { display: none; }
.form-step.active { display: block; }
.progress-bar {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 2rem;
}
.progress-step {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--panel2);
  transition: background 0.4s;
}
.progress-step.done { background: var(--blue); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.8rem; font-weight: 600; color: var(--silver); }
.form-field input,
.form-field select {
  background: var(--panel2);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  min-width: 0;
}
.form-field input:focus,
.form-field select:focus { border-color: var(--blue-bright); }
.form-field select option { background: var(--panel2); }
.form-actions { display: flex; gap: 1rem; margin-top: 1.5rem; }
.step-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.step-sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.5rem; }

/* ---- WHAT'S INSIDE (BENEFITS) ---- */
#benefits {
  background: var(--navy);
  padding: 6rem 2rem;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.benefit-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}
.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.benefit-card:hover::after { opacity: 1; }
.benefit-icon {
  width: 52px;
  height: 52px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  transition: background 0.3s;
}
.benefit-card:hover .benefit-icon { background: rgba(37, 99, 235, 0.25); }
.benefit-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.benefit-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* ---- SAMPLE REPORT ---- */
#sample {
  background: var(--graphite);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 6rem 2rem;
}
.report-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}
.report-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.report-header {
  background: linear-gradient(135deg, #1e3a8a, #1e40af);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.report-badge {
  background: rgba(255, 255, 255, 0.15);
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
}
.report-vin-display {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}
.report-body { padding: 1.5rem 2rem; }
.report-vehicle {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
}
.rv-make {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.rv-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--white); }
.report-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.2rem; }
.rs-item { text-align: center; }
.rs-val { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--white); }
.rs-label { font-size: 0.7rem; color: var(--muted); margin-top: 0.2rem; }
.report-flags { display: flex; flex-direction: column; gap: 0.6rem; }
.flag-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  font-size: 0.83rem;
  font-weight: 500;
}
.flag-ok { background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.2); color: #86efac; }
.flag-warn { background: rgba(249, 115, 22, 0.1); border: 1px solid rgba(249, 115, 22, 0.2); color: #fdba74; }
.flag-bad { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.2); color: #fca5a5; }
.timeline { display: flex; flex-direction: column; }
.timeline-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.tl-item { display: flex; gap: 1rem; position: relative; }
.tl-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 28px;
  bottom: -12px;
  width: 1px;
  background: var(--border);
}
.tl-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  background: var(--panel2);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tl-dot.active { background: var(--blue); }
.tl-dot-inner { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-glow); }
.tl-content { padding-bottom: 1.5rem; }
.tl-date { font-size: 0.75rem; color: var(--muted); font-weight: 600; }
.tl-event { font-size: 0.875rem; color: var(--silver-light); margin-top: 0.2rem; }
.tl-detail { font-size: 0.78rem; color: var(--muted); margin-top: 0.15rem; }

/* ---- WHY US ---- */
#why {
  background: var(--navy);
  padding: 6rem 2rem;
}
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.stat-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-num .accent { color: var(--blue-bright); }
.stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 0.4rem; }
.feature-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
  cursor: default;
}
.feature-item:hover {
  background: var(--panel);
  border-color: var(--border);
}
.fi-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(37, 99, 235, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.fi-title { font-weight: 700; color: var(--white); font-size: 0.95rem; }
.fi-desc { font-size: 0.82rem; color: var(--muted); margin-top: 0.2rem; }

/* ---- TESTIMONIALS ---- */
#testimonials {
  background: var(--graphite);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 6rem 2rem;
}
.testimonials-wrap { position: relative; overflow: hidden; margin-top: 3rem; }
.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testi-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  min-width: 340px;
  flex-shrink: 0;
  position: relative;
}
.testi-stars { color: #fbbf24; font-size: 0.9rem; margin-bottom: 1rem; }
.testi-quote { font-size: 0.93rem; color: var(--silver-light); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.8rem; }
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  flex-shrink: 0;
}
.testi-name { font-weight: 700; color: var(--white); font-size: 0.9rem; }
.testi-role { font-size: 0.78rem; color: var(--muted); }
.testi-controls { display: flex; gap: 0.75rem; margin-top: 2rem; justify-content: center; }
.testi-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--panel);
  border: 1px solid var(--border);
  color: var(--silver);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.testi-btn:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }

/* ---- SCROLL ANIMATION HOOKS ---- */
.fade-up { opacity: 0; transform: translateY(30px); }
.fade-in { opacity: 0; }

/* ---- RESPONSIVE (new sections) ---- */
@media (max-width: 1024px) {
  .report-wrapper, .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .lead-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 640px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-cta { padding: 0.9rem 1.8rem; font-size: 1rem; }
  #lead, #benefits, #sample, #why, #testimonials { padding: 4rem 1.5rem; }
  .lead-card { padding: 1.8rem; }
  .lead-left .big-stat { font-size: 2.6rem; }
}

/* ---- RESPONSIVE: PHONES & SMALL TABLETS ---- */
@media (max-width: 640px) {
  #hero { padding: 6.5rem 1.25rem 3rem; }
  #hero .hero-grid .text p { font-size: 0.95rem; }
  .hero-badge { font-size: 0.7rem; }
  #contact-section .container { padding: 3.5rem 1.25rem; }
  #contact-section .container .contactform { padding: 1.25rem; }
  #faq-section .container,
  #hto .container,
  #affliatehead { padding: 7.5rem 1.25rem 2.5rem; }
  #affliatecards { padding: 0 1.25rem 3rem; }
  .legal-page { padding: 7.5rem 1rem 3rem; }
  #faq-section .container .faq-container details summary { padding: 1rem 1.2rem; font-size: 0.9rem; }
  #faq-section .container .faq-container details p { padding: 0 1.2rem 1.1rem 1.2rem; }
  #hto .container .hto-container .process { padding: 1.2rem 1.2rem 1.2rem 4rem; }
  #hto .container .hto-container .process::before { left: 1rem; top: 1.2rem; }
  #affliatecards .card { margin: 8px 0; }
}

/* ---- RESPONSIVE: SMALL PHONES ---- */
@media (max-width: 480px) {
  .vin-floating,
  .vin-floating2 { display: none; }
  .hero-cta { width: 100%; max-width: 320px; }
  .trust-row { gap: 0.75rem; }
  .trust-item { font-size: 0.75rem; }
  .stats-grid { grid-template-columns: 1fr; }
  #hero .hero-grid { gap: 1.2rem; }
  #service .container .text-content h4 { font-size: 1.3rem; }
  .section-title { font-size: 1.6rem; }
  .footer-badges { flex-wrap: wrap; justify-content: center; }
  .legal-page h2 { font-size: 1.1rem; }
  .lead-card { padding: 1.5rem 1.2rem; }
  .testi-card { padding: 1.5rem; }
  #contact-section .container .contactform { padding: 1rem; }
}