/* ==========================================================================
   Deans City Peshawar · Executive Design System
   Matches Deans Portal (Tailwind/Plus Jakarta Sans) & Resident Mobile App
   ========================================================================== */

/* Universal Focus & Tap Highlight Reset */
*, *::before, *::after {
  -webkit-tap-highlight-color: transparent !important;
}

*:focus:not(:focus-visible),
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none !important;
}

:root {
  /* Colors: Exact match with Portal & App Design Systems */
  --brand-primary: #0F172A;       /* Slate 900 - Deep Midnight Navy */
  --brand-dark: #0B0F19;          /* Slate 950 - Executive Surface */
  --brand-slate-800: #1E293B;
  --brand-slate-700: #334155;
  
  --brand-accent: #059669;        /* Emerald 600 - Primary Brand Green matching Logo */
  --brand-accent-hover: #047857;  /* Emerald 700 */
  --brand-accent-light: #ECFDF5;  /* Emerald 50 */
  --brand-accent-border: #A7F3D0; /* Emerald 200 */
  
  --brand-indigo: #10B981;        /* Mint / Emerald 500 */
  --brand-indigo-hover: #059669;
  --brand-indigo-light: #ECFDF5;
  
  --bg-app: #F8FAFC;              /* Slate 50 - Background */
  --bg-surface: #FFFFFF;          /* Pure White */
  --bg-subtle: #F1F5F9;           /* Slate 100 */
  
  --border-subtle: #E2E8F0;       /* Slate 200 - 1px crisp borders */
  --border-muted: #CBD5E1;        /* Slate 300 */
  
  --text-main: #0F172A;           /* Slate 900 */
  --text-secondary: #475569;      /* Slate 600 */
  --text-muted: #64748B;          /* Slate 500 */
  --text-subtle: #94A3B8;         /* Slate 400 */
  
  --status-emerald: #10B981;
  --status-emerald-bg: #ECFDF5;
  --status-emerald-border: #A7F3D0;
  
  --status-amber: #F59E0B;
  --status-amber-bg: #FFFBEB;
  --status-amber-border: #FDE68A;
  
  --status-purple: #8B5CF6;
  --status-purple-bg: #F5F3FF;
  --status-purple-border: #DDD6FE;

  /* Typography: Prestigious Real Estate & Architectural Typeface Stack */
  --font-display: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'Outfit', 'Plus Jakarta Sans', sans-serif;

  /* Layout & Elevations */
  --header-height: 76px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;
  
  --shadow-subtle: 0 1px 3px 0 rgba(15, 23, 42, 0.04), 0 1px 2px -1px rgba(15, 23, 42, 0.02);
  --shadow-card: 0 4px 20px -2px rgba(15, 23, 42, 0.05), 0 2px 6px -1px rgba(15, 23, 42, 0.02);
  --shadow-elevated: 0 20px 35px -10px rgba(15, 23, 42, 0.10), 0 10px 10px -5px rgba(15, 23, 42, 0.03);
  --shadow-blue: 0 10px 25px -5px rgba(5, 150, 105, 0.30);
  
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   CSS Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  background-color: var(--bg-app);
  color: var(--text-main);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

body.modal-open,
body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: fixed;
  left: 20px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--brand-accent);
  color: #FFFFFF;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 20px;
}

.section-container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

@media (max-width: 640px) {
  .section-container {
    width: calc(100% - 32px);
  }
}

/* ==========================================================================
   Typography & Shared Micro-Components
   ========================================================================== */
.font-mono {
  font-family: var(--font-mono);
}

.sub-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--brand-accent-light);
  color: var(--brand-accent);
  border: 1px solid var(--brand-accent-border);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.sub-badge svg {
  width: 14px;
  height: 14px;
}

.sub-badge-dark {
  background: rgba(5, 150, 105, 0.15);
  color: #34D399;
  border-color: rgba(5, 150, 105, 0.35);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin: 0;
}

.section-intro {
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 12px 0 0;
  max-width: 600px;
}

.section-head-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}

@media (max-width: 900px) {
  .section-head-layout {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 28px;
  }
}

@media (max-width: 640px) {
  .section-title {
    font-size: clamp(21px, 5.2vw, 25px);
    line-height: 1.22;
  }
  .section-intro {
    font-size: 13.5px;
    margin-top: 8px;
  }
}

/* Shared Buttons */
.btn-primary-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  background: var(--brand-accent);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-blue);
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary-blue:hover {
  background: var(--brand-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -4px rgba(5, 150, 105, 0.40);
}

.btn-primary-blue:active {
  transform: translateY(0);
}

.btn-primary-blue svg {
  width: 16px;
  height: 16px;
}

.btn-secondary-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  background: var(--brand-primary);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.btn-secondary-dark:hover {
  background: var(--brand-slate-800);
  transform: translateY(-2px);
}

.btn-secondary-dark:active {
  transform: translateY(0);
}

.btn-secondary-dark svg {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  transition: background var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.08);
}

.header-container {
  width: min(1340px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(8px, 1.2vw, 20px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 46px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-fast), height var(--transition-fast);
}

.logo-white-header {
  display: block;
}

.logo-black-header {
  display: none;
}

.site-header.scrolled .logo-white-header {
  display: none;
}

.site-header.scrolled .logo-black-header {
  display: block;
}

.footer-logo-wrap {
  background: transparent !important;
  border: none !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  margin-bottom: 22px;
  display: inline-block;
}

.footer-logo-img {
  height: 65px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  line-height: 1.1;
  transition: color var(--transition-fast);
}

.brand-subtitle {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  color: var(--text-subtle);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header.scrolled .brand-title {
  color: var(--brand-primary);
}

.site-header.scrolled .brand-subtitle {
  color: var(--text-muted);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.1vw, 20px);
  white-space: nowrap;
}

.desktop-nav a {
  font-size: clamp(12px, 0.88vw, 13.5px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition-fast);
  position: relative;
  padding: 6px 2px;
  text-decoration: none;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--brand-accent);
  border-radius: var(--radius-full);
  transition: right var(--transition-fast);
}

.desktop-nav a:hover {
  color: #FFFFFF;
}

.desktop-nav a:hover::after {
  right: 0;
}

.site-header.scrolled .desktop-nav a {
  color: var(--text-secondary);
}

.site-header.scrolled .desktop-nav a:hover {
  color: var(--brand-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(6px, 0.8vw, 10px);
  flex-shrink: 0;
}

.btn-text-short {
  display: none;
}

.btn-text-full {
  display: inline;
}

.nav-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 12px;
  background: rgba(5, 150, 105, 0.18);
  color: #34D399;
  border: 1px solid rgba(5, 150, 105, 0.35);
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.nav-app-btn:hover {
  background: rgba(5, 150, 105, 0.30);
  color: #FFFFFF;
}

.nav-app-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.site-header.scrolled .nav-app-btn {
  background: var(--brand-accent-light);
  color: var(--brand-accent);
  border-color: var(--brand-accent-border);
}

.site-header.scrolled .nav-app-btn:hover {
  background: #A7F3D0;
  color: var(--brand-accent-hover);
}

.nav-staff-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 12px;
  background: rgba(30, 41, 59, 0.85);
  color: #F8FAFC;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.nav-staff-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.5);
}

.nav-staff-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.site-header.scrolled .nav-staff-btn {
  background: #1E293B;
  color: #F8FAFC;
  border-color: rgba(255, 255, 255, 0.1);
}

.site-header.scrolled .nav-staff-btn:hover {
  background: #0F172A;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.25);
}

.nav-portal-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 12px;
  background: #FFFFFF;
  color: var(--brand-primary);
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  border: none;
  cursor: pointer;
}

.nav-portal-btn:hover {
  background: var(--brand-accent);
  color: #FFFFFF;
}

.nav-portal-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.site-header.scrolled .nav-portal-btn {
  background: var(--brand-primary);
  color: #FFFFFF;
}

.site-header.scrolled .nav-portal-btn:hover {
  background: var(--brand-accent);
}

.mobile-toggle-btn {
  display: none;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  flex-shrink: 0;
}

.site-header.scrolled .mobile-toggle-btn {
  color: var(--brand-primary);
  background: var(--bg-subtle);
  border-color: var(--border-subtle);
}

.mobile-toggle-btn svg {
  width: 18px;
  height: 18px;
}

/* Mobile Slide-out Menu */
.mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(15, 23, 42, 0.70);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 85vw);
  z-index: 200;
  background: #FFFFFF;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
}

body.menu-open .mobile-backdrop {
  opacity: 1;
  visibility: visible;
}

body.menu-open .mobile-menu-drawer {
  transform: translateX(0);
}

.mobile-menu-header {
  padding: 24px 20px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-header .brand-title {
  color: var(--brand-primary);
}

.mobile-menu-header .brand-subtitle {
  color: var(--text-muted);
}

.mobile-close-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--bg-subtle);
  color: var(--text-main);
}

.mobile-close-btn svg {
  width: 18px;
  height: 18px;
}

.mobile-menu-links {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  overflow-y: auto;
}

.mobile-menu-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.mobile-menu-links a:hover {
  background: var(--brand-accent-light);
  color: var(--brand-accent);
}

.mobile-menu-links a svg {
  width: 18px;
  height: 18px;
  color: var(--brand-accent);
}

.mobile-menu-footer {
  padding: 20px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 46px;
  background: var(--brand-primary);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-md);
}

.mobile-tenant-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  background: var(--brand-accent-light);
  color: var(--brand-accent-hover);
  border: 1px solid var(--brand-accent-border);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.mobile-tenant-btn:hover {
  background: #A7F3D0;
}

.mobile-tenant-btn svg {
  width: 18px;
  height: 18px;
}

.mobile-staff-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  background: #1E293B;
  color: #F8FAFC;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.mobile-staff-btn:hover {
  background: #0F172A;
}

.mobile-staff-btn svg {
  width: 18px;
  height: 18px;
}

.mobile-portal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  background: var(--brand-primary);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.mobile-portal-btn:hover {
  background: var(--brand-slate-800);
}

.mobile-portal-btn svg {
  width: 18px;
  height: 18px;
}

.mobile-phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  background: var(--bg-subtle);
  color: var(--text-main);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-md);
}

@media (max-width: 1360px) {
  .nav-login-btn {
    display: none;
  }
}

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }
  .mobile-toggle-btn {
    display: flex;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }
  .site-header {
    height: 64px;
  }
  .header-container {
    width: calc(100% - 20px);
    gap: 8px;
  }
  .brand-logo-img {
    height: 38px;
    max-width: 145px;
  }
  .brand-subtitle {
    display: none;
  }
  .btn-text-full {
    display: none;
  }
  .btn-text-short {
    display: inline;
  }
  .nav-app-btn,
  .nav-staff-btn,
  .nav-portal-btn {
    min-height: 34px;
    padding: 0 9px;
    font-size: 11.5px;
    gap: 4px;
  }
  .nav-app-btn svg,
  .nav-staff-btn svg,
  .nav-portal-btn svg {
    width: 13px;
    height: 13px;
  }
  .mobile-toggle-btn {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 420px) {
  .header-container {
    width: calc(100% - 10px);
    gap: 4px;
  }
  .brand-logo-img {
    height: 32px;
    max-width: 110px;
  }
  .nav-app-btn,
  .nav-staff-btn,
  .nav-portal-btn {
    padding: 0 6px;
    font-size: 10.5px;
    gap: 3px;
    min-height: 32px;
  }
  .nav-app-btn svg,
  .nav-staff-btn svg,
  .nav-portal-btn svg {
    width: 11px;
    height: 11px;
  }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-height) + 40px) 0 80px;
  background: url('/assets/deans-city-aerial.jpg') center 42% / cover no-repeat;
  color: #FFFFFF;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 15, 25, 0.88) 0%,
    rgba(15, 23, 42, 0.80) 45%,
    rgba(11, 15, 25, 0.96) 100%
  );
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: min(1340px, calc(100% - 48px));
  margin: auto auto;
}

.hero-split-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 1080px) {
  .hero-split-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(5, 150, 105, 0.20);
  border: 1px solid rgba(16, 185, 129, 0.40);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #34D399;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--status-emerald);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  margin: 0;
  max-width: 900px;
}

.text-gradient-blue,
.text-gradient-emerald {
  color: #10B981;
  background: linear-gradient(135deg, #34D399 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(15px, 1.25vw, 17px);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  margin: 20px 0 0;
  max-width: 640px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn-primary-emerald {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  background: var(--brand-accent);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px -5px rgba(5, 150, 105, 0.35);
  transition: all var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
}

.btn-primary-emerald:hover {
  background: var(--brand-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -4px rgba(5, 150, 105, 0.45);
}

.btn-primary-emerald:active {
  transform: translateY(0);
}

.btn-primary-emerald svg {
  width: 16px;
  height: 16px;
}

.btn-secondary-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: all var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
}

.btn-secondary-glass:hover {
  background: rgba(30, 41, 59, 0.9);
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-2px);
}

.btn-secondary-glass:active {
  transform: translateY(0);
}

.btn-secondary-glass svg {
  width: 16px;
  height: 16px;
}

.hero-call-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  transition: color var(--transition-fast);
}

.hero-call-link:hover {
  color: #34D399;
}

.hero-call-link svg {
  width: 18px;
  height: 18px;
  color: var(--status-emerald);
}

/* ==========================================================================
   Interactive Skyline Quick Explorer Card
   ========================================================================== */
.hero-skyline-card {
  background: rgba(11, 15, 25, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  padding: 22px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.hero-skyline-card:hover {
  border-color: rgba(16, 185, 129, 0.45);
  box-shadow: 0 30px 60px -12px rgba(5, 150, 105, 0.25);
}

.hsc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.hsc-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 10px;
  background: rgba(5, 150, 105, 0.18);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  color: #34D399;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hsc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3);
}

.hsc-community-tag {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

.hsc-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 6px;
  margin-bottom: 16px;
  scrollbar-width: none;
}

.hsc-tabs::-webkit-scrollbar {
  display: none;
}

.hsc-tab {
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.hsc-tab:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
}

.hsc-tab.active {
  background: var(--brand-accent);
  color: #FFFFFF;
  border-color: var(--brand-accent);
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.35);
}

.hsc-body {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  align-items: center;
}

@media (max-width: 640px) {
  .hsc-body {
    grid-template-columns: 1fr;
  }
}

.hsc-image-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #1E293B;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hsc-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.hero-skyline-card:hover .hsc-image-box img {
  transform: scale(1.05);
}

.hsc-status-pill {
  position: absolute;
  bottom: 8px;
  left: 8px;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(11, 15, 25, 0.88);
  backdrop-filter: blur(8px);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.hsc-details {
  min-width: 0;
}

.hsc-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hsc-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hsc-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
}

.hsc-spec {
  display: flex;
  flex-direction: column;
}

.hsc-spec-val {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
}

.hsc-spec-lbl {
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.hsc-footer-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hsc-btn-primary {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 14px;
  background: var(--brand-accent);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
}

.hsc-btn-primary:hover {
  background: var(--brand-accent-hover);
}

.hsc-btn-primary svg {
  width: 14px;
  height: 14px;
}

.hsc-btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
}

.hsc-btn-wa:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #34D399;
}

.hsc-btn-wa svg {
  width: 14px;
  height: 14px;
}

/* ==========================================================================
   Architectural Bento Stats Ribbon
   ========================================================================== */
.hero-stats-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 960px) {
  .hero-stats-ribbon {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero-stats-ribbon {
    grid-template-columns: 1fr;
  }
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  transition: all var(--transition-fast);
}

.hero-stat-item:hover {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(16, 185, 129, 0.35);
  transform: translateY(-2px);
}

.hero-stat-squircle {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: rgba(5, 150, 105, 0.18);
  border: 1px solid rgba(16, 185, 129, 0.32);
  color: #34D399;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-stat-squircle svg {
  width: 20px;
  height: 20px;
}

.hero-stat-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
}

.hero-stat-label {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 3px;
  font-weight: 500;
}

.hero-stat-divider {
  display: none;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 24px;
  right: clamp(24px, 5vw, 64px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.hero-scroll-indicator:hover {
  color: #FFFFFF;
}

.hero-scroll-indicator svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: calc(var(--header-height) + 20px) 0 44px;
  }
  .hero-container {
    width: calc(100% - 32px);
  }
  .hero-title {
    font-size: clamp(25px, 7vw, 32px);
    line-height: 1.18;
    letter-spacing: -0.015em;
  }
  .hero-subtitle {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 14px;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 24px;
  }
  .hero-ctas .btn-primary-blue,
  .hero-ctas .btn-secondary-dark,
  .hero-ctas .hero-call-link {
    width: 100%;
    justify-content: center;
    text-align: center;
    min-height: 48px;
  }
  .hero-stats-ribbon {
    gap: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 28px;
    padding-top: 20px;
  }
  .hero-stat-item {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 10px 12px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  .hero-stat-value {
    font-size: 18px;
  }
  .hero-stat-divider {
    display: none;
  }
  .hero-scroll-indicator {
    display: none;
  }
}

/* ==========================================================================
   Executive KPI Metrics Band
   ========================================================================== */
/* ==========================================================================
   Executive KPI Metrics Band
   ========================================================================== */
.kpi-band {
  background: var(--bg-app);
  padding: 40px 0;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  z-index: 10;
}

.kpi-container {
  width: min(1340px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.kpi-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-xl);
  box-shadow: 0 2px 8px -2px rgba(15, 23, 42, 0.04);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.kpi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -6px rgba(15, 23, 42, 0.08);
  border-color: #CBD5E1;
}

.kpi-icon-wrap {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  transition: transform var(--transition-fast);
}

.kpi-card:hover .kpi-icon-wrap {
  transform: scale(1.05);
}

.kpi-card:nth-child(1) .kpi-icon-wrap {
  background: #ECFDF5;
  color: #059669;
  border: 1px solid rgba(5, 150, 105, 0.25);
}

.kpi-card:nth-child(2) .kpi-icon-wrap {
  background: #F0F9FF;
  color: #0284C7;
  border: 1px solid rgba(2, 132, 199, 0.25);
}

.kpi-card:nth-child(3) .kpi-icon-wrap {
  background: #FFFBEB;
  color: #D97706;
  border: 1px solid rgba(217, 119, 6, 0.25);
}

.kpi-card:nth-child(4) .kpi-icon-wrap {
  background: #EEF2FF;
  color: #4F46E5;
  border: 1px solid rgba(79, 70, 229, 0.25);
}

.kpi-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.kpi-info {
  display: flex;
  flex-direction: column;
}

.kpi-number {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
  line-height: 1.1;
}

.kpi-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  margin-top: 4px;
}

.kpi-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 4px 0 0;
}

@media (max-width: 1024px) {
  .kpi-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .kpi-container {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .kpi-card {
    padding: 18px;
  }
}

/* ==========================================================================
   Master Plan & Towers Section
   ========================================================================== */
.towers-section {
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--bg-app);
}

.masterplan-card {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: #FFFFFF;
  box-shadow: var(--shadow-card);
}

.masterplan-image-wrap {
  position: relative;
  width: 100%;
  height: clamp(380px, 50vw, 620px);
  overflow: hidden;
}

.masterplan-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.masterplan-overlay-card {
  position: absolute;
  bottom: clamp(16px, 3vw, 32px);
  right: clamp(16px, 3vw, 32px);
  width: min(440px, calc(100% - 32px));
  background: rgba(15, 23, 42, 0.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: #FFFFFF;
  box-shadow: var(--shadow-elevated);
}

.masterplan-chip {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #34D399;
  margin-bottom: 8px;
}

.masterplan-card-title {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.25;
}

.masterplan-card-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.5;
  margin: 10px 0 16px;
}

.masterplan-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.mf-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.90);
}

.mf-item svg {
  width: 14px;
  height: 14px;
  color: var(--status-emerald);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .masterplan-overlay-card {
    position: static;
    width: 100%;
    border-radius: 0;
    background: var(--brand-primary);
  }
}

/* ==========================================================================
   Live Inventory Catalog (API Connected)
   ========================================================================== */
.inventory-section {
  padding: clamp(64px, 8vw, 100px) 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.inventory-header-block {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.live-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--status-emerald-bg);
  border: 1px solid var(--status-emerald-border);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  color: #065F46;
  white-space: nowrap;
}

.live-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--status-emerald);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
}

/* Controls Panel */
.inventory-controls-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px;
  background: var(--bg-app);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
}

.filter-tabs-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-tab-btn {
  min-height: 38px;
  padding: 0 16px;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.filter-tab-btn:hover {
  border-color: var(--brand-accent);
  color: var(--brand-accent);
  background: var(--brand-accent-light);
}

.filter-tab-btn.active {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
}

.search-filter-wrapper {
  position: relative;
  min-width: 260px;
}

.search-filter-wrapper .search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--text-muted);
}

.search-filter-wrapper input {
  width: 100%;
  height: 38px;
  padding: 0 14px 0 38px;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-main);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.search-filter-wrapper input:focus {
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

/* Property Cards Grid */
.property-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .property-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .property-cards-grid {
    grid-template-columns: 1fr;
  }
  .inventory-header-block {
    flex-direction: column;
    align-items: flex-start;
  }
  .search-filter-wrapper {
    width: 100%;
  }
}

/* Single Property Card Component */
.property-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.property-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
  border-color: var(--border-muted);
}

.property-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--bg-subtle);
  overflow: hidden;
}

.property-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.property-card:hover .property-card-media img {
  transform: scale(1.04);
}

.property-card-tags {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  z-index: 2;
}

.status-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.status-tag.available {
  background: var(--brand-accent);
  color: #FFFFFF;
}

.status-tag.completed {
  background: var(--status-emerald);
  color: #FFFFFF;
}

.status-tag.under_construction {
  background: var(--status-amber);
  color: #FFFFFF;
}

.status-tag.commercial {
  background: var(--status-purple);
  color: #FFFFFF;
}

.tower-pill {
  padding: 4px 10px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
}

.property-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.property-specs-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.spec-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}

.spec-item svg {
  width: 14px;
  height: 14px;
  color: var(--brand-accent);
}

.property-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--text-main);
  margin: 0 0 8px;
  min-height: 44px;
}

.property-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.property-card-footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price-box {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-top: 2px;
}

.inquire-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 38px;
  padding: 0 14px;
  background: var(--brand-accent-light);
  color: var(--brand-accent);
  border: 1px solid var(--brand-accent-border);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.inquire-btn:hover {
  background: var(--brand-accent);
  color: #FFFFFF;
  border-color: var(--brand-accent);
}

.inquire-btn svg {
  width: 14px;
  height: 14px;
}

/* Loading & Empty States */
.loading-state-card,
.empty-state-card {
  grid-column: 1 / -1;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--bg-app);
  border: 1px dashed var(--border-muted);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
  text-align: center;
  padding: 32px;
}

.spinner-ring {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border-subtle);
  border-top-color: var(--brand-accent);
  border-radius: 50%;
  animation: spinRing 0.8s linear infinite;
}

@keyframes spinRing {
  to { transform: rotate(360deg); }
}

/* Inventory Footer Banner */
.inventory-footer-card {
  margin-top: 36px;
  padding: 24px 28px;
  background: var(--bg-app);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.if-icon {
  width: 24px;
  height: 24px;
  color: var(--brand-accent);
  flex-shrink: 0;
}

.if-left strong {
  display: block;
  font-size: 15px;
  color: var(--text-main);
}

.if-left p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 2px 0 0;
}

@media (max-width: 768px) {
  .inventory-footer-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   Lifestyle & Amenities (Executive Dark Section)
   ========================================================================== */
.lifestyle-section {
  padding: clamp(64px, 8vw, 110px) 0;
  background: var(--brand-dark);
  color: #FFFFFF;
}

.lifestyle-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.lifestyle-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0;
}

@media (max-width: 640px) {
  .lifestyle-title {
    font-size: clamp(21px, 5.5vw, 26px);
    line-height: 1.22;
  }
}

.lifestyle-subtitle {
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--text-subtle);
  line-height: 1.6;
  margin: 14px 0 0;
}

.amenities-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.amenity-card {
  background: rgba(30, 41, 59, 0.45);
  border: 1px solid rgba(51, 65, 85, 0.60);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), background var(--transition-smooth);
}

.amenity-card:hover {
  transform: translateY(-4px);
  background: rgba(30, 41, 59, 0.70);
  border-color: var(--brand-accent);
}

.amenity-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.amenity-icon-box {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.30);
  border-radius: var(--radius-md);
  color: #10B981;
}

.amenity-icon-box svg {
  width: 22px;
  height: 22px;
}

.amenity-index {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
}

.amenity-heading {
  font-size: 19px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 10px;
}

.amenity-text {
  font-size: 13px;
  color: var(--text-subtle);
  line-height: 1.55;
  margin: 0 0 20px;
  flex: 1;
}

.amenity-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 1024px) {
  .amenities-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .amenities-bento-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Resident Mobile App & Digital Ecosystem Showcase
   ========================================================================== */
.app-ecosystem-section {
  padding: clamp(64px, 8vw, 110px) 0;
  background: var(--bg-app);
}

.app-showcase-layout {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

/* ==========================================================================
   Ultra-Realistic Smartphone Chassis with Live Interactive App Viewport
   ========================================================================== */
.phone-mockup-stage {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.real-phone-wrapper {
  position: relative;
  width: min(372px, 94vw);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* iPhone 17 Pro Max Titanium Side Rails & Tactile Buttons */
.phone-side-btn {
  position: absolute;
  background: #475569;
  border-radius: 2px;
  z-index: 1;
  box-shadow: -1px 0 2px rgba(0, 0, 0, 0.4);
}

.btn-action-button {
  left: -4px;
  top: 72px;
  width: 4px;
  height: 30px;
  background: #10B981;
}

.btn-vol-up {
  left: -4px;
  top: 116px;
  width: 4px;
  height: 48px;
}

.btn-vol-down {
  left: -4px;
  top: 176px;
  width: 4px;
  height: 48px;
}

.btn-power {
  right: -4px;
  top: 130px;
  width: 4px;
  height: 64px;
}

.btn-camera-control {
  right: -4px;
  top: 310px;
  width: 4px;
  height: 52px;
  background: #94A3B8;
}

/* Outer Titanium Frame & Sub-1mm Ultra Slim Bezel */
.phone-device-shell {
  width: 100%;
  aspect-ratio: 9 / 19.8;
  max-height: 720px;
  background: #020617;
  border: 7px solid #0B0F19;
  outline: 2px solid #334155;
  border-radius: 50px;
  box-shadow: 0 35px 80px -15px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Front Selfie Camera Punch-Hole Dot (Top Center) */
.phone-front-camera-dot {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background-color: #000000;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1.5px rgba(0, 0, 0, 0.4), 0 0 2px rgba(255, 255, 255, 0.15);
  z-index: 25;
  pointer-events: none;
}

.camera-dot-lens {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle at 35% 35%, #38BDF8, #020617);
  box-shadow: 0 0 2px rgba(56, 189, 248, 0.5);
}

/* 100% Full Screen Edge-to-Edge App Viewport */
.phone-viewport-container.full-screen-app {
  flex: 1;
  width: 100%;
  height: 100%;
  background-color: #F8FAFC;
  overflow: hidden;
  position: relative;
}

.real-app-iframe {
  width: 100%;
  height: 100%;
  border: none;
  background-color: #F8FAFC;
  display: block;
}

/* Floating Subtle Home Bar */
.phone-floating-home-bar {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 4px;
  background-color: rgba(15, 23, 42, 0.35);
  border-radius: var(--radius-full);
  z-index: 25;
  pointer-events: none;
}

/* Live Demo Interactive Pill */
.live-demo-pill {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #34D399;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}

.live-dot-pulse {
  width: 7px;
  height: 7px;
  border-radius: var(--radius-full);
  background-color: #10B981;
  box-shadow: 0 0 8px #10B981;
}

/* App Info Right Panel */
.app-features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}

.app-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.af-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--brand-accent-light);
  color: var(--brand-accent);
  border: 1px solid var(--brand-accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.af-icon svg {
  width: 20px;
  height: 20px;
}

.app-feature-item strong {
  display: block;
  font-size: 16px;
  color: var(--text-main);
}

.app-feature-item p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 4px 0 0;
  line-height: 1.5;
}

.app-launch-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.mobile-store-strip {
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-muted);
}

.mobile-store-strip svg {
  width: 14px;
  height: 14px;
  color: var(--status-emerald);
  vertical-align: -2px;
  margin-right: 4px;
}

@media (max-width: 1024px) {
  .app-showcase-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .app-info-content {
    order: 1;
    width: 100%;
  }
  .phone-mockup-stage {
    order: 2;
    margin: 28px auto 0;
    width: 100%;
  }
}

/* ==========================================================================
   Sales Office & Contact Section
   ========================================================================== */
.contact-section {
  padding: clamp(64px, 8vw, 110px) 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
}

.contact-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-cards-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.contact-action-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg-app);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.contact-action-card:not(.static):hover {
  background: #FFFFFF;
  border-color: var(--brand-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.cac-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--brand-accent-light);
  color: var(--brand-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cac-icon.cac-whatsapp {
  background: var(--status-emerald-bg);
  color: var(--status-emerald);
}

.cac-icon svg {
  width: 20px;
  height: 20px;
}

.cac-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.cac-value {
  display: block;
  font-size: 15px;
  color: var(--text-main);
  margin-top: 2px;
}

.cac-arrow {
  margin-left: auto;
  width: 18px;
  height: 18px;
  color: var(--text-muted);
}

/* Contact Form Card */
.form-shell-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-elevated);
}

.form-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-main);
  margin: 0;
}

.form-subtitle {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 6px 0 24px;
}

.inquiry-form-element {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.input-icon-wrap {
  position: relative;
}

.input-icon-wrap svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  pointer-events: none;
}

.input-icon-wrap.textarea-wrap svg {
  top: 16px;
  transform: none;
}

.input-icon-wrap input,
.input-icon-wrap select,
.input-icon-wrap textarea {
  width: 100%;
  padding: 12px 14px 12px 42px;
  background: var(--bg-app);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--text-main);
  outline: none;
  transition: all var(--transition-fast);
}

.input-icon-wrap input:focus,
.input-icon-wrap select:focus,
.input-icon-wrap textarea:focus {
  background: #FFFFFF;
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

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

/* Two selects side by side leave ~150px each on a phone, so "Apartment for
   Sale" showed as "Apartment f…". Stack them instead of truncating. */
@media (max-width: 560px) {
  .form-grid-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* The fixed "under construction" notice is 70px tall and sits over whatever the
   page ends with — on a phone it covered the bottom of this very form. Reserve
   the room so nothing is permanently hidden behind it. */
@media (max-width: 640px) {
  body:has(.under-contract-floating-badge) {
    padding-bottom: 96px;
  }
}

.btn-submit-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 50px;
  background: #059669;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.25);
  transition: all var(--transition-fast);
  margin-top: 6px;
}

.btn-submit-whatsapp:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(5, 150, 105, 0.35);
}

.btn-submit-whatsapp svg {
  width: 18px;
  height: 18px;
}

.form-privacy-note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin: 6px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.form-privacy-note svg {
  width: 12px;
  height: 12px;
}

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

/* ==========================================================================
   Split Dual-Login Modal Dialog
   ========================================================================== */
.login-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
}

.login-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.login-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
}

.login-modal-dialog {
  position: relative;
  width: min(500px, calc(100% - 28px));
  max-height: 90vh;
  overflow-y: auto;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 24px 22px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.28);
  transform: translateY(20px) scale(0.98);
  transition: transform var(--transition-smooth);
}

.login-modal-overlay.open .login-modal-dialog {
  transform: translateY(0) scale(1);
}

.lmd-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lmd-brand-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lmd-shield-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: var(--brand-accent-light);
  color: var(--brand-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--brand-accent-border);
}

.lmd-shield-icon svg {
  width: 20px;
  height: 20px;
}

.lmd-eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-accent);
}

.lmd-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin: 1px 0 0;
}

.lmd-close-btn {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--bg-subtle);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.lmd-close-btn:hover {
  background: #E2E8F0;
  color: var(--text-main);
}

.lmd-close-btn svg {
  width: 16px;
  height: 16px;
}

.lmd-instructions {
  font-size: 12.5px;
  color: var(--text-muted);
  margin: 10px 0 16px;
  line-height: 1.4;
}

.lmd-options-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lmd-portal-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-app);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all var(--transition-smooth);
}

.lmd-portal-card:hover {
  background: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.08);
}

.resident-card:hover {
  border-color: var(--brand-accent);
}

.management-card:hover {
  border-color: var(--brand-primary);
}

.lpc-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.res-box {
  background: var(--brand-accent);
  color: #FFFFFF;
}

.mgmt-box {
  background: var(--brand-primary);
  color: #FFFFFF;
}

.lpc-icon-box svg {
  width: 20px;
  height: 20px;
}

.lpc-info {
  flex: 1;
  min-width: 0;
}

.lpc-tag-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}

.lpc-badge {
  font-family: var(--font-heading);
  font-size: 9.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}

.lpc-badge-blue {
  background: var(--brand-accent-light);
  color: var(--brand-accent);
}

.lpc-badge-dark {
  background: #E2E8F0;
  color: var(--brand-primary);
}

.lpc-pro-tag {
  font-family: var(--font-mono);
  font-size: 8.5px;
  font-weight: 700;
  background: rgba(15, 23, 42, 0.06);
  padding: 1px 5px;
  border-radius: 4px;
  color: var(--text-muted);
}

.lpc-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.lpc-description {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.35;
  margin: 2px 0 0;
}

.lpc-action-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 800;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.res-pill {
  background: var(--brand-accent);
  color: #FFFFFF;
}

.mgmt-pill {
  background: var(--brand-primary);
  color: #FFFFFF;
}

.lpc-action-pill svg {
  width: 13px;
  height: 13px;
}

.lmd-portal-card:hover .lpc-action-pill {
  transform: translateX(2px);
}

.lmd-footer-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
  font-weight: 600;
}

.lmd-footer-secure svg {
  width: 12px;
  height: 12px;
  color: var(--status-emerald);
}

@media (max-width: 480px) {
  .login-modal-dialog {
    padding: 18px 14px;
    border-radius: 16px;
    width: calc(100% - 24px);
  }
  .lmd-portal-card {
    padding: 12px;
    gap: 10px;
  }
  .lpc-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }
  .lpc-icon-box svg {
    width: 18px;
    height: 18px;
  }
  .lpc-name {
    font-size: 14px;
  }
  .lpc-action-pill {
    padding: 5px 9px;
    font-size: 10.5px;
  }
}

/* ==========================================================================
   Executive Footer
   ========================================================================== */
.site-footer {
  background: var(--brand-dark);
  color: #FFFFFF;
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-main-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
  color: #FFFFFF;
}

.footer-brand-text {
  font-size: 13px;
  color: var(--text-subtle);
  line-height: 1.6;
  margin: 10px 0 20px;
  max-width: 340px;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact-items span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact-items svg {
  width: 14px;
  height: 14px;
  color: #10B981;
}

.footer-col-header {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #34D399;
  margin-bottom: 18px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list a {
  font-size: 13px;
  color: var(--text-subtle);
  transition: color var(--transition-fast);
}

.footer-links-list a:hover {
  color: #FFFFFF;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: var(--text-muted);
}

.back-to-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.80);
  transition: color var(--transition-fast);
}

.back-to-top-btn:hover {
  color: #FFFFFF;
}

.back-to-top-btn svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 900px) {
  .footer-main-row {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .footer-main-row {
    grid-template-columns: 1fr;
  }
  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   Entrance Keyframes
   ========================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 500ms ease both;
}

.animate-slide-up {
  animation: fadeInUp 600ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.delay-1 { animation-delay: 100ms; }
.delay-2 { animation-delay: 200ms; }

/* ==========================================================================
   Imtiaz Mega Mall & Tri Tower Spotlight Showcase
   ========================================================================== */
.mall-spotlight-card {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 32px;
  background: rgba(30, 41, 59, 0.70);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  transition: transform var(--transition-smooth), border-color var(--transition-fast);
}

.mall-spotlight-card:hover {
  border-color: rgba(96, 165, 250, 0.40);
  transform: translateY(-2px);
}

.mall-spotlight-img-wrap {
  position: relative;
  min-height: 380px;
  background-color: #0B0F19;
  overflow: hidden;
}

.mall-spotlight-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mall-spotlight-card:hover .mall-spotlight-img-wrap img {
  transform: scale(1.04);
}

.mall-img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
}

.mall-img-badge svg {
  color: #10B981;
  width: 16px;
  height: 16px;
}

.mall-spotlight-content {
  padding: 36px 36px 36px 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #FFFFFF;
}

.mall-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(5, 150, 105, 0.20);
  border: 1px solid rgba(96, 165, 250, 0.35);
  color: #34D399;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  width: fit-content;
  margin-bottom: 14px;
}

.mall-dot {
  width: 7px;
  height: 7px;
  border-radius: var(--radius-full);
  background-color: #38BDF8;
  box-shadow: 0 0 8px #38BDF8;
}

.mall-spotlight-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  line-height: 1.2;
  margin: 0 0 12px 0;
}

.mall-spotlight-desc {
  font-size: 14px;
  color: #94A3B8;
  line-height: 1.6;
  margin: 0 0 24px 0;
}

.mall-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.mall-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.mall-feat-item svg {
  width: 20px;
  height: 20px;
  color: #10B981;
  flex-shrink: 0;
  margin-top: 2px;
}

.mall-feat-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #F8FAFC;
  margin-bottom: 2px;
}

.mall-feat-item span {
  display: block;
  font-size: 11px;
  color: #94A3B8;
  line-height: 1.4;
}

.mall-spotlight-action {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  .mall-spotlight-card {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .mall-spotlight-content {
    padding: 28px;
  }
  .mall-features-list {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Load More Action Button
   ========================================================================== */
.load-more-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 36px 0 20px;
}

.btn-load-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #FFFFFF;
  border: 1px solid var(--border-subtle);
  color: var(--brand-primary);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  cursor: pointer;
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition-fast);
}

.btn-load-more:hover {
  background-color: var(--brand-accent-light);
  border-color: var(--brand-accent-border);
  color: var(--brand-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.btn-load-more svg {
  width: 16px;
  height: 16px;
  color: var(--brand-accent);
  transition: transform var(--transition-fast);
}

@media (max-width: 768px) {
  .brand-logo-img {
    height: 44px;
    max-width: 190px;
  }
  .footer-logo-img {
    height: 56px;
    max-width: 230px;
  }
}

/* ==========================================================================
   Property Inquiry & Booking Interactive Modal
   ========================================================================== */
.inquiry-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease, visibility 250ms ease;
  visibility: hidden;
}

.inquiry-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.inquiry-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(8px);
}

.inquiry-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 560px;
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.4);
  padding: 28px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(16px) scale(0.98);
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.inquiry-modal-overlay.open .inquiry-modal-dialog {
  transform: translateY(0) scale(1);
}

.inquiry-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #F1F5F9;
}

.inquiry-brand-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.inquiry-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #ECFDF5;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inquiry-icon-box svg {
  width: 22px;
  height: 22px;
}

.inquiry-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #059669;
  text-transform: uppercase;
}

.inquiry-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.02em;
}

.inquiry-close-btn {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  color: #64748B;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 150ms ease;
}

.inquiry-close-btn:hover {
  background: #F1F5F9;
  color: #0F172A;
  transform: rotate(90deg);
}

.inquiry-prop-preview {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 20px;
}

.inquiry-prop-preview img {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.inquiry-prop-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.inquiry-prop-tags {
  display: flex;
  align-items: center;
  gap: 6px;
}

.inquiry-badge {
  font-size: 9px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 9999px;
  background: #059669;
  color: #FFFFFF;
  letter-spacing: 0.05em;
}

.inquiry-tower {
  font-size: 10px;
  font-weight: 700;
  color: #64748B;
}

.inquiry-prop-info strong {
  font-size: 14px;
  font-weight: 700;
  color: #0F172A;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.inquiry-prop-price {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: #059669;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

@media (max-width: 540px) {
  .inquiry-form-row {
    grid-template-columns: 1fr;
  }
}

.inquiry-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.inquiry-field label {
  font-size: 12px;
  font-weight: 700;
  color: #334155;
}

.required-star {
  color: #E11D48;
}

.opt-label {
  font-size: 11px;
  font-weight: normal;
  color: #94A3B8;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon svg {
  position: absolute;
  left: 12px;
  width: 16px;
  height: 16px;
  color: #94A3B8;
  pointer-events: none;
}

.input-with-icon input,
.input-with-icon select,
.inquiry-field textarea {
  width: 100%;
  border: 1px solid #CBD5E1;
  border-radius: 10px;
  background: #FFFFFF;
  color: #0F172A;
  font-family: var(--font-sans);
  font-size: 13px;
  padding: 10px 12px 10px 36px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
  outline: none;
}

.inquiry-field textarea {
  padding: 10px 12px;
  resize: vertical;
}

.input-with-icon input:focus,
.input-with-icon select:focus,
.inquiry-field textarea:focus {
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12);
}

.inquiry-actions {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

@media (max-width: 500px) {
  .inquiry-actions {
    flex-direction: column;
  }
}

.btn-submit-inquiry {
  flex: 1.4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #059669;
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 150ms ease;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
}

.btn-submit-inquiry:hover {
  background: #047857;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(5, 150, 105, 0.35);
}

.btn-submit-inquiry svg {
  width: 16px;
  height: 16px;
}

.btn-whatsapp-inquiry {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 150ms ease;
}

.btn-whatsapp-inquiry:hover {
  background: #1EBE5D;
  transform: translateY(-1px);
}

.btn-whatsapp-inquiry svg {
  width: 16px;
  height: 16px;
}

.inquiry-status-msg {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.inquiry-status-msg.success {
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: #065F46;
}

.inquiry-status-msg.error {
  background: #FFF1F2;
  border: 1px solid #FECDD3;
  color: #9F1239;
}

/* Feedback under the main enquiry form. It had none at all before: the form
   simply tried to open WhatsApp, so a blocked popup left the visitor staring
   at a button that appeared to do nothing. */
.inquiry-form-status {
  display: none;
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  color: #334155;
}

.inquiry-form-status.success {
  background: #ECFDF5;
  border-color: #A7F3D0;
  color: #065F46;
}

.inquiry-form-status.error {
  background: #FFF1F2;
  border-color: #FECDD3;
  color: #9F1239;
}



/* ============================================================
   Walkthrough · Master Plan · Floor Plans · Gallery · FAQ
   Luxury Architectural Layouts & Full Mobile Responsiveness
   ============================================================ */

/* ---- Shared: zoomable media affordance ---- */
[data-zoom] { cursor: zoom-in; }

/* ---- Cinematic walkthrough ---- */
.walkthrough-section {
  padding: clamp(48px, 6vw, 76px) 0;
  background: var(--bg-surface);
}

.video-frame {
  margin-top: clamp(24px, 4vw, 36px);
  border-radius: clamp(14px, 2.5vw, 22px);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--brand-dark);
  box-shadow: 0 26px 60px -28px rgba(15, 23, 42, .5);
}
.video-poster {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  aspect-ratio: 16 / 9;
}
.video-poster img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-poster-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,15,25,.15) 0%, rgba(11,15,25,.75) 100%);
}
.video-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(54px, 8vw, 78px);
  height: clamp(54px, 8vw, 78px);
  display: grid; place-items: center;
  border-radius: 999px;
  background: var(--brand-accent);
  color: #fff;
  box-shadow: 0 14px 34px -8px rgba(5, 150, 105, .7);
  transition: transform .25s ease, background .25s ease;
}
.video-poster:hover .video-play-btn { transform: translate(-50%, -50%) scale(1.08); background: var(--brand-accent-hover); }
.video-play-btn svg { width: clamp(22px, 3.5vw, 30px); height: clamp(22px, 3.5vw, 30px); margin-left: 3px; }
.video-poster-meta {
  position: absolute;
  left: clamp(14px, 2.5vw, 24px);
  right: clamp(14px, 2.5vw, 24px);
  bottom: clamp(12px, 2vw, 20px);
  display: flex; flex-direction: column; gap: 3px; text-align: left;
}
.video-poster-title { color: #fff; font-weight: 800; font-size: clamp(0.88rem, 2vw, 1.05rem); letter-spacing: -.01em; }
.video-poster-sub { color: rgba(255,255,255,.72); font-size: clamp(0.72rem, 1.5vw, 0.8rem); font-weight: 500; }
.video-frame video { width: 100%; display: block; aspect-ratio: 16 / 9; background: #000; }

/* ============================================================
   Architectural Master Plan & Bento Showcase
   ============================================================ */
.masterplan-section {
  padding: clamp(56px, 7vw, 92px) 0;
  background: #0B0F19;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.masterplan-section .section-title {
  color: #FFFFFF;
}

.masterplan-section .section-intro {
  color: #94A3B8;
}

.masterplan-section .sub-badge {
  background: rgba(5, 150, 105, 0.15);
  border-color: rgba(5, 150, 105, 0.35);
  color: #34D399;
}

/* ============================================================
   Architectural Blueprint Studio & Master Engineering Console
   ============================================================ */
.mp-studio-wrapper {
  margin-top: clamp(28px, 4vw, 44px);
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: clamp(18px, 2.5vw, 24px);
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(16, 185, 129, 0.1);
  position: relative;
}

.mp-toolbar {
  padding: clamp(12px, 1.6vw, 16px) clamp(16px, 2vw, 22px);
  background: rgba(11, 15, 25, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 20;
}

.mp-layer-tabs {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.mp-layer-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94A3B8;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.mp-layer-tab svg,
.mp-layer-tab i {
  width: 15px;
  height: 15px;
  stroke-width: 2.2;
}

.mp-layer-tab:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #F8FAFC;
}

.mp-layer-tab.active {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.5);
  color: #34D399;
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.18);
}

.mp-toolbar-tools {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.mp-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #CBD5E1;
  font-size: 11px;
  font-weight: 600;
}

.mp-meta-chip svg,
.mp-meta-chip i {
  width: 13px;
  height: 13px;
  color: #34D399;
}

.btn-mp-inspect {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 15px;
  border-radius: 10px;
  background: #059669;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
  transition: all 200ms ease;
}

.btn-mp-inspect svg,
.btn-mp-inspect i {
  width: 14px;
  height: 14px;
}

.btn-mp-inspect:hover {
  background: #047857;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(5, 150, 105, 0.5);
}

/* Viewport Stage */
.mp-viewport-stage {
  position: relative;
  width: 100%;
  min-height: 520px;
  height: clamp(520px, 60vh, 660px);
  background: #070c17;
  overflow: hidden;
  cursor: zoom-in;
}

.mp-canvas-grid-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.65;
}

.mp-canvas-frame {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mp-canvas-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(16px, 2.5vw, 28px);
  transition: opacity 280ms ease, transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.mp-canvas-frame img.fade-out {
  opacity: 0.2;
}

/* Interactive Sector Hotspots */
.mp-hotspots-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.mp-hotspots-layer.hidden {
  opacity: 0;
  pointer-events: none;
}

.mp-hotspot-pin {
  pointer-events: auto;
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 12;
  background: transparent;
  border: none;
  padding: 0;
  outline: none;
}

.mhp-ping {
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.45);
  animation: hotspotPing 2.2s cubic-bezier(0, 0, 0.2, 1) infinite;
  pointer-events: none;
}

@keyframes hotspotPing {
  0% { transform: scale(0.9); opacity: 0.85; }
  75%, 100% { transform: scale(2.2); opacity: 0; }
}

.mhp-dot {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #059669;
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 14px rgba(16, 185, 129, 0.8), 0 4px 10px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1), background-color 200ms ease, box-shadow 200ms ease;
}

.mhp-dot svg,
.mhp-dot i {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
}

.mp-hotspot-pin:hover .mhp-dot,
.mp-hotspot-pin.active .mhp-dot {
  transform: scale(1.22);
  background: #10B981;
  box-shadow: 0 0 24px rgba(16, 185, 129, 1), 0 6px 14px rgba(0, 0, 0, 0.6);
}

.mhp-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  opacity: 0;
  pointer-events: none;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 6px 12px;
  white-space: nowrap;
  font-size: 11px;
  color: #CBD5E1;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 25;
}

.mhp-tooltip strong {
  color: #34D399;
  font-weight: 700;
}

.mp-hotspot-pin:hover .mhp-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Floating Contextual Sector HUD Drawer */
.mp-sector-hud {
  position: absolute;
  bottom: 22px;
  left: 22px;
  max-width: 380px;
  width: calc(100% - 44px);
  background: rgba(11, 15, 25, 0.88);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 16px;
  padding: 16px 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.05);
  z-index: 15;
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
}

.msh-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.msh-eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: #10B981;
}

.msh-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 6px;
  background: rgba(16, 185, 129, 0.18);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.msh-title {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.3;
}

.msh-desc {
  margin: 6px 0 12px;
  font-size: 12px;
  color: #94A3B8;
  line-height: 1.45;
}

.msh-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.msh-stat {
  display: flex;
  flex-direction: column;
}

.msh-stat-lbl {
  font-size: 10px;
  color: #64748B;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.msh-stat strong {
  font-size: 12px;
  font-weight: 700;
  color: #F8FAFC;
  margin-top: 2px;
}

/* Viewport Footer Bar */
.mp-viewport-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px clamp(16px, 2vw, 22px);
  background: rgba(11, 15, 25, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 10;
}

.mvf-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.mvf-pill {
  font-size: 12px;
  font-weight: 600;
  color: #CBD5E1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mvf-pill svg,
.mvf-pill i {
  width: 14px;
  height: 14px;
  color: #34D399;
}

.mvf-right {
  display: flex;
  align-items: center;
}

.mvf-hint {
  font-size: 12px;
  color: #94A3B8;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mvf-hint svg,
.mvf-hint i {
  width: 14px;
  height: 14px;
  color: #F59E0B;
}

/* Structural & Civil Engineering Specification Bento */
.engineering-bento-grid {
  margin-top: clamp(28px, 4vw, 40px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.eng-card {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
  position: relative;
}

.eng-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: 0 20px 40px -15px rgba(5, 150, 105, 0.2);
}

.eng-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.eng-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  color: #34D399;
}

.eng-icon-box svg,
.eng-icon-box i {
  width: 20px;
  height: 20px;
}

.eng-tag {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  border-radius: 6px;
}

.eng-tag.emerald {
  background: rgba(5, 150, 105, 0.2);
  color: #34D399;
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.eng-tag.gold {
  background: rgba(245, 158, 11, 0.2);
  color: #FBBF24;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.eng-tag.amber {
  background: rgba(217, 119, 6, 0.2);
  color: #FCD34D;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.eng-metric {
  font-size: 11px;
  font-weight: 700;
  color: #10B981;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.eng-title {
  font-size: 17px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.eng-desc {
  font-size: 13px;
  color: #94A3B8;
  line-height: 1.5;
  margin: 0 0 16px;
  flex-grow: 1;
}

.eng-footer-stat {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  color: #64748B;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.eng-footer-stat strong {
  color: #E2E8F0;
  font-weight: 700;
}

/* Executive Architectural Document Vault */
.doc-vault-card {
  margin-top: clamp(28px, 4vw, 40px);
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: clamp(18px, 2.5vw, 24px);
  padding: clamp(24px, 3.5vw, 36px);
  box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.doc-vault-card::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -15%;
  width: 50%;
  height: 180%;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.dvc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.dvc-title-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.dvc-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(5, 150, 105, 0.2);
  border: 1px solid rgba(52, 211, 153, 0.4);
  display: grid;
  place-items: center;
  color: #34D399;
  flex-shrink: 0;
}

.dvc-icon-wrap svg,
.dvc-icon-wrap i {
  width: 26px;
  height: 26px;
}

.dvc-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #34D399;
  display: block;
  margin-bottom: 3px;
}

.dvc-heading {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: -0.01em;
}

.dvc-sub {
  font-size: 13px;
  color: #94A3B8;
  line-height: 1.5;
  max-width: 560px;
  margin: 0;
}

.doc-vault-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}

.vault-tile {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

.vault-tile:hover {
  transform: translateY(-3px);
  background: rgba(15, 23, 42, 0.95);
  border-color: rgba(16, 185, 129, 0.45);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.vt-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.vt-icon-box.pdf {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #F87171;
}

.vt-icon-box.img {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #FBBF24;
}

.vt-icon-box svg,
.vt-icon-box i {
  width: 22px;
  height: 22px;
}

.vt-info {
  flex-grow: 1;
  min-width: 0;
}

.vt-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.vt-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
}

.vt-badge.emerald {
  background: rgba(5, 150, 105, 0.2);
  color: #34D399;
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.vt-badge.gold {
  background: rgba(245, 158, 11, 0.2);
  color: #FBBF24;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.vt-size {
  font-size: 11px;
  color: #64748B;
  font-weight: 600;
}

.vt-name {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #FFFFFF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vt-desc {
  margin: 4px 0 0;
  font-size: 12px;
  color: #94A3B8;
  line-height: 1.4;
}

.vt-action {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(5, 150, 105, 0.2);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: #34D399;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 200ms ease;
}

.vt-action svg,
.vt-action i {
  width: 18px;
  height: 18px;
}

.vault-tile:hover .vt-action {
  background: #059669;
  color: #FFFFFF;
  transform: translateY(2px);
}

/* Masterplan Responsive Breakpoints */
@media (max-width: 1100px) {
  .engineering-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .doc-vault-grid {
    grid-template-columns: 1fr;
  }
  .mp-viewport-stage {
    min-height: 440px;
    height: 460px;
  }
  .mp-sector-hud {
    bottom: 16px;
    left: 16px;
    right: 16px;
    max-width: none;
    width: auto;
  }
}

@media (max-width: 640px) {
  .engineering-bento-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .mp-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .mp-layer-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .mp-layer-tab {
    justify-content: center;
    font-size: 12px;
    padding: 8px 10px;
  }
  .mp-toolbar-tools {
    justify-content: space-between;
  }
  .mp-viewport-stage {
    min-height: 380px;
    height: 400px;
  }
  .msh-stats-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* ============================================================
   Architectural Blueprint Studio & Residence Configurator
   ============================================================ */
.floorplans-section {
  padding: clamp(56px, 7vw, 92px) 0;
  background: var(--bg-surface);
}

.fp-studio-tabs {
  margin-top: clamp(24px, 4vw, 36px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.fp-studio-tab {
  background: var(--bg-app);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

.fp-studio-tab svg {
  width: 22px;
  height: 22px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: color 250ms ease;
}

.fp-studio-tab .tab-label-group {
  display: flex;
  flex-direction: column;
}

.fp-studio-tab .tab-label-group strong {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

.fp-studio-tab .tab-label-group span {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 2px;
}

.fp-studio-tab:hover {
  border-color: var(--brand-accent-border);
  background: #FFFFFF;
  transform: translateY(-2px);
}

.fp-studio-tab:hover svg {
  color: var(--brand-accent);
}

.fp-studio-tab.is-active {
  background: #0F172A;
  border-color: #0F172A;
  box-shadow: 0 10px 25px -8px rgba(15, 23, 42, 0.4);
}

.fp-studio-tab.is-active svg {
  color: #34D399;
}

.fp-studio-tab.is-active .tab-label-group strong {
  color: #FFFFFF;
}

.fp-studio-tab.is-active .tab-label-group span {
  color: #34D399;
}

.fp-studio-panels {
  margin-top: 24px;
}

.fp-studio-panel {
  display: none;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.fp-studio-panel.is-active {
  display: grid;
  animation: fadeIn 300ms ease;
}

/* CAD Blueprint Viewport */
.cad-viewport-card {
  background: #0B0F19;
  border: 1px solid #1E293B;
  border-radius: clamp(16px, 2vw, 22px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.4);
  cursor: zoom-in;
  position: relative;
  transition: border-color 200ms ease, transform 200ms ease;
}

.cad-viewport-card:hover {
  border-color: rgba(52, 211, 153, 0.4);
  transform: translateY(-2px);
}

.cad-header-bar {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #020617;
  border-bottom: 1px solid #1E293B;
}

.cad-tag-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cad-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 800;
  color: #34D399;
  background: rgba(5, 150, 105, 0.2);
  padding: 3px 8px;
  border-radius: 6px;
}

.cad-badge svg {
  width: 13px;
  height: 13px;
}

.cad-scale {
  font-size: 11px;
  font-weight: 600;
  color: #64748B;
}

.cad-compass {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 800;
  color: #94A3B8;
}

.cad-compass svg {
  width: 14px;
  height: 14px;
  color: #38BDF8;
}

.cad-canvas-frame {
  flex: 1;
  position: relative;
  display: grid;
  place-items: center;
  background: #FFFFFF;
  padding: 16px;
  min-height: 380px;
}

.cad-canvas-frame img {
  width: 100%;
  height: 100%;
  max-height: 440px;
  object-fit: contain;
  display: block;
  transition: transform 400ms ease;
}

.cad-viewport-card:hover .cad-canvas-frame img {
  transform: scale(1.02);
}

.cad-zoom-hint {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(8px);
}

.cad-zoom-hint svg {
  width: 13px;
  height: 13px;
  color: #34D399;
}

.cad-footer-bar {
  padding: 10px 16px;
  background: #020617;
  border-top: 1px solid #1E293B;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: #64748B;
  font-weight: 600;
}

/* Specification Dossier Card */
.spec-dossier-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: clamp(16px, 2vw, 22px);
  padding: clamp(20px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-subtle);
}

.dossier-header {
  margin-bottom: 16px;
}

.dossier-badge-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.dossier-chip {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 9px;
  border-radius: 999px;
}

.dossier-chip.emerald {
  background: #ECFDF5;
  color: #059669;
  border: 1px solid #A7F3D0;
}

.dossier-chip.gold {
  background: #FEF3C7;
  color: #D97706;
  border: 1px solid #FDE68A;
}

.dossier-chip.indigo {
  background: #EEF2FF;
  color: #4F46E5;
  border: 1px solid #C7D2FE;
}

.dossier-chip.dark {
  background: var(--bg-subtle);
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
}

.dossier-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.02em;
}

.dossier-sub {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Area Sizing Banner */
.dossier-area-banner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background: var(--bg-app);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px;
  margin-bottom: 18px;
}

.area-item {
  display: flex;
  flex-direction: column;
}

.area-label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.area-val {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: #059669;
  margin-top: 2px;
}

.area-val small {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-secondary);
}

/* Room Breakdown Bento */
.room-bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.room-box {
  background: var(--bg-app);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.room-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #ECFDF5;
  color: #059669;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.room-icon svg {
  width: 16px;
  height: 16px;
}

.room-info strong {
  display: block;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--text-main);
}

.room-info span {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.35;
  margin-top: 2px;
}

/* Feature Chips */
.dossier-feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.dossier-feature-chips span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  padding: 4px 10px;
  border-radius: 999px;
}

.dossier-feature-chips svg {
  width: 12px;
  height: 12px;
  color: #059669;
}

/* Section Dossier Thumb */
.dossier-thumb-card {
  background: var(--bg-app);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  cursor: zoom-in;
  transition: border-color 150ms ease;
}

.dossier-thumb-card:hover {
  border-color: var(--brand-accent);
}

.thumb-media {
  position: relative;
  width: 90px;
  height: 65px;
  background: #FFFFFF;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border-subtle);
}

.thumb-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.thumb-zoom-tag {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  color: #FFFFFF;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 150ms ease;
}

.dossier-thumb-card:hover .thumb-zoom-tag {
  opacity: 1;
}

.thumb-meta strong {
  display: block;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--text-main);
}

.thumb-meta span {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.35;
  margin-top: 2px;
}

/* Action Bar */
.dossier-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
}

.btn-dossier-primary {
  flex: 1.5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  background: #059669;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
  transition: all 150ms ease;
}

.btn-dossier-primary:hover {
  background: #047857;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(5, 150, 105, 0.4);
}

.btn-dossier-primary svg {
  width: 16px;
  height: 16px;
}

.btn-dossier-secondary {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--bg-app);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 150ms ease;
}

.btn-dossier-secondary:hover {
  background: #FFFFFF;
  border-color: var(--brand-accent);
  color: var(--brand-accent);
}

.btn-dossier-secondary svg {
  width: 15px;
  height: 15px;
}

@media (max-width: 960px) {
  .fp-studio-tabs {
    grid-template-columns: repeat(2, 1fr);
  }
  .fp-studio-panel.is-active {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .fp-studio-tabs {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
    padding-bottom: 4px;
    margin-top: 18px;
    flex-wrap: nowrap;
    width: 100%;
  }
  .fp-studio-tabs::-webkit-scrollbar {
    display: none;
  }
  .fp-studio-tab {
    flex-shrink: 0;
    padding: 10px 14px;
    min-width: 180px;
  }
  .room-bento-grid {
    grid-template-columns: 1fr;
  }
  .dossier-actions {
    flex-direction: column;
  }
  .btn-dossier-primary,
  .btn-dossier-secondary {
    width: 100%;
  }
}

/* ---- Gallery ---- */
.gallery-section {
  padding: clamp(48px, 6vw, 76px) 0;
  background: var(--bg-app);
}

.gallery-filters {
  margin-top: clamp(20px, 3.5vw, 32px);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.gallery-filter {
  padding: 9px 17px; border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface); color: var(--text-secondary);
  font-weight: 700; font-size: .83rem; cursor: pointer; transition: all .2s ease;
}
.gallery-filter:hover { border-color: var(--brand-accent-border); color: var(--brand-accent); }
.gallery-filter.is-active { background: var(--brand-primary); border-color: var(--brand-primary); color: #fff; box-shadow: 0 4px 14px rgba(15, 23, 42, .25); }

.gallery-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 14px;
}
.gallery-item {
  position: relative; margin: 0; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border-subtle); background: var(--bg-subtle);
  aspect-ratio: 4 / 3;
  transition: transform .25s ease, box-shadow .25s ease;
}
.gallery-item:hover { transform: translateY(-3px); box-shadow: 0 18px 38px -22px rgba(15,23,42,.4); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 22px 14px 11px;
  background: linear-gradient(180deg, transparent, rgba(11,15,25,.85));
  color: #fff; font-size: .8rem; font-weight: 700;
}

@media (max-width: 768px) {
  .gallery-filters {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 6px;
    padding-bottom: 4px;
    margin-top: 18px;
    flex-wrap: nowrap;
    width: 100%;
  }
  .gallery-filters::-webkit-scrollbar { display: none; }
  .gallery-filter {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 12.5px;
    padding: 8px 14px;
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .gallery-item {
    border-radius: 12px;
  }
  .gallery-item figcaption {
    padding: 16px 8px 8px;
    font-size: 0.72rem;
  }
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  display: none; align-items: center; justify-content: center;
  background: rgba(8, 12, 20, .94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 94vw; max-height: 82vh;
  object-fit: contain; border-radius: 12px;
  background: #fff;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.7);
}
.lightbox-caption {
  position: absolute; left: 0; right: 0; bottom: 20px;
  text-align: center; color: rgba(255,255,255,.9);
  font-size: clamp(0.8rem, 1.8vw, 0.9rem); font-weight: 600; padding: 0 20px;
}
.lightbox-close, .lightbox-nav {
  position: absolute; width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 999px; border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.12); color: #fff;
  cursor: pointer; transition: background .2s ease;
  z-index: 10;
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,.26); }
.lightbox-close { top: clamp(14px, 2.5vw, 24px); right: clamp(14px, 2.5vw, 24px); }
.lightbox-nav-prev { left: clamp(10px, 2vw, 20px); top: 50%; transform: translateY(-50%); }
.lightbox-nav-next { right: clamp(10px, 2vw, 20px); top: 50%; transform: translateY(-50%); }
.lightbox-close svg, .lightbox-nav svg { width: 20px; height: 20px; }

@media (max-width: 640px) {
  .lightbox { padding: 14px; }
  .lightbox img { max-width: 96vw; max-height: 76vh; }
  .lightbox-nav { width: 38px; height: 38px; }
  .lightbox-nav-prev { left: 8px; }
  .lightbox-nav-next { right: 8px; }
}

/* ---- FAQ ---- */
.faq-section {
  padding: clamp(48px, 6vw, 76px) 0;
  background: var(--bg-surface);
}
.faq-list { margin-top: clamp(20px, 3.5vw, 34px); display: grid; gap: 10px; }
.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: 15px;
  background: var(--bg-surface);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item[open] { border-color: var(--brand-accent-border); box-shadow: 0 10px 30px -20px rgba(5,150,105,.5); }
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: clamp(14px, 2vw, 17px) clamp(16px, 2.5vw, 20px);
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  font-weight: 700; font-size: clamp(0.88rem, 1.8vw, 0.96rem); color: var(--text-main);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { width: 18px; height: 18px; color: var(--text-subtle); flex: none; transition: transform .25s ease; }
.faq-item[open] summary svg { transform: rotate(180deg); color: var(--brand-accent); }
.faq-body {
  padding: 0 clamp(16px, 2.5vw, 20px) clamp(14px, 2vw, 18px);
  color: var(--text-secondary); font-size: clamp(0.82rem, 1.6vw, 0.91rem); line-height: 1.7;
}
.faq-body a { color: var(--brand-accent); font-weight: 700; text-decoration: none; }
.faq-body a:hover { text-decoration: underline; }

/* ---- Scroll-spy active nav ---- */
.desktop-nav a.is-current { color: var(--brand-accent); font-weight: 700; }
.mobile-menu-links a.is-current { color: var(--brand-accent); font-weight: 700; background: var(--brand-accent-light); }

/* ---- Modern Touch Scroller Utilities ---- */
@media (max-width: 768px) {
  .inventory-controls-panel {
    padding: 12px;
    gap: 12px;
  }
  .filter-tabs-group {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 6px;
    padding-bottom: 4px;
    flex-wrap: nowrap;
    width: 100%;
  }
  .filter-tabs-group::-webkit-scrollbar {
    display: none;
  }
  .filter-tab-btn {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 12px;
    padding: 0 12px;
    min-height: 36px;
  }
  .search-filter-wrapper {
    width: 100%;
    min-width: 0;
  }
  .inventory-footer-card {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px 16px;
  }
  .inventory-footer-card .btn-primary-blue {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .mobile-menu-drawer {
    width: min(320px, 86vw);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-menu-links {
    padding: 16px 12px;
    gap: 4px;
  }
  .mobile-menu-links a {
    padding: 10px 14px;
    font-size: 13.5px;
    border-radius: 10px;
  }
  .mobile-menu-footer {
    padding: 16px 12px 24px;
  }
  .phone-mockup-stage {
    margin: 28px 0 16px;
    width: 100%;
  }
  .real-phone-wrapper {
    width: min(350px, 92vw);
  }
  .app-features-list {
    gap: 12px;
    margin: 22px 0 26px;
    width: 100%;
  }
  .app-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    width: 100%;
  }
  .app-feature-item strong {
    font-size: 14.5px;
    font-weight: 800;
  }
  .app-feature-item p {
    font-size: 12.5px;
    line-height: 1.5;
    margin-top: 2px;
  }
  .app-launch-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .app-launch-actions a {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
  .mall-spotlight-img-wrap {
    min-height: 220px;
    max-height: 260px;
  }
  .mall-spotlight-content {
    padding: 20px 16px;
  }
  .mall-spotlight-title {
    font-size: 20px;
  }
  .mall-features-list {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px;
  }
  .mall-spotlight-action {
    flex-direction: column;
    width: 100%;
  }
  .mall-spotlight-action a {
    width: 100%;
    justify-content: center;
    min-height: 46px;
  }
  .amenities-bento-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .amenity-card {
    padding: 20px 16px;
  }
  .kpi-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 16px 0;
  }
  .kpi-card {
    padding: 10px;
  }
  .kpi-icon-wrap {
    width: 36px;
    height: 36px;
  }
  .kpi-number {
    font-size: 18px;
  }
  .kpi-title {
    font-size: 11px;
  }
  .kpi-desc {
    display: none;
  }
  .contact-grid-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .form-shell-card {
    padding: 20px 16px;
  }
  .footer-main-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom-row {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .plan-card, .gallery-item, .gallery-item img, .video-play-btn { transition: none; }
  .plan-card:hover, .gallery-item:hover { transform: none; }
  .gallery-item:hover img { transform: none; }
}

/* ==========================================================================
   Food & Express Delivery Ecosystem Section
   ========================================================================== */
.delivery-ecosystem-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 50%, #F1F5F9 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.delivery-header-wrap {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 54px;
}

.sub-badge.delivery-badge {
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border: 1px solid rgba(5, 150, 105, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.delivery-grid-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.delivery-feature-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.delivery-feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-accent);
  box-shadow: 0 16px 32px -8px rgba(5, 150, 105, 0.15);
}

.dfc-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.dfc-icon-box.bg-emerald {
  background: #ECFDF5;
  color: #059669;
}

.dfc-icon-box.bg-amber {
  background: #FFFBEB;
  color: #D97706;
}

.dfc-icon-box.bg-blue {
  background: #EFF6FF;
  color: #2563EB;
}

.dfc-icon-box.bg-purple {
  background: #FAF5FF;
  color: #7C3AED;
}

.dfc-icon-box svg {
  width: 26px;
  height: 26px;
}

.dfc-badge {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.dfc-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--brand-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.dfc-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 20px;
  flex: 1;
}

.dfc-rate-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-primary);
}

.dfc-rate-pill svg {
  width: 14px;
  height: 14px;
  color: var(--brand-accent);
}

.delivery-cta-banner {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  border-radius: var(--radius-xl);
  padding: 36px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dcb-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.dcb-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(5, 150, 105, 0.2);
  border: 1px solid rgba(5, 150, 105, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #34D399;
  flex-shrink: 0;
}

.dcb-icon svg {
  width: 28px;
  height: 28px;
}

.dcb-heading {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.dcb-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.dcb-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

@media (max-width: 1200px) {
  .delivery-grid-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   Cinematic V7 — seamless scene slider and full-image presentation
   ========================================================================== */

.premium-hero {
  min-height: auto;
  padding: 0;
  background: #050a12;
}

.premium-hero__backdrop {
  display: none;
}

.premium-hero__grid {
  z-index: 3;
  opacity: 0.1;
  pointer-events: none !important;
  background-size: 72px 72px;
  animation: architecturalGridDrift 18s linear infinite;
}

.premium-hero__container {
  width: 100%;
  max-width: none !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.premium-hero__layout {
  position: relative;
  display: block;
  min-height: clamp(720px, calc(100svh - 120px), 860px);
}

.premium-hero__copy {
  position: relative;
  z-index: 20;
  width: min(760px, 54vw);
  margin-left: max(32px, calc((100vw - 1280px) / 2));
  padding-top: clamp(88px, 9vh, 126px);
  padding-bottom: 180px;
  pointer-events: none;
  animation: none;
}

.premium-hero__copy > * {
  pointer-events: auto;
}

.premium-hero__eyebrow {
  opacity: 0;
  transform: translateY(14px);
  animation: cinematicTextIn 650ms 120ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.premium-hero__title {
  width: min(740px, 52vw);
  max-width: none;
  margin-top: 26px;
  font-size: clamp(48px, 4.45vw, 64px);
  line-height: 1.01;
  letter-spacing: -0.052em;
  opacity: 0;
  transform: translateY(24px);
  animation: cinematicTextIn 780ms 210ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.premium-hero__title span {
  display: inline-block;
  padding-right: 0.06em;
  background: linear-gradient(90deg, #a7f3d0 0%, #34d399 52%, #d1fae5 100%);
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleLightPass 7s 1.2s ease-in-out infinite;
}

.premium-hero__lede {
  max-width: 610px;
  color: #d5dde8;
  opacity: 0;
  transform: translateY(20px);
  animation: cinematicTextIn 700ms 330ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.premium-hero__actions {
  opacity: 0;
  transform: translateY(18px);
  animation: cinematicTextIn 650ms 430ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.premium-hero__assurance {
  opacity: 0;
  transform: translateY(14px);
  animation: cinematicTextIn 600ms 520ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-carousel {
  --scene-x: 0px;
  --scene-y: 0px;
  position: absolute;
  inset: 0;
  z-index: 4;
  max-width: none;
  animation: none;
  outline-offset: -4px !important;
}

.hero-carousel__frame {
  position: absolute;
  inset: 0;
  min-height: 0;
  height: 100%;
  border: 0;
  border-radius: 0;
  background: #050a12;
  box-shadow: none;
}

.hero-carousel__frame::after {
  display: none;
}

.hero-carousel__frame::before {
  content: '';
  position: absolute;
  z-index: 7;
  top: 0;
  bottom: 0;
  left: -22%;
  width: 18%;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.32), rgba(255, 255, 255, 0.42), transparent);
  filter: blur(1px);
  transform: skewX(-10deg);
}

.hero-carousel__frame.is-changing::before {
  animation: cinematicWipe 900ms cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-carousel__slide {
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: none;
  transition: opacity 380ms ease, visibility 380ms ease;
}

.hero-carousel__slide::before {
  content: '';
  position: absolute;
  inset: -42px;
  z-index: 0;
  background-image: var(--scene-image);
  background-position: center;
  background-size: cover;
  opacity: 0;
  filter: blur(24px) saturate(0.78) brightness(0.48);
  transform: scale(1.1) translate3d(calc(var(--scene-x) * -0.22), calc(var(--scene-y) * -0.22), 0);
  transition: opacity 650ms ease, transform 1300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-carousel__slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.hero-carousel__slide.is-active::before {
  opacity: 0.72;
  transform: scale(1.045) translate3d(calc(var(--scene-x) * -0.22), calc(var(--scene-y) * -0.22), 0);
  animation: sceneAmbientBreath 10s ease-in-out infinite alternate;
}

.hero-carousel__slide img {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 1.5%;
  width: 61%;
  height: calc(100% - 112px);
  object-fit: contain;
  object-position: center;
  opacity: 0;
  clip-path: inset(0 0 0 100%);
  transform: translate3d(calc(34px + var(--scene-x)), calc(-50% + var(--scene-y)), 0) scale(0.975);
  filter: saturate(0.94) contrast(1.03);
  transition:
    clip-path 900ms cubic-bezier(0.65, 0, 0.35, 1),
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 420ms ease,
    filter 350ms ease;
}

.hero-carousel__slide.is-active img {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translate3d(var(--scene-x), calc(-50% + var(--scene-y)), 0) scale(1);
}

.hero-carousel__shade {
  z-index: 2;
  background:
    linear-gradient(90deg, #050a12 0%, rgba(5, 10, 18, 0.98) 28%, rgba(5, 10, 18, 0.76) 47%, rgba(5, 10, 18, 0.14) 76%, rgba(5, 10, 18, 0.3) 100%),
    linear-gradient(180deg, rgba(5, 10, 18, 0.32) 0%, transparent 48%, rgba(5, 10, 18, 0.82) 100%);
}

.hero-carousel__topline {
  top: 34px;
  right: max(32px, calc((100vw - 1280px) / 2));
  left: auto;
  width: min(420px, 34vw);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-carousel__caption {
  z-index: 5;
  right: max(42px, calc((100vw - 1280px) / 2));
  bottom: 116px;
  left: auto;
  width: min(390px, 31vw);
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(5, 10, 18, 0.7);
  box-shadow: 0 20px 45px -28px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-carousel__caption h2 {
  font-size: clamp(19px, 1.8vw, 27px);
}

.hero-carousel__controls {
  z-index: 12;
  right: max(32px, calc((100vw - 1280px) / 2));
  bottom: 28px;
  left: max(32px, calc((100vw - 1280px) / 2));
  gap: 10px;
}

.hero-carousel__dots {
  gap: 0;
  height: 50px;
  padding: 0;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(5, 10, 18, 0.72);
}

.hero-carousel__dot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  min-height: 50px;
  color: #94a3b8;
  border-radius: 0;
  font-family: var(--font-heading);
  transition: color 200ms ease, background-color 200ms ease;
}

.hero-carousel__dot:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-carousel__dot span {
  color: #64748b;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-carousel__dot em {
  font-size: 10px;
  font-style: normal;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-carousel__dot:hover,
.hero-carousel__dot.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.hero-carousel__dot.is-active span {
  color: #6ee7b7;
}

.hero-carousel__dot::before {
  top: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  transform: none;
}

.hero-carousel__dot::after {
  top: 0;
  height: 2px;
  background: #34d399;
  transform: scaleX(0);
}

@keyframes heroSlideProgress {
  to { transform: scaleX(1); }
}

.hero-carousel__arrow,
.hero-carousel__pause {
  width: 50px;
  height: 50px;
  flex-basis: 50px;
  border-radius: 12px;
  background: rgba(5, 10, 18, 0.78);
}

.premium-hero__metrics {
  position: relative;
  z-index: 22;
  width: 100%;
  margin-top: 0;
  padding-right: max(32px, calc((100vw - 1280px) / 2));
  padding-left: max(32px, calc((100vw - 1280px) / 2));
  border-top-color: rgba(255, 255, 255, 0.15);
  background: rgba(5, 10, 18, 0.96);
}

.premium-metric {
  padding-top: 25px;
  padding-bottom: 28px;
}

@keyframes cinematicTextIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes cinematicWipe {
  0% { left: -22%; opacity: 0; }
  18% { opacity: 1; }
  72% { opacity: 0.75; }
  100% { left: 112%; opacity: 0; }
}

@keyframes sceneAmbientBreath {
  from { filter: blur(24px) saturate(0.72) brightness(0.44); }
  to { filter: blur(19px) saturate(0.9) brightness(0.52); }
}

@keyframes architecturalGridDrift {
  to { background-position: 72px 72px; }
}

@keyframes titleLightPass {
  0%, 28%, 100% { background-position: 100% 50%; }
  52%, 70% { background-position: 0% 50%; }
}

/* Full-image editorial gallery: ambient fill behind an uncropped source. */
.place-card {
  isolation: isolate;
  opacity: 0.72;
  transform: scale(0.965);
  transition: opacity 420ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1), border-color 220ms ease;
}

.place-card::before {
  content: '';
  position: absolute;
  inset: -24px;
  z-index: 0;
  background-image: var(--place-image);
  background-position: center;
  background-size: cover;
  filter: blur(18px) brightness(0.58) saturate(0.8);
  transform: scale(1.09);
}

.place-card.is-current {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(5, 150, 105, 0.5);
}

.place-card img {
  position: relative;
  z-index: 1;
  object-fit: contain;
  filter: saturate(0.96) contrast(1.02);
}

.place-card:hover img {
  transform: scale(1.015);
}

.place-card__veil {
  z-index: 2;
}

.place-card__index,
.place-card__copy {
  z-index: 3;
}

/* Staggered section choreography instead of a single barely-visible fade. */
html.motion-ready .section-reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

html.motion-ready .section-reveal > * {
  opacity: 0;
  transform: translateY(28px) scale(0.992);
  transition: opacity 650ms ease, transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

html.motion-ready .section-reveal.is-visible > * {
  opacity: 1;
  transform: translateY(0) scale(1);
}

html.motion-ready .section-reveal.is-visible > :nth-child(2) { transition-delay: 70ms; }
html.motion-ready .section-reveal.is-visible > :nth-child(3) { transition-delay: 130ms; }
html.motion-ready .section-reveal.is-visible > :nth-child(4) { transition-delay: 190ms; }
html.motion-ready .section-reveal.is-visible > :nth-child(n + 5) { transition-delay: 240ms; }

@media (max-width: 1024px) {
  .premium-hero__layout {
    min-height: 980px;
  }

  .premium-hero__copy {
    width: auto;
    max-width: 760px;
    margin-right: 32px;
    margin-left: 32px;
    padding-top: 72px;
    padding-bottom: 0;
  }

  .premium-hero__title {
    width: auto;
    max-width: 720px;
  }

  .hero-carousel__slide img {
    top: 61%;
    right: 4%;
    width: 92%;
    height: 430px;
  }

  .hero-carousel__shade {
    background:
      linear-gradient(180deg, #050a12 0%, rgba(5, 10, 18, 0.97) 38%, rgba(5, 10, 18, 0.24) 65%, rgba(5, 10, 18, 0.88) 100%),
      linear-gradient(90deg, rgba(5, 10, 18, 0.3), rgba(5, 10, 18, 0.1));
  }

  .hero-carousel__topline {
    display: none;
  }

  .hero-carousel__caption {
    right: 32px;
    bottom: 105px;
    width: min(390px, calc(100vw - 64px));
  }

  .hero-carousel__controls {
    right: 32px;
    bottom: 25px;
    left: 32px;
  }
}

@media (max-width: 640px) {
  .premium-hero__grid {
    animation-duration: 24s;
  }

  .premium-hero__layout {
    min-height: 1040px;
  }

  .premium-hero__copy {
    margin-right: 16px;
    margin-left: 16px;
    padding-top: 50px;
  }

  .premium-hero__title {
    font-size: clamp(37px, 10.5vw, 47px);
    line-height: 1.03;
  }

  .premium-hero__lede {
    color: #cbd5e1;
  }

  .premium-hero__assurance {
    grid-template-columns: 1fr 1fr;
  }

  .hero-carousel__slide img {
    top: 64%;
    right: 16px;
    width: calc(100% - 32px);
    height: 330px;
  }

  .hero-carousel__caption {
    right: 16px;
    bottom: 100px;
    left: 16px;
    width: auto;
    padding: 14px 16px;
  }

  .hero-carousel__caption h2 {
    font-size: 20px;
  }

  .hero-carousel__caption p {
    display: none;
  }

  .hero-carousel__controls {
    right: 16px;
    bottom: 24px;
    left: 16px;
    gap: 6px;
  }

  .hero-carousel__arrow,
  .hero-carousel__pause {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .hero-carousel__dots {
    height: 46px;
  }

  .hero-carousel__dot {
    height: 46px;
    min-height: 46px;
    gap: 0;
  }

  .hero-carousel__dot em {
    display: none;
  }

  .hero-carousel__dot span {
    font-size: 10px;
  }

  .premium-hero__metrics {
    padding-right: 16px;
    padding-left: 16px;
  }

  .premium-metric {
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .premium-hero__grid,
  .premium-hero__eyebrow,
  .premium-hero__title,
  .premium-hero__title span,
  .premium-hero__lede,
  .premium-hero__actions,
  .premium-hero__assurance,
  .hero-carousel__slide.is-active::before,
  .hero-carousel__frame.is-changing::before {
    animation: none !important;
  }

  .premium-hero__eyebrow,
  .premium-hero__title,
  .premium-hero__lede,
  .premium-hero__actions,
  .premium-hero__assurance {
    opacity: 1;
    transform: none;
  }

  .hero-carousel__slide img,
  .hero-carousel__slide::before,
  .place-card,
  html.motion-ready .section-reveal > * {
    transition: none !important;
  }

  html.motion-ready .section-reveal > * {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 768px) {
  .delivery-grid-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .delivery-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
  }
  .dcb-content {
    flex-direction: column;
    text-align: center;
  }
  .dcb-buttons {
    flex-direction: column;
    width: 100%;
  }
  .dcb-buttons a {
    width: 100%;
  }
}

/* ==========================================================================
   Floating "Under Construction" Notice Badge
   ========================================================================== */
.under-contract-floating-badge {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(245, 158, 11, 0.40);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45), 0 0 20px rgba(245, 158, 11, 0.16);
  border-radius: 14px;
  padding: 12px 14px;
  max-width: 380px;
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  animation: slideInBadge 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.under-contract-floating-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.52), 0 0 24px rgba(245, 158, 11, 0.25);
}

.under-contract-floating-badge.uc-badge-closing {
  opacity: 0;
  transform: translateY(12px) scale(0.95);
  pointer-events: none;
}

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

.uc-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(245, 158, 11, 0.16);
  border: 1px solid rgba(245, 158, 11, 0.40);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FBBF24;
  flex-shrink: 0;
}

.uc-badge-body {
  flex: 1;
  min-width: 0;
}

.uc-badge-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}

.uc-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #F59E0B;
  box-shadow: 0 0 4px #F59E0B;
  flex-shrink: 0;
}

.uc-badge-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #FCD34D;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
}

.uc-badge-text {
  font-size: 12px;
  line-height: 1.4;
  color: #CBD5E1;
  margin: 0;
  font-weight: 500;
}

.uc-badge-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #94A3B8;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin-left: 2px;
  position: relative;
}

.uc-badge-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

@media (max-width: 640px) {
  .under-contract-floating-badge {
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    left: 12px;
    right: 12px;
    margin: 0 auto;
    max-width: min(390px, calc(100vw - 24px));
    padding: 10px 12px;
    gap: 10px;
    border-radius: 12px;
  }
  .uc-badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }
  .uc-badge-title {
    font-size: 10.5px;
    letter-spacing: 0.6px;
  }
  .uc-badge-text {
    font-size: 11px;
    line-height: 1.35;
  }
}

/* ==========================================================================
   DEANS CITY ARCHITECTURAL DEEP OVERHAUL STYLES
   - Interactive 13-Towers Community Matrix
   - Interactive Investment & Quarterly Installment Calculator
   - CAD Blueprint Hotspot Studio
   - Strategic Connectivity Matrix
   - Verified Resident Community Proof
   ========================================================================== */

/* --- 1. Interactive 13-Towers Community Matrix --- */
.tower-selector-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding: 6px 4px 14px;
  margin-bottom: 24px;
  scrollbar-width: thin;
  scrollbar-color: #CBD5E1 transparent;
  -webkit-overflow-scrolling: touch;
}

.tower-selector-strip::-webkit-scrollbar {
  height: 5px;
}
.tower-selector-strip::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 999px;
}

.ts-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 12px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  color: #475569;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.ts-tab-btn:hover {
  border-color: #059669;
  color: #0F172A;
  transform: translateY(-1px);
}

.ts-tab-btn.active {
  background: #0F172A;
  border-color: #0F172A;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.ts-tab-id {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #F1F5F9;
  color: #0F172A;
  font-size: 11px;
  font-weight: 800;
  transition: background 0.2s;
}

.ts-tab-btn.active .ts-tab-id {
  background: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
}

.ts-tab-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
}
.ts-tab-dot.live { background: #059669; }
.ts-tab-dot.landmark { background: #3B82F6; }
.ts-tab-dot.delivered { background: #10B981; }
.ts-tab-dot.available { background: #6366F1; }
.ts-tab-dot.construction { background: #F59E0B; }

.tower-stage-card {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.07);
  margin-bottom: 24px;
}

.tower-stage-visual {
  position: relative;
  min-height: 420px;
  background: #0F172A;
  overflow: hidden;
}

.tower-stage-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.tower-stage-card:hover .tower-stage-visual img {
  transform: scale(1.03);
}

.tower-stage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.1) 40%, rgba(15, 23, 42, 0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.tso-top-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.tso-status-badge {
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #10B981;
  color: #FFFFFF;
}

.tso-status-badge.commercial { background: #0F172A; border: 1px solid rgba(255, 255, 255, 0.2); }
.tso-status-badge.delivered { background: #059669; }
.tso-status-badge.construction { background: #D97706; }
.tso-status-badge.finishing { background: #3B82F6; }

.tso-zone-badge {
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  color: #E2E8F0;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.tso-bottom-info {
  color: #FFFFFF;
}

.tso-title {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #FFFFFF;
  margin: 0 0 4px;
}

.tso-subtitle {
  font-size: 14px;
  color: #CBD5E1;
  margin: 0;
  line-height: 1.4;
}

.tower-stage-details {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.tsd-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 16px;
  border-bottom: 1px solid #F1F5F9;
}

.tsd-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #059669;
  margin-bottom: 4px;
}

.tsd-title-group h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #0F172A;
  margin: 0;
}

.tsd-progress-box {
  min-width: 170px;
}

.tsd-progress-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #64748B;
  margin-bottom: 6px;
}

.tsd-progress-label strong {
  color: #0F172A;
  font-weight: 700;
}

.tsd-progress-track {
  height: 8px;
  background: #F1F5F9;
  border-radius: 999px;
  overflow: hidden;
}

.tsd-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #059669, #10B981);
  border-radius: 999px;
  transition: width 0.5s ease;
}

.tsd-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

.tsd-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.tsd-spec-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
}

.tsd-spec-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  color: #059669;
  flex-shrink: 0;
}

.tsd-spec-icon svg {
  width: 18px;
  height: 18px;
}

.tsd-spec-text {
  display: flex;
  flex-direction: column;
}

.tsd-spec-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #64748B;
}

.tsd-spec-text strong {
  font-size: 13.5px;
  font-weight: 700;
  color: #0F172A;
}

.tsd-highlights-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.tsd-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 8px;
  background: #ECFDF5;
  color: #047857;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid #A7F3D0;
}

.tsd-pill svg {
  width: 13px;
  height: 13px;
}

.tsd-actions-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.btn-tsd-filter {
  flex: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  background: #0F172A;
  color: #FFFFFF;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-tsd-filter:hover {
  background: #1E293B;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
}

.btn-tsd-whatsapp {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  background: #ECFDF5;
  color: #047857;
  border: 1px solid #A7F3D0;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-tsd-whatsapp:hover {
  background: #059669;
  color: #FFFFFF;
  border-color: #059669;
}

.towers-summary-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.tss-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.tss-num {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #059669;
  line-height: 1;
}

.tss-info {
  display: flex;
  flex-direction: column;
}

.tss-info strong {
  font-size: 13.5px;
  font-weight: 700;
  color: #0F172A;
}

.tss-info span {
  font-size: 12px;
  color: #64748B;
}

/* --- 2. Interactive Investment & Quarterly Installment Calculator --- */
.calculator-section {
  padding: 80px 0;
  background: #F8FAFC;
  border-top: 1px solid #E2E8F0;
}

.calc-shell-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  padding: 44px;
  box-shadow: 0 12px 36px -8px rgba(15, 23, 42, 0.08);
}

.calc-header-block {
  margin-bottom: 36px;
  max-width: 780px;
}

.sub-badge-gold {
  background: #FEF3C7;
  color: #B45309;
  border: 1px solid #FDE68A;
}

.calc-layout-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.calc-controls-pane {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.calc-field-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calc-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.calc-label-text {
  font-size: 13.5px;
  font-weight: 700;
  color: #0F172A;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calc-label-tag {
  font-size: 11.5px;
  font-weight: 600;
  color: #64748B;
}

.calc-unit-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.calc-unit-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 14px 16px;
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.calc-unit-btn:hover {
  border-color: #059669;
  background: #FFFFFF;
  transform: translateY(-1px);
}

.calc-unit-btn.active {
  background: #FFFFFF;
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12), 0 4px 12px rgba(15, 23, 42, 0.06);
}

.cub-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 8px;
}

.cub-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 5px;
  background: #E2E8F0;
  color: #475569;
}
.cub-badge.emerald { background: #ECFDF5; color: #047857; }
.cub-badge.gold { background: #FEF3C7; color: #B45309; }
.cub-badge.dark { background: #0F172A; color: #FFFFFF; }

.cub-price {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0F172A;
}

.cub-name {
  font-size: 13px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 2px;
}

.cub-sub {
  font-size: 11.5px;
  color: #64748B;
}

.calc-slider-metrics {
  display: flex;
  align-items: center;
  gap: 8px;
}

.calc-metric-pct {
  padding: 3px 10px;
  border-radius: 999px;
  background: #ECFDF5;
  color: #047857;
  font-size: 12px;
  font-weight: 800;
  border: 1px solid #A7F3D0;
}

.calc-metric-val {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0F172A;
}

.calc-slider-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc-range-input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #E2E8F0;
  outline: none;
  cursor: pointer;
}

.calc-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #059669;
  border: 3px solid #FFFFFF;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.25);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.calc-range-input::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc-slider-scale {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: #94A3B8;
  font-weight: 500;
}

.calc-tenure-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  background: #F1F5F9;
  padding: 5px;
  border-radius: 12px;
}

.calc-tenure-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: #64748B;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.calc-tenure-btn strong {
  font-size: 13px;
  font-weight: 700;
  color: #1E293B;
}

.calc-tenure-btn span {
  font-size: 10.5px;
  color: #64748B;
}

.calc-tenure-btn:hover {
  background: rgba(255, 255, 255, 0.6);
}

.calc-tenure-btn.active {
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}
.calc-tenure-btn.active strong {
  color: #059669;
}

.calc-results-card {
  background: #0F172A;
  border-radius: 20px;
  padding: 36px;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.crc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.crc-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #94A3B8;
}

.crc-eyebrow svg {
  width: 16px;
  height: 16px;
  color: #059669;
}

.crc-official-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(5, 150, 105, 0.2);
  color: #34D399;
  border: 1px solid rgba(5, 150, 105, 0.3);
}

.crc-valuation-box {
  margin-bottom: 28px;
}

.crc-val-label {
  font-size: 12px;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.crc-val-number {
  font-family: 'Outfit', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 4px 0;
  letter-spacing: -0.5px;
}

.crc-val-sub {
  font-size: 13.5px;
  color: #CBD5E1;
  margin: 0;
}

.crc-ledger-lines {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.crc-line-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.crc-line-item.highlight {
  background: rgba(217, 119, 6, 0.12);
  border-color: rgba(217, 119, 6, 0.3);
}

.crc-line-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.crc-bullet {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  flex-shrink: 0;
}
.crc-bullet.emerald { background: #10B981; }
.crc-bullet.amber { background: #F59E0B; }
.crc-bullet.slate { background: #94A3B8; }

.crc-line-info strong {
  display: block;
  font-size: 13.5px;
  color: #FFFFFF;
  font-weight: 600;
}

.crc-line-info span {
  display: block;
  font-size: 11.5px;
  color: #94A3B8;
}

.crc-line-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
}

.crc-line-amount.gold {
  font-size: 20px;
  color: #FBBF24;
}

.crc-line-amount small {
  font-size: 12px;
  font-weight: 500;
  color: #CBD5E1;
}

.btn-calc-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 24px;
  border-radius: 14px;
  background: #059669;
  color: #FFFFFF;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.35);
  margin-bottom: 12px;
}

.btn-calc-whatsapp:hover {
  background: #047857;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.45);
}

.crc-terms-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11.5px;
  color: #94A3B8;
  line-height: 1.4;
}

.crc-terms-note svg {
  width: 14px;
  height: 14px;
  color: #64748B;
  flex-shrink: 0;
  margin-top: 1px;
}

/* --- 3. CAD Blueprint Hotspots --- */
.cad-canvas-frame {
  position: relative;
}

.cad-hotspot {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chs-dot {
  position: relative;
  z-index: 2;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #059669;
  color: #FFFFFF;
  font-size: 11.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFFFFF;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.3);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s;
}

.chs-ping {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(5, 150, 105, 0.4);
  animation: hotspotPing 2.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes hotspotPing {
  0% { transform: scale(1); opacity: 0.8; }
  75%, 100% { transform: scale(2.2); opacity: 0; }
}

.cad-hotspot:hover .chs-dot {
  transform: scale(1.25);
  background: #0F172A;
}

.chs-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  padding: 6px 12px;
  border-radius: 8px;
  background: #0F172A;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

.chs-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: #0F172A;
}

.cad-hotspot:hover .chs-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* --- 4. Strategic Connectivity Matrix --- */
.connectivity-section {
  padding: 80px 0;
  background: #FFFFFF;
  border-top: 1px solid #E2E8F0;
}

.connectivity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.conn-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.conn-card:hover {
  background: #FFFFFF;
  border-color: #CBD5E1;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -6px rgba(15, 23, 42, 0.08);
}

.conn-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.conn-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
}

.conn-icon-box svg {
  width: 20px;
  height: 20px;
}

.conn-time-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}

.conn-time-badge.emerald {
  background: #ECFDF5;
  color: #047857;
  border: 1px solid #A7F3D0;
}

.conn-time-badge.amber {
  background: #FEF3C7;
  color: #B45309;
  border: 1px solid #FDE68A;
}

.conn-destination {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 8px;
}

.conn-desc {
  font-size: 13.5px;
  color: #64748B;
  line-height: 1.5;
  margin: 0 0 16px;
  flex: 1;
}

.conn-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #0F172A;
  padding-top: 12px;
  border-top: 1px solid #E2E8F0;
}

.conn-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.conn-meta svg {
  width: 14px;
  height: 14px;
  color: #059669;
}

/* --- 5. Verified Resident Trust & Proof Section --- */
.trust-proof-section {
  padding: 60px 0 80px;
  background: #FFFFFF;
}

.trust-banner-card {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  border-radius: 24px;
  padding: 48px;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.25);
}

.tbc-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.sub-badge-emerald {
  background: rgba(5, 150, 105, 0.2);
  color: #34D399;
  border: 1px solid rgba(5, 150, 105, 0.3);
}

.tbc-title {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: #FFFFFF;
  margin: 16px 0 12px;
}

.tbc-text {
  font-size: 15px;
  line-height: 1.6;
  color: #CBD5E1;
  margin: 0 0 24px;
}

.tbc-badges-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.tbc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12.5px;
  font-weight: 600;
  color: #E2E8F0;
}

.tbc-badge svg {
  width: 15px;
  height: 15px;
  color: #10B981;
}

.trust-quote-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.tqc-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
  color: #F59E0B;
}

.tqc-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.tqc-body {
  font-size: 15px;
  line-height: 1.6;
  font-style: italic;
  color: #F8FAFC;
  margin: 0 0 20px;
}

.tqc-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tqc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}

.tqc-avatar svg {
  width: 22px;
  height: 22px;
}

.tqc-author strong {
  display: block;
  font-size: 14px;
  color: #FFFFFF;
}

.tqc-author span {
  display: block;
  font-size: 12px;
  color: #94A3B8;
}

/* --- Responsive Rules for Overhaul Components --- */
@media (max-width: 1024px) {
  .tower-stage-card {
    grid-template-columns: 1fr;
  }
  .tower-stage-visual {
    min-height: 300px;
  }
  .towers-summary-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .calc-layout-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .connectivity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tbc-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .calc-shell-card {
    padding: 24px 18px;
  }
  .calc-unit-buttons {
    grid-template-columns: 1fr;
  }
  .calc-tenure-tabs {
    grid-template-columns: repeat(2, 1fr);
  }
  .connectivity-grid {
    grid-template-columns: 1fr;
  }
  .tsd-specs-grid {
    grid-template-columns: 1fr;
  }
  .towers-summary-strip {
    grid-template-columns: 1fr;
  }
  .tower-stage-details {
    padding: 20px 16px;
  }
  .calc-results-card {
    padding: 24px 18px;
  }
  .trust-banner-card {
    padding: 28px 18px;
  }
}




/* ==========================================================================
   2026 Redesign Enhancements & Interactive UI States
   ========================================================================== */

/* Active and Transition States for Interactive Chips */
.tower-chip.active {
  background-color: #0f172a !important;
  color: #ffffff !important;
  border-color: #0f172a !important;
}

.filter-tab.active {
  background-color: #0f172a !important;
  color: #ffffff !important;
  border-color: #0f172a !important;
}

.calc-unit-card.active {
  border-color: #0f172a !important;
  border-width: 2px !important;
  background-color: #f8fafc !important;
}

.calc-dp-btn.active {
  background-color: #0f172a !important;
  color: #ffffff !important;
  border-color: #0f172a !important;
}

.calc-tenure-btn.active {
  background-color: #0f172a !important;
  color: #ffffff !important;
  border-color: #0f172a !important;
}

/* Modals & Drawers Visibility Toggles */
#mobile-backdrop.active {
  opacity: 1 !important;
  pointer-events: auto !important;
}

#mobile-drawer {
  display: none;
}

#mobile-drawer.active {
  display: flex !important;
  transform: translateX(0) !important;
}

/* Mobile Smooth Pill Scroller */
.mobile-pill-scroll {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  white-space: nowrap;
}
.mobile-pill-scroll::-webkit-scrollbar {
  display: none;
}

/* Mobile Phone Mockup Scaling */
@media (max-width: 640px) {
  .real-phone-wrapper {
    width: min(320px, 86vw) !important;
  }
}

#blueprint-modal.active {
  opacity: 1 !important;
  pointer-events: auto !important;
}

#drone-modal.active {
  opacity: 1 !important;
  pointer-events: auto !important;
}

#inquiry-modal.active {
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* Accessible interactive hover & focus transitions */
a, button, input, select, textarea {
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

button:focus-visible, a:focus-visible {
  outline: 2px solid #0f172a !important;
  outline-offset: 2px !important;
}

/* ==========================================================================
   Premium Homepage Motion Layer · September 2026
   Cinematic hero, accessible carousels, editorial gallery and scroll reveals.
   ========================================================================== */

.page-scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 200;
  width: 0;
  height: 2px;
  pointer-events: none;
  background: #10b981;
  box-shadow: 0 0 14px rgba(16, 185, 129, 0.55);
}

header.sticky {
  transition: box-shadow 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

header.sticky.is-scrolled {
  background-color: rgba(255, 255, 255, 0.985) !important;
  border-color: rgba(203, 213, 225, 0.9) !important;
  box-shadow: 0 14px 35px -25px rgba(15, 23, 42, 0.55);
}

.premium-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: #070d18;
  border-bottom: 1px solid #1e293b;
  padding: clamp(64px, 7vw, 104px) 0 0;
}

.premium-hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: -4;
  background: url('/assets/maps/deans-city-night-rendering-3d.jpg') center 44% / cover no-repeat;
  filter: saturate(0.68) contrast(1.08);
  transform: scale(1.035);
}

.premium-hero__backdrop::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 13, 24, 0.98) 0%, rgba(7, 13, 24, 0.9) 48%, rgba(7, 13, 24, 0.7) 100%),
    linear-gradient(180deg, rgba(7, 13, 24, 0.72) 0%, #070d18 100%);
}

.premium-hero__grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 86%);
}

.premium-hero__glow {
  position: absolute;
  z-index: -2;
  border-radius: 999px;
  filter: blur(8px);
  pointer-events: none;
}

.premium-hero__glow--one {
  width: 420px;
  height: 420px;
  top: -220px;
  left: 42%;
  background: rgba(5, 150, 105, 0.13);
}

.premium-hero__glow--two {
  width: 360px;
  height: 360px;
  right: -190px;
  bottom: 30px;
  background: rgba(217, 119, 6, 0.08);
}

.premium-hero__container {
  position: relative;
  z-index: 2;
}

.premium-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: clamp(42px, 6vw, 84px);
}

.premium-hero__copy {
  padding-bottom: 12px;
  animation: premiumHeroEnter 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.premium-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(52, 211, 153, 0.34);
  border-radius: 999px;
  background: rgba(5, 150, 105, 0.12);
  color: #6ee7b7;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.premium-hero__eyebrow svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.premium-hero__title {
  max-width: 760px;
  margin: 24px 0 0;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 1.02;
  text-wrap: balance;
}

.premium-hero__title span {
  color: #a7f3d0;
  font-weight: 500;
}

.premium-hero__lede {
  max-width: 650px;
  margin: 25px 0 0;
  color: #cbd5e1;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.72;
}

.premium-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.premium-hero__primary,
.premium-hero__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.095em;
  text-transform: uppercase;
  transition: transform 200ms ease, background-color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.premium-hero__primary {
  background: #047857;
  color: #fff;
  border: 1px solid #059669;
  box-shadow: 0 16px 32px -18px rgba(16, 185, 129, 0.8);
}

.premium-hero__primary svg {
  width: 16px;
  height: 16px;
  transition: transform 200ms ease;
}

.premium-hero__primary:hover {
  background: #065f46;
  transform: translateY(-2px);
  box-shadow: 0 20px 38px -18px rgba(16, 185, 129, 0.95);
}

.premium-hero__primary:hover svg {
  transform: translateX(3px);
}

.premium-hero__secondary {
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.premium-hero__secondary:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.premium-hero__primary:active,
.premium-hero__secondary:active {
  transform: translateY(0) scale(0.985);
}

.premium-hero__assurance {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 25px;
  color: #94a3b8;
  font-size: 11.5px;
  font-weight: 600;
}

.premium-hero__assurance span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.premium-hero__assurance svg {
  width: 15px;
  height: 15px;
  color: #34d399;
}

.hero-carousel {
  min-width: 0;
  animation: premiumCarouselEnter 850ms 120ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-carousel__frame {
  position: relative;
  overflow: hidden;
  min-height: 565px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: #0f172a;
  box-shadow: 0 38px 80px -30px rgba(0, 0, 0, 0.85);
}

.hero-carousel__frame::after {
  content: '';
  position: absolute;
  inset: 1px;
  z-index: 5;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 21px;
}

.hero-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.035);
  transition: opacity 720ms ease, visibility 720ms ease, transform 1050ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-carousel__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 1;
}

.hero-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-carousel__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.18) 20%, rgba(2, 6, 23, 0.9) 88%);
}

.hero-carousel__topline {
  position: absolute;
  z-index: 8;
  inset: 18px 18px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-carousel__topline span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-carousel__topline span:first-child::before {
  content: '';
  width: 18px;
  height: 1px;
  background: #34d399;
}

.hero-carousel__caption {
  position: absolute;
  z-index: 3;
  left: clamp(22px, 4vw, 36px);
  right: clamp(22px, 4vw, 36px);
  bottom: 105px;
  transform: translateY(16px);
  opacity: 0;
  transition: transform 600ms 180ms cubic-bezier(0.16, 1, 0.3, 1), opacity 500ms 180ms ease;
}

.hero-carousel__slide.is-active .hero-carousel__caption {
  transform: translateY(0);
  opacity: 1;
}

.hero-carousel__kicker {
  display: block;
  margin-bottom: 10px;
  color: #6ee7b7;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-carousel__caption h2 {
  max-width: 460px;
  margin: 0;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(25px, 2.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.hero-carousel__caption p {
  max-width: 440px;
  margin: 11px 0 0;
  color: #cbd5e1;
  font-size: 12.5px;
  line-height: 1.55;
}

.hero-carousel__controls {
  position: absolute;
  z-index: 9;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-carousel__arrow,
.hero-carousel__pause {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(2, 6, 23, 0.62);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-carousel__arrow:hover,
.hero-carousel__pause:hover {
  border-color: rgba(110, 231, 183, 0.65);
  background: rgba(5, 150, 105, 0.76);
}

.hero-carousel__arrow:active,
.hero-carousel__pause:active {
  transform: scale(0.96);
}

.hero-carousel__arrow svg,
.hero-carousel__pause svg {
  width: 18px;
  height: 18px;
}

.hero-carousel__dots {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  flex: 1;
  height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(2, 6, 23, 0.56);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-carousel__dot {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 44px;
  min-height: 44px;
  padding: 0;
  border-radius: 999px;
  background: transparent;
}

.hero-carousel__dot::before,
.hero-carousel__dot::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 3px;
  border-radius: 999px;
  transform: translateY(-50%);
}

.hero-carousel__dot::before {
  background: rgba(255, 255, 255, 0.28);
}

.hero-carousel__dot::after {
  background: #34d399;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
}

.hero-carousel__dot.is-active::after {
  animation: heroSlideProgress 6500ms linear forwards;
}

.hero-carousel.is-paused .hero-carousel__dot.is-active::after {
  animation-play-state: paused;
}

.hero-carousel__pause .hero-carousel__play-icon {
  display: none;
}

.hero-carousel__pause[aria-pressed='true'] .hero-carousel__pause-icon {
  display: none;
}

.hero-carousel__pause[aria-pressed='true'] .hero-carousel__play-icon {
  display: block;
}

.premium-hero__metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(50px, 6vw, 76px);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.premium-metric {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 27px 24px 30px;
}

.premium-metric:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 24px;
  right: 0;
  bottom: 27px;
  width: 1px;
  background: rgba(255, 255, 255, 0.11);
}

.premium-metric strong {
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
}

.premium-metric > span {
  color: #94a3b8;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

@keyframes premiumCarouselEnter {
  from { opacity: 0; transform: translateY(24px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes heroSlideProgress {
  to { transform: translateY(-50%) scaleX(1); }
}

/* Editorial places slider */
.signature-showcase {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 112px) 0;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.signature-showcase::before {
  content: '';
  position: absolute;
  width: 460px;
  height: 460px;
  top: -290px;
  right: -140px;
  border: 1px solid rgba(5, 150, 105, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(5, 150, 105, 0.025), 0 0 0 140px rgba(5, 150, 105, 0.018);
}

.signature-showcase__head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 36px;
}

.signature-showcase__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #047857;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.signature-showcase__eyebrow svg {
  width: 17px;
  height: 17px;
}

.signature-showcase__head h2 {
  max-width: 700px;
  margin: 0;
  color: #0f172a;
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.08;
  text-wrap: balance;
}

.signature-showcase__head-right p {
  margin: 0 0 20px;
  color: #475569;
  font-size: 13.5px;
  line-height: 1.65;
}

.signature-showcase__nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.signature-showcase__nav > span {
  min-width: 68px;
  color: #475569;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
}

.signature-showcase__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: #0f172a;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 20px -16px rgba(15, 23, 42, 0.5);
}

.signature-showcase__arrow:hover:not(:disabled) {
  color: #fff;
  border-color: #0f172a;
  background: #0f172a;
  transform: translateY(-2px);
}

.signature-showcase__arrow:active:not(:disabled) {
  transform: translateY(0) scale(0.97);
}

.signature-showcase__arrow:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.signature-showcase__arrow svg {
  width: 18px;
  height: 18px;
}

.signature-showcase__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  margin-right: calc((100vw - min(1280px, calc(100vw - 64px))) / -2);
  padding-right: max(32px, calc((100vw - 1280px) / 2));
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}

.signature-showcase__viewport::-webkit-scrollbar {
  display: none;
}

.signature-showcase__viewport.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
  user-select: none;
}

.signature-showcase__track {
  display: flex;
  width: max-content;
  gap: 18px;
}

.place-card {
  position: relative;
  overflow: hidden;
  width: clamp(310px, 39vw, 540px);
  aspect-ratio: 1.22 / 1;
  flex: 0 0 auto;
  color: #fff;
  border: 1px solid #dbe3eb;
  border-radius: 16px;
  background: #0f172a;
  scroll-snap-align: start;
  box-shadow: 0 26px 56px -38px rgba(15, 23, 42, 0.6);
}

.place-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), filter 300ms ease;
}

.place-card__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.02) 20%, rgba(2, 6, 23, 0.88) 100%);
  transition: background 300ms ease;
}

.place-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.05);
}

.place-card:hover .place-card__veil {
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.04) 10%, rgba(2, 6, 23, 0.94) 100%);
}

.place-card__index {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: rgba(2, 6, 23, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.place-card__copy {
  position: absolute;
  left: clamp(20px, 3vw, 30px);
  right: clamp(20px, 3vw, 30px);
  bottom: clamp(20px, 3vw, 28px);
}

.place-card__copy > span {
  color: #6ee7b7;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.place-card__copy h3 {
  margin: 7px 0 0;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.4vw, 31px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.place-card__copy p {
  max-width: 440px;
  margin: 9px 0 0;
  color: #cbd5e1;
  font-size: 12px;
  line-height: 1.55;
}

.signature-showcase__hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #64748b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.signature-showcase__hint svg {
  width: 17px;
  height: 17px;
  color: #059669;
}

/* Content appears normally without JS. JS only opts into the reveal state. */
html.motion-ready .section-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
}

html.motion-ready .section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #059669 !important;
  outline-offset: 2px !important;
}

.premium-hero a:focus-visible,
.premium-hero button:focus-visible,
.hero-carousel:focus-visible {
  outline-color: #6ee7b7 !important;
  outline-offset: 3px !important;
}

.hero-carousel:focus-visible,
.signature-showcase__viewport:focus-visible {
  outline: 2px solid #059669 !important;
  outline-offset: 4px !important;
}

@media (max-width: 1024px) {
  .premium-hero__layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .premium-hero__copy {
    max-width: 780px;
  }

  .hero-carousel {
    max-width: 780px;
  }

  .hero-carousel__frame {
    min-height: 560px;
  }
}

@media (max-width: 768px) {
  .premium-hero {
    padding-top: 50px;
  }

  .premium-hero__grid {
    background-size: 44px 44px;
  }

  .premium-hero__title {
    margin-top: 20px;
    font-size: clamp(36px, 10vw, 50px);
    letter-spacing: -0.045em;
  }

  .premium-hero__lede {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.65;
  }

  .premium-hero__actions {
    margin-top: 26px;
  }

  .premium-hero__primary,
  .premium-hero__secondary {
    width: 100%;
  }

  .hero-carousel__frame {
    min-height: 500px;
    border-radius: 17px;
  }

  .premium-hero__metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 44px;
  }

  .premium-metric {
    padding: 23px 16px;
  }

  .premium-metric:nth-child(2)::after {
    display: none;
  }

  .premium-metric:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  }

  .signature-showcase__head {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 28px;
  }

  .signature-showcase__head-right {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
  }

  .signature-showcase__head-right p {
    max-width: 480px;
    margin: 0;
  }

  .signature-showcase__viewport {
    margin-right: -16px;
    padding-right: 16px;
  }

  .place-card {
    width: min(84vw, 430px);
  }
}

@media (max-width: 520px) {
  .premium-hero__eyebrow {
    align-items: flex-start;
    max-width: 100%;
    border-radius: 10px;
    font-size: 9.5px;
  }

  .premium-hero__assurance {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
  }

  .premium-hero__layout {
    gap: 34px;
  }

  .hero-carousel__frame {
    min-height: 455px;
  }

  .hero-carousel__caption {
    bottom: 98px;
  }

  .hero-carousel__caption h2 {
    font-size: 25px;
  }

  .hero-carousel__caption p {
    font-size: 11.5px;
  }

  .hero-carousel__controls {
    left: 12px;
    right: 12px;
    bottom: 12px;
    gap: 6px;
  }

  .hero-carousel__arrow,
  .hero-carousel__pause {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .hero-carousel__dots {
    height: 42px;
    padding: 0 9px;
    gap: 5px;
  }

  .signature-showcase__head-right {
    align-items: flex-start;
    flex-direction: column;
  }

  .place-card {
    width: 82vw;
    min-width: 286px;
    aspect-ratio: 0.86 / 1;
  }

  .place-card__copy p {
    font-size: 11.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .premium-hero__copy,
  .hero-carousel,
  .hero-carousel__dot.is-active::after {
    animation: none !important;
  }

  .hero-carousel__slide,
  .hero-carousel__caption,
  .place-card img,
  html.motion-ready .section-reveal,
  .signature-showcase__viewport {
    transition: none !important;
    scroll-behavior: auto !important;
  }

  html.motion-ready .section-reveal {
    opacity: 1;
    transform: none;
  }
}

/* V7 final cascade layer — intentionally last so it wins over legacy homepage CSS. */
.premium-hero {
  min-height: auto;
  padding: 0 !important;
  background: #050a12;
}

.premium-hero__backdrop { display: none; }

.premium-hero__grid {
  z-index: 3;
  opacity: 0.1;
  background-size: 72px 72px;
  animation: architecturalGridDrift 18s linear infinite;
}

.premium-hero__container {
  width: 100%;
  max-width: none !important;
  padding: 0 !important;
}

.premium-hero__layout {
  position: relative;
  display: block;
  min-height: clamp(720px, calc(100svh - 120px), 860px);
}

.premium-hero__copy {
  position: relative;
  z-index: 20;
  width: min(760px, 54vw);
  max-width: none;
  margin: 0 0 0 max(32px, calc((100vw - 1280px) * 0.5));
  padding: clamp(88px, 9vh, 126px) 0 180px;
  pointer-events: none;
  animation: none;
}

.premium-hero__copy > * { pointer-events: auto; }

.premium-hero__eyebrow,
.premium-hero__title,
.premium-hero__lede,
.premium-hero__actions,
.premium-hero__assurance {
  opacity: 0;
  transform: translateY(18px);
  animation: cinematicTextIn 700ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.premium-hero__eyebrow { animation-delay: 120ms; }

.premium-hero__title {
  width: min(740px, 52vw);
  max-width: none;
  margin-top: 26px;
  font-size: clamp(48px, 4.45vw, 64px);
  line-height: 1.01;
  letter-spacing: -0.052em;
  animation-delay: 210ms;
}

.premium-hero__title span {
  display: inline-block;
  padding-right: 0.06em;
  color: #a7f3d0;
  background: linear-gradient(90deg, #a7f3d0 0%, #34d399 52%, #d1fae5 100%);
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleLightPass 7s 1.2s ease-in-out infinite;
}

.premium-hero__lede {
  max-width: 610px;
  color: #d5dde8;
  animation-delay: 330ms;
}

.premium-hero__actions { animation-delay: 430ms; }
.premium-hero__assurance { animation-delay: 520ms; }

.hero-carousel {
  --scene-x: 0px;
  --scene-y: 0px;
  position: absolute;
  inset: 0;
  z-index: 2;
  max-width: none !important;
  animation: none;
  outline-offset: -4px !important;
}

.hero-carousel__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: #050a12;
  box-shadow: none;
}

.hero-carousel__frame::after { display: none; }

.hero-carousel__frame::before {
  content: '';
  position: absolute;
  z-index: 7;
  top: 0;
  bottom: 0;
  left: -22%;
  width: 18%;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.32), rgba(255, 255, 255, 0.42), transparent);
  filter: blur(1px);
  transform: skewX(-10deg);
}

.hero-carousel__frame.is-changing::before {
  animation: cinematicWipe 900ms cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-carousel__slide {
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: none;
  transition: opacity 380ms ease, visibility 380ms ease;
}

.hero-carousel__slide::before {
  content: '';
  position: absolute;
  inset: -42px;
  z-index: 0;
  background: var(--scene-image) center / cover no-repeat;
  opacity: 0;
  filter: blur(24px) saturate(0.78) brightness(0.48);
  transform: scale(1.1) translate3d(calc(var(--scene-x) * -0.22), calc(var(--scene-y) * -0.22), 0);
  transition: opacity 650ms ease, transform 1300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-carousel__slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.hero-carousel__slide.is-active::before {
  opacity: 0.72;
  transform: scale(1.045) translate3d(calc(var(--scene-x) * -0.22), calc(var(--scene-y) * -0.22), 0);
  animation: sceneAmbientBreath 10s ease-in-out infinite alternate;
}

.hero-carousel__slide img,
.hero-carousel__slide.is-active img {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 1.5%;
  left: auto;
  width: 61%;
  height: calc(100% - 112px);
  max-width: none;
  object-fit: contain !important;
  object-position: center;
  filter: saturate(0.94) contrast(1.03);
}

.hero-carousel__slide img {
  opacity: 0;
  clip-path: inset(0 0 0 100%);
  transform: translate3d(calc(34px + var(--scene-x)), calc(-50% + var(--scene-y)), 0) scale(0.975);
  transition: clip-path 900ms cubic-bezier(0.65, 0, 0.35, 1), transform 1100ms cubic-bezier(0.16, 1, 0.3, 1), opacity 420ms ease;
}

.hero-carousel__slide.is-active img {
  opacity: 1;
  clip-path: inset(0);
  transform: translate3d(var(--scene-x), calc(-50% + var(--scene-y)), 0) scale(1);
}

.hero-carousel__shade {
  z-index: 2;
  background: linear-gradient(90deg, #050a12 0%, rgba(5, 10, 18, 0.98) 28%, rgba(5, 10, 18, 0.76) 47%, rgba(5, 10, 18, 0.14) 76%, rgba(5, 10, 18, 0.3) 100%), linear-gradient(180deg, rgba(5, 10, 18, 0.32) 0%, transparent 48%, rgba(5, 10, 18, 0.82) 100%);
}

.hero-carousel__topline {
  inset: 34px max(32px, calc((100vw - 1280px) * 0.5)) auto auto;
  width: min(420px, 34vw);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-carousel__caption {
  right: max(42px, calc((100vw - 1280px) * 0.5));
  bottom: 116px;
  left: auto;
  width: min(390px, 31vw);
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(5, 10, 18, 0.72);
  box-shadow: 0 20px 45px -28px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-carousel__caption h2 { font-size: clamp(19px, 1.8vw, 27px); }

.hero-carousel__controls {
  z-index: 12;
  right: max(32px, calc((100vw - 1280px) * 0.5));
  bottom: 28px;
  left: max(32px, calc((100vw - 1280px) * 0.5));
  gap: 10px;
}

.hero-carousel__dots {
  gap: 0;
  height: 50px;
  padding: 0;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(5, 10, 18, 0.72);
}

.hero-carousel__dot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  min-height: 50px;
  color: #94a3b8;
  border-radius: 0;
  background: transparent;
}

.hero-carousel__dot:not(:last-child) { border-right: 1px solid rgba(255, 255, 255, 0.1); }

.hero-carousel__dot span {
  color: #64748b;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-carousel__dot em {
  font-size: 10px;
  font-style: normal;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-carousel__dot:hover,
.hero-carousel__dot.is-active { color: #fff; background: rgba(255, 255, 255, 0.07); }
.hero-carousel__dot.is-active span { color: #6ee7b7; }

.hero-carousel__dot::before,
.hero-carousel__dot::after {
  top: 0;
  bottom: auto;
  height: 2px;
  transform: none;
}

.hero-carousel__dot::before { background: rgba(255, 255, 255, 0.15); }
.hero-carousel__dot::after { background: #34d399; transform: scaleX(0); }
.hero-carousel__dot.is-active::after { animation: heroSlideProgressV7 6500ms linear forwards; }

.hero-carousel__arrow,
.hero-carousel__pause {
  width: 50px;
  height: 50px;
  flex-basis: 50px;
  border-radius: 12px;
  background: rgba(5, 10, 18, 0.78);
}

.premium-hero__metrics {
  position: relative;
  z-index: 22;
  width: 100%;
  margin-top: 0;
  padding-right: max(32px, calc((100vw - 1280px) * 0.5));
  padding-left: max(32px, calc((100vw - 1280px) * 0.5));
  border-top-color: rgba(255, 255, 255, 0.15);
  background: rgba(5, 10, 18, 0.96);
}

.premium-metric { padding-top: 25px; padding-bottom: 28px; }

.place-card {
  isolation: isolate;
  opacity: 0.72;
  transform: scale(0.965);
  transition: opacity 420ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1), border-color 220ms ease;
}

.place-card::before {
  content: '';
  position: absolute;
  inset: -24px;
  z-index: 0;
  background: var(--place-image) center / cover no-repeat;
  filter: blur(18px) brightness(0.58) saturate(0.8);
  transform: scale(1.09);
}

.place-card.is-current { opacity: 1; transform: scale(1); border-color: rgba(5, 150, 105, 0.5); }

.place-card img {
  position: relative;
  z-index: 1;
  object-fit: contain !important;
  filter: saturate(0.96) contrast(1.02);
}

.place-card:hover img { transform: scale(1.015); }
.place-card__veil { z-index: 2; }
.place-card__index, .place-card__copy { z-index: 3; }

html.motion-ready .section-reveal { opacity: 1; transform: none; transition: none; }

html.motion-ready .section-reveal > * {
  opacity: 0;
  transform: translateY(28px) scale(0.992);
  transition: opacity 650ms ease, transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

html.motion-ready .section-reveal.is-visible > * { opacity: 1; transform: translateY(0) scale(1); }
html.motion-ready .section-reveal.is-visible > :nth-child(2) { transition-delay: 70ms; }
html.motion-ready .section-reveal.is-visible > :nth-child(3) { transition-delay: 130ms; }
html.motion-ready .section-reveal.is-visible > :nth-child(4) { transition-delay: 190ms; }
html.motion-ready .section-reveal.is-visible > :nth-child(n + 5) { transition-delay: 240ms; }

@keyframes heroSlideProgressV7 { to { transform: scaleX(1); } }

@media (max-width: 1024px) {
  .premium-hero__layout { min-height: 980px; }

  .premium-hero__copy {
    width: auto;
    max-width: 760px;
    margin: 0 32px;
    padding: 72px 0 0;
  }

  .premium-hero__title { width: auto; max-width: 720px; }

  .hero-carousel__slide img,
  .hero-carousel__slide.is-active img {
    top: 61%;
    right: 4%;
    width: 92%;
    height: 430px;
  }

  .hero-carousel__shade {
    background: linear-gradient(180deg, #050a12 0%, rgba(5, 10, 18, 0.97) 38%, rgba(5, 10, 18, 0.24) 65%, rgba(5, 10, 18, 0.88) 100%);
  }

  .hero-carousel__topline { display: none; }

  .hero-carousel__caption {
    right: 32px;
    bottom: 105px;
    left: auto;
    width: min(390px, calc(100vw - 64px));
  }

  .hero-carousel__controls { right: 32px; bottom: 25px; left: 32px; }
}

@media (max-width: 640px) {
  .premium-hero__grid { animation-duration: 24s; }
  .premium-hero__layout { min-height: 1040px; }

  .premium-hero__copy {
    margin: 0 16px;
    padding-top: 50px;
  }

  .premium-hero__title { font-size: clamp(37px, 10.5vw, 47px); line-height: 1.03; }
  .premium-hero__assurance { grid-template-columns: 1fr 1fr; }

  .hero-carousel__slide img,
  .hero-carousel__slide.is-active img {
    top: 64%;
    right: 16px;
    width: calc(100% - 32px);
    height: 330px;
  }

  .hero-carousel__caption {
    right: 16px;
    bottom: 100px;
    left: 16px;
    width: auto;
    padding: 14px 16px;
  }

  .hero-carousel__caption h2 { font-size: 20px; }
  .hero-carousel__caption p { display: none; }
  .hero-carousel__controls { right: 16px; bottom: 24px; left: 16px; gap: 6px; }

  .hero-carousel__arrow,
  .hero-carousel__pause { width: 46px; height: 46px; flex-basis: 46px; }

  .hero-carousel__dots { height: 46px; }
  .hero-carousel__dot { height: 46px; min-height: 46px; gap: 0; }
  .hero-carousel__dot em { display: none; }
  .hero-carousel__dot span { font-size: 10px; }
  .premium-hero__metrics { padding-right: 16px; padding-left: 16px; }
  .premium-metric { padding-right: 10px; padding-left: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .premium-hero__grid,
  .premium-hero__eyebrow,
  .premium-hero__title,
  .premium-hero__title span,
  .premium-hero__lede,
  .premium-hero__actions,
  .premium-hero__assurance,
  .hero-carousel__slide.is-active::before,
  .hero-carousel__frame.is-changing::before,
  .hero-carousel__dot.is-active::after { animation: none !important; }

  .premium-hero__eyebrow,
  .premium-hero__title,
  .premium-hero__lede,
  .premium-hero__actions,
  .premium-hero__assurance { opacity: 1; transform: none; }

  .hero-carousel__slide img,
  .hero-carousel__slide::before,
  .place-card,
  html.motion-ready .section-reveal > * { transition: none !important; }

  html.motion-ready .section-reveal > * { opacity: 1; transform: none; }
}

/* Mobile composition and subtle radius system — V10 */
:root {
  --radius-subtle: 8px;
  --radius-media: 10px;
}

.rounded-xs { border-radius: var(--radius-subtle) !important; }

.premium-hero__primary,
.premium-hero__secondary,
.hero-carousel__arrow,
.hero-carousel__pause,
.hero-carousel__dots,
.signature-showcase__arrow,
.open-inquiry-btn,
.open-blueprint-modal-btn {
  border-radius: var(--radius-subtle) !important;
}

.hero-carousel__caption,
.place-card,
.inv-card,
.inventory-card,
#active-tower-stage {
  border-radius: var(--radius-media) !important;
}

.hero-carousel__slide img,
.place-card img,
.inv-card img,
#active-tower-img,
#bp-display-img,
#lightbox-modal-img,
#masterplan img,
#amenities img {
  border-radius: var(--radius-media) !important;
}

@media (max-width: 1024px) {
  .site-actions > a,
  .site-actions > button,
  .site-actions > div > button,
  #mobile-menu-btn,
  #mobile-close-btn {
    min-width: 44px;
    min-height: 44px;
    border-radius: var(--radius-subtle) !important;
    touch-action: manipulation;
  }
}

@media (max-width: 640px) {
  main > section:not(.premium-hero) > div.max-w-7xl,
  main > section:not(.premium-hero) > div.max-w-6xl,
  main > section:not(.premium-hero) > div.max-w-5xl,
  main > section:not(.premium-hero) > div.max-w-4xl {
    padding-right: 10px !important;
    padding-left: 10px !important;
  }

  main section .p-6 { padding: 16px !important; }
  main section .p-8 { padding: 18px !important; }
  main section .px-6 {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  .site-utility {
    padding: 0 16px !important;
  }

  .site-utility__inner {
    min-height: 40px;
    height: 40px !important;
    padding: 0 !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
  }

  .site-utility__summary { display: none !important; }

  .site-utility__inner > div {
    min-width: 0;
    gap: 8px !important;
  }

  .site-utility__inner > div:first-child > span:first-child {
    min-height: 28px;
    padding: 4px 7px;
    white-space: nowrap;
    font-size: 8.5px !important;
    letter-spacing: 0.06em !important;
  }

  .site-utility__inner a {
    white-space: nowrap;
    font-size: 10px !important;
  }

  .site-header__inner {
    height: 64px !important;
    padding-right: 16px !important;
    padding-left: 16px !important;
    gap: 8px !important;
  }

  .site-header .site-brand { min-width: 0; }
  .site-header .site-brand > div:first-child { width: 38px; height: 38px; }
  .site-header .site-brand__copy > span:first-child { font-size: 15px; }
  .site-header .site-brand__copy > span:first-child span { display: none; }
  .site-header .site-brand__copy > span:last-child { display: none; }
  .site-actions { gap: 6px !important; }

  .site-actions > a,
  .site-actions > button,
  .site-actions > div > button {
    min-height: 44px;
    border-radius: var(--radius-subtle) !important;
    touch-action: manipulation;
  }

  .site-header__visit {
    min-height: 44px;
    padding: 0 13px !important;
    white-space: nowrap;
    font-size: 0 !important;
  }

  .site-header__visit::after {
    content: 'Site Visit';
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .premium-hero__layout { min-height: 1000px; }

  .premium-hero__copy {
    margin: 0 12px;
    padding-top: 32px;
  }

  .premium-hero__eyebrow {
    min-height: 34px;
    padding: 7px 10px;
    border-radius: var(--radius-subtle);
    font-size: 9px;
    letter-spacing: 0.075em;
  }

  .premium-hero__title {
    margin-top: 0;
    font-size: clamp(35px, 10.2vw, 42px);
    line-height: 1.035;
  }

  .premium-hero__lede {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.58;
  }

  .premium-hero__actions {
    gap: 10px;
    margin-top: 22px;
  }

  .premium-hero__primary,
  .premium-hero__secondary {
    min-height: 48px;
    padding: 0 16px;
  }

  .premium-hero__assurance {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
    font-size: 10px;
  }

  .premium-hero__assurance span {
    align-items: flex-start;
    gap: 5px;
    line-height: 1.35;
  }

  .premium-hero__assurance svg {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
  }

  .hero-carousel__slide img,
  .hero-carousel__slide.is-active img {
    top: 69%;
    right: 12px;
    width: calc(100% - 24px);
    height: 300px;
  }

  .hero-carousel__caption {
    right: 12px;
    bottom: 94px;
    left: 12px;
    padding: 13px 14px;
  }

  .hero-carousel__caption h2 {
    font-size: 19px;
    line-height: 1.16;
  }

  .hero-carousel__controls {
    right: 12px;
    bottom: 20px;
    left: 12px;
    gap: 8px;
    z-index: 40;
  }

  .hero-carousel__arrow,
  .hero-carousel__pause,
  .hero-carousel__dots,
  .hero-carousel__dot {
    min-height: 46px;
  }

  .premium-hero__metrics {
    gap: 0;
    padding-right: 16px;
    padding-left: 16px;
  }

  .premium-metric { min-height: 100px; }

  .place-card {
    width: min(calc(100vw - 28px), 370px);
    min-width: 294px;
    aspect-ratio: 0.9 / 1;
  }

  .signature-showcase__viewport {
    margin-right: -10px;
    padding-right: 10px;
  }

  .tower-chip,
  .filter-tab,
  .inv-tab,
  .bp-tab,
  .open-inquiry-btn,
  .calc-dp-btn,
  .calc-unit-card,
  .calc-unit-btn,
  .calc-tenure-btn,
  .open-blueprint-modal-btn,
  #mobile-menu-btn,
  #mobile-close-btn {
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
  }

  .filter-tab,
  .inv-tab,
  .calc-dp-btn,
  .calc-tenure-btn {
    border-radius: var(--radius-subtle) !important;
  }

  .inv-card,
  #active-tower-stage,
  #calculator .bg-white,
  #blueprints .bg-white {
    border-radius: var(--radius-media) !important;
  }
}

@media (hover: none), (pointer: coarse) {
  button,
  a[href],
  [role='button'] {
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(5, 150, 105, 0.16);
  }

  button:active,
  a[href]:active,
  [role='button']:active {
    opacity: 0.86;
  }
}

/* Tap-safe stacking: decorative hero layers must never intercept controls. */
.premium-hero__grid,
.premium-hero__glow,
.hero-carousel__shade,
.hero-carousel__slide::before,
.hero-carousel__frame::before {
  pointer-events: none !important;
}

.hero-carousel { z-index: 4 !important; }
.premium-hero__copy { z-index: 20; }
.hero-carousel__controls { z-index: 40; pointer-events: auto; }
.hero-carousel__controls button { pointer-events: auto; }
