*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #C9A96E;
  --gold-light:  #E2C99A;
  --gold-dark:   #9A7A48;
  --gold-border: rgba(201,169,110,0.22);
  --subtle-border: rgba(255,255,255,0.06);
  --bg:          #0A0A0A;
  --bg-dark:     #111111;
  --bg-dark2:    #161616;
  --bg-dark3:    #1C1C1C;
  --white:       #FFFFFF;
  --white-70:    rgba(255,255,255,0.7);
  --white-50:    rgba(255,255,255,0.5);
  --white-35:    rgba(255,255,255,0.35);
  --white-20:    rgba(255,255,255,0.2);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui:      'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-ui);
  font-weight: 300;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── UTILITIES ─── */
.section-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-ui);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease;
}
.btn-primary:hover { background: var(--gold-light); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white-70);
  font-family: var(--font-ui);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 0;
  border: none;
  border-bottom: 0.5px solid rgba(255,255,255,0.25);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

em.gold { font-style: italic; color: var(--gold-light); }

/* ─── NAVIGATION ─── */
nav {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 82%;
  height: 62px;
  background: rgba(8,8,8,0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 0.5px solid var(--gold-border);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  z-index: 1000;
}

.nav-logo img {
  height: 22px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-ui);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white-70);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--gold); }

.nav-links .nav-cta {
  color: var(--gold);
  border-bottom: 0.5px solid var(--gold-border);
  padding-bottom: 2px;
}
.nav-links .nav-cta:hover { color: var(--gold-light); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white-70);
  transition: 0.3s;
}

/* ─── MOBILE NAV OVERLAY ─── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-70);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute;
  top: 32px;
  right: 32px;
  font-size: 24px;
  color: var(--white-50);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.80) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.25) 100%
  ),
  linear-gradient(to top, rgba(0,0,0,0.70) 0%, transparent 50%);
}

/* Fallback gradient shown while video loads */
.hero-slide:nth-child(1) { background: linear-gradient(135deg, #0d0d0d 0%, #191208 100%); }
.hero-slide:nth-child(2) { background: linear-gradient(135deg, #0a0e12 0%, #0d1117 100%); }
.hero-slide:nth-child(3) { background: linear-gradient(135deg, #0d0d0d 0%, #111111 100%); }

/* Video inside slides */
.hero-slide video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 10% 96px;
  max-width: 780px;
}

.hero-tag { margin-bottom: 28px; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(50px, 6.5vw, 88px);
  font-weight: 300;
  line-height: 1.03;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 28px;
}

/* ── Hero text reveal ── */
.hero-line {
  display: block;
  overflow: hidden;
}
.hero-line-inner {
  display: block;
  transform: translateY(110%);
  opacity: 0;
}
.hero-line-inner.revealed {
  animation: lineReveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-line-inner.revealed:nth-child(2) { animation-delay: 0.1s; }
@keyframes lineReveal {
  to { transform: translateY(0); opacity: 1; }
}

.hero-sub {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--white-50);
  max-width: 460px;
  margin-bottom: 40px;
}

.hero-dynamic {
  transition: opacity 0.6s ease;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

/* Hero slide indicators */
.hero-indicators {
  position: absolute;
  bottom: 96px;
  right: 10%;
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-indicator {
  width: 24px;
  height: 1px;
  background: var(--white-20);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}
.hero-indicator.active {
  background: var(--gold);
  width: 40px;
}

/* Hero scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  opacity: 0.5;
}
.hero-scroll span {
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-50);
  font-family: var(--font-ui);
  font-weight: 500;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: rgba(17,17,17,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 0.5px solid var(--gold-border);
  border-bottom: 0.5px solid var(--gold-border);
  padding: 48px 10%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,169,110,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.stat-item {
  padding: 0 32px;
  border-right: 0.5px solid var(--subtle-border);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; padding-right: 0; }
.stat-icon { opacity: 0.7; margin-bottom: 4px; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white-35);
}

/* ─── SECTION BASE ─── */
section {
  padding: 96px 10%;
}
.section-divider {
  height: 0.5px;
  background: var(--gold-border);
  margin: 0 10%;
}

/* ─── WHY FORE ─── */
.why-fore {
  background: var(--bg);
}
.why-fore-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}
.why-fore-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.why-fore-body {
  font-size: 12px;
  color: var(--white-50);
  line-height: 1.8;
  max-width: 420px;
  align-self: end;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--subtle-border);
  border: 0.5px solid var(--subtle-border);
}
.pillar {
  background: var(--bg-dark2);
  padding: 40px 36px;
  border-left: 2px solid transparent;
  transition: background 0.3s ease, border-color 0.35s ease;
}
.pillar:hover { background: var(--bg-dark3); border-left-color: var(--gold); }

.pillar-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: rgba(201,169,110,0.15);
  line-height: 1;
  margin-bottom: 16px;
}
.pillar-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.pillar:hover .pillar-icon { opacity: 1; }
.pillar-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.pillar-text {
  font-size: 12px;
  color: var(--white-50);
  line-height: 1.8;
}

/* ─── FEATURED PROPERTIES ─── */
.properties {
  background: var(--bg-dark);
}
.properties-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}
.properties-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

/* ─── PROPERTY FILTER TABS ─── */
.prop-tabs {
  display: flex;
  align-items: flex-end;
  border-bottom: 0.5px solid var(--subtle-border);
  margin-bottom: 40px;
  gap: 0;
}
.prop-tab {
  font-family: var(--font-ui);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white-35);
  padding: 0 0 12px 0;
  margin-right: 32px;
  cursor: pointer;
  border-bottom: 1.5px solid transparent;
  margin-bottom: -0.5px;
  transition: color 0.2s ease, border-color 0.2s ease;
  user-select: none;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.prop-tab:hover { color: var(--white-70); }
.prop-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ─── SKELETON LOADING ─── */
.property-card.skeleton {
  pointer-events: none;
  cursor: default;
  transform: none !important;
}
.skeleton-img {
  width: 100%;
  aspect-ratio: 4/3;
}
.skeleton-block {
  border-radius: 2px;
}
.skeleton-img,
.skeleton-block {
  background: linear-gradient(
    90deg,
    var(--bg-dark2) 25%,
    var(--bg-dark3) 50%,
    var(--bg-dark2) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.6s ease infinite;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.skeleton-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; }

/* ─── PROPERTY VIEW ALL ─── */
.property-view-all {
  text-align: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 0.5px solid var(--subtle-border);
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.property-card {
  background: var(--bg-dark3);
  border: 0.5px solid var(--subtle-border);
  border-radius: 3px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}
.property-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201,169,110,0.3);
}

.property-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  background: var(--bg-dark2);
  position: relative;
  overflow: hidden;
}
.property-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg-dark2) 0%, var(--bg-dark3) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.property-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}
.property-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--bg);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 1px;
}
.property-badge.off-plan { background: rgba(201,169,110,0.15); color: var(--gold); border: 0.5px solid var(--gold-border); }

.property-info { padding: 24px; }
.property-location {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.property-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}
.property-desc {
  font-size: 11.5px;
  color: var(--white-35);
  line-height: 1.7;
  margin-bottom: 20px;
}
.property-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 0.5px solid var(--subtle-border);
}
.property-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--gold);
}
.property-price-label {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-35);
}
.property-yield {
  text-align: right;
}
.property-yield-value {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white-70);
}
.property-yield-label {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-35);
}

/* ─── GOLDEN VISA ─── */
/* ─── GOLDEN VISA — card slide reveal ─── */
.golden-visa {
  background: var(--bg);
  padding: 0;
  position: relative;
  height: 600px;
  overflow: hidden;
}

/* ── Card wrapper (credit card proportions, centered by default) ── */
.gv-card-wrap {
  position: absolute;
  width: 420px;
  height: 265px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 4px 8px rgba(0,0,0,0.32),
    0 16px 40px rgba(0,0,0,0.52),
    0 40px 80px rgba(0,0,0,0.28),
    0 0 0 0.5px rgba(201,169,110,0.3),
    inset 0 1px 0 rgba(255,255,255,0.2);
  transition:
    left 0.9s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}
.golden-visa:hover .gv-card-wrap {
  left: 6%;
  transform: translate(0, -50%);
}

/* Card background layers */
.gv-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #D4B07A 0%,
    #C9A96E 15%,
    #9A7A48 38%,
    #7A5F36 52%,
    #9A7A48 66%,
    #C9A96E 82%,
    #E2C99A 100%
  );
}
.gv-card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(255,255,255,0.22) 0%,
    rgba(255,255,255,0.05) 28%,
    transparent 50%,
    rgba(255,255,255,0.03) 72%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}
.gv-card-texture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: 1;
  pointer-events: none;
}
.gv-card-sheen {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255,255,255,0.22) 42%,
    rgba(255,255,255,0.07) 56%,
    transparent 78%
  );
  transform: translateX(-200%);
  animation: gvSheen 2.4s cubic-bezier(0.4, 0, 0.2, 1) 0.7s 1 forwards;
  z-index: 3;
  pointer-events: none;
}
@keyframes gvSheen {
  0%   { transform: translateX(-200%); }
  100% { transform: translateX(500%); }
}
.gv-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 35%,
    rgba(255,255,255,0.07) 0%,
    transparent 65%
  );
  z-index: 2;
  pointer-events: none;
}

/* Card inner layout */
.gv-card-inner {
  position: relative;
  z-index: 4;
  width: 100%;
  height: 100%;
  padding: 20px 26px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}
.gv-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.gv-card-country {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.gv-uae-flag {
  display: flex;
  gap: 2px;
}
.gv-uae-flag span {
  display: block;
  width: 3px;
  height: 16px;
  border-radius: 1.5px;
}
.gv-card-eagle-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.gv-card-eagle-wrap svg {
  width: 82px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
}
.gv-card-bottom {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.gv-card-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 7px;
  color: rgba(255,255,255,0.96);
  text-shadow: 0 1px 8px rgba(0,0,0,0.28);
  line-height: 1;
}
.gv-card-sub {
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.52);
}
.gv-hint {
  position: absolute;
  bottom: 14px;
  right: 20px;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  z-index: 5;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.golden-visa:hover .gv-hint {
  opacity: 0;
}

/* ── Right content panel ── */
.gv-content-panel {
  position: absolute;
  left: calc(6% + 420px + 64px);
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.5s ease 0.45s;
  pointer-events: none;
}
.golden-visa:hover .gv-content-panel {
  opacity: 1;
  pointer-events: auto;
}
.gv-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.gv-body {
  font-size: 12px;
  color: var(--white-50);
  line-height: 1.8;
  margin-bottom: 40px;
}
.gv-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}
.gv-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 12px;
  color: var(--white-70);
  line-height: 1.6;
}
.gv-benefits li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ─── ACADEMY ─── */
.academy {
  background: var(--bg-dark);
  text-align: center;
}
.academy-header {
  max-width: 620px;
  margin: 0 auto 64px;
}
.academy-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.academy-sub {
  font-size: 12px;
  color: var(--white-50);
  line-height: 1.8;
}

.academy-modules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--subtle-border);
  border: 0.5px solid var(--subtle-border);
  margin-bottom: 56px;
}
.academy-module {
  background: var(--bg-dark2);
  padding: 36px 28px;
  text-align: left;
  border-left: 2px solid transparent;
  transition: background 0.3s, border-color 0.35s ease;
}
.academy-module:hover { background: var(--bg-dark3); border-left-color: var(--gold); }
.module-day {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.module-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}
.module-text {
  font-size: 11.5px;
  color: var(--white-35);
  line-height: 1.7;
}

.academy-cta-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.academy-cta-note {
  font-size: 11px;
  color: var(--white-35);
  letter-spacing: 0.5px;
}

/* ─── TEAM ─── */
.team {
  background: var(--bg);
}
.team-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.team-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

/* ─── TEAM FLIP GRID ─── */
.team-flip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.team-flip-card {
  grid-column: span 2;
  perspective: 1100px;
  height: 380px;
  cursor: pointer;
  outline: none;
  position: relative;
  z-index: 1;
}
.team-flip-card:hover,
.team-flip-card.flipped {
  z-index: 2;
}
/* Center the last 2 cards in the second row (3+2 layout) */
.team-flip-card:nth-child(4) {
  grid-column: 2 / span 2;
}
.team-flip-card:nth-child(5) {
  grid-column: 4 / span 2;
}

/* ── Flip mechanism ── */
.team-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 1s ease;
}
.team-flip-card:hover .team-flip-inner,
.team-flip-card.flipped .team-flip-inner {
  transform: rotateY(180deg);
}
.team-flip-front,
.team-flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 3px;
  overflow: hidden;
}

/* ── Front face ── */
.team-flip-front {
  background: var(--bg-dark2);
  border: 0.5px solid var(--subtle-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 28px 24px;
  transition: border-color 0.3s ease;
}
.team-flip-card:hover .team-flip-front,
.team-flip-card:focus-visible .team-flip-front {
  border-color: rgba(201,169,110,0.35);
}

/* Photo wrapper */
.team-photo-wrap {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid rgba(201,169,110,0.28);
  flex-shrink: 0;
  position: relative;
}
.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
/* Monogram fallback — hidden by default, shown via onerror */
.team-monogram {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark3);
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
  color: var(--gold);
}

.team-flip-front-info {
  text-align: center;
}
.team-flip-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}
.team-flip-role {
  font-family: var(--font-ui);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.team-flip-hint {
  margin-top: auto;
  padding-top: 20px;
  font-family: var(--font-ui);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white-35);
  display: flex;
  align-items: center;
  gap: 8px;
}
.team-flip-hint span {
  color: rgba(201,169,110,0.4);
}

/* ── Back face ── */
.team-flip-back {
  transform: rotateY(180deg);
  background: linear-gradient(150deg, #1c1608 0%, #191408 45%, #120f06 100%);
  border: 0.5px solid rgba(201,169,110,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 32px;
}
.team-flip-back::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(201,169,110,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.team-flip-back-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  position: relative;
}
.team-flip-back .team-flip-name {
  font-size: 20px;
  margin-bottom: 2px;
}
.team-flip-back .team-flip-role {
  margin-bottom: 4px;
}
.team-flip-bio {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
  padding-bottom: 12px;
  border-bottom: 0.5px solid rgba(201,169,110,0.18);
}
.team-flip-languages {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}
.team-flip-languages .team-lang-label {
  font-family: var(--font-ui);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-35);
}
.team-flip-languages .team-lang-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.team-flip-languages .team-lang-tag {
  font-family: var(--font-ui);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--gold);
  background: rgba(201,169,110,0.1);
  border: 0.5px solid rgba(201,169,110,0.3);
  border-radius: 2px;
  padding: 3px 9px;
}

/* ── Team email CTA ── */
.team-flip-email {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  padding: 11px 14px;
  border: 0.5px solid rgba(201,169,110,0.3);
  border-radius: 2px;
  font-family: var(--font-ui);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(201,169,110,0.8);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.team-flip-email::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201,169,110,0.1);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.team-flip-email:hover {
  border-color: rgba(201,169,110,0.65);
  color: var(--gold-light);
}
.team-flip-email:hover::before {
  transform: scaleX(1);
}
.team-flip-email-arrow {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-style: normal;
}
.team-flip-email:hover .team-flip-email-arrow {
  transform: translateX(4px);
}

/* ─── BLOG ─── */
.blog {
  background: var(--bg-dark);
}
.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.blog-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.blog-featured {
  grid-row: span 2;
}
.blog-card {
  background: var(--bg-dark3);
  border: 0.5px solid var(--subtle-border);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}
.blog-card:hover {
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-4px);
}
.blog-img {
  width: 100%;
  background: var(--bg-dark2);
  position: relative;
  overflow: hidden;
}
.blog-featured .blog-img { aspect-ratio: 3/2; }
.blog-card:not(.blog-featured) .blog-img { aspect-ratio: 16/7; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.55; }
.blog-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
}
.blog-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(10,10,10,0.75);
  border: 0.5px solid var(--gold-border);
  padding: 4px 10px;
  border-radius: 1px;
  z-index: 1;
}
.blog-info {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-date {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-35);
  margin-bottom: 10px;
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 12px;
}
.blog-featured .blog-card-title {
  font-size: 26px;
}
.blog-excerpt {
  font-size: 12px;
  color: var(--white-50);
  line-height: 1.8;
  flex: 1;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.2s ease;
}
.blog-read-more:hover { gap: 10px; }

/* ─── DEVELOPER PARTNERS TICKER ─── */
@keyframes ticker-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes ticker-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.dev-ticker-section {
  background: #0D0D0D;
  border-top: 1px solid rgba(201,169,110,0.15);
  border-bottom: 1px solid rgba(201,169,110,0.15);
  padding: 52px 0 56px;
  overflow: hidden;
}
.dev-ticker-label {
  font-family: 'Montserrat', var(--font-body), sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(201,169,110,0.45);
  text-align: center;
  margin: 0 0 40px;
}
.dev-ticker-viewport {
  display: flex;
  flex-direction: column;
  gap: 28px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.dev-ticker-track {
  overflow: hidden;
  cursor: default;
}
.dev-ticker-inner {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 64px;
  padding: 4px 0;
}
.dev-ticker-track--left .dev-ticker-inner {
  animation: ticker-left 40s linear infinite;
}
.dev-ticker-track--right .dev-ticker-inner {
  animation: ticker-right 44s linear infinite;
}
.dev-ticker-track:hover .dev-ticker-inner {
  animation-play-state: paused;
}
.dev-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dev-logo-item img {
  max-height: 36px;
  max-width: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: filter 0.35s cubic-bezier(0.25,0.46,0.45,0.94),
              opacity 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  display: block;
}
.dev-logo-item:hover img {
  filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(5deg);
  opacity: 1;
}
.dev-logo-fallback {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.wa-tooltip {
  font-family: var(--font-ui);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--white-70);
  background: rgba(10,10,10,0.88);
  border: 0.5px solid var(--subtle-border);
  padding: 6px 12px;
  border-radius: 2px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}
.wa-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  animation: waPulse 2.5s ease infinite;
  transition: transform 0.2s ease;
}
.wa-btn:hover {
  transform: scale(1.08);
  animation: none;
}
.wa-btn svg { display: block; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.6); }
}

/* ─── STAGGERED PROPERTY CARDS ─── */
.property-card {
  opacity: 0;
  transform: translateY(20px);
}
.property-card.card-visible {
  animation: cardReveal 0.6s ease forwards;
  animation-delay: var(--card-delay, 0s);
}
@keyframes cardReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── API PROPERTY CARD (prop-card) ─── */
.prop-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--bg-dark3);
  border: 0.5px solid var(--subtle-border);
  border-radius: 3px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: border-color 0.3s ease;
}
.prop-card.card-visible {
  animation: cardReveal 0.6s ease forwards;
  animation-delay: var(--card-delay, 0s);
}
.prop-card:hover {
  border-color: rgba(201,169,110,0.3);
}
.prop-card:hover .prop-card-img img {
  transform: scale(1.04);
}
.prop-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg-dark2) 0%, var(--bg-dark3) 100%);
  position: relative;
  overflow: hidden;
}
.prop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.prop-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(201,169,110,0.15);
  color: var(--gold);
  border: 0.5px solid var(--gold-border);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 1px;
}
.prop-card-body { padding: 22px 24px 24px; }
.prop-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.2;
}
.prop-developer {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-50);
  margin-bottom: 10px;
}
.prop-location {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.prop-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white-35);
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 0.5px solid var(--subtle-border);
}
.prop-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--gold);
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  background: var(--bg-dark);
  text-align: center;
}
.testimonials-header {
  max-width: 560px;
  margin: 0 auto 56px;
}
.testimonials-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testimonial-card {
  background: var(--bg-dark2);
  border: 0.5px solid var(--subtle-border);
  border-radius: 3px;
  padding: 36px 32px;
  text-align: left;
  transition: border-color 0.3s;
}
.testimonial-card:hover { border-color: var(--gold-border); }
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.star {
  width: 10px;
  height: 10px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: var(--white-70);
  line-height: 1.65;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 0.5px solid var(--subtle-border);
}
.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-dark3);
  border: 0.5px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gold);
  flex-shrink: 0;
}
.author-name {
  font-size: 11px;
  font-weight: 500;
  color: var(--white-70);
  letter-spacing: 0.5px;
}
.author-location {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white-35);
  margin-top: 2px;
}

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--bg-dark2);
  border-top: 0.5px solid var(--gold-border);
  border-bottom: 0.5px solid var(--gold-border);
  padding: 80px 10%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 620px;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
  flex-shrink: 0;
}
.cta-note {
  font-size: 10px;
  color: var(--white-35);
  letter-spacing: 0.5px;
}

/* ─── CONTACT ─── */
.contact {
  background: var(--bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
}
.contact-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.contact-sub {
  font-size: 12px;
  color: var(--white-50);
  line-height: 1.8;
  margin-bottom: 40px;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-item-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white-35);
  margin-bottom: 4px;
}
.contact-item-value {
  font-size: 13px;
  color: var(--white-70);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-35);
}
.form-input, .form-select, .form-textarea {
  background: var(--bg-dark2);
  border: 0.5px solid var(--subtle-border);
  border-radius: 2px;
  padding: 12px 16px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 300;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--white-35); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold-border);
}
.form-select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.3)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.form-select option { background: var(--bg-dark2); }
.form-textarea { resize: vertical; min-height: 100px; }

/* ─── FOOTER ─── */
footer {
  background: var(--bg-dark);
  border-top: 0.5px solid var(--gold-border);
  padding: 64px 10% 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-logo-img {
  height: 28px;
  width: auto;
  margin-bottom: 20px;
  display: block;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  color: var(--white-50);
  margin-bottom: 16px;
  line-height: 1.6;
}
.footer-blurb {
  font-size: 11.5px;
  color: var(--white-35);
  line-height: 1.8;
  max-width: 280px;
}
.footer-col-title {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links li {
  font-size: 11.5px;
  color: var(--white-35);
  line-height: 1.6;
}
.footer-links a {
  font-size: 11.5px;
  color: var(--white-35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white-70); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 0.5px solid var(--subtle-border);
}
.footer-copy {
  font-size: 10px;
  color: var(--white-35);
  letter-spacing: 0.5px;
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 10px;
  color: var(--white-35);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--white-50); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat-item { border-right: none; padding: 0; border-bottom: 0.5px solid var(--subtle-border); padding-bottom: 24px; }
  .stat-item:nth-child(even) { border-bottom: none; }
  .stat-item:last-child { border-bottom: none; }
  .why-fore-header { grid-template-columns: 1fr; gap: 24px; }
  .pillars { grid-template-columns: 1fr; }
  .property-grid { grid-template-columns: repeat(2, 1fr); }
  .golden-visa { height: auto; min-height: 540px; }
  .gv-card-wrap { width: 340px; height: 214px; }
  .gv-card-title { font-size: 20px; letter-spacing: 5px; }
  .golden-visa:hover .gv-card-wrap { left: 4%; transform: translate(0,-50%); }
  .gv-content-panel { left: calc(4% + 340px + 32px); right: 4%; }
  .gv-title { font-size: 28px; }
  .gv-benefits { gap: 10px; margin-bottom: 28px; }
  .gv-body { margin-bottom: 24px; }
  /* Team flip grid: 2-2-1 on tablet */
  .team-flip-grid { grid-template-columns: repeat(4, 1fr); }
  .team-flip-card { grid-column: span 2; }
  .team-flip-card:nth-child(4) { grid-column: span 2; }
  .team-flip-card:nth-child(5) { grid-column: 2 / span 2; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-featured { grid-row: auto; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .dev-ticker-label { letter-spacing: 3.5px; }
  .cta-band { grid-template-columns: 1fr; gap: 32px; }
  .cta-actions { align-items: flex-start; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  section { padding: 64px 6%; }
  .section-divider { margin: 0 6%; }
  nav { width: 90%; padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { padding: 0 6% 80px; }
  .hero-indicators { right: 6%; }
  .stats-bar { padding: 48px 6%; grid-template-columns: repeat(2, 1fr); }
  .property-grid { grid-template-columns: 1fr; }
  .academy-modules { grid-template-columns: 1fr; }
  /* Team flip grid: 1 column on mobile */
  .team-flip-grid { grid-template-columns: 1fr; }
  .team-flip-card,
  .team-flip-card:nth-child(4),
  .team-flip-card:nth-child(5) { grid-column: span 1; }
  .team-flip-card { height: 380px; }
  .blog-grid { grid-template-columns: 1fr; }
  .dev-ticker-row2 { display: none; }
  .dev-ticker-inner { gap: 48px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-title { letter-spacing: -0.01em; }
  .wa-float { bottom: 20px; right: 20px; }
}

/* ─── FADE-IN ANIMATION ─── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── ROI CALCULATOR ─── */
.roi-calc { text-align: center; }
.roi-calc-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 16px;
}
.roi-calc-sub {
  font-size: 12px;
  color: var(--white-50);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto 48px;
}
.roi-calc-card {
  max-width: 820px;
  margin: 0 auto;
  background: var(--bg-dark3);
  border: 0.5px solid var(--gold-border);
  border-radius: 3px;
  padding: 48px;
  text-align: left;
  position: relative;
}
.roi-calc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 3px;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,169,110,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.roi-calc-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.roi-field { display: flex; flex-direction: column; gap: 8px; }
.roi-range-wrap { display: flex; align-items: center; gap: 14px; }
.roi-range {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 3px;
  background: var(--subtle-border);
  border-radius: 2px;
  outline: none;
}
.roi-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 0 12px rgba(201,169,110,0.35);
}
.roi-range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(201,169,110,0.35);
}
.roi-range-val {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold);
  min-width: 40px;
  text-align: right;
}
.roi-calc-results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 32px;
  border-top: 0.5px solid var(--subtle-border);
}
.roi-result-item {
  text-align: center;
  padding: 20px 12px;
  background: rgba(255,255,255,0.02);
  border: 0.5px solid var(--subtle-border);
  border-radius: 2px;
}
.roi-result-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-35);
  margin-bottom: 10px;
}
.roi-result-value {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 300;
  color: var(--white);
}
.roi-highlight { color: var(--gold) !important; }
.roi-disclaimer {
  font-size: 10px;
  color: var(--white-20);
  margin-top: 24px;
  line-height: 1.7;
  text-align: center;
}
@media (max-width: 768px) {
  .roi-calc-inputs { grid-template-columns: 1fr; }
  .roi-calc-results { grid-template-columns: repeat(2, 1fr); }
  .roi-calc-card { padding: 32px 24px; }
}
