:root {
  --bg: #f4f5f7;
  --panel: #ffffff;
  --panel-soft: #fafafa;
  --ink: #111317;
  --muted: #667085;
  --line: #e3e6eb;
  --dark: #08090b;
  --dark-2: #15171b;
  --accent: #ffffff;
  --danger: #b00020;
  --radius: 22px;
  --shadow-soft: 0 12px 35px rgba(16, 24, 40, .08);
  --shadow-strong: 0 22px 65px rgba(16, 24, 40, .18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  background: linear-gradient(180deg, #fbfbfc 0%, var(--bg) 52%, #eef0f3 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* =========================
   HEADER & NAVIGATION
========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 9, 11, .92);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.nav-wrap { width: 100%; }
.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
.nav-brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 900;
  letter-spacing: -.02em;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #111;
  font-size: 14px;
  box-shadow: 0 12px 28px rgba(255,255,255,.12);
}
.brand-text { white-space: nowrap; }
.nav-menu {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
}
.nav-menu a {
  color: rgba(255,255,255,.86);
  padding: 10px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  line-height: 1;
  transition: .22s ease;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: #111;
  background: #fff;
  transform: translateY(-1px);
}
.nav-contact {
  justify-self: end;
  color: #fff;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  font-size: 12px;
  line-height: 1.2;
  opacity: .92;
}
.nav-contact span { color: rgba(255,255,255,.58); text-transform: uppercase; letter-spacing: .12em; font-size: 10px; }
.nav-contact strong { font-size: 14px; }

/* =========================
   GENERAL LAYOUT
========================= */
.container {
  width: min(1180px, calc(100% - 32px));
  margin: auto;
  padding: 54px 0;
}
.section-title { margin-bottom: 30px; }
.section-title p {
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 2.2px;
  font-size: 12px;
  font-weight: 900;
}
.section-title h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -.04em;
  margin-top: 6px;
}
.center-title { text-align: center; max-width: 780px; margin-left: auto; margin-right: auto; }
.title-subtitle { display: block; margin: 12px auto 0; color: var(--muted); max-width: 640px; }
.empty-state { text-align: center; color: var(--muted); width: 100%; }
.center-action { display: flex; justify-content: center; margin-top: 30px; }

/* =========================
   HOMEPAGE HERO SLIDER
========================= */
.home-hero {
  width: min(1240px, calc(100% - 32px));
  margin: 28px auto 0;
  position: relative;
}
.hero-slider {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 34px;
  background: var(--dark);
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255,255,255,.08);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.015);
  transition: opacity .8s ease, transform 1.2s ease;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
.hero-slide-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.03);
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.84) 0%, rgba(0,0,0,.57) 43%, rgba(0,0,0,.18) 100%),
    linear-gradient(180deg, rgba(0,0,0,.14), rgba(0,0,0,.5));
}
.hero-slide-overlay.fallback {
  background: linear-gradient(135deg, #050505 0%, #1a1d22 55%, #08090b 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 520px;
  width: min(720px, 92%);
  padding: clamp(46px, 7vw, 84px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
.hero-kicker {
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.78);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 900;
}
.hero-content h1 {
  font-size: clamp(42px, 7vw, 76px);
  line-height: .98;
  letter-spacing: -.06em;
  margin-bottom: 18px;
  max-width: 760px;
}
.hero-copy {
  color: rgba(255,255,255,.78);
  font-size: clamp(16px, 2vw, 20px);
  max-width: 660px;
}
.hero-meta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.hero-meta-row span {
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.86);
  font-weight: 800;
  font-size: 13px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(0,0,0,.36);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 8;
  backdrop-filter: blur(10px);
  transition: .2s ease;
}
.hero-arrow:hover { background: #fff; color: #111; transform: translateY(-50%) scale(1.04); }
.hero-prev { left: 22px; }
.hero-next { right: 22px; }
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 8;
  display: flex;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(0,0,0,.34);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
}
.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.42);
  cursor: pointer;
  transition: .2s ease;
}
.hero-dot.is-active { width: 30px; background: #fff; }
.home-main { padding-top: 38px; }
.showroom-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 58px;
}
.benefit-card {
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(227,230,235,.9);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}
.benefit-card span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  font-weight: 900;
  margin-bottom: 16px;
}
.benefit-card h3 { font-size: 20px; margin-bottom: 8px; letter-spacing: -.02em; }
.benefit-card p { color: var(--muted); }

/* =========================
   CARDS, GRID, BUTTONS
========================= */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 330px));
  gap: 24px;
  justify-content: center;
  align-items: stretch;
}
.product-grid-centered { margin-left: auto; margin-right: auto; }
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.product-click-card { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.product-click-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(17,17,17,.18);
}
.card-image-link { display: block; overflow: hidden; background: #111; }
.card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  background: #222;
  transition: transform .35s ease;
}
.product-click-card:hover .card-image-link img { transform: scale(1.045); }
.card-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.category {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 900;
  margin-bottom: 8px;
}
.card-body h3 { font-size: 21px; line-height: 1.25; letter-spacing: -.025em; }
.card-body h3 a:hover { text-decoration: underline; text-underline-offset: 4px; }
.price {
  font-size: 19px;
  font-weight: 950;
  margin: 10px 0 14px;
}
.actions { display: flex; gap: 10px; flex-wrap: wrap; }
.card-actions { margin-top: auto; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--dark);
  color: #fff;
  border: 1px solid var(--dark);
  padding: 11px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(0,0,0,.14); }
.btn.secondary { background: #3b3f46; border-color: #3b3f46; }
.btn.danger { background: var(--danger); border-color: var(--danger); color: #fff; }
.btn.danger:hover { background: #830018; border-color: #830018; }
.btn.danger:disabled { background: #bbb; border-color: #bbb; color: #fff; cursor: not-allowed; opacity: .75; transform: none; box-shadow: none; }
.btn.light { background: #fff; color: #111; border-color: rgba(255,255,255,.75); }
.btn.small { padding: 8px 12px; font-size: 13px; }
.btn-large { padding: 14px 22px; }

/* =========================
   FORMS, TABLES, DASHBOARD
========================= */
.form-box,
.table-wrap,
.stat,
.gallery-box,
.detail-info,
.chat-box,
.contact-card,
.map-box {
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.form-box { padding: 28px; max-width: 650px; }
.form-row { margin-bottom: 16px; }
label { display: block; font-weight: 900; margin-bottom: 7px; }
input, textarea, select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #cfd4dc;
  border-radius: 14px;
  font-size: 15px;
  background: #fff;
  color: #111;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus, textarea:focus, select:focus {
  border-color: #111;
  box-shadow: 0 0 0 4px rgba(17,17,17,.08);
}
textarea { min-height: 120px; resize: vertical; }
.alert { padding: 13px 15px; border-radius: 14px; margin-bottom: 18px; font-weight: 700; }
.alert.error { background: #ffe4e8; color: #9b0019; }
.alert.success { background: #e6ffed; color: #075c1a; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 760px; }
th, td { padding: 14px; border-bottom: 1px solid #e5e8ee; text-align: left; vertical-align: top; }
th { background: #111; color: #fff; }
.dashboard-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat { padding: 24px; }
.stat h3 { font-size: 16px; color: var(--muted); }
.stat p { font-size: 36px; font-weight: 950; letter-spacing: -.04em; }
.footer {
  background: #08090b;
  color: rgba(255,255,255,.76);
  text-align: center;
  padding: 28px 20px;
  margin-top: 44px;
}
.meta { color: var(--muted); font-size: 14px; }
.specs { list-style: none; margin-top: 12px; }
.specs li { border-top: 1px solid #eef0f3; padding: 10px 0; display: flex; justify-content: space-between; gap: 12px; }
.table-thumb { width: 90px; height: 60px; object-fit: cover; border-radius: 10px; border: 1px solid #ddd; }

/* =========================
   PRODUCT DETAIL & CHAT
========================= */
.detail-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 30px; align-items: start; }
.gallery-box, .detail-info, .chat-box { padding: 22px; }
.detail-main-image { width: 100%; height: 430px; object-fit: cover; border-radius: 18px; background: #111; display: block; cursor: pointer; }
.thumbnail-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 14px; }
.thumb-btn { border: 2px solid transparent; padding: 0; border-radius: 12px; overflow: hidden; cursor: pointer; background: transparent; }
.thumb-btn img { width: 100%; height: 74px; object-fit: cover; display: block; }
.thumb-btn.active-thumb { border-color: #111; }
.detail-info h1 { font-size: clamp(34px, 5vw, 52px); line-height: 1.06; letter-spacing: -.055em; margin: 6px 0 12px; }
.detail-price { font-size: 26px; }
.detail-specs { margin-top: 18px; }
.chat-box { max-width: 820px; display: flex; flex-direction: column; gap: 12px; }
.chat-bubble { max-width: 76%; padding: 13px 15px; border-radius: 18px; border: 1px solid #ddd; }
.chat-bubble p { margin: 5px 0; }
.chat-bubble small { color: #666; font-size: 12px; }
.from-user { align-self: flex-end; background: #111; color: #fff; border-color: #111; }
.from-user small { color: #ddd; }
.from-admin { align-self: flex-start; background: #f3f3f3; color: #111; }
.slider-wrap { position: relative; }
.gallery-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border: none; border-radius: 50%; background: rgba(0,0,0,.72); color: #fff; font-size: 26px; cursor: pointer; z-index: 5; transition: .2s ease; }
.gallery-arrow:hover { background: #000; transform: translateY(-50%) scale(1.05); }
.gallery-prev { left: 14px; }
.gallery-next { right: 14px; }
.main-image-button { width: 100%; border: 0; background: transparent; padding: 0; display: block; cursor: zoom-in; }
.detail-layout-wide { grid-template-columns: minmax(0, 1.45fr) minmax(300px, .7fr); }
.product-detail-container { width: min(1240px, calc(100% - 32px)); }
.detail-layout-wide .detail-main-image { height: 560px; object-fit: cover; }
.gallery-note { margin-top: 12px; }

/* =========================
   ADMIN PRODUCT IMAGES
========================= */
.admin-edit-form-box { max-width: 920px; }
.admin-photo-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.admin-photo-item { position: relative; min-height: 112px; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: #fafafa; display: block; }
.admin-photo-item span { display: block; padding: 8px; font-weight: 400; }
.admin-photo-preview { display: block; width: 100%; border: 0; padding: 0; background: transparent; cursor: zoom-in; }
.admin-photo-preview img { width: 100%; height: 118px; object-fit: cover; display: block; transition: transform .2s ease, filter .2s ease; }
.admin-photo-item:hover .admin-photo-preview img { transform: scale(1.03); }
.admin-photo-toolbar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.admin-selected-count { font-size: 14px; color: #555; font-weight: 900; }
.selectable-photo-item { position: relative; }
.admin-photo-check-input { position: absolute; opacity: 0; pointer-events: none; }
.admin-photo-check-label { position: absolute; top: 8px; right: 8px; z-index: 4; width: 32px; height: 32px; border-radius: 50%; border: 2px solid rgba(255,255,255,.95); background: rgba(0,0,0,.42); cursor: pointer; box-shadow: 0 5px 12px rgba(0,0,0,.25); display: flex; align-items: center; justify-content: center; transition: .18s ease; }
.admin-photo-check-label::before { content: ''; width: 13px; height: 13px; border-radius: 50%; background: rgba(255,255,255,.78); display: block; }
.admin-photo-check-input:checked + .admin-photo-check-label { background: #111; border-color: #111; transform: scale(1.05); }
.admin-photo-check-input:checked + .admin-photo-check-label::before { content: '✓'; width: auto; height: auto; background: transparent; color: #fff; font-weight: 900; font-size: 19px; line-height: 1; }
.admin-photo-check-label:hover { background: rgba(0,0,0,.68); }
.admin-photo-check-input:checked ~ .admin-photo-preview img,
.selectable-photo-item:has(.admin-photo-check-input:checked) .admin-photo-preview img { filter: brightness(.72); }
.admin-photo-actions { display: flex; align-items: center; gap: 10px; margin-top: 12px; flex-wrap: wrap; }

/* =========================
   LIGHTBOX
========================= */
.image-lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.9); z-index: 9999; display: none; align-items: center; justify-content: center; padding: 70px 80px; }
.image-lightbox.is-open { display: flex; }
.lightbox-image { max-width: 92vw; max-height: 86vh; width: auto; height: auto; object-fit: contain; border-radius: 18px; background: #111; box-shadow: 0 18px 50px rgba(0,0,0,.45); }
.lightbox-close { position: fixed; top: 22px; right: 30px; width: 48px; height: 48px; border: 0; border-radius: 50%; background: rgba(255,255,255,.14); color: #fff; font-size: 38px; line-height: 42px; cursor: pointer; z-index: 10001; }
.lightbox-close:hover { background: rgba(255,255,255,.25); }
.lightbox-arrow { position: fixed; top: 50%; transform: translateY(-50%); width: 56px; height: 56px; border: 0; border-radius: 50%; background: rgba(255,255,255,.16); color: #fff; font-size: 34px; cursor: pointer; z-index: 10001; }
.lightbox-arrow:hover { background: rgba(255,255,255,.28); }
.lightbox-prev { left: 28px; }
.lightbox-next { right: 28px; }
.lightbox-counter { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%); color: #fff; background: rgba(0,0,0,.45); border: 1px solid rgba(255,255,255,.22); padding: 8px 14px; border-radius: 999px; font-weight: 800; }

/* =========================
   CONTACT WHATSAPP & LOKASI SHOWROOM
========================= */
.contact-layout { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin-bottom: 24px; }
.contact-card { padding: 28px; }
.contact-icon { width: 58px; height: 58px; border-radius: 18px; background: #111; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 950; letter-spacing: .5px; margin-bottom: 18px; }
.contact-label { text-transform: uppercase; letter-spacing: 1.8px; color: var(--muted); font-size: 12px; font-weight: 900; margin-bottom: 6px; }
.contact-card h3 { font-size: 25px; margin-bottom: 10px; line-height: 1.25; letter-spacing: -.03em; }
.contact-description { color: var(--muted); margin-bottom: 18px; max-width: 620px; }
.contact-btn { margin-top: 4px; }
.map-box { overflow: hidden; }
.map-box iframe { width: 100%; height: 420px; border: 0; display: block; }

/* =========================
   FLOATING CONTACT BUBBLE
========================= */
.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 10px 18px 10px 10px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  box-shadow: 0 16px 36px rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .22s ease, box-shadow .22s ease;
}
.floating-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 22px 50px rgba(0,0,0,.3); }
.floating-wa-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #07180c;
  font-weight: 950;
  font-size: 13px;
}
.floating-wa-text { font-weight: 950; white-space: nowrap; }

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1020px) {
  .nav { grid-template-columns: 1fr; justify-items: center; padding: 14px 0; gap: 12px; }
  .nav-brand, .nav-contact { justify-self: center; align-items: center; text-align: center; }
  .nav-contact { display: none; }
  .nav-menu { width: 100%; border-radius: 22px; }
  .showroom-benefits { grid-template-columns: 1fr; }
  .detail-layout, .detail-layout-wide { grid-template-columns: 1fr; }
  .detail-layout-wide .detail-main-image { height: 430px; }
  .admin-photo-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 800px) {
  .contact-layout { grid-template-columns: 1fr; }
  .map-box iframe { height: 330px; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .hero-slider, .hero-content { min-height: 460px; }
  .hero-content { padding: 44px 30px 72px; }
  .hero-arrow { width: 42px; height: 42px; font-size: 20px; }
  .hero-prev { left: 12px; }
  .hero-next { right: 12px; }
  .thumbnail-row { grid-template-columns: repeat(3, 1fr); }
  .chat-bubble { max-width: 95%; }
  .image-lightbox { padding: 56px 18px; }
  .lightbox-arrow { width: 44px; height: 44px; font-size: 26px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { top: 14px; right: 14px; width: 42px; height: 42px; font-size: 32px; }
}
@media (max-width: 620px) {
  .nav-menu { gap: 4px; padding: 7px; }
  .nav-menu a { padding: 9px 11px; font-size: 14px; }
  .brand-text { font-size: 15px; }
  .home-hero, .container, .product-detail-container { width: min(100% - 20px, 1180px); }
  .hero-slider { border-radius: 24px; }
  .hero-content h1 { font-size: 38px; }
  .hero-copy { font-size: 15px; }
  .hero-arrow { display: none; }
  .hero-meta-row span { font-size: 12px; }
  .grid { grid-template-columns: minmax(0, 1fr); }
  .card img { height: 220px; }
  .detail-layout-wide .detail-main-image { height: 320px; }
  .admin-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .floating-whatsapp { right: 14px; bottom: 14px; padding: 9px; }
  .floating-wa-text { display: none; }
}

/* =====================================================
   FINAL UI REVISION: poster hero, softer typography,
   after-product advantages, and WhatsApp popup bubble
===================================================== */
body {
  background: #f2f4f8;
  font-weight: 400;
}

h1, h2, h3, h4, .btn, .nav-menu a, .brand-text, .price, .category {
  font-weight: 700;
}

.header {
  background: rgba(5, 15, 29, .92);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 66px;
}

.nav-brand {
  font-weight: 700;
}

.brand-mark {
  font-weight: 700;
  background: rgba(255,255,255,.95);
}

.nav-menu {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.nav-menu a {
  padding: 10px 17px;
  font-size: 14px;
  letter-spacing: .01em;
}

.nav-contact strong {
  font-weight: 700;
}

.home-hero.poster-hero {
  width: 100%;
  margin: 0 auto;
}

.poster-slider {
  min-height: 560px;
  border-radius: 0;
  box-shadow: none;
  border: 0;
  background: #0d5a9d;
}

.poster-slide {
  overflow: hidden;
  background: linear-gradient(135deg, #0d5a9d 0%, #1677c7 55%, #f4f8ff 56%, #f4f8ff 100%);
}

.poster-slide.hero-red {
  background: linear-gradient(135deg, #73151b 0%, #b30f19 54%, #fff7f7 55%, #fff7f7 100%);
}

.poster-slide.hero-dark {
  background: linear-gradient(135deg, #06111f 0%, #1f334d 53%, #eef3fb 54%, #eef3fb 100%);
}

.poster-bg-city {
  position: absolute;
  inset: 0;
  opacity: .28;
  background:
    linear-gradient(90deg, transparent 0 4%, rgba(0,0,0,.28) 4% 4.25%, transparent 4.25% 100%),
    linear-gradient(0deg, transparent 0 63%, rgba(0,0,0,.24) 63% 63.4%, transparent 63.4% 100%);
  background-size: 120px 100%, 100% 110px;
  pointer-events: none;
}

.poster-bg-city::before {
  content: '';
  position: absolute;
  left: 8%;
  right: 7%;
  bottom: 84px;
  height: 230px;
  background:
    linear-gradient(to top, rgba(0,0,0,.28) 0 100%) 0 80px / 70px 150px no-repeat,
    linear-gradient(to top, rgba(0,0,0,.22) 0 100%) 95px 40px / 82px 190px no-repeat,
    linear-gradient(to top, rgba(0,0,0,.25) 0 100%) 220px 96px / 96px 134px no-repeat,
    linear-gradient(to top, rgba(0,0,0,.2) 0 100%) 360px 20px / 88px 210px no-repeat,
    linear-gradient(to top, rgba(0,0,0,.2) 0 100%) 520px 70px / 80px 160px no-repeat,
    linear-gradient(to top, rgba(0,0,0,.2) 0 100%) 680px 36px / 92px 194px no-repeat,
    linear-gradient(to top, rgba(0,0,0,.22) 0 100%) 850px 80px / 104px 150px no-repeat,
    linear-gradient(to top, rgba(0,0,0,.2) 0 100%) 1010px 30px / 86px 200px no-repeat;
}

.poster-wave {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -150px;
  height: 310px;
  background: #f4f8ff;
  border-radius: 52% 48% 0 0 / 44% 43% 0 0;
  box-shadow: 0 -20px 80px rgba(255,255,255,.35);
}

.hero-red .poster-wave { background: #fff7f7; }
.hero-dark .poster-wave { background: #eef3fb; }

.poster-content-wrap {
  position: relative;
  z-index: 2;
  width: min(1220px, calc(100% - 40px));
  min-height: 560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  align-items: center;
  gap: 26px;
  padding: 68px 0 92px;
}

.poster-text {
  max-width: 620px;
  color: #fff;
}

.poster-text .hero-kicker {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.88);
  font-weight: 600;
  letter-spacing: .16em;
}

.poster-text h1 {
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: 1.02;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
}

.poster-text .hero-copy {
  font-size: clamp(16px, 1.8vw, 21px);
  line-height: 1.55;
  max-width: 610px;
  color: rgba(255,255,255,.9);
  font-weight: 400;
}

.poster-text .hero-actions {
  margin-top: 30px;
  gap: 18px;
}

.hero-primary,
.hero-secondary {
  min-width: 170px;
  border-radius: 0;
  padding: 14px 22px;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-primary {
  background: #0d8df2;
  border-color: #0d8df2;
}

.hero-secondary {
  background: #e1131c;
  border-color: #e1131c;
  color: #fff;
}

.poster-visual {
  position: relative;
  min-height: 420px;
}

.poster-search-box {
  position: absolute;
  right: 20px;
  top: 26px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.poster-search-box span {
  width: 190px;
  height: 40px;
  border-radius: 9px;
  background: #ece9f2;
  box-shadow: inset 0 0 0 2px rgba(0,0,0,.06), 0 8px 20px rgba(0,0,0,.12);
}

.poster-search-box b {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #2cc1e1;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 500;
}

.poster-person {
  position: absolute;
  right: 92px;
  top: 82px;
  width: 300px;
  height: 280px;
}

.person-head {
  position: absolute;
  left: 112px;
  top: 0;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #f1c29e;
  box-shadow: inset 12px 0 0 rgba(0,0,0,.14);
}

.person-head::before {
  content: '';
  position: absolute;
  left: 12px;
  top: -12px;
  width: 62px;
  height: 34px;
  border-radius: 34px 34px 8px 8px;
  background: #222a32;
}

.person-body {
  position: absolute;
  left: 52px;
  top: 74px;
  width: 210px;
  height: 150px;
  border-radius: 72px 72px 58px 58px;
  background: linear-gradient(145deg, #ff8a00, #f25d14);
  box-shadow: 42px 56px 0 #2446d4, 62px 70px 0 #1f36af;
}

.person-body::before,
.person-body::after {
  content: '';
  position: absolute;
  bottom: -65px;
  width: 96px;
  height: 28px;
  border-radius: 18px;
  background: #222a32;
}

.person-body::before { left: 8px; transform: rotate(-10deg); }
.person-body::after { right: 3px; transform: rotate(12deg); }

.person-tablet {
  position: absolute;
  left: 22px;
  top: 98px;
  width: 72px;
  height: 94px;
  border-radius: 11px;
  background: linear-gradient(160deg, #c9d2df, #8795a8);
  transform: rotate(-10deg);
  box-shadow: 0 12px 22px rgba(0,0,0,.18);
}

.poster-badge {
  position: absolute;
  left: 24px;
  bottom: 12px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.93);
  color: #11385f;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  font-weight: 600;
}

.hero-arrow {
  background: rgba(10,16,28,.5);
  border-color: rgba(255,255,255,.22);
}

.hero-dots {
  background: rgba(10,16,28,.28);
}

.home-main {
  padding-top: 62px;
}

.latest-units {
  margin-bottom: 72px;
}

.section-title h2,
.why-title h2 {
  font-weight: 700;
  letter-spacing: -.025em;
}

.section-title p,
.why-title p {
  font-weight: 600;
}

.card {
  border-radius: 24px;
}

.card-body h3 {
  font-weight: 650;
}

.price {
  font-weight: 700;
}

.btn {
  font-weight: 650;
}

/* Why section follows the new units section */
.why-section {
  position: relative;
  margin-top: 32px;
  padding: 72px 0 84px;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(180deg, #111317 0%, #111317 46%, #f7f8fb 46%, #f7f8fb 100%);
  box-shadow: var(--shadow-soft);
}

.why-section::after {
  content: '';
  position: absolute;
  left: -8%;
  right: -8%;
  top: 245px;
  height: 180px;
  background: #f7f8fb;
  border-radius: 50% 50% 0 0 / 42% 42% 0 0;
  z-index: 0;
}

.why-title {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  margin-bottom: 46px;
  text-transform: uppercase;
}

.why-title p {
  letter-spacing: .18em;
  color: rgba(255,255,255,.82);
  font-size: 12px;
  margin-bottom: 8px;
}

.why-title h2 {
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: .06em;
}

.why-grid {
  position: relative;
  z-index: 1;
  width: min(1060px, calc(100% - 34px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.why-card {
  min-height: 310px;
  background: #fff;
  box-shadow: 0 20px 42px rgba(15, 23, 42, .14);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.why-media {
  height: 118px;
  position: relative;
  overflow: hidden;
  background: #d9e1ec;
}

.why-media span {
  position: absolute;
  inset: 0;
  opacity: .65;
}

.media-quality { background: linear-gradient(135deg, #18212c, #9aa8b8); }
.media-quality span { background: radial-gradient(circle at 30% 42%, #fff 0 7%, transparent 8%), radial-gradient(circle at 58% 53%, #fff 0 7%, transparent 8%), linear-gradient(90deg, transparent 0 48%, rgba(255,255,255,.45) 49% 51%, transparent 52%); }
.media-document { background: linear-gradient(135deg, #131313, #e7e7e7); }
.media-document span { background: repeating-linear-gradient(100deg, rgba(255,255,255,.18) 0 12px, transparent 12px 24px); }
.media-warranty { background: linear-gradient(135deg, #f0d700, #f7b500); }
.media-warranty span { background: linear-gradient(0deg, transparent 42%, rgba(183,0,16,.28) 43% 59%, transparent 60%), radial-gradient(circle at 58% 40%, rgba(0,0,0,.28) 0 22%, transparent 23%); }
.media-service { background: linear-gradient(135deg, #687a49, #e9edf0); }
.media-service span { background: radial-gradient(circle at 68% 55%, rgba(255,255,255,.9) 0 16%, transparent 17%), linear-gradient(90deg, transparent 0 70%, rgba(0,0,0,.15) 71% 73%, transparent 74%); }
.media-support { background: linear-gradient(135deg, #b7c5d2, #f3f4f6); }
.media-support span { background: radial-gradient(circle at 58% 42%, rgba(10,20,30,.7) 0 18%, transparent 19%), linear-gradient(90deg, transparent 0 45%, rgba(255,255,255,.6) 46% 48%, transparent 49%); }

.why-body {
  position: relative;
  flex: 1;
  text-align: center;
  padding: 45px 17px 24px;
  background: linear-gradient(180deg, #d80008 0%, #a80f18 100%);
  color: #fff;
}

.why-icon {
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: #111;
  box-shadow: 0 12px 24px rgba(0,0,0,.18);
  font-size: 30px;
  font-weight: 650;
}

.why-body h3 {
  min-height: 42px;
  display: grid;
  place-items: center;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 13px;
}

.why-body p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,.92);
  font-weight: 450;
}

/* Floating WhatsApp popup */
.floating-contact {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1300;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.floating-contact-button {
  border: 0;
  min-height: 54px;
  padding: 8px 18px 8px 8px;
  border-radius: 999px;
  background: #2d73ba;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(22, 51, 92, .25);
  transition: .2s ease;
}

.floating-contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 23px 50px rgba(22, 51, 92, .33);
}

.floating-contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1bbf6a;
  color: #fff;
  font-size: 20px;
}

.floating-contact-text {
  font-weight: 600;
  white-space: nowrap;
}

.floating-contact-panel {
  display: none;
  width: 382px;
  max-width: calc(100vw - 32px);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 70px rgba(5, 15, 35, .28);
  border: 1px solid rgba(15, 23, 42, .08);
}

.floating-contact.is-open .floating-contact-panel {
  display: block;
  animation: contactPop .2s ease both;
}

@keyframes contactPop {
  from { opacity: 0; transform: translateY(10px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.floating-contact-close {
  position: absolute;
  right: 4px;
  top: -46px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #2d73ba;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(22,51,92,.22);
}

.floating-contact-header {
  padding: 23px 28px;
  background: #2d73ba;
  color: #fff;
}

.floating-contact-header p {
  font-size: 17px;
  line-height: 1.55;
}

.floating-contact-body {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px 18px;
}

.support-avatar {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f6f7f9;
  border: 2px solid #e5e8ee;
  color: #111;
  font-weight: 700;
}

.support-avatar span {
  position: absolute;
  right: 3px;
  bottom: 7px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid #fff;
}

.support-info {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.support-info small {
  color: #7b8492;
  font-size: 14px;
}

.support-info strong {
  color: #333;
  font-size: 17px;
  font-weight: 700;
}

.support-info span {
  color: #8a8f98;
  font-size: 14px;
}

.floating-contact-action {
  display: block;
  margin: 0 28px 26px;
  padding: 12px 16px;
  border-radius: 999px;
  text-align: center;
  background: #25d366;
  color: #08210f;
  font-weight: 650;
}

.floating-whatsapp {
  display: none !important;
}

@media (max-width: 1100px) {
  .poster-content-wrap {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 62px 0 92px;
  }
  .poster-visual {
    min-height: 300px;
  }
  .poster-person {
    right: 38px;
    top: 28px;
    transform: scale(.86);
    transform-origin: top right;
  }
  .poster-search-box {
    right: 38px;
    top: 6px;
  }
  .why-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }
}

@media (max-width: 760px) {
  .poster-slider {
    min-height: 570px;
  }
  .poster-content-wrap {
    width: min(100% - 28px, 1180px);
    padding: 42px 0 84px;
  }
  .poster-text h1 {
    font-size: 38px;
    letter-spacing: .04em;
  }
  .poster-text .hero-copy {
    font-size: 15px;
  }
  .poster-visual {
    min-height: 230px;
  }
  .poster-person {
    right: -12px;
    top: 18px;
    transform: scale(.68);
  }
  .poster-search-box {
    right: 10px;
    transform: scale(.82);
    transform-origin: right top;
  }
  .poster-badge {
    left: 0;
    bottom: 0;
    font-size: 14px;
  }
  .why-section {
    border-radius: 24px;
    padding: 54px 0 62px;
  }
  .why-section::after {
    top: 210px;
  }
  .why-grid {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 420px);
  }
  .floating-contact {
    right: 14px;
    bottom: 14px;
  }
  .floating-contact-text {
    display: none;
  }
  .floating-contact-button {
    padding: 8px;
  }
}
.floating-contact-panel { position: relative; }

/* =========================================================
   FINAL BLACK & WHITE THEME OVERRIDE
   ========================================================= */
:root {
  --bg: #f3f3f3;
  --panel: #ffffff;
  --panel-soft: #f8f8f8;
  --ink: #0b0b0b;
  --muted: #5f5f5f;
  --line: #dddddd;
  --dark: #000000;
  --dark-2: #171717;
  --accent: #ffffff;
  --danger: #111111;
  --radius: 22px;
  --shadow-soft: 0 16px 42px rgba(0, 0, 0, .08);
  --shadow-strong: 0 26px 70px rgba(0, 0, 0, .18);
}

html,
body {
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 45%, #eeeeee 100%) !important;
  color: #0b0b0b !important;
}

body,
input,
select,
textarea,
button {
  font-weight: 400;
}

.header {
  background: rgba(0, 0, 0, .92) !important;
  border-bottom: 1px solid rgba(255,255,255,.14) !important;
  box-shadow: 0 12px 34px rgba(0,0,0,.18) !important;
}

.nav-brand,
.nav-contact,
.nav-menu a {
  color: #ffffff !important;
}

.brand-mark {
  background: #080a10 !important;
  color: #000000 !important;
  box-shadow: none !important;
}

.nav-menu {
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: #ffffff !important;
  color: #000000 !important;
}

.nav-contact span,
.nav-contact strong {
  color: rgba(255,255,255,.86) !important;
}

.section-title p,
.why-title p,
.contact-label,
.category,
.meta,
.title-subtitle,
.contact-description,
.card-body p,
.support-info small,
.support-info span {
  color: #646464 !important;
}

.section-title h2,
.why-title h2,
.card-body h3,
.contact-card h3,
.price,
.product-detail h1,
h1,
h2,
h3,
h4 {
  color: #0b0b0b;
  font-weight: 600 !important;
}

.btn,
button.btn,
input[type="submit"].btn,
.hero-primary,
.contact-btn,
.floating-contact-option:first-child {
  background: #000000 !important;
  color: #ffffff !important;
  border: 1px solid #000000 !important;
  box-shadow: none !important;
}

.btn:hover,
.hero-primary:hover,
.contact-btn:hover,
.floating-contact-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0,0,0,.16) !important;
}

.btn.secondary,
.btn.light,
.hero-secondary,
.contact-btn.secondary {
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #cfcfcf !important;
}

.card,
.form-box,
.contact-card,
.table-wrap,
.chat-box,
.product-detail,
.map-box,
.dashboard-card,
.profile-box {
  background: #ffffff !important;
  border: 1px solid #dddddd !important;
  box-shadow: 0 16px 44px rgba(0,0,0,.07) !important;
}

input,
select,
textarea {
  background: #ffffff !important;
  color: #111111 !important;
  border: 1px solid #cfcfcf !important;
  box-shadow: none !important;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #000000 !important;
  outline: 2px solid rgba(0,0,0,.10) !important;
}

/* Poster remains promotional, not product-card oriented */
.home-hero,
.poster-slider,
.poster-slide,
.hero-slide,
.hero-blue,
.hero-red,
.hero-dark {
  background: #050505 !important;
  color: #ffffff !important;
}

.poster-slide::before,
.poster-slide::after {
  background: transparent !important;
}

.poster-bg-city {
  filter: grayscale(1) contrast(.9) !important;
  opacity: .28 !important;
}

.poster-wave,
.hero-red .poster-wave,
.hero-dark .poster-wave {
  background: #ffffff !important;
}

.poster-text h1,
.poster-text .hero-copy,
.hero-kicker {
  color: #ffffff !important;
}

.poster-search-box,
.poster-badge {
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #e4e4e4 !important;
}

.poster-search-box b {
  background: #000000 !important;
  color: #ffffff !important;
}

.person-head,
.person-body,
.person-tablet {
  filter: grayscale(1) !important;
}

.person-body {
  background: linear-gradient(145deg, #2a2a2a, #0b0b0b) !important;
  box-shadow: 42px 56px 0 #3b3b3b, 62px 70px 0 #1d1d1d !important;
}

.hero-arrow {
  background: rgba(255,255,255,.9) !important;
  color: #000000 !important;
  border: 1px solid rgba(0,0,0,.14) !important;
}

.hero-dots {
  background: rgba(0,0,0,.42) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
}

.hero-dot {
  background: rgba(255,255,255,.46) !important;
}

.hero-dot.is-active {
  background: #ffffff !important;
}

/* Product and latest unit area */
.product-grid-centered,
.grid {
  justify-content: center;
}

.card img,
.product-main-image,
.product-gallery img {
  filter: grayscale(.05);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0,0,0,.13) !important;
}

/* Black-white advantage section */
.why-section {
  background: linear-gradient(180deg, #000000 0%, #000000 46%, #ffffff 46%, #ffffff 100%) !important;
  border: 1px solid #dfdfdf !important;
}

.why-section::after {
  background: #ffffff !important;
}

.why-title,
.why-title h2,
.why-title p {
  color: #ffffff !important;
}

.why-card {
  background: #ffffff !important;
  border: 1px solid #d9d9d9 !important;
  box-shadow: 0 18px 40px rgba(0,0,0,.12) !important;
}

.why-media,
.media-quality,
.media-document,
.media-warranty,
.media-service,
.media-support {
  background: linear-gradient(135deg, #111111, #f0f0f0) !important;
  filter: grayscale(1) !important;
}

.why-body {
  background: #000000 !important;
  color: #ffffff !important;
}

.why-body h3,
.why-body p {
  color: #ffffff !important;
}

.why-icon {
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #d5d5d5 !important;
  box-shadow: 0 12px 24px rgba(0,0,0,.16) !important;
}

/* Contact page choices */
.contact-layout-extended {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.contact-choice-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
}

.contact-choice-card .contact-description {
  flex: 1;
}

.contact-icon {
  background: #000000 !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

.map-box iframe {
  filter: grayscale(1) contrast(.95) !important;
}

/* Floating contact bubble */
.floating-contact-button {
  background: #000000 !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  box-shadow: 0 18px 44px rgba(0,0,0,.28) !important;
}

.floating-contact-icon {
  background: #ffffff !important;
  color: #000000 !important;
}

.floating-contact-panel {
  background: #ffffff !important;
  border: 1px solid #d7d7d7 !important;
  box-shadow: 0 28px 78px rgba(0,0,0,.26) !important;
  color: #111111 !important;
}

.floating-contact-close {
  background: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 12px 28px rgba(0,0,0,.22) !important;
}

.floating-contact-header {
  background: #000000 !important;
  color: #ffffff !important;
}

.floating-contact-header p {
  color: #ffffff !important;
  font-weight: 400 !important;
}

.support-avatar {
  background: #ffffff !important;
  border: 1px solid #cfcfcf !important;
  color: #000000 !important;
}

.support-avatar span {
  background: #000000 !important;
  border-color: #ffffff !important;
}

.floating-contact-body-stack {
  padding-bottom: 10px !important;
}

.floating-contact-options {
  display: grid;
  gap: 10px;
  padding: 0 22px 24px;
}

.floating-contact-option {
  display: block;
  padding: 13px 14px;
  border-radius: 16px;
  border: 1px solid #d7d7d7;
  background: #ffffff;
  color: #000000;
  transition: .2s ease;
}

.floating-contact-option:first-child {
  border-color: #000000 !important;
}

.floating-contact-option strong,
.floating-contact-option span {
  display: block;
}

.floating-contact-option strong {
  font-size: 14px;
  font-weight: 650;
  margin-bottom: 3px;
}

.floating-contact-option span {
  font-size: 12px;
  color: #666666;
  line-height: 1.45;
}

.floating-contact-option:first-child span {
  color: rgba(255,255,255,.76) !important;
}

/* Chat bubbles and alerts in monochrome */
.chat-bubble.from-user {
  background: #000000 !important;
  color: #ffffff !important;
  border-color: #000000 !important;
}

.chat-bubble.from-user small {
  color: rgba(255,255,255,.72) !important;
}

.chat-bubble.from-admin {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #cfcfcf !important;
}

.alert.success,
.alert.error {
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #000000 !important;
}

.footer {
  background: #000000 !important;
  color: #ffffff !important;
  border-top: 1px solid rgba(255,255,255,.14) !important;
}

@media (max-width: 1100px) {
  .contact-layout-extended {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .contact-layout-extended {
    grid-template-columns: 1fr;
  }

  .floating-contact-panel {
    width: min(370px, calc(100vw - 28px)) !important;
  }
}

/* =========================
   ROLE-BASED LIVE CHAT UPDATE
========================= */
.contact-layout-role {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.why-page .why-section {
  margin-top: 34px;
}

@media (max-width: 980px) {
  .contact-layout-role {
    grid-template-columns: 1fr;
  }
}

/* =========================
   HOME REVISION: 6 UNITS, WHY SECTION, MAP, COMPLETE FOOTER
========================= */
.latest-units .grid {
  grid-template-columns: repeat(3, minmax(280px, 330px));
  justify-content: center;
}

.home-why-section {
  margin-top: 32px !important;
  margin-bottom: 76px;
}

.home-location-section {
  margin: 18px 0 82px;
}

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

.location-info-card {
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 16px 44px rgba(0,0,0,.07);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #111111;
  background: #000000;
  color: #ffffff;
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.location-info-card h3 {
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.15;
  margin-bottom: 14px;
}

.location-info-card p {
  color: #595959;
  line-height: 1.7;
  margin-bottom: 22px;
}

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

.home-map-box {
  min-height: 390px;
  overflow: hidden;
}

.home-map-box iframe {
  min-height: 390px;
}

.site-footer.footer {
  background: #050707 !important;
  color: #ffffff !important;
  text-align: left !important;
  padding: 0 !important;
  margin-top: 70px !important;
  border-top: 1px solid rgba(255,255,255,.12) !important;
}

.footer-grid {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 52px 0 40px;
  display: grid;
  grid-template-columns: 1.2fr .85fr 1fr;
  gap: 34px;
  align-items: start;
}

.footer-column h3 {
  color: #ffffff !important;
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 650 !important;
}

.footer-column p,
.footer-links a,
.footer-link,
.footer-bottom p {
  color: rgba(255,255,255,.76) !important;
  line-height: 1.55;
}

.footer-subtitle {
  margin: -6px 0 18px;
  max-width: 380px;
  font-size: 14px;
}

.footer-address-row {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  align-items: start;
  margin: 18px 0 18px;
}

.footer-map-icon {
  width: 78px;
  height: 78px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #ffffff;
  color: #000000;
  font-size: 42px;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.12);
}

.footer-address-row p {
  font-size: 15px;
  color: #ffffff !important;
  margin: 0;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-weight: 650;
  transition: .2s ease;
}

.footer-link.accent {
  color: #ffffff !important;
  border-bottom: 1px solid rgba(255,255,255,.55);
  padding-bottom: 4px;
}

.footer-link:hover,
.footer-links a:hover {
  color: #ffffff !important;
  transform: translateX(3px);
}

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

.two-col-links {
  grid-template-columns: repeat(2, minmax(130px, 1fr));
}

.footer-links a {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
}

.footer-links a::before {
  content: '›';
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(255,255,255,.58);
  font-size: 20px;
  line-height: 1;
}

.footer-instagram-card {
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  padding: 18px;
  background: rgba(255,255,255,.04);
}

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

.ig-frame span {
  display: block;
  aspect-ratio: 1;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,255,255,.18)),
    radial-gradient(circle at 35% 35%, #ffffff 0 12%, transparent 13%);
  opacity: .82;
}

.footer-logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 4px 0 22px;
  color: #ffffff;
}

.logo-car {
  position: relative;
  width: 86px;
  height: 34px;
  display: inline-block;
}

.logo-car::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7px;
  height: 16px;
  border-radius: 18px 28px 8px 8px;
  background: linear-gradient(90deg, #ffffff 0 55%, #777777 55% 100%);
}

.logo-car::after {
  content: '';
  position: absolute;
  left: 11px;
  bottom: 1px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #000000;
  box-shadow: 48px 0 0 #000000;
  border: 2px solid #ffffff;
}

.footer-logo-mark strong {
  color: #ffffff;
  font-size: 20px;
  letter-spacing: .04em;
}

.footer-contact-box p {
  margin-bottom: 8px;
}

.footer-contact-box p strong {
  color: #ffffff;
}

.footer-contact-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.footer-contact-actions a {
  display: inline-flex;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255,255,255,.06);
  font-size: 13px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 16px 0 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  margin: 0;
}

@media (max-width: 1180px) {
  .latest-units .grid {
    grid-template-columns: repeat(2, minmax(280px, 330px));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-location-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .latest-units .grid {
    grid-template-columns: minmax(260px, 1fr);
  }

  .home-location-section {
    margin-bottom: 48px;
  }

  .location-info-card {
    padding: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 46px 0 38px;
  }

  .footer-address-row {
    grid-template-columns: 62px 1fr;
  }

  .footer-map-icon {
    width: 62px;
    height: 62px;
    font-size: 34px;
  }

  .two-col-links {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0 32px;
  }
}


/* =====================================================
   UPDATE REQUEST: BIGD HOBBIES, contact bubble close,
   product admin action, and credit simulator
===================================================== */
.nav-brand[aria-label], .brand-text { letter-spacing: .01em; }
.floating-contact.is-hidden { display: none !important; }
.floating-contact-button-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.floating-contact-mini-close {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 21px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0,0,0,.22);
}
.floating-contact-panel { position: relative; }
.floating-contact-close {
  position: absolute !important;
  right: 12px !important;
  top: 12px !important;
  width: 36px !important;
  height: 36px !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: rgba(0,0,0,.18) !important;
  color: #fff !important;
  font-size: 26px !important;
  line-height: 1 !important;
  cursor: pointer !important;
  z-index: 5 !important;
}
.product-admin-action { margin-top: 16px; }
.selected-product-contact {
  max-width: 860px;
  margin: -12px auto 28px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,.1);
  background: #fff;
  box-shadow: 0 18px 45px rgba(16,24,40,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.selected-product-contact p {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  font-weight: 900;
  color: #667085;
}
.selected-product-contact h3 { margin: 3px 0; }
.selected-product-contact span { color: #667085; }
.credit-simulator {
  margin-top: 26px;
  padding: 22px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.1);
  box-shadow: 0 18px 45px rgba(16,24,40,.08);
}
.credit-head p {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  font-weight: 900;
  color: #667085;
}
.credit-head h2 {
  font-size: clamp(23px, 3vw, 32px);
  line-height: 1.1;
  margin: 4px 0 8px;
}
.credit-head span {
  display: block;
  color: #667085;
  font-size: 14px;
  line-height: 1.55;
}
.credit-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.credit-form-grid label {
  display: grid;
  gap: 7px;
  font-weight: 800;
  color: #111317;
}
.credit-form-grid input,
.credit-form-grid select {
  width: 100%;
  border: 1px solid #d8dce2;
  border-radius: 14px;
  padding: 12px 13px;
  font: inherit;
  background: #fff;
  color: #111317;
}
.credit-form-grid input[readonly] { background: #f4f5f7; color: #667085; }
.credit-result {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}
.credit-result div {
  padding: 16px;
  border-radius: 18px;
  background: #08090b;
  color: #fff;
}
.credit-result small {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  margin-bottom: 6px;
}
.credit-result strong {
  display: block;
  font-size: clamp(18px, 2.5vw, 25px);
  line-height: 1.15;
}
@media (max-width: 760px) {
  .selected-product-contact { align-items: stretch; flex-direction: column; }
  .credit-form-grid, .credit-result { grid-template-columns: 1fr; }
  .floating-contact { right: 16px; bottom: 16px; }
}


/* =====================================================
   MOBILE UX UPDATE - HP RESPONSIVE POLISH
   Membuat tampilan lebih nyaman di layar kecil tanpa mengubah fitur utama.
===================================================== */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: rgba(0,0,0,.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  color: #ffffff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: #ffffff;
  transition: transform .2s ease, opacity .2s ease;
}

.nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 760px) {
  body { padding-bottom: env(safe-area-inset-bottom); }

  .header {
    position: sticky;
    top: 0;
  }

  .nav {
    width: min(100% - 24px, 1180px) !important;
    min-height: 62px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 8px 0 !important;
  }

  .nav-brand {
    justify-self: start !important;
    min-width: 0;
    gap: 8px !important;
  }

  .brand-mark {
    width: 38px !important;
    height: 38px !important;
    border-radius: 12px !important;
    flex: 0 0 auto;
  }

  .brand-text {
    display: block;
    max-width: calc(100vw - 122px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 15px !important;
    letter-spacing: .02em !important;
  }

  .nav-toggle {
    display: inline-flex !important;
    justify-self: end !important;
  }

  .nav-menu {
    grid-column: 1 / -1;
    width: 100% !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;
    padding: 10px !important;
    border-radius: 20px !important;
    background: rgba(255,255,255,.08) !important;
    margin: 2px 0 8px !important;
  }

  .nav.nav-open .nav-menu {
    display: flex !important;
    animation: mobileMenuIn .18s ease both;
  }

  @keyframes mobileMenuIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .nav-menu a {
    width: 100% !important;
    justify-content: flex-start !important;
    padding: 13px 14px !important;
    border-radius: 14px !important;
    font-size: 15px !important;
    background: rgba(255,255,255,.06);
  }

  .nav-menu a.active {
    justify-content: center !important;
  }

  .nav-contact {
    display: none !important;
  }

  .container,
  .home-hero,
  .product-detail-container {
    width: min(100% - 24px, 1180px) !important;
  }

  .container {
    padding: 34px 0 !important;
  }

  .section-title {
    margin-bottom: 22px !important;
  }

  .section-title h2,
  .why-title h2 {
    font-size: clamp(26px, 9vw, 34px) !important;
    line-height: 1.12 !important;
    letter-spacing: -.035em !important;
  }

  .title-subtitle,
  .section-title span,
  .section-title p,
  .contact-description,
  .meta {
    font-size: 13px !important;
    line-height: 1.55 !important;
  }

  .poster-slider {
    min-height: auto !important;
    border-radius: 0 0 28px 28px !important;
  }

  .poster-content-wrap {
    width: min(100% - 28px, 1180px) !important;
    min-height: auto !important;
    display: block !important;
    padding: 36px 0 56px !important;
  }

  .poster-text {
    max-width: 100% !important;
    text-align: left !important;
  }

  .poster-text .hero-kicker {
    font-size: 10px !important;
    margin-bottom: 12px !important;
    padding: 7px 10px !important;
  }

  .poster-text h1 {
    font-size: clamp(34px, 11vw, 46px) !important;
    line-height: 1.02 !important;
    letter-spacing: .01em !important;
    margin-bottom: 12px !important;
  }

  .poster-text .hero-copy {
    max-width: 100% !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
  }

  .poster-text .hero-actions,
  .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-top: 22px !important;
  }

  .hero-actions .btn,
  .poster-text .btn {
    width: 100% !important;
    min-height: 46px !important;
  }

  .poster-visual {
    display: none !important;
  }

  .hero-dots {
    bottom: 14px !important;
  }

  .latest-units .grid,
  .product-grid-centered,
  .grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px !important;
    width: 100% !important;
  }

  .card {
    border-radius: 22px !important;
  }

  .card img {
    height: 210px !important;
  }

  .card-body {
    padding: 18px !important;
  }

  .card-body h3 {
    font-size: 19px !important;
  }

  .price {
    font-size: 18px !important;
  }

  .actions,
  .card-actions,
  .location-actions,
  .footer-contact-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 10px !important;
  }

  .btn,
  .footer-contact-actions a {
    width: 100% !important;
    min-height: 44px !important;
    padding: 12px 14px !important;
    text-align: center !important;
  }

  .detail-layout,
  .detail-layout-wide {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .gallery-box,
  .detail-info,
  .form-box,
  .contact-card,
  .map-box,
  .chat-box,
  .credit-simulator {
    border-radius: 20px !important;
    padding: 16px !important;
  }

  .detail-main-image,
  .detail-layout-wide .detail-main-image {
    height: min(68vw, 300px) !important;
    border-radius: 16px !important;
  }

  .gallery-arrow {
    width: 38px !important;
    height: 38px !important;
    font-size: 22px !important;
  }

  .gallery-prev { left: 8px !important; }
  .gallery-next { right: 8px !important; }

  .thumbnail-row {
    display: flex !important;
    gap: 8px !important;
    overflow-x: auto !important;
    grid-template-columns: none !important;
    padding: 2px 2px 8px !important;
    margin-top: 10px !important;
    scroll-snap-type: x mandatory;
  }

  .thumb-btn {
    flex: 0 0 82px !important;
    scroll-snap-align: start;
  }

  .thumb-btn img {
    height: 58px !important;
  }

  .detail-info h1 {
    font-size: clamp(28px, 9vw, 38px) !important;
    line-height: 1.12 !important;
    letter-spacing: -.03em !important;
  }

  .detail-price {
    font-size: 22px !important;
  }

  .specs li,
  .detail-specs li {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 3px !important;
  }

  .credit-form-grid,
  .credit-result {
    grid-template-columns: 1fr !important;
  }

  .credit-result div {
    padding: 14px !important;
  }

  .contact-layout,
  .contact-layout-role,
  .contact-layout-extended,
  .home-location-layout,
  .showroom-benefits,
  .dashboard-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .contact-choice-card {
    min-height: auto !important;
  }

  .selected-product-contact {
    margin: -4px auto 20px !important;
    padding: 16px !important;
    border-radius: 20px !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .location-info-card {
    padding: 20px !important;
    border-radius: 22px !important;
  }

  .map-box iframe,
  .home-map-box iframe {
    height: 280px !important;
    min-height: 280px !important;
  }

  .why-section {
    width: min(100% - 24px, 1180px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 42px 0 48px !important;
    border-radius: 24px !important;
  }

  .why-grid {
    width: min(100% - 24px, 440px) !important;
    gap: 16px !important;
  }

  .why-card,
  .why-media,
  .why-body {
    border-radius: 20px !important;
  }

  .why-media {
    height: 140px !important;
  }

  .why-body {
    padding: 18px !important;
  }

  .table-wrap {
    border-radius: 18px !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  table {
    min-width: 680px !important;
  }

  th,
  td {
    padding: 11px !important;
    font-size: 13px !important;
  }

  .admin-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .admin-photo-preview img,
  .admin-photo-item img {
    height: 96px !important;
  }

  .chat-bubble {
    max-width: 92% !important;
    padding: 11px 13px !important;
  }

  .floating-contact {
    right: 12px !important;
    bottom: calc(12px + env(safe-area-inset-bottom)) !important;
    max-width: calc(100vw - 24px) !important;
  }

  .floating-contact-button-wrap {
    justify-content: flex-end !important;
  }

  .floating-contact-button {
    width: 52px !important;
    height: 52px !important;
    padding: 0 !important;
    border-radius: 50% !important;
  }

  .floating-contact-icon {
    width: 38px !important;
    height: 38px !important;
  }

  .floating-contact-mini-close {
    width: 28px !important;
    height: 28px !important;
    font-size: 19px !important;
  }

  .floating-contact-panel {
    position: fixed !important;
    left: 12px !important;
    right: 12px !important;
    bottom: calc(78px + env(safe-area-inset-bottom)) !important;
    width: auto !important;
    max-width: none !important;
    border-radius: 22px !important;
    overflow: hidden !important;
  }

  .floating-contact-header {
    padding: 18px 58px 18px 18px !important;
  }

  .floating-contact-body-stack {
    padding: 16px 18px 10px !important;
  }

  .floating-contact-options {
    padding: 0 18px 18px !important;
  }

  .floating-contact-option {
    padding: 13px !important;
    border-radius: 15px !important;
  }

  .site-footer.footer {
    margin-top: 42px !important;
  }

  .footer-grid,
  .footer-bottom {
    width: min(100% - 24px, 1180px) !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    padding: 38px 0 30px !important;
  }

  .footer-column h3 {
    margin-bottom: 12px !important;
  }

  .footer-address-row {
    grid-template-columns: 52px 1fr !important;
    gap: 12px !important;
  }

  .footer-map-icon {
    width: 52px !important;
    height: 52px !important;
    font-size: 28px !important;
    border-radius: 14px !important;
  }

  .two-col-links,
  .footer-links {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .footer-bottom {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 16px 0 20px !important;
  }
}

@media (max-width: 430px) {
  .container,
  .home-hero,
  .product-detail-container,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 18px, 1180px) !important;
  }

  .nav {
    width: min(100% - 18px, 1180px) !important;
  }

  .poster-content-wrap {
    width: min(100% - 22px, 1180px) !important;
    padding: 30px 0 52px !important;
  }

  .poster-text h1 {
    font-size: 32px !important;
  }

  .card img {
    height: 190px !important;
  }

  .detail-main-image,
  .detail-layout-wide .detail-main-image {
    height: 245px !important;
  }

  .admin-photo-grid {
    grid-template-columns: 1fr !important;
  }
}

/* =========================
   CARSOME-LIKE PRODUCT PREVIEW CARD + FULL CREDIT SIMULATOR
========================= */
.vehicle-grid {
  grid-template-columns: repeat(3, minmax(280px, 1fr)) !important;
  align-items: stretch !important;
  gap: 28px !important;
}
.vehicle-card {
  background: #fff;
  border: 1px solid #e6e8ed;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(16, 24, 40, .09);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(16, 24, 40, .14);
  border-color: #d5dae2;
}
.vehicle-media {
  position: relative;
  background: #eef0f3;
  overflow: hidden;
}
.vehicle-image-link {
  display: block;
  width: 100%;
  height: 236px;
  background: #eef0f3;
}
.vehicle-image-link img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .3s ease;
}
.vehicle-card:hover .vehicle-image-link img { transform: scale(1.025); }
.vehicle-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 34px;
  height: 46px;
  border: 0;
  background: rgba(24, 28, 33, .48);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: .18s ease;
}
.vehicle-gallery-arrow:hover { background: rgba(0, 0, 0, .72); }
.vehicle-gallery-prev { left: 0; border-radius: 0 999px 999px 0; }
.vehicle-gallery-next { right: 0; border-radius: 999px 0 0 999px; }
.vehicle-image-count {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 4;
  color: #fff;
  background: rgba(0,0,0,.58);
  border-radius: 4px;
  padding: 4px 7px;
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
}
.vehicle-body {
  padding: 18px 20px 20px;
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 280px;
}
.vehicle-card-head {
  min-height: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.vehicle-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  max-width: calc(100% - 48px);
  padding: 3px 8px;
  border-radius: 999px;
  background: #ffd84d;
  color: #050505;
  font-size: 11px;
  font-weight: 950;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vehicle-card h3 {
  margin: 8px 42px 4px 0;
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: -.02em;
  min-height: 50px;
}
.vehicle-card h3 a:hover { text-decoration: underline; text-underline-offset: 3px; }
.vehicle-fav {
  border: 0;
  background: transparent;
  color: #98a1ad;
  font-size: 38px;
  line-height: .8;
  cursor: pointer;
  padding: 0;
  margin-top: 4px;
  transition: transform .18s ease, color .18s ease;
}
.vehicle-fav:hover { color: #111; transform: scale(1.05); }
.vehicle-meta {
  color: #111827;
  font-size: 14px;
  line-height: 1.45;
  margin: 0 0 26px;
}
.vehicle-price-area {
  margin-top: auto;
  padding-top: 14px;
}
.vehicle-installment {
  color: #08090b;
  font-weight: 950;
  font-size: 17px;
  margin-bottom: 8px;
}
.vehicle-info-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #357fca;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  vertical-align: 1px;
}
.vehicle-credit-price,
.vehicle-cash-price {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
}
.vehicle-credit-price { color: #f0180a; }
.vehicle-cash-price { color: #636b76; }
.vehicle-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}
.vehicle-actions .btn {
  width: 100%;
  border-radius: 10px;
  padding: 10px 12px;
}
.credit-simulator-wide {
  width: 100%;
  margin-top: 26px;
  padding: 28px;
}
.credit-form-grid.credit-form-grid-wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.credit-result.credit-result-wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.credit-result-wide strong {
  font-size: clamp(19px, 2.4vw, 27px);
}
.brand-picker {
  cursor: pointer;
}
.form-row code {
  display: inline-block;
  padding: 1px 6px;
  border-radius: 7px;
  background: #eef0f3;
  color: #111;
  font-size: 12px;
}

@media (max-width: 1180px) {
  .vehicle-grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr)) !important;
  }
  .credit-form-grid.credit-form-grid-wide,
  .credit-result.credit-result-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .vehicle-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px !important;
  }
  .vehicle-card {
    border-radius: 14px !important;
  }
  .vehicle-image-link {
    height: 218px !important;
  }
  .vehicle-body {
    padding: 16px !important;
    min-height: auto !important;
  }
  .vehicle-card h3 {
    min-height: auto !important;
    margin-right: 36px !important;
    font-size: 20px !important;
  }
  .vehicle-meta {
    margin-bottom: 20px !important;
    font-size: 13px !important;
  }
  .vehicle-actions {
    grid-template-columns: 1fr !important;
  }
  .vehicle-gallery-arrow {
    width: 32px !important;
    height: 42px !important;
  }
  .credit-simulator-wide {
    margin-top: 18px !important;
    padding: 18px !important;
  }
  .credit-form-grid.credit-form-grid-wide,
  .credit-result.credit-result-wide {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 430px) {
  .vehicle-image-link {
    height: 190px !important;
  }
  .vehicle-badge {
    max-width: calc(100% - 42px) !important;
  }
  .vehicle-installment,
  .vehicle-credit-price,
  .vehicle-cash-price {
    font-size: 16px !important;
  }
}

/* =========================
   UPDATE: PROFESSIONAL MOBILE FONT & ADMIN SMART FORM
========================= */
body {
  font-family: "Plus Jakarta Sans", "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}
button,
.btn,
input,
select,
textarea,
label,
.nav-menu a,
.vehicle-card,
.filter-btn,
.filter-button,
.filter-chip,
.spec-pill {
  font-family: "Plus Jakarta Sans", "Inter", "Segoe UI", Roboto, Arial, sans-serif;
}
label,
.btn,
button,
.filter-btn,
.filter-button,
.filter-chip,
.spec-pill {
  font-weight: 800;
  letter-spacing: -0.015em;
}
.filter-btn,
.filter-button,
.filter-chip,
.spec-pill {
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid #0b3b3f;
  border-radius: 5px;
  background: #fff;
  color: #021f24;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1.2;
  transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s ease;
}
.filter-btn.active,
.filter-button.active,
.filter-chip.active,
.spec-pill.active,
.filter-btn:hover,
.filter-button:hover,
.filter-chip:hover,
.spec-pill:hover {
  background: #063d40;
  border-color: #063d40;
  color: #fff;
  transform: translateY(-1px);
}
.professional-form {
  max-width: 1040px;
}
.admin-smart-panel {
  margin-bottom: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(6,61,64,.08), rgba(6,61,64,.025));
  border: 1px solid rgba(6,61,64,.12);
}
.admin-smart-panel h3 {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 4px;
  letter-spacing: -.03em;
}
.admin-smart-panel p {
  color: var(--muted);
  max-width: 720px;
  font-size: 14px;
}
.admin-form-grid {
  display: grid;
  gap: 16px;
}
.admin-form-grid.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.admin-form-grid.three-col { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.smart-product-form select,
.smart-product-form input,
.smart-product-form textarea {
  min-height: 48px;
  border-radius: 12px;
  font-weight: 650;
}
.smart-product-form select {
  appearance: auto;
  cursor: pointer;
}
.smart-product-form .meta {
  margin-top: 6px;
  font-size: 12.5px;
}
.detail-price-stack {
  display: grid;
  gap: 4px;
  margin: 10px 0 16px;
}
.detail-price-stack .detail-price {
  margin: 0;
}
.detail-credit-price { color: #f0180a; }
.detail-cash-price { color: #5e6673; font-size: 22px; }
.admin-photo-item.is-removing {
  opacity: .48;
  transform: scale(.98);
  transition: opacity .2s ease, transform .2s ease;
}

@media (max-width: 860px) {
  .admin-form-grid.two-col,
  .admin-form-grid.three-col {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .professional-form {
    padding: 20px !important;
  }
  .filter-btn,
  .filter-button,
  .filter-chip,
  .spec-pill {
    min-height: 48px;
    padding: 0 18px;
    font-size: 13px;
  }
}


/* =========================================================
   UPDATE: professional readable typography, clickable cards,
   and cleaner admin title/description inputs
   ========================================================= */
:root {
  --font-main: "Inter", "Plus Jakarta Sans", "Manrope", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
}
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
body,
input,
select,
textarea,
button {
  font-family: var(--font-main) !important;
  letter-spacing: -0.008em;
}
body {
  font-size: 15.5px;
  line-height: 1.65;
  font-weight: 450;
}
h1, h2, h3, h4,
.section-title h2,
.vehicle-card h3,
.detail-info h1,
.admin-smart-panel h3 {
  letter-spacing: -0.035em !important;
  font-weight: 750 !important;
}
.section-title p,
.category,
.vehicle-badge,
label,
.nav-menu a,
.btn,
button {
  letter-spacing: -0.005em !important;
}
.nav-menu a {
  font-weight: 650 !important;
}
.btn,
button.btn {
  font-weight: 700 !important;
  border-radius: 12px !important;
}
.filter-btn,
.filter-button,
.filter-chip,
.spec-pill {
  border-radius: 10px !important;
  font-weight: 700 !important;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .04);
}
.vehicle-card.product-click-card {
  cursor: pointer;
}
.vehicle-card.product-click-card:focus-visible {
  outline: 3px solid rgba(6, 61, 64, .22);
  outline-offset: 4px;
}
.vehicle-card .vehicle-actions,
.vehicle-card .vehicle-gallery-arrow,
.vehicle-card .vehicle-fav,
.vehicle-card .vehicle-image-link {
  cursor: auto;
}
.vehicle-short-desc {
  margin: -14px 0 18px;
  color: #667085;
  font-size: 13.5px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.detail-lead-description {
  font-size: 17px;
  line-height: 1.65;
  color: #475467;
  padding: 14px 16px;
  margin: 12px 0 12px;
  border-radius: 14px;
  background: #f7f8fa;
  border: 1px solid #eaecf0;
}
.smart-product-form textarea {
  min-height: 142px;
  resize: vertical;
}
.smart-product-form input::placeholder,
.smart-product-form textarea::placeholder {
  color: #98a2b3;
  font-weight: 500;
}
.smart-product-form .form-row label {
  display: inline-flex;
  margin-bottom: 7px;
  color: #1d2939;
  font-size: 13.5px;
  font-weight: 750 !important;
}
.smart-product-form input,
.smart-product-form select,
.smart-product-form textarea {
  border-color: #d0d5dd !important;
  background: #fff !important;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.smart-product-form input:focus,
.smart-product-form select:focus,
.smart-product-form textarea:focus {
  border-color: #063d40 !important;
  outline: 0 !important;
  box-shadow: 0 0 0 4px rgba(6, 61, 64, .10) !important;
}
.vehicle-card h3 a { pointer-events: none; }
@media (max-width: 760px) {
  body { font-size: 15px; }
  .vehicle-short-desc { margin-top: -10px; }
  .detail-lead-description { font-size: 15px; padding: 12px 14px; }
}


/* =========================================================
   FINAL REVISION: credit price yellow, softer typography,
   remove card short description space, smaller bubble close
   ========================================================= */
:root {
  --credit-yellow: #f4c430;
}

/* Harga kredit dibuat kuning dan tidak terlalu berat secara visual. */
.vehicle-credit-price,
.detail-credit-price {
  color: var(--credit-yellow) !important;
  font-weight: 650 !important;
}

/* Turunkan ketebalan font utama agar tampilan lebih nyaman dibaca. */
h1, h2, h3, h4,
.section-title h2,
.vehicle-card h3,
.detail-info h1,
.admin-smart-panel h3 {
  font-weight: 650 !important;
}

.vehicle-installment,
.vehicle-cash-price,
.detail-cash-price,
.vehicle-badge,
.price {
  font-weight: 600 !important;
}

.nav-menu a,
.btn,
button.btn,
.filter-btn,
.filter-button,
.filter-chip,
.spec-pill,
label {
  font-weight: 600 !important;
}

.vehicle-image-count,
.vehicle-info-dot {
  font-weight: 650 !important;
}

/* Deskripsi singkat card sudah dihapus dari markup; rule ini hanya pengaman jika masih ada data lama/cache. */
.vehicle-short-desc {
  display: none !important;
}

/* Tanda silang pada bubble diperkecil, bukan dihilangkan. */
.floating-contact-mini-close {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  font-size: 14px !important;
  line-height: 22px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
}

.floating-contact-close {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  font-size: 18px !important;
  line-height: 28px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
}

@media (max-width: 768px) {
  .floating-contact-mini-close {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    font-size: 13px !important;
    line-height: 20px !important;
  }
  .floating-contact-close {
    width: 26px !important;
    height: 26px !important;
    min-width: 26px !important;
    font-size: 17px !important;
    line-height: 26px !important;
  }
}


/* =========================================================
   REVISI FINAL: hapus harga dari preview produk, rapikan HP,
   hilangkan X samping bubble, dan teks Indonesia
   ========================================================= */
.vehicle-card .vehicle-price-area {
  display: none !important;
}
.vehicle-card .vehicle-actions {
  margin-top: auto !important;
}
.vehicle-body {
  min-height: 230px !important;
}
.floating-contact-mini-close {
  display: none !important;
}
.floating-contact-button-wrap {
  gap: 0 !important;
}
.detail-lead-description {
  display: none !important;
}
.detail-info,
.gallery-box,
.vehicle-card,
.vehicle-body,
.slider-wrap,
.main-image-button,
.thumbnail-row {
  min-width: 0 !important;
  max-width: 100% !important;
}
.detail-info h1,
.vehicle-card h3,
.detail-price,
.detail-price-stack .price,
.specs li span,
.detail-specs li span {
  overflow-wrap: anywhere !important;
  word-break: normal !important;
}
.detail-credit-price {
  color: var(--credit-yellow) !important;
}
.detail-cash-price {
  color: #566173 !important;
}

@media (max-width: 768px) {
  html,
  body {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  *, *::before, *::after {
    box-sizing: border-box !important;
  }
  .container,
  .home-hero,
  .product-detail-container,
  .products-page {
    width: 100% !important;
    max-width: 100vw !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .detail-layout,
  .detail-layout-wide {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px !important;
    width: 100% !important;
  }
  .gallery-box,
  .detail-info,
  .credit-simulator,
  .credit-simulator-wide {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    padding: 16px !important;
    border-radius: 20px !important;
  }
  .slider-wrap,
  .main-image-button {
    width: 100% !important;
    overflow: hidden !important;
  }
  .detail-main-image,
  .detail-layout-wide .detail-main-image {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: clamp(230px, 62vw, 320px) !important;
    object-fit: cover !important;
    border-radius: 16px !important;
  }
  .thumbnail-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 2px 2px 8px !important;
    margin-top: 10px !important;
    -webkit-overflow-scrolling: touch;
  }
  .thumb-btn {
    flex: 0 0 76px !important;
    width: 76px !important;
    max-width: 76px !important;
    border-radius: 10px !important;
  }
  .thumb-btn img {
    width: 100% !important;
    height: 56px !important;
    object-fit: cover !important;
  }
  .gallery-note {
    font-size: 12.5px !important;
    line-height: 1.5 !important;
  }
  .detail-info h1 {
    font-size: clamp(26px, 7.6vw, 34px) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.025em !important;
    margin-right: 0 !important;
  }
  .detail-price-stack {
    gap: 6px !important;
  }
  .detail-price-stack .detail-price,
  .detail-price {
    font-size: clamp(18px, 5.6vw, 22px) !important;
    line-height: 1.28 !important;
  }
  .detail-specs li,
  .specs li {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 4px !important;
  }
  .actions,
  .detail-info .actions {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 10px !important;
    width: 100% !important;
  }
  .floating-contact {
    right: 14px !important;
    bottom: 14px !important;
    max-width: calc(100vw - 28px) !important;
  }
  .floating-contact-button {
    min-width: 54px !important;
    width: 54px !important;
    min-height: 54px !important;
    height: 54px !important;
    padding: 8px !important;
    border-radius: 50% !important;
    justify-content: center !important;
  }
  .floating-contact-text {
    display: none !important;
  }
  .floating-contact-panel {
    width: calc(100vw - 28px) !important;
    max-width: 360px !important;
  }
}

@media (max-width: 430px) {
  .container,
  .home-hero,
  .product-detail-container,
  .products-page {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .gallery-box,
  .detail-info,
  .credit-simulator,
  .credit-simulator-wide {
    padding: 14px !important;
  }
  .detail-main-image,
  .detail-layout-wide .detail-main-image {
    height: 245px !important;
  }
  .detail-info h1 {
    font-size: clamp(25px, 7.3vw, 31px) !important;
  }
}

/* =========================================================
   REVISI V3: preview produk sesuai contoh
   - ikon mobil pada badge dan ikon pin lokasi dihapus dari card
   - area cicilan/harga preview produk ditampilkan kembali
   - harga kredit dipaksa kuning konsisten di card dan detail
   ========================================================= */
:root {
  --credit-yellow: #f4c21f;
}
.vehicle-badge span[aria-hidden="true"],
.vehicle-meta span[aria-hidden="true"] {
  display: none !important;
}
.vehicle-badge {
  gap: 0 !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.vehicle-meta {
  display: block !important;
  color: #111827 !important;
}
.vehicle-card .vehicle-price-area {
  display: block !important;
  margin-top: auto !important;
  padding-top: 10px !important;
}
.vehicle-installment {
  color: #08090b !important;
  font-weight: 650 !important;
  margin-bottom: 8px !important;
}
.vehicle-credit-price,
.detail-credit-price,
.price.detail-credit-price {
  color: var(--credit-yellow) !important;
  font-weight: 650 !important;
}
.vehicle-cash-price,
.detail-cash-price {
  color: #566173 !important;
  font-weight: 600 !important;
}
.vehicle-card .vehicle-actions {
  margin-top: 18px !important;
}
.vehicle-body {
  min-height: 280px !important;
}
@media (max-width: 760px) {
  .vehicle-body {
    min-height: auto !important;
  }
  .vehicle-card .vehicle-price-area {
    padding-top: 8px !important;
  }
  .vehicle-installment,
  .vehicle-credit-price,
  .vehicle-cash-price {
    font-size: 16px !important;
    line-height: 1.35 !important;
  }
}



.footer-grid-compact {
  align-items: start;
}

.footer-links-single {
  grid-template-columns: 1fr;
  gap: 14px;
}

.footer-address-row-compact {
  grid-template-columns: 62px 1fr;
  gap: 14px;
}

.footer-bottom-compact {
  align-items: center;
}

.vehicle-info-dot {
  display: none !important;
}


/* =========================================================
   PUBLISH POLISH: footer, contact cleanup, responsive finishing
   ========================================================= */
body {
  background: #f5f6f8 !important;
}

.header {
  box-shadow: 0 8px 24px rgba(15, 23, 42, .08) !important;
}

.nav {
  min-height: 70px !important;
}

.nav-brand .brand-mark {
  background: #ffd84d !important;
  color: #111111 !important;
  box-shadow: none !important;
}

.vehicle-card {
  border: 1px solid rgba(15, 23, 42, .08) !important;
  box-shadow: 0 12px 34px rgba(15, 23, 42, .08) !important;
  overflow: hidden !important;
}

.vehicle-card h3 {
  margin-right: 0 !important;
}

.vehicle-card-head {
  align-items: flex-start !important;
}

.vehicle-badge {
  max-width: 100% !important;
}

.vehicle-fav {
  display: none !important;
}

.contact-layout-role {
  align-items: stretch !important;
}

.contact-choice-card {
  border: 1px solid rgba(15, 23, 42, .08) !important;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .07) !important;
}

.contact-btn + .contact-btn {
  margin-top: 10px !important;
}

.map-box iframe,
.home-map-box iframe {
  border: 0 !important;
  width: 100% !important;
  display: block !important;
}

.site-footer.footer.footer-pro {
  background: #07090d !important;
  color: #ffffff !important;
  margin-top: 78px !important;
  padding: 0 !important;
  border-top: 1px solid rgba(255,255,255,.08) !important;
  overflow: hidden !important;
}

.footer-pro::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,216,77,.85), transparent);
}

.footer-pro .footer-shell {
  width: min(1180px, calc(100% - 40px)) !important;
  margin: 0 auto !important;
  padding: 52px 0 38px !important;
  display: grid !important;
  grid-template-columns: minmax(330px, 1.35fr) .72fr .82fr .92fr !important;
  gap: 34px !important;
  align-items: start !important;
}

.footer-pro .footer-brand-panel {
  padding: 24px !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 24px !important;
  background: rgba(255,255,255,.045) !important;
  box-shadow: 0 24px 70px rgba(0,0,0,.22) !important;
}

.footer-pro .footer-brand-row {
  display: grid !important;
  grid-template-columns: 54px minmax(0, 1fr) !important;
  gap: 16px !important;
  align-items: start !important;
}

.footer-pro .footer-brand-mark {
  width: 54px !important;
  height: 54px !important;
  border-radius: 16px !important;
  display: inline-grid !important;
  place-items: center !important;
  background: #ffd84d !important;
  color: #111111 !important;
  font-weight: 900 !important;
  letter-spacing: -.03em !important;
}

.footer-pro h3,
.footer-pro .footer-column h3 {
  color: #ffffff !important;
  font-size: 14px !important;
  line-height: 1.3 !important;
  margin: 0 0 16px !important;
  letter-spacing: .02em !important;
  text-transform: uppercase !important;
  font-weight: 800 !important;
}

.footer-pro .footer-brand-row h3 {
  font-size: 19px !important;
  letter-spacing: .015em !important;
  margin-bottom: 7px !important;
}

.footer-pro p,
.footer-pro .footer-links a,
.footer-pro .footer-bottom p,
.footer-pro .footer-contact-list span {
  color: rgba(255,255,255,.72) !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
}

.footer-pro .footer-address-card {
  margin-top: 22px !important;
  padding: 16px !important;
  border-radius: 18px !important;
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.1) !important;
}

.footer-pro .footer-address-card span {
  display: block !important;
  margin-bottom: 7px !important;
  color: #ffd84d !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: .08em !important;
}

.footer-pro .footer-address-card p {
  color: rgba(255,255,255,.86) !important;
  margin: 0 !important;
}

.footer-pro .footer-cta-row {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin-top: 18px !important;
}

.footer-pro .footer-cta-row a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 42px !important;
  padding: 10px 15px !important;
  border-radius: 999px !important;
  font-weight: 750 !important;
  font-size: 13px !important;
  color: #111111 !important;
  background: #ffd84d !important;
  border: 1px solid #ffd84d !important;
}

.footer-pro .footer-cta-row a + a {
  color: #ffffff !important;
  background: rgba(255,255,255,.07) !important;
  border-color: rgba(255,255,255,.18) !important;
}

.footer-pro .footer-column {
  padding-top: 8px !important;
}

.footer-pro .footer-links {
  display: grid !important;
  gap: 12px !important;
}

.footer-pro .footer-links a {
  position: relative !important;
  padding-left: 0 !important;
  transition: color .18s ease, transform .18s ease !important;
}

.footer-pro .footer-links a::before {
  display: none !important;
}

.footer-pro .footer-links a:hover {
  color: #ffd84d !important;
  transform: translateX(3px) !important;
}

.footer-pro .footer-contact-list {
  display: grid !important;
  gap: 12px !important;
}

.footer-pro .footer-contact-list p {
  margin: 0 !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid rgba(255,255,255,.09) !important;
}

.footer-pro .footer-contact-list p:last-child {
  border-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.footer-pro .footer-contact-list strong {
  display: block !important;
  color: #ffffff !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  margin-bottom: 3px !important;
}

.footer-pro .footer-contact-list span {
  display: block !important;
}

.footer-pro .footer-bottom {
  width: min(1180px, calc(100% - 40px)) !important;
  margin: 0 auto !important;
  padding: 18px 0 24px !important;
  border-top: 1px solid rgba(255,255,255,.1) !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
}

.footer-pro .footer-bottom p {
  margin: 0 !important;
  font-size: 13px !important;
}

.floating-contact-option[href$="admin-contact.vcf"],
a[href$="admin-contact.vcf"] {
  display: none !important;
}

.floating-contact-panel {
  overflow: hidden !important;
}

.support-info span {
  line-height: 1.4 !important;
}

@media (max-width: 1080px) {
  .footer-pro .footer-shell {
    grid-template-columns: 1fr 1fr !important;
  }
  .footer-pro .footer-brand-panel {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 760px) {
  .nav {
    min-height: 62px !important;
  }
  .nav-menu a.active {
    justify-content: flex-start !important;
  }
  .home-hero {
    margin-top: 14px !important;
  }
  .vehicle-image-link {
    height: 220px !important;
  }
  .vehicle-actions .btn {
    min-height: 46px !important;
  }
  .footer-pro.site-footer.footer {
    margin-top: 46px !important;
  }
  .footer-pro .footer-shell,
  .footer-pro .footer-bottom {
    width: min(100% - 24px, 1180px) !important;
  }
  .footer-pro .footer-shell {
    grid-template-columns: 1fr !important;
    gap: 26px !important;
    padding: 36px 0 28px !important;
  }
  .footer-pro .footer-brand-panel {
    padding: 20px !important;
    border-radius: 22px !important;
  }
  .footer-pro .footer-brand-row {
    grid-template-columns: 46px minmax(0, 1fr) !important;
    gap: 13px !important;
  }
  .footer-pro .footer-brand-mark {
    width: 46px !important;
    height: 46px !important;
    border-radius: 14px !important;
  }
  .footer-pro .footer-brand-row h3 {
    font-size: 17px !important;
  }
  .footer-pro .footer-column {
    padding-top: 0 !important;
  }
  .footer-pro .footer-links {
    gap: 10px !important;
  }
  .footer-pro .footer-cta-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }
  .footer-pro .footer-cta-row a {
    width: 100% !important;
  }
  .footer-pro .footer-bottom {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 7px !important;
    padding: 16px 0 22px !important;
  }
}

@media (max-width: 430px) {
  .footer-pro .footer-shell,
  .footer-pro .footer-bottom {
    width: min(100% - 18px, 1180px) !important;
  }
  .footer-pro .footer-brand-panel {
    padding: 18px !important;
  }
  .footer-pro p,
  .footer-pro .footer-links a,
  .footer-pro .footer-contact-list span {
    font-size: 13.5px !important;
  }
}


/* =========================================================
   PUBLISH UPDATE: logo image, white navigation, poster image slider
   ========================================================= */
.header {
  background: rgba(255,255,255,.96) !important;
  border-bottom: 1px solid rgba(15,23,42,.10) !important;
  box-shadow: 0 8px 24px rgba(15,23,42,.08) !important;
  backdrop-filter: blur(18px) !important;
}

.nav {
  min-height: 78px !important;
}

.nav-brand {
  color: #111111 !important;
  min-width: 0 !important;
}

.brand-logo-img {
  width: 190px !important;
  max-width: 100% !important;
  height: 54px !important;
  object-fit: contain !important;
  object-position: left center !important;
  display: block !important;
  background: #ffffff !important;
  border-radius: 50% !important;
}

.nav-menu {
  background: #f4f5f7 !important;
  border: 1px solid rgba(15,23,42,.10) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.78), 0 8px 24px rgba(15,23,42,.06) !important;
}

.nav-brand,
.nav-menu a,
.nav-contact,
.nav-contact span,
.nav-contact strong {
  color: #111111 !important;
}

.nav-contact span {
  color: rgba(15,23,42,.55) !important;
}

.nav-menu a {
  color: rgba(15,23,42,.78) !important;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: #111111 !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
}

.nav-toggle {
  background: #111111 !important;
  border-color: #111111 !important;
}

.nav-toggle span {
  background: #ffffff !important;
}

.image-poster-hero {
  width: min(1240px, calc(100% - 32px)) !important;
  margin: 28px auto 0 !important;
}

.image-poster-slider {
  height: clamp(270px, 31vw, 462px) !important;
  min-height: 270px !important;
  border-radius: 28px !important;
  background: #ffffff !important;
  border: 1px solid rgba(15,23,42,.08) !important;
  box-shadow: 0 16px 42px rgba(15,23,42,.09) !important;
  overflow: hidden !important;
}

.image-poster-slide {
  background: #ffffff !important;
  overflow: hidden !important;
}

.poster-image-link {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

.poster-image {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.image-poster-hero .hero-arrow {
  background: rgba(255,255,255,.92) !important;
  color: #111111 !important;
  border: 1px solid rgba(15,23,42,.10) !important;
  box-shadow: 0 12px 28px rgba(15,23,42,.16) !important;
}

.image-poster-hero .hero-arrow:hover {
  background: #111111 !important;
  color: #ffffff !important;
}

.image-poster-hero .hero-dots {
  background: rgba(255,255,255,.84) !important;
  border: 1px solid rgba(15,23,42,.08) !important;
  box-shadow: 0 10px 24px rgba(15,23,42,.12) !important;
}

.image-poster-hero .hero-dot {
  background: rgba(15,23,42,.25) !important;
}

.image-poster-hero .hero-dot.is-active {
  background: #111111 !important;
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: auto auto !important;
    justify-content: space-between !important;
  }

  .brand-logo-img {
    width: 160px !important;
    height: 48px !important;
  }

  .image-poster-slider {
    height: clamp(220px, 36vw, 360px) !important;
    border-radius: 22px !important;
  }
}

@media (max-width: 760px) {
  .header {
    background: #ffffff !important;
  }

  .nav {
    min-height: 66px !important;
    width: min(100% - 24px, 1180px) !important;
  }

  .brand-logo-img {
    width: 132px !important;
    height: 42px !important;
    border-radius: 50% !important;
  }

  .nav-menu {
    background: #ffffff !important;
    border: 1px solid rgba(15,23,42,.10) !important;
    box-shadow: 0 18px 40px rgba(15,23,42,.10) !important;
  }

  .nav-menu a {
    background: #f6f7f9 !important;
    color: #111111 !important;
  }

  .nav-menu a.active,
  .nav-menu a:hover {
    background: #111111 !important;
    color: #ffffff !important;
  }

  .image-poster-hero {
    width: min(100% - 20px, 1180px) !important;
    margin-top: 16px !important;
  }

  .image-poster-slider {
    height: clamp(156px, 38vw, 240px) !important;
    min-height: 156px !important;
    border-radius: 18px !important;
  }

  .image-poster-hero .hero-arrow {
    display: none !important;
  }

  .image-poster-hero .hero-dots {
    bottom: 10px !important;
  }
}

@media (max-width: 430px) {
  .brand-logo-img {
    width: 118px !important;
    height: 38px !important;
  }

  .image-poster-slider {
    height: 142px !important;
    min-height: 142px !important;
  }
}

/* =========================================================
   FINAL PUBLISH UPDATE: real brand logo + advantage images
   ========================================================= */
.header {
  background: #ffffff !important;
}

.nav-brand {
  min-width: 210px !important;
}

.brand-logo-img {
  width: 210px !important;
  height: 58px !important;
  object-fit: contain !important;
  object-position: left center !important;
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

.footer-brand-logo-wrap {
  width: 92px !important;
  height: 58px !important;
  border-radius: 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #ffffff !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  padding: 7px !important;
  overflow: hidden !important;
}

.footer-brand-logo-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
}

.footer-pro .footer-brand-row {
  grid-template-columns: 92px minmax(0, 1fr) !important;
  align-items: center !important;
}

.support-logo-avatar {
  width: 58px !important;
  height: 48px !important;
  border-radius: 14px !important;
  background: #ffffff !important;
  padding: 6px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: transparent !important;
}

.support-logo-avatar img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
}

.why-section {
  border-radius: 28px !important;
  overflow: hidden !important;
}

.why-grid {
  width: min(1180px, calc(100% - 34px)) !important;
  gap: 20px !important;
}

.why-card {
  border-radius: 0 !important;
  min-height: 400px !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  overflow: hidden !important;
  background: #000000 !important;
}

.why-media-image,
.why-media-image.media-quality,
.why-media-image.media-document,
.why-media-image.media-warranty,
.why-media-image.media-service,
.why-media-image.media-support {
  height: 210px !important;
  background: #111111 !important;
  filter: none !important;
}

.why-media-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
}

.why-media-image span {
  display: none !important;
}

.why-body {
  padding: 24px 18px 26px !important;
  background: #000000 !important;
}

.why-icon {
  display: none !important;
}

.why-body h3 {
  margin-top: 0 !important;
  font-size: 15px !important;
  line-height: 1.25 !important;
  letter-spacing: .02em !important;
}

.why-body p {
  margin-top: 14px !important;
  font-size: 14px !important;
  line-height: 1.58 !important;
}

@media (max-width: 1180px) {
  .why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 980px) {
  .nav-brand {
    min-width: 170px !important;
  }
  .brand-logo-img {
    width: 170px !important;
    height: 50px !important;
  }
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .why-card {
    min-height: 380px !important;
  }
}

@media (max-width: 760px) {
  .nav-brand {
    min-width: auto !important;
  }
  .brand-logo-img {
    width: 145px !important;
    height: 44px !important;
  }
  .footer-pro .footer-brand-row {
    grid-template-columns: 82px minmax(0, 1fr) !important;
  }
  .footer-brand-logo-wrap {
    width: 82px !important;
    height: 52px !important;
  }
  .why-section {
    border-radius: 22px !important;
  }
  .why-grid {
    grid-template-columns: 1fr !important;
    width: min(100% - 28px, 560px) !important;
  }
  .why-card {
    min-height: auto !important;
    border-radius: 18px !important;
  }
  .why-media-image,
  .why-media-image.media-quality,
  .why-media-image.media-document,
  .why-media-image.media-warranty,
  .why-media-image.media-service,
  .why-media-image.media-support {
    height: 235px !important;
  }
}

@media (max-width: 430px) {
  .brand-logo-img {
    width: 128px !important;
    height: 40px !important;
  }
  .why-media-image,
  .why-media-image.media-quality,
  .why-media-image.media-document,
  .why-media-image.media-warranty,
  .why-media-image.media-service,
  .why-media-image.media-support {
    height: 220px !important;
  }
}


/* =========================================================
   USER REQUEST UPDATE: wider home poster, sticky navbar, remove live chat
   ========================================================= */
.header {
  position: sticky !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9999 !important;
}

.image-poster-hero {
  width: min(1540px, calc(100% - 28px)) !important;
  max-width: 1540px !important;
  margin: 22px auto 0 !important;
}

.image-poster-slider {
  height: clamp(390px, 38vw, 620px) !important;
  min-height: 390px !important;
  border-radius: 32px !important;
  box-shadow: 0 22px 58px rgba(15, 23, 42, .13) !important;
}

.poster-image {
  object-fit: cover !important;
  object-position: center center !important;
}

.floating-contact,
.floating-contact-button,
.floating-contact-panel,
.floating-contact-option[href*="chat"],
a[href="chat.php"],
a[href="live-chat.php"],
a[href="admin-chat.php"] {
  display: none !important;
}

.contact-layout-role {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.dashboard-grid {
  grid-template-columns: repeat(3, minmax(180px, 1fr));
}

@media (max-width: 980px) {
  .image-poster-hero {
    width: min(100% - 24px, 1180px) !important;
  }

  .image-poster-slider {
    height: clamp(300px, 48vw, 460px) !important;
    min-height: 300px !important;
    border-radius: 24px !important;
  }
}

@media (max-width: 760px) {
  .image-poster-hero {
    width: min(100% - 18px, 1180px) !important;
    margin-top: 14px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .image-poster-slider {
    height: clamp(210px, 58vw, 330px) !important;
    min-height: 210px !important;
    border-radius: 18px !important;
  }

  .contact-layout-role,
  .dashboard-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 430px) {
  .image-poster-slider {
    height: clamp(190px, 62vw, 280px) !important;
    min-height: 190px !important;
  }
}


/* =========================================================
   FINAL FIX: navbar selalu ikut saat halaman di-scroll
   ========================================================= */
:root {
  --site-header-height: 94px;
}

body {
  padding-top: var(--site-header-height) !important;
}

.header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 99999 !important;
}

.nav-wrap {
  width: 100% !important;
}

.home-hero.image-poster-hero,
.home-hero.poster-hero,
main.container,
.container {
  scroll-margin-top: calc(var(--site-header-height) + 12px) !important;
}

@media (max-width: 760px) {
  :root {
    --site-header-height: 82px;
  }

  body {
    padding-top: var(--site-header-height) !important;
  }

  .header {
    position: fixed !important;
  }
}


/* =========================================================
   FINAL PROFESSIONAL UPDATE
   Full poster, fixed navbar, cleaner typography, product polish
   ========================================================= */
:root {
  --site-header-height: 94px;
  --pro-ink: #08090d;
  --pro-muted: #667085;
  --pro-line: rgba(15, 23, 42, .10);
  --pro-soft: #f6f7f9;
  --pro-shadow: 0 18px 48px rgba(15, 23, 42, .10);
}

html {
  scroll-padding-top: calc(var(--site-header-height) + 18px) !important;
}

body {
  padding-top: var(--site-header-height) !important;
  background: linear-gradient(180deg, #ffffff 0%, #f6f7f9 48%, #eef1f5 100%) !important;
  color: var(--pro-ink) !important;
  font-family: Inter, "Segoe UI", Roboto, Arial, Helvetica, sans-serif !important;
  letter-spacing: -0.01em !important;
}

.header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 99999 !important;
  background: rgba(255, 255, 255, .94) !important;
  border-bottom: 1px solid rgba(15, 23, 42, .08) !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, .08) !important;
  backdrop-filter: blur(20px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(150%) !important;
}

.nav {
  width: min(1480px, calc(100% - 48px)) !important;
  min-height: 94px !important;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr) !important;
}

.brand-logo-img {
  width: 196px !important;
  height: 58px !important;
  object-fit: contain !important;
}

.nav-menu {
  background: rgba(248, 250, 252, .96) !important;
  border: 1px solid rgba(15, 23, 42, .10) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.92), 0 10px 28px rgba(15,23,42,.06) !important;
  padding: 9px !important;
}

.nav-menu a {
  padding: 13px 22px !important;
  color: #3c4656 !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  letter-spacing: -0.015em !important;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: #090a0d !important;
  color: #ffffff !important;
  box-shadow: 0 9px 22px rgba(0,0,0,.15) !important;
}

.nav-contact span {
  font-size: 11px !important;
  letter-spacing: .16em !important;
}

.nav-contact strong {
  font-size: 17px !important;
  font-weight: 900 !important;
}

/* Home poster dibuat full gambar, edge-to-edge, dan tidak terpotong */
.home-hero.poster-hero,
.home-hero.image-poster-hero {
  width: 100vw !important;
  max-width: 100vw !important;
  margin: 0 calc(50% - 50vw) 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: #ffffff !important;
}

.hero-slider.poster-slider,
.image-poster-slider {
  width: 100vw !important;
  max-width: 100vw !important;
  height: clamp(520px, 56vw, 820px) !important;
  min-height: 520px !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  box-shadow: none !important;
  background: #ffffff !important;
}

.poster-image-link {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

.poster-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #ffffff !important;
}

.hero-arrow {
  background: rgba(0, 0, 0, .64) !important;
  border: 1px solid rgba(255,255,255,.24) !important;
  color: #ffffff !important;
  box-shadow: 0 14px 34px rgba(0,0,0,.22) !important;
}

.hero-dots {
  bottom: 22px !important;
  background: rgba(0,0,0,.24) !important;
  border: 1px solid rgba(255,255,255,.20) !important;
  backdrop-filter: blur(12px) !important;
  padding: 8px 10px !important;
  border-radius: 999px !important;
}

.hero-dot {
  background: rgba(255,255,255,.62) !important;
}

.hero-dot.is-active {
  background: #ffffff !important;
  width: 28px !important;
}

/* Product card polish */
.container {
  width: min(1480px, calc(100% - 48px)) !important;
}

.home-main {
  padding-top: 64px !important;
}

.section-title h2,
.why-title h2 {
  font-size: clamp(32px, 4vw, 54px) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.045em !important;
  color: #090a0d !important;
}

.section-title p,
.why-title p {
  color: #737b8a !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
  font-weight: 900 !important;
}

.vehicle-grid,
.product-grid-centered {
  gap: 28px !important;
}

.vehicle-card,
.card {
  border-radius: 26px !important;
  border: 1px solid rgba(15, 23, 42, .08) !important;
  background: #ffffff !important;
  box-shadow: 0 16px 46px rgba(15, 23, 42, .08) !important;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease !important;
}

.vehicle-card:hover,
.card:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(15, 23, 42, .16) !important;
  box-shadow: 0 26px 64px rgba(15, 23, 42, .14) !important;
}

.vehicle-body,
.card-body {
  padding: 24px 26px 26px !important;
}

.vehicle-title,
.card-body h3,
.vehicle-body h3 {
  font-size: clamp(22px, 2vw, 28px) !important;
  line-height: 1.13 !important;
  letter-spacing: -0.045em !important;
  font-weight: 900 !important;
  color: #050608 !important;
}

.vehicle-meta,
.card-body p,
.meta {
  color: #0f172a !important;
  font-size: 16px !important;
  line-height: 1.55 !important;
}

.category,
.badge,
.vehicle-badge {
  background: #ffd447 !important;
  color: #070707 !important;
  border-radius: 999px !important;
  font-weight: 900 !important;
  letter-spacing: -0.015em !important;
  padding: 7px 14px !important;
}

/* Form polish */
input,
select,
textarea {
  border-radius: 18px !important;
  border: 1px solid rgba(15,23,42,.16) !important;
  background: #ffffff !important;
  color: #090a0d !important;
  font-weight: 750 !important;
}

input:focus,
select:focus,
textarea:focus {
  outline: none !important;
  border-color: rgba(8, 9, 13, .72) !important;
  box-shadow: 0 0 0 5px rgba(8, 9, 13, .08) !important;
}

.btn,
button[type="submit"] {
  border-radius: 999px !important;
  font-weight: 900 !important;
  letter-spacing: -0.015em !important;
}

/* Live chat tetap dimatikan */
.floating-contact,
.floating-contact-button,
.floating-contact-panel,
.floating-contact-option[href*="chat"],
a[href="chat.php"],
a[href="live-chat.php"],
a[href="admin-chat.php"] {
  display: none !important;
}

@media (max-width: 980px) {
  :root {
    --site-header-height: 82px;
  }

  body {
    padding-top: var(--site-header-height) !important;
  }

  .nav {
    width: min(100% - 28px, 1480px) !important;
    min-height: 82px !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
  }

  .brand-logo-img {
    width: 154px !important;
    height: 48px !important;
  }

  .nav-contact {
    display: none !important;
  }

  .hero-slider.poster-slider,
  .image-poster-slider {
    height: clamp(330px, 70vw, 560px) !important;
    min-height: 330px !important;
  }

  .container {
    width: min(100% - 28px, 1480px) !important;
  }
}

@media (max-width: 520px) {
  :root {
    --site-header-height: 74px;
  }

  .nav {
    min-height: 74px !important;
  }

  .brand-logo-img {
    width: 132px !important;
    height: 42px !important;
    border-radius: 50% !important;
  }

  .hero-slider.poster-slider,
  .image-poster-slider {
    height: clamp(260px, 88vw, 430px) !important;
    min-height: 260px !important;
  }

  .home-main {
    padding-top: 38px !important;
  }

  .vehicle-body,
  .card-body {
    padding: 20px !important;
  }
}


/* =========================================================
   FINAL PROFESSIONAL UI PASS: softer typography, refined cards,
   full poster, and consistent transmission form appearance
   ========================================================= */
:root {
  --site-header-height: 88px;
  --pro-ink: #111827;
  --pro-muted: #5f6673;
  --pro-line: #e8ebf0;
  --pro-yellow: #ffd338;
  --pro-soft: #f7f8fa;
}

html,
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !important;
  font-weight: 400 !important;
  color: var(--pro-ink) !important;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 52%, #f2f4f7 100%) !important;
  text-rendering: geometricPrecision !important;
  -webkit-font-smoothing: antialiased !important;
}

body {
  padding-top: var(--site-header-height) !important;
}

.header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 99999 !important;
  background: rgba(255, 255, 255, .96) !important;
  border-bottom: 1px solid rgba(15,23,42,.08) !important;
  box-shadow: 0 8px 24px rgba(15,23,42,.06) !important;
  backdrop-filter: blur(18px) !important;
}

.nav {
  min-height: var(--site-header-height) !important;
  width: min(1440px, calc(100% - 48px)) !important;
}

.nav-menu {
  background: #f7f8fa !important;
  border: 1px solid rgba(15,23,42,.09) !important;
  box-shadow: none !important;
  padding: 7px !important;
}

.nav-menu a {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #3f4652 !important;
  padding: 12px 18px !important;
  letter-spacing: -.01em !important;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: #0b0c0f !important;
  color: #ffffff !important;
  transform: none !important;
}

.nav-contact span {
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: .14em !important;
  color: #9aa1ad !important;
}

.nav-contact strong {
  font-size: 16px !important;
  font-weight: 650 !important;
  color: #111827 !important;
}

.home-hero.poster-hero,
.home-hero.image-poster-hero {
  width: 100vw !important;
  max-width: 100vw !important;
  margin: 0 calc(50% - 50vw) !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: #ffffff !important;
}

.hero-slider.poster-slider,
.image-poster-slider {
  width: 100vw !important;
  max-width: 100vw !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 6.2 !important;
  border-radius: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  background: #ffffff !important;
  overflow: hidden !important;
}

.image-poster-slide,
.hero-slide {
  background: #ffffff !important;
}

.poster-image-link {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
}

.poster-image {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #ffffff !important;
}

.image-poster-hero .hero-arrow {
  width: 46px !important;
  height: 46px !important;
  background: rgba(255,255,255,.88) !important;
  color: #111827 !important;
  box-shadow: 0 12px 34px rgba(15,23,42,.16) !important;
}

.hero-dots {
  bottom: 22px !important;
}

.hero-dot {
  width: 9px !important;
  height: 9px !important;
  background: rgba(15,23,42,.22) !important;
}

.hero-dot.is-active {
  width: 28px !important;
  background: #111827 !important;
}

.container {
  width: min(1420px, calc(100% - 48px)) !important;
}

.home-main {
  padding-top: 56px !important;
}

.section-title h2,
.why-title h2,
h1,
h2 {
  font-weight: 650 !important;
  letter-spacing: -.035em !important;
  color: #111827 !important;
}

.section-title h2,
.why-title h2 {
  font-size: clamp(30px, 3vw, 44px) !important;
  line-height: 1.12 !important;
}

.section-title p,
.why-title p {
  font-size: 12px !important;
  font-weight: 650 !important;
  letter-spacing: .16em !important;
  color: #d19a00 !important;
}

.title-subtitle,
.section-title span,
p,
.meta {
  color: var(--pro-muted) !important;
  font-weight: 400 !important;
}

.vehicle-grid,
.product-grid-centered {
  gap: 30px !important;
}

.vehicle-card,
.card {
  border-radius: 24px !important;
  border: 1px solid var(--pro-line) !important;
  background: #ffffff !important;
  box-shadow: 0 10px 30px rgba(15,23,42,.055) !important;
  overflow: hidden !important;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease !important;
}

.vehicle-card:hover,
.card:hover {
  transform: translateY(-3px) !important;
  border-color: rgba(15,23,42,.14) !important;
  box-shadow: 0 22px 48px rgba(15,23,42,.11) !important;
}

.vehicle-media {
  background: linear-gradient(180deg, #f8f9fb 0%, #f0f2f5 100%) !important;
  border-bottom: 1px solid rgba(15,23,42,.06) !important;
}

.vehicle-image-link {
  height: 255px !important;
  background: #f6f7f9 !important;
}

.vehicle-image-link img {
  object-fit: cover !important;
  object-position: center center !important;
  filter: saturate(1.02) contrast(1.01) !important;
}

.vehicle-card:hover .vehicle-image-link img {
  transform: scale(1.018) !important;
}

.vehicle-body,
.card-body {
  padding: 22px 24px 24px !important;
  min-height: 260px !important;
}

.vehicle-card-head {
  min-height: 26px !important;
  margin-bottom: 10px !important;
}

.vehicle-badge,
.category,
.badge {
  background: var(--pro-yellow) !important;
  color: #111827 !important;
  border-radius: 999px !important;
  padding: 6px 12px !important;
  font-size: 11px !important;
  line-height: 1 !important;
  font-weight: 650 !important;
  letter-spacing: -.01em !important;
}

.vehicle-card h3,
.vehicle-title,
.card-body h3 {
  margin: 0 0 10px 0 !important;
  min-height: 52px !important;
  font-size: clamp(21px, 1.55vw, 25px) !important;
  line-height: 1.18 !important;
  letter-spacing: -.032em !important;
  font-weight: 650 !important;
  color: #07090d !important;
  box-shadow: none !important;
}

.vehicle-card h3 a {
  color: inherit !important;
  text-decoration: none !important;
}

.vehicle-card h3 a:hover {
  text-decoration: none !important;
  color: #202633 !important;
}

.vehicle-meta {
  color: #354052 !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
  margin-bottom: 18px !important;
  font-weight: 400 !important;
}

.vehicle-price-area {
  border-top: 1px solid rgba(15,23,42,.07) !important;
  padding-top: 15px !important;
}

.vehicle-installment {
  color: #111827 !important;
  font-weight: 650 !important;
  font-size: 15px !important;
}

.vehicle-credit-price,
.vehicle-cash-price {
  font-size: 15px !important;
  line-height: 1.45 !important;
  font-weight: 500 !important;
}

.vehicle-credit-price {
  color: #d92d20 !important;
}

.vehicle-cash-price {
  color: #576071 !important;
}

.vehicle-actions {
  gap: 10px !important;
  margin-top: 18px !important;
}

.btn,
button[type="submit"],
.vehicle-actions .btn {
  border-radius: 999px !important;
  font-weight: 600 !important;
  letter-spacing: -.01em !important;
  box-shadow: none !important;
}

.vehicle-actions .btn {
  min-height: 44px !important;
  padding: 10px 14px !important;
}

input,
select,
textarea {
  border-radius: 16px !important;
  border: 1px solid rgba(15,23,42,.14) !important;
  background: #ffffff !important;
  color: #111827 !important;
  font-weight: 500 !important;
  font-size: 15px !important;
}

select option {
  font-weight: 500 !important;
}

input:focus,
select:focus,
textarea:focus {
  outline: none !important;
  border-color: rgba(17,24,39,.56) !important;
  box-shadow: 0 0 0 4px rgba(17,24,39,.08) !important;
}

.admin-card,
.form-panel,
.panel,
.auth-card,
.contact-card,
.why-card {
  border-radius: 24px !important;
  border: 1px solid var(--pro-line) !important;
  box-shadow: 0 12px 32px rgba(15,23,42,.06) !important;
}

.floating-contact,
.floating-contact-button,
.floating-contact-panel,
.floating-contact-option[href*="chat"],
a[href="chat.php"],
a[href="live-chat.php"],
a[href="admin-chat.php"] {
  display: none !important;
}

@media (max-width: 1100px) {
  .vehicle-grid,
  .product-grid-centered {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  :root {
    --site-header-height: 76px;
  }

  body {
    padding-top: var(--site-header-height) !important;
  }

  .nav {
    width: min(100% - 24px, 1420px) !important;
    min-height: var(--site-header-height) !important;
  }

  .brand-logo-img {
    width: 136px !important;
    height: 42px !important;
  }

  .nav-contact {
    display: none !important;
  }

  .nav-menu a {
    font-size: 14px !important;
    padding: 11px 14px !important;
  }

  .hero-slider.poster-slider,
  .image-poster-slider {
    aspect-ratio: 16 / 8.8 !important;
  }

  .container {
    width: min(100% - 28px, 1420px) !important;
  }

  .vehicle-grid,
  .product-grid-centered {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 22px !important;
  }

  .vehicle-image-link {
    height: 225px !important;
  }

  .vehicle-card h3,
  .vehicle-title,
  .card-body h3 {
    font-size: 21px !important;
    min-height: auto !important;
  }
}

@media (max-width: 520px) {
  .hero-slider.poster-slider,
  .image-poster-slider {
    aspect-ratio: 16 / 10.5 !important;
  }

  .vehicle-body,
  .card-body {
    padding: 19px !important;
  }
}

/* Publish-ready upgrade: logo, filters, pagination, mobile, skeleton, testimonials, admin */
.brand-logo-img,
.footer-brand-logo-wrap img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  border: 2px solid rgba(255,255,255,.9);
  box-shadow: 0 10px 28px rgba(0,0,0,.16);
}
.nav-brand { border-radius: 999px; overflow: visible; }
.catalog-filter {
  margin: 0 auto 22px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 50px rgba(15,23,42,.10);
  border: 1px solid rgba(15,23,42,.08);
}
.catalog-search-row { display: grid; grid-template-columns: 1fr auto auto; gap: 12px; margin-bottom: 14px; }
.catalog-filter input,
.catalog-filter select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(15,23,42,.14);
  border-radius: 14px;
  padding: 0 14px;
  font-weight: 700;
  color: #111827;
  background: #fff;
}
.catalog-filter-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.catalog-result-info { margin: 8px 0 18px; font-weight: 800; color: #334155; }
.pagination { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin: 34px 0 10px; }
.page-link { padding: 11px 15px; border-radius: 999px; border: 1px solid rgba(15,23,42,.12); background: #fff; color: #111827; text-decoration: none; font-weight: 900; }
.page-link.active { background: #111827; color: #fff; }
.page-link.disabled { opacity: .45; pointer-events: none; }
.catalog-skeleton { display: none; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 18px; }
.catalog-skeleton.is-visible { display: grid; }
.skeleton-card { border-radius: 22px; background: #fff; padding: 14px; box-shadow: 0 16px 40px rgba(15,23,42,.10); }
.skeleton-card span, .skeleton-card b, .skeleton-card em, .skeleton-card i { display: block; border-radius: 14px; background: linear-gradient(90deg,#eef2f7,#f8fafc,#eef2f7); background-size: 200% 100%; animation: skeletonMove 1.1s infinite; }
.skeleton-card span { height: 190px; margin-bottom: 16px; }
.skeleton-card b { height: 24px; width: 78%; margin-bottom: 10px; }
.skeleton-card em { height: 16px; width: 56%; margin-bottom: 16px; }
.skeleton-card i { height: 42px; width: 100%; }
@keyframes skeletonMove { to { background-position: -200% 0; } }
.why-card { overflow: hidden; border: 1px solid rgba(15,23,42,.08); box-shadow: 0 18px 46px rgba(15,23,42,.10); }
.why-body { background: linear-gradient(180deg,#ffffff 0%,#f8fafc 100%); }
.why-body h3 { color: #111827; letter-spacing: -.02em; }
.why-body p { color: #334155; line-height: 1.7; }
.why-icon { background: #111827; color: #fff; border-radius: 16px; box-shadow: 0 10px 24px rgba(17,24,39,.22); }
.testimonial-section { margin: 70px 0; }
.testimonial-grid { 
  display: grid; 
  grid-template-columns: repeat(3, minmax(0,1fr)); 
  gap: 18px; 
  overflow: hidden;
  position: relative;
}
.testimonial-slider {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}
@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
.testimonial-card { padding: 24px; border-radius: 24px; background: #111827; color: #fff; box-shadow: 0 18px 46px rgba(15,23,42,.18); }
.testimonial-card p { color: rgba(255,255,255,.86); line-height: 1.75; }
.testimonial-card strong { display: block; margin-top: 18px; }
.testimonial-card span { color: rgba(255,255,255,.65); font-weight: 700; }
.stars { color: #fbbf24; letter-spacing: 2px; margin-bottom: 12px; }
.floating-whatsapp-btn {
  position: fixed !important;
  right: max(22px, env(safe-area-inset-right)) !important;
  bottom: max(22px, env(safe-area-inset-bottom)) !important;
  z-index: 100000 !important;
  display: block !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

.floating-whatsapp-btn a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  min-height: 52px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: #25d366 !important;
  box-shadow: 0 10px 24px rgba(37, 211, 102, .36), 0 4px 12px rgba(15, 23, 42, .18) !important;
  overflow: hidden !important;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease !important;
}

.floating-whatsapp-btn a:hover {
  background: #1ebe5d !important;
  box-shadow: 0 14px 30px rgba(37, 211, 102, .42), 0 6px 16px rgba(15, 23, 42, .2) !important;
  transform: translateY(-2px) !important;
}

.floating-whatsapp-btn a:focus-visible {
  outline: 3px solid rgba(37, 211, 102, .28) !important;
  outline-offset: 4px !important;
}

.floating-whatsapp-btn img {
  display: block !important;
  width: 29px !important;
  height: 29px !important;
  max-width: 29px !important;
  max-height: 29px !important;
  object-fit: contain !important;
  filter: brightness(0) invert(1) !important;
}
.admin-shell, .admin-container, .admin-page { border-radius: 24px; }
.admin-card, .dashboard-card, .table-card, .form-box { border-radius: 22px !important; box-shadow: 0 16px 46px rgba(15,23,42,.10) !important; border: 1px solid rgba(15,23,42,.08) !important; }
@media (max-width: 900px) {
  .catalog-filter-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .catalog-skeleton, .testimonial-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 760px) {
  .nav { align-items: center; }
  .nav-menu { position: absolute; top: calc(100% + 10px); left: 12px; right: 12px; display: none; flex-direction: column; padding: 16px; border-radius: 22px; background: rgba(255,255,255,.98); box-shadow: 0 20px 50px rgba(15,23,42,.18); }
  .nav.nav-open .nav-menu { display: flex; }
  .nav-contact { display: none; }
  .catalog-search-row { grid-template-columns: 1fr; }
  .catalog-filter-grid, .catalog-skeleton, .testimonial-grid { grid-template-columns: 1fr; }
  .vehicle-grid { grid-template-columns: 1fr !important; gap: 18px; }
  .floating-whatsapp-btn {
    right: max(16px, env(safe-area-inset-right)) !important;
    bottom: max(16px, env(safe-area-inset-bottom)) !important;
  }
  .floating-whatsapp-btn a {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
  }
  .floating-whatsapp-btn img {
    width: 27px !important;
    height: 27px !important;
    max-width: 27px !important;
    max-height: 27px !important;
  }
  .brand-logo-img { width: 58px; height: 58px; }
}

/* =========================================================
   PRODUCTION LIGHT UI LOCK - 2026-07-01
   Final override for readable text, real PNG logo, compact mobile filters.
   ========================================================= */
:root {
  --bg: #f4f6f8 !important;
  --panel: #ffffff !important;
  --panel-soft: #f8fafc !important;
  --ink: #111827 !important;
  --muted: #4b5563 !important;
  --line: #e5e7eb !important;
  --dark: #0b0f19 !important;
  --accent: #ffd338 !important;
  --radius: 18px !important;
  --shadow-soft: 0 14px 36px rgba(15, 23, 42, .08) !important;
  --shadow-strong: 0 24px 56px rgba(15, 23, 42, .14) !important;
}

html,
body {
  color: var(--ink) !important;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 54%, #eef2f6 100%) !important;
}

body,
input,
select,
textarea,
button {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !important;
}

.meta,
.title-subtitle,
.vehicle-meta,
.vehicle-cash-price,
.contact-card p,
.why-body p,
.detail-info p,
.selected-product-contact p {
  color: #4b5563 !important;
}

h1,
h2,
h3,
h4,
.vehicle-title,
.vehicle-card h3,
.card-body h3,
.detail-info h1 {
  color: #111827 !important;
}

.section-title p,
.why-title p,
.contact-label {
  color: #6f5600 !important;
}

.header {
  background: rgba(255, 255, 255, .97) !important;
  border-bottom: 1px solid rgba(15, 23, 42, .08) !important;
  box-shadow: 0 8px 28px rgba(15, 23, 42, .07) !important;
}

.nav {
  grid-template-columns: minmax(190px, 1fr) auto minmax(160px, 1fr) !important;
}

.nav-brand {
  min-width: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

.brand-logo-img {
  width: 218px !important;
  height: 66px !important;
  max-width: min(218px, 44vw) !important;
  object-fit: contain !important;
  object-position: left center !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 !important;
}

.nav-menu {
  background: #f6f7f9 !important;
  border-color: rgba(15, 23, 42, .09) !important;
}

.nav-menu a {
  color: #374151 !important;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: #111827 !important;
  color: #ffffff !important;
}

.nav-contact span {
  color: #6b7280 !important;
}

.nav-contact strong {
  color: #111827 !important;
}

.catalog-filter {
  max-width: 1180px !important;
  padding: 18px !important;
  border-radius: 20px !important;
  background: #ffffff !important;
  border: 1px solid rgba(15, 23, 42, .10) !important;
  box-shadow: 0 16px 38px rgba(15, 23, 42, .08) !important;
}

.catalog-search-row {
  grid-template-columns: minmax(260px, 1fr) auto auto !important;
  align-items: stretch !important;
}

.catalog-filter-details {
  margin-top: 12px !important;
}

.catalog-filter-details summary {
  display: none;
}

.catalog-filter-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.catalog-filter input,
.catalog-filter select,
input,
select,
textarea {
  min-height: 48px !important;
  color: #111827 !important;
  background: #ffffff !important;
  border: 1px solid rgba(15, 23, 42, .16) !important;
  border-radius: 14px !important;
  font-weight: 500 !important;
  box-shadow: none !important;
}

.catalog-filter input::placeholder,
input::placeholder,
textarea::placeholder {
  color: #7b8494 !important;
  opacity: 1 !important;
}

.catalog-result-info {
  color: #374151 !important;
}

.vehicle-card,
.card,
.contact-card,
.why-card,
.form-box,
.detail-info,
.gallery-box,
.map-box {
  background: #ffffff !important;
  border: 1px solid rgba(15, 23, 42, .10) !important;
  border-radius: 18px !important;
  box-shadow: 0 12px 34px rgba(15, 23, 42, .07) !important;
}

.vehicle-image-link {
  height: 248px !important;
  background: #eef2f6 !important;
}

.vehicle-image-link img,
.card img {
  object-fit: cover !important;
}

.vehicle-body,
.card-body {
  min-height: 0 !important;
  padding: 22px !important;
}

.vehicle-card h3,
.card-body h3 {
  min-height: 0 !important;
  font-size: clamp(20px, 1.5vw, 24px) !important;
  line-height: 1.22 !important;
}

.vehicle-badge,
.category,
.badge {
  background: #ffd338 !important;
  color: #111827 !important;
}

.vehicle-credit-price,
.detail-credit-price {
  color: #c81e1e !important;
}

.vehicle-installment {
  color: #111827 !important;
}

.btn,
button[type="submit"],
.page-link.active {
  background: #111827 !important;
  border-color: #111827 !important;
  color: #ffffff !important;
}

.btn.secondary,
.btn.light,
.page-link {
  background: #ffffff !important;
  border-color: rgba(15, 23, 42, .14) !important;
  color: #111827 !important;
}

.btn:hover,
.page-link:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .12) !important;
}

.footer-brand-logo-wrap {
  width: 210px !important;
  height: 78px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #ffffff !important;
  border-radius: 16px !important;
  padding: 10px !important;
  overflow: hidden !important;
}

.footer-brand-logo-wrap img {
  width: 190px !important;
  height: 58px !important;
  object-fit: contain !important;
  object-position: left center !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

.footer-pro .footer-brand-row {
  grid-template-columns: minmax(190px, 220px) minmax(0, 1fr) !important;
  align-items: center !important;
}

.footer-pro p,
.footer-pro .footer-links a,
.footer-pro .footer-bottom p,
.footer-pro .footer-contact-list span {
  color: rgba(255, 255, 255, .76) !important;
}

.footer-pro h3,
.footer-pro .footer-column h3,
.footer-pro .footer-contact-list strong {
  color: #ffffff !important;
}

.testimonial-card p,
.testimonial-card span {
  color: rgba(255, 255, 255, .82) !important;
}

@media (max-width: 1100px) {
  .catalog-filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  :root {
    --site-header-height: 74px !important;
  }

  body {
    padding-top: var(--site-header-height) !important;
  }

  .nav {
    width: min(100% - 24px, 1180px) !important;
    min-height: var(--site-header-height) !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 12px !important;
  }

  .brand-logo-img {
    width: 150px !important;
    height: 46px !important;
    max-width: 52vw !important;
  }

  .nav-toggle {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
  }

  .nav-menu {
    left: 0 !important;
    right: 0 !important;
    top: calc(100% + 8px) !important;
    border-radius: 16px !important;
    padding: 10px !important;
  }

  .nav-menu a {
    width: 100% !important;
    justify-content: flex-start !important;
    border-radius: 12px !important;
  }

  .products-page {
    padding-top: 34px !important;
  }

  .catalog-filter {
    padding: 14px !important;
    border-radius: 16px !important;
    margin-bottom: 16px !important;
  }

  .catalog-search-row {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    margin-bottom: 0 !important;
  }

  .catalog-search-row input[type="search"] {
    grid-column: 1 / -1 !important;
  }

  .catalog-search-row .btn {
    min-height: 44px !important;
    padding: 10px 12px !important;
  }

  .catalog-filter-details {
    margin-top: 10px !important;
  }

  .catalog-filter-details summary {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    min-height: 46px !important;
    padding: 0 14px !important;
    border: 1px solid rgba(15, 23, 42, .14) !important;
    border-radius: 14px !important;
    color: #111827 !important;
    background: #f8fafc !important;
    cursor: pointer !important;
    list-style: none !important;
    font-weight: 700 !important;
  }

  .catalog-filter-details summary::-webkit-details-marker {
    display: none !important;
  }

  .catalog-filter-details summary::after {
    content: "+";
    display: inline-flex;
    width: 26px;
    height: 26px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #111827;
    color: #ffffff;
    font-weight: 800;
    line-height: 1;
  }

  .catalog-filter-details[open] summary::after {
    content: "-";
  }

  .catalog-filter-details summary strong {
    color: #6b7280 !important;
    font-size: 12px !important;
    font-weight: 600 !important;
  }

  .catalog-filter-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-top: 10px !important;
  }

  .catalog-filter input,
  .catalog-filter select {
    min-height: 46px !important;
  }

  .catalog-result-info {
    margin: 4px 0 14px !important;
    font-size: 14px !important;
  }

  .vehicle-grid,
  .product-grid-centered {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .vehicle-card,
  .card {
    border-radius: 16px !important;
  }

  .vehicle-image-link {
    height: 218px !important;
  }

  .vehicle-body,
  .card-body {
    padding: 18px !important;
  }

  .vehicle-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .vehicle-actions .btn {
    width: 100% !important;
  }

  .footer-brand-logo-wrap img {
    width: 150px !important;
    height: 46px !important;
  }

  .footer-brand-logo-wrap {
    width: 170px !important;
    height: 64px !important;
  }

  .footer-pro .footer-brand-row {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
}

@media (max-width: 420px) {
  .brand-logo-img {
    width: 134px !important;
    height: 42px !important;
  }

  .section-title h2,
  .why-title h2 {
    font-size: 29px !important;
  }

  .vehicle-image-link {
    height: 202px !important;
  }
}

/* =========================================================
   REQUEST POLISH: logo, advantage contrast, testimonials
   ========================================================= */
.header .brand-logo-img {
  width: 246px !important;
  height: 76px !important;
  max-width: min(246px, 48vw) !important;
  padding: 4px 0 !important;
  object-fit: contain !important;
  object-position: left center !important;
  background: #ffffff !important;
  border-radius: 8px !important;
}

.footer-brand-logo-wrap {
  width: 246px !important;
  height: 92px !important;
  border-radius: 12px !important;
  padding: 12px !important;
}

.footer-brand-logo-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: left center !important;
}

.footer-pro .footer-brand-row {
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr) !important;
}

.why-section {
  background: linear-gradient(180deg, #05070d 0%, #05070d 46%, #f7f8fb 46%, #f7f8fb 100%) !important;
}

.why-section .why-title h2 {
  color: #ffffff !important;
  letter-spacing: 0 !important;
  text-shadow: 0 12px 28px rgba(0, 0, 0, .38) !important;
}

.why-section .why-title p {
  color: #ffd338 !important;
  letter-spacing: .18em !important;
}

.why-section .why-card {
  background: #05070d !important;
  border: 1px solid rgba(255, 255, 255, .18) !important;
  box-shadow: 0 22px 50px rgba(15, 23, 42, .16) !important;
}

.why-section .why-body {
  background: linear-gradient(180deg, #05070d 0%, #0a1020 100%) !important;
}

.why-section .why-body h3 {
  color: #ffffff !important;
  letter-spacing: 0 !important;
}

.why-section .why-body p {
  color: #d9e7ff !important;
  font-weight: 500 !important;
}

.testimonial-section {
  margin: 86px 0 !important;
}

.testimonial-grid.testimonial-slider {
  display: grid !important;
  grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  gap: 18px !important;
  overflow: visible !important;
  transform: none !important;
  width: 100% !important;
}

.testimonial-card {
  position: relative !important;
  isolation: isolate !important;
  grid-column: span 4 !important;
  min-height: 268px !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 24px !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  background: linear-gradient(145deg, #080d18 0%, #111827 54%, #172554 100%) !important;
  border: 1px solid rgba(255, 255, 255, .12) !important;
  box-shadow: 0 24px 54px rgba(15, 23, 42, .18) !important;
  color: #ffffff !important;
}

.testimonial-card:nth-child(4),
.testimonial-card:nth-child(5) {
  grid-column: span 6 !important;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #ffd338, #ffffff, #38bdf8);
  z-index: 0;
}

.testimonial-card > * {
  position: relative;
  z-index: 1;
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.stars {
  color: #ffd338 !important;
  letter-spacing: 0 !important;
  margin-bottom: 0 !important;
  font-size: 18px;
  line-height: 1;
}

.testimonial-card .testimonial-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #ffd338;
  color: #111827 !important;
  font-size: 12px;
  font-weight: 800;
}

.testimonial-card p {
  color: #e5edf9 !important;
  font-size: 15px;
  line-height: 1.72;
  margin: 0 0 22px;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testimonial-card .testimonial-avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 900;
}

.testimonial-card strong {
  display: block !important;
  margin-top: 0 !important;
  color: #ffffff !important;
  line-height: 1.2;
}

.testimonial-profile span:not(.testimonial-avatar) {
  display: block;
  margin-top: 4px;
  color: #b8c7d9 !important;
  font-weight: 700;
}

@media (max-width: 980px) {
  .testimonial-card,
  .testimonial-card:nth-child(4),
  .testimonial-card:nth-child(5) {
    grid-column: span 6 !important;
  }
}

@media (max-width: 760px) {
  .header .brand-logo-img {
    width: 176px !important;
    height: 58px !important;
    max-width: 50vw !important;
  }

  .footer-brand-logo-wrap {
    width: 188px !important;
    height: 72px !important;
  }
}

@media (max-width: 640px) {
  .testimonial-card,
  .testimonial-card:nth-child(4),
  .testimonial-card:nth-child(5) {
    grid-column: span 12 !important;
  }

  .testimonial-top {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .header .brand-logo-img {
    width: 146px !important;
    height: 48px !important;
  }
}

/* Final lock for dark advantage panels. */
body .why-section .why-title .why-eyebrow-contrast,
body .home-why-section .why-title .why-eyebrow-contrast,
body .why-page .why-section .why-title .why-eyebrow-contrast {
  color: #ffd338 !important;
  -webkit-text-fill-color: #ffd338 !important;
  opacity: 1 !important;
}

body .why-section .why-title .why-heading-contrast,
body .home-why-section .why-title .why-heading-contrast,
body .why-page .why-section .why-title .why-heading-contrast {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
  text-shadow: 0 10px 28px rgba(0, 0, 0, .5) !important;
}

body .why-section .why-card .why-body .why-copy-contrast,
body .home-why-section .why-card .why-body .why-copy-contrast,
body .why-page .why-section .why-card .why-body .why-copy-contrast {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
  font-weight: 500 !important;
}

/* =========================================================
   FOOTER + TESTIMONIAL MONOCHROME POLISH
   Cleans up older color accents and cramped footer columns.
   ========================================================= */
.site-footer.footer.footer-pro {
  background: #050505 !important;
  color: #ffffff !important;
  margin-top: 88px !important;
  border-top: 1px solid #1f1f1f !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04) !important;
}

.footer-pro::before {
  display: none !important;
}

.footer-pro .footer-shell {
  width: min(1320px, calc(100% - 48px)) !important;
  padding: 56px 0 42px !important;
  display: grid !important;
  grid-template-columns: minmax(420px, 1.22fr) repeat(3, minmax(170px, .7fr)) !important;
  gap: 48px !important;
  align-items: start !important;
}

.footer-pro .footer-brand-panel {
  padding: 28px !important;
  border-radius: 20px !important;
  background: linear-gradient(180deg, #111111 0%, #0b0b0b 100%) !important;
  border: 1px solid #2a2a2a !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34) !important;
}

.footer-pro .footer-brand-row {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 20px !important;
  align-items: start !important;
}

.footer-brand-logo-wrap {
  width: min(100%, 300px) !important;
  height: 112px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 14px !important;
  background: #ffffff !important;
  border: 1px solid #ffffff !important;
  padding: 14px !important;
  overflow: hidden !important;
}

.footer-brand-logo-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
}

.footer-pro .footer-brand-row h3 {
  margin: 0 0 10px !important;
  color: #ffffff !important;
  font-size: clamp(22px, 2vw, 30px) !important;
  line-height: 1.05 !important;
  letter-spacing: 0 !important;
}

.footer-pro .footer-brand-row p {
  max-width: 520px !important;
  margin: 0 !important;
  color: #d7d7d7 !important;
  font-size: 15px !important;
  line-height: 1.75 !important;
}

.footer-pro .footer-column {
  padding-top: 10px !important;
}

.footer-pro h3,
.footer-pro .footer-column h3 {
  color: #ffffff !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  margin: 0 0 20px !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  font-weight: 900 !important;
}

.footer-pro p,
.footer-pro .footer-links a,
.footer-pro .footer-bottom p,
.footer-pro .footer-contact-list span {
  color: #d8d8d8 !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
}

.footer-pro .footer-links {
  gap: 14px !important;
}

.footer-pro .footer-links a {
  color: #d8d8d8 !important;
  text-decoration: none !important;
}

.footer-pro .footer-links a:hover {
  color: #ffffff !important;
  transform: translateX(2px) !important;
}

.footer-pro .footer-address-card {
  margin-top: 24px !important;
  padding: 18px !important;
  border-radius: 16px !important;
  background: #161616 !important;
  border: 1px solid #303030 !important;
}

.footer-pro .footer-address-card span {
  color: #ffffff !important;
  letter-spacing: .12em !important;
}

.footer-pro .footer-address-card p {
  color: #e9e9e9 !important;
}

.footer-pro .footer-contact-list p {
  border-bottom: 1px solid #262626 !important;
}

.footer-pro .footer-contact-list strong {
  color: #ffffff !important;
}

.footer-pro .footer-contact-link {
  display: block !important;
  color: inherit !important;
  text-decoration: none !important;
  border-radius: 10px !important;
  transition: color .18s ease, transform .18s ease, background .18s ease !important;
}

.footer-pro .footer-contact-link span {
  color: #d8d8d8 !important;
}

.footer-pro .footer-contact-link:hover,
.footer-pro .footer-contact-link:focus-visible {
  background: rgba(255, 255, 255, .06) !important;
  transform: translateX(2px) !important;
  outline: none !important;
}

.footer-pro .footer-contact-link:hover span,
.footer-pro .footer-contact-link:focus-visible span {
  color: #ffffff !important;
}

.footer-pro .footer-cta-row {
  gap: 12px !important;
  margin-top: 20px !important;
}

.footer-pro .footer-cta-row a {
  min-height: 44px !important;
  padding: 10px 17px !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  border: 1px solid #ffffff !important;
  color: #050505 !important;
  box-shadow: none !important;
}

.footer-pro .footer-cta-row a + a {
  color: #ffffff !important;
  background: transparent !important;
  border-color: #555555 !important;
}

.footer-pro .footer-bottom {
  width: min(1320px, calc(100% - 48px)) !important;
  padding: 20px 0 28px !important;
  border-top: 1px solid #242424 !important;
}

.testimonial-section {
  margin: 90px 0 !important;
}

.testimonial-section .section-title p {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}

.testimonial-section .section-title h2 {
  color: #050505 !important;
  -webkit-text-fill-color: #050505 !important;
}

.testimonial-section .title-subtitle {
  color: #555555 !important;
  -webkit-text-fill-color: #555555 !important;
}

.testimonial-grid.testimonial-slider {
  display: grid !important;
  grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  gap: 20px !important;
  overflow: visible !important;
  transform: none !important;
}

.testimonial-card {
  grid-column: span 4 !important;
  min-height: 260px !important;
  padding: 26px !important;
  border-radius: 18px !important;
  background: #050505 !important;
  border: 1px solid #1f1f1f !important;
  box-shadow: 0 22px 54px rgba(0, 0, 0, .16) !important;
  color: #ffffff !important;
}

.testimonial-card:nth-child(4),
.testimonial-card:nth-child(5) {
  grid-column: span 6 !important;
}

.testimonial-card::before {
  height: 1px !important;
  background: #ffffff !important;
  opacity: .16 !important;
}

.testimonial-top {
  align-items: flex-start !important;
  margin-bottom: 22px !important;
}

.stars {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: 15px !important;
  letter-spacing: 2px !important;
}

.testimonial-card .testimonial-badge {
  min-height: 28px !important;
  padding: 0 11px !important;
  background: transparent !important;
  border: 1px solid #ffffff !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.testimonial-card p {
  color: #f4f4f4 !important;
  -webkit-text-fill-color: #f4f4f4 !important;
  font-size: 15px !important;
  line-height: 1.75 !important;
}

.testimonial-card .testimonial-avatar {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: #050505 !important;
  -webkit-text-fill-color: #050505 !important;
}

.testimonial-card strong {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.testimonial-profile span:not(.testimonial-avatar) {
  color: #bfbfbf !important;
  -webkit-text-fill-color: #bfbfbf !important;
}

@media (max-width: 1100px) {
  .footer-pro .footer-shell {
    grid-template-columns: minmax(0, 1.25fr) minmax(180px, .75fr) minmax(180px, .75fr) !important;
  }

  .footer-pro .footer-contact-box {
    grid-column: 2 / 4 !important;
  }
}

@media (max-width: 900px) {
  .footer-pro .footer-shell,
  .footer-pro .footer-bottom {
    width: min(100% - 32px, 720px) !important;
  }

  .footer-pro .footer-shell {
    grid-template-columns: 1fr 1fr !important;
    gap: 30px !important;
  }

  .footer-pro .footer-brand-panel,
  .footer-pro .footer-contact-box {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 760px) {
  .footer-pro .footer-shell {
    grid-template-columns: 1fr !important;
    gap: 26px !important;
    padding-top: 42px !important;
  }

  .footer-pro .footer-contact-box {
    grid-column: auto !important;
  }

  .footer-pro .footer-brand-panel {
    padding: 22px !important;
  }

  .footer-brand-logo-wrap {
    width: min(100%, 260px) !important;
    height: 98px !important;
  }

  .footer-pro .footer-bottom {
    align-items: flex-start !important;
    flex-direction: column !important;
  }
}

@media (max-width: 980px) {
  .testimonial-card,
  .testimonial-card:nth-child(4),
  .testimonial-card:nth-child(5) {
    grid-column: span 6 !important;
  }
}

@media (max-width: 640px) {
  .testimonial-card,
  .testimonial-card:nth-child(4),
  .testimonial-card:nth-child(5) {
    grid-column: span 12 !important;
  }
}

/* =========================================================
   PREMIUM ADVANTAGE SECTION
   A cleaner black-white treatment for Keunggulan cards.
   ========================================================= */
.why-page {
  padding-top: 38px !important;
}

.why-page > .section-title {
  margin-bottom: 34px !important;
}

.why-section,
.home-why-section {
  position: relative !important;
  isolation: isolate !important;
  margin: 44px auto 90px !important;
  padding: clamp(56px, 6vw, 86px) clamp(18px, 3vw, 42px) clamp(68px, 7vw, 98px) !important;
  border-radius: 26px !important;
  overflow: hidden !important;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    #050609 !important;
  background-size: 44px 44px, 44px 44px, auto !important;
  border: 1px solid rgba(255, 255, 255, .08) !important;
  box-shadow: 0 28px 70px rgba(15, 23, 42, .14) !important;
}

.why-section::after,
.home-why-section::after {
  display: none !important;
}

.why-section::before,
.home-why-section::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  background: linear-gradient(180deg, rgba(255,255,255,.04), transparent 28%) !important;
  z-index: -1 !important;
}

.why-section .why-title {
  max-width: 860px !important;
  margin: 0 auto 42px !important;
}

.why-section .why-title .why-eyebrow-contrast {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 30px !important;
  padding: 0 14px !important;
  border: 1px solid rgba(255,255,255,.28) !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.06) !important;
  font-size: 11px !important;
  letter-spacing: .18em !important;
}

.why-section .why-title .why-heading-contrast {
  margin-top: 18px !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: clamp(34px, 4.7vw, 62px) !important;
  line-height: .98 !important;
  letter-spacing: 0 !important;
  text-shadow: 0 18px 42px rgba(0,0,0,.34) !important;
}

.why-grid {
  counter-reset: advantage-card !important;
  width: min(1380px, 100%) !important;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: clamp(16px, 1.7vw, 24px) !important;
  align-items: stretch !important;
}

.why-card {
  counter-increment: advantage-card !important;
  position: relative !important;
  min-height: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  border-radius: 20px !important;
  background: #ffffff !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  box-shadow: 0 26px 62px rgba(0,0,0,.24) !important;
}

.why-card:nth-child(even) {
  transform: translateY(24px) !important;
}

.why-card::before {
  content: "0" counter(advantage-card) !important;
  position: absolute !important;
  top: 14px !important;
  left: 14px !important;
  z-index: 2 !important;
  height: 34px !important;
  min-width: 44px !important;
  padding: 0 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  background: rgba(5, 6, 9, .88) !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: .08em !important;
  border: 1px solid rgba(255,255,255,.22) !important;
}

.why-media-image,
.why-media-image.media-quality,
.why-media-image.media-document,
.why-media-image.media-warranty,
.why-media-image.media-service,
.why-media-image.media-support {
  height: clamp(180px, 16vw, 230px) !important;
  background: #111111 !important;
}

.why-media-image::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.28)) !important;
  pointer-events: none !important;
}

.why-media-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transform: scale(1.02) !important;
}

.why-body {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 24px 24px 28px !important;
  background: linear-gradient(180deg, #090b12 0%, #050609 100%) !important;
  color: #ffffff !important;
  text-align: left !important;
}

.why-body h3 {
  min-height: auto !important;
  display: block !important;
  margin: 0 0 14px !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: clamp(17px, 1.2vw, 20px) !important;
  line-height: 1.15 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

body .why-section .why-card .why-body .why-copy-contrast,
body .home-why-section .why-card .why-body .why-copy-contrast,
body .why-page .why-section .why-card .why-body .why-copy-contrast {
  margin: 0 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: 14px !important;
  line-height: 1.72 !important;
  font-weight: 600 !important;
}

.why-body::after {
  content: "" !important;
  width: 44px !important;
  height: 2px !important;
  margin-top: 22px !important;
  background: #ffffff !important;
  opacity: .72 !important;
}

.why-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 34px 78px rgba(0,0,0,.30) !important;
}

.why-card:nth-child(even):hover {
  transform: translateY(14px) !important;
}

@media (max-width: 1180px) {
  .why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .why-card:nth-child(even) {
    transform: none !important;
  }

  .why-card:hover,
  .why-card:nth-child(even):hover {
    transform: translateY(-4px) !important;
  }
}

@media (max-width: 760px) {
  .why-section,
  .home-why-section {
    width: min(100%, 720px) !important;
    margin-top: 32px !important;
    padding: 42px 14px 54px !important;
    border-radius: 22px !important;
  }

  .why-grid {
    grid-template-columns: 1fr !important;
    width: min(100%, 520px) !important;
  }

  .why-card,
  .why-card:hover,
  .why-card:nth-child(even),
  .why-card:nth-child(even):hover {
    transform: none !important;
  }

  .why-body {
    padding: 22px !important;
    text-align: center !important;
  }

  .why-body::after {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* Home poster centered: keep the original contained poster feel */
html,
body {
  overflow-x: hidden !important;
}

.home-hero.poster-hero,
.home-hero.image-poster-hero {
  width: 100vw !important;
  max-width: 100vw !important;
  margin: 0 calc(50% - 50vw) !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: #ffffff !important;
  overflow: hidden !important;
}

.hero-slider.poster-slider,
.image-poster-slider {
  width: 100vw !important;
  max-width: 100vw !important;
  height: clamp(430px, 39vw, 744px) !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  border-radius: 0 !important;
  background: #ffffff !important;
  overflow: hidden !important;
}

.image-poster-slide,
.hero-slide.image-poster-slide,
.poster-image-link,
.poster-image {
  width: 100% !important;
  height: 100% !important;
}

.poster-image {
  display: block !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #ffffff !important;
}

@media (max-width: 760px) {
  .hero-slider.poster-slider,
  .image-poster-slider {
    height: clamp(260px, 88vw, 430px) !important;
  }
}

/* Mobile compact sliders for advantage and testimonial cards. */
@media (max-width: 760px) {
  .why-grid,
  .testimonial-grid.testimonial-slider {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 14px !important;
    width: 100% !important;
    max-width: none !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    scroll-padding-inline: 4px !important;
    padding: 0 4px 12px !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior-x: contain !important;
    scrollbar-width: none !important;
  }

  .why-grid::-webkit-scrollbar,
  .testimonial-grid.testimonial-slider::-webkit-scrollbar {
    display: none !important;
  }

  .why-card,
  .why-card:hover,
  .why-card:nth-child(even),
  .why-card:nth-child(even):hover,
  .testimonial-card,
  .testimonial-card:nth-child(4),
  .testimonial-card:nth-child(5) {
    flex: 0 0 min(86%, 360px) !important;
    width: min(86%, 360px) !important;
    max-width: 360px !important;
    scroll-snap-align: start !important;
    scroll-snap-stop: always !important;
    transform: none !important;
  }

  .testimonial-section {
    margin: 58px 0 !important;
  }

  .testimonial-card {
    min-height: 252px !important;
  }
}

@media (max-width: 420px) {
  .why-card,
  .why-card:hover,
  .why-card:nth-child(even),
  .why-card:nth-child(even):hover,
  .testimonial-card,
  .testimonial-card:nth-child(4),
  .testimonial-card:nth-child(5) {
    flex-basis: 88% !important;
    width: 88% !important;
  }
}

/* Instagram preview before footer. */
.instagram-preview-section {
  width: min(960px, calc(100% - 32px)) !important;
  margin: 78px auto 92px !important;
  text-align: center !important;
}

.instagram-profile {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 14px !important;
  margin-bottom: 36px !important;
}

.instagram-profile h2 {
  color: #050505 !important;
  -webkit-text-fill-color: #050505 !important;
  font-size: clamp(26px, 3vw, 38px) !important;
  line-height: 1.05 !important;
  letter-spacing: 0 !important;
}

.instagram-follow-btn {
  min-height: 40px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 0 21px !important;
  border-radius: 999px !important;
  border: 1px solid #050505 !important;
  background: #ffffff !important;
  color: #050505 !important;
  -webkit-text-fill-color: #050505 !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .10) !important;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease !important;
}

.instagram-follow-btn:hover {
  background: #f7f7f7 !important;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .16) !important;
  transform: translateY(-2px) !important;
}

.instagram-glyph {
  position: relative !important;
  width: 18px !important;
  height: 18px !important;
  flex: 0 0 18px !important;
  border-radius: 6px !important;
  background: radial-gradient(circle at 72% 28%, #ffffff 0 9%, transparent 10%),
    radial-gradient(circle at 50% 50%, transparent 0 28%, #ffffff 29% 42%, transparent 43%),
    linear-gradient(135deg, #7c3aed, #ec4899 45%, #f59e0b) !important;
}

.instagram-feed-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(8px, 1vw, 14px) !important;
  width: 100% !important;
}

.instagram-feed-item {
  position: relative !important;
  display: block !important;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden !important;
  border-radius: 6px !important;
  background: #e9edf2 !important;
  border: 1px solid rgba(15, 23, 42, .08) !important;
  box-shadow: 0 14px 32px rgba(15, 23, 42, .08) !important;
}

.instagram-feed-item img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center top !important;
  transition: transform .28s ease, filter .28s ease !important;
}

.instagram-feed-item:hover img {
  filter: brightness(.86) !important;
  transform: scale(1.04) !important;
}

.instagram-feed-mark {
  pointer-events: none !important;
}

.instagram-feed-gallery .instagram-feed-mark {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  width: 18px !important;
  height: 18px !important;
  border: 2px solid #ffffff !important;
  border-radius: 3px !important;
  box-shadow: -5px 5px 0 -2px rgba(255, 255, 255, .92) !important;
}

.instagram-feed-video .instagram-feed-mark {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  width: 42px !important;
  height: 42px !important;
  transform: translate(-50%, -50%) !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, .86) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22) !important;
}

.instagram-feed-video .instagram-feed-mark::before {
  content: "" !important;
  position: absolute !important;
  left: 17px !important;
  top: 12px !important;
  width: 0 !important;
  height: 0 !important;
  border-top: 9px solid transparent !important;
  border-bottom: 9px solid transparent !important;
  border-left: 13px solid #111111 !important;
}

@media (max-width: 980px) {
  .instagram-preview-section {
    width: min(760px, calc(100% - 32px)) !important;
  }
}

@media (max-width: 760px) {
  .instagram-preview-section {
    width: min(100% - 24px, 520px) !important;
    margin: 54px auto 66px !important;
  }

  .instagram-profile {
    gap: 12px !important;
    margin-bottom: 28px !important;
  }

  .instagram-feed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .instagram-feed-item {
    border-radius: 4px !important;
  }
}

@media (max-width: 420px) {
  .instagram-preview-section {
    width: calc(100% - 18px) !important;
  }

  .instagram-feed-grid {
    gap: 6px !important;
  }

  .instagram-profile h2 {
    font-size: 28px !important;
  }

  .instagram-follow-btn {
    min-height: 38px !important;
    padding: 0 18px !important;
  }
}

/* =========================================================
   ADMIN QUICK UPLOAD + FINAL BLACK/WHITE OVERRIDE
   ========================================================= */
.professional-form {
  max-width: 1040px !important;
}

.admin-smart-panel {
  background: #ffffff !important;
  border: 1px solid #d8d8d8 !important;
  border-radius: 12px !important;
  box-shadow: none !important;
}

.admin-smart-panel h3,
.admin-smart-panel p,
.smart-product-form .form-row label,
.smart-product-form .meta {
  letter-spacing: 0 !important;
}

.admin-smart-panel h3 {
  color: #000000 !important;
  font-weight: 650 !important;
}

.admin-smart-panel p,
.smart-product-form .meta {
  color: #4b4b4b !important;
}

.smart-product-form .form-row label {
  color: #000000 !important;
  font-weight: 600 !important;
}

.smart-product-form input,
.smart-product-form select,
.smart-product-form textarea {
  min-height: 48px !important;
  border-radius: 10px !important;
  border: 1px solid #c9c9c9 !important;
  background: #ffffff !important;
  color: #000000 !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  box-shadow: none !important;
}

.smart-product-form input:focus,
.smart-product-form select:focus,
.smart-product-form textarea:focus {
  border-color: #000000 !important;
  outline: 2px solid rgba(0, 0, 0, .12) !important;
  box-shadow: none !important;
}

.admin-optional-fields {
  margin: 18px 0 20px !important;
  border: 1px solid #d8d8d8 !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  overflow: hidden !important;
}

.admin-optional-fields summary {
  position: relative !important;
  min-height: 58px !important;
  padding: 13px 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  cursor: pointer !important;
  color: #000000 !important;
  background: #f7f7f7 !important;
  border-bottom: 1px solid transparent !important;
  list-style: none !important;
}

.admin-optional-fields[open] summary {
  border-bottom-color: #e4e4e4 !important;
}

.admin-optional-fields summary::-webkit-details-marker {
  display: none !important;
}

.admin-optional-fields summary span {
  font-weight: 650 !important;
}

.admin-optional-fields summary small {
  color: #555555 !important;
  font-size: 12.5px !important;
  line-height: 1.35 !important;
}

.admin-optional-fields summary::after {
  content: "+" !important;
  width: 28px !important;
  height: 28px !important;
  flex: 0 0 28px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 50% !important;
  background: #000000 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

.admin-optional-fields[open] summary::after {
  content: "-" !important;
}

.admin-optional-fields > .admin-form-grid,
.admin-optional-fields > .form-row {
  margin: 16px 16px 0 !important;
}

.admin-optional-fields > .form-row:last-child {
  margin-bottom: 16px !important;
}

.admin-form-actions {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
  margin-top: 18px !important;
}

.admin-form-actions .btn {
  min-height: 44px !important;
}

.why-section,
.home-why-section {
  background: #ffffff !important;
  border: 1px solid #d8d8d8 !important;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .08) !important;
}

.why-section::before,
.why-section::after,
.home-why-section::before,
.home-why-section::after {
  display: none !important;
}

.why-section .why-title p,
.why-section .why-title h2,
.why-section .why-title .why-eyebrow-contrast,
.why-section .why-title .why-heading-contrast {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  text-shadow: none !important;
  letter-spacing: 0 !important;
}

.why-card,
.why-section .why-card {
  background: #000000 !important;
  border: 1px solid #000000 !important;
  box-shadow: none !important;
}

.why-card::before {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #ffffff !important;
}

.why-media-image,
.why-media-image.media-quality,
.why-media-image.media-document,
.why-media-image.media-warranty,
.why-media-image.media-service,
.why-media-image.media-support {
  background: #000000 !important;
  filter: grayscale(1) !important;
}

.why-media-image img {
  filter: grayscale(1) contrast(1.03) !important;
}

.why-media-image::after {
  background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.22)) !important;
}

.why-body,
.why-section .why-body {
  background: #000000 !important;
  color: #ffffff !important;
}

.why-body h3,
.why-body p,
.why-section .why-body h3,
.why-section .why-body p,
body .why-section .why-card .why-body .why-copy-contrast,
body .home-why-section .why-card .why-body .why-copy-contrast,
body .why-page .why-section .why-card .why-body .why-copy-contrast {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  letter-spacing: 0 !important;
}

.why-body p,
.why-section .why-body p,
body .why-section .why-card .why-body .why-copy-contrast,
body .home-why-section .why-card .why-body .why-copy-contrast,
body .why-page .why-section .why-card .why-body .why-copy-contrast {
  font-weight: 500 !important;
}

.why-body::after {
  background: #ffffff !important;
  opacity: 1 !important;
}

@media (max-width: 760px) {
  .admin-optional-fields summary {
    align-items: flex-start !important;
    flex-direction: column !important;
    padding-right: 56px !important;
  }

  .admin-optional-fields summary::after {
    position: absolute !important;
    right: 14px !important;
    top: 15px !important;
  }

  .admin-form-actions .btn {
    width: 100% !important;
  }
}
