:root {
  --ink: #0b0f19;
  --ink-2: #111827;
  --muted: #5b6472;
  --line: #e5e7eb;
  --soft: #f4f7fb;
  --card: #ffffff;
  --blue: #1189cf;
  --blue-dark: #0869a4;
  --gold: #f2b705;
  --green: #16a34a;
  --shadow: 0 18px 45px rgba(15, 23, 42, .12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--soft);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { color: var(--muted); line-height: 1.7; margin: 0 0 16px; }
.container { width: min(1180px, 92%); margin: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(17,137,207,.11);
  color: var(--blue-dark);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .02em;
}
.top-strip {
  background: #05070d;
  color: #d6e2ee;
  font-size: 14px;
}
.top-strip .container {
  min-height: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.top-strip a { color: #fff; font-weight: 800; }

.topbar {
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(229,231,235,.9);
}
.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 950; }
.brand img { width: 98px; height: auto; }
.brand span { line-height: 1.05; font-size: 18px; letter-spacing: .02em; }
.topbar nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.topbar nav a {
  color: #1f2937;
  font-size: 15px;
  font-weight: 800;
}

.topbar nav a:hover,
.topbar nav a.active {
  color: var(--blue);
}
.nav-actions { display: flex; gap: 10px; align-items: center; }
.menu-btn { display: none; background: #eef6fc; color: var(--blue-dark); }

.btn, button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  font-size: 15px;
}
.btn:hover, button:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(15,23,42,.16); }
.primary { background: var(--blue); color: #fff; }
.secondary { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.gold { background: var(--gold); color: #121212; }
.call-btn { background: #0b0f19; color: #fff; }

.hero {
  min-height: 700px;
  color: white;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 82% 22%, rgba(17,137,207,.32), transparent 34%),
    linear-gradient(110deg, rgba(5,7,13,.96), rgba(5,7,13,.82), rgba(5,7,13,.44)),
    url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?q=80&w=1800&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.hero h1 { font-size: clamp(42px, 6vw, 74px); line-height: .98; margin: 20px 0 22px; max-width: 820px; }
.hero p { color: #dce8f3; font-size: 19px; max-width: 700px; }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-panel {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(16px);
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}
.hero-panel h3 { margin: 0 0 12px; font-size: 24px; }
.quick-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.quick-list li { color: #f5f7fb; display: flex; gap: 10px; align-items: start; }
.quick-list li::before { content: '✓'; color: var(--gold); font-weight: 950; }

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: -70px;
  position: relative;
  z-index: 2;
}
.feature-card, .vehicle-card, .lead-form, .contact-card, .cta-box, .info-card, .service-card, .review-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(229,231,235,.75);
}
.feature-card h3, .service-card h3 { margin: 0 0 8px; font-size: 20px; }
.feature-card p { margin: 0; }
.icon { width: 46px; height: 46px; border-radius: 14px; background: #eef8ff; color: var(--blue); display: grid; place-items: center; font-weight: 950; margin-bottom: 16px; }

.section { padding: 82px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.section-head h2, h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.08; margin: 0 0 12px; }
.section-head p { max-width: 720px; }
.section-head a { color: var(--blue-dark); font-weight: 950; }

.vehicle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vehicle-card { overflow: hidden; padding: 0; }
.vehicle-image {
  height: 220px;
  background: linear-gradient(135deg, #07111f, #1189cf);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 950;
  font-size: 24px;
  text-align: center;
  padding: 22px;
}
.vehicle-image img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-info { padding: 24px; }
.vehicle-info h3 { margin: 0 0 8px; font-size: 22px; }
.price { color: var(--blue-dark); font-weight: 950; font-size: 26px; margin-bottom: 12px; }
.meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 22px; }
.meta span { background: #eef2f7; border-radius: 999px; padding: 7px 10px; font-size: 13px; color: #374151; font-weight: 700; }
.card-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 38px; align-items: start; }
.dark-section { background: #07111f; color: #fff; padding: 72px 0; }
.dark-section p { color: #cbd5e1; }
.service-grid, .review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card p, .review-card p { margin: 0; }
.tick-list { padding: 0; margin: 20px 0; list-style: none; display: grid; gap: 12px; }
.tick-list li { padding-left: 30px; position: relative; color: #334155; line-height: 1.5; }
.tick-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 950; }

.page-title {
  background:
    linear-gradient(110deg, rgba(7,17,31,.96), rgba(7,17,31,.78)),
    url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?q=80&w=1600&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 88px 0;
}
.page-title h1 { font-size: clamp(38px, 5vw, 64px); margin: 12px 0 10px; line-height: 1; }
.page-title p { color: #dce8f3; font-size: 18px; max-width: 760px; }

.filters { display: grid; grid-template-columns: minmax(240px, 1.4fr) repeat(5, minmax(140px, 1fr)); gap: 14px; margin-bottom: 18px; }

.vehicle-results-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
  color: var(--muted);
  font-weight: 800;
}
.filter-reset {
  width: auto;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--blue-dark);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 900;
  cursor: pointer;
}
.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.pagination button {
  width: auto;
  min-width: 46px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 11px 16px;
  font-weight: 950;
  cursor: pointer;
}
.pagination button.active {
  background: var(--blue-dark);
  color: #fff;
  border-color: var(--blue-dark);
}
.pagination button:disabled {
  opacity: .45;
  cursor: not-allowed;
}

input, textarea, select {
  width: 100%;
  border: 1px solid #d7dde6;
  border-radius: 16px;
  padding: 14px 15px;
  margin-top: 8px;
  font-size: 16px;
  background: white;
  color: var(--ink);
}
textarea { min-height: 130px; resize: vertical; }
.lead-form { display: grid; gap: 16px; }
.lead-form label { font-weight: 900; color: #374151; }
.form-note { font-size: 13px; color: var(--muted); margin: -4px 0 0; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

.contact-card h2 { margin-top: 0; }
.contact-line { margin-bottom: 18px; }
.contact-line strong { color: var(--ink); display: block; margin-bottom: 4px; }
iframe { width: 100%; height: 310px; border: 0; border-radius: 18px; margin-top: 16px; }

.cta-box { text-align: center; background: linear-gradient(135deg, #fff, #eef8ff); }
.cta-box p { max-width: 680px; margin-left: auto; margin-right: auto; }

footer { background: #05070d; color: white; padding: 54px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 34px; }
footer p, footer a { color: #cbd5e1; }
footer h3 { margin: 0 0 14px; }
.footer-links { display: grid; gap: 9px; }
.copyright { border-top: 1px solid rgba(255,255,255,.12); margin-top: 34px; padding-top: 20px; font-size: 14px; color: #94a3b8; }

@media (max-width: 980px) {
  .topbar nav {
  display: none;
  position: absolute;
  top: 82px;
  left: 0;
  right: 0;
  background: #fff;
  padding: 18px 4%;
  border-bottom: 1px solid var(--line);
  flex-direction: column;
  align-items: flex-start;
}

.topbar nav.open {
  display: flex;
}
}

@media (max-width: 650px) {
  .top-strip .container { justify-content: center; text-align: center; padding: 10px 0; }
  .brand img { width: 82px; }
  .brand span { font-size: 15px; }
  .features, .vehicle-grid, .service-grid, .review-grid, .form-grid, .filters { grid-template-columns: 1fr; }
  .vehicle-results-bar { flex-direction: column; align-items: flex-start; }
  .features { margin-top: 24px; }
  .nav-actions .call-btn { display: none; }
  .hero { min-height: 650px; }
  .hero-actions .btn { width: 100%; }
  .section { padding: 58px 0; }
}

/* Updates: fixed mobile menu, sliders, readable service cards, responsive detail page */
.topbar .nav { position: relative; }
.menu-btn { user-select: none; }
.light-head h2 { color: #fff; }
.light-head p { color: #cbd5e1; }
.slider-controls, .mobile-slider-controls { display: flex; gap: 10px; align-items: center; }
.slider-btn {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  padding: 0;
  background: #fff;
  color: var(--blue-dark);
  border: 1px solid var(--line);
  font-size: 28px;
  line-height: 1;
}
.dark-section .slider-btn { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.28); }
.carousel { position: relative; }
.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 360px);
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 4px 26px;
  scrollbar-width: thin;
}
.carousel-card { scroll-snap-align: start; min-height: 230px; }
.dark-section .service-card { background: #fff; }
.dark-section .service-card h3 { color: var(--ink); }
.dark-section .service-card p { color: var(--muted); }
.review-card .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; font-weight: 950; }
.review-card strong { display: block; margin-top: 18px; color: var(--ink); }
.mobile-slider-controls { display: none; justify-content: center; margin-top: 8px; }
.vehicle-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.vehicle-gallery .gallery-main {
  height: 480px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--blue-dark);
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(15, 23, 42, .22);
  z-index: 3;
}
.gallery-prev { left: 16px; }
.gallery-next { right: 16px; }
.gallery-nav:hover { transform: translateY(-50%) scale(1.04); }
.gallery-sidebar {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 2px 12px;
  scrollbar-width: thin;
  scroll-behavior: smooth;
}
.gallery-thumb {
  flex: 0 0 112px;
  width: 112px;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 3px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .12);
  cursor: pointer;
}
.gallery-thumb:hover { transform: translateY(-1px); }
.gallery-thumb.active { border-color: var(--blue); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.detail-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); gap: 30px; align-items: start; }
.detail-main > .vehicle-image { height: 480px; border-radius: var(--radius); box-shadow: var(--shadow); }
.detail-card { background: #fff; border: 1px solid rgba(229,231,235,.75); box-shadow: var(--shadow); border-radius: var(--radius); padding: 28px; margin-top: 24px; }
.detail-sidebar .detail-card { margin-top: 0; }
.sticky-card { position: sticky; top: 104px; }
.detail-sidebar h1 { font-size: clamp(30px, 4vw, 44px); line-height: 1.05; margin: 16px 0 12px; }
.detail-price { font-size: 32px; }
.spec-list { display: grid; gap: 10px; margin: 22px 0; }
.spec-list div { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.spec-list strong { color: var(--ink); }
.spec-list span { color: var(--muted); text-align: right; }
.feature-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.feature-tags span { background: #eef8ff; color: var(--blue-dark); border-radius: 999px; padding: 9px 12px; font-weight: 800; font-size: 14px; }
.detail-actions .btn { width: 100%; margin-bottom: 10px; }
.success-note { background: #ecfdf5; color: #166534; padding: 12px 14px; border-radius: 14px; font-weight: 800; }
.upload-note { font-size: 13px; color: var(--muted); margin-top: 8px; }

@media (max-width: 980px) {
  .topbar nav {
    top: 100%;
    box-shadow: var(--shadow);
    z-index: 80;
  }
  .detail-layout { grid-template-columns: 1fr; }
  .sticky-card { position: static; }
  .detail-main > .vehicle-image { height: 360px; }
  .vehicle-gallery .gallery-main { height: 360px; }
  .gallery-thumb { flex-basis: 104px; width: 104px; }
}
@media (max-width: 650px) {
  .section-head { align-items: start; flex-direction: column; }
  .slider-controls { display: none; }
  .mobile-slider-controls { display: flex; }
  .carousel-track { grid-auto-columns: minmax(86vw, 1fr); }
  .detail-main > .vehicle-image { height: 260px; }
  .vehicle-gallery .gallery-main { height: 260px; }
  .gallery-nav { width: 38px; height: 38px; font-size: 28px; }
  .gallery-prev { left: 10px; }
  .gallery-next { right: 10px; }
  .gallery-thumb { flex-basis: 88px; width: 88px; }
  .spec-list div { flex-direction: column; gap: 4px; }
  .spec-list span { text-align: left; }
}

.form-status {
  margin: 10px 0 0;
  font-weight: 700;
  color: #263238;
}
.form-status.success {
  color: #0d6b2f;
}
.form-status.error {
  color: #b3261e;
}
.lead-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.sell-tips-card {
  margin-top: 24px;
  border-left: 4px solid var(--gold);
}

.tick-list.compact {
  margin-top: 14px;
}

.tick-list.compact li {
  margin-bottom: 8px;
}

.sell-submit-btn {
 background: linear-gradient(135deg, #2f9edb, #6ec6f2);
  color: #111;
  border: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sell-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(214, 168, 79, 0.35);
}
.finance-submit-btn {
  background: linear-gradient(135deg, #2f9edb, #6ec6f2);
  color: #111;
  border: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.finance-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(214, 168, 79, 0.35);
}
.contact-submit-btn {
  background: linear-gradient(135deg, #2f9edb, #6ec6f2);
  color: #111;
  border: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(214, 168, 79, 0.35);
}

.site-footer {
  background: linear-gradient(135deg, #111827, #05070b);
  color: #f5f5f5;
  padding-top: 56px;
  border-top: 1px solid rgba(214, 168, 79, 0.25);
}

.site-footer h3 {
  color: #ffffff;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.footer-brand p {
  max-width: 360px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: #f4d27a;
  transform: translateX(4px);
}

.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: #f4d27a;
}

.footer-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(214, 168, 79, 0.14);
  border: 1px solid rgba(214, 168, 79, 0.32);
  border-radius: 50%;
  font-size: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.site-footer .copyright {
  margin-top: 38px;
  padding: 20px 0;
  color: rgba(255, 255, 255, 0.58);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.92rem;
}

@media (max-width: 768px) {
  .site-footer {
    padding-top: 40px;
  }

  .footer-contact p {
    align-items: flex-start;
  }

  .footer-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
}
.vehicle-detail-footer {
  overflow: hidden;
}

.vehicle-footer-cta-wrap {
  padding: 34px 0;
  background: linear-gradient(135deg, rgba(214, 168, 79, 0.12), rgba(255, 255, 255, 0.03));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vehicle-footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px;
  border: 1px solid rgba(214, 168, 79, 0.28);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.vehicle-footer-cta h2 {
  margin: 8px 0 10px;
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.vehicle-footer-cta p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.vehicle-footer-cta-btn {
  white-space: nowrap;
  min-width: 160px;
  text-align: center;
}

@media (max-width: 768px) {
  .vehicle-footer-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
  }

  .vehicle-footer-cta-btn {
    width: 100%;
  }
}

.finance-detail-btn {
  background: linear-gradient(135deg, #2f9edb, #6ec6f2);
  color: #ffffff;
  border: none;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(47, 158, 219, 0.28);
}

.finance-detail-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(47, 158, 219, 0.38);
}

.vehicle-detail-footer {
  margin-top: 0;
  padding-top: 0;
}

.vehicle-footer-cta-wrap {
  margin-top: 0;
  padding-top: 28px;
}

#vehicleDetail {
  padding-bottom: 40px;
}

/* Vehicle card button styling */
.carsales-card-btn {
  background: linear-gradient(135deg, #111827, #263447);
  color: #ffffff;
  border: none;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.22);
}

.carsales-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.32);
}

.enquire-card-btn {
  background: linear-gradient(135deg, #d6a84f, #f4d27a);
  color: #111111;
  border: none;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(214, 168, 79, 0.28);
}

.enquire-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(214, 168, 79, 0.38);
}

/* Vehicle card image sizing */
.vehicle-card .vehicle-image {
  padding: 10px;
  min-height: 220px;
}

.vehicle-card .vehicle-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .vehicle-card .vehicle-image {
    padding: 8px;
    min-height: 210px;
  }

  .vehicle-card .vehicle-image img {
    height: 200px;
  }
}

/* Branded website title beside logo */
.brand-copy {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 4px;
}

.brand-copy strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  letter-spacing: .045em;
  font-weight: 950;
}

.brand-copy small {
  color: var(--blue-dark);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .32em;
  font-weight: 950;
  text-transform: uppercase;
}

/* Warranty page */
.warranty-title {
  background:
    linear-gradient(110deg, rgba(7,17,31,.96), rgba(7,17,31,.82)),
    radial-gradient(circle at 80% 30%, rgba(242,183,5,.24), transparent 35%),
    url('https://images.unsplash.com/photo-1487754180451-c456f719a1fc?q=80&w=1600&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}

.warranty-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 28px;
  align-items: start;
}

.warranty-copy-card h2,
.warranty-disclaimer-box h2 {
  margin-top: 18px;
}

.warranty-actions {
  margin-top: 24px;
}

.warranty-highlight-card h3 {
  margin: 18px 0 14px;
  font-size: 28px;
}

.warranty-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.warranty-check-list li {
  position: relative;
  padding-left: 32px;
  color: #334155;
  line-height: 1.55;
  font-weight: 700;
}

.warranty-check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 950;
}

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

.warranty-benefit-card {
  position: relative;
  overflow: hidden;
}

.warranty-benefit-card::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  right: -70px;
  bottom: -80px;
  background: rgba(17,137,207,.08);
}

.warranty-benefit-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(17,137,207,.16), rgba(242,183,5,.22));
  color: var(--blue-dark);
  font-size: 24px;
  font-weight: 950;
}

.warranty-benefit-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.warranty-cover-band {
  padding-top: 78px;
  padding-bottom: 78px;
}

.warranty-option-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.warranty-option-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 270px;
}

.warranty-option-card h3 {
  margin: 0;
  font-size: 24px;
  color: var(--blue-dark);
}

.warranty-option-card p {
  flex: 1;
}

.warranty-option-card strong {
  color: var(--ink);
  font-size: 15px;
}

.warranty-option-card span {
  display: block;
  color: #374151;
  font-weight: 800;
  font-size: 14px;
}

.warranty-component-layout {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: 24px;
}

.warranty-component-card h3 {
  margin-top: 0;
  font-size: 26px;
}

.warranty-feature-tags {
  gap: 10px;
}

.warranty-note-wrap {
  padding-top: 28px;
}

.warranty-disclaimer-box {
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(242,183,5,.17), transparent 28%),
    #ffffff;
}

.warranty-disclaimer-box p {
  max-width: 860px;
  margin-inline: auto;
}

@media (max-width: 1100px) {
  .warranty-option-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .warranty-option-card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .warranty-intro-grid,
  .warranty-component-layout,
  .warranty-benefit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .brand-copy strong {
    font-size: 19px;
  }

  .brand-copy small {
    font-size: 9px;
    letter-spacing: .24em;
  }

  .warranty-option-grid {
    grid-template-columns: 1fr;
  }

  .warranty-option-card:last-child {
    grid-column: auto;
  }
}

/* Strong automotive-style brand title beside logo */
.brand-signature {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  line-height: 1;
}

.brand-signature strong {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  margin: 0;
  line-height: 1;
}

.brand-khg,
.brand-auto {
  font-family: "Russo One", Inter, Arial, sans-serif;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.01em;
}

.brand-khg {
  font-size: 32px;
  color: #0b0f19;
  position: relative;
}

.brand-khg::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0b0f19, #f2b705);
}

.brand-auto {
  font-size: 30px;
  color: #9a7200;
  margin-left: 1px;
}

/* Mobile */
@media (max-width: 768px) {
  .brand-khg {
    font-size: 27px;
  }

  .brand-auto {
    font-size: 25px;
  }
}