/* Landing pages — conversion-focused, tách khỏi main site */
:root {
  --lp-bg: #0a0e14;
  --lp-bg-soft: #121820;
  --lp-text: #eef2f8;
  --lp-muted: rgba(220, 228, 240, 0.78);
  --lp-gold: #feb938;
  --lp-gold-dark: #c98a1f;
  --lp-border: rgba(254, 185, 56, 0.22);
  --lp-header-h: 64px;
  --lp-scroll-offset: calc(var(--lp-header-h) + 12px);
  --lp-font-display: "Cinzel", "Palatino Linotype", Palatino, "Times New Roman", serif;
  --lp-font-body: "Cormorant Garamond", "EB Garamond", Georgia, "Times New Roman", serif;
  --lp-font-ui: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

html {
  scroll-behavior: smooth;
}

[id^="lp-"] {
  scroll-margin-top: var(--lp-scroll-offset);
}

.lp-body {
  font-family: var(--lp-font-body);
  font-size: 1.0625rem;
  background: var(--lp-bg);
  color: var(--lp-text);
  padding-bottom: 88px;
  -webkit-font-smoothing: antialiased;
}

/* Typography — phong cách hoàng gia / thượng lưu (đồng bộ royal-ui site chính) */
.lp-body--royal h1,
.lp-body--royal h2,
.lp-body--royal h3,
.lp-body--royal h4,
.lp-body--royal h5,
.lp-body--royal h6,
.lp-body--royal .lp-hero-title,
.lp-body--royal .lp-hero-title-accent,
.lp-body--royal .lp-hero-sub,
.lp-body--royal .lp-section-title,
.lp-body--royal .lp-form-title,
.lp-body--royal .lp-kicker,
.lp-body--royal .lp-hero-badge,
.lp-body--royal .lp-footer-title,
.lp-body--royal .lp-footer-brand-name,
.lp-body--royal .lp-stat-value,
.lp-body--royal .lp-policy-value,
.lp-body--royal .lp-amenity-num,
.lp-body--royal .lp-product-card .h5,
.lp-body--royal .accordion-button {
  font-family: var(--lp-font-display);
  letter-spacing: 0.04em;
}

.lp-body--royal .lp-kicker {
  letter-spacing: 0.12em;
  font-weight: 600;
}

.lp-body--royal .lp-section-title {
  font-weight: 700;
  letter-spacing: 0.03em;
}

.lp-body--royal .lp-hero-title {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.lp-body--royal .lp-hero-lead,
.lp-body--royal .lp-section-lead,
.lp-body--royal .lp-footer-intro,
.lp-body--royal .lp-highlight-list li,
.lp-body--royal .lp-amenity-block li,
.lp-body--royal .accordion-body {
  font-family: var(--lp-font-body);
  font-size: 1.05rem;
  line-height: 1.65;
}

.lp-body--royal .btn,
.lp-body--royal .lp-header-hotline,
.lp-body--royal .lp-nav-link,
.lp-body--royal .lp-nav-drawer-link,
.lp-body--royal .lp-brand-text,
.lp-body--royal .lp-hero-chip,
.lp-body--royal .lp-lead-form,
.lp-body--royal .lp-lead-form .form-label,
.lp-body--royal .lp-stat-label,
.lp-body--royal .lp-footer-legal-list a,
.lp-body--royal .lp-footer-copy,
.lp-body--royal .lp-footer-badge {
  font-family: var(--lp-font-ui);
}

.lp-body--royal .btn-gold,
.lp-body--royal a.btn-gold,
.lp-body--royal button.btn-gold {
  font-family: var(--lp-font-ui);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
}

.lp-body--royal .btn-outline-light,
.lp-body--royal .btn-hero-ghost {
  letter-spacing: 0.04em;
  font-size: 0.85rem;
}

.lp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--lp-header-h);
  background: rgba(10, 14, 20, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--lp-border);
}

.lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--lp-header-h);
  gap: 10px;
  min-width: 0;
}

.lp-header-center {
  min-width: 0;
  justify-self: stretch;
}

.lp-nav {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 2px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.lp-nav::-webkit-scrollbar {
  display: none;
}

.lp-nav-link {
  flex: 0 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 6px clamp(5px, 0.55vw, 10px);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--lp-muted);
  text-decoration: none;
  border-radius: 999px;
  white-space: nowrap;
  transition: color 0.18s ease, background 0.18s ease;
}

.lp-nav-link-icon {
  width: 0.9em;
  flex-shrink: 0;
  font-size: 0.72rem;
  opacity: 0.88;
  line-height: 1;
  text-align: center;
}

.lp-nav-link-text {
  line-height: 1.2;
}

.lp-nav-link:hover .lp-nav-link-icon,
.lp-nav-link.is-active .lp-nav-link-icon {
  opacity: 1;
  color: var(--lp-gold);
}

.lp-nav-link:hover,
.lp-nav-link.is-active {
  color: var(--lp-gold);
  background: rgba(254, 185, 56, 0.1);
}

.lp-nav-toggle {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--lp-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}

.lp-nav-drawer:not([hidden]) {
  pointer-events: auto;
}

.lp-nav-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.lp-nav-drawer.is-open .lp-nav-drawer-backdrop {
  opacity: 1;
}

.lp-nav-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 92vw);
  height: 100%;
  background: linear-gradient(180deg, #121820 0%, #0a0e14 100%);
  border-left: 1px solid var(--lp-border);
  padding: 16px;
  transform: translateX(100%);
  transition: transform 0.24s ease;
  overflow-y: auto;
}

.lp-nav-drawer.is-open .lp-nav-drawer-panel {
  transform: translateX(0);
}

.lp-nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.lp-nav-drawer-close {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--lp-text);
}

.lp-nav-drawer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 10px;
  color: var(--lp-text);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-nav-drawer-icon {
  width: 1.25rem;
  text-align: center;
  color: var(--lp-gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.lp-nav-drawer-link:hover,
.lp-nav-drawer-link.is-active {
  color: var(--lp-gold);
}

body.lp-nav-open {
  overflow: hidden;
}

.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lp-text);
  text-decoration: none;
  font-weight: 700;
  flex-shrink: 0;
  max-width: min(320px, 52vw);
}

.lp-brand-logo {
  display: block;
  height: 36px;
  width: auto;
  max-width: min(200px, 46vw);
  filter: brightness(1.14) saturate(1.12) contrast(1.04) drop-shadow(0 4px 14px rgba(242, 201, 114, 0.12));
}

.lp-brand-text {
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
  max-width: 12rem;
  color: rgba(255, 255, 255, 0.88);
}

.lp-footer-brand-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: 220px;
  filter: brightness(1.1) saturate(1.08) drop-shadow(0 4px 12px rgba(242, 201, 114, 0.1));
}

.lp-header-actions {
  justify-self: end;
}

.lp-header-hotline {
  color: var(--lp-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
  line-height: 1.2;
}

.lp-btn-cta {
  white-space: nowrap;
  flex-shrink: 0;
  padding-left: 14px;
  padding-right: 14px;
}

.lp-header-hotline:hover {
  text-decoration: underline;
}

.lp-btn-cta {
  font-weight: 700;
  border-radius: 999px;
  white-space: nowrap;
}

.lp-hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  padding: 40px 0 48px;
}

.lp-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 9, 14, 0.55) 0%, rgba(6, 9, 14, 0.88) 72%),
    linear-gradient(120deg, rgba(6, 9, 14, 0.7) 0%, transparent 55%);
}

.lp-hero-inner {
  position: relative;
  z-index: 1;
}

.lp-kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin-bottom: 0.65rem;
}

.lp-hero-title {
  font-size: clamp(1.85rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.lp-hero-sub {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 600;
  color: var(--lp-gold);
  margin-bottom: 0.75rem;
}

.lp-hero-lead {
  max-width: 640px;
  color: var(--lp-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.lp-stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 12px 10px;
  text-align: center;
  height: 100%;
}

.lp-stat-value {
  font-weight: 800;
  color: var(--lp-gold);
  font-size: 1rem;
  line-height: 1.2;
}

.lp-stat-label {
  font-size: 0.72rem;
  color: var(--lp-muted);
  margin-top: 4px;
  line-height: 1.3;
}

.lp-section {
  padding: clamp(44px, 6vw, 72px) 0;
}

/* Cột trái / phải: căn giữa theo chiều dọc, ảnh khung tỷ lệ cố định (không kéo theo slide/cột cao nhất) */
.lp-split-row {
  align-items: center;
}

.lp-split-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lp-split-body .lp-table-wrap {
  flex: 0 1 auto;
}

.lp-split-media-col {
  width: 100%;
}

.lp-img-card {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  line-height: 0;
}

.lp-img-card--frame,
.lp-img-card--stretch {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: min(480px, 58vh);
  min-height: 220px;
  background: #0c1016;
  overflow: hidden;
}

.lp-img-card--frame.lp-img-card--map {
  aspect-ratio: 16 / 11;
  max-height: min(420px, 50vh);
}

.lp-img-card--frame.lp-img-card--policy-img {
  aspect-ratio: 5 / 4;
  max-height: min(400px, 48vh);
}

.lp-img-card--contain img {
  object-fit: contain;
  background: #0a0e14;
}

.lp-img-card--frame img,
.lp-img-card--stretch img,
.lp-split-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: inherit;
  box-shadow: none;
  border: 0;
}

.lp-img-card--frame,
.lp-img-card--stretch {
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  border: 1px solid var(--lp-border);
}

@media (min-width: 992px) {
  .lp-split-row {
    align-items: center;
  }

  .lp-amenity-panel {
    justify-content: center;
    padding: 4px 0 4px 16px;
  }

  .lp-policy-layout .lp-policy-cards {
    align-content: stretch;
  }
}

.lp-img-card img:not(.lp-split-img) {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  border: 1px solid var(--lp-border);
}

.lp-amenity-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0 8px 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-amenity-panel .lp-amenity-block {
  padding: 12px 0;
}

/* Tiện ích: split 50/50 — cột trái chỉ ảnh, cột phải toàn bộ nội dung */
#lp-amenities .lp-amenities-split {
  align-items: stretch;
}

#lp-amenities .lp-amenities-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

#lp-amenities .lp-amenities-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

#lp-amenities .lp-amenities-highlights i {
  margin-top: 0.15rem;
  width: 1.1rem;
  text-align: center;
  flex-shrink: 0;
}

#lp-amenities .lp-amenity-panel--stack {
  border-left: 0;
  padding: 0;
  height: auto;
  justify-content: flex-start;
}

#lp-amenities .lp-img-card--split {
  min-height: 280px;
}

@media (min-width: 992px) {
  #lp-amenities .lp-split-media-col .lp-img-card--split {
    flex: 1 1 auto;
    min-height: 320px;
    max-height: none;
    aspect-ratio: unset;
    height: 100%;
  }
}

.lp-policy-note {
  color: var(--lp-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.lp-investor-layout .lp-split-media-col,
.lp-policy-layout .lp-split-media-col {
  width: 100%;
}

@media (min-width: 992px) {
  .lp-investor-layout .lp-split-body,
  .lp-policy-layout .lp-split-body {
    padding-right: clamp(8px, 1.5vw, 20px);
  }

  .lp-investor-layout .lp-split-media-col,
  .lp-policy-layout .lp-split-media-col {
    padding-left: clamp(8px, 1.5vw, 20px);
  }

  .lp-img-card--investor {
    aspect-ratio: 5 / 4;
    max-height: min(440px, 52vh);
  }

  .lp-policy-layout .lp-policy-cards {
    max-width: 100%;
  }
}

.lp-policy-layout .lp-policy-cards {
  flex: 1 1 auto;
  display: flex;
  align-items: stretch;
}

.lp-policy-layout .lp-policy-cards > [class*="col-"] {
  display: flex;
}

.lp-policy-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 118px;
  padding: 18px 12px;
}

.lp-policy-card .lp-policy-value {
  margin-bottom: 4px;
}

.lp-sunworld-intro .lp-split-body {
  justify-content: center;
}

.lp-location-media-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  height: 100%;
}

.lp-location-media-stack .lp-img-card--frame {
  flex: 1 1 auto;
  min-height: 200px;
  max-height: none;
  aspect-ratio: unset;
}

.lp-section--dark {
  background: var(--lp-bg-soft);
}

.lp-section--soft {
  background: #0e131a;
}

.lp-section--gold {
  background: linear-gradient(135deg, rgba(254, 185, 56, 0.12) 0%, rgba(10, 14, 20, 0.95) 55%);
  border-block: 1px solid var(--lp-border);
}

.lp-section--form {
  padding-top: 56px;
  padding-bottom: 80px;
}

.lp-form-section {
  background: linear-gradient(180deg, rgba(14, 19, 26, 0.35) 0%, var(--lp-bg, #0a0e14) 45%);
}

.lp-form-section-shell {
  border-radius: 24px;
  border: 1px solid var(--lp-border);
  overflow: hidden;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.5);
  background: rgba(8, 10, 14, 0.55);
}

.lp-form-aside {
  background: linear-gradient(
    155deg,
    rgba(254, 185, 56, 0.14) 0%,
    rgba(18, 22, 30, 0.98) 42%,
    rgba(10, 13, 18, 0.99) 100%
  );
  border-right: 1px solid rgba(254, 185, 56, 0.12);
}

.lp-form-aside-inner {
  padding: clamp(24px, 4vw, 40px) clamp(20px, 3vw, 32px);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.lp-form-aside-title {
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.02em;
  margin-bottom: 0.65rem;
}

.lp-form-aside-lead {
  color: var(--lp-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.1rem;
}

.lp-form-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  line-height: 1.45;
}

.lp-form-benefits li:last-child {
  border-bottom: 0;
}

.lp-form-benefits li i {
  margin-top: 0.15rem;
}

.lp-form-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.1rem;
}

.lp-form-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.lp-form-trust-chip i {
  color: var(--lp-gold);
  font-size: 0.8rem;
}

.lp-form-aside .lp-form-contact-row--aside {
  width: 100%;
  margin-top: 1.15rem;
  padding-top: 0;
  border-top: 0;
  gap: 10px;
}

.lp-form-aside .lp-form-contact-row--aside .lp-form-contact-item {
  flex: 1 1 calc(50% - 5px);
  min-width: min(100%, 10rem);
  justify-content: center;
  text-align: center;
  font-size: 0.82rem;
  padding: 0.65rem 0.75rem;
}

.lp-form-aside .lp-form-contact-row--aside .lp-form-contact-item span {
  line-height: 1.3;
}

.lp-form-visual-thumb {
  margin-top: 1rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(254, 185, 56, 0.22);
  aspect-ratio: 16 / 10;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  text-decoration: none;
  cursor: zoom-in;
}

.lp-form-aside-inner .lp-form-contact-row--aside:last-child {
  margin-top: auto;
}

.lp-form-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.lp-form-visual-thumb:hover .lp-form-visual-img {
  transform: scale(1.03);
}

.lp-form-main-col .lp-form-card--main {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: clamp(24px, 4vw, 36px) clamp(20px, 3vw, 32px);
  background: linear-gradient(165deg, rgba(22, 26, 34, 0.98) 0%, rgba(10, 13, 18, 0.99) 100%);
  height: 100%;
}

.lp-form-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lp-form-step {
  flex: 1 1 0;
  min-width: min(100%, 140px);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
}

.lp-form-step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lp-gold-dark), var(--lp-gold));
  color: #0a0e14;
  font-weight: 800;
  font-size: 0.8rem;
}

.lp-form-privacy {
  opacity: 0.82;
  line-height: 1.5;
}

.lp-form-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lp-form-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(254, 185, 56, 0.08);
  border: 1px solid rgba(254, 185, 56, 0.22);
  color: var(--lp-gold);
  font-size: 0.88rem;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.lp-form-contact-item:hover {
  background: rgba(254, 185, 56, 0.14);
  border-color: rgba(254, 185, 56, 0.4);
  color: var(--lp-gold);
}

.lp-form-contact-item .uc-icon-zalo {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (min-width: 992px) {
  .lp-form-section-row {
    min-height: min(560px, 72vh);
  }

  .lp-form-main-col .lp-form-card--main {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 991.98px) {
  .lp-form-aside {
    border-right: 0;
    border-bottom: 1px solid rgba(254, 185, 56, 0.12);
  }

  .lp-form-aside .lp-form-contact-row--aside .lp-form-contact-item {
    flex: 1 1 100%;
  }

  .lp-form-visual-thumb {
    max-height: 220px;
    aspect-ratio: 21 / 9;
  }

  .lp-form-aside-inner .lp-form-visual-thumb {
    margin-top: 1rem;
  }

  .lp-form-main-col .lp-form-card--main {
    padding-top: 20px;
  }
}

.lp-section-title {
  font-weight: 800;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.lp-section-lead {
  color: var(--lp-muted);
  line-height: 1.65;
}

.text-gold {
  color: var(--lp-gold) !important;
}

.lp-highlight-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  line-height: 1.55;
  font-size: 0.95rem;
}

.lp-highlight-list li:last-child {
  border-bottom: 0;
}

.lp-table-wrap {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.lp-table {
  margin: 0;
  color: var(--lp-text);
  --bs-table-bg: transparent;
  --bs-table-color: var(--lp-text);
  --bs-table-border-color: rgba(255, 255, 255, 0.08);
}

.lp-table th {
  width: 38%;
  font-weight: 600;
  color: var(--lp-gold);
  white-space: nowrap;
}


.lp-mini-card,
.lp-distance-card,
.lp-reason-card,
.lp-policy-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px;
}

.lp-distance-time {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--lp-gold);
}

.lp-amenity-block {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-amenity-block:last-child {
  border-bottom: 0;
}

.lp-amenity-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  background: rgba(254, 185, 56, 0.15);
  color: var(--lp-gold);
}

.lp-product-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
}

.lp-product-img {
  width: 100%;
  height: clamp(140px, 22vw, 200px);
  object-fit: cover;
}

.lp-feature-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}

.lp-feature-card-img img {
  width: 100%;
  height: clamp(140px, 20vw, 180px);
  object-fit: cover;
  display: block;
}

.lp-feature-card-body {
  padding: 14px 16px 16px;
}

.lp-progress-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-progress-item {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-progress-item-head {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.lp-progress-phase {
  font-weight: 700;
  color: var(--lp-gold);
  font-size: 0.85rem;
}

.lp-progress-status {
  font-size: 0.75rem;
  opacity: 0.75;
}

.lp-progress-bar-wrap {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin-bottom: 4px;
}

.lp-progress-bar {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--lp-gold-dark), var(--lp-gold));
}

.lp-progress-pct {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--lp-gold);
}

/* Tiến độ — layout thoáng, ảnh master plan lấp khung */
.lp-progress-section {
  background: var(--lp-bg-soft, #0e131a);
}

#lp-progress .lp-split-body,
#lp-progress .lp-progress-body {
  justify-content: flex-start;
  max-width: 32rem;
}

#lp-progress .lp-progress-heading {
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

#lp-progress .lp-section-lead,
#lp-progress .lp-progress-lead {
  margin-bottom: 1rem;
  max-width: none;
  font-size: 0.9rem;
  line-height: 1.55;
}

#lp-progress .lp-kicker {
  margin-bottom: 0.35rem;
}

#lp-progress .lp-progress-list {
  gap: 0.5rem;
}

#lp-progress .lp-progress-item {
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: border-color 0.2s ease, background 0.2s ease;
}

#lp-progress .lp-progress-item:hover {
  border-color: rgba(254, 185, 56, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

#lp-progress .lp-progress-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 0.25rem;
}

#lp-progress .lp-progress-item-head {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

#lp-progress .lp-progress-phase {
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--lp-gold);
}

#lp-progress .lp-progress-status {
  flex-shrink: 0;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 600;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

#lp-progress .lp-progress-label {
  margin: 0 0 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
}

#lp-progress .lp-progress-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

#lp-progress .lp-progress-bar-wrap {
  flex: 1 1 auto;
  height: 7px;
  margin: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

#lp-progress .lp-progress-pct {
  flex-shrink: 0;
  min-width: 2.25rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-align: right;
  line-height: 1;
}

#lp-progress .lp-split-media-col,
#lp-progress .lp-progress-media {
  display: flex;
  min-height: 0;
}

#lp-progress .lp-split-media-col > .lp-img-card--frame {
  display: none;
}

#lp-progress .lp-progress-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  width: 100%;
  min-height: clamp(220px, 32vw, 360px);
  padding: clamp(10px, 1.5vw, 14px);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0a0e14;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

#lp-progress .lp-progress-visual-bg {
  position: absolute;
  inset: -25%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(32px) brightness(0.42) saturate(1.15);
  transform: scale(1.08);
  pointer-events: none;
}

#lp-progress .lp-progress-visual-link {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 100%;
  line-height: 0;
}

#lp-progress .lp-progress-photo {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(520px, 62vh);
  margin: 0 auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

@media (min-width: 992px) {
  #lp-progress .lp-progress-split {
    align-items: center;
  }

  #lp-progress .lp-progress-visual {
    min-height: clamp(260px, 36vw, 420px);
    height: auto;
  }

  #lp-progress .lp-progress-photo {
    width: 100%;
    max-height: min(480px, 70vh);
  }

  #lp-progress .lp-progress-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  #lp-progress .lp-progress-item {
    height: 100%;
  }
}

@media (max-width: 991.98px) {
  #lp-progress .lp-progress-visual {
    min-height: 240px;
    margin-top: 0.5rem;
  }

  #lp-progress .lp-section-title {
    font-size: clamp(1.45rem, 5.5vw, 1.85rem);
  }
}

.lp-lifestyle-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
}

.lp-lifestyle-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.lp-lifestyle-body {
  padding: 14px 16px 16px;
}

.lp-section--investor {
  background: linear-gradient(180deg, rgba(254, 185, 56, 0.06) 0%, var(--lp-bg) 100%);
  border-block: 1px solid var(--lp-border);
}

.lp-investor-badge {
  padding: 12px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-gallery-featured img {
  aspect-ratio: 21 / 9;
  object-fit: cover;
  max-height: 420px;
  border: 1px solid var(--lp-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.lp-product-body {
  padding: 14px;
}

.lp-product-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lp-gold);
  margin-bottom: 6px;
}

.lp-reason-num {
  display: inline-block;
  font-weight: 800;
  color: var(--lp-gold);
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 8px;
}

.lp-policy-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--lp-gold);
  line-height: 1.1;
}

.lp-gallery-item img {
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease;
}

.lp-gallery-item:hover img {
  transform: scale(1.02);
}

.lp-form-card {
  background: linear-gradient(165deg, rgba(22, 26, 34, 0.98) 0%, rgba(10, 13, 18, 0.99) 100%);
  border: 1px solid var(--lp-border);
  border-radius: 22px;
  padding: 28px 22px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.lp-form-title {
  font-weight: 800;
  font-size: 1.35rem;
}

.lp-lead-form .uc-lead-field,
.lp-lead-form .form-select.uc-lead-field {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--lp-text);
  border-radius: 12px;
  min-height: 48px;
}

.lp-lead-form select,
.lp-lead-form .form-select.uc-lead-field {
  color-scheme: light;
}

.lp-lead-form select option,
.lp-lead-form .form-select.uc-lead-field option {
  background-color: #ffffff;
  color: #16212f;
}

.lp-lead-form .uc-lead-field:focus {
  border-color: rgba(254, 185, 56, 0.55);
  box-shadow: 0 0 0 3px rgba(254, 185, 56, 0.15);
  background: rgba(255, 255, 255, 0.09);
}

.lp-lead-form .uc-lead-form-fields--stack .uc-lead-form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.65rem;
}

.lp-lead-form .uc-lead-form-fields.row .col-md-6 > .uc-lead-label,
.lp-lead-form .uc-lead-form-fields.row .col-12 > .uc-lead-label {
  display: block;
  margin-bottom: 0.38rem;
  font-weight: 600;
  font-size: 0.88rem;
}

.lp-lead-form .uc-lead-form-row > .uc-lead-label {
  display: block;
  margin-bottom: 0.38rem;
  font-weight: 600;
  font-size: 0.88rem;
}

.lp-lead-form .uc-lead-input-wrap {
  position: relative;
  display: grid;
  align-items: stretch;
  width: 100%;
  min-height: 48px;
  overflow: hidden;
  isolation: isolate;
}

.lp-lead-form .uc-lead-input-wrap > .uc-lead-field {
  grid-area: 1 / 1;
  width: 100%;
  padding-left: 2.5rem;
}

.lp-lead-form .uc-lead-input-wrap > .uc-lead-input-icon {
  grid-area: 1 / 1;
  align-self: center;
  justify-self: start;
  margin-left: 14px;
  z-index: 2;
  color: var(--lp-gold);
  font-size: 0.95rem;
  line-height: 1;
  width: 1em;
  height: 1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.lp-lead-form .uc-lead-consent-check {
  margin-top: 0.45rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(7, 10, 14, 0.38);
}

.lp-lead-form .uc-lead-consent-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  cursor: pointer;
}

.lp-lead-form .uc-lead-consent-mark {
  margin-top: 0;
  align-self: center;
}

.lp-lead-form textarea.uc-lead-field--textarea {
  padding-left: 14px;
}

.lp-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(10, 14, 20, 0.95);
  border-top: 1px solid var(--lp-border);
  backdrop-filter: blur(8px);
}

.lp-sticky-cta-btn {
  font-weight: 800;
  border-radius: 14px;
}

.lp-footer {
  padding: 24px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-footer--rich {
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 2.75rem);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.38) 100%);
}

.lp-footer-grid {
  --bs-gutter-x: clamp(1.25rem, 3vw, 2.5rem);
  --bs-gutter-y: clamp(1.25rem, 2.5vw, 2rem);
}

.lp-footer-mid-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 576px) {
  .lp-footer-mid-inner:has(.lp-footer-nav-col):has(.lp-footer-project-col) {
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
    gap: clamp(1rem, 2.5vw, 2rem);
  }
}

.lp-footer-block {
  min-width: 0;
}

.lp-footer-col {
  display: flex;
  flex-direction: column;
}

.lp-footer-campaign-name {
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--lp-gold);
  line-height: 1.35;
  max-width: 16rem;
}

.lp-footer-brand-name {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--lp-text);
  line-height: 1.3;
}

.lp-footer-intro {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.55;
  max-width: 16rem;
}

.lp-footer-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin-bottom: 0.75rem;
}

.lp-footer-links a,
.lp-footer-contact a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1.45;
  transition: color 0.15s ease;
}

.lp-footer-links a:hover,
.lp-footer-contact a:hover {
  color: var(--lp-gold);
}

.lp-footer-links li + li {
  margin-top: 0.45rem;
}

.lp-footer-links--cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem 0;
}

@media (min-width: 768px) {
  .lp-footer-links--cols {
    grid-template-columns: repeat(2, minmax(9.5rem, 1fr));
    column-gap: clamp(0.75rem, 2vw, 1.5rem);
    row-gap: 0.4rem;
  }

  .lp-footer-links--cols li + li {
    margin-top: 0;
  }
}

.lp-footer-contact li + li {
  margin-top: 0.5rem;
}

.lp-footer-links a {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.45;
  font-size: 0.88rem;
}

.lp-footer-link-icon {
  width: 1rem;
  text-align: center;
  margin-top: 0.15rem;
  color: var(--lp-gold);
  flex-shrink: 0;
}

.lp-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.lp-footer-contact-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.2rem 0.4rem;
  flex: 1;
  min-width: 0;
  line-height: 1.45;
}

.lp-footer-contact-label {
  display: inline;
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.lp-footer-contact-value {
  display: inline;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  word-break: break-word;
}

a.lp-footer-contact-value:hover {
  color: var(--lp-gold);
}

.lp-footer-contact-icon {
  width: 1.1rem;
  text-align: center;
  margin-top: 0.12rem;
  color: var(--lp-gold);
  flex-shrink: 0;
}

.lp-footer-hotline {
  font-weight: 700;
  color: var(--lp-gold) !important;
}

.lp-footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-footer-disclaimer {
  color: var(--lp-muted);
  font-size: 0.84rem;
  line-height: 1.65;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lp-footer-legal {
  margin-top: 0.25rem;
}

.lp-footer-legal-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin: 0;
  padding: 0;
}

.lp-footer-legal-list a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  text-decoration: none;
}

.lp-footer-legal-list a:hover {
  color: var(--lp-gold);
}

.lp-footer-copy-row {
  color: rgba(255, 255, 255, 0.55);
  padding-top: 0.25rem;
}

.lp-footer-badge {
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

.lp-footer-link {
  color: var(--lp-gold);
  text-decoration: none;
}

.lp-footer-link:hover {
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .lp-footer--rich {
    padding-top: 2.5rem;
  }

  .lp-footer-brand-col {
    margin-bottom: 0.25rem;
  }

  .lp-footer-intro,
  .lp-footer-campaign-name {
    max-width: none;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .lp-footer-contact-col .lp-footer-contact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(1rem, 2vw, 2rem);
    row-gap: 0.45rem;
  }

  .lp-footer-contact-col .lp-footer-contact li + li {
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .lp-footer-brand-col {
    padding-right: 0.5rem;
  }

  .lp-footer-mid-col {
    padding-left: 0.5rem;
  }

  .lp-footer-contact-col {
    padding-left: 0.75rem;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }

  .lp-footer-project-col .lp-footer-links a span {
    line-height: 1.4;
  }
}

.btn-gold {
  background: linear-gradient(180deg, #ffe08a 0%, #f0b429 48%, #e5a020 100%);
  color: #1a1208 !important;
  border: 1px solid rgba(255, 240, 200, 0.35);
  font-weight: 700;
}

.btn-gold:hover {
  filter: brightness(1.05);
  color: #1a1208 !important;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--lp-text);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

@media (max-width: 991.98px) {
  :root {
    --lp-header-h: 58px;
  }

  .lp-hero {
    min-height: auto;
    padding: 32px 0 36px;
  }

  .lp-hero:has(.lp-hero-carousel) {
    --lp-hero-height: clamp(440px, 65vh, 560px);
    padding: 0;
  }

  .lp-hero:has(.lp-hero-carousel):has(.lp-stats-row--hero) {
    --lp-hero-height: clamp(580px, 94vh, 820px);
  }

  .lp-hero-title {
    font-size: clamp(1.55rem, 6.5vw, 2rem);
  }

  .lp-hero-cta .btn {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 0.9rem;
    padding: 0.65rem 0.85rem;
  }

  .lp-hero--bright .lp-hero-inner--overlay {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: calc(var(--lp-header-h) + 0.35rem);
  }

  .lp-hero-form-mobile {
    order: -1;
    width: 100%;
    margin-bottom: 0.85rem;
  }

  .lp-form-card--hero-top {
    padding: 16px 14px 14px;
    border-radius: 16px;
    border: 1px solid rgba(254, 185, 56, 0.28);
    background: linear-gradient(165deg, rgba(18, 22, 30, 0.94) 0%, rgba(8, 10, 14, 0.98) 100%);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  }

  .lp-form-card--hero-top .lp-form-title {
    font-size: 1.05rem;
    line-height: 1.3;
  }

  .lp-form-card--hero-top .form-control,
  .lp-form-card--hero-top .form-select {
    min-height: 44px;
  }

  .lp-hero-copy-row,
  .lp-hero-copy-block {
    order: 0;
  }

  .lp-hero--bright .lp-hero-inner--overlay .lp-stats-row--hero {
    margin-top: 0.75rem !important;
  }

  .lp-hero-panel {
    padding: 1rem 1rem 1.1rem;
    border-radius: 14px;
  }

  .lp-hero-chip {
    font-size: 0.72rem;
    padding: 0.3rem 0.55rem;
  }

  .lp-stats-row > [class*="col-"] {
    padding-left: 6px;
    padding-right: 6px;
  }

  .lp-stat-card {
    padding: 10px 8px;
  }

  .lp-section-title {
    font-size: clamp(1.25rem, 4.5vw, 1.6rem);
  }

  .lp-form-card {
    padding: 22px 16px;
  }

      .lp-gallery-featured img {
        aspect-ratio: 16 / 10;
      }

      .lp-amenity-panel {
        border-left: 0;
        padding: 0;
        margin-top: 8px;
      }

      .lp-img-card--frame,
      .lp-img-card--stretch {
        max-height: none;
        aspect-ratio: 16 / 10;
      }

      .lp-img-card--frame img,
      .lp-img-card--stretch img,
      .lp-split-img {
        min-height: 0;
      }
    }

@media (min-width: 992px) and (max-width: 1199.98px) {
  .lp-nav-link-text {
    font-size: 0.74rem;
  }

  .lp-header-hotline {
    font-size: 0.8rem;
  }

  .lp-btn-cta {
    font-size: 0.8rem;
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 992px) {
  .lp-body {
    padding-bottom: 0;
  }

  .lp-header-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    column-gap: clamp(10px, 1.5vw, 20px);
    gap: 0;
  }
}

@media (min-width: 1200px) {
  .lp-header-inner {
    column-gap: 20px;
  }

  .lp-nav {
    justify-content: space-between;
    padding: 0 6px;
  }

  .lp-nav-link {
    font-size: 0.8rem;
    padding: 6px 10px;
  }

  .lp-brand-logo {
    height: 40px;
    max-width: 220px;
  }

  .lp-brand-text {
    font-size: 0.88rem;
    max-width: 14rem;
  }

  .lp-footer-brand-logo {
    height: 48px;
    max-width: 240px;
  }

  .lp-header-hotline {
    font-size: 0.9rem;
  }
}

@media (min-width: 1400px) {
  .lp-nav-link {
    padding: 6px 12px;
  }
}

/* Hero — video nền (layout landing.html + #lp-hero) */
.lp-hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #06090e;
  pointer-events: none;
}

.lp-hero-video-wrap.is-playing {
  z-index: 1;
}

.lp-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.lp-hero--has-video .lp-hero-carousel,
.lp-body--hero-video .lp-hero-carousel,
.lp-hero:has(.lp-hero-video-wrap) .lp-hero-carousel {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}

.lp-hero--has-video .lp-hero-carousel .owl-dots,
.lp-hero--has-video .lp-hero-carousel .owl-nav,
.lp-body--hero-video .lp-hero-carousel .owl-dots,
.lp-body--hero-video .lp-hero-carousel .owl-nav {
  display: none !important;
}

.lp-hero--has-video .lp-hero-inner--overlay,
.lp-body--hero-video .lp-hero-inner--overlay,
.lp-hero:has(.lp-hero-video-wrap) .lp-hero-inner--overlay {
  z-index: 2;
}

.lp-hero--has-video .lp-hero-video-wrap,
.lp-body--hero-video .lp-hero-video-wrap {
  z-index: 1;
}

.lp-hero-video {
  opacity: 1;
  visibility: visible;
}

.lp-hero-video.is-playing {
  opacity: 1;
}

.lp-body--hero-video.lp-body--dash-preview .lp-hero-video {
  opacity: 0.85;
}

@media (prefers-reduced-motion: reduce) {
  .lp-hero-video-wrap .lp-hero-video {
    display: none;
  }
  .lp-hero-video-wrap {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

/* Hero carousel — chiều cao cố định, ảnh nền full khung (cover) */
.lp-hero:has(.lp-hero-carousel) {
  --lp-hero-height: clamp(520px, 58vh, 680px);
  position: relative;
  display: block;
  height: var(--lp-hero-height);
  min-height: var(--lp-hero-height);
  max-height: var(--lp-hero-height);
  padding: 0;
  background: #06090e;
  overflow: hidden;
}

/* Hero có hàng số liệu — tăng chiều cao để card không bị cắt */
.lp-hero:has(.lp-hero-carousel):has(.lp-stats-row--hero) {
  --lp-hero-height: clamp(640px, 76vh, 880px);
}

.lp-hero:has(.lp-hero-carousel) .lp-hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
}

.lp-hero:has(.lp-hero-carousel) .lp-hero-carousel .owl-stage-outer,
.lp-hero:has(.lp-hero-carousel) .lp-hero-carousel .owl-stage,
.lp-hero:has(.lp-hero-carousel) .lp-hero-carousel .owl-item {
  height: 100% !important;
  min-height: 100%;
}

.lp-hero:has(.lp-hero-carousel) .lp-hero-carousel .owl-item {
  width: 100% !important;
}

.lp-hero:has(.lp-hero-carousel) .owl-stage-outer {
  width: 100% !important;
}

.lp-hero:has(.lp-hero-carousel) .lp-hero-inner--overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  min-height: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.lp-hero-slide {
  width: 100%;
  height: 100%;
  min-height: 100%;
  background-color: #06090e;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

.lp-hero--bright .lp-hero-slide {
  background-position: 72% center;
  filter: brightness(1.2) contrast(1.06) saturate(1.1);
}

@media (max-width: 991.98px) {
  .lp-hero--bright .lp-hero-slide {
    background-position: center center;
  }
}

.lp-hero-slide .lp-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.lp-hero--bright .lp-hero-overlay--bright {
  background:
    linear-gradient(
      105deg,
      rgba(6, 9, 14, 0.62) 0%,
      rgba(6, 9, 14, 0.28) 36%,
      rgba(6, 9, 14, 0.06) 52%,
      transparent 68%
    ),
    linear-gradient(0deg, rgba(6, 9, 14, 0.48) 0%, rgba(6, 9, 14, 0.1) 32%, transparent 55%);
}

.lp-hero-panel {
  max-width: 38rem;
  padding: 1.25rem 1.35rem 1.35rem;
  border-radius: 18px;
  background: rgba(8, 12, 18, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.lp-hero--bright .lp-hero-panel {
  background: rgba(8, 12, 18, 0.38);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lp-hero--park.lp-hero--bright .lp-hero-slide {
  filter: brightness(1.24) contrast(1.08) saturate(1.12);
}

.lp-hero-badge {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a1208;
  background: linear-gradient(180deg, #ffe08a 0%, #f0b429 100%);
  border: 1px solid rgba(255, 240, 200, 0.45);
}

.lp-hero--park .lp-hero-title {
  font-size: clamp(1.75rem, 4.2vw, 2.65rem);
  line-height: 1.15;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.lp-hero-title-accent {
  display: block;
  margin-top: 0.15rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--lp-gold);
  letter-spacing: 0.03em;
}

.lp-hero--park .lp-hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

.lp-hero--park .lp-hero-lead {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.lp-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.lp-hero-chip i {
  color: var(--lp-gold);
  font-size: 0.72rem;
  flex-shrink: 0;
}

@media (min-width: 992px) {
  .lp-hero-panel:has(.lp-hero-chips) {
    max-width: min(56rem, 100%);
  }

  .lp-hero-chips {
    flex-wrap: nowrap !important;
    gap: clamp(0.35rem, 0.55vw, 0.65rem);
  }

  .lp-hero-chips > li {
    flex: 1 1 0;
    min-width: 0;
  }

  .lp-hero-chip {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    font-size: clamp(0.66rem, 0.78vw, 0.76rem);
    padding: 0.32rem 0.5rem;
    white-space: nowrap;
  }
}

@media (min-width: 1200px) {
  .lp-hero-panel:has(.lp-hero-chips) {
    max-width: min(62rem, 100%);
  }

  .lp-hero-chip {
    font-size: 0.76rem;
    padding: 0.35rem 0.65rem;
  }
}

.btn-hero-ghost {
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.16) !important;
  color: #fff !important;
}

.lp-stat-card--hero {
  background: rgba(8, 12, 18, 0.5);
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(4px);
}

.lp-hero--bright .lp-stat-card--hero {
  background: rgba(8, 12, 18, 0.42);
}

.lp-hero-inner--overlay .lp-hero-panel,
.lp-hero-inner--overlay .lp-stats-row--hero {
  pointer-events: auto;
}

.lp-hero-inner--overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 2.5rem;
  pointer-events: none;
}

.lp-hero--bright .lp-hero-inner--overlay {
  justify-content: center;
  padding-top: calc(var(--lp-header-h, 64px) + 1.25rem);
  padding-bottom: 2rem;
}

.lp-hero--bright:has(.lp-stats-row--hero) .lp-hero-inner--overlay {
  justify-content: flex-end;
  padding-top: calc(var(--lp-header-h, 64px) + 0.65rem);
  padding-bottom: clamp(1.15rem, 2.5vh, 1.85rem);
}

.lp-hero:has(.lp-stats-row--hero) .lp-stats-row--hero {
  flex-shrink: 0;
  width: 100%;
}

.lp-hero-inner--overlay .lp-hero-cta,
.lp-hero-inner--overlay a,
.lp-hero-inner--overlay button {
  pointer-events: auto;
}

.lp-hero:has(.lp-hero-carousel) .owl-nav button.owl-prev,
.lp-hero:has(.lp-hero-carousel) .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 14, 20, 0.55) !important;
  color: var(--lp-gold) !important;
  border: 1px solid var(--lp-border) !important;
  z-index: 4;
}

.lp-hero:has(.lp-hero-carousel) .owl-nav button.owl-prev { left: 12px; }
.lp-hero:has(.lp-hero-carousel) .owl-nav button.owl-next { right: 12px; }

.lp-hero:has(.lp-hero-carousel) .owl-dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  z-index: 4;
}

.lp-products-carousel .lp-product-slide,
.lp-gallery-carousel .lp-gallery-slide,
.lp-media-carousel .lp-media-slide {
  padding: 4px;
}

.lp-media-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-media-main-link {
  display: block;
}

.lp-media-main-link img,
.lp-media-carousel-item img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.lp-media-thumb-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lp-media-thumb-btn {
  flex: 0 0 auto;
  width: 72px;
  height: 52px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.lp-media-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-media-thumb-btn:hover,
.lp-media-thumb-btn.is-active {
  border-color: var(--lp-gold, #c9a227);
  box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.25);
}

.lp-body--enhanced .owl-theme .owl-dots .owl-dot span {
  background: rgba(255, 255, 255, 0.35);
}

.lp-body--enhanced .owl-theme .owl-dots .owl-dot.active span,
.lp-body--enhanced .owl-theme .owl-dots .owl-dot:hover span {
  background: var(--lp-gold);
}

.lp-body--enhanced .owl-theme .owl-nav [class*='owl-'] {
  background: rgba(10, 14, 20, 0.75);
  color: var(--lp-gold);
  border-radius: 8px;
  margin: 0 4px;
}

.lp-faq-accordion .accordion-item {
  background: var(--lp-bg-soft);
  border: 1px solid var(--lp-border);
  color: var(--lp-text);
}

.lp-faq-accordion .accordion-button {
  background: transparent;
  color: var(--lp-text);
  font-weight: 600;
  box-shadow: none;
}

.lp-faq-accordion .accordion-button:not(.collapsed) {
  color: var(--lp-gold);
  background: rgba(254, 185, 56, 0.08);
}

.lp-faq-accordion .accordion-button::after {
  filter: invert(1);
}

.lp-lead-modal .modal-content {
  background: var(--lp-bg-soft);
  color: var(--lp-text);
}

.lp-lead-modal .modal-header .btn-close {
  filter: invert(1);
}

/* Split — cột linh hoạt, cân chiều cao trên PC */
.lp-split-balanced {
  --lp-split-gap: clamp(24px, 4vw, 48px);
  --lp-split-cols: 1fr 1fr;
}

.lp-split-balanced > [class*="col-"] {
  min-width: 0;
}

@media (min-width: 992px) {
  .lp-split-row.lp-split-balanced {
    display: grid;
    grid-template-columns: var(--lp-split-cols);
    align-items: stretch;
    column-gap: var(--lp-split-gap);
    --bs-gutter-x: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .lp-split-balanced > [class*="col-"] {
    width: 100% !important;
    max-width: none !important;
    flex: none !important;
    display: flex;
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }

  #lp-location .lp-split-balanced {
    --lp-split-cols: 5fr 7fr;
  }

  #lp-amenities .lp-split-balanced {
    --lp-split-cols: 4fr 8fr;
  }

  #lp-progress .lp-split-balanced {
    --lp-split-cols: 7fr 5fr;
  }

  #lp-highlights .lp-split-balanced {
    --lp-split-cols: 5fr 7fr;
  }

  #lp-overview .lp-split-balanced {
    --lp-split-cols: 7fr 5fr;
  }

  #lp-sunworld .lp-sunworld-intro.lp-split-balanced {
    --lp-split-cols: 5fr 7fr;
  }

  .lp-investor-layout.lp-split-balanced {
    --lp-split-cols: 6fr 6fr;
  }

  .lp-policy-layout.lp-split-balanced {
    --lp-split-cols: 7fr 5fr;
  }

  .lp-split-balanced .lp-split-media-col {
    justify-content: stretch;
    align-self: stretch;
    min-height: 0;
  }

  .lp-split-balanced .lp-split-media-col > .lp-img-card--frame,
  .lp-split-balanced .lp-split-media-col > a.lp-img-card--frame {
    flex: 1 1 auto;
    width: 100%;
    min-height: 320px;
    max-height: none;
    height: 100%;
    aspect-ratio: unset;
  }

  .lp-split-balanced .lp-split-media-col > .lp-img-card--frame .lp-split-img:not(.lp-progress-photo) {
    object-fit: cover;
  }

  .lp-split-balanced .lp-split-media-col .lp-img-card--contain .lp-split-img,
  .lp-split-balanced .lp-split-media-col .lp-img-card--map .lp-split-img,
  .lp-split-balanced .lp-progress-photo {
    object-fit: contain;
  }

  .lp-split-balanced .lp-split-media-col .lp-img-card--policy-img {
    aspect-ratio: unset;
    min-height: 360px;
    max-height: none;
  }

  .lp-split-balanced .lp-split-body {
    justify-content: center;
    padding: clamp(8px, 2vw, 24px) 0;
    height: 100%;
  }

  .lp-split-balanced .lp-amenity-panel {
    justify-content: flex-start;
    border-left: 0;
    padding-left: 0;
  }

  #lp-amenities .lp-amenity-panel--stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(20px, 3vw, 40px);
    row-gap: 0;
    align-content: start;
  }

  #lp-amenities .lp-amenity-panel--stack .lp-amenity-block {
    padding: 10px 0;
  }

  #lp-location .lp-location-media-stack .lp-location-distances {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
  }

  #lp-location .lp-location-media-stack .lp-location-distances > [class*="col-"] {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  #lp-location .lp-location-points {
    --bs-gutter-x: 1rem;
  }

  .lp-sunworld-intro.lp-split-balanced {
    margin-bottom: clamp(24px, 4vw, 48px) !important;
  }

  .lp-policy-layout.lp-split-balanced .lp-split-body {
    padding-right: clamp(8px, 1.5vw, 20px);
  }

  .lp-policy-layout.lp-split-balanced .lp-split-media-col {
    padding-left: clamp(8px, 1.5vw, 20px);
    display: flex;
    align-items: center;
  }

  .lp-investor-layout.lp-split-balanced .lp-split-body {
    padding-right: clamp(8px, 1.5vw, 20px);
  }

  .lp-investor-layout.lp-split-balanced .lp-split-media-col {
    padding-left: clamp(8px, 1.5vw, 20px);
  }
}

.lp-img-card--branding {
  background: linear-gradient(145deg, #121820 0%, #0a0e14 100%);
}

.lp-img-card--branding img {
  object-fit: contain;
  object-position: center;
  padding: 12px;
}

@media (max-width: 991.98px) {
  .lp-split-balanced .lp-split-media-col {
    margin-bottom: 4px;
  }

  .lp-split-balanced .lp-img-card--frame {
    min-height: 240px;
    max-height: min(400px, 62vw);
    aspect-ratio: 4 / 3;
  }

  .lp-split-balanced .lp-split-body,
  .lp-split-balanced .lp-amenity-panel {
    padding-top: 8px;
  }

  #lp-amenities .lp-amenity-panel--stack {
    display: block;
  }

  #lp-location .lp-location-media-stack .lp-location-distances {
    display: flex;
    flex-wrap: wrap;
  }
}

.lp-split-balanced .lp-section-lead {
  margin-bottom: 1rem;
}

.lp-split-balanced .lp-highlight-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  line-height: 1.5;
}

.lp-split-balanced .lp-highlight-list li:last-child {
  border-bottom: 0;
}

.lp-location-distances .lp-distance-card {
  min-height: 76px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* —— Sun Urban City (lp-body--suc): giao diện phá cách —— */
.lp-body--suc {
  --lp-suc-ink: #060814;
  --lp-suc-deep: #0c1228;
  --lp-suc-glow: #1a3a6e;
  --lp-suc-gold: #d4af37;
  --lp-suc-gold-soft: rgba(212, 175, 55, 0.35);
}

.lp-body--suc::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(26, 58, 110, 0.45), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(212, 175, 55, 0.08), transparent 50%);
}

.lp-body--suc .lp-header {
  background: linear-gradient(180deg, rgba(6, 8, 20, 0.92) 0%, rgba(6, 8, 20, 0.55) 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.lp-hero--suc .lp-hero-overlay--bright {
  background:
    linear-gradient(
      105deg,
      rgba(6, 8, 20, 0.65) 0%,
      rgba(6, 8, 20, 0.3) 36%,
      rgba(12, 18, 40, 0.08) 52%,
      transparent 68%
    ),
    linear-gradient(0deg, rgba(6, 8, 20, 0.5) 0%, rgba(6, 8, 20, 0.1) 32%, transparent 55%);
}

.lp-hero--suc.lp-hero--bright .lp-hero-slide {
  filter: brightness(1.22) contrast(1.07) saturate(1.1);
}

.lp-hero--suc .lp-hero-slide {
  background-position: 68% center;
}

.lp-hero--suc .lp-hero-panel {
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: linear-gradient(145deg, rgba(12, 18, 40, 0.82), rgba(6, 8, 20, 0.65));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.lp-hero--suc .lp-hero-title-accent {
  background: linear-gradient(90deg, #f0e6c8, var(--lp-suc-gold), #b8922e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-section--suc-zones {
  position: relative;
  background: var(--lp-suc-deep);
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  padding-top: clamp(3.5rem, 8vw, 5.5rem);
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.lp-zones-lead {
  max-width: 42rem;
}

.lp-zone-card {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.lp-zone-card:hover {
  transform: translateY(-6px);
  border-color: var(--lp-suc-gold-soft);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.lp-zone-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.lp-zone-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.lp-zone-card:hover .lp-zone-card-media img {
  transform: scale(1.06);
}

.lp-zone-num {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--lp-font-display, Cinzel, serif);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.65rem;
  background: rgba(6, 8, 20, 0.75);
  border: 1px solid var(--lp-suc-gold-soft);
  color: var(--lp-suc-gold);
}

.lp-zone-card-body {
  padding: 1.15rem 1.25rem 1.35rem;
}

.lp-section--suc-parks {
  background: linear-gradient(180deg, #060814 0%, #0f1a32 100%);
}

.lp-parks-bento .lp-park-card {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.25);
}

.lp-park-card-img {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.lp-park-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-park-card-body {
  padding: 1rem 1.15rem 1.2rem;
}

.lp-park-area {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lp-suc-gold);
  margin-bottom: 0.35rem;
}

.lp-section--suc-pricing {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 65%),
    linear-gradient(180deg, #0e121c 0%, #121a2e 100%);
  color: rgba(235, 241, 248, 0.92);
}

.lp-section--suc-pricing .lp-section-lead {
  color: rgba(235, 241, 248, 0.72);
  max-width: 40rem;
}

.lp-body--suc .lp-section--suc-pricing .lp-section-title,
.lp-body--suc .lp-section--suc-pricing .lp-kicker,
.lp-body--royal .lp-section--suc-pricing .lp-section-title,
.lp-body--royal .lp-section--suc-pricing .lp-kicker {
  color: #fff;
}

.lp-pricing-wrap {
  max-width: 56rem;
  border-radius: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.4);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(8px);
}

.lp-pricing-table {
  margin: 0;
  --bs-table-bg: transparent;
  --bs-table-color: rgba(235, 241, 248, 0.9);
  --bs-table-border-color: rgba(255, 255, 255, 0.08);
  --bs-table-hover-bg: rgba(212, 175, 55, 0.07);
  --bs-table-hover-color: rgba(235, 241, 248, 0.95);
}

.lp-pricing-table thead th {
  width: auto;
  font-family: var(--lp-font-display, Cinzel, serif);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-suc-gold, #d4af37);
  background: rgba(212, 175, 55, 0.12);
  border-bottom: 2px solid rgba(212, 175, 55, 0.45);
  padding: 14px 18px;
  white-space: nowrap;
}

.lp-pricing-table tbody th[scope="row"] {
  width: 32%;
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  white-space: normal;
  padding: 13px 18px;
  vertical-align: middle;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: transparent;
}

.lp-pricing-table tbody td {
  color: rgba(235, 241, 248, 0.9) !important;
  font-size: 0.9rem;
  padding: 13px 18px;
  vertical-align: middle;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.lp-pricing-table tbody td.lp-pricing-area {
  color: rgba(235, 241, 248, 0.82) !important;
  font-size: 0.88rem;
}

.lp-pricing-table tbody td.lp-pricing-price {
  color: #f0d078 !important;
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
}

.lp-pricing-table tbody tr:last-child th,
.lp-pricing-table tbody tr:last-child td {
  border-bottom: 0;
}

.lp-pricing-table tbody tr:hover th,
.lp-pricing-table tbody tr:hover td {
  background: rgba(212, 175, 55, 0.06);
}

#lp-pricing .lp-pricing-cta .btn-gold {
  min-width: min(100%, 280px);
  font-weight: 700;
  letter-spacing: 0.04em;
}

@media (max-width: 575.98px) {
  .lp-pricing-table thead th,
  .lp-pricing-table tbody th,
  .lp-pricing-table tbody td {
    padding: 10px 12px;
    font-size: 0.8rem;
  }

  .lp-pricing-table tbody th[scope="row"] {
    font-size: 0.84rem;
  }
}

.lp-policy-bullets li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
}

/* Sun Urban City — Quỹ căn landing */
.lp-yt-frame {
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  background: #0a0c14;
}

.lp-yt-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.lp-subzone-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.lp-subzone-card {
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.lp-subzone-badge {
  display: inline-flex;
  padding: 4px 12px;
  margin-bottom: 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1a1208;
  background: linear-gradient(135deg, #ffe08a, #d4af37);
}

.lp-subzone-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--lp-suc-gold, #d4af37);
}

.lp-subzone-policy-chip {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.28);
  color: rgba(235, 241, 248, 0.92);
}

.lp-body--quy-can .lp-hero-badge {
  background: rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.45);
}

/* Quỹ căn — cân đối layout & nhiều ảnh */
.lp-body--quy-can .lp-subzone-card .lp-img-card--subzone-main {
  min-height: clamp(220px, 32vh, 360px);
}

.lp-body--quy-can .lp-subzone-card .lp-img-card--subzone-main .lp-split-img {
  object-fit: cover;
  min-height: clamp(220px, 32vh, 360px);
}

.lp-subzone-thumb {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 4 / 3;
}

.lp-subzone-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.lp-subzone-thumb:hover img {
  transform: scale(1.05);
}

.lp-gallery-mosaic {
  display: grid;
  gap: 12px;
}

.lp-gallery-mosaic-featured {
  display: block;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 36, 0.1);
  aspect-ratio: 21 / 9;
  max-height: 420px;
}

.lp-gallery-mosaic-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.lp-gallery-mosaic-featured:hover img {
  transform: scale(1.03);
}

.lp-gallery-mosaic-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.75));
}

.lp-gallery-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

@media (min-width: 768px) {
  .lp-gallery-mosaic-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }
}

.lp-gallery-mosaic-item {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 36, 0.08);
  aspect-ratio: 4 / 3;
  background: #0a0c14;
}

.lp-gallery-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.lp-gallery-mosaic-item:hover img {
  transform: scale(1.06);
}

.lp-body--quy-can #lp-subzones .lp-subzone-card {
  padding: clamp(1rem, 2.5vw, 1.75rem);
}

.lp-body--quy-can #lp-highlights .lp-highlight-photo {
  min-height: clamp(240px, 36vh, 400px);
  object-fit: cover;
}

.lp-body--quy-can #lp-overview .lp-split-img {
  min-height: clamp(260px, 38vh, 440px);
  object-fit: cover;
}

.lp-body--quy-can .lp-products-carousel .lp-product-img {
  height: 220px;
  object-fit: cover;
}

.lp-body--quy-can .lp-lifestyle-img {
  height: 200px;
  object-fit: cover;
}

@media (min-width: 992px) {
  .lp-body--quy-can .lp-subzone-stack .lp-subzone-card .row {
    align-items: stretch;
  }

  .lp-body--quy-can .lp-subzone-media-col {
    display: flex;
    flex-direction: column;
  }
}
