/* Landing — ported from dealerview-sunmotor-mitsubishi-repo (Next LP tokens) */
:root {
  --lp-surface: #f7f8fa;
  --lp-surface-2: #ffffff;
  --lp-surface-3: #f0f1f4;
  --lp-surface-4: #e6e8ec;
  --lp-brand: #e60012;
  --lp-brand-2: #b3000e;
  --lp-brand-mint: #ff3b3b;
  --lp-text-1: #0f1a1f;
  --lp-text-2: #516570;
  --lp-text-3: #8a9aa3;
  --lp-border: rgba(15, 26, 31, 0.08);
  --lp-border-brand: rgba(230, 0, 18, 0.35);
  --lp-grad: linear-gradient(135deg, #e60012 0%, #c80010 50%, #b3000e 100%);
  --lp-grad-h: linear-gradient(90deg, #e60012, #b3000e);
  --lp-shadow-brand: 0 10px 28px rgba(230, 0, 18, 0.25);
  --lp-shadow-lift: 0 6px 24px rgba(15, 26, 31, 0.08), 0 2px 6px rgba(15, 26, 31, 0.04);
  --lp-font: var(--font-dm-sans), system-ui, sans-serif;
  --lp-display: var(--font-sora), system-ui, sans-serif;
  --lp-radius: 10px;
  --lp-radius-card: 16px;
  --lp-radius-modal: 20px;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}
body.lp-body {
  margin: 0;
  font-family: var(--lp-font);
  color: var(--lp-text-1);
  background: var(--lp-surface);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }
ul { margin: 0; padding: 0; list-style: none; }

/* Solid gutters first — max()/env() alone can be dropped by some mobile WebViews */
.lp-wrap {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@supports (padding: max(0px)) {
  .lp-wrap {
    padding-left: max(24px, env(safe-area-inset-left, 0px));
    padding-right: max(24px, env(safe-area-inset-right, 0px));
  }
}
@media (min-width: 640px) {
  .lp-wrap {
    padding-left: 40px;
    padding-right: 40px;
  }
  @supports (padding: max(0px)) {
    .lp-wrap {
      padding-left: max(40px, env(safe-area-inset-left, 0px));
      padding-right: max(40px, env(safe-area-inset-right, 0px));
    }
  }
}
@media (min-width: 1024px) {
  .lp-wrap {
    padding-left: 56px;
    padding-right: 56px;
  }
  @supports (padding: max(0px)) {
    .lp-wrap {
      padding-left: max(56px, env(safe-area-inset-left, 0px));
      padding-right: max(56px, env(safe-area-inset-right, 0px));
    }
  }
}

/* Buttons */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--lp-radius);
  font-weight: 600;
  font-size: 0.925rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}
.lp-btn--brand {
  background: var(--lp-grad);
  color: #fff !important;
}
.lp-btn--brand:hover {
  transform: translateY(-2px);
  box-shadow: var(--lp-shadow-brand);
}
.lp-btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.82rem;
}
.lp-btn--outline {
  background: transparent;
  color: var(--lp-text-1);
  border: 1px solid var(--lp-border);
}
.lp-btn--outline:hover {
  border-color: var(--lp-brand);
  background: rgba(230, 0, 18, 0.06);
  color: var(--lp-brand);
}
.lp-btn--ghost-light {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff !important;
  background: transparent;
}
.lp-btn--ghost-light:hover { background: rgba(255, 255, 255, 0.1); }
.lp-btn--ghost {
  border: 1px solid var(--lp-border);
  color: var(--lp-text-1);
  background: transparent;
}
.lp-btn--ghost:hover {
  border-color: var(--lp-brand);
  color: var(--lp-brand);
  background: rgba(230, 0, 18, 0.04);
}
.lp-btn--promo {
  background: #16a34a;
  color: #fff !important;
  border: 1px solid #15803d;
  box-shadow: 0 6px 18px rgba(22, 163, 74, 0.28);
  gap: 0.45rem;
}
.lp-btn--promo:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  background: #15803d;
}
.lp-btn__wa {
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
  display: block;
}
.lp-btn--credit {
  /* Fixed Sunmotor-model red — do not follow teal --lp-grad brand override */
  background: linear-gradient(135deg, #e60012 0%, #c80010 50%, #b3000e 100%);
  color: #fff !important;
  border: 1px solid transparent;
  box-shadow: 0 10px 28px rgba(230, 0, 18, 0.25);
}
.lp-btn--credit:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.lp-btn--white {
  background: #fff;
  color: var(--lp-text-1) !important;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.lp-btn--white:hover {
  transform: translateY(-2px);
  background: #fff;
}

/* Header */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 248, 250, 0.4);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.lp-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--lp-border);
  box-shadow: 0 1px 0 rgba(15, 26, 31, 0.04);
}
.lp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 0.75rem;
  min-width: 0;
}
.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  flex-shrink: 1;
}
.lp-brand__mark {
  height: 52px;
  width: auto;
  flex: 0 0 auto;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
}
.lp-brand__name {
  font-family: var(--lp-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  background: var(--lp-grad-h);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lp-nav {
  display: none;
  align-items: center;
  gap: 2.25rem;
}
.lp-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--lp-text-2);
  transition: color 0.2s;
}
.lp-nav a:hover { color: var(--lp-text-1); }
.lp-header__right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.lp-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.lp-burger span {
  display: block;
  height: 2px;
  width: 20px;
  background: var(--lp-text-1);
  transition: transform 0.2s, opacity 0.2s;
}
.lp-header.is-open .lp-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-header.is-open .lp-burger span:nth-child(2) { opacity: 0; }
.lp-header.is-open .lp-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.lp-mobile {
  display: none;
  border-bottom: 1px solid var(--lp-border);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
}
.lp-header.is-open .lp-mobile { display: block; }
.lp-mobile nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 0 1.25rem;
}
.lp-mobile a {
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--lp-text-2);
}
.lp-mobile a:hover {
  background: var(--lp-surface-3);
  color: var(--lp-text-1);
}
@media (min-width: 768px) {
  .lp-nav { display: flex; }
  .lp-burger { display: none; }
  .lp-mobile, .lp-header.is-open .lp-mobile { display: none; }
}
.lp-cta-label-short { display: inline; }
.lp-cta-label-long { display: none; }
@media (min-width: 640px) {
  .lp-cta-label-short { display: none; }
  .lp-cta-label-long { display: inline; }
}

/* Hero */
.lp-hero {
  position: relative;
  height: 82vh;
  min-height: 560px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: #000;
  color: #fff;
}
.lp-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}
.lp-hero__shade {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.1) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 40%);
}
.lp-hero__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  /* Full .lp-wrap width so left edge matches header logo (not a centered 600px box) */
  max-width: 1200px;
  width: 100%;
}
.lp-hero__content > div {
  max-width: 36rem;
}
.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-family: var(--lp-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--lp-grad);
  box-shadow: var(--lp-shadow-brand);
  color: #fff;
}
.lp-badge i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
  animation: lp-pulse-soft 2s ease-in-out infinite;
}
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}
.lp-eyebrow i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lp-brand-mint);
  display: inline-block;
}
.lp-hero h1 {
  margin: 0;
  font-family: var(--lp-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
}
.lp-hero h1 span {
  background: var(--lp-grad-h);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lp-hero p {
  margin: 1.5rem 0 0;
  max-width: 500px;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  line-height: 1.7;
}
.lp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.lp-scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.lp-scroll-hint::after {
  content: "";
  display: block;
  width: 2px;
  height: 32px;
  margin: 0.5rem auto 0;
  background: rgba(255, 59, 59, 0.5);
  animation: lp-pulse-soft 2s ease-in-out infinite;
}

@keyframes lp-pulse-soft {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.35); }
}

/* Sections */
.lp-sec {
  padding: clamp(4.5rem, 8vh, 7rem) 0;
}
.lp-sec--band { background: rgba(255, 255, 255, 0.4); }
.lp-sec__head {
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}
.lp-sec__head--center {
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}
.lp-sec__title {
  margin: 0;
  font-family: var(--lp-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--lp-text-1);
}
.lp-sec__title--caps {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lp-text-3);
}
.lp-sec__rule {
  width: 60px;
  height: 2px;
  margin-top: 0.75rem;
  border-radius: 999px;
  background: var(--lp-grad-h);
}
.lp-sec__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lp-brand);
}
.lp-sec__link:hover { opacity: 0.85; }
.lp-sec__aside {
  font-size: 0.875rem;
  color: var(--lp-text-2);
}
.lp-sec__head--stack {
  align-items: flex-end;
}
.lp-sec__head--stack .lp-models-page__eyebrow {
  margin-bottom: 0.35rem;
}

/* Glass cards */
.lp-glass {
  background: var(--lp-surface-2);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-card);
  box-shadow: 0 1px 2px rgba(15, 26, 31, 0.04);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.lp-glass:hover {
  border-color: var(--lp-border-brand);
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-lift);
}

/* Pillars */
.lp-pillars {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .lp-pillars { grid-template-columns: repeat(3, 1fr); }
}
.lp-pillar {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}
.lp-pillar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: rgba(230, 0, 18, 0.08);
  border: 1px solid rgba(230, 0, 18, 0.15);
  transition: background 0.5s, box-shadow 0.5s, transform 0.5s;
}
.lp-pillar__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--lp-brand);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lp-pillar:hover .lp-pillar__icon {
  background: rgba(230, 0, 18, 0.15);
  box-shadow: 0 0 16px rgba(230, 0, 18, 0.18);
}
.lp-pillar:hover .lp-pillar__icon svg {
  transform: rotate(15deg) scale(1.15);
}
.lp-pillar h3 {
  margin: 0;
  font-family: var(--lp-display);
  font-size: 0.95rem;
  font-weight: 600;
}
.lp-pillar p {
  margin: 0.4rem 0 0;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--lp-text-2);
}

/* Models */
.lp-models {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .lp-models { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .lp-models { grid-template-columns: repeat(4, 1fr); }
}
.lp-card {
  display: block;
  overflow: hidden;
  color: inherit;
}
.lp-card__media {
  height: 200px;
  border-bottom: 1px solid var(--lp-border);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #fff;
  transition: transform 0.5s;
}
.lp-card:hover .lp-card__media { transform: scale(1.03); }
.lp-card__body { padding: 1.25rem; }
.lp-card__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}
.lp-card__body h3 {
  margin: 0;
  font-family: var(--lp-display);
  font-size: 1rem;
  font-weight: 600;
}
.lp-card__price {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 0.75rem;
  color: var(--lp-text-2);
  white-space: nowrap;
}
.lp-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.85rem;
}
.lp-chip {
  display: inline-flex;
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(230, 0, 18, 0.25);
  background: rgba(230, 0, 18, 0.1);
  color: var(--lp-brand);
}

/* Dealer */
.lp-dealer {
  overflow: hidden;
  display: grid;
}
@media (min-width: 768px) {
  .lp-dealer { grid-template-columns: 1.2fr 1fr; }
}
.lp-dealer__visual {
  position: relative;
  min-height: 256px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--lp-border);
  background:
    radial-gradient(ellipse 70% 100% at 50% 60%, rgba(230, 0, 18, 0.14), transparent 70%),
    linear-gradient(135deg, rgba(230, 0, 18, 0.05), rgba(179, 0, 14, 0.05));
}
.lp-dealer__visual--photo {
  background-color: #0f1216;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .lp-dealer__visual {
    border-bottom: 0;
    border-right: 1px solid var(--lp-border);
    min-height: auto;
  }
  .lp-dealer__visual--photo {
    min-height: 100%;
  }
}
.lp-dealer__visual svg {
  width: 64px;
  height: 64px;
  stroke: var(--lp-brand);
  fill: none;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin: 0 auto;
}
.lp-dealer__visual p {
  margin: 0.75rem 0 0;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lp-text-3);
  text-align: center;
}
.lp-dealer__body { padding: 1.75rem 2rem; }
.lp-dealer__body h3 {
  margin: 0;
  font-family: var(--lp-display);
  font-size: 1.25rem;
  font-weight: 600;
}
.lp-dealer__body > p {
  margin: 0.5rem 0 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--lp-text-2);
}
.lp-dealer__label {
  margin: 1.25rem 0 0;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lp-text-3);
}
.lp-dealer__hours {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: var(--lp-text-1);
}
.lp-dealer__hours li + li { margin-top: 0.15rem; }
.lp-dealer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

/* CTA band */
.lp-cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--lp-radius-modal);
  background: var(--lp-grad);
  color: #fff;
  max-width: 100%;
}
.lp-cta-band::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 50%, rgba(255, 255, 255, 0.1), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0, 0, 0, 0.15), transparent 50%);
}
.lp-cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.5rem 2rem;
}
@media (min-width: 640px) {
  .lp-cta-band__inner { padding: 2.5rem 3rem; }
}
.lp-cta-band h2 {
  margin: 0;
  font-family: var(--lp-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #fff;
}
.lp-cta-band p {
  margin: 0.5rem 0 0;
  max-width: 500px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.lp-footer {
  border-top: 1px solid var(--lp-border);
  background: var(--lp-surface-2);
  max-width: 100%;
}
.lp-footer__inner {
  padding-top: 2.5rem;
  padding-bottom: 2rem;
}
.lp-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1.25rem;
  row-gap: 1.75rem;
  min-width: 0;
  width: 100%;
}
.lp-footer__brand {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  max-width: 100%;
}
@media (min-width: 768px) {
  .lp-footer__inner {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .lp-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2.5rem;
  }
  .lp-footer__brand {
    grid-column: auto;
  }
}
.lp-footer__about {
  display: block;
  width: 100%;
  max-width: 20rem;
  margin: 1rem 0 0;
  padding: 0;
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--lp-text-3);
  overflow-wrap: break-word;
  word-break: normal;
}
.lp-footer__col {
  min-width: 0;
}
.lp-footer__col h3 {
  margin: 0 0 0.65rem;
  font-family: var(--lp-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-text-3);
}
.lp-footer__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.lp-footer__col li + li {
  margin-top: 0.45rem;
}
.lp-footer__col a {
  display: inline;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--lp-text-2);
  transition: color 0.2s;
}
.lp-footer__col a:hover { color: var(--lp-text-1); }
.lp-footer__bar {
  border-top: 1px solid var(--lp-border);
}
.lp-footer__bar-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding: 1.15rem 0;
  font-size: 0.72rem;
  color: var(--lp-text-3);
  min-width: 0;
}
.lp-footer__atlas {
  font-weight: 600;
  background: var(--lp-grad-h);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--lp-brand);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Models listing + detail (from Next /models) */
.lp-models-page__head { margin-bottom: 2.5rem; max-width: 40rem; }
.lp-models-page__eyebrow {
  margin: 0;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lp-brand);
}
.lp-models-page__title {
  margin: 0.5rem 0 0;
  font-family: var(--lp-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
  color: var(--lp-text-1);
}
.lp-models-page__sub {
  margin: 0.75rem 0 0;
  max-width: 32rem;
  color: var(--lp-text-2);
  line-height: 1.6;
}

.lp-model-hero {
  position: relative;
  height: 78vh;
  min-height: 520px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: var(--lp-surface);
}
.lp-model-hero__video,
.lp-model-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  max-width: none;
}
.lp-model-hero__shade {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247,248,250,0.95) 0%, rgba(247,248,250,0.6) 45%, transparent 75%),
    linear-gradient(0deg, rgba(247,248,250,0.7) 0%, transparent 35%);
}
.lp-model-hero__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  /* Keep full .lp-wrap width (1200px) so text left-edge matches header logo;
     do not shrink to 540px + margin:auto (that centered the block). */
  max-width: 1200px;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.lp-model-hero__content > * {
  max-width: 36rem;
}
.lp-model-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
  color: var(--lp-text-2);
}
.lp-model-hero__back:hover { color: var(--lp-text-1); }
.lp-model-hero__type {
  margin: 0;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lp-brand);
}
.lp-model-hero h1 {
  margin: 0.75rem 0 0;
  font-family: var(--lp-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--lp-text-1);
}
.lp-model-hero__tagline {
  margin: 1rem 0 0;
  max-width: 440px;
  color: var(--lp-text-2);
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  line-height: 1.65;
}
.lp-model-hero__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.lp-model-hero__price-val {
  font-family: var(--lp-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--lp-text-1);
}
.lp-model-hero__price-note {
  font-size: 0.82rem;
  color: var(--lp-text-2);
}
.lp-model-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.lp-specs {
  display: grid;
  gap: 0 3rem;
}
@media (min-width: 768px) {
  .lp-specs { grid-template-columns: 1fr 1fr; }
}
.lp-specs__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--lp-border);
}
.lp-specs__label { font-size: 0.82rem; color: var(--lp-text-2); }
.lp-specs__value {
  text-align: right;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--lp-text-1);
}
.lp-specs__note {
  margin: 1.5rem 0 0;
  font-size: 0.72rem;
  font-style: italic;
  color: var(--lp-text-3);
}

/* Tabbed specs (sunstarmotor-style tabs, LP chrome) */
.lp-spectabs {
  margin-top: 0.25rem;
}
.lp-spectabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 0.1rem;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--lp-border);
}
.lp-spectabs__tab {
  appearance: none;
  border: 1px solid transparent;
  border-bottom: none;
  background: transparent;
  color: var(--lp-text-3);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.7rem 0.95rem;
  margin-bottom: -1px;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}
.lp-spectabs__tab:hover { color: var(--lp-text-1); }
.lp-spectabs__tab.is-active {
  color: var(--lp-text-1);
  background: var(--lp-surface-2, #fff);
  border-color: var(--lp-border);
  box-shadow: 0 1px 0 var(--lp-surface-2, #fff);
}
.lp-spectabs__panels {
  border: 1px solid var(--lp-border);
  border-top: none;
  border-radius: 0 0 var(--lp-radius-card, 14px) var(--lp-radius-card, 14px);
  background: var(--lp-surface-2, #fff);
  padding: 1.1rem 1.15rem 1.25rem;
}
.lp-spectabs__panel[hidden] { display: none !important; }
.lp-spectabs__heading {
  margin: 1.15rem 0 0.45rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--lp-text-1);
}
.lp-spectabs__panel > .lp-spectabs__heading:first-child,
.lp-spectabs__panel > .lp-spectabs__bullets:first-child { margin-top: 0; }
.lp-spectabs__bullets {
  margin: 0.15rem 0 0.35rem;
  padding: 0 0 0 1.15rem;
  list-style: disc;
  color: var(--lp-text-1);
}
.lp-spectabs__bullets li {
  padding: 0.28rem 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--lp-text-1);
}
.lp-spectabs__bullets li::marker { color: var(--lp-text-3); }
@media (max-width: 640px) {
  .lp-spectabs__nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 1px;
  }
  .lp-spectabs__tab { font-size: 0.78rem; padding: 0.65rem 0.8rem; }
  .lp-spectabs__panels { padding: 0.95rem 0.9rem 1.1rem; }
}

/* Floating promo WA — bottom-right; only when no/invalid src (JS mounts it) */
.lp-wa-promo {
  position: fixed;
  z-index: 51;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  pointer-events: none;
}
.lp-wa-promo__btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.2s ease;
}
.lp-wa-promo__btn:hover { transform: scale(1.06); }
.lp-wa-promo__btn svg {
  width: 30px;
  height: 30px;
}
.lp-wa-promo__flag {
  pointer-events: none;
  position: relative;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}
.lp-wa-promo__flag::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  margin-top: -6px;
  border: 6px solid transparent;
  border-left-color: #1a1a1a;
  border-right: 0;
}

/* Floating sales WhatsApp widget (CRM-driven) */
.lp-sales {
  position: fixed;
  z-index: 50;
  right: 16px;
  bottom: 16px;
  pointer-events: none;
}
.lp-sales a, .lp-sales .lp-sales__card { pointer-events: auto; }
.lp-sales__pill {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  max-width: min(280px, calc(100vw - 32px));
  padding: 6px 14px 6px 6px;
  border-radius: 999px;
  background: var(--lp-surface-2);
  box-shadow: var(--lp-shadow-lift);
  border: 1px solid var(--lp-border);
  text-decoration: none;
  color: inherit;
}
.lp-sales__pill-meta { min-width: 0; line-height: 1.2; }
.lp-sales__pill-name {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--lp-text-1);
}
.lp-sales__pill-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
  font-size: 0.68rem;
  font-weight: 600;
  color: #128c4b;
}
.lp-sales__pill-cta svg { width: 10px; height: 10px; }
.lp-sales__card {
  display: none;
  width: 290px;
  overflow: hidden;
  border-radius: var(--lp-radius-card);
  background: var(--lp-surface-2);
  box-shadow: var(--lp-shadow-lift);
  border: 1px solid var(--lp-border);
  animation: lp-fade-up 0.5s cubic-bezier(0,0,0.2,1) both;
}
.lp-sales__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: var(--lp-grad);
  color: #fff;
}
.lp-sales__head-meta { min-width: 0; }
.lp-sales__name {
  margin: 0;
  font-family: var(--lp-display);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lp-sales__role {
  margin: 0.15rem 0 0;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.85);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lp-sales__body { padding: 0.9rem 1rem 1rem; }
.lp-sales__blurb {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--lp-text-2);
}
.lp-sales__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  background: #25d366;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: transform 0.2s;
}
.lp-sales__btn:hover { transform: translateY(-2px); }
.lp-sales__btn svg { width: 18px; height: 18px; }
.lp-sales__avatar {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  /* visible so the online dot isn't clipped by the circle */
  overflow: visible;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-weight: 700;
}
.lp-sales__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}
.lp-sales__avatar--sm { width: 44px; height: 44px; font-size: 0.75rem; }
.lp-sales__avatar--md {
  width: 48px;
  height: 48px;
  font-size: 0.85rem;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.7);
}
.lp-sales__avatar--initials { background: #1a1a1a; color: #fff; }
.lp-sales__dot {
  position: absolute;
  /* Keep fully inside the avatar so card overflow:hidden cannot clip it */
  right: 2px;
  bottom: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #25d366;
  border: 2px solid #fff;
  display: block;
  z-index: 1;
  box-sizing: border-box;
  pointer-events: none;
}
.lp-sales__avatar--md .lp-sales__dot {
  width: 13px;
  height: 13px;
  right: 2px;
  bottom: 2px;
}

/* No ?src= → browse-only: hide lead CTAs (WA + test drive + simulasi), keep tour/model browsing */
.lp-browse-only .lp-lead-cta,
.lp-browse-only #cta,
.lp-browse-only #simulasi,
.lp-browse-only #kpr,
.lp-browse-only .lp-sales {
  display: none !important;
}

/* ---- Dealer videos ---- */
.lp-videos {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .lp-videos { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .lp-videos { grid-template-columns: repeat(3, 1fr); }
}
.lp-video {
  overflow: hidden;
  padding: 0;
}
.lp-video__frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #0b1220;
}
.lp-video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.lp-video--feature {
  max-width: 920px;
  margin: 0 0 1.25rem;
  margin-right: auto;
}
.lp-model-yt__note {
  margin: -0.5rem 0 1.25rem;
  color: var(--lp-text-2);
  font-size: 0.95rem;
}

/* ---- Credit simulation ---- */
.lp-sim {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .lp-sim:has(.lp-sim__form) {
    grid-template-columns: 1fr 1.05fr;
    align-items: start;
    gap: 2.5rem;
  }
}
.lp-sim__intro p {
  margin: 0.75rem 0 0;
  color: var(--lp-text-2);
  line-height: 1.55;
  max-width: 34rem;
}
.lp-sim__perks {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.lp-sim__perks li {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--lp-brand);
  background: rgba(230, 0, 18, 0.08);
  border: 1px solid rgba(230, 0, 18, 0.16);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
}
.lp-sim__form {
  padding: 1.35rem 1.25rem 1.5rem;
  display: grid;
  gap: 0.95rem;
}
@media (min-width: 640px) {
  .lp-sim__form { padding: 1.6rem 1.5rem 1.75rem; }
}
.lp-sim__field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--lp-text-2);
  margin-bottom: 0.35rem;
}
.lp-sim__field label span { color: var(--lp-brand); }
.lp-sim__field input,
.lp-sim__field select,
.lp-sim__field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  font: inherit;
  color: var(--lp-text-1);
}
.lp-sim__field input:focus,
.lp-sim__field select:focus,
.lp-sim__field textarea:focus {
  outline: none;
  border-color: rgba(230, 0, 18, 0.45);
  box-shadow: 0 0 0 3px rgba(230, 0, 18, 0.12);
}
.lp-sim__phone {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
}
.lp-sim__phone span {
  display: flex;
  align-items: center;
  padding: 0 0.85rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--lp-text-2);
  background: rgba(15, 23, 42, 0.04);
  border-right: 1px solid rgba(15, 23, 42, 0.08);
}
.lp-sim__phone input {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.lp-sim__agree {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--lp-text-2);
  line-height: 1.45;
}
.lp-sim__agree input { margin-top: 0.2rem; }
.lp-sim__agree a { color: var(--lp-brand); font-weight: 600; }
.lp-sim__err,
.lp-sim__ok {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
}
.lp-sim__err { color: #b91c1c; }
.lp-sim__ok { color: #15803d; }
.lp-sim__submit { width: 100%; justify-content: center; }

.lp-models--commercial {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .lp-models--commercial { grid-template-columns: repeat(2, 1fr); }
}

.lp-commercial-block {
  margin-top: 2rem;
}
.lp-commercial-block:first-of-type {
  margin-top: 0.5rem;
}
.lp-commercial-block__head {
  margin-bottom: 1rem;
}
.lp-commercial-block__title {
  margin: 0;
  font-family: var(--lp-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--lp-text-1);
}
.lp-commercial-block__sub {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  color: var(--lp-text-2);
}

.lp-lead-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}
.lp-lead-row--after-video { margin-top: 1.1rem; }

/* ---- Model FAQ ---- */
.lp-faq__sub {
  margin: 0 0 1.5rem;
  color: var(--lp-text-2);
  max-width: 36rem;
  line-height: 1.5;
}
.lp-faq__list {
  display: grid;
  gap: 0.65rem;
  max-width: 820px;
}
.lp-faq__item {
  padding: 0;
  overflow: hidden;
}
.lp-faq__item:hover {
  transform: none;
}
.lp-faq__q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  font-family: var(--lp-display);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--lp-text-1);
  line-height: 1.35;
}
.lp-faq__q::-webkit-details-marker { display: none; }
.lp-faq__chev {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--lp-text-3);
  border-bottom: 2px solid var(--lp-text-3);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-top: -4px;
}
.lp-faq__item[open] .lp-faq__chev {
  transform: rotate(225deg);
  margin-top: 4px;
}
.lp-faq__a {
  padding: 0 1.15rem 1.15rem;
  color: var(--lp-text-2);
  font-size: 0.92rem;
  line-height: 1.6;
}

.lp-model-hero__actions {
  flex-wrap: wrap;
}
.lp-model-hero__actions .lp-btn {
  white-space: normal;
  text-align: center;
  line-height: 1.25;
}
@keyframes lp-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Promo login / register modal (LP) */
.lp-auth {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.lp-auth[hidden] { display: none !important; }
.lp-auth__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 24, 0.55);
  backdrop-filter: blur(2px);
}
.lp-auth__card {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  max-height: min(90vh, 640px);
  overflow: auto;
  padding: 1.35rem 1.35rem 1.25rem;
  border-radius: var(--lp-radius-card, 16px);
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  animation: lp-fade-up 0.35s cubic-bezier(0, 0, 0.2, 1) both;
}
.lp-auth__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  color: #333;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1;
}
.lp-auth__load {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(255, 255, 255, 0.65);
  border-radius: inherit;
}
.lp-auth__load::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  border: 3px solid rgba(230, 0, 18, 0.2);
  border-top-color: var(--lp-brand, #e60012);
  border-radius: 50%;
  animation: lp-auth-spin 0.7s linear infinite;
}
@keyframes lp-auth-spin { to { transform: rotate(360deg); } }
.lp-auth__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-brand, #e60012);
}
.lp-auth__title {
  margin: 0;
  font-family: var(--lp-display, inherit);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--lp-text-1, #111);
}
.lp-auth__sub {
  margin: 0.45rem 0 1.1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--lp-text-2, #555);
}
.lp-auth__label {
  display: block;
  margin: 0.75rem 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--lp-text-2, #555);
}
.lp-auth__phone {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--lp-border, #dde3ee);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.lp-auth__phone span {
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  background: rgba(0, 0, 0, 0.04);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--lp-text-2, #555);
}
.lp-auth__phone input,
.lp-auth__input {
  width: 100%;
  border: 0;
  padding: 0.7rem 0.85rem;
  font-size: 1rem;
  outline: none;
  background: transparent;
}
.lp-auth__input {
  border: 1px solid var(--lp-border, #dde3ee);
  border-radius: 10px;
  margin-bottom: 0.15rem;
}
.lp-auth__agree {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin: 0.85rem 0 0.35rem;
  font-size: 0.82rem;
  color: var(--lp-text-2);
  line-height: 1.45;
  cursor: pointer;
}
.lp-auth__agree input { margin-top: 0.2rem; flex: none; }
.lp-auth__agree a { color: var(--lp-brand); font-weight: 600; }
.lp-auth__err {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  color: #b91c1c;
}
.lp-auth__submit {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}
.lp-auth__disc {
  margin: 0.85rem 0 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--lp-text-3, #888);
}
body.lp-auth-open { overflow: hidden; }

/* Simulasi kredit popup */
.lp-sim-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.lp-sim-modal[hidden] { display: none !important; }
.lp-sim-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 24, 0.55);
  backdrop-filter: blur(4px);
}
.lp-sim-modal__card {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  max-height: min(92vh, 760px);
  overflow: auto;
  background: #fff;
  border-radius: 18px;
  padding: 1.35rem 1.35rem 1.5rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}
.lp-sim-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.05);
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1;
  color: #444;
}
.lp-sim-modal__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-brand, #e60012);
}
.lp-sim-modal__title {
  margin: 0 2rem 0.4rem 0;
  font-family: var(--font-sora, Sora, sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--lp-text-1, #111);
}
.lp-sim-modal__sub {
  margin: 0 0 1.1rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--lp-text-2, #555);
}
.lp-sim-modal__form {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.lp-sim-modal__form .lp-sim__submit { margin-top: 0.35rem; }
body.lp-sim-modal-open { overflow: hidden; }

@media (min-width: 640px) {
  .lp-wa-promo { right: 20px; bottom: 20px; }
  .lp-sales { right: 20px; bottom: 20px; }
  .lp-sales__pill { display: none; }
  .lp-sales__card { display: block; }
}
@media print {
  .lp-wa-promo,
  .lp-sales,
  .lp-auth,
  .lp-sim-modal { display: none !important; }
}

/* ---- Achievement / serah terima (home slider + gallery page) ---- */
.lp-achieve__lead {
  margin: 0.85rem auto 0;
  max-width: 36rem;
  color: var(--lp-text-2);
  font-size: 0.98rem;
  line-height: 1.5;
  text-align: center;
}
.lp-achieve__more {
  margin: 1.35rem 0 0;
  text-align: center;
}
.lp-achieve-slider {
  position: relative;
  margin-top: 1.5rem;
}
.lp-achieve-slider__viewport {
  overflow: hidden;
}
.lp-achieve-slider__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.15rem 0.1rem 0.35rem;
}
.lp-achieve-slider__track::-webkit-scrollbar { display: none; }
.lp-achieve-slider__slide {
  margin: 0;
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  scroll-snap-align: start;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
}
@media (min-width: 640px) {
  .lp-achieve-slider__slide {
    flex-basis: calc((100% - 1rem) / 2);
    width: calc((100% - 1rem) / 2);
  }
}
@media (min-width: 1024px) {
  .lp-achieve-slider__slide {
    flex-basis: calc((100% - 2rem) / 3);
    width: calc((100% - 2rem) / 3);
  }
}
.lp-achieve-slider__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #0b1220;
  overflow: hidden;
}
.lp-achieve-slider__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lp-achieve-slider__caption {
  margin: 0;
  padding: 0.85rem 1rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--lp-text-1);
}
.lp-achieve-slider__nav {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.lp-achieve-slider__nav:disabled {
  opacity: 0.35;
  cursor: default;
}
.lp-achieve-slider__nav[hidden] { display: none; }
.lp-achieve-slider__nav--prev { left: -0.35rem; }
.lp-achieve-slider__nav--next { right: -0.35rem; }
@media (min-width: 900px) {
  .lp-achieve-slider__nav--prev { left: -0.75rem; }
  .lp-achieve-slider__nav--next { right: -0.75rem; }
}

.lp-gallery-page {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-top: 0.5rem;
}
@media (min-width: 640px) {
  .lp-gallery-page { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .lp-gallery-page { grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
}
.lp-gallery-page__card {
  margin: 0;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.lp-gallery-page__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #0b1220;
  overflow: hidden;
}
.lp-gallery-page__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.lp-gallery-page__card:hover .lp-gallery-page__media img {
  transform: scale(1.04);
}
.lp-gallery-page__caption {
  margin: 0;
  padding: 0.85rem 1rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--lp-text-1);
}

/* Gallery lightbox */
body.lp-gallery-lb-open { overflow: hidden; }
.lp-gallery-lb {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 12, 20, 0.92);
  padding: 1.5rem;
}
.lp-gallery-lb__stage {
  max-width: min(960px, 100%);
  max-height: 85vh;
}
.lp-gallery-lb__img {
  display: block;
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  margin: 0 auto;
  border-radius: 8px;
  object-fit: contain;
}
.lp-gallery-lb__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
}
.lp-gallery-lb__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.lp-gallery-lb__nav--prev { left: 0.75rem; }
.lp-gallery-lb__nav--next { right: 0.75rem; }
.lp-gallery-lb__count {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

