:root {
  --bg: #080c14;
  --bg-2: #0d1220;
  --bg-card: #111827;
  --gold: #c9a84c;
  --gold-dim: #a8863d;
  --gold-glow: rgba(201, 168, 76, 0.12);
  --text: #e8e4dc;
  --text-muted: #8a857c;
  --text-faint: #4a4740;
  --border: rgba(201, 168, 76, 0.15);
  --border-bright: rgba(201, 168, 76, 0.35);
  --green: #4ade80;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  background: linear-gradient(to bottom, rgba(8,12,20,0.95) 0%, transparent 100%);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--bg);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 6px;
}
.nav-links {
  display: flex;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 400;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 8rem 3rem 6rem;
  overflow: hidden;
}

/* CSS-generated Dubai skyline silhouette */
.hero-skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 380px;
  background:
    /* Distant towers - faint */
    linear-gradient(to bottom, transparent 60%, rgba(201,168,76,0.04) 100%),
    /* Skyline shape built from boxes */
    radial-gradient(ellipse 80% 40% at 50% 100%, rgba(201,168,76,0.06) 0%, transparent 70%),
    linear-gradient(to top, var(--bg) 0%, transparent 25%);
  pointer-events: none;
}

/* Decorative geometric grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black 20%, transparent 80%);
  pointer-events: none;
}

/* Gold glow bloom behind headline */
.hero::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  color: var(--text);
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-lede {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.hero-badge {
  position: absolute;
  bottom: 2.5rem;
  left: 3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  border-radius: 2rem;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── STATS ── */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 3rem;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -0.01em;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── SHARED EYEBROW ── */
.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ── PROBLEM ── */
.problem {
  padding: 7rem 3rem;
  background: var(--bg-2);
}
.problem-header {
  max-width: 640px;
  margin-bottom: 4rem;
}
.problem-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--border);
  border: 1px solid var(--border);
}
.problem-card {
  background: var(--bg-2);
  padding: 2.5rem;
  transition: background 0.3s;
}
.problem-card:hover { background: #0f1523; }
.problem-icon {
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0.8;
}
.problem-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.problem-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── SOLUTION ── */
.solution {
  padding: 7rem 3rem 4rem;
}
.solution-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 5rem;
}
.solution-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.solution-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* ── MODULES ── */
.modules {
  padding: 0 3rem 7rem;
}
.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  max-width: 1300px;
  margin: 0 auto;
  background: var(--border);
  border: 1px solid var(--border);
}
.module-card {
  background: var(--bg);
  padding: 2rem;
  position: relative;
  transition: background 0.25s;
}
.module-card:hover { background: #0e1421; }
.module-card--featured {
  grid-column: span 2;
  background: linear-gradient(135deg, #0d1423 0%, var(--bg) 100%);
  border: 1px solid var(--border-bright);
}
.module-card--wa {
  background: linear-gradient(135deg, #0d1423 0%, var(--bg) 100%);
}
.module-tag {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  margin-bottom: 1rem;
  display: block;
}
.module-wa-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}
.wa-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.module-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}
.module-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1rem;
  font-weight: 400;
}
.module-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.module-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.module-features li {
  font-size: 0.775rem;
  color: var(--text-faint);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.module-features li::before {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-dim);
  flex-shrink: 0;
}

/* ── COMPLIANCE ── */
.compliance {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 7rem 3rem;
}
.compliance-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.compliance-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.compliance-badge {
  width: 120px;
  height: 120px;
  border: 1px solid var(--border-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: var(--gold-glow);
  position: relative;
}
.compliance-badge::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0.3;
  transform: scale(1.15);
}
.compliance-badge::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0.15;
  transform: scale(1.35);
}
.compliance-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}
.compliance-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.compliance-checks {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.check-item svg { color: var(--gold); flex-shrink: 0; }

/* ── PRICING ── */
.pricing {
  padding: 7rem 3rem;
  text-align: center;
}
.pricing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.pricing-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 4rem;
}
.pricing-card {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.pricing-tier {
  flex: 1;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  background: var(--bg);
}
.pricing-tier:first-child {
  background: linear-gradient(135deg, #0f1522 0%, var(--bg) 100%);
  border-right: 1px solid var(--border);
}
.tier-name {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.tier-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1;
}
.tier-period {
  font-size: 1rem;
  color: var(--text-muted);
}
.tier-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 200px;
  line-height: 1.5;
  margin-top: 0.25rem;
}
.pricing-divider { display: none; }

/* ── CLOSING ── */
.closing {
  padding: 8rem 3rem 7rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.closing-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.closing-headline em {
  font-style: italic;
  color: var(--gold);
}
.closing-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.closing-meta {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.closing-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
}
.meta-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.meta-val {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--gold);
  color: var(--bg);
  font-weight: 600;
  font-size: 0.8rem;
  border-radius: 5px;
}
.footer-note {
  font-size: 0.8rem;
  color: var(--text-faint);
  max-width: 400px;
}
.footer-link {
  font-size: 0.8rem;
  color: var(--gold-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .module-card--featured { grid-column: span 2; }
}
@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .hero { padding: 7rem 1.5rem 5rem; }
  .hero-badge { left: 1.5rem; }
  .stats { padding: 2rem 1.5rem; }
  .stats-grid { flex-wrap: wrap; gap: 1.5rem; }
  .stat-divider { display: none; }
  .problem { padding: 5rem 1.5rem; }
  .problem-grid { grid-template-columns: 1fr; }
  .solution { padding: 5rem 1.5rem 3rem; }
  .modules { padding: 0 1.5rem 5rem; }
  .modules-grid { grid-template-columns: 1fr; }
  .module-card--featured { grid-column: span 1; }
  .compliance { padding: 5rem 1.5rem; }
  .compliance-inner { grid-template-columns: 1fr; gap: 3rem; }
  .pricing { padding: 5rem 1.5rem; }
  .pricing-card { flex-direction: column; }
  .pricing-tier:first-child { border-right: none; border-bottom: 1px solid var(--border); }
  .closing { padding: 5rem 1.5rem; }
  .closing-meta { gap: 2rem; }
  .footer { padding: 2rem 1.5rem; }
}