/* ===================================================================
   Jas 洁敏 — Perodua Sales Advisor · Johor Bahru
   Dealer-grade landing page
   =================================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ol, ul { list-style: none; }
::selection { background: var(--c-red); color: white; }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--c-text); color: white; padding: 12px 16px; z-index: 100; }
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Tokens ---------- */
:root {
  --c-bg:        #FFFFFF;
  --c-bg-alt:    #F4F5F7;
  --c-bg-dark:   #111418;
  --c-bg-darker: #0A0C0F;
  --c-text:      #111418;
  --c-text-soft: #4B5563;
  --c-text-mute: #6B7280;
  --c-border:    #E5E7EB;
  --c-border-strong: #D1D5DB;
  --c-red:       #ED1C24;
  --c-red-deep:  #C8141B;
  --c-red-soft:  #FEE2E5;
  --c-wa:        #00864C;
  --c-wa-deep:   #006B3D;
  --c-wa-bright: #25D366;
  --c-stock:     #10B981;
  --c-stock-bg:  #D1FAE5;

  --f-display: 'Saira Semi Condensed', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-body:    'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --container: 1240px;
  --pad-x:     clamp(20px, 4vw, 48px);
  --section-py: clamp(64px, 8vw, 112px);

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-pill: 999px;

  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-1:  0 1px 2px rgba(17, 20, 24, 0.04), 0 4px 12px rgba(17, 20, 24, 0.06);
  --shadow-2:  0 8px 24px rgba(17, 20, 24, 0.08), 0 2px 6px rgba(17, 20, 24, 0.04);
  --shadow-3:  0 24px 48px -16px rgba(17, 20, 24, 0.18);
}

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

html[lang^="en"] .zh-only { display: none; }

/* ---------- Layout primitives ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); }
.section { padding: var(--section-py) 0; position: relative; }

.section-head { display: flex; flex-direction: column; gap: 8px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head--center { align-items: center; text-align: center; }
.section-eyebrow {
  font-family: var(--f-display); font-weight: 700;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-red);
  display: inline-flex; align-items: center; gap: 8px;
}
.section-eyebrow::before {
  content: ""; display: inline-block; width: 24px; height: 2px; background: currentColor;
}
.section-eyebrow--light { color: var(--c-red); }
.section-head h2 {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(28px, 4.4vw, 44px);
  line-height: 1.08; letter-spacing: -0.01em;
  color: var(--c-text); text-transform: uppercase;
}
.section-head h2 .accent { color: var(--c-red); }
.section-sub {
  font-size: 14px; color: var(--c-text-mute);
  margin-top: 8px; max-width: 56ch;
}
.section-head--center .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--f-display); font-weight: 600;
  font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase;
  border-radius: var(--r-pill);
  transition: transform 0.25s var(--ease), background 0.2s, color 0.2s, box-shadow 0.25s var(--ease), border-color 0.2s;
  white-space: nowrap;
  cursor: pointer;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { flex-shrink: 0; }

.btn--lg { padding: 18px 28px; font-size: 15px; }
.btn--xl { padding: 22px 32px; font-size: 16px; letter-spacing: 0.05em; }

.btn--wa { background: var(--c-wa); color: white; box-shadow: 0 6px 16px -4px rgba(0, 134, 76, 0.45); }
.btn--wa:hover { background: var(--c-wa-deep); box-shadow: 0 10px 24px -6px rgba(0, 134, 76, 0.55); }

.btn--red { background: var(--c-red); color: white; box-shadow: 0 6px 16px -4px rgba(237, 28, 36, 0.4); }
.btn--red:hover { background: var(--c-red-deep); }

.btn--outline { background: transparent; color: var(--c-text); border: 1.5px solid var(--c-border-strong); }
.btn--outline:hover { border-color: var(--c-text); background: var(--c-text); color: white; }

.btn--header { padding: 10px 18px; font-size: 13px; }

/* =================================================================
   Header
   ================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--c-border);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: 76px;
  padding-top: 10px; padding-bottom: 10px;
}

.brand { display: inline-flex; align-items: center; gap: 18px; }
.brand__logo { height: 56px; width: auto; }
.brand__logo--footer { height: 40px; filter: brightness(0) invert(1) brightness(0.85); opacity: 0.7; }
.brand__divider { width: 1px; height: 40px; background: var(--c-border-strong); }
.brand__advisor { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-family: var(--f-display); font-weight: 700; font-size: 19px; color: var(--c-text); letter-spacing: 0.01em; }
.brand__zh { font-weight: 600; color: inherit; margin-left: 2px; }
.brand__meta { font-size: 11px; color: var(--c-text-mute); margin-top: 2px; letter-spacing: 0.02em; }

.site-nav { display: flex; gap: 28px; }
.site-nav a {
  font-family: var(--f-display); font-weight: 600;
  font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--c-text); padding: 6px 0;
  position: relative; transition: color 0.2s;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--c-red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.site-nav a:hover { color: var(--c-red); }
.site-nav a:hover::after { transform: scaleX(1); }

.site-header__actions { display: flex; align-items: center; gap: 14px; }

.lang-toggle {
  display: inline-flex; background: var(--c-bg-alt);
  border-radius: var(--r-pill); padding: 3px;
}
.lang-toggle__opt {
  padding: 6px 12px; border-radius: var(--r-pill);
  font-family: var(--f-display); font-weight: 700;
  font-size: 12px; letter-spacing: 0.05em;
  color: var(--c-text-mute); transition: all 0.2s;
}
.lang-toggle__opt.is-active { background: var(--c-text); color: white; }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
}
.nav-burger span { width: 22px; height: 2px; background: var(--c-text); border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }

@media (max-width: 1024px) {
  .site-nav { display: none; }
  .brand__meta { display: none; }
}
@media (max-width: 1024px) {
  .nav-burger { display: inline-flex; }
  .site-nav {
    position: fixed; inset: 76px 0 auto 0;
    display: flex; flex-direction: column; gap: 0;
    background: white; border-bottom: 1px solid var(--c-border);
    padding: 12px var(--pad-x) 32px;
    transform: translateY(-110%); transition: transform 0.3s var(--ease);
    box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.1);
  }
  .site-nav.is-open { transform: translateY(0); }
  .site-nav a {
    padding: 16px 0; border-bottom: 1px solid var(--c-border);
    font-size: 16px; letter-spacing: 0.06em;
  }
  .site-nav a:last-child { border-bottom: 0; }
  .site-nav a::after { display: none; }
}
@media (max-width: 700px) {
  .brand__logo { height: 44px; }
  .brand__divider { display: none; }
  .brand__advisor { display: none; }
  .btn--header span:not(.visually-hidden) { display: none; }
  .btn--header { padding: 10px; }
}

/* =================================================================
   Hero
   ================================================================= */
.hero {
  position: relative;
  background:
    linear-gradient(180deg, #FFFFFF 0%, #F8F9FB 100%);
  padding: clamp(48px, 7vw, 96px) 0 clamp(72px, 9vw, 120px);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(237, 28, 36, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(0, 134, 76, 0.05) 0%, transparent 45%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid; grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 64px);
  align-items: center;
}

.hero__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.trust-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px;
  background: white; border: 1px solid var(--c-border);
  border-radius: var(--r-pill);
  font-family: var(--f-display); font-weight: 600;
  font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--c-text);
  box-shadow: var(--shadow-1);
}
.trust-pill svg { color: var(--c-red); }

.hero__title {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(40px, 6.5vw, 72px);
  line-height: 1.04; letter-spacing: -0.02em;
  color: var(--c-text);
  text-transform: uppercase;
  margin-bottom: clamp(20px, 2.5vw, 28px);
}
.hero__title-accent { color: var(--c-red); }
.hero__title-dot { color: var(--c-red); }

.hero__sub {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.6;
  color: var(--c-text-soft);
  max-width: 52ch;
  margin-bottom: clamp(28px, 3.5vw, 36px);
}

.hero__cta {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 36px;
}

.hero__strip {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 12px 18px;
  padding-top: 28px;
  border-top: 1px solid var(--c-border);
  font-size: 13px; color: var(--c-text-soft);
}
.hero__strip strong { color: var(--c-text); font-weight: 700; }
.hero__strip .dot { color: var(--c-border-strong); }

.hero__visual { display: flex; justify-content: center; }

/* Hero advisor card */
.hero-card {
  width: 100%; max-width: 380px;
  background: white;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-3);
  position: relative;
}
.hero-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--c-red), var(--c-red-deep));
}
.hero-card__photo {
  aspect-ratio: 4/5; background: var(--c-bg-alt); position: relative;
}
.hero-card__photo .placeholder { width: 100%; height: 100%; border-radius: 0; border: 0; }
.hero-card__info { padding: 20px 24px 24px; }
.hero-card__name {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 4px;
}
.hero-card__zh {
  font-family: var(--f-display); font-weight: 800;
  font-size: 28px; color: var(--c-text); letter-spacing: -0.01em;
}
.hero-card__en {
  font-family: var(--f-display); font-weight: 700;
  font-size: 18px; color: var(--c-text); letter-spacing: 0.04em; text-transform: uppercase;
}
.hero-card__role {
  font-size: 12px; color: var(--c-text-mute);
  letter-spacing: 0.02em; margin-bottom: 16px;
}
.hero-card__stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 14px; border-top: 1px solid var(--c-border);
}
.hero-card__stats > div {
  display: flex; flex-direction: column; gap: 2px;
}
.hero-card__stats strong {
  font-family: var(--f-display); font-weight: 800;
  font-size: 22px; color: var(--c-text);
  line-height: 1;
}
.hero-card__stats span {
  font-size: 11px; color: var(--c-text-mute);
  letter-spacing: 0.04em; text-transform: uppercase;
}

@media (min-width: 880px) {
  .hero__inner { grid-template-columns: 1.4fr 1fr; gap: 80px; }
}

/* =================================================================
   Promo
   ================================================================= */
.section--promo { background: var(--c-bg-dark); color: white; }
.section--promo .section-head h2 { color: white; }
.section--promo .section-eyebrow { color: var(--c-red); }

.promo-carousel { position: relative; }
.promo-track { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 8px; }
.promo-track::-webkit-scrollbar { display: none; }

.promo-card {
  flex: 0 0 100%; scroll-snap-align: start;
  background: white; border-radius: var(--r-md);
  overflow: hidden; display: grid; grid-template-columns: 1fr;
  transition: transform 0.3s var(--ease);
}
.promo-card:hover { transform: translateY(-3px); }
.promo-card__img { aspect-ratio: 16/9; background: var(--c-bg-alt); }
.promo-card__body { padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.promo-card__title { font-family: var(--f-display); font-weight: 700; font-size: 20px; color: var(--c-text); }
.promo-card__meta { font-size: 12px; color: var(--c-text-mute); letter-spacing: 0.04em; text-transform: uppercase; }
.promo-card__cta { margin-top: 10px; align-self: flex-start; }
.promo-empty {
  padding: 48px 24px; text-align: center;
  background: rgba(255,255,255,0.04); border: 1px dashed rgba(255,255,255,0.15);
  border-radius: var(--r-md); color: rgba(255,255,255,0.55);
  font-size: 14px;
}
.promo-empty small { display: block; margin-top: 6px; font-size: 12px; opacity: 0.7; }
@media (min-width: 760px) {
  .promo-card { grid-template-columns: 1.4fr 1fr; }
  .promo-card__img { aspect-ratio: auto; min-height: 220px; }
}

/* =================================================================
   Models — car carousel (center-focused with floating info card)
   ================================================================= */
.section--models { background: var(--c-bg); }

.car-carousel { position: relative; margin-top: 8px; }
.car-carousel__track {
  position: relative;
  display: flex; gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 24px 0 180px;
  scroll-behavior: smooth;
}
.car-carousel__track::-webkit-scrollbar { display: none; }
.car-carousel__track::before,
.car-carousel__track::after {
  content: ""; flex: 0 0 calc(50% - 140px);
}
@media (min-width: 640px) {
  .car-carousel__track::before,
  .car-carousel__track::after { flex-basis: calc(50% - 180px); }
}
@media (min-width: 1024px) {
  .car-carousel__track { gap: 32px; }
  .car-carousel__track::before,
  .car-carousel__track::after { flex-basis: calc(50% - 220px); }
}

.car-slide {
  position: relative;
  flex: 0 0 280px;
  scroll-snap-align: center;
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  opacity: 0.4;
  transform: scale(0.85);
}
@media (min-width: 640px) { .car-slide { flex-basis: 360px; } }
@media (min-width: 1024px) { .car-slide { flex-basis: 440px; } }

.car-slide:focus-visible { outline: 2px solid var(--c-red); outline-offset: 4px; border-radius: var(--r-md); }
.car-slide.is-active {
  opacity: 1;
  transform: scale(1);
  cursor: default;
}

.car-slide__stock {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 10px;
  background: var(--c-stock-bg); color: var(--c-stock);
  border-radius: var(--r-sm);
  font-family: var(--f-display); font-weight: 700;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s;
}
.car-slide.is-active .car-slide__stock { opacity: 1; }

.car-slide__img {
  aspect-ratio: 4/3;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.car-slide__img img {
  width: 100%; height: 100%; object-fit: contain;
}

.car-slide__name-short {
  text-align: center;
  font-family: var(--f-display); font-weight: 700;
  font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-text-mute);
  margin-top: 8px;
  transition: opacity 0.3s;
}
.car-slide.is-active .car-slide__name-short { opacity: 0; }

.car-slide__floating {
  position: absolute;
  top: calc(100% - 70px);
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: min(86%, 340px);
  background: white;
  border-radius: var(--r-md);
  padding: 20px 22px 18px;
  text-align: center;
  box-shadow: var(--shadow-3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease) 0.1s, transform 0.35s var(--ease) 0.1s;
  z-index: 5;
}
.car-slide.is-active .car-slide__floating {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.car-slide__floating-cat {
  font-family: var(--f-display); font-weight: 700;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 6px;
}
.car-slide__floating-name {
  font-family: var(--f-display); font-weight: 800;
  font-size: 18px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: 8px;
  line-height: 1.15;
}
.car-slide__floating-price {
  font-size: 12px; color: var(--c-text-mute);
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 2px;
}
.car-slide__floating-price strong {
  font-family: var(--f-display); font-weight: 800;
  font-size: 20px; color: var(--c-text);
  text-transform: none; letter-spacing: -0.01em;
  margin-left: 6px;
}
.car-slide__floating-monthly {
  font-size: 11px; color: var(--c-text-mute);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.car-slide__floating-cta {
  width: 100%;
  padding: 11px 16px;
  font-size: 12px;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.car-slide__floating-details {
  font-family: var(--f-display); font-weight: 600;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--c-text-mute);
  background: none; border: 0; cursor: pointer;
  padding: 8px 12px;
  transition: color 0.2s;
}
.car-slide__floating-details:hover { color: var(--c-red); }

/* Navigation arrows — positioned just outside the active card edges */
.car-carousel__nav {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  z-index: 15;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: white;
  box-shadow: var(--shadow-2);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--c-text);
  transition: background 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
  border: 1px solid var(--c-border);
}
.car-carousel__nav:hover {
  background: var(--c-text); color: white;
  transform: translateY(-50%) scale(1.06);
  box-shadow: var(--shadow-3);
}
.car-carousel__nav--prev { left: calc(50% - 196px); }
.car-carousel__nav--next { left: calc(50% + 148px); }
@media (min-width: 640px) {
  .car-carousel__nav--prev { left: calc(50% - 236px); }
  .car-carousel__nav--next { left: calc(50% + 188px); }
}
@media (min-width: 1024px) {
  .car-carousel__nav { width: 56px; height: 56px; }
  .car-carousel__nav--prev { left: calc(50% - 288px); }
  .car-carousel__nav--next { left: calc(50% + 232px); }
}

/* Dots */
.car-carousel__dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 8px;
  padding-bottom: 8px;
  position: relative;
  z-index: 2;
}
.car-carousel__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-border-strong);
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
  padding: 0;
}
.car-carousel__dot.is-active { background: var(--c-red); transform: scale(1.3); }
.car-carousel__dot:hover:not(.is-active) { background: var(--c-text-mute); }

/* =================================================================
   About
   ================================================================= */
.section--about { background: var(--c-bg-alt); }
.about__inner { display: grid; grid-template-columns: 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.about__portrait { position: relative; max-width: 360px; margin: 0 auto; width: 100%; }
.about__portrait .placeholder { aspect-ratio: 4/5; border-radius: var(--r-lg); }

.about__name-card {
  position: absolute; bottom: -24px; left: -16px;
  background: white;
  padding: 16px 22px;
  border-radius: var(--r-md);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-2);
  display: flex; flex-direction: column; gap: 2px;
  max-width: 220px;
}
.about__name-zh {
  font-family: var(--f-display); font-weight: 800;
  font-size: 24px; color: var(--c-text); letter-spacing: -0.01em; line-height: 1;
}
.about__name-en {
  font-family: var(--f-display); font-weight: 700;
  font-size: 14px; color: var(--c-text);
  letter-spacing: 0.06em; text-transform: uppercase; margin-top: 2px;
}
.about__name-role {
  font-size: 11px; color: var(--c-text-mute);
  margin-top: 6px;
}

.about__copy { display: flex; flex-direction: column; }
.about__bio {
  display: flex; flex-direction: column; gap: 14px;
  font-size: clamp(15px, 1.4vw, 16px);
  color: var(--c-text-soft); line-height: 1.75;
  margin: 12px 0 24px;
}
.about__bio p { margin: 0; }
.about__bio-placeholder { color: var(--c-text-mute); font-style: italic; }
.about__features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.about__features li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--c-text);
}
.about__features .check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--c-red); color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  margin-top: 1px;
}
.about__copy .btn { align-self: flex-start; }

@media (min-width: 880px) {
  .about__inner { grid-template-columns: 360px 1fr; gap: 96px; }
  .about__portrait { margin: 0; }
}

/* =================================================================
   Stats
   ================================================================= */
.section--stats {
  background: var(--c-bg-dark); color: white;
  padding: clamp(56px, 8vw, 96px) 0;
  position: relative; overflow: hidden;
}
.section--stats::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(237, 28, 36, 0.18) 0%, transparent 50%);
  pointer-events: none;
}
.stats {
  position: relative;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 24px;
}
@media (min-width: 760px) { .stats { gap: 32px; } }

.stat {
  flex: 1 1 240px; max-width: 380px;
  text-align: center;
  padding: 28px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  display: flex; flex-direction: column; gap: 8px;
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
}
.stat:hover { transform: translateY(-4px); border-color: var(--c-red); background: rgba(237, 28, 36, 0.08); }
.stat__num {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(56px, 8vw, 80px);
  line-height: 1;
  color: var(--c-red);
  letter-spacing: -0.02em;
}
.stat__label {
  font-family: var(--f-display); font-weight: 600;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* =================================================================
   Advantages
   ================================================================= */
.section--advantages { background: var(--c-bg); }
.advantages {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 760px) { .advantages { grid-template-columns: repeat(3, 1fr); } }

.advantage {
  padding: 32px 28px;
  background: white;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.advantage:hover {
  transform: translateY(-4px);
  border-color: var(--c-red);
  box-shadow: var(--shadow-2);
}
.advantage__icon {
  width: 56px; height: 56px;
  background: var(--c-red-soft); color: var(--c-red);
  border-radius: var(--r-md);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.advantage h3 {
  font-family: var(--f-display); font-weight: 800;
  font-size: 22px; letter-spacing: 0.005em; text-transform: uppercase;
  color: var(--c-text);
}
.advantage p { font-size: 14px; color: var(--c-text-soft); line-height: 1.6; }

/* =================================================================
   Testimonials
   ================================================================= */
.section--testimonials { background: var(--c-bg-alt); }
.testimonials {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 640px) { .testimonials { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (min-width: 1000px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }

.testimonial {
  background: white; border-radius: var(--r-md);
  overflow: hidden; box-shadow: var(--shadow-1);
  border: 1px solid var(--c-border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.testimonial__img { aspect-ratio: 4/3; background: var(--c-bg-alt); overflow: hidden; }
.testimonial__img img { width: 100%; height: 100%; object-fit: cover; }
.testimonial__caption { padding: 16px 18px; font-size: 14px; color: var(--c-text); line-height: 1.5; }
.testimonials-empty {
  grid-column: 1 / -1;
  padding: 64px 24px; text-align: center;
  background: white; border: 1px dashed var(--c-border-strong);
  border-radius: var(--r-md);
  color: var(--c-text-mute); font-size: 14px;
}
.testimonials-empty small { display: block; margin-top: 6px; font-size: 12px; opacity: 0.7; }

/* =================================================================
   Contact
   ================================================================= */
.section--contact {
  background: var(--c-bg-dark); color: white;
  padding: clamp(72px, 10vw, 120px) 0;
  position: relative; overflow: hidden;
}
.section--contact::before {
  content: ""; position: absolute; top: -20%; right: -10%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(237, 28, 36, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.contact__inner {
  position: relative;
  display: grid; grid-template-columns: 1fr; gap: clamp(40px, 6vw, 64px);
  align-items: start;
}
.contact__copy { display: flex; flex-direction: column; gap: 16px; max-width: 540px; }
.contact__copy h2 {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1; letter-spacing: -0.01em;
  text-transform: uppercase;
  color: white;
}
.contact__sub {
  font-size: 16px; color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.btn--xl { background: var(--c-wa-bright); box-shadow: 0 12px 32px -8px rgba(37, 211, 102, 0.5); }
.btn--xl:hover { background: var(--c-wa-bright); filter: brightness(1.1); }

.contact__secondary {
  display: grid; grid-template-columns: 1fr; gap: 14px;
  margin: 8px 0 20px;
}
@media (min-width: 520px) { .contact__secondary { grid-template-columns: 1fr 1fr; } }

.contact-link {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  transition: background 0.2s, border-color 0.2s, transform 0.2s var(--ease);
}
.contact-link:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--c-red); transform: translateY(-2px); }
.contact-link__ico { font-size: 22px; }
.contact-link__body { display: flex; flex-direction: column; gap: 2px; }
.contact-link__label {
  font-family: var(--f-display); font-weight: 700;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.contact-link__value { font-size: 14px; color: white; }

.contact__meta {
  display: grid; grid-template-columns: 1fr; gap: 18px;
  padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.12);
}
@media (min-width: 520px) { .contact__meta { grid-template-columns: 1fr 1fr; } }
.contact__meta dt {
  font-family: var(--f-display); font-weight: 700;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}
.contact__meta dd { font-size: 14px; color: white; }

.contact__map { position: relative; }
.contact__map iframe { width: 100%; aspect-ratio: 4/3; border: 0; border-radius: var(--r-md); }
.contact__map .placeholder--map {
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
}

@media (min-width: 880px) {
  .contact__inner { grid-template-columns: 1.1fr 1fr; gap: 64px; }
}

/* =================================================================
   Placeholders (used across sections)
   ================================================================= */
.placeholder {
  background:
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(17, 20, 24, 0.04) 14px 15px),
    var(--c-bg-alt);
  border: 1px dashed var(--c-border-strong);
  border-radius: var(--r-md);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 20px; gap: 8px;
  color: var(--c-text-mute); font-size: 13px;
}
.placeholder small { font-size: 11px; opacity: 0.75; }
.placeholder-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: white; color: var(--c-red);
  border-radius: var(--r-pill);
  font-family: var(--f-display); font-weight: 700;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid var(--c-red-soft);
}

/* =================================================================
   Footer
   ================================================================= */
.site-footer {
  background: var(--c-bg-darker); color: rgba(255, 255, 255, 0.7);
  padding: 56px 0 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.site-footer__inner {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  align-items: center;
}
.site-footer__brand { display: flex; flex-direction: column; gap: 12px; }
.site-footer__name { font-family: var(--f-display); font-weight: 700; font-size: 15px; color: white; letter-spacing: 0.02em; }
.site-footer__contact { font-size: 13px; color: rgba(255, 255, 255, 0.6); }
.site-footer__contact a { color: inherit; transition: color 0.2s; }
.site-footer__contact a:hover { color: var(--c-red); }
.site-footer__legal {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 12px; color: rgba(255, 255, 255, 0.45);
  text-align: left;
}
.site-footer__legal p:last-child { font-size: 11px; opacity: 0.75; }
@media (min-width: 760px) {
  .site-footer__inner { grid-template-columns: 1fr auto; gap: 48px; }
  .site-footer__legal { text-align: right; }
}

/* =================================================================
   Modal
   ================================================================= */
.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: flex-end; justify-content: center; }
.modal[hidden] { display: none !important; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(17, 20, 24, 0.7);
  opacity: 0; animation: modal-fade 0.25s var(--ease) forwards;
  backdrop-filter: blur(4px);
}
.modal__panel {
  position: relative; background: white;
  width: 100%; max-width: 760px; max-height: 92vh;
  overflow-y: auto; border-radius: 20px 20px 0 0;
  transform: translateY(40px); opacity: 0;
  animation: modal-rise 0.4s var(--ease-out) 0.08s forwards;
}
@media (min-width: 700px) {
  .modal { align-items: center; padding: 32px; }
  .modal__panel { border-radius: var(--r-md); }
}
@keyframes modal-fade { to { opacity: 1; } }
@keyframes modal-rise { to { transform: translateY(0); opacity: 1; } }

.modal__close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.95); color: var(--c-text);
  font-size: 24px; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: background 0.2s, transform 0.2s;
}
.modal__close:hover { transform: scale(1.05); background: white; }

.modal__gallery {
  position: relative; background: var(--c-bg-alt);
  aspect-ratio: 16/10; overflow: hidden;
}
.modal__gallery-track { display: flex; height: 100%; transition: transform 0.4s var(--ease); }
.modal__gallery-track > * { flex: 0 0 100%; height: 100%; display: flex; align-items: center; justify-content: center; padding: 16px; }
.modal__gallery-track img { width: 100%; height: 100%; object-fit: contain; }
.modal__gallery-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.95); color: var(--c-text);
  font-size: 24px; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: background 0.2s;
}
.modal__gallery-nav:hover { background: white; }
.modal__gallery-nav--prev { left: 14px; } .modal__gallery-nav--next { right: 14px; }
.modal__gallery-nav:disabled { opacity: 0.3; cursor: not-allowed; }
.modal__gallery-dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px;
}
.modal__gallery-dots span {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.6); transition: all 0.2s;
}
.modal__gallery-dots span.is-active { background: white; transform: scale(1.4); }

.modal__body { padding: 28px 28px 32px; display: flex; flex-direction: column; gap: 20px; }
.modal__head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.modal__head h3 {
  font-family: var(--f-display); font-weight: 800;
  font-size: 26px; letter-spacing: 0.005em; text-transform: uppercase;
  color: var(--c-text);
}
.badge--cat {
  background: var(--c-red); color: white;
  padding: 5px 10px; border-radius: var(--r-sm);
  font-family: var(--f-display); font-weight: 700;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
}

.modal__colors { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.modal__colors .label {
  font-family: var(--f-display); font-weight: 700;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c-text-mute); margin-right: 8px;
}
.modal__colors span.swatch {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--c-border);
  box-shadow: inset 0 0 0 2px white;
  transition: transform 0.2s;
}
.modal__colors span.swatch:hover { transform: scale(1.15); }

.modal__specs {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  padding: 20px; background: var(--c-bg-alt); border-radius: var(--r-md);
}
.modal__specs > div { display: flex; flex-direction: column; gap: 4px; }
.modal__specs dt {
  font-family: var(--f-display); font-weight: 700;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--c-text-mute);
}
.modal__specs dd {
  font-family: var(--f-display); font-weight: 700;
  font-size: 16px; color: var(--c-text);
}

.modal__monthly {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.modal__monthly > div {
  padding: 16px 20px;
  background: white;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
}
.modal__monthly dt {
  font-family: var(--f-display); font-weight: 700;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--c-text-mute);
}
.modal__monthly dd {
  font-family: var(--f-display); font-weight: 800;
  font-size: 20px; color: var(--c-red);
  margin-top: 4px;
}

.modal__cta { width: 100%; }

body.modal-open { overflow: hidden; }

/* =================================================================
   Floating WhatsApp
   ================================================================= */
.float-wa {
  position: fixed; right: 20px; bottom: 20px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--c-wa-bright); color: white;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 32px -6px rgba(37, 211, 102, 0.55);
  z-index: 40;
  transition: opacity 0.3s, transform 0.3s var(--ease);
  animation: float-pulse 2.5s ease-in-out infinite;
}
.float-wa:hover { transform: scale(1.08); }
.float-wa.is-hidden { opacity: 0; transform: translateY(20px); pointer-events: none; }
@keyframes float-pulse {
  0%, 100% { box-shadow: 0 14px 32px -6px rgba(37, 211, 102, 0.55), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 14px 32px -6px rgba(37, 211, 102, 0.55), 0 0 0 14px rgba(37, 211, 102, 0); }
}
@media (min-width: 1024px) { .float-wa { display: none; } }

/* =================================================================
   Commercial polish — focus states, anchor offset, header elevation,
   scroll-reveal, reduced-motion
   ================================================================= */

/* Sticky-header offset so nav anchors don't hide their heading underneath */
:where(section, .section)[id],
main[id] { scroll-margin-top: 92px; }

/* Consistent, accessible keyboard focus across all interactive elements */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.lang-toggle:focus-visible,
.lang-toggle__opt:focus-visible,
.car-carousel__dot:focus-visible,
.contact-link:focus-visible {
  outline: 2px solid var(--c-red);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}
.btn:focus-visible { outline-offset: 4px; }

/* Header gains a hairline of elevation once the page is scrolled */
.site-header { transition: box-shadow 0.3s var(--ease), background 0.3s; }
.site-header.is-scrolled {
  box-shadow: 0 1px 0 var(--c-border), 0 8px 24px -16px rgba(17, 20, 24, 0.25);
  background: rgba(255, 255, 255, 0.92);
}

/* Scroll-reveal — enhancement only. Elements without `.reveal` (e.g. when JS
   is off or content is re-rendered) stay fully visible. */
.reveal { opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .float-wa { animation: none !important; }
}
