/* ==========================================================================
   ACE GLOBAL - Global Trading & Wealth Management
   Design System & Master Stylesheet
   ========================================================================== */

:root {
  /* Color Palette - Deep Royal Navy & Midnight Abyss */
  --bg-primary: #02071a;
  --bg-secondary: #061238;
  --bg-tertiary: #0b1a4a;
  --bg-card: rgba(8, 19, 52, 0.75);
  --bg-card-hover: rgba(14, 32, 85, 0.9);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --bg-glass-strong: rgba(255, 255, 255, 0.08);

  /* Primary Brand Accents: Imperial 3D Luxury Gold */
  --gold-highlight: #fff6cc;
  --gold-light: #fce08a;
  --gold-primary: #d4af37;
  --gold-dark: #9a7424;
  --gold-bronze: #694b0d;
  --gold-glow: rgba(212, 175, 55, 0.35);
  --gold-subtle: rgba(212, 175, 55, 0.12);
  --gold-gradient: linear-gradient(135deg, #fff0a8 0%, #d4af37 50%, #9a7424 100%);
  --gold-gradient-hover: linear-gradient(135deg, #fff6cc 0%, #f0c950 50%, #b38827 100%);
  --gold-gradient-text: linear-gradient(180deg, #fffceb 0%, #fbd971 45%, #d4af37 75%, #8f6515 100%);

  /* Secondary Brand Accents: Royal Blue & Electric Sapphire */
  --blue-royal: #1d4ed8;
  --blue-vibrant: #2563eb;
  --blue-deep: #0b1d54;
  --blue-cyan: #38bdf8;
  --blue-glow: rgba(37, 99, 235, 0.35);
  --blue-subtle: rgba(37, 99, 235, 0.14);
  --blue-gradient: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #0b1d54 100%);

  /* Silver / Platinum Accents */
  --silver-light: #ffffff;
  --silver-mid: #e2e8f0;
  --silver-dark: #94a3b8;

  /* Backward Compatibility & Status Variables */
  --emerald: #d4af37;
  --emerald-light: #fce08a;
  --emerald-glow: rgba(212, 175, 55, 0.35);
  --emerald-subtle: rgba(212, 175, 55, 0.12);

  --gold: #d4af37;
  --cyan: #38bdf8;
  --cyan-glow: rgba(56, 189, 248, 0.3);

  --success: #10b981;
  --success-glow: rgba(16, 185, 129, 0.25);
  --accent-purple: #8b5cf6;
  --danger: #ef4444;

  /* Typography Colors */
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #64748b;
  --text-light: #ffffff;
  --text-gold: #f8df8c;
  --text-silver: #e2e8f0;

  /* Borders & Dividers */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-active: rgba(212, 175, 55, 0.45);
  --border-gold: rgba(212, 175, 55, 0.35);
  --border-blue: rgba(37, 99, 235, 0.35);

  /* Shadows & Elevations */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.8);
  --shadow-gold-glow: 0 0 35px var(--gold-glow);
  --shadow-blue-glow: 0 0 40px var(--blue-glow);

  /* Geometry */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-luxury: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-script: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

body {
  background-color: var(--bg-primary);
  background-image: 
    radial-gradient(ellipse at 50% 0%, rgba(29, 78, 216, 0.18) 0%, transparent 60%),
    radial-gradient(circle at 100% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 45%);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Background Ambient Glows */
.ambient-glow-1 {
  position: fixed;
  top: -150px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.22) 0%, rgba(2, 7, 26, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.ambient-glow-2 {
  position: fixed;
  bottom: 10%;
  left: -150px;
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.14) 0%, rgba(2, 7, 26, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.25;
}

.text-gradient-emerald,
.text-gradient-gold {
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
}

.text-gradient-royal {
  background: linear-gradient(135deg, #ffffff 10%, #93c5fd 50%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: var(--gold-subtle);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-light);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.15);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #120e03;
  font-weight: 800;
  border: 1px solid rgba(255, 246, 204, 0.4);
  box-shadow: 0 4px 22px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  background: var(--gold-gradient-hover);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
  color: #080601;
}

.btn-secondary {
  background: rgba(14, 34, 90, 0.6);
  border-color: rgba(37, 99, 235, 0.45);
  color: #ffffff;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
  background: rgba(29, 78, 216, 0.8);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #120e03;
  font-weight: 800;
  box-shadow: 0 4px 22px rgba(212, 175, 55, 0.4);
}

.btn-gold:hover {
  background: var(--gold-gradient-hover);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
  transform: translateY(-2px);
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */
.top-notice-bar {
  background: rgba(3, 8, 26, 0.95);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding: 8px 0;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.notice-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.market-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.75rem;
}

.status-active {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-light);
}

.status-closed {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: #fbbf24;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  animation: pulse-dot 1.8s infinite;
}

.status-active .status-dot {
  background: var(--gold-primary);
  box-shadow: 0 0 8px var(--gold-primary);
}

.status-closed .status-dot {
  background: #f59e0b;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.35); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

.header-meta-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 2px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-btn.active {
  background: var(--gold-primary);
  color: #120e03;
}

/* Main Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(2, 7, 26, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  padding: 16px 0;
  transition: padding 0.3s ease, background 0.3s ease;
}

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

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

.brand-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #091745 0%, #030820 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.25), 0 0 15px rgba(37, 99, 235, 0.25);
  color: #ffffff;
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.brand-logo:hover .brand-logo-icon {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.45), 0 0 20px rgba(37, 99, 235, 0.4);
  border-color: var(--gold-light);
}

.brand-logo-text {
  display: flex;
  flex-direction: column;
}

.brand-name-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1.1;
}

.brand-ace {
  font-family: var(--font-luxury);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 6px rgba(212, 175, 55, 0.35));
}

.brand-divider {
  color: var(--gold-primary);
  font-size: 0.85rem;
  opacity: 0.8;
}

.brand-global {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--silver-light);
  text-transform: uppercase;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffffff;
}

.brand-tagline {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  font-weight: 600;
  margin-top: 1px;
  opacity: 0.95;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: var(--gold-light);
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
}

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

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: #ffffff;
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* ==========================================================================
   Live Ticker Bar
   ========================================================================== */
.market-ticker-wrap {
  background: rgba(3, 8, 26, 0.75);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  position: relative;
  z-index: 10;
}

.market-ticker-inner {
  display: inline-flex;
  gap: 36px;
  animation: ticker-slide 30s linear infinite;
}

.market-ticker-wrap:hover .market-ticker-inner {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-heading);
}

.ticker-name {
  color: var(--text-secondary);
}

.ticker-val {
  color: var(--text-primary);
}

.ticker-change.pos {
  color: #34d399;
}

.ticker-change.neg {
  color: var(--danger);
}

@keyframes ticker-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding: 90px 0 70px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  background: var(--gold-subtle);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-full);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
  box-shadow: 0 2px 12px rgba(212, 175, 55, 0.15);
}

.hero-title {
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.35rem;
  color: var(--gold-light);
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  margin-top: 10px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-icon {
  color: var(--gold-primary);
  display: flex;
}

.trust-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.3;
}

.trust-text strong {
  display: block;
  color: var(--text-primary);
}

/* Hero Visual / Dashboard Widget */
.hero-widget-card {
  background: linear-gradient(145deg, rgba(8, 20, 56, 0.85) 0%, rgba(3, 8, 26, 0.95) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg), 0 0 45px rgba(37, 99, 235, 0.15), 0 0 25px rgba(212, 175, 55, 0.1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.hero-widget-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), var(--blue-cyan), var(--gold-light), transparent);
}

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

.widget-title {
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.widget-badge {
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--gold-subtle);
  color: var(--gold-light);
  font-weight: 700;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.quick-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.stat-box:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
}

.stat-value.highlight {
  color: var(--gold-light);
}

.stat-value.gold {
  color: var(--gold-light);
}

.stat-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.widget-footer-pill {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--gold-light);
}

/* ==========================================================================
   Program Tiers Section (ACE 1 - ACE 4)
   ========================================================================== */
.programs-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
  position: relative;
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
}

.tier-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-lg), 0 0 35px var(--gold-glow);
}

.tier-card.popular {
  border-color: rgba(212, 175, 55, 0.55);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, rgba(8, 20, 56, 0.88) 100%);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.18);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #120e03;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.45);
}

.tier-top {
  margin-bottom: 20px;
  text-align: center;
}

.tier-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
}

.tier-1 .tier-icon-wrap { background: rgba(59, 130, 246, 0.15); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.35); }
.tier-2 .tier-icon-wrap { background: rgba(37, 99, 235, 0.2); color: #93c5fd; border: 1px solid rgba(37, 99, 235, 0.4); }
.tier-3 .tier-icon-wrap { background: rgba(168, 85, 247, 0.15); color: #c084fc; border: 1px solid rgba(168, 85, 247, 0.35); }
.tier-4 .tier-icon-wrap { background: rgba(212, 175, 55, 0.2); color: var(--gold-light); border: 1px solid rgba(212, 175, 55, 0.45); box-shadow: 0 0 16px rgba(212, 175, 55, 0.25); }

.tier-name {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.tier-badge-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tier-capital-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  margin-bottom: 24px;
}

.capital-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.capital-value {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
}

.tier-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
}

.feature-icon {
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-details {
  display: flex;
  flex-direction: column;
}

.feature-title {
  color: var(--text-secondary);
  font-size: 0.78rem;
}

.feature-val {
  color: #ffffff;
  font-weight: 700;
}

.tier-card-btn {
  width: 100%;
  margin-top: auto;
}

.dayoff-banner {
  background: rgba(212, 175, 55, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dayoff-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dayoff-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.dayoff-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.dayoff-sub {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   Interactive Smart ROI Simulator
   ========================================================================== */
.simulator-section {
  padding: 90px 0;
  position: relative;
}

.simulator-box {
  background: linear-gradient(145deg, rgba(8, 20, 56, 0.92) 0%, rgba(3, 8, 26, 0.97) 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg), 0 0 55px rgba(37, 99, 235, 0.15), 0 0 30px rgba(212, 175, 55, 0.1);
  position: relative;
  backdrop-filter: blur(20px);
}

.sim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.sim-input-column {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sim-field-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sim-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sim-label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.sim-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.sim-currency-prefix {
  position: absolute;
  left: 20px;
  color: var(--gold-light);
  font-weight: 800;
  font-size: 1.2rem;
}

.sim-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: 14px 20px 14px 44px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  outline: none;
  transition: all 0.2s ease;
}

.sim-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
  background: rgba(255, 255, 255, 0.07);
}

/* Custom Range Slider */
.sim-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  cursor: pointer;
  margin-top: 6px;
}

.sim-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold-gradient);
  cursor: pointer;
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.7);
  border: 2px solid #ffffff;
  transition: transform 0.15s ease;
}

.sim-range::-webkit-slider-thumb:hover {
  transform: scale(1.18);
}

/* Quick Capital Pills */
.quick-cap-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cap-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cap-pill:hover, .cap-pill.active {
  background: var(--gold-subtle);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

/* Selected Tier Auto Pill */
.tier-detector-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.detected-tier-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-light);
}

/* Results Output Card */
.sim-output-card {
  background: rgba(4, 10, 32, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.output-hero-stat {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.output-hero-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.output-hero-val {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.35));
}

.output-breakdown-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.breakdown-label {
  color: var(--text-secondary);
}

.breakdown-val {
  color: #ffffff;
  font-weight: 700;
}

.sim-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.02);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   Partner Program Section (5-2-1-1)
   ========================================================================== */
.partner-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, #050d26 50%, var(--bg-primary) 100%);
  position: relative;
}

.referral-structure-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.ref-level-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.ref-level-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.ref-level-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.ref-percent {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.ref-1 .ref-percent { color: var(--gold-light); text-shadow: 0 0 15px rgba(212, 175, 55, 0.4); }
.ref-2 .ref-percent { color: var(--blue-cyan); text-shadow: 0 0 15px rgba(56, 189, 248, 0.4); }
.ref-3 .ref-percent { color: #60a5fa; }
.ref-4 .ref-percent { color: #cbd5e1; }

.ref-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.partner-box-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.partner-info-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.partner-info-title {
  font-size: 1.6rem;
  font-weight: 800;
}

.partner-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.partner-point-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.partner-point-item svg {
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: 3px;
}

.partner-point-item strong {
  color: #ffffff;
}

.partner-calc-card {
  background: rgba(4, 10, 32, 0.88);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-md);
  padding: 28px;
}

.partner-calc-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--gold-light);
}

/* ==========================================================================
   Withdrawal Section (Minimal $1 & 0 Gas Fee)
   ========================================================================== */
.withdrawal-section {
  padding: 90px 0;
  position: relative;
}

.withdrawal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.wd-highlight-card {
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.12) 0%, rgba(8, 20, 56, 0.9) 100%);
  border: 1px solid rgba(37, 99, 235, 0.45);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.15);
}

.wd-stat-hero {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 16px 0;
}

.wd-stat-hero .huge-val {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 4.2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.wd-stat-hero .badge-zero {
  background: var(--gold-gradient);
  color: #120e03;
  font-size: 1rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.4);
}

.wd-features-subgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.wd-feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all 0.25s ease;
}

.wd-feature-box:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.wd-box-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.wd-box-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.wd-box-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   Our Principles (01 - 04)
   ========================================================================== */
.principles-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
  position: relative;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.principle-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 26px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.principle-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.15);
}

.principle-num {
  font-family: var(--font-luxury);
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(212, 175, 55, 0.25);
  margin-bottom: 16px;
  line-height: 1;
}

.principle-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.principle-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================================================
   Important Notice / Compliance Banner
   ========================================================================== */
.notice-section {
  padding: 40px 0 80px;
}

.notice-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(8, 20, 56, 0.92) 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.notice-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
}

.notice-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.notice-heading {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.notice-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  padding: 80px 0;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item.active {
  border-color: rgba(212, 175, 55, 0.45);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  text-align: left;
}

.faq-chevron {
  transition: transform 0.3s ease;
  color: var(--gold-light);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Final CTA & Slogan Banner
   ========================================================================== */
.cta-banner-section {
  padding: 80px 0 100px;
  position: relative;
}

.cta-banner-box {
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.22) 0%, rgba(8, 20, 56, 0.95) 50%, rgba(3, 8, 26, 0.98) 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(37, 99, 235, 0.2), 0 0 35px rgba(212, 175, 55, 0.15);
}

.cta-tagline {
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.cta-headline {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 36px;
}

.cta-buttons-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #010410;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  padding: 70px 0 30px;
  position: relative;
}

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

.footer-col-about {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.footer-about-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  transition: all 0.2s ease;
}

.footer-link:hover {
  color: var(--gold-light);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}

/* ==========================================================================
   Modal Dialog (Consultation / Registration)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 7, 26, 0.88);
  backdrop-filter: blur(14px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
  animation: modalFadeIn 0.25s ease;
}

.modal-card {
  background: linear-gradient(145deg, rgba(8, 20, 56, 0.96) 0%, rgba(3, 8, 26, 0.98) 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(212, 175, 55, 0.15);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.25rem;
  transition: color 0.2s ease;
}

.modal-close-btn:hover {
  color: var(--gold-light);
}

.modal-header {
  margin-bottom: 24px;
}

.modal-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.modal-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.3);
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

/* ==========================================================================
   Responsive Breakpoints & High-End Mobile UI System
   ========================================================================== */

/* Tablet & Smaller Desktops */
@media (max-width: 1080px) {
  .tiers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .principles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .referral-structure-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* Tablets & Mobile Devices */
@media (max-width: 860px) {
  .navbar {
    height: 66px;
  }
  .hero-section {
    padding: 105px 0 50px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-content {
    text-align: center;
  }
  .hero-badge {
    margin: 0 auto 16px;
  }
  .hero-title {
    font-size: clamp(2.1rem, 6.5vw, 3.2rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }
  .hero-subtitle {
    font-size: clamp(1rem, 3.6vw, 1.2rem);
    margin: 0 auto 24px;
    max-width: 620px;
  }
  .hero-actions {
    justify-content: center;
    gap: 14px;
  }
  .hero-trust-badges {
    justify-content: center;
    gap: 24px;
    margin-top: 28px;
  }
  .hero-preview-card {
    max-width: 580px;
    margin: 0 auto;
  }
  .sim-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .partner-box-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .withdrawal-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .nav-links,
  .nav-actions .btn {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(8, 19, 52, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--gold-light);
    cursor: pointer;
    transition: all 0.25s ease;
  }
  .mobile-menu-btn:hover,
  .mobile-menu-btn:active {
    background: rgba(29, 78, 216, 0.25);
    border-color: var(--gold-primary);
    box-shadow: 0 0 16px var(--gold-glow);
    transform: scale(0.96);
  }
}

/* Smartphone Portrait & Landscape (<= 640px) */
@media (max-width: 640px) {
  .container {
    padding: 0 18px;
  }
  .section-padding {
    padding: 60px 0;
  }
  .section-header {
    margin-bottom: 36px;
    text-align: center;
  }
  .section-title {
    font-size: clamp(1.7rem, 5.5vw, 2.3rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
  }
  .section-subtitle {
    font-size: 0.95rem;
    padding: 0 8px;
  }

  /* Top Notice Bar Mobile */
  .top-notice-bar {
    font-size: 0.76rem;
    padding: 6px 0;
  }
  .notice-inner {
    justify-content: space-between;
  }

  /* Brand Logo Sizing on Mobile */
  .brand-logo-icon {
    width: 32px;
    height: 32px;
  }
  .brand-ace {
    font-size: 1.22rem;
  }
  .brand-divider {
    font-size: 0.75rem;
    margin: 0 2px;
  }
  .brand-global {
    font-size: 0.82rem;
    letter-spacing: 0.22em;
  }
  .brand-tagline {
    font-size: 0.62rem;
  }

  /* Hero Section Mobile */
  .hero-section {
    padding: 95px 0 40px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    min-height: 50px;
    font-size: 1rem;
    padding: 14px 20px;
    justify-content: center;
    border-radius: 12px;
  }
  .hero-trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
  }
  .trust-badge-item {
    padding: 10px 8px;
    background: rgba(8, 19, 52, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    text-align: center;
  }
  .trust-badge-val {
    font-size: 1.05rem;
    font-weight: 800;
  }
  .trust-badge-lbl {
    font-size: 0.65rem;
    line-height: 1.2;
  }

  /* Tiers Grid Mobile */
  .tiers-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .tier-card {
    padding: 24px 20px;
    border-radius: 16px;
  }
  .tier-card.featured {
    border-width: 1.5px;
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.18), inset 0 0 20px rgba(212, 175, 55, 0.05);
  }
  .tier-name {
    font-size: 1.4rem;
  }
  .tier-rate-badge {
    font-size: 0.92rem;
    padding: 6px 14px;
  }
  .tier-card .btn {
    width: 100%;
    min-height: 48px;
  }

  /* Principles Grid Mobile */
  .principles-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .principle-card {
    padding: 22px 18px;
  }

  /* Simulator Card Mobile */
  .sim-card {
    padding: 22px 18px;
    border-radius: 16px;
  }
  .sim-results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .sim-res-val {
    font-size: 1.35rem;
  }

  /* Partner 5-2-1-1 Structure Mobile */
  .referral-structure-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .ref-level-card {
    padding: 16px 14px;
    border-radius: 14px;
  }
  .ref-percent-pill {
    font-size: 1.25rem;
  }

  /* Withdrawal Policy Mobile */
  .wd-features-subgrid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .wd-feature-box {
    padding: 18px 16px;
  }

  /* Day Off Alert Banner */
  .dayoff-banner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 18px 16px;
  }
  .dayoff-info {
    flex-direction: column;
    gap: 8px;
  }

  /* Quick Stats & Footer */
  .quick-stats-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  /* Modal Form Mobile */
  .modal-box {
    padding: 24px 18px;
    max-width: 92vw;
    border-radius: 18px;
  }
}

/* Extra Small Screens (<= 380px) */
@media (max-width: 380px) {
  .brand-global {
    display: none;
  }
  .brand-divider {
    display: none;
  }
  .brand-tagline {
    font-size: 0.58rem;
  }
  .trust-badge-val {
    font-size: 0.95rem;
  }
  .sim-results-grid {
    grid-template-columns: 1fr;
  }
  .referral-structure-cards {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Mobile Drawer - Ultra-Luxury Theme
   ========================================================================== */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 86vw);
  height: 100vh;
  background: linear-gradient(180deg, #050f2e 0%, #03081c 60%, #02071a 100%);
  border-left: 1px solid rgba(212, 175, 55, 0.25);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 2500;
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: right 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -14px 0 45px rgba(0, 0, 0, 0.85);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  overflow-y: auto;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 10px;
  border-left: 2px solid transparent;
  transition: all 0.2s ease;
}

.drawer-link:hover,
.drawer-link:active {
  color: #ffffff;
  background: rgba(212, 175, 55, 0.1);
  border-left-color: var(--gold-primary);
  transform: translateX(4px);
}

.drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.drawer-close:hover,
.drawer-close:active {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

