/* ============================================
   EWC - Elevate World Community
   Binance-inspired Black & Gold Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ---- CSS Variables ---- */
:root {
  --gold: #F0B90B;
  --gold-light: #F8D000;
  --gold-dark: #C9980A;
  --gold-glow: rgba(240, 185, 11, 0.15);
  --gold-glow-strong: rgba(240, 185, 11, 0.3);
  --black: #0B0E11;
  --black-2: #13161A;
  --black-3: #1E2329;
  --black-4: #2B3139;
  --black-5: #363C45;
  --text-primary: #EAECEF;
  --text-secondary: #B7BDC6;
  --text-muted: #707A8A;
  --border: rgba(240, 185, 11, 0.12);
  --border-hover: rgba(240, 185, 11, 0.35);
  --card-bg: rgba(30, 35, 41, 0.85);
  --card-bg-hover: rgba(43, 49, 57, 0.95);
  --shadow-gold: 0 0 30px rgba(240, 185, 11, 0.2);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 72px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.65;
}

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; display: block; }

ul { list-style: none; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black-2); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

.headline-xl { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; }
.headline-lg { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
.headline-md { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 600; }

.gold-text { color: var(--gold); }
.gold-gradient {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Typewriter effect for dynamic text */
.typewriter {
  display: inline-block;
  color: var(--gold);
  font-weight: 800;
  animation: typewrite 3s steps(22, end) 1s forwards, blink 0.6s infinite 3s;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid var(--gold);
  padding-right: 5px;
  min-width: fit-content;
}

@keyframes typewrite {
  0% { width: 0; }
  100% { width: 100%; }
}

@keyframes blink {
  0%, 50% { border-right-color: var(--gold); }
  51%, 100% { border-right-color: transparent; }
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

.section { padding: 100px 0; position: relative; overflow: hidden; }
.section-sm { padding: 60px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-4 { gap: 4px; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(240, 185, 11, 0.35);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--black);
  box-shadow: 0 8px 30px rgba(240, 185, 11, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold-glow);
  color: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--black-3);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: var(--black-4);
  color: var(--text-primary);
  border-color: var(--gold);
}

.btn-lg { padding: 16px 36px; font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  background: var(--card-bg-hover);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-gold), var(--shadow-card);
  transform: translateY(-6px);
}
.card:hover::before { opacity: 1; }

.card-icon {
  width: 56px; height: 56px;
  background: var(--gold-glow);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  transition: var(--transition);
}
.card:hover .card-icon { background: var(--gold); box-shadow: 0 0 20px rgba(240,185,11,0.4); }

/* ============================================
   SECTION HEADER
   ============================================ */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-glow);
  border: 1px solid rgba(240, 185, 11, 0.25);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.75;
}

.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin-bottom: 24px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(11, 14, 17, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(11, 14, 17, 0.97);
  border-bottom-color: rgba(240, 185, 11, 0.2);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.navbar .container { height: 100%; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--black);
  font-family: 'Outfit', sans-serif;
}

.nav-logo-text {
  display: flex; flex-direction: column;
  line-height: 1;
}
.nav-logo-text .brand { font-size: 1.1rem; font-weight: 800; color: var(--text-primary); font-family: 'Outfit', sans-serif; }
.nav-logo-text .tagline { font-size: 0.65rem; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-top: 2px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: var(--gold-glow);
}

.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0; bottom: 0;
  background: rgba(11, 14, 17, 0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 999;
  opacity: 0;
  transform: translateY(-10px);
  transition: var(--transition);
}
.mobile-menu.open { display: flex; opacity: 1; transform: translateY(0); }
.mobile-menu a {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-secondary);
  font-family: 'Outfit', sans-serif;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--gold); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%, rgba(240, 185, 11, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 80% 30%, rgba(240, 185, 11, 0.04) 0%, transparent 60%),
    linear-gradient(180deg, var(--black) 0%, var(--black-2) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240,185,11,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,185,11,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content { position: relative; z-index: 2; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - var(--nav-height));
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240, 185, 11, 0.15);
  border: 1.5px solid rgba(240, 185, 11, 0.5);
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  
  /* Visible immediately */
  opacity: 1;
  transform: translateY(0) scale(1);
  
  /* Smooth glow animation */
  animation: badgeGlow 3s ease-in-out infinite;
  
  /* Modern glow effect */
  box-shadow: 0 0 20px rgba(240, 185, 11, 0.2),
              inset 0 0 15px rgba(240, 185, 11, 0.08);
  
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Modern smooth glow pulse animation */
@keyframes badgeGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(240, 185, 11, 0.2),
                inset 0 0 15px rgba(240, 185, 11, 0.08);
    border-color: rgba(240, 185, 11, 0.5);
  }
  50% {
    box-shadow: 0 0 40px rgba(240, 185, 11, 0.35),
                inset 0 0 25px rgba(240, 185, 11, 0.12),
                0 0 60px rgba(240, 185, 11, 0.15);
    border-color: rgba(240, 185, 11, 0.7);
  }
}

/* Hover effect for interactivity */
.hero-badge:hover {
  transform: translateY(-3px) scale(1.08);
  border-color: rgba(240, 185, 11, 0.8);
  box-shadow: 0 0 50px rgba(240, 185, 11, 0.4),
              inset 0 0 30px rgba(240, 185, 11, 0.15),
              0 0 80px rgba(240, 185, 11, 0.2);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  opacity: 1;
  visibility: visible;
}

.hero-title .line {
  display: block;
  overflow: visible;
  opacity: 1;
  visibility: visible;
  animation: lineFadeIn 0.8s ease-out forwards;
}

.hero-title .line:nth-child(1) { animation-delay: 0.05s; }
.hero-title .line:nth-child(2) { animation-delay: 0.25s; }

/* Title entrance animation */
@keyframes lineFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
  opacity: 1;
  visibility: visible;
  animation: subtitleFadeIn 0.7s ease-out 0.35s forwards;
}

@keyframes subtitleFadeIn {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
  opacity: 1;
  visibility: visible;
  animation: actionsFadeIn 0.7s ease-out 0.5s forwards;
}

@keyframes actionsFadeIn {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-stats {
  display: flex;
  gap: 32px;
  opacity: 1;
  visibility: visible;
  animation: statsFadeIn 0.7s ease-out 0.7s forwards;
}

@keyframes statsFadeIn {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  font-family: 'Outfit', sans-serif;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* Hero Right Panel */
.hero-panel {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.hero-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.hero-panel-title { font-size: 0.85rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; }

.live-badge {
  display: flex; align-items: center; gap: 6px;
  background: rgba(0, 200, 83, 0.1);
  border: 1px solid rgba(0, 200, 83, 0.3);
  border-radius: 50px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #00C853;
}

.live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #00C853;
  animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--black-3);
  border-radius: var(--radius);
  margin-bottom: 10px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.stat-row:hover { border-color: var(--gold); background: var(--black-4); }
.stat-row:last-child { margin-bottom: 0; }

.stat-row-left { display: flex; align-items: center; gap: 10px; }
.stat-row-icon { font-size: 1.1rem; }
.stat-row-label { font-size: 0.88rem; color: var(--text-secondary); font-weight: 500; }
.stat-row-value {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-glow);
  padding: 4px 10px;
  border-radius: 6px;
}

.hero-panel-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}

/* ============================================
   SCROLL LINE DIVIDER
   ============================================ */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2;
}
.scroll-indicator span { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; }
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%, 100% { opacity: 0.3; transform: scaleY(0.5); } 50% { opacity: 1; transform: scaleY(1); } }

/* ============================================
   MARQUEE TICKER
   ============================================ */
.ticker-bar {
  background: var(--black-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 36px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-right: 1px solid var(--border);
}
.ticker-item span { color: var(--gold); }
.ticker-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section { background: linear-gradient(180deg, var(--black) 0%, var(--black-2) 100%); }

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-circle {
  width: 360px; height: 360px;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 2px solid rgba(240, 185, 11, 0.15);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  animation: rotateSlow 30s linear infinite;
}

@keyframes rotateSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.about-circle-inner {
  width: 240px; height: 240px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--black-3), var(--black-4));
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  animation: rotateSlow 30s linear infinite reverse;
  gap: 8px;
}

.about-circle-text {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  font-family: 'Outfit', sans-serif;
  line-height: 1;
}
.about-circle-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.orbit-item {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  animation: orbitItem var(--duration, 20s) linear infinite;
  box-shadow: 0 0 20px rgba(240,185,11,0.5);
}

@keyframes orbitItem {
  from { transform: rotate(0deg) translateX(180px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(180px) rotate(-360deg); }
}

.orbit-item:nth-child(2) { animation-delay: -5s; animation-duration: 22s; }
.orbit-item:nth-child(3) { animation-delay: -10s; animation-duration: 18s; }
.orbit-item:nth-child(4) { animation-delay: -15s; animation-duration: 25s; }

.about-features { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.feature-item:hover {
  border-color: var(--gold);
  background: var(--black-4);
  transform: translateX(6px);
}
.feature-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.feature-title { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.feature-desc { font-size: 0.83rem; color: var(--text-muted); }

/* ============================================
   DIFFERENCE SECTION
   ============================================ */
.difference-section {
  background: linear-gradient(135deg, var(--black-2) 0%, var(--black) 100%);
  position: relative;
}

.model-compare {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 24px;
  align-items: center;
  margin: 48px 0;
}

.model-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}
.model-box.traditional { border-color: rgba(239, 83, 80, 0.25); }
.model-box.ewc { border-color: rgba(240, 185, 11, 0.35); box-shadow: var(--shadow-gold); }
.model-box:hover { transform: translateY(-4px); }

.model-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.model-label.red { color: #EF5350; }
.model-label.gold { color: var(--gold); }

.model-chain {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.model-chain-item {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  width: 100%;
}
.traditional .model-chain-item { background: rgba(239,83,80,0.08); border: 1px solid rgba(239,83,80,0.2); color: var(--text-secondary); }
.ewc .model-chain-item { background: var(--gold-glow); border: 1px solid rgba(240,185,11,0.25); color: var(--text-primary); }

.chain-arrow { font-size: 1.5rem; color: var(--text-muted); }

.vs-badge {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 900;
  color: var(--black);
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 0 30px rgba(240,185,11,0.4);
}

/* ============================================
   VALUES SECTION
   ============================================ */
.values-section { background: var(--black); }

.value-card {
  padding: 28px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.value-card::after {
  content: attr(data-num);
  position: absolute;
  right: 16px; top: 12px;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(240,185,11,0.06);
  font-family: 'Outfit', sans-serif;
  line-height: 1;
}
.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.value-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.value-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.value-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================
   VISION / STATS SECTION
   ============================================ */
.stats-section {
  background: linear-gradient(135deg, var(--black-2) 0%, var(--black-3) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-card {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid var(--border);
}
.stat-card:last-child { border-right: none; }

.stat-num {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--gold);
  font-family: 'Outfit', sans-serif;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ============================================
   OFFERS SECTION
   ============================================ */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* ============================================
   DREAM / MILLION SECTION
   ============================================ */
.dream-section {
  background: linear-gradient(135deg, rgba(240,185,11,0.04) 0%, var(--black) 50%, rgba(240,185,11,0.04) 100%);
  position: relative;
  text-align: center;
}

.dream-amount {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin: 24px 0;
  filter: drop-shadow(0 0 40px rgba(240,185,11,0.4));
}

.dream-steps {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 40px 0;
  flex-wrap: wrap;
}
.dream-step {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 24px 32px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  min-width: 160px;
  transition: var(--transition);
}
.dream-step:hover { border-color: var(--gold); transform: translateY(-4px); }
.dream-step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem;
}
.dream-step-label { font-size: 0.85rem; color: var(--text-secondary); font-weight: 500; text-align: center; }

/* ============================================
   WHO IS IT FOR
   ============================================ */
.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.for-whom-card {
  padding: 24px 20px;
  text-align: center;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.for-whom-card:hover { border-color: var(--gold); background: var(--black-4); transform: translateY(-4px); }
.for-whom-icon { font-size: 2rem; margin-bottom: 12px; }
.for-whom-title { font-size: 0.95rem; font-weight: 600; }

/* ============================================
   LEADERSHIP QUOTE SECTION
   ============================================ */
.quote-section {
  background: linear-gradient(135deg, var(--black-2), var(--black));
  text-align: center;
}
.quote-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 48px;
  background: var(--gold-glow);
  border: 1px solid rgba(240,185,11,0.25);
  border-radius: var(--radius-xl);
  position: relative;
}
.quote-mark {
  font-size: 8rem;
  color: rgba(240,185,11,0.08);
  font-family: Georgia, serif;
  line-height: 0.8;
  position: absolute;
  top: 20px; left: 32px;
}
.quote-text {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  line-height: 1.7;
  color: var(--text-primary);
  position: relative;
}
.quote-author {
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--gold); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  gap: 16px;
  user-select: none;
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-item.open .faq-question { color: var(--gold); }

.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--black-3); border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--gold);
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--gold); color: var(--black); transform: rotate(45deg); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 24px 20px; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--black-2) 0%, var(--black) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,185,11,0.08) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-box {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 16px;
}

.cta-sub { font-size: 1.05rem; color: var(--text-secondary); max-width: 500px; margin: 0 auto 36px; line-height: 1.7; }

.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black-2);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand { max-width: 300px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; text-decoration: none; }
.footer-logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900;
  color: var(--black); font-family: 'Outfit', sans-serif;
}
.footer-brand-name { font-size: 1.1rem; font-weight: 800; color: var(--text-primary); font-family: 'Outfit', sans-serif; }
.footer-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; }

.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: var(--transition);
  text-decoration: none;
}
.footer-social:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-glow); }

.footer-col h4 {
  font-size: 0.8rem; font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem; color: var(--text-muted);
  text-decoration: none; transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-bottom-right { display: flex; gap: 24px; }
.footer-bottom-right a { color: var(--text-muted); font-size: 0.82rem; }
.footer-bottom-right a:hover { color: var(--gold); }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.88); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ============================================
   PROGRESS BAR ON SCROLL
   ============================================ */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
  padding: calc(var(--nav-height) + 80px) 0 80px;
  background: linear-gradient(135deg, var(--black) 0%, var(--black-2) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(240,185,11,0.07) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-title { font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 900; margin-bottom: 16px; }
.page-hero-sub { font-size: 1.1rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }
.breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--text-muted);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--text-muted); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  backdrop-filter: blur(12px);
}

.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 0.85rem; font-weight: 600; color: var(--text-secondary);
  margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px;
}
.form-control {
  width: 100%;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.95rem;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: var(--transition);
}
.form-control::placeholder { color: var(--text-muted); }
.form-control:focus { border-color: var(--gold); background: var(--black-4); box-shadow: 0 0 0 3px rgba(240,185,11,0.08); }
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control { cursor: pointer; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px;
  background: var(--black-3); border: 1px solid var(--border);
  border-radius: var(--radius); transition: var(--transition);
}
.contact-info-card:hover { border-color: var(--gold); }
.contact-info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--gold-glow); border: 1px solid rgba(240,185,11,0.3);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-info-title { font-size: 0.88rem; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.contact-info-val { font-size: 0.88rem; color: var(--text-muted); }

/* ============================================
   OPPORTUNITY CARDS
   ============================================ */
.opp-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.opp-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: var(--transition);
}
.opp-card:hover { transform: translateY(-6px); border-color: var(--border-hover); box-shadow: var(--shadow-gold); }
.opp-card:hover::before { opacity: 1; }
.opp-icon { font-size: 2.5rem; margin-bottom: 16px; }
.opp-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.opp-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }
.opp-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 12px;
  background: var(--gold-glow);
  border: 1px solid rgba(240,185,11,0.25);
  border-radius: 50px;
  font-size: 0.75rem; font-weight: 600; color: var(--gold);
}

/* ============================================
   ROADMAP TIMELINE
   ============================================ */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute; left: 12px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--gold), transparent);
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-item::before {
  content: '';
  position: absolute; left: -34px; top: 4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(240,185,11,0.5);
}
.timeline-phase {
  font-size: 0.75rem; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 6px;
}
.timeline-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.timeline-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
  .hero-panel { display: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .model-compare { grid-template-columns: 1fr; }
  .vs-badge { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .contact-form { padding: 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .dream-steps { flex-direction: column; align-items: center; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .quote-box { padding: 36px 24px; }
  .page-hero { padding: calc(var(--nav-height) + 48px) 0 48px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 2rem; }
  .btn-lg { padding: 14px 28px; font-size: 1rem; }
}
