@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800;900&display=swap");

/* =========================================================
   Global Design Tokens
   ========================================================= */
:root {
  --font-family-base: "DM Sans";
  --color-primary: #0041A0;
  --color-primary-dark: #003C8A;
  --color-primary-hover: #003D93;
  --color-accent: #FE9A00;
  --color-accent-light: #FFB900;
  --color-heading: #1A1A2E;
  --color-text: #242637;
  --color-muted: #6B7280;
  --color-white: #ffffff;
  --color-surface: #ffffff;
  --color-surface-soft: #F8FAFC;
  --color-surface-blue: #EEF5FF;
  --color-border: #E5E7EB;
  --primary-blue: var(--color-primary);
  --primary-blue-dark: var(--color-primary-dark);
  --primary-blue-hover: var(--color-primary-hover);
  --orange: var(--color-accent);
  --light-orange: var(--color-accent-light);
  --dark-blue: var(--color-heading);
  --grey-text: var(--color-muted);
  --white: var(--color-white);
  --off-white: var(--color-surface-soft);
  --soft-blue: var(--color-surface-blue);
  --border: var(--color-border);
  --container: 1400px;
}

/* =========================================================
   Header CSS
   ========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family-base, "DM Sans");
}

.site-header {
  width: 100%;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-top {
  height: 64px;
  border-bottom: 1px solid #eeeeee;
  background: var(--white);
}

.header-container {
  width: 100%;
  max-width: var(--container, 1400px);
  margin: 0 auto;
  padding: 0;
}

.top-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 205px;
  height: auto;
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.schedule-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
}

.eligibility-btn {
  background: var(--primary-blue);
  color: var(--white);
  text-decoration: none;
  padding: 13px 22px;
  border-radius: 28px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
}

.eligibility-btn:hover {
  background: var(--primary-blue-hover, var(--primary-blue-dark));
}

.main-nav {
  height: 66px;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.nav-menu {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 46px;
  list-style: none;
}

.nav-menu li {
  position: relative;
}

.nav-menu > li > a {
  color: var(--dark-blue);
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
  padding: 22px 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.arrow {
  font-size: 16px;
  line-height: 2;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  list-style: none;
  padding: 10px 0;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.25s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 12px 18px;
  color: var(--dark-blue);
  text-decoration: none;
  font-size: 15px;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background: #f4f7fb;
  color: var(--primary-blue);
}

.menu-toggle {
  display: none;
  width: 34px;
  height: 28px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background: var(--primary-blue);
  border-radius: 10px;
  transition: transform 0.35s ease, opacity 0.25s ease;
  transform-origin: center;
}

/* Close Icon Animation */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(12.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-12.5px) rotate(-45deg);
}

/* Responsive */
@media (max-width: 991px) {
  .header-top {
    height: auto;
  }

  .top-inner {
    height: 70px;
  }

  .logo img {
    width: 170px;
  }

  .schedule-link,
  .eligibility-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    height: auto;
    display: none;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  }

  .main-nav.active {
    display: block;
  }

  .nav-menu {
    height: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 10px 24px 20px;
  }

  .nav-menu > li {
    border-bottom: 1px solid #eeeeee;
  }

  .nav-menu > li > a {
    font-size: 17px;
    padding: 15px 0;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    min-width: 100%;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 10px 12px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-menu li a {
    padding: 10px 0;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 16px;
  }

  .logo img {
    width: 150px;
  }

  .nav-menu {
    padding: 8px 18px 18px;
  }
}

/* Shared Footer */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family-base, 'DM Sans', Arial, Helvetica, sans-serif);
  background: #fff;
  color: #222;
}

/* ─── FOOTER WRAPPER ─── */
footer {
  background: #fff;
  border-top: 1px solid #e5e5e5;
  padding: 48px 80px 0 80px;
}

.footer-logo {
  width: 300px;
}

/* ─── TOP SECTION ─── */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
}

/* ─── LEFT: LOGO + CONTACT ─── */
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 260px;
}

/* SVG logo inline */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 70px;
  height: 70px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text .brand {
  font-size: 28px;
  font-weight: 800;
  color: #1a3a7c;
  letter-spacing: 1px;
}

.logo-text .tagline {
  font-size: 11px;
  color: #555;
  letter-spacing: 3.5px;
  font-weight: 500;
  margin-top: 4px;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #333;
  text-decoration: none;
}

.contact-item:hover {
  color: #1a3a7c;
}

.contact-item svg {
  flex-shrink: 0;
  color: #444;
}

/* ─── RIGHT: NAV COLUMNS ─── */
.footer-nav {
  display: flex;
  gap: 15vw;
}

.nav-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nav-col ul li a {
  font-size: 14.5px;
  color: #444;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-col ul li a:hover {
  color: #1a3a7c;
}

/* ─── BOTTOM BAR ─── */
.footer-bottom {
  border-top: 1px solid #e5e5e5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 13px;
  color: #777;
}

.footer-bottom .legal-links {
  display: flex;
  gap: 24px;
}

.footer-bottom .legal-links a {
  color: #555;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-bottom .legal-links a:hover {
  color: #1a3a7c;
}

@media (max-width: 1024px) {
  footer {
    padding: 36px 24px 0 24px;
  }
  .footer-top {
    flex-direction: column;
    gap: 36px;
  }
  .footer-nav {
    gap: 15vw;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  footer {
    padding: 36px 24px 0 24px;
  }
  .footer-top {
    flex-direction: column;
    gap: 36px;
  }
  .footer-nav {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    flex-direction: column;
  }
}


































/* =========================================================
   Main
   ========================================================= */

:root {
  --font-family-base: "DM Sans";
  --color-primary: #0041A0;
  --color-primary-dark: #003C8A;
  --color-primary-hover: #003D93;
  --color-accent: #FE9A00;
  --color-accent-light: #FFB900;
  --color-heading: #1A1A2E;
  --color-text: #242637;
  --color-muted: #6B7280;
  --color-white: #ffffff;
  --color-surface: #ffffff;
  --color-surface-soft: #F8FAFC;
  --color-surface-blue: #EEF5FF;
  --color-border: #E5E7EB;
  --primary-blue: var(--color-primary);
  --primary-blue-dark: var(--color-primary-dark);
  --primary-blue-hover: var(--color-primary-hover);
  --orange: var(--color-accent);
  --light-orange: var(--color-accent-light);
  --dark-blue: var(--color-heading);
  --grey-text: var(--color-muted);
  --white: var(--color-white);
  --off-white: var(--color-surface-soft);
  --beige: #ECE9E3;
  --soft-blue: var(--color-surface-blue);
  --border: var(--color-border);
  --shadow: 0 20px 50px rgba(26, 26, 46, 0.10);
  --radius: 22px;
  --container: 1400px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-family-base, "DM Sans");
  color: var(--dark-blue);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.section {
  padding: 96px 0;
}

.section-anchor {
  scroll-margin-top: 86px;
}

.beige-section {
  background: var(--beige);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  align-items: center;
  gap: 72px;
}

.section-copy h2,
.section-heading h2,
.finder-panel h2,
.calculator-card h2,
.data-content h2,
.faq-section h2,
.cta-content h2 {
  font-size: 57px;
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 500;
  color: var(--dark-blue);
}

.section-copy h2 span,
.new-cars h2 span {
  color: var(--primary-blue);
}

.section-copy p,
.section-heading p,
.data-content p,
.cta-content p,
.faq-section p {
  color: var(--grey-text);
  font-size: 18px;
  line-height: 1.65;
  max-width: 620px;
  margin-top: 22px;
}

.compact-copy {
  max-width: 650px;
}

.button-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 55px;
  padding: 0 30px;
  border-radius: 999px;
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  border: 1.5px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0, 65, 160, 0.18);
}

.btn-primary {
  gap: 10px;
  color: var(--primary-blue);
  background: var(--white);
  border-color: var(--white);
}

.btn-primary:hover {
  color: var(--white);
  background: var(--primary-blue);
  border-color: var(--primary-blue);
}

.btn-primary:hover path {
  stroke: var(--white);
}

.btn-outline {
  color: var(--primary-blue);
  background: transparent;
  border-color: rgba(0, 65, 160, 0.30);
}

.btn-outline:hover {
  border-color: var(--primary-blue);
  background: var(--soft-blue);
}

.btn-outline-light {
  gap: 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.68);
}

.btn-outline-light:hover {
  color: var(--white);
  background: var(--primary-blue);
  border-color: var(--primary-blue);
}

.btn-outline-light:hover path {
  stroke: var(--white);
}

.btn-white {
  color: var(--primary-blue);
  background: var(--white);
  border-color: var(--white);
}

.btn-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 15px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
  color: var(--white);
  background: var(--primary-blue);
  border-color: var(--primary-blue);
}

.btn-small:hover {
  gap: 10px;
  color: var(--primary-blue);
  background: var(--white);
  border-color: var(--primary-blue);
}

.eyebrow,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--orange);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 18px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.85);
}

.header-inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand img {
  width: 220px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 42px;
}

.main-nav a,
.text-link {
  color: var(--dark-blue);
  font-size: 15px;
  font-weight: 400;
  opacity: 0.88;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.main-nav a,
.text-link span {
  padding-right: 10px;
}

.Schedule-meeting {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 15px;
  border-radius: 999px;
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  color: var(--primary-blue);
  border: 1.5px solid var(--primary-blue);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.Schedule-meeting:hover {
  background-color: var(--primary-blue);
  color: var(--white)!important;
}

.Schedule-meeting:hover span svg path{
  stroke: var(--white);
}

.main-nav a:hover,
.text-link:hover {
  color: var(--primary-blue);
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  border-radius: 12px;
  justify-self: end;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--dark-blue);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Hero */
.hero {
  padding: 100px 20px;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.03) 44%, rgba(0, 0, 0, 0.42) 100%), url("assets/images/Hero.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 560px;
  align-items: center;
  gap: 60px;
}

.hero-panel {
  margin-left: auto;
  color: var(--white);
  width: 100%;
}

.hero-panel h1 {
  font-size: 54px;
  line-height: 0.96;
  font-weight: 900;
  margin-bottom: 30px;
  color: var(--white);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.hero-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
  background: var(--primary-blue);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.tab-btn {
  min-height: 47px;
  border: 0;
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  font-weight: 800;
  font-size: 15px;
}

.tab-btn.active {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.loan-form {
  background: rgb(29 29 29 / 70%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 0;
  padding: 30px 30px 60px 30px;
  border-radius: 0 0 22px 22px;
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
}

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

.loan-form label span,
.select-label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.full-field {
  grid-column: 1 / -1;
}

.full-field input::placeholder {
  color:rgba(255, 255, 255, 0.40);
}

input,
select {
  width: 100%;
  min-height: 50px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 0 16px;
  outline: 0;
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: calc(100% - 19px) 21px, calc(100% - 13px) 21px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

option {
  color: var(--dark-blue);
}

input::placeholder {
  color: #000;
}

.loan-form input:focus,
.loan-form select:focus {
  border-color: rgba(255, 255, 255, 0.72);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 35px;
  justify-content: center;
}

/* Feature strip */
.feature-strip,
.process-strip {
  background: var(--primary-blue);
  color: var(--white);
}

.strip-grid {
  display: grid;
  align-items: center;
}

.strip-grid-five {
  grid-template-columns: repeat(5, 1fr);
}

.strip-item {
  min-height: 124px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: left;
  position: relative;
}

.strip-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 34%;
  right: 0;
  width: 1px;
  height: 32%;
  background: rgba(255, 255, 255, 0.20);
}

.strip-item img {
  width: 67px;
  height: 67px;
  object-fit: contain;
}

.strip-item h3 {
  font-size: 24px;
  line-height: 1.05;
  font-weight: 500;
}

/* Digital Intelligence */
#about {
  padding: 0;
}

.intelligence-grid {
  min-height: 560px;
}

.handshake-wrap {
  align-self: end;
  display: flex;
  justify-content: center;
}

.handshake-wrap img {
  width: min(720px, 100%);
  object-fit: contain;
}

/* Process */
.process-strip {
  padding: 36px 0 38px;
}

.process-strip h2 {
  color: var(--white);
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 26px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: start;
  gap: 22px;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step span {
  display: block;
  color: rgba(255, 255, 255, 0.42);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: -8px;
}

.process-step img {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.process-step h3 {
  color: var(--white);
  font-size: 15px;
  line-height: 1.15;
  font-weight: 800;
}

/* New car loans */
.new-cars {
  padding: 90px 0;
}

.loan-feature-grid {
  gap: 60px;
}

.visual-card {
  background: var(--white);
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(26, 26, 46, 0.05);
  overflow: hidden;
  max-width: 640px;
  margin-left: auto;
}

.visual-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* Car finder */
.car-finder {
  background: var(--white);
  padding: 96px 0;
}

.car-finder-grid {
  display: grid;
  grid-template-columns: 410px 1fr;
  gap: 64px;
  align-items: start;
}

.finder-panel {
  position: sticky;
  top: 104px;
}

.finder-panel h2 {
  margin-bottom: 22px;
}

.pill-tabs {
  display: inline-flex;
  background: var(--off-white);
  padding: 4px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.pill-tabs button {
  border: 0;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  color: var(--grey-text);
  background: transparent;
}

.pill-tabs button.active {
  color: var(--white);
  background: var(--primary-blue);
}

.select-label {
  display: block;
  margin-bottom: 14px;
}

.finder-panel select,
.finder-panel input,
.calculator-card input[type="range"] {
  color: var(--dark-blue);
  background-color: var(--white);
  border: 1px solid var(--border);
}

.finder-panel select {
  min-height: 46px;
  border-radius: 999px;
  color: var(--grey-text);
}

.inline-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.budget-control {
  margin: 28px 0;
}

.range-heading,
.slider-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 10px;
}

.range-heading span,
.slider-meta span {
  color: var(--dark-blue);
  font-size: 15px;
  font-weight: 800;
}

.range-heading strong,
.slider-meta strong {
  color: var(--dark-blue);
  font-size: 16px;
  font-weight: 800;
}

input[type="range"] {
  accent-color: var(--primary-blue);
}

.range-limits {
  display: flex;
  justify-content: space-between;
  color: var(--grey-text);
  font-size: 13px;
  margin-top: 8px;
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.car-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(26, 26, 46, 0.07);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.car-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

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

.car-card .badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  margin: 0;
  padding: 7px 12px;
  font-size: 12px;
}

.badge.orange {
  background: var(--light-orange);
  color: var(--dark-blue);
}

.car-card-body {
  padding: 18px 18px 20px;
}

.car-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.car-head h3 {
  color: var(--dark-blue);
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.car-head img {
  width: 72px;
  height: auto;
}

.car-card-body p {
  color: var(--grey-text);
  font-size: 15px;
  font-weight: 700;
  margin-top: 4px;
}

.car-card-body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 12px 0;
  list-style: none;
  color: var(--grey-text);
  font-size: 14px;
  font-weight: 700;
}

.car-card-body li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.car-card-body li img {
  width: 16px;
  height: 16px;
}

.car-card-body strong {
  color: var(--primary-blue);
  font-size: 15px;
  font-weight: 900;
}

/* Eligibility */
.eligibility {
  padding: 94px 0;
}

.eligibility-grid {
  gap: 82px;
}

.rounded-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 35px rgba(26, 26, 46, 0.08);
}

.rounded-image img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.icon-list {
  margin-top: 24px;
  display: grid;
  gap: 14px;
  list-style: none;
}

.icon-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dark-blue);
  font-size: 20px;
  font-weight: 800;
}

.icon-list img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* EMI Calculator */
.emi-section {
  background: var(--white);
  padding: 92px 0;
}

.emi-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 480px;
  align-items: center;
  gap: 88px;
}

.calculator-card {
  max-width: 660px;
  margin-left: auto;
}

.calculator-card h2 {
  font-size: 32px;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 34px;
}

.slider-block {
  margin-bottom: 30px;
}

.calculator-card input[type="range"] {
  width: 100%;
  height: 6px;
  border: 0;
  padding: 0;
  border-radius: 999px;
}

.emi-result-card {
  display: grid;
  place-items: center;
  gap: 30px;
}

.donut {
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background: conic-gradient(var(--primary-blue) 0 72%, var(--orange) 72% 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 20px 50px rgba(0, 65, 160, 0.10);
}

.donut > div {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 22px;
}

.donut strong {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.donut span {
  color: var(--grey-text);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  margin-top: -18px;
}

.result-legend {
  width: min(360px, 100%);
  display: grid;
  gap: 12px;
}

.result-legend p {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  color: var(--grey-text);
  font-size: 14px;
  font-weight: 700;
}

.result-legend strong {
  color: var(--dark-blue);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.legend-dot.principal { background: var(--primary-blue); }
.legend-dot.interest { background: var(--orange); }
.legend-dot.total { background: var(--dark-blue); }

/* Data section */
.data-section {
  background: var(--primary-blue);
  color: var(--white);
  padding: 0;
}

.data-grid {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  align-items: end;
  gap: 70px;
}

.advisor-image {
  align-self: end;
  display: flex;
  justify-content: center;
}

.advisor-image img {
  width: min(560px, 100%);
}

.data-content {
  padding: 88px 0 86px;
  align-self: center;
}

.data-content h2,
.data-content p {
  color: var(--white);
}

.data-content p {
  max-width: 560px;
  opacity: 0.86;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 44px;
  margin-top: 40px;
  max-width: 620px;
}

.stats-grid article {
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.stats-grid strong {
  display: block;
  color: var(--white);
  font-size: 31px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.stats-grid span {
  display: block;
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  margin: 7px 0;
}

.stats-grid small {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 600;
}

/* App */
.app-section {
  padding: 90px 0 84px;
}

.app-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: center;
  gap: 80px;
}

.app-grid .section-copy {
  max-width: 670px;
  margin-left: 90px;
}

.app-list li {
  color: var(--grey-text);
  font-weight: 700;
}

.store-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.store-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 12px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.phone-wrap {
  display: flex;
  justify-content: center;
}

.phone-wrap img {
  width: min(300px, 100%);
  filter: drop-shadow(0 20px 30px rgba(26, 26, 46, 0.12));
}

/* Testimonials */
.testimonials {
  padding: 82px 0 88px;
}

.centered {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.centered p {
  margin-inline: auto;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px;
  min-height: 270px;
  box-shadow: 0 12px 32px rgba(26, 26, 46, 0.05);
  display: flex;
  flex-direction: column;
}

.quote-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  margin-bottom: 20px;
}

.testimonial-card p {
  color: var(--grey-text);
  font-size: 16px;
  line-height: 1.65;
  flex: 1;
}

.customer-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.customer-row > img:first-child {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.customer-row strong {
  display: block;
  color: var(--dark-blue);
  font-size: 15px;
  line-height: 1.1;
  font-weight: 900;
}

.customer-row span {
  display: block;
  color: var(--grey-text);
  font-size: 13px;
  margin-top: 3px;
}

.customer-row .rating {
  width: 76px;
}

/* FAQ */
.faq-section {
  padding: 104px 0 96px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 70px;
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item button {
  width: 100%;
  min-height: 67px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  color: var(--dark-blue);
  font-size: 18px;
  font-weight: 900;
  text-align: left;
  padding: 0;
}

.faq-item button span {
  color: var(--primary-blue);
  font-size: 22px;
  font-weight: 600;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer p {
  color: var(--grey-text);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 22px;
  max-width: 820px;
}

.faq-item.active .faq-answer {
  max-height: 180px;
}

/* CTA */
.cta-section {
  min-height: 355px;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white);
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.22)), url("assets/images/Let's get your car home ( BG ).jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 790px;
}

.cta-content h2,
.cta-content p {
  color: var(--white);
  margin-inline: auto;
}

.cta-content p {
  opacity: 0.92;
}

.centered-row {
  justify-content: center;
}

/* Footer */
.site-footer {
  background: var(--white);
  padding: 62px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

.footer-brand img {
  width: 248px;
  margin-bottom: 28px;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--grey-text);
  font-size: 15px;
  font-weight: 700;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-list img {
  width: 18px;
  height: 18px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.footer-links h3 {
  color: var(--dark-blue);
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 18px;
}

.footer-links a {
  display: block;
  color: var(--grey-text);
  font-size: 15px;
  font-weight: 700;
  margin: 10px 0;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--primary-blue);
}

.footer-bottom {
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--grey-text);
  font-size: 14px;
  font-weight: 700;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

/* Tablet: 1024px */
@media (max-width: 1024px) {
  .container {
    width: min(100% - 56px, var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .section-copy h2,
  .section-heading h2,
  .finder-panel h2,
  .data-content h2,
  .faq-section h2,
  .cta-content h2 {
    font-size: 45px;
  }

  .header-inner {
    grid-template-columns: 170px auto auto;
    gap: 18px;
  }

  .brand img {
    width: 150px;
  }

  .main-nav {
    gap: 22px;
  }

  .main-nav a,
  .text-link {
    font-size: 13px;
  }

  .header-actions {
    gap: 12px;
  }

  .btn-small {
    padding: 0 14px;
  }

  .hero {
    min-height: 520px;
    background-position: 42% center;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.7fr) minmax(420px, 0.95fr);
    gap: 30px;
  }

  .hero-panel h1 {
    font-size: 42px;
  }

  .two-column,
  .loan-feature-grid,
  .eligibility-grid {
    gap: 44px;
  }

  .intelligence {
    padding-top: 88px;
  }

  .intelligence-grid {
    min-height: 500px;
  }

  .process-grid,
  .strip-grid-five {
    gap: 12px;
  }

  .strip-item {
    min-height: 110px;
    gap: 10px;
  }

  .strip-item h3 {
    font-size: 15px;
  }

  .car-finder-grid {
    grid-template-columns: 330px 1fr;
    gap: 38px;
  }

  .cars-grid {
    gap: 18px;
  }

  .car-head h3 {
    font-size: 18px;
  }

  .rounded-image img,
  .visual-card img {
    height: 280px;
  }

  .emi-grid {
    grid-template-columns: 1fr 360px;
    gap: 42px;
  }

  .donut {
    width: 240px;
    height: 240px;
  }

  .donut > div {
    width: 158px;
    height: 158px;
  }

  .app-grid {
    grid-template-columns: 1fr 300px;
    gap: 40px;
  }

  .app-grid .section-copy {
    margin-left: 0;
  }

  .testimonial-card {
    padding: 24px;
  }

  .faq-grid {
    grid-template-columns: 330px 1fr;
    gap: 40px;
  }

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

/* Mobile: 768px */
@media (max-width: 768px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .section {
    padding: 64px 0;
  }

  .section-copy h2,
  .section-heading h2,
  .finder-panel h2,
  .data-content h2,
  .faq-section h2,
  .cta-content h2 {
    font-size: 36px;
    line-height: 1.02;
  }

  .section-copy p,
  .section-heading p,
  .data-content p,
  .cta-content p,
  .faq-section p {
    font-size: 16px;
  }

  .header-inner {
    min-height: 70px;
    display: flex;
    justify-content: space-between;
  }

  .brand img {
    width: 148px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .nav-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .main-nav.is-open,
  .header-actions.is-open {
    display: flex;
    position: absolute;
    left: 16px;
    right: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    z-index: 90;
  }

  .main-nav.is-open {
    top: 77px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-radius: 18px 18px 0 0;
    padding: 16px;
    border-bottom: 0;
  }

  .main-nav.is-open a {
    width: 100%;
    padding: 13px 8px;
    font-size: 15px;
  }

  .header-actions.is-open {
    top: 300px;
    flex-direction: column;
    align-items: stretch;
    border-radius: 0 0 18px 18px;
    padding: 0 16px 18px;
    border-top: 0;
  }

  .header-actions.is-open .text-link {
    padding: 12px 8px;
  }

  .hero {
    min-height: auto;
    padding: 68px 0;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.64)), url("assets/images/Hero.jpg");
    background-position: 38% center;
  }

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

  .hero-spacer {
    display: none;
  }

  .hero-panel {
    margin: 0;
  }

  .hero-panel h1 {
    font-size: 38px;
    max-width: 420px;
  }

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

  .loan-form {
    padding: 18px;
  }

  .hero-buttons,
  .button-row,
  .store-buttons,
  .centered-row {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .store-buttons a {
    width: 100%;
  }

  .strip-grid-five,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .strip-item {
    justify-content: flex-start;
    min-height: 74px;
    padding: 0 12px;
  }

  .strip-item:not(:last-child)::after {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
  }

  .two-column,
  .loan-feature-grid,
  .eligibility-grid,
  .emi-grid,
  .data-grid,
  .app-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .intelligence {
    padding-top: 64px;
  }

  .intelligence-grid {
    min-height: 0;
  }

  .handshake-wrap {
    order: -1;
  }

  .handshake-wrap img {
    width: min(380px, 100%);
    margin-inline: auto;
  }

  .process-strip {
    padding: 42px 0;
  }

  .process-step {
    display: grid;
    grid-template-columns: 54px 52px 1fr;
    text-align: left;
    align-items: center;
    gap: 12px;
    padding: 9px 0;
  }

  .process-step span,
  .process-step img,
  .process-step h3 {
    margin: 0;
  }

  .visual-card {
    margin: 0;
  }

  .visual-card img,
  .rounded-image img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .car-finder-grid {
    grid-template-columns: 1fr;
  }

  .finder-panel {
    position: static;
  }

  .cars-grid,
  .testimonial-grid,
  .stats-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .calculator-card {
    max-width: none;
    margin: 0;
  }

  .emi-result-card {
    justify-items: center;
  }

  .data-section {
    padding-top: 0;
  }

  .data-grid {
    gap: 0;
  }

  .advisor-image {
    order: 2;
  }

  .advisor-image img {
    width: min(360px, 100%);
  }

  .data-content {
    padding: 64px 0 36px;
  }

  .app-grid {
    gap: 40px;
  }

  .phone-wrap img {
    width: min(260px, 100%);
  }

  .faq-item button {
    min-height: 62px;
    font-size: 16px;
  }

  .cta-section {
    min-height: 410px;
  }

  .footer-brand img {
    width: 210px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-panel h1 {
    font-size: 34px;
  }

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

  .inline-fields {
    grid-template-columns: 1fr;
  }

  .customer-row {
    grid-template-columns: 44px 1fr;
  }

  .customer-row .rating {
    grid-column: 1 / -1;
    margin-top: 6px;
  }

  .donut {
    width: 220px;
    height: 220px;
  }

  .donut > div {
    width: 148px;
    height: 148px;
  }

  .donut strong {
    font-size: 24px;
  }
}























/* =========================================================
   Listing CSS
   ========================================================= */


:root {
  --lq-blue: var(--color-primary);
  --lq-blue-dark: var(--color-primary-dark);
  --lq-navy: var(--color-heading);
  --lq-text: var(--color-text);
  --lq-muted: var(--color-muted);
  --lq-soft: var(--color-surface-soft);
  --lq-border: var(--color-border);
  --lq-yellow: var(--color-accent);
  --lq-white: var(--color-white);
  --lq-radius: 14px;
  --lq-container: 1400px;
  --lq-shadow: 0 16px 45px rgba(18, 31, 56, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family-base, "DM Sans");
  color: var(--lq-text);
  background: var(--white);
  font-size: 14px;
  line-height: 1.45;
}

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

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

button,
select,
input {
  font-family: inherit;
}

button {
  cursor: pointer;
}

.lq-check input {
  min-height: auto;
}

#minPrice,
#maxPrice {
  min-height: 25px;
}

.lq-container {
  width: min(100% - 92px, var(--lq-container));
  margin: 0 auto;
}

/* Header */
.lq-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(225, 230, 239, 0.9);
}

.lq-header__inner {
  height: 66px;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 28px;
}

.lq-logo img {
  width: 142px;
  height: auto;
}

.lq-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 45px;
}

.lq-nav a {
  color: #4a5060;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.lq-nav a:hover {
  color: var(--lq-blue);
}

.lq-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lq-appointment {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--lq-blue);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.lq-appointment span {
  transform: rotate(-20deg);
  display: inline-block;
  font-size: 15px;
}

.lq-header__btn {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--lq-blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(0, 74, 169, 0.18);
  transition: background 0.2s ease, transform 0.2s ease;
}

.lq-header__btn:hover {
  background: var(--lq-blue-dark);
  transform: translateY(-1px);
}

.lq-menu {
  width: 38px;
  height: 38px;
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
}

.lq-menu span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--lq-blue);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.lq-menu.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.lq-menu.is-open span:nth-child(2) {
  opacity: 0;
}

.lq-menu.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.lq-hero {
  position: relative;
  min-height: 443px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.lq-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.lq-hero__image {
  background-size: cover;
  background-position: center;
}

.lq-hero__image--left {
  background-image: linear-gradient(rgba(4, 12, 24, 0.20), rgba(4, 12, 24, 0.16)), url("assets/images/Find your car.jpg");
  background-position: center 54%;
}

.lq-hero__image--right {
  background-image: linear-gradient(rgba(4, 12, 24, 0.18), rgba(4, 12, 24, 0.20)), url("assets/images/Find your car2.jpg");
  background-position: center 50%;
}

.lq-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.06);
}

.lq-hero__panel {
  width: min(720px, calc(100% - 40px));
  min-height: 268px;
  border-radius: 12px;
  padding: 48px 58px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background: rgba(0, 74, 169, 0.92);
  box-shadow: 0 25px 60px rgba(0, 37, 88, 0.28);
}

.lq-hero__panel h1 {
  margin: 0 0 22px;
  font-size: clamp(31px, 3.05vw, 42px);
  line-height: 0.96;
  letter-spacing: -0.048em;
  font-weight: 800;
  text-transform: uppercase;
}

.lq-hero__panel p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
}

.lq-hero__cta {
  margin-top: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.lq-hero__cta a {
  min-height: 24px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.08);
}

/* Listing */
.lq-listing-section {
  padding: 46px 0 94px;
  background: var(--white);
}

.lq-result-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}

.lq-chips {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
}

.lq-result-count {
  color: #555d6d;
  font-size: 13px;
  font-weight: 500;
  margin-right: 5px;
}

.lq-chip {
  min-height: 29px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: #f1f4f8;
  color: #596273;
  font-size: 12px;
  font-weight: 700;
}

.lq-clear {
  border: 0;
  background: transparent;
  color: #404758;
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

.lq-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  align-items: start;
  gap: 36px;
}

.lq-sidebar {
  position: sticky;
  top: 150px;
  align-self: start;
  padding-bottom: 16px;
}

.lq-filter__block {
  margin-bottom: 33px;
}

.lq-filter__block h3 {
  margin: 0 0 16px;
  color: #202436;
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.lq-select-wrap {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 0 14px;
  margin-bottom: 11px;
  border: 1px solid #d6deea;
  border-radius: 7px;
  background: var(--white);
  color: #94a0af;
}

.lq-select-wrap span {
  color: #8b96a6;
  font-size: 14px;
}

.lq-select-wrap select {
  width: 100%;
  border: 0;
  outline: 0;
  color: #9099a8;
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #9099a8 50%), linear-gradient(135deg, #9099a8 50%, transparent 50%);
  background-position: calc(100% - 10px) 51%, calc(100% - 6px) 51%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.lq-filter__scroll {
  position: relative;
}

.lq-filter__scroll::after {
  content: "";
  position: absolute;
  right: 0;
  top: 42px;
  width: 2px;
  height: calc(100% - 45px);
  border-radius: 999px;
  background: #d6deea;
}

.lq-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 13px 0;
  color: #374153;
  font-size: 13px;
  font-weight: 500;
}

.lq-check input {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: #1e2a3b;
}

.lq-year-grid {
  display: grid;
  grid-template-columns: 1fr 14px 1fr;
  align-items: center;
  gap: 10px;
}

.lq-select-wrap--small {
  margin: 0;
  padding: 0 11px;
}

.lq-dash {
  color: #727b8b;
  text-align: center;
}

.lq-price-line {
  display: flex;
  justify-content: space-around;
  color: #2f3748;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 5px;
}

.lq-range-wrap {
  position: relative;
  height: 28px;
  margin-bottom: 17px;
}

.lq-range-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 12px;
  height: 2px;
  background: #d5dce7;
}

.lq-range-wrap input[type="range"] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 28px;
  appearance: none;
  background: transparent;
  pointer-events: none;
}

.lq-range-wrap input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 2px solid #202436;
  background: var(--white);
  pointer-events: auto;
}

.lq-range-wrap input[type="range"]::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid #202436;
  background: var(--white);
  pointer-events: auto;
}

.lq-price-inputs {
  display: grid;
  grid-template-columns: 1fr 14px 1fr;
  align-items: center;
  gap: 8px;
  margin-bottom: 17px;
}

.lq-price-inputs label {
  min-height: 39px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 5px;
  border: 1px solid #d6deea;
  border-radius: 7px;
  background: var(--white);
  color: #4b5567;
}

.lq-price-inputs input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  color: #4b5567;
  font-size: 11px;
  font-weight: 600;
}

.lq-price-inputs input::-webkit-outer-spin-button,
.lq-price-inputs input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

.lq-switch {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #5f6776;
  font-size: 13px;
  font-weight: 600;
}

.lq-switch input {
  display: none;
}

.lq-switch span {
  width: 38px;
  height: 21px;
  border-radius: 999px;
  background: #d1d8e3;
  position: relative;
  transition: background 0.2s ease;
}

.lq-switch span::after {
  content: "";
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--white);
  position: absolute;
  left: 2px;
  top: 2px;
  transition: transform 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
}

.lq-switch input:checked + span {
  background: var(--lq-blue);
}

.lq-switch input:checked + span::after {
  transform: translateX(17px);
}

/* Toolbar */
.lq-toolbar {
  min-height: 38px;
  margin: -6px 0 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lq-filter-toggle {
  display: none;
  border: 1px solid #d6deea;
  background: var(--white);
  color: #253047;
  border-radius: 8px;
  min-height: 36px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 800;
}

.lq-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #5b6475;
  font-size: 13px;
}

.lq-sort select {
  border: 0;
  outline: 0;
  background: transparent;
  color: #5b6475;
  min-width: 150px;
  font-size: 13px;
  font-weight: 500;
}

.lq-toolbar__right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.lq-icon-btn {
  border: 0;
  background: transparent;
  color: #4e5769;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  font-size: 15px;
  font-weight: 700;
}

.lq-icon-btn span {
  font-size: 13px;
  font-weight: 600;
}

.lq-icon-btn.is-active {
  color: var(--lq-blue);
}

/* Cards */
.lq-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 31px 33px;
}


.lq-no-results {
  grid-column: 1 / -1;
  padding: 44px 24px;
  border: 1px dashed #cfd8e6;
  border-radius: 14px;
  background: #f8fafc;
  text-align: center;
}

.lq-no-results h3 {
  margin: 0 0 8px;
  color: #202436;
  font-size: 20px;
}

.lq-no-results p {
  margin: 0;
  color: #687181;
  font-size: 14px;
}

.lq-car-card {
  overflow: hidden;
  border: 1px solid #e2e7ef;
  border-radius: 13px;
  background: var(--white);
  box-shadow: 0 7px 19px rgba(18, 31, 56, 0.035);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.lq-car-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 74, 169, 0.22);
  box-shadow: var(--lq-shadow);
}

.lq-car-card__media {
  position: relative;
  height: 164px;
  overflow: hidden;
  background: #f3f5f8;
}

.lq-car-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.lq-car-card:hover .lq-car-card__media img {
  transform: scale(1.045);
}

.lq-badge {
  position: absolute;
  top: 12px;
  left: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--lq-blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.lq-car-card__body {
  padding: 16px 17px 13px;
}

.lq-car-card__body h3 {
  margin: 0 0 5px;
  color: #222738;
  font-size: 16px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.lq-car-card__price {
  margin: 0 0 12px;
  color: #6c7484;
  font-size: 13px;
  font-weight: 600;
}

.lq-car-card__specs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px 12px;
  color: #687181;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 14px;
}

.lq-car-card__specs span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.lq-card-divider {
  height: 1px;
  background: #e7ecf3;
  margin: 0 0 12px;
}

.lq-car-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lq-emi {
  color: var(--lq-blue);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.lq-rating {
  color: var(--lq-yellow);
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Footer */
.lq-footer {
  background: var(--lq-navy);
  color: rgba(255, 255, 255, 0.78);
  padding: 74px 0 33px;
}

.lq-footer__top {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 90px;
  padding-bottom: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.lq-footer__brand img {
  width: 142px;
  margin-bottom: 19px;
}

.lq-footer__brand p {
  max-width: 270px;
  margin: 0 0 23px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.lq-footer__brand ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.lq-footer__col h4 {
  margin: 0 0 21px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.lq-footer__col a {
  display: block;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  transition: color 0.2s ease;
}

.lq-footer__col a:hover {
  color: var(--white);
}

.lq-footer__bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.lq-footer__bottom p {
  margin: 0;
}

.lq-footer__bottom div {
  display: flex;
  align-items: center;
  gap: 31px;
}

/* Responsive */
@media (max-width: 1180px) {
  .lq-container {
    width: min(100% - 48px, var(--lq-container));
  }

  .lq-header__inner {
    grid-template-columns: 150px 1fr auto;
  }

  .lq-nav {
    gap: 25px;
  }

  .lq-layout {
    grid-template-columns: 245px minmax(0, 1fr);
    gap: 25px;
  }

  .lq-card-grid {
    gap: 24px;
  }

  .lq-car-card__media {
    height: 145px;
  }
}

@media (max-width: 980px) {
  .lq-header__inner {
    height: 64px;
    grid-template-columns: 150px 1fr;
  }

  .lq-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 64px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 14px 24px 22px;
    background: var(--white);
    border-top: 1px solid #e8edf5;
    box-shadow: 0 18px 30px rgba(18, 31, 56, 0.12);
  }

  .lq-nav.is-open {
    display: flex;
  }

  .lq-nav a {
    width: 100%;
    padding: 13px 0;
    border-bottom: 1px solid #eef2f7;
    font-size: 15px;
  }

  .lq-header__actions {
    justify-self: end;
  }

  .lq-appointment,
  .lq-header__btn {
    display: none;
  }

  .lq-menu {
    display: block;
  }

  .lq-hero {
    min-height: 390px;
  }

  .lq-hero__panel {
    min-height: 235px;
    padding: 35px 30px 30px;
  }

  .lq-result-strip {
    align-items: flex-start;
  }

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

  .lq-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 80;
    width: min(330px, 88vw);
    overflow-y: auto;
    padding: 95px 24px 40px;
    background: var(--white);
    box-shadow: 20px 0 50px rgba(18, 31, 56, 0.18);
    transform: translateX(-105%);
    transition: transform 0.25s ease;
  }

  .lq-sidebar.is-open {
    transform: translateX(0);
  }

  .lq-filter-toggle {
    display: inline-flex;
    align-items: center;
  }

  .lq-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lq-car-card__media {
    height: 175px;
  }

  .lq-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 46px;
  }
}

@media (max-width: 680px) {
  .lq-container {
    width: min(100% - 30px, var(--lq-container));
  }

  .lq-logo img {
    width: 128px;
  }

  .lq-hero {
    min-height: 430px;
  }

  .lq-hero__bg {
    grid-template-columns: 1fr;
  }

  .lq-hero__image--right {
    display: none;
  }

  .lq-hero__panel {
    width: min(92%, 440px);
  }

  .lq-hero__panel h1 {
    font-size: 31px;
  }

  .lq-hero__panel p {
    font-size: 14px;
  }

  .lq-result-strip {
    flex-direction: column;
    gap: 11px;
    margin-bottom: 24px;
  }

  .lq-toolbar {
    flex-wrap: wrap;
  }

  .lq-toolbar__right {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }

  .lq-card-grid {
    grid-template-columns: 1fr;
  }

  .lq-car-card__media {
    height: 195px;
  }

  .lq-footer {
    padding: 54px 0 28px;
  }

  .lq-footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .lq-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .lq-footer__bottom div {
    flex-wrap: wrap;
    gap: 16px 24px;
  }
}

/* =========================================================
   Global Defaults + Header Conflict Fixes
   ========================================================= */
:where(html) {
  scroll-behavior: smooth;
  scroll-padding-top: 136px;
}

:where(body, button, input, select, textarea) {
  font-family: var(--font-family-base, "DM Sans");
}

:where(body) {
  color: var(--color-text, var(--dark-blue));
  background: var(--color-surface, var(--white));
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:where(img, svg) {
  max-width: 100%;
}

:where(a, button, input, select, textarea) {
  -webkit-tap-highlight-color: transparent;
}

:where(:focus-visible) {
  outline: 3px solid rgba(0, 65, 160, 0.28);
  outline-offset: 3px;
}

.site-header .header-container,
.container,
.lq-container {
  max-width: var(--container, 1400px);
}

.site-header .header-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-header .main-nav {
  height: 66px;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.site-header .nav-menu {
  height: 66px;
}

@media (min-width: 992px) {
  .site-header .main-nav {
    display: block;
  }
}

@media (max-width: 991px) {
  .site-header .header-actions {
    display: flex;
    position: static;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0;
  }

  .site-header .schedule-link,
  .site-header .eligibility-btn {
    display: none;
  }

  .site-header .menu-toggle {
    display: flex;
  }

  .site-header .main-nav {
    display: none;
    height: auto;
  }

  .site-header .main-nav.active {
    display: block;
  }

  .site-header .nav-menu {
    height: auto;
  }
}

































/* =========================================================
   About-Us CSS
   ========================================================= */

:root {
  --lq-primary: #0052b4;
  --lq-primary-dark: #003f8f;
  --lq-primary-soft: #eaf3ff;
  --lq-secondary: #f6a900;
  --lq-secondary-soft: #fff7de;
  --lq-ink: #101828;
  --lq-muted: #667085;
  --lq-border: #e6eaf0;
  --lq-bg: #ffffff;
  --lq-soft-bg: #f5f3ee;
  --lq-footer: #0d1428;
  --lq-white: #ffffff;
  --lq-radius-lg: 28px;
  --lq-radius-md: 18px;
  --lq-radius-sm: 12px;
  --lq-shadow: 0 20px 60px rgba(16, 24, 40, 0.12);
  --lq-container: 1400px;
  --lq-header-height: 78px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans";
  color: var(--lq-ink);
  background: var(--lq-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img,
svg {
  max-width: 100%;
  display: block;
}

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

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

.section-pad {
  padding: 70px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--lq-header-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(230, 234, 240, 0.8);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 30px rgba(16, 24, 40, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  transform: rotate(-12deg);
}

.brand-mark span {
  border-radius: 7px;
}

.brand-mark span:nth-child(1) { background: #0052b4; }
.brand-mark span:nth-child(2) { background: #f6a900; }
.brand-mark span:nth-child(3) { background: #19b6ff; }
.brand-mark span:nth-child(4) { background: #29c06a; }

.brand-text {
  display: grid;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-text strong {
  color: var(--lq-primary);
  font-size: 19px;
  letter-spacing: 0.06em;
  font-weight: 800;
}

.brand-text small {
  color: var(--lq-muted);
  font-size: 9px;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex: 1;
}

.primary-nav a {
  position: relative;
  color: #344054;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--lq-primary);
  transition: width 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--lq-primary);
}

.primary-nav a:hover::after,
.primary-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.link-action {
  color: var(--lq-primary);
  font-size: 14px;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--lq-white);
  background: var(--lq-primary);
  box-shadow: 0 12px 24px rgba(0, 82, 180, 0.24);
}

.btn-primary:hover {
  background: var(--lq-primary-dark);
}

.btn-outline {
  color: var(--lq-primary);
  background: var(--lq-white);
  border-color: rgba(0, 82, 180, 0.2);
}

.btn-light {
  color: var(--lq-primary);
  background: var(--lq-white);
}

.btn-white-outline {
  color: var(--lq-white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--lq-primary-soft);
  border-radius: 12px;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--lq-primary);
  border-radius: 99px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.about-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(246, 169, 0, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(0, 82, 180, 0.12), rgba(255, 255, 255, 0.92) 42%),
    linear-gradient(180deg, #f8fbff, #ffffff);
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.85)),
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%230052b4' stroke-opacity='0.08' stroke-width='1'%3E%3Cpath d='M0 40h80M40 0v80'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr);
  gap: 70px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lq-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 99px;
  background: var(--lq-secondary);
  flex-shrink: 0;
}

.hero-copy h1,
.section-copy h2,
.section-head h2,
.values-card h2,
.cta-card h2 {
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero-copy h1 {
  max-width: 780px;
  font-size: clamp(48px, 6vw, 92px);
  margin-bottom: 26px;
}

.hero-copy p {
  max-width: 670px;
  color: var(--lq-muted);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-card {
  position: relative;
  min-height: 530px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-card {
  position: relative;
  width: min(100%, 500px);
  min-height: 355px;
  padding: 46px;
  color: var(--lq-white);
  background:
    linear-gradient(rgba(0, 82, 180, 0.9), rgba(0, 63, 143, 0.94)),
    linear-gradient(135deg, #0052b4, #002f7d);
  border-radius: var(--lq-radius-lg);
  box-shadow: var(--lq-shadow);
  overflow: hidden;
}

.main-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(246, 169, 0, 0.24);
}

.mini-label {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 8px 12px;
  margin-bottom: 22px;
  color: var(--lq-primary-dark);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.main-card h2 {
  position: relative;
  z-index: 1;
  max-width: 380px;
  margin-bottom: 18px;
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.main-card p {
  position: relative;
  z-index: 1;
  max-width: 370px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.floating-stat,
.advisor-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 44px rgba(16, 24, 40, 0.12);
}

.floating-stat {
  display: grid;
  gap: 2px;
  min-width: 170px;
  padding: 20px;
  border-radius: 22px;
}

.floating-stat strong {
  color: var(--lq-primary);
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.floating-stat span,
.advisor-card span {
  color: var(--lq-muted);
  font-size: 13px;
  font-weight: 600;
}

.stat-one {
  top: 44px;
  right: 8px;
}

.stat-two {
  left: 8px;
  bottom: 72px;
}

.advisor-card {
  right: 44px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 300px;
  padding: 16px;
  border-radius: 20px;
}

.advisor-avatar {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--lq-white);
  background: linear-gradient(135deg, var(--lq-primary), var(--lq-secondary));
  border-radius: 50%;
  font-weight: 900;
}

.advisor-card strong {
  display: block;
  margin-bottom: 2px;
  color: var(--lq-ink);
}

.trust-strip {
  background: var(--lq-primary);
  color: var(--lq-white);
  padding: 36px 0;
}

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

.trust-item {
  padding: 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong,
.trust-item > span {
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.trust-item p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 600;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.section-copy h2,
.section-head h2,
.values-card h2 {
  font-size: clamp(38px, 2vw, 68px);
}

.story-content {
  display: grid;
  gap: 24px;
  color: var(--lq-muted);
  font-size: 19px;
}

.soft-bg {
  background: var(--lq-soft-bg);
}

.section-head {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head p,
.values-card p,
.cta-card p {
  margin-top: 18px;
  color: var(--lq-muted);
  font-size: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card,
.value-item,
.team-card,
.faq-list,
.values-card {
  background: var(--lq-white);
  border: 1px solid var(--lq-border);
  border-radius: var(--lq-radius-lg);
  box-shadow: 0 18px 45px rgba(16, 24, 40, 0.06);
}

.service-card {
  min-height: 250px;
  padding: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(16, 24, 40, 0.1);
}

.icon-box {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 26px;
  color: var(--lq-primary);
  background: var(--lq-primary-soft);
  border-radius: 16px;
  font-weight: 900;
}

.service-card h3,
.timeline-item h3,
.value-item h3,
.team-card h3 {
  margin-bottom: 10px;
  color: var(--lq-ink);
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.service-card p,
.timeline-item p,
.value-item p,
.team-card p {
  color: var(--lq-muted);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--lq-border);
}

.timeline-item {
  position: relative;
  z-index: 1;
  padding-top: 84px;
}

.timeline-item span {
  position: absolute;
  top: 0;
  left: 0;
  width: 84px;
  height: 84px;
  display: inline-grid;
  place-items: center;
  color: var(--lq-white);
  background: var(--lq-primary);
  border: 10px solid var(--lq-white);
  border-radius: 50%;
  box-shadow: 0 16px 35px rgba(0, 82, 180, 0.2);
  font-weight: 900;
}

.values-section {
  background: linear-gradient(135deg, var(--lq-primary), var(--lq-primary-dark));
}

.values-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.values-card {
  padding: 44px;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.value-item {
  padding: 30px;
}

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

.team-card {
  padding: 28px;
  text-align: center;
}

.team-photo {
  width: 118px;
  height: 118px;
  display: inline-grid;
  place-items: center;
  margin: 0 auto 22px;
  color: var(--lq-white);
  background: linear-gradient(135deg, var(--lq-primary), #19b6ff);
  border-radius: 32px;
  font-size: 32px;
  font-weight: 900;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 48px;
  align-items: start;
}

.faq-list {
  padding: 14px;
}

.faq-item + .faq-item {
  border-top: 1px solid var(--lq-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 18px;
  border: 0;
  color: var(--lq-ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-weight: 800;
  font-size: 19px;
}

.faq-question span {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.faq-question span::before,
.faq-question span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: var(--lq-primary);
  border-radius: 99px;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-question span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.active .faq-question span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  padding: 0 18px 24px;
  color: var(--lq-muted);
}

.final-cta {
  padding: 0 0 100px;
}

.cta-card {
  padding: clamp(42px, 7vw, 88px);
  color: var(--lq-white);
  background:
    linear-gradient(90deg, rgba(0, 63, 143, 0.96), rgba(0, 82, 180, 0.76)),
    radial-gradient(circle at 90% 20%, rgba(246, 169, 0, 0.38), transparent 26%);
  border-radius: var(--lq-radius-lg);
  overflow: hidden;
}

.cta-card h2 {
  width: 100%;
  font-size: clamp(40px, 5vw, 76px);
}

.cta-card p {
  max-width: 100%;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--lq-footer);
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 54px;
  padding-bottom: 44px;
}

.footer-logo .brand-text strong {
  color: var(--lq-white);
}

.footer-brand p {
  max-width: 300px;
  margin: 22px 0;
}

.contact-list {
  display: grid;
  gap: 8px;
  list-style: none;
}

.footer-col {
  display: grid;
  gap: 11px;
  align-content: start;
}

.footer-col h3 {
  margin-bottom: 8px;
  color: var(--lq-white);
  font-size: 17px;
}

.footer-col a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.2s ease;
}

.footer-col a:hover,
.footer-bottom a:hover {
  color: var(--lq-white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .header-actions .link-action {
    display: none;
  }

  .primary-nav {
    gap: 22px;
  }

  .hero-grid,
  .two-col,
  .values-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 500px;
  }

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

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

  .container {
    width: min(100% - 28px, var(--lq-container));
  }

  .nav-toggle {
    display: inline-block;
    order: 3;
  }

  .header-actions {
    margin-left: auto;
  }

  .primary-nav {
    position: fixed;
    top: var(--lq-header-height);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0;
    padding: 12px;
    background: var(--lq-white);
    border: 1px solid var(--lq-border);
    border-radius: 18px;
    box-shadow: var(--lq-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 14px;
  }

  .primary-nav a::after {
    display: none;
  }

  .about-hero {
    min-height: auto;
  }

  .section-pad {
    padding: 72px 0;
  }

  .hero-grid {
    gap: 36px;
  }

  .trust-grid,
  .timeline,
  .team-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .timeline::before {
    display: none;
  }

  .timeline-item {
    padding-top: 0;
    padding-left: 104px;
    min-height: 90px;
  }

  .timeline-item span {
    left: 0;
  }

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

@media (max-width: 640px) {
  .header-wrap {
    gap: 14px;
  }

  .brand-text strong {
    font-size: 16px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .header-actions .btn-primary {
    display: none;
  }

  .hero-copy h1 {
    font-size: 45px;
  }

  .hero-copy p,
  .story-content,
  .section-head p,
  .values-card p,
  .cta-card p {
    font-size: 16px;
  }

  .hero-card {
    min-height: 460px;
  }

  .main-card {
    padding: 32px;
  }

  .floating-stat {
    min-width: 138px;
    padding: 15px;
  }

  .floating-stat strong {
    font-size: 24px;
  }

  .advisor-card {
    right: 0;
    left: 0;
    min-width: auto;
  }

  .stat-one {
    right: 0;
  }

  .stat-two {
    left: 0;
  }

  .trust-grid,
  .service-grid,
  .values-list,
  .team-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

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

  .section-head {
    margin-bottom: 34px;
  }

  .final-cta {
    padding-bottom: 72px;
  }

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





































/* =========================================================
   Footer reference layout override
   Matches Footer.jpg: white background, large logo left,
   contact list below, three link columns right, divider line.
   ========================================================= */
.site-footer {
  background: #ffffff !important;
  color: #4b4b4b !important;
  padding: 74px 0 24px !important;
  font-family: var(--font-family-base, "DM Sans") !important;
}

.site-footer,
.site-footer * {
  box-sizing: border-box;
}

.site-footer > .container {
  width: min(100% - 96px, 1528px) !important;
  max-width: 1528px !important;
  margin-inline: auto !important;
}

.site-footer .footer-grid {
  display: grid !important;
  grid-template-columns: minmax(420px, 1.15fr) minmax(610px, 1fr) !important;
  gap: 120px !important;
  align-items: start !important;
  padding-bottom: 44px !important;
}

.site-footer .footer-brand {
  max-width: 560px !important;
  grid-column: auto !important;
}

.site-footer .footer-logo {
  display: inline-block !important;
  line-height: 0 !important;
  text-decoration: none !important;
}

.site-footer .footer-logo img,
.site-footer .footer-brand > img {
  display: block !important;
  width: min(520px, 100%) !important;
  height: auto !important;
  max-width: 100% !important;
  margin: 0 !important;
}

.site-footer .contact-list {
  list-style: none !important;
  display: grid !important;
  gap: 18px !important;
  margin: 86px 0 0 !important;
  padding: 0 !important;
  color: #4b4b4b !important;
  font-size: clamp(18px, 1.08vw, 22px) !important;
  font-weight: 400 !important;
  line-height: 1.25 !important;
}

.site-footer .contact-list li {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

.site-footer .contact-list a,
.site-footer .contact-item-static {
  display: inline-flex !important;
  align-items: center !important;
  gap: 17px !important;
  color: inherit !important;
  text-decoration: none !important;
  font-style: normal !important;
}

.site-footer .contact-list svg,
.site-footer .contact-list img {
  width: 24px !important;
  height: 24px !important;
  flex: 0 0 24px !important;
  color: #4b4b4b !important;
  object-fit: contain !important;
  margin: 0 !important;
}

.site-footer .footer-links {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(150px, 1fr)) !important;
  gap: 74px !important;
  padding-top: 21px !important;
  align-items: start !important;
}

.site-footer .footer-col {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

.site-footer .footer-col h3,
.site-footer .footer-links h3 {
  margin: 0 0 30px !important;
  padding: 0 !important;
  color: #000000 !important;
  font-size: clamp(18px, 1.05vw, 22px) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.01em !important;
}

.site-footer .footer-col a,
.site-footer .footer-links a {
  display: block !important;
  margin: 0 0 26px !important;
  padding: 0 !important;
  color: #4b4b4b !important;
  font-size: clamp(18px, 1.05vw, 22px) !important;
  font-weight: 400 !important;
  line-height: 1.15 !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.site-footer .footer-col a:hover,
.site-footer .footer-links a:hover,
.site-footer .footer-bottom a:hover {
  color: var(--primary-blue, #0041a0) !important;
}

.site-footer .footer-bottom {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
  margin: 0 auto !important;
  padding-top: 13px !important;
  border-top: 1px solid #a9a9a9 !important;
  color: #3f3f3f !important;
  font-size: clamp(14px, 0.82vw, 17px) !important;
  font-weight: 400 !important;
  line-height: 1.25 !important;
}

.site-footer .footer-bottom p {
  margin: 0 !important;
  color: inherit !important;
}

.site-footer .footer-bottom div {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 44px !important;
}

.site-footer .footer-bottom a {
  color: #3f3f3f !important;
  font-size: inherit !important;
  font-weight: 400 !important;
  text-decoration: none !important;
}

@media (max-width: 1180px) {
  .site-footer > .container {
    width: min(100% - 56px, 1528px) !important;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 44px !important;
  }

  .site-footer .contact-list {
    margin-top: 42px !important;
  }

  .site-footer .footer-links {
    padding-top: 0 !important;
    gap: 46px !important;
  }
}

@media (max-width: 760px) {
  .site-footer {
    padding: 50px 0 24px !important;
  }

  .site-footer > .container {
    width: min(100% - 30px, 1528px) !important;
  }

  .site-footer .footer-logo img,
  .site-footer .footer-brand > img {
    width: min(340px, 100%) !important;
  }

  .site-footer .footer-links {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .site-footer .footer-col h3,
  .site-footer .footer-links h3 {
    margin-bottom: 16px !important;
  }

  .site-footer .footer-col a,
  .site-footer .footer-links a {
    margin-bottom: 14px !important;
  }

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

  .site-footer .footer-bottom div {
    gap: 18px 28px !important;
  }
}







































/* =========================================================
   Exact white footer layout from Footer.jpg
   ========================================================= */
.footer-exact {
  background: #ffffff !important;
  color: #4b4b4b !important;
  min-height: 504px !important;
  padding: 45px 0 36px !important;
  font-family: var(--font-family-base, "DM Sans") !important;
  overflow: hidden !important;
}

.footer-exact,
.footer-exact * {
  box-sizing: border-box !important;
}

.footer-exact__container {
  width: min(calc(100% - 56px), 1527px) !important;
  max-width: 1527px !important;
  margin-inline: auto !important;
}

@media (min-width: 1700px) {
  .footer-exact__container {
    width: 1527px !important;
    max-width: 1527px !important;
    margin-left: calc((100vw - 1494px) / 2) !important;
    margin-right: auto !important;
  }
}

.footer-exact__main {
  display: grid !important;
  grid-template-columns: 1fr 2fr !important;
  column-gap: 126px !important;
  align-items: start !important;
  padding-bottom: 60px !important;
}

.footer-exact__brand {
  min-width: 0 !important;
}

.footer-exact__logo {
  display: block !important;
  width: 520px !important;
  max-width: 100% !important;
  line-height: 0 !important;
  text-decoration: none !important;
}

.footer-exact__logo img {
  display: block !important;
  width: 520px !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 !important;
}

.footer-exact__contact {
  list-style: none !important;
  display: grid !important;
  gap: 17px !important;
  margin: 20px 0 0 !important;
  padding: 0 !important;
  color: #4c4c4c !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 1.25 !important;
  letter-spacing: -0.01em !important;
}

.footer-exact__contact li {
  margin: 0 !important;
  padding: 0 !important;
}

.footer-exact__contact a,
.footer-exact__contact span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 17px !important;
  color: inherit !important;
  text-decoration: none !important;
}

.footer-exact__contact svg {
  width: 24px !important;
  height: 24px !important;
  flex: 0 0 24px !important;
  color: #4b4b4b !important;
}

.footer-exact__links {
  display: grid !important;
  grid-template-columns: 148px 119px 205px !important;
  column-gap: 12vw !important;
  align-items: start !important;
  padding-top: 51px !important;
}

.footer-exact__col {
  min-width: 0 !important;
}

.footer-exact__col h3 {
  margin: 0 0 34px !important;
  padding: 0 !important;
  color: #000000 !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  line-height: 1.16 !important;
  letter-spacing: -0.02em !important;
}

.footer-exact__col a {
  display: block !important;
  margin: 0 0 25px !important;
  padding: 0 !important;
  color: #4c4c4c !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 1.18 !important;
  letter-spacing: -0.01em !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: color 0.2s ease !important;
}

.footer-exact__col a:last-child {
  margin-bottom: 0 !important;
}

.footer-exact__col a:hover,
.footer-exact__bottom a:hover {
  color: var(--primary-blue, #0041a0) !important;
}

.footer-exact__bottom {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 24px !important;
  padding-top: 25px !important;
  border-top: 2px solid #c4c4c4 !important;
  color: #3f3f3f !important;
}

.footer-exact__bottom p {
  margin: 0 !important;
  color: inherit !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  line-height: 1.22 !important;
  letter-spacing: -0.01em !important;
}

.footer-exact__bottom nav {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 44px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.footer-exact__bottom a {
  color: #3f3f3f !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  line-height: 1.22 !important;
  letter-spacing: -0.01em !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

@media (max-width: 1360px) {
  .footer-exact {
    min-height: 0 !important;
    padding: 52px 0 30px !important;
  }

  .footer-exact__main {
    grid-template-columns: 1fr !important;
    row-gap: 44px !important;
    padding-bottom: 34px !important;
  }

  .footer-exact__links {
    grid-template-columns: repeat(3, minmax(150px, 1fr)) !important;
    column-gap: 46px !important;
    padding-top: 0 !important;
  }

  .footer-exact__contact {
    margin-top: 42px !important;
  }
}

@media (max-width: 760px) {
  .footer-exact__container {
    width: min(calc(100% - 30px), 1527px) !important;
  }

  .footer-exact__logo,
  .footer-exact__logo img {
    width: min(340px, 100%) !important;
  }

  .footer-exact__contact,
  .footer-exact__col a {
    font-size: 18px !important;
  }

  .footer-exact__col h3 {
    font-size: 19px !important;
    margin-bottom: 16px !important;
  }

  .footer-exact__links {
    grid-template-columns: 1fr !important;
    row-gap: 50px !important;
  }

  .footer-exact__col a {
    margin-bottom: 14px !important;
  }

  .footer-exact__bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .footer-exact__bottom nav {
    gap: 14px 28px !important;
  }
}

/* ── Form Validation Styles ─────────────────────────────────── */
.loan-form input.is-invalid,
.loan-form select.is-invalid {
  border-color: #e53e3e !important;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.12) !important;
}

.loan-form input.is-valid,
.loan-form select.is-valid {
  border-color: #22c55e !important;
}

.field-error {
  display: none;
  font-size: 11.5px;
  color: #e53e3e;
  margin-top: 4px;
  font-weight: 500;
}

.field-error.visible {
  display: block;
}

.req {
  color: #e53e3e;
  margin-left: 2px;
}

.form-alert {
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 8px;
  margin-top: 12px;
  display: none;
}

.form-alert.error {
  background: #fff5f5;
  border: 1px solid #fed7d7;
  color: #c53030;
  display: block;
}

.form-alert.success {
  background: #f0fff4;
  border: 1px solid #c6f6d5;
  color: #276749;
  display: block;
}

/* Spinner inside submit button */
.btn-spinner {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(0, 65, 160, 0.3);
  border-top-color: #0041a0;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-left: 6px;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Hero buttons row stays in form */
.hero-buttons {
  margin-top: 20px;
}


































/* =========================================================
   Developer Theme Detail Kit Page + Final Fixes
   ========================================================= */
.theme-kit-page .theme-kit-workspace {
  padding-top: 32px !important;
}

.theme-kit-page .settings-grid.theme-kit-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.52fr);
  gap: 30px;
}

.theme-kit-page .settings-panel {
  position: static;
}

.theme-kit-sidebar {
  position: sticky;
  top: 150px;
}

.theme-kit-card {
  border-radius: var(--card-radius, 22px);
  box-shadow: 0 18px 42px rgba(16, 24, 40, 0.07);
}

.theme-spec-grid {
  display: grid;
  gap: 14px;
}

.theme-spec-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.theme-spec-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.theme-spec-box,
.theme-type-sample,
.theme-component-block {
  border: 1px solid var(--color-border, #E5E7EB);
  background: var(--color-surface-soft, #F8FAFC);
  border-radius: var(--radius-small, 12px);
  padding: 18px;
}

.theme-spec-box span,
.theme-mini-label,
.theme-quick-list span {
  display: block;
  color: var(--color-muted, #6B7280);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.theme-spec-box strong,
.theme-quick-list strong {
  color: var(--color-heading, #1A1A2E);
  font-size: 18px;
  letter-spacing: -0.02em;
}

.theme-spec-box p,
.theme-type-sample p,
.theme-component-copy p {
  color: var(--color-muted, #6B7280);
  margin: 8px 0 0;
  line-height: 1.6;
  font-size: 14px;
}

.theme-type-sample h3 {
  color: var(--color-heading, #1A1A2E);
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin: 0;
}

.theme-token-table {
  display: grid;
  border: 1px solid var(--color-border, #E5E7EB);
  border-radius: var(--radius-small, 12px);
  overflow: hidden;
  margin-top: 16px;
}

.theme-token-table > div {
  display: grid;
  grid-template-columns: 0.9fr 1fr 1.4fr;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-border, #E5E7EB);
  background: var(--color-surface, #ffffff);
}

.theme-token-table > div:first-child {
  background: var(--color-heading, #1A1A2E);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.theme-token-table > div:last-child {
  border-bottom: 0;
}

.theme-token-table code,
.theme-note-list code,
.theme-code-card code,
.theme-spec-box code,
.theme-kit-code-card code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace !important;
  color: var(--color-primary, #0041A0);
  font-size: 13px;
}

.theme-token-table strong {
  color: var(--color-heading, #1A1A2E);
  font-size: 14px;
}

.theme-token-table span {
  color: var(--color-muted, #6B7280);
  font-size: 14px;
  line-height: 1.45;
}

.theme-color-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.theme-color-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--color-border, #E5E7EB);
  background: var(--color-surface, #ffffff);
  border-radius: var(--radius-small, 12px);
  padding: 14px;
}

.theme-color-card > span {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--swatch);
  border: 1px solid rgba(16, 24, 40, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.theme-color-card strong,
.theme-color-card code {
  display: block;
}

.theme-color-card p {
  margin: 6px 0 0;
  color: var(--color-muted, #6B7280);
  font-size: 13px;
}

.theme-breakpoints,
.theme-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.theme-breakpoints span,
.theme-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
}

.theme-breakpoints span {
  background: var(--color-surface-soft, #F8FAFC);
  border: 1px solid var(--color-border, #E5E7EB);
  color: var(--color-heading, #1A1A2E);
}

.theme-badge--blue {
  background: var(--color-primary, #0041A0);
  color: #ffffff;
}

.theme-badge--orange {
  background: var(--color-accent, #FE9A00);
  color: #ffffff;
}

.theme-component-block {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  margin-bottom: 16px;
}

.theme-component-block:last-child {
  margin-bottom: 0;
}

.theme-component-copy h3 {
  font-size: 20px;
  margin: 0;
}

.theme-form-preview {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.theme-note-list {
  display: grid;
  gap: 13px;
  padding-left: 20px;
}

.theme-note-list li {
  color: var(--color-text, #242637);
  line-height: 1.65;
}

.theme-quick-list {
  display: grid;
  gap: 10px;
}

.theme-quick-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border, #E5E7EB);
}

.theme-quick-list div:last-child {
  border-bottom: 0;
}

.theme-quick-list span {
  margin: 0;
}

.theme-kit-code-card pre {
  overflow: auto;
  max-height: 430px;
  padding: 18px;
  margin: 0;
  border-radius: var(--radius-small, 12px);
  background: #0f172a;
  color: #e5e7eb;
  font-size: 13px;
  line-height: 1.65;
}

.theme-kit-code-card pre code {
  color: #e5e7eb;
  white-space: pre-wrap;
}

.theme-kit-page .status-btn {
  border-radius: 999px;
  font-weight: 800;
}

.theme-kit-page .form-preview-grid textarea {
  min-height: 88px;
}

.site-footer.footer-exact .footer-exact__container {
  width: min(100% - 80px, var(--container, 1400px));
}

@media (max-width: 1180px) {
  .theme-kit-page .settings-grid.theme-kit-grid {
    grid-template-columns: 1fr;
  }

  .theme-kit-sidebar {
    position: static;
  }
}

@media (max-width: 860px) {
  .theme-spec-grid--three,
  .theme-spec-grid--two,
  .theme-color-grid,
  .theme-component-block,
  .theme-form-preview {
    grid-template-columns: 1fr;
  }

  .theme-token-table > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .theme-color-card {
    grid-template-columns: 46px 1fr;
  }

  .theme-color-card > span {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 720px) {
  .site-footer.footer-exact .footer-exact__container {
    width: min(100% - 32px, var(--container, 1400px));
  }
}

/* =========================================================
   Default Page / Developer Theme Kit CSS Fixes
   ========================================================= */
:root {
  --section-padding: 96px;
  --button-radius: 28px;
  --input-radius: 14px;
  --card-radius: 22px;
  --radius-small: 12px;
  --global-shadow: 0 12px 38px rgba(16, 24, 40, 0.14);
  --hover-lift: 2px;
}

.settings-page {
  min-height: 100vh;
  color: var(--color-text, #242637);
  background:
    radial-gradient(circle at top left, rgba(0, 65, 160, 0.08), transparent 34rem),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 42%, #f8fafc 100%);
  overflow-x: hidden;
}

.settings-hero {
  position: relative;
  isolation: isolate;
  padding: clamp(64px, 8vw, 110px) 0 clamp(54px, 7vw, 92px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(0, 65, 160, 0.96), rgba(0, 60, 138, 0.94)),
    radial-gradient(circle at 85% 15%, rgba(254, 154, 0, 0.32), transparent 28rem);
}

.settings-hero::before,
.settings-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
}

.settings-hero::before {
  width: 360px;
  height: 360px;
  right: -110px;
  top: -130px;
  background: rgba(254, 154, 0, 0.23);
  filter: blur(4px);
}

.settings-hero::after {
  width: 520px;
  height: 520px;
  left: -220px;
  bottom: -320px;
  background: rgba(255, 255, 255, 0.09);
}

.settings-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
}

.settings-eyebrow,
.preview-label {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.settings-eyebrow {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
}

.settings-hero h1 {
  max-width: 860px;
  margin: 22px 0 0;
  color: #ffffff;
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.settings-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.65;
}

.settings-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.settings-hero .btn {
  min-height: 48px;
  padding-inline: 22px;
  border-radius: var(--button-radius, 28px);
  box-shadow: none;
}

.settings-hero .btn-primary {
  color: var(--color-primary, #0041A0);
  background: #ffffff;
  border-color: #ffffff;
}

.settings-hero .btn-primary:hover {
  color: #ffffff;
  background: var(--color-accent, #FE9A00);
  border-color: var(--color-accent, #FE9A00);
}

.settings-hero .btn-outline {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.42);
}

.settings-hero .btn-outline:hover {
  color: var(--color-primary, #0041A0);
  background: #ffffff;
  border-color: #ffffff;
}

.settings-workspace {
  padding: clamp(34px, 5vw, 70px) 0 clamp(70px, 8vw, 120px);
}

.settings-grid {
  display: grid;
  align-items: start;
}

.settings-panel {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.settings-card,
.preview-card {
  min-width: 0;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: var(--card-radius, 22px);
  box-shadow: 0 18px 42px rgba(16, 24, 40, 0.07);
}

.settings-card {
  padding: clamp(22px, 3vw, 34px);
}

.settings-card__head {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 24px;
}

.settings-card__head > span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary, #0041A0), var(--color-primary-dark, #003C8A));
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(0, 65, 160, 0.2);
}

.settings-card__head h2,
.preview-card__head h3,
.theme-component-copy h3 {
  color: var(--color-heading, #1A1A2E);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.settings-card__head h2 {
  margin: 0;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 900;
}

.settings-card__head p {
  max-width: 760px;
  margin: 9px 0 0;
  color: var(--color-muted, #6B7280);
  font-size: 15px;
  line-height: 1.6;
}

.settings-preview {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.preview-card {
  padding: 22px;
}

.preview-card--hero {
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(0, 65, 160, 0.97), rgba(13, 20, 40, 0.96)),
    radial-gradient(circle at 80% 0%, rgba(254, 154, 0, 0.35), transparent 16rem);
  border-color: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.preview-card--hero .preview-label {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.preview-card--hero h2 {
  margin: 20px 0 0;
  color: #ffffff;
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.preview-card--hero p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}

.preview-card__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.preview-card__head h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
}

.preview-card__head > span {
  color: var(--color-muted, #6B7280);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.settings-copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 13px;
  border: 1px solid rgba(0, 65, 160, 0.22);
  border-radius: 999px;
  color: var(--color-primary, #0041A0);
  background: var(--color-surface-blue, #EEF5FF);
  font-size: 12px;
  font-weight: 900;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.settings-copy-btn:hover {
  transform: translateY(-1px);
  color: #ffffff;
  background: var(--color-primary, #0041A0);
  border-color: var(--color-primary, #0041A0);
}

.settings-status {
  min-height: 22px;
  margin: -2px 0 0;
  color: var(--color-primary, #0041A0);
  font-size: 13px;
  font-weight: 800;
}

.theme-kit-page .theme-kit-workspace {
  padding-top: clamp(34px, 5vw, 70px) !important;
}

.theme-kit-page .settings-grid.theme-kit-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.52fr);
  gap: clamp(22px, 3vw, 34px);
}

.theme-kit-panel,
.theme-kit-sidebar {
  min-width: 0;
}

.theme-kit-brand-card,
.theme-kit-quick-card,
.theme-kit-code-card {
  width: 100%;
}

.theme-token-table--compact > div {
  grid-template-columns: 0.75fr 0.8fr 1.45fr;
}

.button-showcase,
.theme-status-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.button-showcase .btn {
  min-height: 46px;
  padding-inline: 20px;
}

.theme-kit-page .button-showcase .btn-primary {
  color: #ffffff;
  background: var(--color-primary, #0041A0);
  border-color: var(--color-primary, #0041A0);
}

.theme-kit-page .button-showcase .btn-primary:hover {
  background: var(--color-primary-dark, #003C8A);
  border-color: var(--color-primary-dark, #003C8A);
}

.theme-kit-page .button-showcase .btn-outline {
  color: var(--color-primary, #0041A0);
  background: #ffffff;
  border-color: rgba(0, 65, 160, 0.28);
}

.theme-kit-page .button-showcase .btn-outline:hover {
  color: #ffffff;
  background: var(--color-primary, #0041A0);
  border-color: var(--color-primary, #0041A0);
}

.theme-kit-page .button-showcase .btn-small {
  border-radius: 999px;
}

.form-preview-grid {
  display: grid;
  gap: 14px;
}

.form-preview-grid label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: var(--color-heading, #1A1A2E);
  font-size: 13px;
  font-weight: 800;
}

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

.form-preview-grid label > span {
  color: var(--color-muted, #6B7280);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-preview-grid input,
.form-preview-grid select,
.form-preview-grid textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--color-border, #E5E7EB);
  border-radius: var(--input-radius, 14px);
  background: #ffffff;
  color: var(--color-text, #242637);
  padding: 12px 14px;
  font-size: 14px;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-preview-grid textarea {
  resize: vertical;
}

.form-preview-grid input:focus,
.form-preview-grid select:focus,
.form-preview-grid textarea:focus {
  border-color: var(--color-primary, #0041A0);
  box-shadow: 0 0 0 4px rgba(0, 65, 160, 0.12);
}

.status-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
}

.status-success {
  color: #047857;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.status-warning {
  color: #b45309;
  background: #fffbeb;
  border: 1px solid #fde68a;
}

.status-danger {
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.theme-spec-box,
.theme-color-card,
.theme-component-block,
.theme-type-sample,
.theme-token-table,
.preview-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.theme-spec-box:hover,
.theme-color-card:hover,
.theme-component-block:hover,
.theme-type-sample:hover {
  transform: translateY(calc(var(--hover-lift, 2px) * -1));
  border-color: rgba(0, 65, 160, 0.22);
  box-shadow: 0 14px 28px rgba(16, 24, 40, 0.06);
}

.theme-kit-code-card pre {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.35) rgba(255, 255, 255, 0.08);
}

.theme-kit-code-card pre::-webkit-scrollbar {
  height: 8px;
  width: 8px;
}

.theme-kit-code-card pre::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}

.theme-kit-code-card pre::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}

.theme-kit-page .site-header {
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06);
}

@media (max-width: 1180px) {
  .settings-hero__inner,
  .theme-kit-page .settings-grid.theme-kit-grid {
    grid-template-columns: 1fr;
  }

  .settings-actions {
    justify-content: flex-start;
  }

  .theme-kit-sidebar {
    position: static;
  }
}

@media (max-width: 860px) {
  .settings-card,
  .preview-card {
    border-radius: 18px;
  }

  .settings-card__head {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
  }

  .settings-card__head > span {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .theme-token-table--compact > div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .settings-hero {
    padding-top: 46px;
  }

  .settings-hero h1 {
    font-size: clamp(36px, 13vw, 52px);
  }

  .settings-actions,
  .settings-actions .btn {
    width: 100%;
  }

  .settings-card__head {
    grid-template-columns: 1fr;
  }

  .settings-card__head > span {
    width: max-content;
    min-width: 44px;
  }

  .preview-card__head {
    align-items: flex-start;
    flex-direction: column;
  }
}

.theme-kit-hero {
  overflow: hidden;
}


/* =========================================================
   Contact Page + Final Responsive Fixes
   ========================================================= */
.site-header .header-container {
  width: min(100% - 40px, var(--container, 1400px));
  max-width: var(--container, 1400px);
  padding: 0;
}

.site-header .nav-menu {
  gap: clamp(18px, 3vw, 34px);
  padding: 0 20px;
}

.site-header .nav-menu > li > a {
  font-size: clamp(15px, 1.15vw, 17px);
  font-weight: 600;
  white-space: nowrap;
}

.site-header .dropdown-menu {
  z-index: 1000;
}

.footer-exact__tagline {
  max-width: 310px;
  margin: 14px 0 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.55;
}

.contact-page {
  background: #ffffff;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(254, 154, 0, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(0, 65, 160, 0.12), rgba(255, 255, 255, 0.96) 48%),
    linear-gradient(180deg, #f8fbff, #ffffff);
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.86)),
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%230041A0' stroke-opacity='0.08' stroke-width='1'%3E%3Cpath d='M0 40h80M40 0v80'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.contact-hero__grid,
.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.65fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.contact-hero__copy h1,
.contact-form-card h2 {
  margin: 0;
  color: var(--lq-ink, #111827);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.contact-hero__copy h1 {
  max-width: 820px;
  font-size: clamp(48px, 4vw, 65px);
}

.contact-hero__copy p,
.contact-form-card > p {
  max-width: 720px;
  margin-top: 22px;
  color: var(--lq-muted, #667085);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.7;
}

.contact-hero__card,
.contact-form-card,
.contact-side-card,
.contact-info-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: var(--lq-radius-lg, 28px);
  box-shadow: 0 20px 55px rgba(16, 24, 40, 0.08);
}

.contact-hero__card {
  padding: clamp(28px, 4vw, 46px);
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(0, 65, 160, 0.96), rgba(13, 20, 40, 0.94)),
    radial-gradient(circle at 95% 8%, rgba(254, 154, 0, 0.36), transparent 17rem);
}

.contact-hero__card .mini-label {
  color: var(--color-primary, #0041A0);
}

.contact-hero__card h2 {
  max-width: 450px;
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.contact-hero__card p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-quick-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  list-style: none;
}

.contact-quick-list li {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-quick-list strong {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-quick-list a,
.contact-quick-list span {
  color: #ffffff;
  font-weight: 800;
  word-break: break-word;
}

.contact-strip {
  padding: 38px 0;
  background: var(--lq-primary, #0041A0);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.contact-info-card {
  min-height: 220px;
  padding: 26px;
}

.contact-info-card > span {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--lq-primary, #0041A0);
  background: var(--lq-primary-soft, #edf4ff);
  border-radius: 16px;
  font-weight: 900;
}

.contact-info-card h3 {
  margin: 0 0 8px;
  color: var(--lq-ink, #111827);
  font-size: 21px;
  letter-spacing: -0.03em;
}

.contact-info-card a,
.contact-info-card strong {
  color: var(--lq-primary, #0041A0);
  font-weight: 900;
}

.contact-info-card p {
  margin-top: 10px;
  color: var(--lq-muted, #667085);
  font-size: 14px;
  line-height: 1.55;
}

.contact-workspace {
  background: #ffffff;
}

.contact-layout {
  align-items: start;
}

.contact-form-card {
  padding: clamp(26px, 4vw, 44px);
}

.contact-form-card h2 {
  font-size: clamp(36px, 4.8vw, 68px);
}

.contact-form {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form-grid label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

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

.contact-form-grid label > span {
  color: var(--lq-ink, #111827);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.contact-form-grid em {
  color: #b91c1c;
  font-style: normal;
}

.contact-form-grid input,
.contact-form-grid select,
.contact-form-grid textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--lq-border, #e6eaf0);
  border-radius: 15px;
  background: #ffffff;
  color: var(--lq-ink, #111827);
  padding: 14px 16px;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-grid textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form-grid input:focus,
.contact-form-grid select:focus,
.contact-form-grid textarea:focus {
  border-color: var(--lq-primary, #0041A0);
  box-shadow: 0 0 0 4px rgba(0, 65, 160, 0.12);
}

.contact-form-grid .field-error {
  min-height: 18px;
  color: #b91c1c;
  font-size: 12px;
  font-weight: 700;
  display: none;
}

.contact-form-grid .field-error.visible {
  display: block;
}

.contact-form .form-alert {
  min-height: 22px;
  color: #b91c1c;
  font-weight: 800;
}

.contact-form .btn {
  width: max-content;
  min-width: 190px;
}

.contact-sidebar {
  position: sticky;
  top: 150px;
  display: grid;
  gap: 18px;
}

.contact-side-card {
  padding: 28px;
}

.contact-side-card--blue {
  color: #ffffff;
  background: linear-gradient(145deg, var(--lq-primary, #0041A0), var(--lq-primary-dark, #003C8A));
  border-color: rgba(255, 255, 255, 0.08);
}

.contact-side-card--blue .mini-label {
  color: var(--lq-primary, #0041A0);
  background: #ffffff;
}

.contact-side-card ol {
  display: grid;
  gap: 18px;
  margin-top: 22px;
  padding-left: 20px;
}

.contact-side-card li strong,
.contact-side-card li span,
.contact-side-card a {
  display: block;
}

.contact-side-card li strong {
  margin-bottom: 5px;
  color: #ffffff;
}

.contact-side-card li span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.5;
}

.contact-side-card h3 {
  margin: 0 0 16px;
  color: var(--lq-ink, #111827);
  font-size: 22px;
}

.contact-side-card a {
  padding: 12px 0;
  color: var(--lq-primary, #0041A0);
  font-weight: 900;
  border-top: 1px solid var(--lq-border, #e6eaf0);
}

.contact-final-cta {
  padding-top: 0;
}

@media (max-width: 1180px) {
  .site-header .nav-menu {
    gap: 20px;
  }

  .site-header .nav-menu > li > a {
    font-size: 15px;
  }

  .contact-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  :where(html) {
    scroll-padding-top: 82px;
  }

  .site-header .header-container {
    width: min(100% - 32px, var(--container, 1400px));
  }

  .site-header .main-nav.active {
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .site-header .nav-menu {
    padding: 10px 0 18px;
  }

  .site-header .nav-menu > li > a {
    white-space: normal;
  }

  .dropdown.active .dropdown-menu,
  .site-header .dropdown.active .dropdown-menu {
    display: block;
  }

  .contact-hero__grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  .contact-hero__copy h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .contact-info-grid,
  .contact-form-grid,
  .contact-service-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-card,
  .contact-side-card,
  .contact-info-card,
  .contact-hero__card {
    border-radius: 20px;
  }

  .contact-form .btn {
    width: 100%;
  }

  .contact-quick-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-exact__tagline {
    margin-inline: auto;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .site-header .header-container {
    width: min(100% - 24px, var(--container, 1400px));
  }

  .contact-form-grid input,
  .contact-form-grid select,
  .contact-form-grid textarea {
    min-height: 50px;
    border-radius: 13px;
  }
}

/* =========================================================
   Listing refinements + single car detail page
   ========================================================= */
.lq-listing-intro {
  display: grid;
  grid-template-columns: minmax(170px, 240px) minmax(0, 780px);
  gap: 28px;
  align-items: start;
  margin-bottom: 30px;
}

.lq-listing-intro h2 {
  margin: 0 0 10px;
  color: var(--color-heading);
  font-size: clamp(34px, 4vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.lq-listing-intro p {
  max-width: 650px;
  margin: 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 600;
}

.lq-car-card__link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.lq-car-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.lq-car-card__head span {
  flex: 0 0 auto;
  color: var(--lq-blue);
  background: rgba(0, 65, 160, 0.08);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
}

.lq-card-detail-btn {
  margin-top: 14px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 999px;
  color: var(--lq-blue);
  background: rgba(0, 65, 160, 0.08);
  font-size: 13px;
  font-weight: 900;
  transition: color 0.22s ease, background 0.22s ease;
}

.lq-car-card:hover .lq-card-detail-btn {
  color: #ffffff;
  background: var(--lq-blue);
}

.car-detail-page {
  background: #ffffff;
}

.car-detail-hero {
  padding: clamp(58px, 7vw, 96px) 0;
  background:
    linear-gradient(135deg, rgba(0, 65, 160, 0.94), rgba(0, 60, 138, 0.88)),
    url("assets/images/Hero.jpg") center/cover no-repeat;
  color: #ffffff;
  overflow: hidden;
}

.car-detail-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}

.car-detail-back {
  display: inline-flex;
  align-items: center;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.car-detail-hero__copy .mini-label {
  background: #ffffff;
  color: var(--color-primary);
}

.car-detail-hero__copy h1 {
  margin: 18px 0 10px;
  max-width: 820px;
  color: #ffffff;
  font-size: clamp(52px, 8vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.08em;
  font-weight: 900;
}

.car-detail-subtitle {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
}

.car-detail-hero__copy > p:not(.car-detail-subtitle) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 600;
}

.car-detail-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.car-detail-hero__actions .btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.car-detail-price-card,
.car-detail-card,
.car-detail-loan-card,
.car-detail-form-card,
.car-detail-gallery-card {
  border: 1px solid var(--color-border);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 22px 55px rgba(26, 26, 46, 0.08);
}

.car-detail-price-card {
  padding: 30px;
  color: var(--color-heading);
}

.car-detail-price-card > span {
  display: block;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.car-detail-price-card > strong {
  display: block;
  margin: 8px 0 22px;
  color: var(--color-primary);
  font-size: clamp(28px, 3.3vw, 42px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.car-detail-price-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.car-detail-price-meta p,
.car-detail-loan-list p {
  margin: 0;
  padding: 16px;
  border-radius: 18px;
  background: var(--color-surface-soft);
}

.car-detail-price-meta small,
.car-detail-loan-list span {
  display: block;
  margin-bottom: 6px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 800;
}

.car-detail-price-meta b,
.car-detail-loan-list strong {
  color: var(--color-heading);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 900;
}

.car-detail-location {
  margin-top: 16px;
  color: var(--color-heading);
  font-size: 14px;
  font-weight: 800;
}

.car-detail-main {
  padding: clamp(58px, 7vw, 96px) 0;
}

.car-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 400px);
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
}

.car-detail-content {
  display: grid;
  gap: 28px;
}

.car-detail-sidebar {
  position: sticky;
  top: 154px;
  display: grid;
  gap: 22px;
}

.car-detail-gallery-card {
  padding: 18px;
}

.car-detail-main-image {
  overflow: hidden;
  border-radius: 22px;
  background: var(--color-surface-soft);
}

.car-detail-main-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.car-detail-thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.car-detail-thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
}

.car-detail-thumb.active {
  border-color: var(--color-primary);
}

.car-detail-thumb img {
  width: 100%;
  height: 105px;
  object-fit: cover;
  display: block;
}

.car-detail-card,
.car-detail-loan-card,
.car-detail-form-card {
  padding: clamp(24px, 3.4vw, 38px);
}

.car-detail-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.car-detail-section-head h2,
.car-detail-support-card h2,
.car-detail-loan-card h2,
.car-detail-form-card h3,
.car-detail-related h2 {
  margin: 0;
  color: var(--color-heading);
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.car-detail-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.car-detail-spec {
  min-height: 96px;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: var(--color-surface-soft);
}

.car-detail-spec span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.car-detail-spec strong {
  color: var(--color-heading);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 900;
}

.car-detail-support-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.7fr);
  gap: 28px;
  align-items: start;
  background: linear-gradient(145deg, var(--color-primary), var(--color-primary-dark));
  color: #ffffff;
  border: 0;
}

.car-detail-support-card .mini-label {
  color: var(--color-primary);
  background: #ffffff;
}

.car-detail-support-card h2 {
  margin-top: 16px;
  color: #ffffff;
}

.car-detail-support-card p {
  max-width: 560px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 600;
}

.car-detail-support-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.car-detail-support-card li {
  padding: 14px 16px;
  border-radius: 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 800;
}

.car-detail-loan-card h2 {
  margin: 14px 0 20px;
  font-size: 32px;
}

.car-detail-loan-list {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.car-detail-loan-card .btn,
.car-detail-form-card .btn {
  width: 100%;
}

.car-detail-form-card h3 {
  font-size: 28px;
}

.car-detail-form-card p {
  margin: 10px 0 20px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 600;
}

.mini-lead-form {
  display: grid;
  gap: 14px;
}

.mini-lead-form label {
  display: grid;
  gap: 8px;
  color: var(--color-heading);
  font-size: 13px;
  font-weight: 900;
}

.mini-lead-form input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--color-border);
  border-radius: 15px;
  padding: 0 15px;
  color: var(--color-heading);
  background: #ffffff;
  outline: 0;
}

.mini-lead-form input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(0, 65, 160, 0.12);
}

.car-detail-related {
  padding: 0 0 clamp(64px, 7vw, 104px);
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 28px;
}

.text-link {
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.car-detail-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.car-detail-related-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  background: #ffffff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(26, 26, 46, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.car-detail-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(26, 26, 46, 0.12);
}

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

.car-detail-related-card span {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--color-primary);
  font-size: 11px;
  font-weight: 900;
}

.car-detail-related-card h3,
.car-detail-related-card p,
.car-detail-related-card strong {
  display: block;
  margin-inline: 18px;
}

.car-detail-related-card h3 {
  margin-top: 18px;
  color: var(--color-heading);
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.car-detail-related-card p {
  margin-top: 6px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
}

.car-detail-related-card strong {
  margin-top: 12px;
  margin-bottom: 18px;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 900;
}

/* Font normalization for equal typography across every page */
:where(body, button, input, select, textarea) {
  font-family: var(--font-family-base, "DM Sans") !important;
}

body :where(div, section, article, aside, nav, header, footer, main, p, a, span, small, strong, b, em, i, li, label, button, input, select, textarea, h1, h2, h3, h4, h5, h6, table, th, td) {
  font-family: var(--font-family-base, "DM Sans") !important;
}

body :where(code, pre, kbd, samp),
body :where(code, pre, kbd, samp) * {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace !important;
}

:where(body) {
  font-weight: 500;
}

:where(p, li, label, input, select, textarea) {
  letter-spacing: -0.01em;
}

:where(h1, h2, h3, h4, h5, h6) {
  text-wrap: balance;
}

@media (max-width: 1180px) {
  .car-detail-spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .lq-listing-intro,
  .car-detail-hero__grid,
  .car-detail-layout,
  .car-detail-support-card {
    grid-template-columns: 1fr;
  }

  .car-detail-sidebar {
    position: static;
  }

  .car-detail-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .lq-listing-intro h2 {
    font-size: clamp(34px, 12vw, 52px);
  }

  .car-detail-hero__copy h1 {
    font-size: clamp(46px, 15vw, 72px);
  }

  .car-detail-hero__actions,
  .split-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .car-detail-hero__actions .btn,
  .car-detail-hero__actions .btn-outline {
    width: 100%;
  }

  .car-detail-price-meta,
  .car-detail-spec-grid,
  .car-detail-related-grid {
    grid-template-columns: 1fr;
  }

  .car-detail-thumb img {
    height: 74px;
  }
}


/* Popup Page */
.popup-page {
  background: var(--color-surface-soft);
  color: var(--color-heading);
}

.popup-page .btn-primary,
.lq-popup .btn-primary {
  color: var(--color-white);
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.popup-page .btn-primary:hover,
.lq-popup .btn-primary:hover {
  color: var(--color-primary);
  background: var(--color-white);
  border-color: var(--color-primary);
}

.popup-hero {
  padding: clamp(70px, 8vw, 118px) 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(254, 154, 0, 0.22), transparent 34%),
    linear-gradient(135deg, #003c8a 0%, #0041a0 55%, #0c5cc8 100%);
  overflow: hidden;
}

.popup-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(36px, 6vw, 86px);
}

.popup-hero__copy {
  color: var(--color-white);
}

.popup-eyebrow,
.popup-mini-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--color-primary);
  background: rgba(0, 65, 160, 0.09);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.popup-hero .popup-eyebrow {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.16);
}

.popup-hero__copy h1 {
  max-width: 820px;
  margin-top: 18px;
  font-size: clamp(48px, 6.3vw, 94px);
  line-height: 0.92;
  letter-spacing: -0.07em;
  font-weight: 900;
}

.popup-hero__copy p {
  max-width: 680px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.65;
  font-weight: 600;
}

.popup-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.popup-hero .btn-primary {
  color: var(--color-primary);
  background: var(--color-white);
  border-color: var(--color-white);
}

.popup-hero .btn-primary:hover {
  color: var(--color-white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.75);
}

.popup-hero .btn-outline {
  color: var(--color-primary);
  border-color: rgba(255, 255, 255, 0.5);
}

.popup-hero .btn-outline:hover {
  color: var(--color-primary);
  background: var(--color-white);
  border-color: var(--color-white);
}

.popup-hero__visual {
  position: relative;
}

.popup-preview-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.popup-preview-card::before {
  content: "";
  position: absolute;
  inset: auto -35px -65px auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(254, 154, 0, 0.23);
}

.popup-preview-card__top {
  display: flex;
  gap: 9px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(0, 65, 160, 0.10);
}

.popup-preview-card__top span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(0, 65, 160, 0.18);
}

.popup-preview-card__body {
  position: relative;
  padding: clamp(30px, 4vw, 54px);
}

.popup-preview-card__body h2 {
  margin-top: 18px;
  color: var(--color-heading);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.popup-preview-card__body p {
  margin-top: 18px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 700;
}

.popup-preview-lines {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.popup-preview-lines span {
  height: 14px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(0, 65, 160, 0.16), rgba(0, 65, 160, 0.03));
}

.popup-preview-lines span:nth-child(2) { width: 78%; }
.popup-preview-lines span:nth-child(3) { width: 58%; }

.popup-demo-section,
.popup-guide-section {
  padding: clamp(64px, 7vw, 104px) 0;
}

.popup-section-heading {
  margin-bottom: 32px;
}

.popup-section-heading h2 {
  margin-top: 16px;
}

.popup-section-heading code {
  padding: 3px 7px;
  border-radius: 8px;
  background: rgba(0, 65, 160, 0.08);
  color: var(--color-primary);
  font-weight: 900;
}

.popup-demo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.popup-demo-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: 28px;
  background: var(--color-white);
  box-shadow: 0 18px 44px rgba(26, 26, 46, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.popup-demo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 62px rgba(26, 26, 46, 0.12);
}

.popup-card-icon {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 18px;
  color: var(--color-primary);
  background: var(--color-surface-blue);
  font-size: 23px;
  font-weight: 900;
}

.popup-demo-card h3 {
  margin-top: 24px;
  color: var(--color-heading);
  font-size: 27px;
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.popup-demo-card p {
  margin: 14px 0 24px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 650;
}

.popup-demo-card .btn {
  width: 100%;
  margin-top: auto;
}

.popup-guide-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 26px;
}

.popup-guide-card {
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid var(--color-border);
  border-radius: 30px;
  background: var(--color-white);
  box-shadow: 0 18px 44px rgba(26, 26, 46, 0.06);
}

.popup-guide-card h2 {
  margin-top: 16px;
  color: var(--color-heading);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.popup-guide-card p {
  max-width: 640px;
  margin-top: 16px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 650;
}

.popup-guide-card pre {
  overflow-x: auto;
  margin-top: 24px;
  padding: 22px;
  border-radius: 20px;
  color: var(--color-white);
  background: #101827;
  font-size: 14px;
  line-height: 1.6;
}

.popup-guide-card--blue {
  color: var(--color-white);
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.popup-guide-card--blue .popup-eyebrow {
  color: var(--color-primary);
  background: var(--color-white);
}

.popup-guide-card--blue ul {
  display: grid;
  gap: 16px;
  list-style: none;
  margin-top: 28px;
}

.popup-guide-card--blue li {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.11);
}

.popup-guide-card--blue strong {
  font-size: 16px;
  font-weight: 900;
}

.popup-guide-card--blue span:not(.popup-eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 650;
}

body.popup-lock {
  overflow: hidden;
}

.lq-popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lq-popup.is-open {
  display: flex;
}

.lq-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 30, 0.68);
  backdrop-filter: blur(10px);
}

.lq-popup__dialog {
  position: relative;
  width: min(100%, 520px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  border-radius: 30px;
  background: var(--color-white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
  outline: 0;
  animation: popupRise 0.28s ease both;
}

.lq-popup__dialog--wide {
  width: min(100%, 860px);
}

.lq-popup__dialog--success {
  width: min(100%, 460px);
  padding: 44px;
  text-align: center;
}

.lq-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--color-heading);
  background: rgba(26, 26, 46, 0.06);
  font-size: 28px;
  line-height: 1;
}

.lq-popup__close:hover {
  color: var(--color-primary);
  background: var(--color-surface-blue);
}

.lq-popup__content {
  padding: clamp(30px, 4vw, 48px);
}

.lq-popup__content h2,
.lq-popup__dialog--success h2 {
  margin-top: 16px;
  color: var(--color-heading);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.lq-popup__content p,
.lq-popup__dialog--success p {
  margin-top: 14px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 650;
}

.lq-popup__content--split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 26px;
  padding: 22px;
}

.lq-popup__blue-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border-radius: 24px;
  color: var(--color-white);
  background: var(--color-primary);
}

.lq-popup__blue-panel .popup-eyebrow {
  color: var(--color-primary);
  background: var(--color-white);
}

.lq-popup__blue-panel h2 {
  color: var(--color-white);
}

.lq-popup__blue-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.lq-popup__blue-panel ul {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 700;
}

.lq-popup-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.lq-popup__content--split .lq-popup-form {
  margin-top: 0;
  padding: 8px 12px 8px 0;
  align-self: center;
}

.lq-popup-form label {
  display: grid;
  gap: 8px;
  color: var(--color-heading);
  font-size: 13px;
  font-weight: 900;
}

.lq-popup-form input,
.lq-popup-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--color-border);
  border-radius: 15px;
  padding: 0 15px;
  color: var(--color-heading);
  background: var(--color-white);
  outline: 0;
}

.lq-popup-form input:focus,
.lq-popup-form select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(0, 65, 160, 0.12);
}

.lq-popup-form input.is-invalid,
.lq-popup-form select.is-invalid {
  border-color: #d93025;
  box-shadow: 0 0 0 4px rgba(217, 48, 37, 0.10);
}

.lq-popup-form .btn {
  width: 100%;
  margin-top: 4px;
}

.lq-popup__success-icon {
  display: inline-grid;
  width: 74px;
  height: 74px;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--color-primary);
  font-size: 32px;
  font-weight: 900;
}

.lq-popup__dialog--success .btn {
  margin-top: 26px;
}

@keyframes popupRise {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1180px) {
  .popup-demo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .popup-hero__grid,
  .popup-guide-grid,
  .lq-popup__content--split {
    grid-template-columns: 1fr;
  }

  .lq-popup__content--split .lq-popup-form {
    padding: 0;
  }
}

@media (max-width: 640px) {
  .popup-hero {
    padding: 54px 0 68px;
  }

  .popup-demo-grid {
    grid-template-columns: 1fr;
  }

  .popup-demo-card {
    min-height: auto;
  }

  .lq-popup {
    padding: 14px;
  }

  .lq-popup__dialog,
  .lq-popup__dialog--success {
    border-radius: 24px;
  }

  .lq-popup__dialog--success {
    padding: 34px 24px;
  }
}

.car-detail-main-image {
  position: relative;
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: all 0.2s;
}
.gallery-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.gallery-arrow--prev { left: 12px; }
.gallery-arrow--next { right: 12px; }
.field-error { color: #dc2626; font-size: 12px; display: block; min-height: 16px; }
.is-invalid { border-color: #dc2626 !important; }
.is-valid { border-color: #16a34a !important; }