/* ============================================================
   NEXUSAI — UAE MARKET LANDING PAGE
   Palette: Midnight Navy · Gold · Teal · Off-White
   Fonts: Syne (display) + Plus Jakarta Sans (body)
   ============================================================ */

:root {
  --navy:       #050D1A;
  --navy-2:     #0A1628;
  --navy-3:     #0F2040;
  --navy-4:     #162A50;
  --gold:       #C9A84C;
  --gold-light: #E8C96A;
  --gold-dim:   #8A6E2A;
  --teal:       #00D4C8;
  --teal-dim:   #007A74;
  --white:      #F0EDE8;
  --white-dim:  #A8A49E;
  --red:        #FF4D4D;
  --border:     rgba(201,168,76,0.15);
  --border-teal:rgba(0,212,200,0.15);
  --glass:      rgba(255,255,255,0.03);
  --glass-hover:rgba(255,255,255,0.06);

  --font-display: 'Syne', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-gold: 0 0 40px rgba(201,168,76,0.12);
  --shadow-teal: 0 0 40px rgba(0,212,200,0.12);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.4);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── TYPOGRAPHY ── */
.section-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 3rem;
}
.title-accent {
  background: linear-gradient(135deg, var(--gold) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(201,168,76,0.35); }

.btn-ghost {
  padding: 0.6rem 1.2rem;
  color: var(--white-dim);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--white); }

.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
}
.btn-primary-lg:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(201,168,76,0.4); }

.btn-outline-lg {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 2rem;
  border: 1px solid var(--border);
  color: var(--white-dim);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
}
.btn-outline-lg:hover { border-color: var(--gold); color: var(--gold); }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(5,13,26,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.logo-mark {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}
.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white-dim);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 5rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  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: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: -200px; left: -100px;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
  bottom: -100px; right: -100px;
}
.arabic-motif {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  animation: float 8s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-52%) translateX(-10px); }
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--white-dim);
  margin-bottom: 1.5rem;
  background: var(--glass);
  backdrop-filter: blur(10px);
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--white-dim);
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 0.8rem;
  color: var(--white-dim);
}
.trust-flags {
  display: flex;
  gap: 0.5rem;
}
.flag-badge {
  padding: 0.3rem 0.7rem;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--white-dim);
}

/* ── HERO VISUAL ── */
.hero-visual {
  position: relative;
  height: 480px;
}
.dashboard-card {
  position: absolute;
  background: rgba(10,22,40,0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  animation: cardFloat 6s ease-in-out infinite;
}
.main-card {
  width: 340px;
  padding: 1.4rem;
  top: 20px; left: 0;
  animation-delay: 0s;
}
.mini-card {
  width: 240px;
  padding: 1.2rem;
}
.whatsapp-card {
  bottom: 60px; left: 30px;
  animation-delay: 1.5s;
}
.forecast-card {
  top: 60px; right: 0;
  animation-delay: 3s;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white-dim);
}
.card-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.card-dot.green { background: #4CAF50; box-shadow: 0 0 8px #4CAF50; }
.card-live {
  margin-left: auto;
  font-size: 0.68rem;
  color: var(--teal);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.pipeline-bars { display: flex; flex-direction: column; gap: 0.8rem; }
.pipe-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
}
.pipe-label {
  width: 110px;
  color: var(--white-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 0;
}
.pipe-bar-wrap {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}
.pipe-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 3px;
  transition: width 1.5s cubic-bezier(0.4,0,0.2,1);
}
.pipe-bar.at-risk {
  background: linear-gradient(90deg, #FF4D4D, #FF8C00);
}
.pipe-score { font-size: 0.72rem; font-weight: 700; width: 44px; text-align: right; flex-shrink: 0; }
.pipe-score.gold { color: var(--gold); }
.pipe-score.teal { color: var(--teal); }
.pipe-score.red  { color: var(--red); }
.card-footer-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--white-dim);
}
.stat-val { font-weight: 700; font-size: 0.9rem; }
.stat-val.gold { color: var(--gold); }

/* WhatsApp card */
.wa-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white-dim);
  margin-bottom: 0.8rem;
}
.wa-bubble {
  background: rgba(255,255,255,0.05);
  border-radius: 0 10px 10px 10px;
  padding: 0.6rem 0.8rem;
  font-size: 0.72rem;
  color: var(--white-dim);
  line-height: 1.5;
  margin-bottom: 0.6rem;
  border: 1px solid rgba(255,255,255,0.06);
}
.ai-chip {
  display: inline-block;
  padding: 0.3rem 0.6rem;
  background: rgba(0,212,200,0.1);
  border: 1px solid rgba(0,212,200,0.2);
  border-radius: 6px;
  font-size: 0.68rem;
  color: var(--teal);
}

/* Forecast card */
.forecast-label {
  font-size: 0.72rem;
  color: var(--white-dim);
  margin-bottom: 0.4rem;
}
.forecast-amount {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.forecast-delta {
  font-size: 0.72rem;
  color: #4CAF50;
  margin-bottom: 0.8rem;
}
.forecast-bar-mini {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}
.forecast-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  border-radius: 2px;
  transition: width 2s cubic-bezier(0.4,0,0.2,1);
}

/* ── TRUST BAR ── */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(201,168,76,0.03);
  padding: 1.2rem 2rem;
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-text {
  font-size: 0.78rem;
  color: var(--white-dim);
  white-space: nowrap;
}
.compliance-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.comp-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--white-dim);
  background: var(--glass);
  transition: all 0.2s;
}
.comp-badge:hover { border-color: var(--gold); color: var(--white); }

/* ── METRICS ── */
.metrics-section {
  padding: 6rem 2rem;
  background: var(--navy-2);
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.metric-card {
  padding: 2rem 1.5rem;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s ease;
}
.metric-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.metric-card.featured {
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(0,212,200,0.05));
  border-color: rgba(201,168,76,0.3);
}
.metric-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.6rem;
}
.metric-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.metric-sub {
  font-size: 0.78rem;
  color: var(--white-dim);
  line-height: 1.4;
}

/* ── FEATURES ── */
.features-section {
  padding: 6rem 2rem;
}
.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.feature-img {
  width: 100%;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.features-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.feature-item {
  display: flex;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}
.feature-item:hover,
.feature-item.active {
  background: var(--glass);
  border-color: var(--border);
}
.feature-item.active {
  background: linear-gradient(135deg, rgba(201,168,76,0.06), rgba(0,212,200,0.04));
  border-color: rgba(201,168,76,0.2);
}
.feature-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-text h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.feature-text p {
  font-size: 0.82rem;
  color: var(--white-dim);
  line-height: 1.6;
}

/* ── WHY MENA ── */
.why-section {
  padding: 6rem 2rem;
  background: var(--navy-2);
}
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
}
.comp-col {
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}
.comp-col.nexus {
  border-color: rgba(0,212,200,0.25);
  background: linear-gradient(135deg, rgba(0,212,200,0.04), rgba(201,168,76,0.03));
}
.comp-header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.comp-tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-display);
}
.comp-tag.bad {
  background: rgba(255,77,77,0.1);
  color: var(--red);
  border: 1px solid rgba(255,77,77,0.2);
}
.comp-tag.good {
  background: rgba(0,212,200,0.1);
  color: var(--teal);
  border: 1px solid rgba(0,212,200,0.2);
}
.comp-names {
  font-size: 0.78rem;
  color: var(--white-dim);
}
.comp-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.bad-item, .good-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  line-height: 1.5;
}
.bad-item { color: var(--white-dim); }
.good-item { color: var(--white); }
.bad-item svg, .good-item svg { flex-shrink: 0; margin-top: 2px; }

.comp-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3rem;
}
.vs-badge {
  width: 44px; height: 44px;
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--white-dim);
}

/* ── PRICING ── */
.pricing-section {
  padding: 6rem 2rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.price-card {
  padding: 2rem;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  position: relative;
  transition: all 0.3s ease;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.3);
}
.price-card.featured {
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(0,212,200,0.05));
  border-color: rgba(201,168,76,0.35);
  transform: scale(1.02);
}
.price-card.featured:hover { transform: scale(1.02) translateY(-4px); }
.price-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-display);
  border-radius: 100px;
  white-space: nowrap;
}
.price-tier {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.8rem;
  line-height: 1;
}
.price-amount span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--white-dim);
}
.price-desc {
  font-size: 0.82rem;
  color: var(--white-dim);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.price-features {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
}
.price-features li {
  font-size: 0.83rem;
  color: var(--white-dim);
  padding-left: 1.2rem;
  position: relative;
}
.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.btn-outline-price {
  display: block;
  text-align: center;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--white-dim);
  transition: all 0.25s;
}
.btn-outline-price:hover { border-color: var(--gold); color: var(--gold); }
.btn-gold-price {
  display: block;
  text-align: center;
  padding: 0.75rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  transition: all 0.25s;
}
.btn-gold-price:hover { box-shadow: 0 6px 24px rgba(201,168,76,0.35); transform: translateY(-1px); }
.pricing-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--white-dim);
}

/* ── DEMO SECTION ── */
.demo-section {
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
  background: var(--navy-2);
}
.demo-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.demo-glow {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.arabic-motif-sm {
  position: absolute;
  bottom: -2rem;
  right: 3%;
  font-size: clamp(6rem, 12vw, 12rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,212,200,0.05);
  pointer-events: none;
  user-select: none;
}
.demo-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.demo-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.demo-sub {
  font-size: 1rem;
  color: var(--white-dim);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.demo-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 0.88rem;
  transition: all 0.2s;
  outline: none;
  appearance: none;
}
.form-input::placeholder { color: var(--white-dim); }
.form-input:focus { border-color: rgba(201,168,76,0.4); background: rgba(255,255,255,0.06); }
.form-select { cursor: pointer; }
.form-select option { background: var(--navy-3); color: var(--white); }
.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-md);
  transition: all 0.25s;
  margin-top: 0.5rem;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(201,168,76,0.4); }
.form-note {
  font-size: 0.75rem;
  color: var(--white-dim);
  margin-top: 0.5rem;
}

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--white-dim);
  line-height: 1.6;
  margin: 1rem 0;
  max-width: 280px;
}
.footer-flags {
  font-size: 0.78rem;
  color: var(--white-dim);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: 0.83rem;
  color: var(--white-dim);
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--white-dim);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { height: 360px; }
  .main-card { width: 280px; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .features-layout { grid-template-columns: 1fr; }
  .feature-main { order: 2; }
  .features-list { order: 1; }
  .comparison-grid { grid-template-columns: 1fr; }
  .comp-divider { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto 1.5rem; }
  .price-card.featured { transform: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .hero-visual { display: none; }
  .hero-content { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section-inner { padding: 0 1.5rem; }
  .metrics-section, .features-section, .why-section, .pricing-section, .demo-section { padding: 4rem 1.5rem; }
}

@media (max-width: 480px) {
  .metrics-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .btn-primary-lg, .btn-outline-lg { width: 100%; justify-content: center; }
}