/* ═══════════════════════════════════════════════════════════════════
   HOME FINDERS — Ultra-Modern Architectural Design System
   Aesthetic: Obsidian Carbon · Frosted Glass HUD · Champagne Gold
   Target: 95–100 PageSpeed · Zero CLS · GPU Accelerated Motion
   ═══════════════════════════════════════════════════════════════════ */

/* ── Webfont Swaps ── */
@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-solid-900.woff2') format('woff2');
}
@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-brands-400.woff2') format('woff2');
}

/* ── Reset & Baseline ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  overflow-x: hidden;
  width: 100%;
  background-color: #05080e;
}

body {
  font-family: var(--ff-body);
  color: var(--text-primary);
  background-color: var(--bg-deep);
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ol, ul { list-style: none; }
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; border: none; outline: none; background: none; }
button { cursor: pointer; }
a { text-decoration: none; color: inherit; transition: all var(--transition-fast); }
table { border-collapse: collapse; border-spacing: 0; width: 100%; }

/* ── Modern Architectural Tokens ── */
:root {
  --bg-deep:          #05080e;
  --bg-surface:       #090e17;
  --bg-card:          rgba(13, 19, 31, 0.72);
  --bg-card-hover:    rgba(18, 26, 42, 0.88);
  --bg-glass:         rgba(255, 255, 255, 0.04);

  --accent-gold:      #c59b27;
  --accent-gold-glow: #f3d078;
  --accent-gold-dark: #8c6a12;
  --accent-emerald:   #10b981;

  --text-primary:     #f8fafc;
  --text-secondary:   #94a3b8;
  --text-muted:       #64748b;

  --border-glass:     rgba(255, 255, 255, 0.09);
  --border-glass-hot: rgba(243, 208, 120, 0.35);

  --gradient-gold:    linear-gradient(135deg, #c59b27 0%, #f3d078 50%, #c59b27 100%);
  --gradient-text:    linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
  --gradient-dark:    linear-gradient(180deg, rgba(5, 8, 14, 0.7) 0%, rgba(9, 14, 23, 0.95) 100%);
  --gradient-hero:    radial-gradient(circle at center, rgba(5, 8, 14, 0.55) 0%, rgba(5, 8, 14, 0.96) 85%);

  --ff-heading:       'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --ff-editorial:     'Playfair Display', Georgia, serif;
  --ff-body:          'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --navbar-height:    84px;
  --container-max:    1260px;
  --radius-sm:        8px;
  --radius-md:        14px;
  --radius-lg:        22px;
  --radius-full:      9999px;

  --transition-fast:  0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-norm:  0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 4vw, 36px);
  padding-right: clamp(16px, 4vw, 36px);
}

.editorial-italic {
  font-family: var(--ff-editorial);
  font-style: italic;
  font-weight: 500;
  color: var(--accent-gold-glow);
  display: inline-block;
  padding: 0 4px;
}

.gold-gradient-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ── Section Containers ── */
.section {
  padding: clamp(70px, 9vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
.section--dark {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto clamp(40px, 6vw, 64px);
}

.hud-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(243, 208, 120, 0.08);
  border: 1px solid var(--border-glass-hot);
  padding: 6px 20px;
  border-radius: var(--radius-full);
  color: var(--accent-gold-glow);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 20px rgba(197, 155, 39, 0.25);
}

.section-title {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.18;
  color: #ffffff;
  letter-spacing: -0.8px;
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Modern Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-norm);
}

.btn-primary {
  background: var(--gradient-gold);
  color: #05080e;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 30px rgba(197, 155, 39, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(197, 155, 39, 0.5);
  color: #000;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(16px);
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover {
  background: #1eb956;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

/* ═══════════════════════════════════════════════════════════════════
   NAVBAR (FROSTED GLASS HUD)
   ═══════════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-height);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 3.5vw, 48px);
  background: rgba(5, 8, 14, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  transition: all var(--transition-fast);
}

.navbar.scrolled {
  background: rgba(5, 8, 14, 0.94);
  border-bottom-color: rgba(243, 208, 120, 0.25);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.navbar__logo {
  height: 48px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.3));
  transition: filter var(--transition-fast);
}
.navbar__logo:hover {
  filter: drop-shadow(0 0 18px rgba(243, 208, 120, 0.55));
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 32px);
}

.navbar__link {
  color: var(--text-primary);
  font-size: 0.92rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
}
.navbar__link:hover,
.navbar__link.active {
  color: var(--accent-gold-glow);
}

.navbar__dropdown { position: relative; }
.navbar__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: var(--text-primary);
  font-size: 0.92rem;
  font-weight: 500;
}
.navbar__dropdown-toggle:hover { color: var(--accent-gold-glow); }
.navbar__dropdown-toggle .chevron {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid var(--accent-gold-glow);
  border-bottom: 1.5px solid var(--accent-gold-glow);
  transform: rotate(45deg);
  transition: transform var(--transition-fast);
  margin-top: -3px;
}
.navbar__dropdown:hover .navbar__dropdown-toggle .chevron { transform: rotate(225deg); margin-top: 3px; }

.navbar__mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(14px);
  min-width: 270px;
  background: rgba(9, 14, 23, 0.96);
  border: 1px solid var(--border-glass-hot);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(28px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--transition-norm);
}
.navbar__dropdown:hover .navbar__mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(8px);
}

.navbar__mega-menu-heading {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}
.navbar__mega-menu-item {
  display: block;
  padding: 8px 12px;
  font-size: 0.9rem;
  color: #e2e8f0;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}
.navbar__mega-menu-item:hover {
  background: rgba(243, 208, 120, 0.12);
  color: var(--accent-gold-glow);
  transform: translateX(4px);
}
.navbar__mega-menu-divider {
  height: 1px;
  background: var(--border-glass);
  margin: 10px 0;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 100001;
}
.navbar__hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--accent-gold-glow);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  background: rgba(5, 8, 14, 0.98) !important;
  backdrop-filter: blur(28px) saturate(1.8) !important;
  z-index: 100000 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 18px !important;
  padding: 80px 24px 40px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: scale(0.95) translateY(-20px) !important;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease !important;
}
.mobile-nav.open, .mobile-nav.is-open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: scale(1) translateY(0) !important;
}
.mobile-nav__link {
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: #f8fafc;
}
.mobile-nav__link:hover { color: var(--accent-gold-glow); }
.mobile-nav__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav__close::before, .mobile-nav__close::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 2px;
  background: #ffffff;
}
.mobile-nav__close::before { transform: rotate(45deg); }
.mobile-nav__close::after { transform: rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════════════
   HERO SECTION (INTERACTIVE CANVAS + PROPERTY SWITCHER HUD)
   ═══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 128px 32px 64px;
  contain: layout;
}

#ambientCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero__video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none !important;
}

.hero__video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.65) contrast(1.2);
  transform: scale(1.02);
  pointer-events: none !important;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
  z-index: 1;
  pointer-events: none !important;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
}

.hero__heading {
  font-family: var(--ff-heading);
  font-size: clamp(2.3rem, 5.5vw, 4.4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.12;
  margin-bottom: 22px;
  letter-spacing: -0.8px;
}

.hero__subheading {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: rgba(248, 250, 252, 0.88);
  max-width: 800px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

/* Hero Quick-Switch Property HUD */
.hero-property-hud {
  max-width: 780px;
  margin: 0 auto;
  background: rgba(14, 20, 32, 0.75);
  border: 1px solid var(--border-glass-hot);
  border-radius: var(--radius-lg);
  padding: 8px 12px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

.hud-tab-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-glass);
}

.hud-tab {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  transition: all var(--transition-fast);
  cursor: pointer;
}
.hud-tab:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}
.hud-tab.active {
  background: var(--gradient-gold);
  color: #05080e;
  box-shadow: 0 4px 15px rgba(197, 155, 39, 0.4);
}

.hud-panel {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 6px;
  text-align: left;
}
.hud-panel.active {
  display: flex;
}

.hud-panel__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hud-panel__tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-gold-glow);
}
.hud-panel__title {
  font-family: var(--ff-heading);
  font-size: 1.18rem;
  font-weight: 700;
  color: #ffffff;
}
.hud-panel__pricing {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════════════════
   TRUST STRIP MARQUEE
   ═══════════════════════════════════════════════════════════════════ */
.trust-strip {
  background: #070b12;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-secondary);
  text-transform: uppercase;
  padding: 0 24px;
}
.marquee-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-gold-glow);
  border-radius: 50%;
  display: inline-block;
}

/* ═══════════════════════════════════════════════════════════════════
   AUTHORIZATION SHOWCASE / VAULT (3D TILT)
   ═══════════════════════════════════════════════════════════════════ */
.auth-showcase {
  padding: clamp(70px, 8vw, 110px) 0;
  background: linear-gradient(180deg, #090e17 0%, #05080e 100%);
  border-bottom: 1px solid var(--border-glass);
}
.auth-showcase__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.auth-badge-stamp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-gold-glow);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.auth-showcase__title {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.auth-showcase__desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}
.auth-showcase__points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.auth-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.98rem;
  color: #e2e8f0;
}
.auth-point i {
  color: var(--accent-gold-glow);
  font-size: 1.15rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.auth-showcase__frame {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 12px;
  background: linear-gradient(135deg, rgba(243, 208, 120, 0.25) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid var(--border-glass-hot);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.75);
}
.auth-showcase__cert-img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* ═══════════════════════════════════════════════════════════════════
   STATS STRIP (INTERACTIVE COUNTERS)
   ═══════════════════════════════════════════════════════════════════ */
.stats-strip {
  background: rgba(13, 19, 31, 0.6);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-item__number {
  font-family: var(--ff-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--accent-gold-glow);
  letter-spacing: -1px;
}
.stat-item__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════════════════════════
   SPOTLIGHT CARDS & BENTO GRID
   ═══════════════════════════════════════════════════════════════════ */
.spotlight-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
  overflow: hidden;
  transition: all var(--transition-norm);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(16px);
}

.spotlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(243, 208, 120, 0.14),
    transparent 40%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.spotlight-card:hover::before { opacity: 1; }

.spotlight-card:hover {
  transform: translateY(-6px);
  border-color: rgba(243, 208, 120, 0.4);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.project-thumb {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #090e17;
}
.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.spotlight-card:hover .project-thumb img {
  transform: scale(1.08);
}

.status-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  z-index: 2;
}
.status-pill--green { background: rgba(16, 185, 129, 0.9); color: #ffffff; }
.status-pill--gold { background: var(--gradient-gold); color: #05080e; }
.status-pill--amber { background: rgba(245, 158, 11, 0.9); color: #ffffff; }

.project-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.project-tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-gold-glow);
  margin-bottom: 6px;
}
.project-title {
  font-family: var(--ff-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.project-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.meta-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.project-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--border-glass);
}
.project-action-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-gold-glow);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}
.project-action-link:hover { gap: 10px; }

/* ═══════════════════════════════════════════════════════════════════
   WHY US FEATURE GRID
   ═══════════════════════════════════════════════════════════════════ */
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-us-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all var(--transition-norm);
}
.why-us-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glass-hot);
  background: var(--bg-card-hover);
}
.why-us-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(243, 208, 120, 0.1);
  border: 1px solid var(--border-glass-hot);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold-glow);
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.why-us-card__title {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}
.why-us-card__desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════
   4-STEP INVESTMENT ROADMAP
   ═══════════════════════════════════════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
}
.process-step__number {
  font-family: var(--ff-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-gold-glow);
  opacity: 0.6;
  margin-bottom: 12px;
}
.process-step__title {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}
.process-step__desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════
   INVESTMENT TERMINAL (FINANCIAL ENGINE)
   ═══════════════════════════════════════════════════════════════════ */
.terminal-card {
  background: rgba(13, 19, 31, 0.85);
  border: 1px solid var(--border-glass-hot);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  backdrop-filter: blur(24px);
}

.terminal-inputs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.term-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.term-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #f8fafc;
  display: flex;
  justify-content: space-between;
}
.term-label .val-tag {
  color: var(--accent-gold-glow);
  font-weight: 700;
}

.term-range {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  accent-color: var(--accent-gold-glow);
  cursor: pointer;
}

.term-select, .term-input {
  width: 100%;
  padding: 13px 18px;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  transition: all var(--transition-fast);
}
.term-select:focus, .term-input:focus {
  border-color: var(--accent-gold-glow);
  background: rgba(255, 255, 255, 0.08);
}
.term-select option {
  background: #090e17;
  color: #ffffff;
}

.terminal-hud {
  background: rgba(5, 8, 14, 0.85);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hud-metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-glass);
}
.hud-metric-row:last-of-type { border-bottom: none; }
.hud-metric-label { font-size: 0.9rem; color: var(--text-secondary); }
.hud-metric-val {
  font-family: var(--ff-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
}
.hud-metric-val--big {
  font-size: 1.8rem;
  color: var(--accent-gold-glow);
}

/* ═══════════════════════════════════════════════════════════════════
   TESTIMONIALS GRID
   ═══════════════════════════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(16px);
}
.testimonial-card__quote {
  font-size: 1rem;
  line-height: 1.7;
  color: #e2e8f0;
  margin-bottom: 24px;
  position: relative;
}
.testimonial-card__quote::before {
  content: '“';
  font-family: var(--ff-editorial);
  font-size: 3rem;
  color: var(--accent-gold-glow);
  line-height: 0;
  position: absolute;
  top: -10px;
  left: -14px;
  opacity: 0.3;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border-glass);
  padding-top: 16px;
}
.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: #05080e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}
.author-name {
  font-weight: 700;
  color: #ffffff;
  font-size: 0.95rem;
}
.author-role {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════════════════════ */
.faq-grid {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}
.faq-item.active {
  border-color: var(--border-glass-hot);
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-question:hover { color: var(--accent-gold-glow); }
.faq-icon {
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--accent-gold-glow);
  border-bottom: 2px solid var(--accent-gold-glow);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-right: 6px;
}
.faq-item.active .faq-icon {
  transform: rotate(-135deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-item.active .faq-answer {
  max-height: 350px;
  padding: 0 24px 22px;
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */
.footer {
  background: #030508;
  color: var(--text-secondary);
  padding: 80px 0 32px;
  border-top: 1px solid var(--border-glass);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer__logo {
  height: 52px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}
.footer__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-right: 8px;
  transition: all var(--transition-fast);
}
.footer__social-link:hover {
  background: var(--gradient-gold);
  color: #05080e;
  transform: translateY(-2px);
}
.footer__col-title {
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}
.footer__col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 26px;
  height: 2px;
  background: var(--accent-gold);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__link {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.footer__link:hover {
  color: var(--accent-gold-glow);
  transform: translateX(4px);
}
.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.footer__contact-item i {
  color: var(--accent-gold-glow);
  margin-top: 4px;
}
.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}
.footer__legal-links {
  display: flex;
  gap: 20px;
}
.footer__legal-links a:hover { color: var(--accent-gold-glow); }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE OVERRIDES
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us__grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .auth-showcase__grid { grid-template-columns: 1fr; }
  .terminal-card { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar__links, .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }

  .hero {
    padding: 130px 20px 70px !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
  }
  .hero__content { margin: 0 auto !important; width: 100% !important; }
  .hero__heading { font-size: clamp(1.85rem, 6.5vw, 2.6rem) !important; line-height: 1.2 !important; }
  .hero__ctas { flex-direction: column !important; width: 100% !important; max-width: 320px !important; margin: 0 auto 36px !important; }
  .hero__ctas .btn { width: 100% !important; }

  .bento-grid { grid-template-columns: 1fr; }
  .why-us__grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hud-panel { flex-direction: column; gap: 14px; text-align: center; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════════════
   SUBPAGES, PROJECT DETAILS & EDITORIAL SUITE
   ═══════════════════════════════════════════════════════════════════ */

/* Page Hero */
.page-hero {
  position: relative;
  padding: clamp(140px, 14vw, 180px) 0 clamp(40px, 6vw, 64px);
  background: linear-gradient(180deg, #090e17 0%, #05080e 100%);
  border-bottom: 1px solid var(--border-glass);
  text-align: center;
}
.page-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(243, 208, 120, 0.08);
  border: 1px solid var(--border-glass-hot);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  color: var(--accent-gold-glow);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.page-hero__title {
  font-family: var(--ff-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.18;
  margin-bottom: 16px;
  letter-spacing: -0.6px;
}
.page-hero__sub {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 780px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

/* Breadcrumb */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--accent-gold-glow); }
.breadcrumb span { color: var(--accent-gold-glow); }

/* Project Detail Layout */
.detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}
.detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  backdrop-filter: blur(16px);
  margin-bottom: 32px;
}
.detail-card__title {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-glass);
}

/* Specs Grid */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}
.spec-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 16px;
}
.spec-box__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.spec-box__val {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
}

/* Payment Plan Table */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
}
.plan-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.plan-table th {
  background: rgba(243, 208, 120, 0.1);
  color: var(--accent-gold-glow);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 1px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-glass);
}
.plan-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-glass);
  font-size: 0.92rem;
  color: #e2e8f0;
}
.plan-table tr:nth-child(even) { background: rgba(255, 255, 255, 0.02); }
.plan-table tr:hover { background: rgba(243, 208, 120, 0.04); }

/* Sidebar Cards */
.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(16px);
  margin-bottom: 28px;
}
.sidebar-card--highlight {
  border-color: var(--border-glass-hot);
  background: linear-gradient(180deg, rgba(243, 208, 120, 0.08) 0%, rgba(13, 19, 31, 0.9) 100%);
}
.sidebar-card__title {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px);
  backdrop-filter: blur(16px);
}

/* Legal Content */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  color: var(--text-secondary);
  line-height: 1.8;
}
.legal-content h2, .legal-content h3 {
  font-family: var(--ff-heading);
  color: #ffffff;
  margin: 32px 0 14px;
}
.legal-content p, .legal-content ul {
  margin-bottom: 18px;
}
.legal-content li {
  margin-left: 20px;
  list-style: disc;
  margin-bottom: 8px;
}

@media (max-width: 1024px) {
  .detail-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
