/* ==========================================================================
   MCI Portal — Landing page styles (homepage)
   ========================================================================== */

/* ---- Top contact bar (sits above hero) ----------------------------------- */
.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: var(--blue-normal);
  color: var(--white);
  font-size: var(--text-sm);
}
.topbar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 10px var(--gutter);
  display: flex;
  justify-content: flex-end;
  gap: 32px;
}
.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
}
.topbar a:hover { opacity: 0.8; }
.topbar svg { color: var(--yellow-normal); }
@media (max-width: 720px) {
  .topbar-inner { gap: 16px; font-size: var(--text-xs); }
}

/* ---- Header / Nav (overlays the hero) ------------------------------------ */
.site-header {
  position: absolute;
  top: 40px; /* sits below the topbar */
  left: 0;
  right: 0;
  z-index: 10;
  background: transparent;
}
.site-header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 16px var(--gutter);
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand-logo {
  height: 44px;
  width: auto;
  display: block;
}
@media (max-width: 720px) {
  .brand-logo { height: 36px; }
}
.site-nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.15s ease;
}
.site-nav a:hover { opacity: 0.8; text-decoration: none; }
.site-nav a svg { color: var(--yellow-normal); }
.header-cta { display: flex; gap: 12px; }
.header-cta .btn { height: 44px; padding: 0 24px; font-size: var(--text-sm); border-radius: 6px; }
.header-cta .btn-light {
  background: var(--white);
  color: var(--black);
}
.header-cta .btn-light:hover { background: var(--gray-100); }

@media (max-width: 900px) {
  .site-nav { display: none; }
  .header-cta .btn { padding: 0 16px; }
}

/* ---- Hero ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--blue-darker);
  color: var(--white);
  padding: 140px var(--gutter) 60px;
  overflow: hidden;
}
@media (max-width: 720px) {
  .hero { padding: 120px var(--gutter) 40px; min-height: 80vh; }
}
/* Background video — fills the hero, sits behind everything else */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
/* Tinted overlay so text stays readable */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 19, 36, 0.65) 0%, rgba(0, 19, 36, 0.35) 60%, rgba(0, 19, 36, 0.1) 100%);
  z-index: 1;
  pointer-events: none;
}
/* Bring topbar, header, and hero content above the video/overlay */
.hero .topbar,
.hero .site-header,
.hero-inner {
  position: relative;
  z-index: 2;
}
.hero .topbar { position: absolute; }
.hero .site-header { position: absolute; }
.hero-inner {
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 720px; /* forces natural wrap at "so" → "you get the best deal" */
  margin: 0 0 48px;
  color: var(--white);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 64px;
  padding: 0 36px;
  background: var(--yellow-normal);
  color: var(--black);
  border-radius: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background 0.15s ease, transform 0.05s ease, box-shadow 0.15s ease;
  box-shadow: 0 8px 24px rgba(253, 197, 0, 0.3);
}
.hero-cta:hover {
  background: #e6b300;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(253, 197, 0, 0.4);
}
.hero-cta:active { transform: translateY(1px); }

@media (max-width: 720px) {
  .hero-cta { height: 56px; padding: 0 28px; font-size: var(--text-md); }
}

/* ---- Section base -------------------------------------------------------- */
.section { padding: 80px var(--gutter); }
.section-inner { max-width: var(--container-max); margin: 0 auto; }
.section-eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-normal);
  margin: 0 0 12px;
}
.section h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--blue-darker);
  margin: 0 0 16px;
  max-width: 720px;
}
.section h2 + p {
  font-size: var(--text-md);
  color: var(--gray-500);
  max-width: 640px;
  margin: 0 0 48px;
}

/* ---- Inventory ----------------------------------------------------------- */
.inventory-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.inventory-head h2 { margin: 0; }
.inventory-head a { font-weight: 600; }

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) { .inventory-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .inventory-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .inventory-grid { grid-template-columns: 1fr; } }

.car-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.car-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.car-card-img {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--blue-darker), var(--blue-normal));
  background-size: cover;
  background-position: center;
}
.car-card-body { padding: 16px; }
.car-card-title {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--blue-darker);
  margin: 0 0 4px;
  line-height: 1.3;
}
.car-card-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-md);
  color: var(--blue-normal);
}
.car-card-meta {
  font-size: var(--text-xs);
  color: var(--gray-500);
  margin-top: 6px;
}

/* ---- Services (2-card) --------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 16px;
}
@media (max-width: 720px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-light-hover);
}
.service-icon {
  width: 64px;
  height: 64px;
  background: var(--blue-light-hover);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-normal);
  margin-bottom: 8px;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--blue-normal);
  margin: 0;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: var(--text-md);
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-md);
  color: var(--blue-normal);
  text-decoration: none;
  margin-top: 8px;
  transition: gap 0.15s ease;
}
.service-cta:hover { gap: 12px; text-decoration: none; }

/* ---- Instant Quote band -------------------------------------------------- */
.quote-band {
  background: var(--blue-darker);
  color: var(--white);
}
.quote-band h2 { color: var(--white); }
.quote-band > .section-inner > p { color: rgba(255, 255, 255, 0.7); }

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  margin-top: 32px;
}
@media (max-width: 900px) { .quote-grid { grid-template-columns: 1fr; } }

.quote-features {
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-md);
  padding: 32px;
}
.quote-features h3 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--white);
  margin: 0 0 8px;
}
.quote-features p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 24px;
}
.quote-features ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.quote-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.92);
}
.quote-features svg { color: var(--yellow-normal); flex-shrink: 0; margin-top: 2px; }

.quote-form {
  background: var(--white);
  color: var(--black);
  padding: 32px;
  border-radius: var(--radius-md);
}
.quote-form h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--blue-darker);
  margin: 0 0 6px;
}
.quote-form p {
  font-size: var(--text-sm);
  color: var(--gray-500);
  margin: 0 0 24px;
}

/* ---- FAQs ---------------------------------------------------------------- */
.faqs-list {
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid var(--gray-100);
}
.faq-item {
  border-bottom: 1px solid var(--gray-100);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 4px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--text-md);
  color: var(--blue-darker);
  cursor: pointer;
  line-height: 1.4;
}
.faq-q:hover { color: var(--blue-normal); }
.faq-q svg {
  transition: transform 0.2s ease;
  flex-shrink: 0;
  color: var(--gray-500);
}
.faq-item.open .faq-q svg {
  transform: rotate(180deg);
  color: var(--blue-normal);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: 1.65;
  padding: 0 4px;
}
.faq-a p { margin: 0; }
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 4px 24px;
}

/* ---- Testimonials -------------------------------------------------------- */
.testimonials { background: var(--gray-50); }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 720px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--gray-100);
  position: relative;
}
.testimonial-quote-mark {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 60px;
  color: var(--yellow-normal);
  line-height: 1;
  font-weight: 700;
}
.testimonial p {
  font-size: var(--text-md);
  color: var(--gray-700);
  margin: 0 0 24px;
  line-height: 1.6;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-normal), var(--blue-darker));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--blue-darker);
}
.testimonial-role {
  font-size: var(--text-xs);
  color: var(--gray-500);
}

/* ---- Partners ------------------------------------------------------------ */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: center;
  justify-items: center;
  margin-top: 48px;
  padding: 32px;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
@media (max-width: 720px) { .partners-grid { grid-template-columns: repeat(2, 1fr); } }
.partner-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--gray-500);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.15s ease;
}
.partner-logo:hover { opacity: 1; color: var(--blue-darker); }

/* ---- Contact stats ------------------------------------------------------- */
.contact-stats {
  background: var(--blue-darker);
  color: var(--white);
  padding: 60px var(--gutter);
}
.contact-stats-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 720px) { .contact-stats-inner { grid-template-columns: 1fr; } }
.contact-stat {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-icon {
  width: 56px;
  height: 56px;
  background: var(--yellow-normal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-darker);
}
.contact-stat-label {
  font-family: var(--font-heading);
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--white);
  text-transform: capitalize;
  margin-bottom: 2px;
}
.contact-stat-sub {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}
.contact-stat-value {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--white);
}

/* ---- Newsletter ---------------------------------------------------------- */
/* Sits in the same continuous navy band as contact-stats above and footer
   below — no white space between sections. */
.newsletter-section {
  background: var(--blue-darker);
  padding: 0 var(--gutter) 60px;
}
.newsletter-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--blue-named);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}
.newsletter-text { flex: 1; min-width: 240px; }
.newsletter-text h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--white);
  margin: 0 0 4px;
}
.newsletter-text p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.newsletter-form {
  display: flex;
  gap: 8px;
  flex: 1;
  min-width: 280px;
}
.newsletter-form input {
  flex: 1;
  height: 48px;
  padding: 0 16px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  background: var(--white);
}
.newsletter-form button {
  height: 48px;
  padding: 0 24px;
  background: var(--yellow-normal);
  color: var(--black);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: var(--text-sm);
  cursor: pointer;
}
.newsletter-form button:hover { background: #e6b300; }

/* ---- Footer -------------------------------------------------------------- */
.site-footer {
  background: var(--blue-darker);
  color: rgba(255, 255, 255, 0.7);
  padding: 0 var(--gutter) 32px;
}
.site-footer-inner > .footer-grid { padding-top: 60px; }
.site-footer-inner { max-width: var(--container-max); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--white);
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255, 255, 255, 0.65); font-size: var(--text-sm); }
.footer-col a:hover { color: var(--yellow-normal); text-decoration: none; }

.footer-brand-link { display: inline-block; margin-bottom: 16px; }
.footer-logo { height: 40px; width: auto; display: block; }
.footer-tagline { font-size: var(--text-sm); color: rgba(255, 255, 255, 0.6); line-height: 1.6; max-width: 280px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
}
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.15s ease;
}
.footer-social a:hover {
  background: var(--yellow-normal);
  color: var(--black);
  text-decoration: none;
}

/* ===== "Why we are your ideal Partner" section (2026-06-03 redesign) =====
   Full-width band (spans the viewport like the fullscreen hero, 40px edge
   gutters to align with the hero nav/content edge). Text styles per Figma:
   heading = DM Sans Regular #3d3d3d; paragraph = Nunito Sans #3d3d3d;
   card labels = DM Sans Regular white; CTA card = centered, dark-blue #064f93. */
.partner { padding: 80px 40px; }
.partner-top { display: flex; justify-content: space-between; align-items: flex-start; gap: clamp(40px, 6vw, 110px); flex-wrap: wrap; margin-bottom: 40px; }
.partner-title { font-family: 'DM Sans', sans-serif; font-weight: 400; font-size: clamp(32px, 3.4vw, 49px); line-height: 1.2; letter-spacing: -0.03em; color: #3d3d3d; margin: 0; max-width: 360px; }
.partner-lead { font-family: 'Nunito Sans', sans-serif; font-weight: 400; color: #3d3d3d; font-size: 16px; line-height: 1.5; margin: 0; flex: 0 1 650px; max-width: 650px; }
.partner-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.partner-card { position: relative; aspect-ratio: 322 / 362; border-radius: 5px; overflow: hidden; background-size: cover; background-position: center; display: flex; align-items: flex-end; padding: 30px; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.partner-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(38deg, rgba(0,0,0,0.36) 34%, rgba(102,102,102,0) 100%); }
.partner-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(16,24,40,0.18); }
.partner-card, .partner-card:hover, .partner-card:focus { text-decoration: none; }
.partner-card-label { position: relative; color: #fff; font-family: 'DM Sans', sans-serif; font-weight: 400; font-size: clamp(26px, 2.4vw, 34px); line-height: 1.05; letter-spacing: -0.03em; margin: 0; text-decoration: none; }
.partner-card:hover .partner-card-label { text-decoration: none; }
/* Yellow CTA card: centered arrow above a centered dark-blue label */
.partner-card-cta { background: var(--yellow-normal); flex-direction: column; align-items: center; justify-content: center; gap: 16px; text-align: center; }
.partner-card-cta::before { display: none; }
.partner-card-cta .partner-card-label { color: #064f93; }
.partner-card-arrow { position: static; width: 40px; height: 40px; color: #064f93; }
@media (max-width: 1024px) { .partner-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px)  { .partner { padding: 56px 16px; } .partner-cards { grid-template-columns: 1fr; } }

/* ===== "Powering dealers across West Africa" (2026-06-06) =====
   Solid-blue panel; transparent crane-lifted container on the right, bleeding
   off the right edge of the panel. */
.dealers { padding: 40px 40px; }
.dealers-panel { position: relative; overflow: hidden; background: #003566; border-radius: 5px; display: flex; align-items: center; min-height: 640px; padding: clamp(44px, 5vw, 72px) clamp(40px, 5vw, 70px); }
.dealers-content { position: relative; z-index: 2; max-width: 600px; }
.dealers-title { font-family: 'DM Sans', sans-serif; font-weight: 400; font-size: clamp(34px, 4vw, 56px); line-height: 1.04; letter-spacing: -0.03em; color: #f1f1f1; margin: 0 0 clamp(28px, 3vw, 44px); }
.dealers-features { list-style: none; margin: 0 0 clamp(28px, 3vw, 44px); padding: 0; display: grid; grid-template-columns: repeat(2, max-content); gap: 16px clamp(40px, 7vw, 110px); }
.dealers-features li { display: flex; align-items: center; gap: 10px; font-family: 'Poppins', sans-serif; font-weight: 400; font-size: 18px; color: #fff; }
.dealers-features li::before { content: ""; flex: 0 0 22px; width: 22px; height: 22px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='%23ffffff' fill-opacity='0.18'/%3E%3Cpath d='M7 12.5l3.2 3.2L17 9' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat; }
.dealers-cta { display: inline-flex; align-items: center; justify-content: center; background: var(--yellow-normal); color: #1e1e1e; font-family: 'Inter', sans-serif; font-weight: 500; font-size: 15px; padding: 11px 16px; border-radius: 5px; text-decoration: none; transition: filter .15s ease; }
.dealers-cta:hover { filter: brightness(0.95); text-decoration: none; }
/* Transparent container on the right; sized to sit fully inside the panel
   height with only a small intentional bleed off the right edge. */
.dealers-container-img { position: absolute; right: -24px; top: 0; width: 52%; max-width: 760px; height: auto; z-index: 1; pointer-events: none; }
@media (max-width: 860px){
  .dealers-panel { flex-direction: column; align-items: flex-start; min-height: 0; }
  .dealers-features { grid-template-columns: 1fr 1fr; }
  .dealers-container-img { position: relative; right: auto; top: auto; transform: none; width: 100%; max-width: 460px; margin: 28px auto 0; }
}
@media (max-width: 520px){
  .dealers { padding: 24px 16px; }
  .dealers-features { grid-template-columns: 1fr; }
}

/* ===================================================================
   Lower-page redesign (2026-06-09): How it works, Available inventory,
   FAQs 2-col, ship band, yellow Testimonials, dark footer
   =================================================================== */

/* ---- How it works ---- */
.hiw { display: grid; grid-template-columns: 42.5% 1fr; gap: clamp(32px, 4vw, 54px); padding: 40px 40px 60px; align-items: stretch; }
.hiw-photo { border-radius: 5px; overflow: hidden; }
.hiw-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hiw-body { padding-top: clamp(24px, 6vh, 104px); }
.hiw-title { font-family: 'DM Sans', sans-serif; font-weight: 400; font-size: clamp(32px, 3.4vw, 49px); line-height: 1.2; letter-spacing: -0.03em; color: #3d3d3d; margin: 0 0 clamp(28px, 3vw, 56px); }
.hiw-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 32px clamp(32px, 4vw, 54px); margin-bottom: clamp(28px, 3vw, 48px); }
.hiw-num { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(61,61,61,0.10); font-family: 'Poppins', sans-serif; font-size: 18px; color: #3d3d3d; }
.hiw-step h3 { font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 21px; line-height: 1.15; letter-spacing: -0.02em; color: #3d3d3d; margin: 20px 0 10px; }
.hiw-step p { font-family: 'Poppins', sans-serif; font-size: 17px; line-height: 1.4; color: #535353; margin: 0; }
.hiw-cta { display: inline-flex; align-items: center; justify-content: center; background: var(--yellow-normal); color: #1e1e1e; font-family: 'Inter', sans-serif; font-weight: 500; font-size: 15px; padding: 11px 16px; border-radius: 5px; text-decoration: none; transition: filter .15s ease; }
.hiw-cta:hover { filter: brightness(0.95); text-decoration: none; }
@media (max-width: 900px) {
  .hiw { grid-template-columns: 1fr; padding: 24px 16px 48px; }
  .hiw-photo { max-height: 360px; }
  .hiw-body { padding-top: 0; }
}
@media (max-width: 560px) { .hiw-steps { grid-template-columns: 1fr; } }

/* ---- Available inventory (dark band) ---- */
.inv-band { background: #18192e; padding: 64px 40px 72px; }
.inv-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 42px; }
.inv-title { font-family: 'DM Sans', sans-serif; font-weight: 400; font-size: clamp(32px, 3.4vw, 49px); line-height: 1.2; letter-spacing: -0.03em; color: #f1f1f1; margin: 0; }
.inv-viewall { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500; color: #fff; text-decoration: none; opacity: .85; }
.inv-viewall:hover { opacity: 1; text-decoration: underline; }
.inv-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 25px; }
.inv-card { position: relative; aspect-ratio: 251 / 240; border-radius: 8px; overflow: hidden; background-color: #2a2b40; background-size: cover; background-position: center; display: flex; flex-direction: column; justify-content: flex-end; gap: 8px; padding: 14px; text-decoration: none; transition: transform .2s ease; }
.inv-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 34%, rgba(0,0,0,0.9) 92%); }
.inv-card:hover { transform: translateY(-4px); text-decoration: none; }
.inv-card-name, .inv-card-price { position: relative; font-family: 'Clash Display', 'DM Sans', sans-serif; font-weight: 500; font-size: 17px; line-height: 1.2; }
.inv-card-name { color: #fff; }
.inv-card-price { color: #fdc500; }
@media (max-width: 1100px) { .inv-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .inv-band { padding: 48px 16px; } .inv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px)  { .inv-grid { grid-template-columns: 1fr; } }

/* ---- FAQs (2-col: intro left, accordion right) ---- */
.faqs { display: grid; grid-template-columns: 380px 1fr; gap: clamp(40px, 8vw, 118px); padding: 90px 40px; }
.faqs-intro { max-width: 380px; }
.faqs-title { font-family: 'DM Sans', sans-serif; font-weight: 400; font-size: clamp(32px, 3.4vw, 49px); line-height: 1.2; letter-spacing: -0.03em; color: #3d3d3d; margin: 0 0 18px; }
.faqs-sub { font-family: 'Nunito Sans', sans-serif; font-size: 16px; line-height: 1.5; color: #3d3d3d; margin: 0; }
.faqs-help { display: inline-block; margin-top: 18px; font-family: 'Figtree', sans-serif; font-size: 15px; font-weight: 600; color: #003566; text-decoration: none; }
.faqs-help:hover { text-decoration: underline; }
.faqs .faqs-list { display: flex; flex-direction: column; gap: 32px; max-width: none; margin: 0; }
.faqs .faq-item { background: #f1f1f1; border: none; border-radius: 16px; overflow: hidden; }
.faqs .faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; background: none; border: none; cursor: pointer; text-align: left; padding: 24px 32px; font-family: 'Figtree', sans-serif; font-weight: 500; font-size: 18px; letter-spacing: -0.004em; line-height: 24px; color: #0f0e0e; }
.faqs .faq-plus { flex: 0 0 22px; transition: transform .2s ease; color: #0f0e0e; }
.faqs .faq-item.open .faq-plus { transform: rotate(45deg); }
.faqs .faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faqs .faq-item.open .faq-a { max-height: 420px; }
.faqs .faq-a p { margin: 0; padding: 0 32px 24px; font-family: 'Nunito Sans', sans-serif; font-size: 15px; line-height: 1.6; color: #535353; }
.faqs .faq-a a { color: #003566; font-weight: 600; text-decoration: none; }
.faqs .faq-a a:hover { text-decoration: underline; }
@media (max-width: 900px) { .faqs { grid-template-columns: 1fr; gap: 28px; padding: 56px 16px; } .faqs .faqs-list { gap: 16px; } }

/* ---- Shipping video band (tall, autoplay + loop) ---- */
.ship-band { width: 100%; overflow: hidden; }
.ship-band video { width: 100%; height: clamp(420px, 82vh, 800px); object-fit: cover; display: block; }
@media (max-width: 900px) { .ship-band video { height: clamp(280px, 52vh, 480px); } }

/* ---- Testimonials (yellow band overlapping ship + footer) ---- */
.testi { position: relative; z-index: 2; padding: 0 40px; margin-top: -180px; margin-bottom: -274px; }
.testi-band { background: #fdc500; border-radius: 9px; padding: 48px 60px 56px; }
.testi-title { font-family: 'DM Sans', sans-serif; font-weight: 400; font-size: clamp(32px, 3.4vw, 49px); line-height: 1.2; letter-spacing: -0.03em; color: #3f3f3f; margin: 0 0 56px; }
.testi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 4vw, 52px); }
.testi-card { display: flex; flex-direction: column; align-items: center; gap: 36px; text-align: center; }
.testi-quote { font-family: 'Nunito Sans', sans-serif; font-weight: 700; font-size: 17px; line-height: 26px; letter-spacing: -0.004em; color: #3f3f3f; margin: 0; }
.testi-author { display: flex; align-items: center; gap: 16px; margin-top: auto; }
.testi-avatar { display: inline-flex; align-items: center; justify-content: center; width: 49px; height: 49px; border-radius: 50%; background: rgba(0,0,0,0.16); color: #3f3f3f; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 16px; }
.testi-who { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.testi-who b { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 16px; color: #3f3f3f; }
.testi-who i { font-style: normal; font-family: 'Poppins', sans-serif; font-size: 14px; color: #3f3f3f; }
@media (max-width: 1024px) { .testi-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 900px) {
  .testi { margin-top: 32px; margin-bottom: 0; padding: 0 16px 48px; }
  .testi-band { padding: 36px 24px; }
}
@media (max-width: 560px) { .testi-grid { grid-template-columns: 1fr; } }

/* ---- Footer (dark) ---- */
.ftr { background: #18192e; padding: 382px 40px 36px; }
.ftr-top { display: flex; justify-content: space-between; gap: clamp(40px, 5vw, 90px); flex-wrap: wrap; }
.ftr-main { flex: 1 1 600px; min-width: 0; }
.ftr-brand img { height: 58px; display: block; margin-bottom: 48px; }
.ftr-cols { display: grid; grid-template-columns: repeat(3, minmax(160px, 1fr)); gap: 40px clamp(40px, 5vw, 72px); }
.ftr-col h4 { font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 16px; line-height: 1.2; letter-spacing: -0.01em; color: #fff; margin: 0 0 16px; }
.ftr-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.ftr-col ul a { font-family: 'Poppins', sans-serif; font-size: 14px; line-height: 1.5; color: #b9b9b9; text-decoration: none; transition: color .15s ease; }
.ftr-col ul a:hover { color: #fff; text-decoration: none; }
.ftr-contact li { display: flex; align-items: flex-start; gap: 10px; font-family: 'Poppins', sans-serif; font-size: 14px; line-height: 1.5; color: #d6d6de; }
.ftr-contact svg { flex: 0 0 18px; width: 18px; height: 18px; margin-top: 2px; color: #8e90a6; }
.ftr-follow { margin-top: 28px !important; }
.ftr-social { display: flex; gap: 14px; }
.ftr-social a { color: #fff; opacity: .85; }
.ftr-social a:hover { opacity: 1; }
.ftr-copy { font-family: 'Poppins', sans-serif; font-size: 13px; color: #8e90a6; margin: 56px 0 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); }
.ftr-news { flex: 0 1 420px; padding-top: 106px; }
.ftr-news h3 { font-family: 'DM Sans', sans-serif; font-weight: 400; font-size: 22px; letter-spacing: -0.02em; color: #fff; margin: 0 0 20px; }
.ftr-news-form { display: flex; flex-direction: column; gap: 14px; }
.ftr-news-form input { height: 42px; padding: 0 21px; border-radius: 5px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.12); font-family: 'DM Sans', sans-serif; font-size: 14px; color: #fff; }
.ftr-news-form input::placeholder { color: rgba(255,255,255,0.27); }
.ftr-news-form input:focus { outline: none; border-color: rgba(255,255,255,0.4); }
.ftr-news-form button { height: 42px; border-radius: 5px; background: none; border: 1px solid #c3c3c3; color: #fff; font-family: 'Inter', sans-serif; font-size: 15px; cursor: pointer; transition: background .15s ease; }
.ftr-news-form button:hover { background: rgba(255,255,255,0.08); }
@media (max-width: 900px) {
  .ftr { padding: 64px 16px 28px; }
  .ftr-brand img { height: 48px; margin-bottom: 32px; }
  .ftr-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ftr-news { padding-top: 0; flex-basis: 100%; }
  .ftr-copy { margin-top: 40px; }
}
@media (max-width: 560px) { .ftr-cols { grid-template-columns: 1fr; } }

/* ---- Scroll-reveal (home-fx.js drives .is-in via IntersectionObserver).
   Hidden state only applies under html.fx (set by an inline head script), so
   content stays visible if JS ever fails to run. ---- */
.fx [data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); transition-delay: var(--rv-delay, 0s); will-change: opacity, transform; }
.fx [data-reveal="left"]  { transform: translateX(-44px); }
.fx [data-reveal="right"] { transform: translateX(44px); }
.fx [data-reveal="zoom"]  { transform: scale(.95); }
.fx [data-reveal].is-in   { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .fx [data-reveal] { opacity: 1; transform: none; transition: none; } }

/* ---- Testimonials: mobile one-card carousel + dots ---- */
.testi-dots { display: none; }
@media (max-width: 700px) {
  .testi-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; gap: 24px; }
  .testi-grid::-webkit-scrollbar { display: none; }
  .testi-card { flex: 0 0 100%; scroll-snap-align: center; }
  .testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
  .testi-dot { width: 8px; height: 8px; border-radius: 999px; border: none; padding: 0; background: rgba(0,0,0,0.22); cursor: pointer; transition: all .2s ease; }
  .testi-dot.on { width: 22px; background: #1e1e1e; }
}
