
    /* ==========================================================================
       0. WELCOME SCREEN
       ========================================================================== */
    #welcome-screen {
      position: fixed; inset: 0; z-index: 11000;
      overflow: hidden;
      background: var(--black);
      cursor: auto;
    }
    #welcome-screen * {
      cursor: auto;
    }
    #welcome-video {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center;
    }
    .video-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(
        180deg,
        rgba(3, 7, 18, 0.15) 0%,
        rgba(3, 7, 18, 0.60) 50%,
        rgba(3, 7, 18, 0.92) 100%
      );
      pointer-events: none;
    }
    .video-accent-line {
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
      opacity: 0.6;
      z-index: 3;
    }
    .welcome-brand-mark {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      font-family: var(--font-display);
      font-size: clamp(80px, 20vw, 240px);
      font-weight: 700;
      color: rgba(212, 175, 106, 0.015);
      letter-spacing: 12px;
      pointer-events: none;
      z-index: 1;
      user-select: none;
      white-space: nowrap;
    }
    .welcome-content {
      position: absolute;
      z-index: 5;
      top: 40px; left: 40px; right: 40px; bottom: 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      pointer-events: none;
      padding: 40px;
    }
    .welcome-content-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      max-width: 900px;
      width: 100%;
      flex: 1;
    }
    .welcome-logo-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      opacity: 0;
      transform: translateY(40px);
    }
    .welcome-logo {
      width: 130px;
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.8));
    }
    .welcome-tagline {
      font-family: var(--font-display);
      font-size: clamp(16px, 2.2vw, 24px);
      font-weight: 400;
      font-style: italic;
      letter-spacing: 2.5px;
      color: var(--gold);
      text-shadow: 0 4px 30px rgba(212, 175, 106, 0.25), 0 2px 20px rgba(0, 0, 0, 0.9);
    }
    .welcome-headline {
      font-family: var(--font-display);
      font-size: clamp(32px, 5vw, 64px);
      font-weight: 300;
      line-height: 1.15;
      color: var(--ivory);
      text-shadow: 0 4px 40px rgba(0, 0, 0, 0.7);
      max-width: 900px;
      margin-top: 20px;
    }
    .welcome-headline .title-line {
      display: block;
      overflow: hidden;
      line-height: 1.2;
    }
    .welcome-headline .title-inner {
      display: block;
      transform: translateY(100%);
    }
    .welcome-headline em {
      font-style: italic;
      color: var(--gold-light);
      font-weight: 400;
    }
    .welcome-subtitle {
      font-size: 16px;
      color: var(--ivory-dim);
      max-width: 620px;
      line-height: 1.7;
      margin-top: 16px;
      text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
      opacity: 0;
      transform: translateY(30px);
    }
    .welcome-stats {
      display: flex;
      gap: 40px;
      margin-top: 24px;
      border-top: 1px solid rgba(212, 175, 106, 0.15);
      padding-top: 20px;
    }
    .welcome-stat {
      display: flex;
      flex-direction: column;
      gap: 6px;
      opacity: 0;
      transform: translateY(30px);
    }
    .welcome-stat .val {
      font-family: var(--font-display);
      font-size: 30px;
      font-weight: 600;
      color: var(--gold);
      text-shadow: 0 2px 30px rgba(212, 175, 106, 0.3);
    }
    .welcome-stat .lbl {
      font-size: 11px;
      color: var(--ivory-dim);
      text-transform: uppercase;
      letter-spacing: 1.5px;
    }
    .start-btn-wrap {
      margin-top: 24px;
      opacity: 0;
      transform: translateY(20px) scale(0.9);
    }
    .start-btn {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      background: var(--gold);
      color: var(--black);
      border: none;
      padding: 14px 40px;
      border-radius: 60px;
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      cursor: pointer;
      pointer-events: auto;
      transition: var(--transition-premium);
      box-shadow: 0 8px 40px rgba(212, 175, 106, 0.35);
      position: relative;
      overflow: hidden;
    }
    .start-btn::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
      pointer-events: none;
    }
    .start-btn:hover {
      background: var(--gold-light);
      transform: translateY(-4px);
      box-shadow: 0 12px 50px rgba(212, 175, 106, 0.5);
    }
    .start-btn:active {
      transform: translateY(-1px);
    }
    .start-btn i {
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .start-btn:hover i {
      transform: translateX(6px);
    }
    .start-btn .pulse-ring {
      position: absolute;
      width: 100%; height: 100%;
      border-radius: 60px;
      border: 2px solid var(--gold-light);
      opacity: 0;
      top: 0; left: 0;
      animation: start-pulse 2s infinite 1s;
    }
    @keyframes start-pulse {
      0% { transform: scale(1); opacity: 0.6; }
      100% { transform: scale(1.15); opacity: 0; }
    }
    @media (max-width: 860px) {
      .welcome-logo { width: 100px; }
      .welcome-stat .val { font-size: 26px; }
      .welcome-subtitle { font-size: 14px; }
    }
    @media (max-width: 580px) {
      .welcome-content { top: 20px; left: 16px; right: 16px; bottom: 20px; padding: 24px; }
      .welcome-stats { flex-direction: column; gap: 16px; align-items: center; }
      .welcome-stats { padding-top: 14px; margin-top: 16px; }
      .welcome-headline { margin-top: 12px; }
      .welcome-subtitle { margin-top: 10px; }
      #welcome-video { object-position: center 30%; }
      .start-btn { padding: 12px 28px; font-size: 12px; }
    }

    /* ==========================================================================
        1. LUXURY DESIGN SYSTEM (CSS VARIABLES & GLOBAL STYLES)
        ========================================================================== */
    :root {
      --black: #030712;
      --black-light: #081125;
      --black-card: rgba(6, 14, 30, 0.8);
      --gold: #D4AF6A;
      --gold-light: #FCE8B0;
      --gold-dark: #B8953C;
      --gold-muted: rgba(212, 175, 106, 0.3);
      --ivory: #EDE7D9;
      --ivory-dim: #C4B8A0;
      --bronze: rgba(212, 175, 106, 0.15);
      --bronze-light: rgba(212, 175, 106, 0.25);
      --red: #C34A36;
      --green: #4E9F3D;
      --font-display: 'Fraunces', serif;
      --font-body: 'Inter', sans-serif;
      --font-mono: 'JetBrains Mono', monospace;
      --transition-premium: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    [data-theme="light"] {
      --black: #FAF8F3;
      --black-light: #F5F0E8;
      --black-card: rgba(255, 255, 255, 0.85);
      --gold: #C49B3E;
      --gold-light: #D4AF6A;
      --gold-dark: #8B6F2E;
      --gold-muted: rgba(196, 155, 62, 0.25);
      --ivory: #1A1A2E;
      --ivory-dim: #5A5A6E;
      --bronze: rgba(196, 155, 62, 0.12);
      --bronze-light: rgba(196, 155, 62, 0.2);
      --red: #C34A36;
      --green: #4E9F3D;
    }

    [data-theme="light"] .video-overlay {
      background: linear-gradient(180deg, rgba(250, 248, 243, 0.15) 0%, rgba(250, 248, 243, 0.60) 50%, rgba(250, 248, 243, 0.92) 100%);
    }
    [data-theme="light"] .nav.nav-scrolled {
      background: rgba(250, 248, 243, 0.85);
    }
    [data-theme="light"] .city-toggle {
      background: rgba(196, 155, 62, 0.1);
    }
    [data-theme="light"] .pune-map-hud .badge {
      background: rgba(250, 248, 243, 0.95);
      box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    }
    [data-theme="light"] .pune-map-hint {
      background: rgba(250, 248, 243, 0.88);
    }
    [data-theme="light"] .prop-card-centered {
      background: rgba(255, 255, 255, 0.98);
      border-color: rgba(196, 155, 62, 0.15);
    }
    [data-theme="light"] .prop-card-centered .card-image {
      background: linear-gradient(135deg, #f5f0e8, #ede7d9);
    }
    [data-theme="light"] .prop-card-centered .card-image::after {
      background: linear-gradient(180deg, transparent 50%, rgba(255, 255, 255, 0.95) 100%);
    }
    [data-theme="light"] .prop-card-centered .card-close {
      background: rgba(0,0,0,0.06);
      color: #5A5A6E;
    }
    [data-theme="light"] .prop-card-centered .card-close:hover {
      background: rgba(196, 155, 62, 0.15);
    }
    [data-theme="light"] .prop-card-centered .prop-developer {
      background: rgba(0,0,0,0.02);
    }
    [data-theme="light"] .prop-card-centered .prop-details {
      border-top-color: rgba(196, 155, 62, 0.15);
    }
    [data-theme="light"] .chart-3d-legend {
      background: rgba(250, 248, 243, 0.95);
      border-color: rgba(196, 155, 62, 0.15);
    }
    [data-theme="light"] .nav-links.open {
      background: rgba(250, 248, 243, 0.98);
    }
    [data-theme="light"] .prop-overlay {
      background: rgba(0, 0, 0, 0.3);
    }
    [data-theme="light"] .glass-card {
      box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    }
    [data-theme="light"] .nav {
      background: rgba(250, 248, 243, 0.45);
      border-color: rgba(196, 155, 62, 0.25);
      box-shadow: 
        0 1px 0 0 rgba(255, 255, 255, 0.8) inset, 
        0 10px 40px rgba(196, 155, 62, 0.04),
        0 0 15px rgba(196, 155, 62, 0.02);
    }
    [data-theme="light"] .nav.nav-scrolled {
      background: rgba(245, 240, 232, 0.88);
      border-color: rgba(196, 155, 62, 0.35);
      box-shadow: 
        0 1px 0 0 rgba(255, 255, 255, 0.9) inset, 
        0 15px 45px rgba(196, 155, 62, 0.08),
        0 0 20px rgba(196, 155, 62, 0.04);
    }
    [data-theme="light"] .city-toggle {
      background: rgba(0, 0, 0, 0.04);
      border-color: rgba(196, 155, 62, 0.25);
      box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    }
    [data-theme="light"] .city-toggle button.active {
      color: #FAF8F3;
      background: var(--gold);
      box-shadow: 0 2px 8px rgba(196, 155, 62, 0.35);
    }
    [data-theme="light"] .city-toggle button:hover:not(.active) {
      color: var(--gold);
      background: rgba(196, 155, 62, 0.06);
    }
    [data-theme="light"] .nav-links a.nav-cta {
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
      color: #FAF8F3 !important;
      box-shadow: 0 4px 15px rgba(196, 155, 62, 0.25);
    }
    [data-theme="light"] .nav-links a.nav-cta:hover {
      background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
      color: #1A1A2E !important;
      box-shadow: 0 6px 22px rgba(196, 155, 62, 0.4);
    }
    [data-theme="light"] .pune-map-container {
      box-shadow: 0 20px 50px rgba(0,0,0,0.07);
    }
    [data-theme="light"] .prop-card-centered {
      box-shadow: 0 30px 80px rgba(0,0,0,0.08);
    }
    [data-theme="light"] .property-marker {
      background: radial-gradient(circle at 35% 35%, #C49B3E, #8B6F2E);
      border-color: #C49B3E;
      box-shadow: 0 0 24px rgba(196, 155, 62, 0.5), 0 4px 15px rgba(0,0,0,0.2);
    }
    [data-theme="light"] .property-marker:hover {
      box-shadow: 0 0 32px rgba(196, 155, 62, 0.7), 0 4px 15px rgba(0,0,0,0.3);
    }
    [data-theme="light"] .glass-card {
      background: rgba(255, 255, 255, 0.85);
      border-color: rgba(0,0,0,0.06);
    }
    [data-theme="light"] .project-img-wrapper {
      background: linear-gradient(135deg, var(--black-light) 0%, #e8e0d0 100%);
    }
    [data-theme="light"] .canvas-3d-chart-container {
      background: rgba(250, 248, 243, 0.5);
    }
    [data-theme="light"] .property-marker .tooltip-label {
      background: rgba(250, 248, 243, 0.95);
      color: #1A1A2E;
    }
    [data-theme="light"] .start-btn,
    [data-theme="light"] .search-submit-btn,
    [data-theme="light"] .project-badge,
    [data-theme="light"] .calc-tab-btn.active,
    [data-theme="light"] .step-num,
    [data-theme="light"] .form-submit-btn,
    [data-theme="light"] .social-links a:hover,
    [data-theme="light"] .hero-search-btn {
      color: #030712;
    }
    [data-theme="light"] ::selection {
      color: #030712;
    }
    [data-theme="light"] .search-group select,
    [data-theme="light"] .search-group input,
    [data-theme="light"] .form-group input,
    [data-theme="light"] .form-group textarea,
    [data-theme="light"] .form-group select,
    [data-theme="light"] .calc-select,
    [data-theme="light"] .calc-text-input {
      background: rgba(0,0,0,0.03);
      border-color: rgba(0,0,0,0.1);
    }
    [data-theme="light"] .search-row select option {
      background: #FAF8F3;
      color: #1A1A2E;
    }
    [data-theme="light"] .calc-inputs-panel input[type="range"]::-webkit-slider-thumb {
      border-color: #1A1A2E;
    }
    [data-theme="light"] .gate-card {
      background: rgba(255, 255, 255, 0.97);
      border-color: rgba(196, 155, 62, 0.3);
    }
    [data-theme="light"] .gate-card h4 {
      color: #1A1A2E;
    }
    [data-theme="light"] .action-btn,
    [data-theme="light"] .gate-submit-btn {
      color: #030712;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      background: var(--black);
      color: var(--ivory);
      overflow-x: hidden;
    }

    body {
      font-family: var(--font-body);
      line-height: 1.6;
      background: var(--black);
      -webkit-font-smoothing: antialiased;
    }

    /* Background Canvas container */
    #canvas-bg-container {
      position: fixed;
      top: 0; left: 0;
      width: 100vw;
      height: 100vh;
      z-index: 1;
      pointer-events: none;
    }
    #canvas-bg {
      width: 100%;
      height: 100%;
    }

    .main-content {
      position: relative;
      z-index: 2;
    }

    /* Animated gradient background */
    .main-content::before {
      content: '';
      position: fixed;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 20% 30%, rgba(212, 175, 106, 0.04) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 80% 70%, rgba(154, 114, 51, 0.03) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(243, 217, 162, 0.02) 0%, transparent 60%);
      animation: bgShift 20s ease-in-out infinite alternate;
      pointer-events: none;
      z-index: 0;
    }
    @keyframes bgShift {
      0% { transform: scale(1) translate(0%, 0%); }
      33% { transform: scale(1.1) translate(-2%, -3%); }
      66% { transform: scale(1.05) translate(3%, 2%); }
      100% { transform: scale(1.15) translate(-1%, 5%); }
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
      width: 6px;
    }
    ::-webkit-scrollbar-track {
      background: var(--black);
    }
    ::-webkit-scrollbar-thumb {
      background: var(--gold-dark);
      border-radius: 10px;
    }
    ::-webkit-scrollbar-thumb:hover {
      background: var(--gold-light);
    }

    /* Glassmorphism utility */
    .glass-card {
      background: rgba(6, 14, 30, 0.94);
      border: 1px solid rgba(212, 175, 106, 0.15);
      border-radius: 16px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.85);
      transition: border-color 0.5s, box-shadow 0.5s, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
      transform-style: preserve-3d;
    }
    .glass-card:hover {
      border-color: rgba(212, 175, 106, 0.35);
      box-shadow: 0 15px 50px rgba(212, 175, 106, 0.08);
    }

    /* Selection highlight */
    ::selection {
      background: var(--gold-dark);
      color: var(--black);
    }

    /* ==========================================================================
       2. CUSTOM CURSOR
       ========================================================================== */
    #custom-cursor {
      width: 8px;
      height: 8px;
      background: var(--gold);
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 99999;
      transform: translate(-50%, -50%);
      opacity: 0;
      transition: width 0.15s, height 0.15s, background-color 0.15s, opacity 0.3s;
    }
    #custom-cursor-ring {
      width: 40px;
      height: 40px;
      border: 1px solid var(--gold-muted);
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 99998;
      transform: translate(-50%, -50%);
      /* Prevent position transitions that conflict with JS requestAnimationFrame rendering */
      transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, opacity 0.3s;
    }
    .hover-active #custom-cursor {
      width: 14px;
      height: 14px;
      background: var(--gold-light);
    }
    .hover-active #custom-cursor-ring {
      width: 60px;
      height: 60px;
      border-color: var(--gold-light);
      background: rgba(212, 175, 106, 0.05);
    }

    /* Hide cursor elements completely on touch screens */
    @media (hover: none) and (pointer: coarse) {
      #custom-cursor, #custom-cursor-ring {
        display: none !important;
      }
    }
    @media (min-width: 861px) {
      * {
        cursor: none; /* Hide browser cursor only on desktop hover devices */
      }
    }

    /* ==========================================================================
       3. NAVIGATION HEADER
       ========================================================================== */
    .nav {
      position: fixed;
      top: 24px;
      left: 50%;
      transform: translateX(-50%);
      width: 90%;
      max-width: 1300px;
      height: 64px;
      z-index: 10000;
      background: rgba(6, 14, 30, 0.45);
      border: 1px solid rgba(212, 175, 106, 0.18);
      border-radius: 32px;
      backdrop-filter: blur(28px) saturate(200%);
      -webkit-backdrop-filter: blur(28px) saturate(200%);
      box-shadow: 
        0 1px 0 0 rgba(255, 255, 255, 0.1) inset, 
        0 10px 40px rgba(0, 0, 0, 0.6),
        0 0 15px rgba(212, 175, 106, 0.03);
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .nav.nav-scrolled {
      top: 12px;
      width: 94%;
      height: 58px;
      background: rgba(4, 9, 20, 0.82);
      border-color: rgba(212, 175, 106, 0.28);
      box-shadow: 
        0 1px 0 0 rgba(255, 255, 255, 0.15) inset, 
        0 15px 45px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(212, 175, 106, 0.06);
    }
    .nav-inner {
      width: 100%;
      height: 100%;
      padding: 0 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: var(--font-display);
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 2px;
      color: var(--ivory);
      text-decoration: none;
      transition: var(--transition-premium);
    }
    .nav-brand:hover {
      color: var(--gold-light);
      text-shadow: 0 0 10px rgba(212, 175, 106, 0.3);
    }
    .nav-logo-img {
      height: 42px;
      width: auto;
      object-fit: contain;
      border-radius: 6px;
      transition: var(--transition-premium);
      border: 1px solid rgba(212, 175, 106, 0.15);
    }
    .nav-brand:hover .nav-logo-img {
      border-color: var(--gold);
      transform: scale(1.05);
    }
    .nav-right {
      display: flex;
      align-items: center;
      gap: 32px;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      list-style: none;
    }
    .nav-links a {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--ivory-dim);
      transition: var(--transition-premium);
      position: relative;
      padding: 6px 0;
      text-decoration: none;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0; left: 50%;
      width: 0; height: 1.5px;
      background: linear-gradient(90deg, var(--gold-light), var(--gold));
      transition: var(--transition-premium);
      transform: translateX(-50%);
    }
    .nav-links a:hover::after,
    .nav-links a.active::after {
      width: 100%;
    }
    .nav-links a:hover,
    .nav-links a.active {
      color: var(--gold-light);
      text-shadow: 0 0 8px rgba(212, 175, 106, 0.2);
    }
    .nav-links a.nav-cta {
      background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
      color: #030712 !important;
      padding: 9px 22px;
      border-radius: 22px;
      font-weight: 700;
      border: none;
      box-shadow: 0 4px 15px rgba(212, 175, 106, 0.25);
      transition: var(--transition-premium);
    }
    .nav-links a.nav-cta:hover {
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
      color: #030712 !important;
      box-shadow: 0 6px 22px rgba(212, 175, 106, 0.45);
      transform: translateY(-1px) scale(1.02);
    }
    .nav-links a.nav-cta::after {
      display: none;
    }

    /* Dynamic City Switcher */
    .city-toggle {
      display: flex;
      background: rgba(8, 17, 37, 0.6);
      border: 1px solid rgba(212, 175, 106, 0.2);
      border-radius: 30px;
      padding: 3px;
      position: relative;
      box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.4);
    }
    .city-toggle button {
      background: transparent;
      border: none;
      color: var(--ivory-dim);
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      padding: 6px 18px;
      border-radius: 30px;
      cursor: pointer;
      transition: var(--transition-premium);
      z-index: 2;
    }
    .city-toggle button.active {
      color: #030712;
      background: var(--gold);
      box-shadow: 0 2px 8px rgba(212, 175, 106, 0.4);
    }
    .city-toggle button:hover:not(.active) {
      color: var(--gold-light);
      background: rgba(212, 175, 106, 0.05);
    }

    .mobile-toggle {
      display: none;
      flex-direction: column;
      gap: 6px;
      cursor: pointer;
      padding: 4px;
    }
    .mobile-toggle span {
      width: 26px;
      height: 2px;
      background: var(--gold);
      transition: var(--transition-premium);
      border-radius: 2px;
    }
    .mobile-toggle:hover span {
      background: var(--gold-light);
    }

    /* ==========================================================================
       4. HERO SECTION (WITH 3D GLOBE CANVAS)
       ========================================================================== */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 120px 40px 80px;
      position: relative;
      overflow: hidden;
    }
    .hero-grid {
      max-width: 1400px;
      width: 100%;
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 40px;
      align-items: center;
      position: relative;
      z-index: 3;
    }
    .hero-content {
      padding-right: 40px;
    }
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(212, 175, 106, 0.1);
      border: 1px solid var(--gold-dark);
      padding: 8px 24px;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 24px;
    }
    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(38px, 5.2vw, 68px);
      font-weight: 300;
      line-height: 1.1;
      margin-bottom: 24px;
      color: var(--ivory);
    }
    .hero h1 em {
      font-style: italic;
      color: var(--gold-light);
      font-weight: 400;
    }
    .hero h1 span {
      display: block;
      font-size: clamp(16px, 1.8vw, 24px);
      font-family: var(--font-display);
      font-weight: 400;
      font-style: italic;
      color: var(--gold);
      letter-spacing: 2px;
    }
    .hero-subtitle {
      font-size: 17px;
      color: var(--ivory-dim);
      margin-bottom: 40px;
      line-height: 1.8;
      max-width: 580px;
    }

    /* Embedded Glass Search Bar */
    .search-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .search-group label {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--gold-muted);
    }
    .search-group select, .search-group input {
      background: var(--black);
      border: 1px solid var(--bronze);
      border-radius: 8px;
      padding: 12px;
      color: var(--ivory);
      font-family: var(--font-body);
      font-size: 13px;
      transition: var(--transition-premium);
      outline: none;
    }
    .search-submit-btn {
      background: var(--gold);
      color: var(--black);
      border: none;
      padding: 12px;
      border-radius: 8px;
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      transition: var(--transition-premium);
      height: 43px;
    }
    .search-submit-btn:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(212, 175, 106, 0.3);
    }

    /* Hero Stats */
    .hero-stats {
      display: flex;
      gap: 48px;
      border-top: 1px solid rgba(212, 175, 106, 0.1);
      padding-top: 32px;
    }
    .hero-stat-item {
      display: flex;
      flex-direction: column;
    }
    .hero-stat-item .val {
      font-family: var(--font-display);
      font-size: 32px;
      font-weight: 600;
      color: var(--gold);
      line-height: 1;
    }
    .hero-stat-item .lbl {
      font-size: 11px;
      color: var(--ivory-dim);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-top: 6px;
    }

    /* WebGL Globe Container */
    .canvas-globe-container {
      width: 100%;
      height: 600px;
      position: relative;
    }
    #canvas-globe {
      width: 100%;
      height: 100%;
    }
    .globe-overlay-card {
      position: absolute;
      bottom: 24px; left: 24px;
      padding: 16px 24px;
      display: flex;
      align-items: center;
      gap: 16px;
      pointer-events: none;
    }
    .globe-overlay-card .pulse-dot {
      width: 10px;
      height: 10px;
      background: var(--gold);
      border-radius: 50%;
      position: relative;
    }
    .globe-overlay-card .pulse-dot::after {
      content: '';
      position: absolute;
      width: 100%; height: 100%;
      background: var(--gold);
      border-radius: 50%;
      animation: pulse-ring 2s infinite;
      top: 0; left: 0;
    }
    .globe-overlay-card .txt {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--ivory);
    }

    /* ==========================================================================
       5. FEATURED PROJECTS (LISTINGS)
       ========================================================================== */
    .section {
      padding: 120px 40px;
      max-width: 1400px;
      margin: 0 auto;
    }
    .section-header {
      text-align: center;
      margin-bottom: 60px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .section-header h2 {
      font-family: var(--font-display);
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 300;
      margin-bottom: 16px;
      color: var(--ivory);
    }
    .section-header h2 em {
      font-style: italic;
      color: var(--gold);
    }
    .section-header p {
      color: var(--ivory-dim);
      font-size: 16px;
      max-width: 600px;
      line-height: 1.6;
    }
    .section-header .divider {
      width: 60px;
      height: 1px;
      background: var(--gold);
      margin: 20px 0;
    }

    .listings-filter {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-bottom: 40px;
    }
    .listings-filter button {
      background: transparent;
      border: 1px solid var(--bronze);
      color: var(--ivory-dim);
      padding: 10px 24px;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      cursor: pointer;
      transition: var(--transition-premium);
    }
    .listings-filter button.active {
      background: var(--gold-dark);
      border-color: var(--gold);
      color: var(--ivory);
    }
    .listings-filter button:hover:not(.active) {
      border-color: var(--gold-dark);
      color: var(--gold-light);
    }

    .listings-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 30px;
    }
    .project-card {
      position: relative;
      overflow: hidden;
    }
    .project-img-wrapper {
      height: 240px;
      position: relative;
      overflow: hidden;
      border-top-left-radius: 15px;
      border-top-right-radius: 15px;
      background: linear-gradient(135deg, var(--black-light) 0%, #151515 100%);
    }
    .project-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      inset: 0;
    }
    .project-img-wrapper .card-icon {
      font-size: 48px;
      color: var(--gold-muted);
    }
    .project-badge {
      position: absolute;
      top: 20px; left: 20px;
      background: var(--gold);
      color: var(--black);
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 6px 14px;
      border-radius: 50px;
      z-index: 2;
    }
    .project-card-info {
      padding: 24px;
    }
    .project-card-info h3 {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 400;
      margin-bottom: 8px;
      color: var(--ivory);
    }
    .project-card-info .loc {
      font-size: 13px;
      color: var(--ivory-dim);
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 16px;
    }
    .project-params {
      display: flex;
      gap: 16px;
      margin-bottom: 20px;
      border-bottom: 1px solid rgba(212, 175, 106, 0.1);
      padding-bottom: 16px;
    }
    .project-params span {
      font-size: 12px;
      color: var(--ivory-dim);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .project-price-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
    }
    .project-price-row .price {
      font-family: var(--font-display);
      font-size: 22px;
      color: var(--gold-light);
      font-weight: 500;
    }
    .project-price-row .rera {
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--gold-muted);
      text-transform: uppercase;
    }

    /* RERA disclaimer text */
    .rera-disclaimer {
      text-align: center;
      font-size: 11px;
      color: var(--gold-muted);
      margin-top: 40px;
      padding: 16px;
      border: 1px dashed rgba(212, 175, 106, 0.1);
      border-radius: 8px;
    }

    /* ==========================================================================
       6. PUNE 3D PROPERTY MAP
       ========================================================================== */
    .pune-map-container {
      width: 100%;
      height: 550px;
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid rgba(212, 175, 106, 0.15);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
    }
    #pune-map {
      width: 100%;
      height: 100%;
    }
    .pune-map-hud {
      position: absolute;
      top: 20px; left: 20px;
      z-index: 2;
      display: flex;
      flex-direction: column;
      gap: 8px;
      pointer-events: none;
    }
    .pune-map-hud .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 16px;
      border-radius: 40px;
      background: rgba(8, 17, 37, 0.92);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(212, 175, 106, 0.15);
      font-family: var(--font-body);
      font-size: 11px;
      color: var(--gold);
      pointer-events: auto;
    }
    .pune-map-hud .badge i {
      width: 14px; height: 14px;
    }
    .pune-map-hint {
      position: absolute;
      bottom: 20px; left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(8, 17, 37, 0.85);
      backdrop-filter: blur(12px);
      padding: 8px 18px;
      border-radius: 40px;
      border: 1px solid rgba(212, 175, 106, 0.12);
      font-family: var(--font-body);
      font-size: 10px;
      color: var(--ivory-dim);
      pointer-events: none;
      white-space: nowrap;
    }
    .pune-map-hint i {
      width: 14px; height: 14px;
      color: var(--gold);
    }
    /* Property markers */
    .property-marker {
      width: 30px; height: 30px;
      border-radius: 50%;
      background: radial-gradient(circle at 35% 35%, var(--gold-light), var(--gold));
      border: 2px solid var(--gold-light);
      box-shadow: 0 0 24px rgba(212, 175, 106, 0.7), 0 0 8px rgba(255, 232, 176, 0.4), 0 4px 15px rgba(0,0,0,0.6);
      cursor: pointer;
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
    }
    .property-marker::after {
      content: '';
      position: absolute;
      width: 100%; height: 100%;
      top: -2px; left: -2px;
      border-radius: 50%;
      border: 2px solid rgba(212, 175, 106, 0.3);
      animation: marker-pulse 2.5s ease-out infinite;
      box-sizing: content-box;
    }
    @keyframes marker-pulse {
      0% { transform: scale(1); opacity: 0.8; }
      100% { transform: scale(2.5); opacity: 0; }
    }
    .property-marker:hover {
      transform: scale(1.25);
      box-shadow: 0 0 30px rgba(212, 175, 106, 0.7), 0 4px 15px rgba(0,0,0,0.6);
    }
    .property-marker .inner-dot {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 6px; height: 6px;
      border-radius: 50%;
      background: #fff;
      opacity: 0.9;
    }
    .property-marker .tooltip-label {
      position: absolute;
      bottom: calc(100% + 8px);
      left: 50%;
      transform: translateX(-50%);
      white-space: nowrap;
      background: rgba(3, 7, 18, 0.9);
      backdrop-filter: blur(8px);
      color: var(--gold-light);
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 500;
      padding: 4px 10px;
      border-radius: 6px;
      border: 1px solid rgba(212, 175, 106, 0.2);
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .property-marker:hover .tooltip-label {
      opacity: 1;
    }
    .property-marker.marker-commercial {
      background: radial-gradient(circle at 35% 35%, #6E8BDE, #3B5CB8);
      border-color: #6E8BDE;
      box-shadow: 0 0 24px rgba(110, 139, 222, 0.7), 0 0 8px rgba(110, 139, 222, 0.4), 0 4px 15px rgba(0,0,0,0.6);
    }
    .property-marker.marker-commercial::after {
      border-color: rgba(110, 139, 222, 0.3);
    }
    .property-marker.marker-commercial:hover {
      box-shadow: 0 0 30px rgba(110, 139, 222, 0.7), 0 4px 15px rgba(0,0,0,0.6);
    }
    .property-marker.marker-residential-uc {
      background: radial-gradient(circle at 35% 35%, #E8A87C, #D4824E);
      border-color: #E8A87C;
      box-shadow: 0 0 24px rgba(212, 130, 78, 0.7), 0 0 8px rgba(232, 168, 124, 0.4), 0 4px 15px rgba(0,0,0,0.6);
    }
    .property-marker.marker-residential-uc::after {
      border-color: rgba(212, 130, 78, 0.3);
    }
    .property-marker.marker-residential-uc:hover {
      box-shadow: 0 0 30px rgba(212, 130, 78, 0.7), 0 4px 15px rgba(0,0,0,0.6);
    }
    /* Map legend */
    .map-legend {
      position: absolute;
      bottom: 40px;
      right: 16px;
      background: rgba(3, 7, 18, 0.85);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(212, 175, 106, 0.2);
      border-radius: 10px;
      padding: 12px 16px;
      z-index: 10;
      font-family: var(--font-body);
      min-width: 160px;
    }
    .legend-title {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 8px;
    }
    .legend-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      color: rgba(255,255,255,0.85);
      padding: 3px 0;
    }
    .legend-dot {
      width: 12px; height: 12px;
      border-radius: 50%;
      flex-shrink: 0;
      border: 1.5px solid rgba(255,255,255,0.2);
    }
    .legend-dot.dot-residential-ready {
      background: radial-gradient(circle at 35% 35%, var(--gold-light), var(--gold));
    }
    .legend-dot.dot-residential-uc {
      background: radial-gradient(circle at 35% 35%, #E8A87C, #D4824E);
    }
    .legend-dot.dot-commercial {
      background: radial-gradient(circle at 35% 35%, #6E8BDE, #3B5CB8);
    }
    .legend-count {
      margin-left: auto;
      font-weight: 600;
      color: rgba(255,255,255,0.5);
      font-size: 10px;
    }
    [data-theme="light"] .map-legend {
      background: rgba(250, 248, 243, 0.92);
      border-color: rgba(0,0,0,0.08);
    }
    [data-theme="light"] .legend-title {
      color: #8B6F2E;
    }
    [data-theme="light"] .legend-item {
      color: rgba(0,0,0,0.7);
    }
    [data-theme="light"] .legend-count {
      color: rgba(0,0,0,0.35);
    }
    [data-theme="light"] .property-marker.marker-commercial {
      background: radial-gradient(circle at 35% 35%, #5A7AD5, #2D4A9C);
      border-color: #5A7AD5;
      box-shadow: 0 0 24px rgba(90, 122, 213, 0.5), 0 4px 15px rgba(0,0,0,0.2);
    }
    [data-theme="light"] .property-marker.marker-commercial:hover {
      box-shadow: 0 0 32px rgba(90, 122, 213, 0.7), 0 4px 15px rgba(0,0,0,0.3);
    }
    [data-theme="light"] .property-marker.marker-residential-uc {
      background: radial-gradient(circle at 35% 35%, #D4824E, #B06030);
      border-color: #D4824E;
      box-shadow: 0 0 24px rgba(212, 130, 78, 0.5), 0 4px 15px rgba(0,0,0,0.2);
    }
    [data-theme="light"] .property-marker.marker-residential-uc:hover {
      box-shadow: 0 0 32px rgba(212, 130, 78, 0.7), 0 4px 15px rgba(0,0,0,0.3);
    }
    [data-theme="light"] .legend-dot.dot-residential-ready {
      background: radial-gradient(circle at 35% 35%, #D4AF6A, #C49B3E);
    }
    [data-theme="light"] .legend-dot.dot-residential-uc {
      background: radial-gradient(circle at 35% 35%, #D4824E, #B06030);
    }
    [data-theme="light"] .legend-dot.dot-commercial {
      background: radial-gradient(circle at 35% 35%, #5A7AD5, #2D4A9C);
    }
    /* Centered property card overlay */
    .prop-overlay {
      position: fixed; inset: 0; z-index: 2000;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease;
    }
    .prop-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }
    .prop-card-centered {
      width: 360px;
      max-width: 90vw;
      max-height: 85vh;
      overflow-y: auto;
      background: rgba(8, 17, 37, 0.97);
      backdrop-filter: blur(20px);
      border-radius: 20px;
      border: 1px solid rgba(212, 175, 106, 0.2);
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
      transform: scale(0.9) translateY(20px);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .prop-overlay.active .prop-card-centered {
      transform: scale(1) translateY(0);
    }
    .prop-card-centered .card-inner { padding: 0; position: relative; }
    .prop-card-centered .card-close {
      position: absolute;
      top: 12px; right: 12px;
      z-index: 5;
      width: 32px; height: 32px;
      border-radius: 50%;
      border: none;
      background: rgba(0,0,0,0.4);
      color: var(--ivory-dim);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: var(--transition-premium);
    }
    .prop-card-centered .card-close:hover {
      background: rgba(212, 175, 106, 0.2);
      color: var(--gold);
    }
    .prop-card-centered .card-image {
      width: 100%;
      height: 160px;
      background: linear-gradient(135deg, #0a1628, #1a2a4a);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      border-radius: 20px 20px 0 0;
    }
    .prop-card-centered .card-image::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(180deg, transparent 50%, rgba(8, 17, 37, 0.95) 100%);
    }
    .prop-card-centered .card-image i {
      width: 52px; height: 52px;
      color: var(--gold);
      opacity: 0.4;
      z-index: 1;
    }
    .prop-card-centered .card-image .prop-status {
      position: absolute;
      bottom: 14px; left: 20px;
      z-index: 2;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      padding: 5px 14px;
      border-radius: 20px;
      background: var(--gold);
      color: #030712;
      font-weight: 700;
    }
    .prop-card-centered .card-image .prop-status.uc {
      background: rgba(212, 175, 106, 0.12);
      border: 1px solid rgba(212, 175, 106, 0.3);
      color: var(--gold-light);
    }
    .prop-card-centered .card-body {
      padding: 22px 24px 26px;
    }
    .prop-card-centered .prop-name {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 500;
      color: var(--gold-light);
      line-height: 1.2;
    }
    .prop-card-centered .prop-location {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: var(--ivory-dim);
      margin-top: 6px;
    }
    .prop-card-centered .prop-location i {
      width: 14px; height: 14px;
      flex-shrink: 0;
    }
    .prop-card-centered .prop-price {
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 600;
      color: var(--gold);
      margin-top: 14px;
    }
    .prop-card-centered .prop-details {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 12px;
      margin-top: 18px;
      padding-top: 18px;
      border-top: 1px solid rgba(212, 175, 106, 0.1);
    }
    .prop-card-centered .prop-details .detail-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      text-align: center;
    }
    .prop-card-centered .prop-details .detail-item i {
      width: 20px; height: 20px;
      color: var(--gold);
      opacity: 0.7;
    }
    .prop-card-centered .prop-details .detail-item .val {
      font-size: 14px;
      font-weight: 600;
      color: var(--ivory);
    }
    .prop-card-centered .prop-details .detail-item .lbl {
      font-size: 9px;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      color: var(--ivory-dim);
    }
    .prop-card-centered .prop-developer {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 18px;
      padding: 12px 16px;
      background: rgba(255,255,255,0.03);
      border-radius: 10px;
      font-size: 13px;
      color: var(--ivory-dim);
    }
    .prop-card-centered .prop-developer i {
      width: 18px; height: 18px;
      color: var(--gold);
      opacity: 0.6;
    }
    .prop-card-centered .prop-developer strong {
      color: var(--ivory);
      font-weight: 500;
    }
    .prop-card-centered .card-inquire {
      display: block;
      width: 100%;
      margin-top: 18px;
      padding: 12px;
      border-radius: 12px;
      border: none;
      background: var(--gold);
      color: #030712;
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      cursor: pointer;
      transition: var(--transition-premium);
    }
    .prop-card-centered .card-inquire:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
    }
    @media (max-width: 640px) {
      .prop-card-centered { width: 92vw; }
      .prop-card-centered .card-image { height: 130px; }
    }

    /* ==========================================================================
       7. MARKET INSIGHTS
       ========================================================================== */
    .insights-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
      gap: 30px;
    }
    .insight-card {
      padding: 32px;
      height: 100%;
    }
    .insight-card h3 {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 400;
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 12px;
      border-bottom: 1px solid rgba(212, 175, 106, 0.15);
      padding-bottom: 16px;
    }
    .insight-card h3 i {
      color: var(--gold);
    }
    .trend-row {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 20px;
    }
    .trend-info {
      display: flex;
      justify-content: space-between;
      font-size: 13px;
    }
    .trend-info .quarter { color: var(--ivory-dim); }
    .trend-info .rate { color: var(--gold-light); font-weight: 600; }
    .trend-bar-track {
      height: 6px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 10px;
      overflow: hidden;
    }
    .trend-bar-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 100%);
      border-radius: 10px;
      width: 0;
    }

    .developer-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .developer-item {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(212, 175, 106, 0.05);
      padding: 16px;
      border-radius: 12px;
      text-align: center;
      transition: var(--transition-premium);
    }
    .developer-item:hover {
      border-color: var(--gold-muted);
      background: rgba(212, 175, 106, 0.05);
    }
    .developer-item h4 {
      font-family: var(--font-display);
      font-size: 16px;
      color: var(--ivory);
      margin-bottom: 4px;
    }
    .developer-item p {
      font-size: 11px;
      color: var(--gold-muted);
    }

    .micromarket-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .micromarket-row {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .micromarket-name {
      width: 100px;
      font-size: 13px;
      color: var(--ivory-dim);
    }
    .micromarket-track {
      flex: 1;
      height: 4px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 5px;
      overflow: hidden;
    }
    .micromarket-fill {
      height: 100%;
      background: var(--gold);
      border-radius: 5px;
      width: 0;
    }
    .micromarket-rate {
      width: 120px;
      text-align: right;
      font-family: var(--font-mono);
      font-size: 12px;
      color: var(--gold);
    }

    /* ==========================================================================
       8. TABBED CALCULATORS SECTION (EVEN REDESIGN)
       ========================================================================== */
    .calc-section {
      background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
      border-top: 1px solid rgba(212, 175, 106, 0.1);
      border-bottom: 1px solid rgba(212, 175, 106, 0.1);
    }
    .calc-tabs {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-bottom: 48px;
    }
    .calc-tab-btn {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(212, 175, 106, 0.1);
      color: var(--ivory-dim);
      padding: 12px 26px;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      cursor: pointer;
      transition: var(--transition-premium);
    }
    .calc-tab-btn.active {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--black);
    }

    .calc-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 36px;
      align-items: stretch;
    }
    .calc-inputs-panel {
      padding: 36px;
      display: flex;
      flex-direction: column;
      gap: 22px;
      position: relative;
      overflow: hidden;
    }
    .calc-inputs-panel::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent 0%, var(--gold) 40%, var(--gold-light) 60%, transparent 100%);
      opacity: 0.4;
    }
    .calc-title {
      font-family: var(--font-display);
      font-size: 24px;
      font-weight: 400;
      color: var(--gold-light);
      margin-bottom: 4px;
    }
    .calc-subtitle {
      font-size: 13.5px;
      color: var(--ivory-dim);
      margin-bottom: 8px;
      line-height: 1.6;
    }
    .calc-group {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .calc-label-row {
      display: flex;
      justify-content: space-between;
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--gold-muted);
    }
    .calc-label-row span.val-display {
      color: var(--gold);
      font-family: var(--font-mono);
      font-size: 13px;
    }
    .calc-inputs-panel input[type="range"] {
      -webkit-appearance: none;
      width: 100%;
      height: 4px;
      background: var(--bronze);
      border-radius: 5px;
      outline: none;
      margin: 4px 0;
    }
    .calc-inputs-panel input[type="range"]::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--gold);
      border: 3px solid var(--black);
      box-shadow: 0 0 0 1px var(--gold-muted);
      cursor: pointer;
      transition: var(--transition-premium);
    }
    .calc-inputs-panel input[type="range"]::-webkit-slider-thumb:hover {
      background: var(--gold-light);
      transform: scale(1.15);
    }
    .calc-select, .calc-text-input {
      background: var(--black);
      border: 1px solid var(--bronze);
      border-radius: 10px;
      padding: 14px 16px;
      color: var(--ivory);
      font-family: var(--font-body);
      font-size: 14px;
      outline: none;
      transition: var(--transition-premium);
    }
    .calc-form-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-bottom: 28px;
    }
    .action-btn {
      background: var(--gold);
      color: var(--black);
      border: none;
      padding: 14px 36px;
      border-radius: 10px;
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      cursor: pointer;
      transition: var(--transition-premium);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .action-btn:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(212, 175, 106, 0.3);
    }
    .gate-card {
      background: rgba(10, 10, 10, 0.95);
      border: 2px solid var(--gold);
      border-radius: 16px;
      padding: 36px;
      margin-top: 24px;
      text-align: center;
      display: none;
      animation: fade-in-up 0.5s ease;
    }
    .gate-card.active {
      display: block;
    }
    @keyframes fade-in-up {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .gate-card h4 {
      font-family: var(--font-display);
      font-size: 22px;
      color: var(--gold-light);
      margin-bottom: 10px;
    }
    .gate-card p {
      color: var(--ivory-dim);
      margin-bottom: 24px;
      font-size: 14px;
    }
    .gate-form {
      max-width: 400px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 16px;
      text-align: left;
    }
    .gate-form input {
      width: 100%;
      background: var(--black-card);
      border: 1px solid var(--bronze);
      border-radius: 8px;
      padding: 14px 16px;
      color: var(--ivory);
      font-family: var(--font-body);
      font-size: 14px;
      outline: none;
    }
    .gate-submit-btn {
      width: 100%;
      background: var(--gold);
      color: var(--black);
      border: none;
      padding: 14px;
      border-radius: 8px;
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      cursor: pointer;
      transition: var(--transition-premium);
    }
    .gate-submit-btn:hover {
      background: var(--gold-light);
      box-shadow: 0 5px 15px rgba(212, 175, 106, 0.3);
    }

    /* ============================================
       SHARED INQUIRY OVERLAY
       ============================================ */
    .inquiry-overlay {
      position: fixed; inset: 0; z-index: 3000;
      background: rgba(0, 0, 0, 0.65);
      backdrop-filter: blur(6px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease;
    }
    .inquiry-overlay.active {
      opacity: 1;
      pointer-events: all;
    }
    .inquiry-modal {
      background: linear-gradient(145deg, var(--black-card), #12141e);
      border: 1px solid rgba(212, 175, 106, 0.2);
      border-radius: 16px;
      padding: 36px 32px 28px;
      width: 90%;
      max-width: 420px;
      position: relative;
      box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    }
    .inquiry-close {
      position: absolute;
      top: 12px; right: 12px;
      background: none;
      border: none;
      color: rgba(255,255,255,0.4);
      cursor: pointer;
      padding: 4px;
      line-height: 1;
      transition: color 0.2s;
    }
    .inquiry-close:hover {
      color: rgba(255,255,255,0.8);
    }
    .inquiry-modal h3 {
      font-family: var(--font-heading);
      font-size: 20px;
      font-weight: 500;
      color: var(--gold-light);
      margin-bottom: 4px;
    }
    .inquiry-modal form {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .inquiry-modal form input {
      width: 100%;
      padding: 14px 16px;
      border-radius: 10px;
      border: 1px solid rgba(212, 175, 106, 0.15);
      background: rgba(255,255,255,0.04);
      color: #fff;
      font-family: var(--font-body);
      font-size: 14px;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      box-sizing: border-box;
    }
    .inquiry-modal form input:focus {
      border-color: var(--gold-muted);
      box-shadow: 0 0 0 3px rgba(212, 175, 106, 0.08);
    }
    .inquiry-modal form input::placeholder {
      color: rgba(255,255,255,0.3);
    }
    .inquiry-submit-btn {
      width: 100%;
      padding: 14px;
      border-radius: 10px;
      border: none;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: #030712;
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: opacity 0.2s, box-shadow 0.2s;
      margin-top: 4px;
    }
    .inquiry-submit-btn:hover {
      box-shadow: 0 5px 15px rgba(212, 175, 106, 0.3);
    }

    [data-theme="light"] .inquiry-modal {
      background: linear-gradient(145deg, #ffffff, #f8f5ee);
      border-color: rgba(0,0,0,0.08);
    }
    [data-theme="light"] .inquiry-modal h3 {
      color: #C49B3E;
    }
    [data-theme="light"] .inquiry-close {
      color: rgba(0,0,0,0.3);
    }
    [data-theme="light"] .inquiry-close:hover {
      color: rgba(0,0,0,0.6);
    }
    [data-theme="light"] .inquiry-modal form input {
      background: rgba(0,0,0,0.02);
      border-color: rgba(0,0,0,0.1);
      color: #030712;
    }
    [data-theme="light"] .inquiry-modal form input::placeholder {
      color: rgba(0,0,0,0.3);
    }
    [data-theme="light"] .inquiry-submit-btn {
      color: #030712;
    }

    .calc-select:focus, .calc-text-input:focus {
      border-color: var(--gold-muted);
      box-shadow: 0 0 0 3px rgba(212, 175, 106, 0.08);
    }

    /* Calculator Results and WebGL Canvas Panel */
    .calc-results-panel {
      padding: 36px;
      display: flex;
      flex-direction: column;
      gap: 28px;
      position: relative;
      overflow: hidden;
    }
    .calc-results-panel::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent 0%, var(--gold) 40%, var(--gold-light) 60%, transparent 100%);
      opacity: 0.4;
    }
    .results-overview-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    .result-widget {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(212, 175, 106, 0.08);
      border-radius: 14px;
      padding: 22px 16px;
      text-align: center;
      transition: var(--transition-premium);
    }
    .result-widget:hover {
      border-color: rgba(212, 175, 106, 0.2);
      background: rgba(212, 175, 106, 0.03);
    }
    .result-widget .label {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--gold-muted);
      margin-bottom: 8px;
    }
    .result-widget .value {
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 600;
      color: var(--gold);
    }
    .result-widget .value.net {
      color: var(--green);
    }

    /* WebGL 3D Graph / Chart Canvas */
    .canvas-3d-chart-container {
      width: 100%;
      height: 280px;
      position: relative;
      border: 1px solid rgba(212, 175, 106, 0.1);
      border-radius: 14px;
      background: rgba(0, 0, 0, 0.3);
      overflow: hidden;
    }
    #canvas-3d-chart {
      width: 100%;
      height: 100%;
    }
    .chart-3d-legend {
      position: absolute;
      top: 14px; left: 14px;
      display: flex;
      flex-direction: column;
      gap: 6px;
      background: rgba(8, 17, 37, 0.85);
      padding: 8px 14px;
      border-radius: 8px;
      border: 1px solid rgba(212, 175, 106, 0.1);
      pointer-events: none;
    }
    .legend-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
    }
    .legend-item .color-box {
      width: 10px;
      height: 10px;
      border-radius: 2px;
    }

    .calc-breakdown {
      display: flex;
      flex-direction: column;
      gap: 10px;
      background: rgba(255, 255, 255, 0.02);
      border-radius: 14px;
      padding: 20px 24px;
      font-size: 13px;
      border: 1px solid rgba(212, 175, 106, 0.05);
    }
    .breakdown-item {
      display: flex;
      justify-content: space-between;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }
    .breakdown-item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .breakdown-item span.lbl { color: var(--ivory-dim); }
    .breakdown-item span.val { color: var(--ivory); font-weight: 500; }

    /* Opportunity cost / Delay verdict */
    .compare-verdict-box {
      background: rgba(212, 175, 106, 0.05);
      border-left: 3px solid var(--gold);
      border-radius: 4px;
      padding: 16px 20px;
      font-size: 13.5px;
      line-height: 1.6;
    }
    .compare-verdict-box h4 {
      font-family: var(--font-display);
      font-size: 16px;
      color: var(--gold);
      margin-bottom: 6px;
    }

    /* ==========================================================================
       9. WHY US & PROCESS STEPS
       ========================================================================== */
    .why-us-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }
    .why-us-card {
      padding: 32px;
      transition: var(--transition-premium);
    }
    .why-us-card i {
      font-size: 32px;
      color: var(--gold);
      margin-bottom: 20px;
      display: inline-block;
    }
    .why-us-card h3 {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 400;
      margin-bottom: 12px;
      color: var(--ivory);
    }
    .why-us-card p {
      font-size: 14.5px;
      color: var(--ivory-dim);
      line-height: 1.6;
    }

    /* How It Works Steps */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 60px;
    }
    .step-card {
      position: relative;
      padding: 32px;
      text-align: center;
    }
    .step-num {
      width: 50px;
      height: 50px;
      background: var(--gold);
      color: var(--black);
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 600;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }
    .step-card h3 {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 400;
      margin-bottom: 10px;
    }
    .step-card p {
      font-size: 13.5px;
      color: var(--ivory-dim);
    }

    /* ==========================================================================
       10. TESTIMONIALS SLIDER
       ========================================================================== */
    .testimonials-container {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      overflow: hidden;
      padding: 40px 0;
    }
    .testimonial-slide {
      text-align: center;
      display: none;
      animation: fade-in-slide 0.8s ease;
    }
    .testimonial-slide.active {
      display: block;
    }
    @keyframes fade-in-slide {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .testimonial-stars {
      color: var(--gold);
      font-size: 16px;
      margin-bottom: 24px;
      letter-spacing: 2px;
    }
    .testimonial-text {
      font-family: var(--font-display);
      font-size: clamp(18px, 3vw, 24px);
      line-height: 1.7;
      color: var(--ivory);
      font-style: italic;
      margin-bottom: 32px;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
    }
    .testimonial-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--bronze);
      color: var(--gold);
      font-family: var(--font-display);
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .author-info {
      text-align: left;
    }
    .author-info h4 {
      font-size: 14px;
      font-weight: 600;
      color: var(--ivory);
    }
    .author-info p {
      font-size: 12px;
      color: var(--gold-muted);
    }
    .carousel-arrows {
      display: flex;
      justify-content: center;
      gap: 24px;
      margin-top: 40px;
    }
    .carousel-arrow {
      background: transparent;
      border: 1px solid var(--bronze);
      color: var(--gold);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: var(--transition-premium);
    }

    /* ==========================================================================
       11. CONTACT FORM
       ========================================================================== */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }
    .contact-info {
      padding-right: 40px;
    }
    .contact-info h3 {
      font-family: var(--font-display);
      font-size: 36px;
      font-weight: 300;
      margin-bottom: 16px;
    }
    .contact-info h3 em {
      font-style: italic;
      color: var(--gold);
    }
    .contact-info p {
      color: var(--ivory-dim);
      font-size: 16px;
      line-height: 1.8;
      margin-bottom: 40px;
    }
    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      margin-bottom: 30px;
    }
    .contact-item i {
      font-size: 22px;
      color: var(--gold);
      background: rgba(212, 175, 106, 0.1);
      border: 1px solid var(--gold-dark);
      width: 44px;
      height: 44px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .contact-item h4 {
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--gold);
      margin-bottom: 4px;
    }
    .contact-item p {
      font-size: 15px;
      color: var(--ivory);
    }

    .contact-form {
      padding: 40px;
    }
    .form-group {
      margin-bottom: 24px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .form-group label {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--gold-muted);
    }
    .form-group input, .form-group textarea, .form-group select {
      background: var(--black);
      border: 1px solid var(--bronze);
      border-radius: 8px;
      padding: 14px 16px;
      color: var(--ivory);
      font-family: var(--font-body);
      font-size: 14px;
      outline: none;
      transition: var(--transition-premium);
    }
    .form-group textarea {
      min-height: 120px;
      resize: vertical;
    }
    .form-submit-btn {
      width: 100%;
      background: var(--gold);
      color: var(--black);
      border: none;
      padding: 16px;
      border-radius: 8px;
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: var(--transition-premium);
    }
    .form-submit-btn:hover {
      background: var(--gold-light);
      box-shadow: 0 5px 20px rgba(212, 175, 106, 0.3);
    }

    .success-alert {
      display: none;
      text-align: center;
      padding: 40px 0;
      animation: fade-in-slide 0.5s ease;
    }
    .success-alert i {
      font-size: 48px;
      color: var(--green);
      margin-bottom: 20px;
    }
    .success-alert h3 {
      font-family: var(--font-display);
      font-size: 24px;
      margin-bottom: 8px;
    }
    .success-alert p {
      color: var(--ivory-dim);
    }

    /* ==========================================================================
       12. FOOTER
       ========================================================================== */
    .footer {
      background: var(--black);
      border-top: 1px solid rgba(212, 175, 106, 0.1);
      padding: 80px 40px 40px;
    }
    .footer-grid {
      max-width: 1400px;
      margin: 0 auto 60px;
      display: grid;
      grid-template-columns: 1.5fr repeat(3, 1fr);
      gap: 40px;
    }
    .footer-brand h4 {
      font-family: var(--font-display);
      font-size: 22px;
      margin-bottom: 16px;
    }
    .footer-brand h4 span {
      color: var(--gold);
      font-style: italic;
    }
    .footer-brand p {
      color: var(--ivory-dim);
      font-size: 13.5px;
      line-height: 1.7;
      max-width: 320px;
      margin-bottom: 20px;
    }
    .footer-col h5 {
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--gold);
      margin-bottom: 24px;
    }
    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .footer-col a {
      font-size: 13.5px;
      color: var(--ivory-dim);
      transition: var(--transition-premium);
      text-decoration: none;
    }
    .footer-col a:hover {
      color: var(--gold-light);
    }
    .footer-bottom {
      max-width: 1400px;
      margin: 0 auto;
      padding-top: 32px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }
    .footer-bottom p {
      font-size: 12px;
      color: var(--gold-muted);
    }
    .social-links {
      display: flex;
      gap: 16px;
    }
    .social-links a {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid var(--bronze);
      color: var(--ivory-dim);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      transition: var(--transition-premium);
    }
    .social-links a:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--black);
      transform: translateY(-3px);
    }

    /* reveal-title styles */
    .reveal-title .title-line {
      display: block;
      overflow: hidden;
      line-height: 1.25;
      margin-top: 20px;
    }
    .reveal-title .title-line:first-child {
      margin-top: 0;
    }
    .reveal-title .title-line.sub {
      overflow: visible;
    }
    .reveal-title .title-inner {
      display: block;
    }

    /* Nav links open (mobile toggle) */
    .nav-links.open {
      display: flex !important;
      flex-direction: column;
      position: fixed;
      top: 70px; left: 0; right: 0;
      background: rgba(3, 7, 18, 0.98);
      backdrop-filter: blur(20px);
      padding: 20px;
      border-bottom: 1px solid rgba(212, 175, 106, 0.08);
      gap: 4px;
    }
    .nav-links.open li { width: 100%; }
    .nav-links.open a {
      display: block;
      padding: 12px 16px;
      border-radius: 12px;
    }
    .nav-links.open a.nav-cta {
      text-align: center;
      margin-top: 8px;
    }

    /* Theme toggle button */
    .theme-toggle-btn {
      background: none;
      border: 1px solid var(--bronze);
      border-radius: 50%;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--ivory-dim);
      transition: var(--transition-premium);
    }
    .theme-toggle-btn:hover {
      border-color: var(--gold);
      color: var(--gold);
      background: rgba(212, 175, 106, 0.1);
    }
    .theme-toggle-btn i {
      width: 16px;
      height: 16px;
    }

    /* Interactive Hero Search */
    .hero {
      padding: 130px 0 80px;
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 40px;
      align-items: center;
      width: 100%;
      position: relative;
      z-index: 2;
    }
    .hero-content { padding-right: 20px; }
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 18px;
      border-radius: 40px;
      background: rgba(212, 175, 106, 0.1);
      border: 1px solid rgba(212, 175, 106, 0.2);
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
    }
    .reveal-title {
      display: block;
    }
    .title-line {
      display: block;
      overflow: hidden;
    }
    .title-inner {
      display: inline-block;
      font-family: var(--font-display);
      font-size: clamp(34px, 6vw, 64px);
      font-weight: 700;
      color: var(--ivory);
      line-height: 1.1;
    }
    .title-line.sub .title-inner {
      font-family: var(--font-body);
      font-size: clamp(14px, 1.6vw, 18px);
      font-weight: 300;
      color: var(--ivory-dim);
      letter-spacing: 4px;
      text-transform: uppercase;
      margin-top: 12px;
    }
    .hero-subtitle {
      font-size: 15px;
      color: var(--ivory-dim);
      max-width: 500px;
      margin: 20px 0 24px;
      line-height: 1.7;
    }
    .hero-search {
      display: flex;
      gap: 10px;
      background: var(--black-card);
      padding: 6px;
      border-radius: 20px;
      border: 1px solid var(--bronze);
      margin-bottom: 30px;
      max-width: 550px;
    }
    .search-row {
      display: flex;
      gap: 8px;
      flex: 1;
      align-items: center;
    }
    .search-row select {
      flex: 1;
      padding: 12px 14px;
      border: none;
      background: transparent;
      color: var(--ivory);
      font-family: var(--font-body);
      font-size: 13px;
      outline: none;
    }
    .search-row select option {
      background: var(--black-light);
      color: var(--ivory);
    }
    .hero-search-btn,
    .search-submit-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 24px;
      border-radius: 14px;
      border: none;
      background: var(--gold);
      color: var(--black);
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.5px;
      cursor: pointer;
      transition: var(--transition-premium);
      white-space: nowrap;
    }
    .hero-search-btn:hover,
    .search-submit-btn:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
    }
    .hero-stats {
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
    }
    .hero-stat-item .val {
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 700;
      color: var(--gold);
    }
    .hero-stat-item .lbl {
      font-size: 11px;
      color: var(--ivory-dim);
      letter-spacing: 0.5px;
    }

    /* Phase indicator / UI badge */
    .phase-indicator {
      position: fixed;
      bottom: 30px; right: 30px;
      z-index: 9000;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 18px;
      background: var(--black-card);
      backdrop-filter: blur(16px);
      border: 1px solid var(--bronze);
      border-radius: 40px;
      font-family: var(--font-body);
      font-size: 10px;
      color: var(--ivory-dim);
      letter-spacing: 0.5px;
      pointer-events: none;
    }
    .phase-indicator .dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--green);
    }

    /* ==========================================================================
       13. RESPONSIVE MEDIA QUERIES
       ========================================================================== */
    @media (max-width: 1100px) {
      .hero {
        padding: 100px 20px 40px;
      }
      .hero-grid {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 30px;
      }
      .hero-content {
        display: contents;
      }
      .hero-tag {
        order: 1;
      }
      .reveal-title {
        order: 2;
      }
      .hero-subtitle {
        order: 3;
        margin: 20px auto 30px;
      }
      .canvas-globe-container {
        order: 4;
        height: 400px;
      }
      .hero-search {
        order: 5;
        margin: 0 auto 30px;
      }
      .hero-stats {
        order: 6;
        justify-content: center;
      }
      .globe-overlay-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: 12px;
        padding: 10px 20px;
        white-space: nowrap;
      }
      .calc-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 860px) {
      .nav-links { display: none; }
      .phase-indicator { display: none !important; }
      .mobile-toggle { display: flex; }
      .hero-search {
        max-width: 100%;
        width: 100%;
        padding: 16px;
        border-radius: 16px;
        background: var(--black-card);
        border: 1px solid var(--bronze);
      }
      .search-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        width: 100%;
      }
      .search-group {
        text-align: left;
      }
      .search-row select {
        background: var(--black-light);
        border: 1px solid var(--bronze-light);
        border-radius: 8px;
        padding: 12px;
        width: 100%;
        color: var(--ivory);
      }
      .hero-search-btn,
      .search-submit-btn {
        grid-column: span 2;
        width: 100%;
        height: auto;
        padding: 14px;
        justify-content: center;
      }
      .steps-grid { grid-template-columns: 1fr 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      .contact-info { padding-right: 0; margin-bottom: 40px; }
      .pune-map-container { height: 400px; }
    }
    @media (max-width: 580px) {
      .nav-inner { padding: 0 12px; }
      .nav-brand { font-size: 0; gap: 0; }
      .nav-right { gap: 10px; }
      .city-toggle button { padding: 4px 8px; font-size: 9px; }
      .section { padding: 80px 20px; }
      .search-row {
        grid-template-columns: 1fr;
      }
      .hero-search-btn,
      .search-submit-btn {
        grid-column: span 1;
      }
      .steps-grid { grid-template-columns: 1fr; }
      .listings-filter { flex-wrap: wrap; }
      .hero-stats { gap: 24px; flex-wrap: wrap; justify-content: center; }
      .developer-list { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .calc-tabs { flex-direction: column; align-items: center; }
      .calc-tab-btn { width: 100%; text-align: center; }
      .results-overview-grid { grid-template-columns: 1fr; }
      .contact-form { padding: 24px; }
    }

    /* ==========================================================================
        14. COMING SOON SECTION (Featured Developments placeholder)
        ========================================================================== */
    .coming-soon-section {
      grid-column: 1 / -1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 80px 40px;
      text-align: center;
      background: rgba(212, 175, 106, 0.03);
      border: 1px dashed rgba(212, 175, 106, 0.2);
      border-radius: 20px;
    }
    .coming-soon-icon {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: rgba(212, 175, 106, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      color: var(--gold);
      animation: tools-pulse 2s ease-in-out infinite;
    }
    .coming-soon-title {
      font-family: var(--font-display);
      font-size: 32px;
      font-weight: 300;
      color: var(--ivory);
      margin-bottom: 12px;
      letter-spacing: 4px;
      text-transform: uppercase;
    }
    .coming-soon-text {
      font-size: 15px;
      color: var(--ivory-dim);
      max-width: 480px;
      line-height: 1.7;
    }

    /* ==========================================================================
        15. TOOLS MODAL
        ========================================================================== */
    .tools-modal-overlay {
      position: fixed; inset: 0; z-index: 20000;
      background: rgba(3, 7, 18, 0.8);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.5s ease;
    }
    .tools-modal-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }
    .tools-modal {
      background: linear-gradient(145deg, rgba(8, 17, 37, 0.98), rgba(3, 7, 18, 0.98));
      border: 1px solid rgba(212, 175, 106, 0.25);
      border-radius: 24px;
      padding: 60px 48px 48px;
      max-width: 520px;
      width: 90%;
      text-align: center;
      position: relative;
      box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), 0 0 60px rgba(212, 175, 106, 0.05);
      transform: scale(0.9) translateY(20px);
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .tools-modal-overlay.active .tools-modal {
      transform: scale(1) translateY(0);
    }
    .tools-modal-close {
      position: absolute;
      top: 16px; right: 16px;
      width: 36px; height: 36px;
      border-radius: 50%;
      border: 1px solid rgba(212, 175, 106, 0.15);
      background: transparent;
      color: var(--ivory-dim);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: var(--transition-premium);
    }
    .tools-modal-close:hover {
      background: rgba(212, 175, 106, 0.1);
      border-color: var(--gold);
      color: var(--gold);
    }
    .tools-modal-icon {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(212, 175, 106, 0.15), rgba(212, 175, 106, 0.05));
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 28px;
      color: var(--gold);
      animation: tools-pulse 2s ease-in-out infinite;
    }
    @keyframes tools-pulse {
      0%, 100% { transform: scale(1); opacity: 0.8; }
      50% { transform: scale(1.08); opacity: 1; }
    }
    .tools-modal-title {
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 300;
      color: var(--gold-light);
      margin-bottom: 16px;
      min-height: 38px;
    }
    .tools-modal-title::after {
      content: '|';
      animation: tools-blink 0.8s step-end infinite;
      color: var(--gold);
    }
    @keyframes tools-blink {
      50% { opacity: 0; }
    }
    .tools-modal-text {
      font-size: 15px;
      color: var(--ivory-dim);
      line-height: 1.7;
      max-width: 380px;
      margin: 0 auto;
    }
    [data-theme="light"] .tools-modal-overlay {
      background: rgba(250, 248, 243, 0.85);
    }
    [data-theme="light"] .tools-modal {
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(250, 248, 243, 0.98));
      border-color: rgba(196, 155, 62, 0.2);
    }
    [data-theme="light"] .tools-modal-title {
      color: #C49B3E;
    }
    [data-theme="light"] .coming-soon-section {
      background: rgba(196, 155, 62, 0.03);
      border-color: rgba(196, 155, 62, 0.15);
    }
    [data-theme="light"] .coming-soon-title {
      color: #1A1A2E;
    }

    /* ==========================================================================
        16. DATA SOURCE BADGE
        ========================================================================== */
    .data-source-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 12px;
      border-radius: 20px;
      background: rgba(212, 175, 106, 0.08);
      border: 1px solid rgba(212, 175, 106, 0.12);
      font-size: 10px;
      font-weight: 500;
      color: var(--gold);
      letter-spacing: 0.5px;
      margin-bottom: 16px;
    }
    .data-source-badge i {
      width: 12px;
      height: 12px;
    }
    [data-theme="light"] .data-source-badge {
      background: rgba(196, 155, 62, 0.06);
      border-color: rgba(196, 155, 62, 0.12);
    }
    