/* ── Tesla-inspired Design System ── */
:root {
  --black: #171a20;
  --white: #ffffff;
  --gray: #393c41;
  --gray-light: #5c5e62;
  --gray-bg: #f4f4f4;
  --gray-border: #e8e8e8;
  --accent: #3e6ae1;
  --chery-red: #c8102e;
  --whatsapp: #25d366;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.1);
  --radius: 12px;
  --radius-sm: 8px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: var(--font);
  --font-text: var(--font);
  --text-body: 14px;
  --text-body-lh: 1.43;
  --text-nav: 14px;
  --text-hero: 40px;
  --text-hero-lh: 1.2;
  --text-product: 17px;
  --text-section: 40px;
  --weight-body: 400;
  --weight-ui: 500;
  --header-h: 52px;
  --transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-text);
  font-size: var(--text-body);
  font-weight: var(--weight-body);
  line-height: var(--text-body-lh);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 48px;
  border-radius: 4px;
  font-size: var(--text-nav);
  font-weight: var(--weight-ui);
  letter-spacing: normal;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: rgba(255,255,255,0.85);
  color: var(--black);
  backdrop-filter: blur(8px);
}
.btn--primary:hover { background: var(--white); }

.btn--secondary {
  background: rgba(23,26,32,0.65);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn--secondary:hover { background: rgba(23,26,32,0.85); }

.btn--dark {
  background: var(--black);
  color: var(--white);
}
.btn--dark:hover { background: #000; }

.btn--dark-bg {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn--dark-bg:hover { background: rgba(255,255,255,0.25); }

.btn--outline {
  background: var(--white);
  color: var(--black);
  border: 1.5px solid var(--black);
}
.btn--outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}
.btn--whatsapp:hover { background: #1ebe57; }

.btn--sm { padding: 8px 20px; font-size: 13px; }
.btn--lg { padding: 14px 56px; font-size: 15px; }
.btn--full { width: 100%; }

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  transition: background var(--transition), backdrop-filter var(--transition);
}

.header--solid {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.header--dark .header__nav a,
.header--dark .header__link {
  color: var(--white);
}

.header--solid .header__nav a,
.header--solid .header__link {
  color: var(--black);
}

.header__logo {
  display: flex;
  align-items: center;
  line-height: 0;
}

.header__logo-img {
  height: 34px;
  width: auto;
  display: block;
  transition: filter var(--transition);
}

.header--dark .header__logo-img {
  filter: brightness(0) invert(1);
}

.header__nav {
  display: flex;
  gap: 24px;
}

.header__nav a {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity var(--transition);
}
.header__nav a:hover { opacity: 1; }

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

.header__link {
  font-size: 14px;
  font-weight: 500;
}

.header__menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.header__menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: var(--transition);
}
.header--dark .header__menu-btn { color: var(--white); }
.header--solid .header__menu-btn { color: var(--black); }

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.mobile-menu a {
  color: var(--white);
  font-size: 24px;
  font-weight: 500;
}

/* ── Page scroll (native, no snap — smooth through all model heroes) ── */
.snap-container {
  display: block;
}

/* ── Promo Slider (chery.my header style) ── */
.promo-slider {
  position: relative;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: #000;
  padding-top: 0;
  display: block;
  touch-action: pan-y pinch-zoom;
}

.promo-slider__track {
  position: absolute;
  inset: 0;
}

.promo-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
  contain: layout style paint;
}

.promo-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.promo-slide__single,
.promo-slide__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.promo-slide__layers {
  position: absolute;
  inset: 0;
}

.promo-slide__overlay {
  position: absolute;
  pointer-events: none;
  height: auto;
  object-fit: contain;
}

/* ── Promo overlays: 4 breakpoints (RevSlider 1280 / 1024 / 768 / 480) ──
   Grid ref: desktop 1280×720, mobile 480×320 (chery.my) */

/* LEFT / ANCAP — slide 184 primary overlay */
.promo-slide__layers--left .promo-slide__overlay--primary {
  left: 0.08%;
  top: 0.28%;
  width: 32.6%;
  max-width: 560px;
}

/* TIGGO 9 — slide 242 layer-5 */
.promo-slide__layers--tiggo9 .promo-slide__overlay--primary {
  left: 0.23%;
  top: 0.42%;
  width: 41.4%;
  max-width: 640px;
}

.promo-slide__layers--carlinko .promo-slide__overlay {
  mix-blend-mode: screen;
}

/* CARLINKO — slide 241 */
.promo-slide__layers--carlinko .promo-slide__overlay--primary {
  left: 0.55%;
  top: 8.06%;
  width: 39.5%;
  max-width: 520px;
}

.promo-slide__layers--carlinko .promo-slide__overlay--secondary {
  left: auto;
  right: 4.8%;
  top: 1.8%;
  bottom: auto;
  width: 18.8%;
  max-width: 320px;
}

.promo-slide__layers--carlinko .promo-slide__overlay--tertiary {
  left: 0.47%;
  top: auto;
  bottom: 19.4%;
  width: 20.2%;
  max-width: 440px;
}

.promo-slide--carlinko .promo-slide__cta {
  left: 0.47%;
  bottom: 5.6%;
  z-index: 3;
  padding: 10px 28px;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* BATTERY — slide 238 */
.promo-slide__layers--battery .promo-slide__overlay--primary {
  left: 0.08%;
  top: 0.28%;
  width: 31.8%;
  max-width: 420px;
}

.promo-slide__layers--battery .promo-slide__overlay--secondary {
  left: 51.3%;
  top: 26.9%;
  bottom: auto;
  transform: none;
  width: 41.9%;
  max-width: 900px;
}

.promo-slide__cta--light {
  background: #fff;
  color: #000;
  border-radius: 999px;
}

.promo-slide__cta--light:hover {
  background: #f2f2f2;
  color: #000;
}

.promo-slide__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, transparent 35%, rgba(0,0,0,0.2) 100%);
  pointer-events: none;
}

.promo-slide__cta {
  position: absolute;
  left: clamp(20px, 1.7vw, 31px);
  bottom: clamp(28px, 4.3vh, 31px);
  z-index: 2;
  padding: 12px 32px;
  border-radius: 999px;
  background: #0077cc;
  color: var(--white);
  font-weight: var(--weight-ui);
  font-size: 14px;
  letter-spacing: 0.04em;
}

.promo-slide__cta:hover {
  background: #0066b3;
  color: var(--white);
}

.promo-slider__controls {
  position: absolute;
  left: clamp(20px, 4vw, 48px);
  bottom: clamp(24px, 4vh, 40px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
}

.promo-slider__pause {
  width: 28px;
  height: 28px;
  color: var(--white);
  opacity: 0.85;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-slider__pause:hover { opacity: 1; }

.promo-slider__pause .icon-play { display: none; }
.promo-slider__pause.is-paused .icon-pause { display: none; }
.promo-slider__pause.is-paused .icon-play { display: block; }

.promo-slider__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.promo-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.45);
  transition: width var(--transition), background var(--transition);
  padding: 0;
  position: relative;
}

.promo-slider__dot::before {
  content: '';
  position: absolute;
  inset: -12px;
}

.promo-slider__dot.is-active {
  width: 28px;
  background: var(--white);
}

/* Breakpoint 2 — laptop ≤1280 (RevSlider level 2, same coords as desktop) */
@media (max-width: 1280px) {
  .promo-slide__layers--left .promo-slide__overlay--primary {
    width: 36%;
  }

  .promo-slide__layers--tiggo9 .promo-slide__overlay--primary {
    width: 44%;
  }

  .promo-slide__layers--carlinko .promo-slide__overlay--primary {
    width: 42%;
  }

  .promo-slide__layers--battery .promo-slide__overlay--secondary {
    width: 46%;
  }
}

/* Breakpoint 3 — tablet ≤1024 */
@media (max-width: 1024px) {
  .promo-slide__layers--left .promo-slide__overlay--primary {
    left: 1%;
    top: 2%;
    width: 42%;
  }

  .promo-slide__layers--tiggo9 .promo-slide__overlay--primary {
    left: 1%;
    top: 2%;
    width: 48%;
  }

  .promo-slide__layers--carlinko .promo-slide__overlay--primary {
    left: 1%;
    top: 6%;
    width: 44%;
  }

  .promo-slide__layers--carlinko .promo-slide__overlay--secondary {
    right: 2%;
    width: 22%;
  }

  .promo-slide__layers--carlinko .promo-slide__overlay--tertiary {
    bottom: 16%;
    width: 28%;
  }

  .promo-slide__layers--battery .promo-slide__overlay--primary {
    width: 38%;
  }

  .promo-slide__layers--battery .promo-slide__overlay--secondary {
    left: 48%;
    top: 24%;
    width: 50%;
  }

  .promo-slide__cta {
    bottom: 6%;
    padding: 11px 28px;
    font-size: 13px;
  }
}

/* Breakpoint 4+5 — mobile ≤767 (chery.my grid 480×320, not full-screen) */
@media (max-width: 767px) {
  /* chery.my mobile: gridheight 320 on gridwidth 480 — compact banner, not 100dvh */
  .promo-slider {
    height: min(66.667vw, 320px);
    min-height: 200px;
    max-height: 320px;
  }

  .promo-slide__bg {
    object-position: center 35%;
  }

  /* RevSlider level-4 coords on 480×320 grid (%, of slide box) */
  .promo-slide__layers--left .promo-slide__overlay--primary {
    left: 0;
    top: 0;
    bottom: auto;
    width: 56.7%;
    max-width: 272px;
  }

  .promo-slide__layers--tiggo9 .promo-slide__overlay--primary {
    left: 0.625%;
    top: 3.125%;
    width: 50.625%;
    max-width: 243px;
  }

  .promo-slide__layers--carlinko .promo-slide__overlay--primary {
    left: 0.83%;
    top: 1.875%;
    width: 41.875%;
    max-width: 201px;
  }

  .promo-slide__layers--carlinko .promo-slide__overlay--secondary {
    left: auto;
    right: 6.25%;
    top: 0.625%;
    bottom: auto;
    width: 25.625%;
    max-width: 123px;
  }

  .promo-slide__layers--carlinko .promo-slide__overlay--tertiary {
    left: 0.42%;
    top: 60.9%;
    bottom: auto;
    width: 32.1%;
    max-width: 154px;
  }

  .promo-slide__layers--battery .promo-slide__overlay--primary {
    left: 0.42%;
    top: 0.625%;
    width: 35%;
    max-width: 168px;
  }

  .promo-slide__layers--battery .promo-slide__overlay--secondary {
    left: 45.2%;
    top: 29.7%;
    bottom: auto;
    transform: none;
    width: 47.1%;
    max-width: 226px;
  }

  .promo-slide__cta {
    left: 2.5%;
    padding: 8px 16px;
    font-size: 11px;
    min-width: 120px;
    min-height: 29px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .promo-slide--tiggo9 .promo-slide__cta,
  .promo-slide--left .promo-slide__cta {
    top: 50.9%;
    bottom: auto;
  }

  .promo-slide--carlinko .promo-slide__cta {
    top: auto;
    bottom: 8%;
    font-size: 11px;
    padding: 8px 18px;
  }

  .promo-slide--battery .promo-slide__cta {
    top: auto;
    bottom: 11.5%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    min-width: 134px;
    min-height: 40px;
  }

  .promo-slider__controls {
    left: max(12px, env(safe-area-inset-left));
    bottom: max(10px, env(safe-area-inset-bottom));
  }

  .promo-slider__pause {
    width: 36px;
    height: 36px;
  }
}

/* ── Hero Sections ── */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 18vh;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 100vh;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-color: #1a1a1a;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
  transform: translateZ(0);
}

.hero--banner .hero__bg {
  background-position: center 55%;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.05) 40%,
    rgba(0,0,0,0.2) 100%
  );
}

.hero[data-theme="light"] .hero__bg::after {
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.1) 0%,
    rgba(255,255,255,0.05) 40%,
    rgba(0,0,0,0.15) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  animation: fadeUp 0.8s ease both;
}

.hero__title {
  margin: 0;
  line-height: 1;
}

.hero__logo {
  display: block;
  max-width: min(92vw, 520px);
  width: auto;
  height: auto;
  max-height: clamp(44px, 8vw, 72px);
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 16px rgba(0, 0, 0, 0.35));
}

.hero[data-theme="light"] .hero__logo {
  filter: drop-shadow(0 2px 16px rgba(255, 255, 255, 0.45));
}

/* Logo berwarna — latar hitam/gelap, kekalkan merah/putih (Tiggo 7/8/9 Pro) */
.hero__logo--color {
  max-height: clamp(52px, 10vw, 96px);
  mix-blend-mode: screen;
  filter: drop-shadow(0 2px 16px rgba(0, 0, 0, 0.35));
}

/* Logo putih pepejal — sama konsep O5 (solid fill, bukan outline) */
.hero__logo--white {
  max-height: clamp(52px, 10vw, 96px);
  mix-blend-mode: screen;
  filter: grayscale(1) brightness(4) drop-shadow(0 2px 16px rgba(0, 0, 0, 0.35));
  opacity: 1;
}

/* Logo gelap — hero photo cerah, versi hitam */
.hero__logo--dark {
  filter: brightness(0) drop-shadow(0 2px 14px rgba(255, 255, 255, 0.35));
}

.hero__title-text {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, var(--text-hero));
  font-weight: var(--weight-ui);
  letter-spacing: normal;
  line-height: var(--text-hero-lh);
  color: var(--white);
}

.hero[data-theme="light"] .hero__title-text {
  color: var(--black);
}

.hero__subtitle {
  margin-top: 8px;
  font-size: var(--text-body);
  font-weight: var(--weight-body);
  color: rgba(255,255,255,0.9);
}

.hero[data-theme="light"] .hero__subtitle {
  color: var(--gray-light);
}

.hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--white);
  animation: bounce 2s infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Content Sections ── */
.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}

.section__inner {
  max-width: 720px;
  text-align: center;
}
.section__inner--wide { max-width: 1100px; width: 100%; }

.section__eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, var(--text-section));
  font-weight: var(--weight-ui);
  letter-spacing: normal;
  line-height: var(--text-hero-lh);
  margin-bottom: 20px;
}

.section__text {
  font-size: var(--text-body);
  line-height: var(--text-body-lh);
  color: var(--gray-light);
  margin-bottom: 32px;
}

.section__note {
  font-size: 13px;
  color: var(--gray-light);
  margin-top: 24px;
}

.section__note-link {
  color: var(--black);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.section__text--promo {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* About */
.section--about {
  background: linear-gradient(180deg, var(--white) 0%, #fafafa 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr;
  gap: 56px;
  align-items: center;
  text-align: left;
  max-width: 1000px;
}

.about-photo {
  position: relative;
}

.about-photo__frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
  background: var(--gray-bg);
}

.about-photo__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-photo__badge {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.about-content .section__title { text-align: left; margin-bottom: 16px; }
.about-content .section__text { text-align: left; margin-bottom: 28px; max-width: 480px; }

.trust-badges {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.trust-badge {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
}

.trust-badge__icon {
  font-size: 18px;
  line-height: 1.2;
  flex-shrink: 0;
}

.trust-badge strong {
  color: var(--black);
  font-weight: 600;
}

.about-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-social {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-border);
}

.about-social__label {
  font-size: 13px;
  color: var(--gray-light);
  margin: 0 0 12px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-border);
  background: var(--white);
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--black);
  background: var(--gray-bg);
}

.social-link--compact {
  padding: 8px;
  border-radius: 50%;
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.65);
}

.social-link--compact:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.contact-social {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .about-photo {
    max-width: 280px;
    margin: 0 auto;
  }
  .about-content .section__title,
  .about-content .section__text { text-align: center; margin-left: auto; margin-right: auto; }
  .trust-badges { align-items: center; }
  .trust-badge { max-width: 320px; }
  .about-cta { justify-content: center; }
  .about-social { text-align: center; }
  .about-social .social-links { justify-content: center; }
  .contact-social .social-links { justify-content: center; }
}

/* Why Chery / Why Amran */
.section--why {
  background: var(--black);
  color: var(--white);
  align-items: flex-start;
  padding-top: 96px;
  padding-bottom: 96px;
}

.section--why .section__eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.section--why .section__title {
  color: var(--white);
}

.section--why .section__text--why {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 48px;
}

.why-header {
  text-align: center;
  margin-bottom: 8px;
}

.why-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
  text-align: left;
}

.why-column__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: var(--weight-ui);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.why-column--amran .why-column__title {
  border-bottom-color: rgba(37, 211, 102, 0.35);
}

.why-cards {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  transition: background var(--transition), border-color var(--transition);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.14);
}

.why-column--amran .why-card:hover {
  border-color: rgba(37, 211, 102, 0.25);
}

.why-card__icon {
  flex-shrink: 0;
  font-size: 20px;
  line-height: 1.4;
}

.why-card__title {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--white);
}

.why-card__text {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.why-models {
  text-align: center;
  margin-bottom: 48px;
}

.why-models__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: var(--weight-ui);
  margin-bottom: 8px;
}

.why-models__intro {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.why-model-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.why-model-chip {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: calc(var(--radius) - 2px);
  text-align: left;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.why-model-chip:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.why-model-chip--highlight {
  border-color: rgba(37, 211, 102, 0.4);
  background: rgba(37, 211, 102, 0.08);
}

.why-model-chip--highlight:hover {
  border-color: rgba(37, 211, 102, 0.6);
  background: rgba(37, 211, 102, 0.12);
}

.why-model-chip__who {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.3;
}

.why-model-chip__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.why-cta {
  text-align: center;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.why-cta__text {
  font-size: var(--text-body);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
}

.why-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

@media (max-width: 1024px) {
  .why-model-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .why-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .why-cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .why-cta__buttons .btn {
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .why-model-grid {
    grid-template-columns: 1fr;
  }
}

/* Promotions */
.section--promo {
  background: var(--gray-bg);
  align-items: flex-start;
  padding-top: 96px;
  padding-bottom: 96px;
}

.promo-layout {
  text-align: center;
  max-width: 1080px;
}

.promo-header {
  margin-bottom: 40px;
}

.promo-header .section__title {
  margin-bottom: 12px;
}

.promo-featured {
  margin-bottom: 24px;
}

.promo-featured-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  text-align: left;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition);
}

.promo-featured-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.promo-featured-card__media {
  position: relative;
  min-height: 280px;
  background: #111;
}

.promo-featured-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  min-height: 280px;
}

.promo-featured-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--chery-red);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

.promo-featured-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 36px;
}

.promo-featured-card__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 8px;
}

.promo-featured-card__model {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  margin-bottom: 8px;
}

.promo-featured-card__save {
  font-size: 20px;
  font-weight: 600;
  color: var(--chery-red);
  margin-bottom: 20px;
}

.promo-featured-card__cta {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 8px;
}

.promo-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
  color: inherit;
  border: 1px solid var(--gray-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.promo-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.promo-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #eee;
  overflow: hidden;
}

.promo-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.promo-card__badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.72);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
}

.promo-card__body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.promo-card__model {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.promo-card__save {
  font-size: 12px;
  color: var(--chery-red);
  font-weight: 500;
  line-height: 1.4;
}

.promo-card--teaser {
  border-style: dashed;
  border-color: #ccc;
}

.promo-card--teaser .promo-card__save {
  color: var(--gray);
}

@media (max-width: 960px) {
  .promo-featured-card {
    grid-template-columns: 1fr;
  }
  .promo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .promo-grid {
    grid-template-columns: 1fr;
  }
  .promo-featured-card__body {
    padding: 28px 24px;
  }
}

/* Test Drive */
.section--test-drive {
  background: var(--white);
  align-items: flex-start;
  padding-top: 96px;
  padding-bottom: 96px;
}

.test-drive-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  text-align: left;
  max-width: 1040px;
}

.test-drive-panel__title,
.test-drive-panel__text {
  text-align: left;
}

.test-drive-panel .section__eyebrow {
  text-align: left;
}

.test-drive-form {
  text-align: left;
  max-width: none;
  margin: 0;
  background: var(--gray-bg);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-border);
}

.form-trust {
  font-size: 12px;
  color: var(--gray-light);
  text-align: center;
  margin-top: 4px;
}

.form-consent {
  font-size: 12px;
  line-height: 1.5;
  color: var(--gray-light);
  text-align: center;
  margin-top: 12px;
}

.form-consent a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-consent a:hover {
  color: var(--chery-red);
}

.test-drive-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 520px;
  box-shadow: var(--shadow-md);
}

.test-drive-visual__image {
  position: absolute;
  inset: 0;
  background: #1a1a1a center/cover no-repeat;
}

.test-drive-visual__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 32px;
  color: var(--white);
}

.test-drive-visual__tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 8px;
}

.test-drive-visual__headline {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 16px;
}

.test-drive-visual__list {
  list-style: none;
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.8;
}

.test-drive-visual__list li::before {
  content: '✓ ';
  opacity: 0.7;
}

@media (max-width: 900px) {
  .test-drive-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .test-drive-visual {
    min-height: 280px;
    order: -1;
  }
  .test-drive-panel__title,
  .test-drive-panel__text,
  .test-drive-panel .section__eyebrow {
    text-align: center;
  }
}

.test-drive-form__honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
  margin-bottom: 6px;
  text-align: left;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.test-drive-form .form-row {
  align-items: start;
}

.test-drive-success {
  max-width: 480px;
  margin: 0 auto;
  padding: 32px 24px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.test-drive-success__title {
  font-size: 22px;
  font-weight: var(--weight-ui);
  margin: 0 0 12px;
}

.test-drive-success__text {
  font-size: var(--text-body);
  line-height: var(--text-body-lh);
  color: var(--gray-light);
  margin: 0 0 24px;
}

.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: var(--font);
  resize: vertical;
}


/* Contact */
.section--contact {
  background: linear-gradient(180deg, #fafafa 0%, var(--gray-bg) 100%);
  align-items: flex-start;
  padding-top: 96px;
  padding-bottom: 96px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
  text-align: left;
  max-width: 960px;
}

.contact-intro .section__title,
.contact-intro .section__text {
  text-align: left;
}

.contact-intro .section__eyebrow {
  text-align: left;
}

.contact-intro .section__text {
  max-width: 400px;
  margin-bottom: 28px;
}

.contact-secondary {
  margin-top: 16px;
  font-size: 14px;
  color: var(--gray-light);
}

.contact-secondary a {
  color: var(--black);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.gift-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.gift-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-sm);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.gift-card:hover {
  box-shadow: var(--shadow-md);
}

.gift-card__icon {
  font-size: 24px;
  display: block;
  margin-bottom: 10px;
}

.gift-card__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.gift-card__text {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-intro .section__title,
  .contact-intro .section__text,
  .contact-intro .section__eyebrow {
    text-align: center;
  }
  .contact-intro .section__text {
    margin-left: auto;
    margin-right: auto;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

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

.contact-form input,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: var(--font);
  background: var(--white);
  transition: border-color var(--transition);
}
.contact-form input:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--black);
}

/* Location */
.section--location {
  background: var(--gray-bg);
  color: var(--black);
  padding: 80px 24px;
  min-height: auto;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 24px;
  align-items: stretch;
}

.location-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
  display: flex;
  flex-direction: column;
  text-align: left;
}

.location-card__title {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 4px;
  text-align: left;
}

.location-card__subtitle {
  font-size: 14px;
  color: var(--gray-light);
  margin-bottom: 24px;
}

.section--location .section__eyebrow {
  color: var(--gray-light);
  text-align: left;
}

.location-address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.8;
  color: var(--gray);
  margin: 0 0 20px;
}

.location-hours {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 28px;
  padding: 12px 16px;
  background: var(--gray-bg);
  border-radius: var(--radius-sm);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.location-map {
  min-height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-border);
}

/* ── Footer ── */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.5);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer__start {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__start p {
  margin: 0;
}

.footer__start .social-links {
  gap: 8px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: flex-end;
}
.footer__links a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }

.footer__disclaimer-link {
  color: rgba(255,255,255,0.45);
  margin-left: 0.35em;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__disclaimer-link:hover { color: var(--white); }

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .header {
    padding: env(safe-area-inset-top, 0px) 20px 0;
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
    height: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  }

  .header__nav,
  .header__actions { display: none; }
  .header__menu-btn {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    margin-right: -8px;
  }

  .mobile-menu nav {
    padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0px) + 24px);
    padding-bottom: max(32px, env(safe-area-inset-bottom));
    padding-left: max(24px, env(safe-area-inset-left));
    padding-right: max(24px, env(safe-area-inset-right));
  }

  .mobile-menu a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .promo-slider__controls {
    left: max(16px, env(safe-area-inset-left));
    bottom: max(20px, env(safe-area-inset-bottom));
  }

  .promo-slider__pause {
    width: 44px;
    height: 44px;
  }

  .section {
    min-height: auto;
    padding: 64px max(20px, env(safe-area-inset-right)) 64px max(20px, env(safe-area-inset-left));
  }

  /* Model heroes — compact on mobile (not full-screen like desktop) */
  .hero.hero--banner:not(.promo-slider) {
    height: min(56dvh, 420px);
    max-height: 420px;
    min-height: 300px;
    padding-top: 0;
    align-items: center;
    contain-intrinsic-size: 420px;
  }

  .hero.hero--banner:not(.promo-slider) .hero__content {
    padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0px) + 12px);
  }

  .hero.hero--banner .hero__logo {
    max-height: 44px;
  }

  .hero.hero--banner .hero__logo--color,
  .hero.hero--banner .hero__logo--white {
    max-height: 48px;
  }

  .hero.hero--banner .hero__title-text {
    font-size: clamp(22px, 5.5vw, 28px);
  }

  .hero.hero--banner .hero__cta {
    flex-direction: column;
    align-items: center;
    margin-top: 16px;
    gap: 10px;
  }

  .hero.hero--banner .hero__scroll {
    bottom: 12px;
  }

  .hero__cta { flex-direction: column; align-items: center; }
  .btn {
    padding: 14px 40px;
    width: 100%;
    max-width: 280px;
    min-height: 48px;
  }
  .about-cta .btn { max-width: 280px; }

  .contact-form input,
  .contact-form select {
    font-size: 16px;
    min-height: 48px;
  }

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

  .location-layout { grid-template-columns: 1fr; }
  .location-map { min-height: 300px; }

  .whatsapp-float {
    bottom: max(20px, env(safe-area-inset-bottom));
    right: max(16px, env(safe-area-inset-right));
    width: 56px;
    height: 56px;
  }

  .footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding-bottom: max(24px, env(safe-area-inset-bottom));
  }

  .footer__start {
    align-items: center;
  }

  .footer__links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .location-actions .btn {
    flex: 1;
    min-width: 120px;
  }
}

/* Mobile heights — override 100dvh (promo banner + model heroes) */
@media (max-width: 767px) {
  .promo-slider.hero,
  section.promo-slider {
    height: min(66.667vw, 320px) !important;
    max-height: 320px !important;
    min-height: 200px !important;
  }

  section.hero.hero--banner:not(.promo-slider) {
    height: min(56dvh, 420px) !important;
    max-height: 420px !important;
    min-height: 300px !important;
    padding-top: 0 !important;
  }
}
