:root {
  /* Luxury Gold & Deep Dark Theme (Matching Admin utils.css) */
  --theme-bg-dark: #000000;
  --theme-bg-secondary: #0A0805;
  --theme-card-bg: rgba(20, 16, 10, 0.93);
  --theme-card-bg-hover: rgba(32, 25, 14, 0.85);
  --theme-border-color: rgba(212, 175, 55, 0.3);
  --theme-border-color-hover: rgba(255, 215, 0, 0.6);
  
  /* Primary Yellow & Golden Accents */
  --gold-primary: #D4AF37;
  --gold-800: #B8860B;
  --gold-bright: #FFD700;
  --gold-light: #FFF8E7;
  --gold-glow: rgba(255, 215, 0, 0.25);
  --gold-subtle: rgba(212, 175, 55, 0.15);
  
  /* Status Colors */
  --emerald: #10B981;
  --emerald-glow: rgba(16, 185, 129, 0.25);
  --coral: #EF4444;
  
  /* Text Contrast */
  --theme-text-light: #FFFFFF;
  --theme-text-secondary: #E6D7B8;
  --theme-text-muted: rgba(255, 255, 255, 0.65);
  --theme-text-dim: #9E8F70;
  
  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #B8860B 100%);
  --gradient-gold-reverse: linear-gradient(135deg, #B8860B 0%, #D4AF37 50%, #FFD700 100%);
  --gradient-gold-subtle: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
  --gradient-dark: linear-gradient(180deg, rgba(20, 16, 10, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
  
  /* Fonts & Shadows */
  --font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --theme-blur: blur(16px);
  --theme-card-shadow: 0 8px 32px 0 rgba(10, 9, 5, 0.6), 0 0 15px 0 rgba(212, 175, 55, 0.1);
  --theme-card-shadow-hover: 0 12px 40px 0 rgba(10, 9, 5, 0.8), 0 0 25px 0 rgba(255, 215, 0, 0.25);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--theme-bg-dark);
  color: var(--theme-text-light);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 50% 10%, rgba(255, 215, 0, 0.08) 0%, transparent 60%), 
    radial-gradient(circle at 10% 80%, rgba(184, 134, 11, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 90% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 55%);
  background-attachment: fixed;
}

/* Glassmorphism Utilities (Gold Themed) */
.glass {
  background: var(--theme-card-bg);
  backdrop-filter: var(--theme-blur);
  -webkit-backdrop-filter: var(--theme-blur);
  border: 1px solid var(--theme-border-color);
  border-radius: 18px;
  box-shadow: var(--theme-card-shadow);
  transition: var(--transition);
}

.glass:hover {
  border-color: var(--theme-border-color-hover);
  box-shadow: var(--theme-card-shadow-hover);
  background: var(--theme-card-bg-hover);
}

.glass-accent {
  background: var(--gradient-gold-subtle);
  border: 1px solid var(--theme-border-color);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--theme-text-light);
  font-weight: 700;
  line-height: 1.25;
}

h1 {
  font-size: 3.8rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

p {
  color: var(--theme-text-muted);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.gradient-text, .text-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-emerald {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-cyan {
  color: var(--gold-bright) !important;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

/* Buttons (Gold & Dark Palette) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

.btn-primary, .btn-gold {
  background: var(--gradient-gold);
  color: #000000 !important;
  box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-primary:hover, .btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.45);
  background: var(--gradient-gold-reverse);
  color: #000000 !important;
}

.btn-emerald {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 20px var(--emerald-glow);
}

.btn-emerald:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
  color: #FFFFFF;
}

.btn-outline {
  background: rgba(20, 16, 10, 0.6);
  border: 1px solid var(--theme-border-color);
  color: var(--gold-bright);
}

.btn-outline:hover {
  background: rgba(255, 215, 0, 0.12);
  border-color: var(--gold-bright);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 0 15px var(--gold-glow);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

/* Top Institutional Live Bar */
.top-ticker-bar {
  background: #000000;
  border-bottom: 1px solid var(--theme-border-color);
  padding: 0.4rem 0;
  font-size: 0.85rem;
  color: var(--theme-text-muted);
  overflow: hidden;
  position: relative;
  z-index: 101;
}

.top-ticker-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.us-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--gold-bright);
  padding: 0.2rem 0.6rem;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid var(--theme-border-color);
  border-radius: 20px;
  font-size: 0.78rem;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: var(--gold-bright);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-bright);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(255, 215, 0, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

.ticker-items {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.ticker-items::-webkit-scrollbar { display: none; }

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.ticker-item .symbol {
  font-weight: 700;
  color: var(--gold-primary);
}
.ticker-item .price {
  color: #FFFFFF;
}
.ticker-item .change.up {
  color: var(--gold-bright);
}
.ticker-item .change.down {
  color: var(--coral);
}

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: var(--theme-blur);
  -webkit-backdrop-filter: var(--theme-blur);
  border-bottom: 1px solid var(--theme-border-color);
  padding: 0.85rem 0;
  transition: var(--transition);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFFFFF;
}

.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--theme-text-muted);
  position: relative;
  padding: 0.4rem 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-bright);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gradient-gold);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-nav-actions {
  display: none;
}

.hamburger {
  display: none;
  background: transparent;
  border: none;
  color: var(--gold-bright);
  cursor: pointer;
  padding: 0.5rem;
}

/* Badge & Tags (Gold Style) */
.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid var(--theme-border-color);
  color: var(--gold-bright);
  margin-bottom: 1.25rem;
}

.badge-tag.gold {
  background: rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.5);
  color: var(--gold-bright);
}

.badge-tag.emerald {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--emerald);
}

/* Hero Section */
.hero {
  padding: 5rem 0 6rem 0;
  position: relative;
  overflow: hidden;
}

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

.hero-content h1 {
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 620px;
  color: var(--theme-text-secondary);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--theme-border-color);
}

.stat-item h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-bright);
  margin-bottom: 0.25rem;
  font-family: var(--font-mono);
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--theme-text-dim);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Visual / Cards */
.hero-visual {
  position: relative;
}

.hero-visual-card {
  position: relative;
  padding: 1.25rem;
  background: radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.15) 0%, rgba(20, 16, 10, 0.95) 75%);
  border: 1px solid var(--theme-border-color);
  border-radius: 24px;
  box-shadow: var(--theme-card-shadow);
  overflow: hidden;
}

.hero-visual-card img.hero-main-img {
  width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(255, 215, 0, 0.15);
  display: block;
  animation: float 4s ease-in-out infinite;
}

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

.floating-pill {
  position: absolute;
  padding: 0.75rem 1.25rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--theme-border-color);
}

.floating-pill.pill-left {
  bottom: 1.5rem;
  left: -1.5rem;
}

.floating-pill.pill-right {
  top: 1.5rem;
  right: -1.5rem;
}

.floating-pill .icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.floating-pill .title {
  font-size: 0.8rem;
  color: var(--theme-text-muted);
}
.floating-pill .val {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-bright);
  font-family: var(--font-mono);
}

/* USA Compliance & Credibility Strip */
.usa-credibility-strip {
  background: rgba(15, 12, 8, 0.85);
  border-top: 1px solid var(--theme-border-color);
  border-bottom: 1px solid var(--theme-border-color);
  padding: 2rem 0;
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cred-item .cred-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid var(--theme-border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.cred-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
  color: #FFFFFF;
}

.cred-item p {
  font-size: 0.825rem;
  color: var(--theme-text-muted);
  margin-bottom: 0;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem auto;
}

.section-header h2 {
  font-size: 2.5rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--theme-text-muted);
}

/* AI Trading Bots Section */
.bots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.bot-card {
  padding: 2.2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bot-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bot-badge.active-bot {
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid var(--theme-border-color-hover);
  color: var(--gold-bright);
}

.bot-badge.quant-bot {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--theme-border-color);
  color: var(--gold-primary);
}

.bot-badge.hft-bot {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--gold-bright);
}

.bot-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid var(--theme-border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold-bright);
  margin-bottom: 1.5rem;
}

.bot-metrics {
  background: rgba(10, 8, 5, 0.85);
  border: 1px solid var(--theme-border-color);
  border-radius: 12px;
  padding: 1.25rem;
  margin: 1.5rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.metric-box .lbl {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--theme-text-dim);
  display: block;
}

.metric-box .val {
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  font-family: var(--font-mono);
}

.metric-box .val.profit {
  color: var(--gold-bright);
}

/* Interactive Currency Matrix / Heatmap */
.matrix-container {
  overflow-x: auto;
  padding: 1.5rem;
  border-radius: 18px;
}

.matrix-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  min-width: 600px;
}

.matrix-cell {
  padding: 0.85rem 0.5rem;
  text-align: center;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-mono);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.matrix-cell.header {
  background: rgba(255, 215, 0, 0.06);
  color: #FFFFFF;
  font-weight: 700;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.matrix-cell.positive {
  background: rgba(255, 215, 0, 0.12);
  color: var(--gold-bright);
  border: 1px solid var(--theme-border-color);
}

.matrix-cell.negative {
  background: rgba(239, 68, 68, 0.15);
  color: var(--coral);
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.matrix-cell.empty {
  background: rgba(255, 255, 255, 0.02);
}

/* Platform Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  padding: 2.2rem;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid var(--theme-border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-bright);
  margin-bottom: 1.5rem;
}

/* USA Operations & Architecture Section */
.usa-arch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.usa-datacenter-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.dc-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  background: rgba(15, 12, 8, 0.85);
  border: 1px solid var(--theme-border-color);
  border-radius: 14px;
}

.dc-item .flag-icon {
  width: 36px;
  height: 24px;
  border-radius: 4px;
  object-fit: cover;
}

.dc-item .latency-tag {
  margin-left: auto;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--gold-bright);
  font-size: 0.9rem;
  padding: 0.3rem 0.75rem;
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid var(--theme-border-color);
  border-radius: 20px;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testi-card {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testi-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.testi-header img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  object-fit: cover;
}

.testi-header .name {
  font-weight: 700;
  color: #FFFFFF;
  font-size: 1.05rem;
}

.testi-header .role {
  font-size: 0.85rem;
  color: var(--theme-text-dim);
}

.testi-stars {
  color: var(--gold-bright);
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* FAQ Accordion */
.faq-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-card {
  padding: 1.5rem 2rem;
  border-radius: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: #FFFFFF;
}

.faq-toggle-icon {
  font-size: 1.2rem;
  color: var(--gold-bright);
  transition: transform 0.3s ease;
}

.faq-card.open .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-body {
  display: none;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid var(--theme-border-color);
  color: var(--theme-text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-card.open .faq-body {
  display: block;
}

/* CTA Banner (Gold Glow) */
.cta-banner-wrapper {
  background: radial-gradient(circle at 100% 50%, rgba(255, 215, 0, 0.15) 0%, rgba(184, 134, 11, 0.15) 40%, rgba(20, 16, 10, 0.98) 100%);
  border: 1px solid var(--theme-border-color-hover);
  border-radius: 28px;
  padding: 4.5rem 3.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--theme-card-shadow-hover);
}

.cta-banner-content {
  max-width: 680px;
}

.cta-banner-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

/* Footer */
footer {
  background: #000000;
  border-top: 1px solid var(--theme-border-color);
  padding: 5rem 0 2rem 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  font-size: 1.1rem;
  color: var(--gold-bright);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col ul li a {
  color: var(--theme-text-muted);
  font-size: 0.95rem;
}

.footer-col ul li a:hover {
  color: var(--gold-bright);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  color: var(--theme-text-muted);
}

.footer-contact-item i {
  color: var(--gold-bright);
  margin-top: 0.2rem;
  font-size: 1.1rem;
}

.footer-disclaimer {
  padding: 2rem 0;
  border-top: 1px solid var(--theme-border-color);
  border-bottom: 1px solid var(--theme-border-color);
  margin-bottom: 2rem;
  font-size: 0.8rem;
  color: var(--theme-text-dim);
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--theme-text-dim);
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid var(--theme-border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
}

.social-btn:hover {
  background: var(--gold-primary);
  color: #000000;
  border-color: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 0 12px var(--gold-glow);
}

/* Glass & Card Utilities */
.glass {
  background: var(--theme-card-bg);
  backdrop-filter: var(--theme-blur);
  -webkit-backdrop-filter: var(--theme-blur);
  border: 1px solid var(--theme-border-color);
  box-shadow: var(--theme-card-shadow);
}

/* Flexbox Utilities */
.d-flex { display: flex !important; }
.d-inline-flex { display: inline-flex !important; }
.d-block { display: block !important; }
.flex-column { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.align-items-center { align-items: center !important; }
.align-items-start { align-items: flex-start !important; }
.align-items-end { align-items: flex-end !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-start { justify-content: flex-start !important; }
.justify-content-end { justify-content: flex-end !important; }

/* Grid Utilities */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.75rem;
  margin-left: -0.75rem;
}
.g-2 { margin-right: -0.25rem; margin-left: -0.25rem; }
.g-2 > * { padding-right: 0.25rem; padding-left: 0.25rem; }
.g-3 { margin-right: -0.5rem; margin-left: -0.5rem; }
.g-3 > * { padding-right: 0.5rem; padding-left: 0.5rem; }
.g-4 { margin-right: -0.75rem; margin-left: -0.75rem; }
.g-4 > * { padding-right: 0.75rem; padding-left: 0.75rem; }
.col-12 { flex: 0 0 100%; max-width: 100%; width: 100%; box-sizing: border-box; }
.col-6 { flex: 0 0 50%; max-width: 50%; width: 50%; box-sizing: border-box; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; width: 33.333333%; box-sizing: border-box; }
.col-sm-6 { flex: 0 0 50%; max-width: 50%; width: 50%; box-sizing: border-box; }
@media (max-width: 576px) {
  .col-sm-6 { flex: 0 0 100%; max-width: 100%; width: 100%; }
}

/* Spacing: Gaps */
.gap-1 { gap: 0.25rem !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }
.gap-5 { gap: 2rem !important; }

/* Spacing: Padding */
.p-0 { padding: 0 !important; }
.p-1 { padding: 0.25rem !important; }
.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 1.25rem !important; }
.p-4 { padding: 1.75rem !important; }
.p-5 { padding: 2.5rem !important; }
.px-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
.px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }

/* Spacing: Margin */
.m-0 { margin: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 2rem !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 2rem !important; }
.me-1 { margin-right: 0.25rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.me-3 { margin-right: 1rem !important; }
.ms-auto { margin-left: auto !important; }
.me-auto { margin-right: auto !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }

/* Border Radius */
.rounded-1 { border-radius: 6px !important; }
.rounded-2 { border-radius: 10px !important; }
.rounded-3 { border-radius: 14px !important; }
.rounded-4 { border-radius: 20px !important; }
.rounded-circle { border-radius: 50% !important; }
.overflow-hidden { overflow: hidden !important; }

/* Typography & Colors */
.text-white { color: #FFFFFF !important; }
.text-muted { color: var(--theme-text-muted) !important; }
.text-secondary { color: var(--theme-text-secondary) !important; }
.text-gold { color: var(--gold-bright) !important; }
.text-primary { color: var(--gold-primary) !important; }
.text-emerald { color: var(--emerald) !important; }
.text-cyan { color: var(--gold-bright) !important; }
.text-danger { color: #EF4444 !important; }
.text-center { text-align: center !important; }
.text-start { text-align: left !important; }
.text-end { text-align: right !important; }
.fw-semibold { font-weight: 600 !important; }
.fw-bold { font-weight: 700 !important; }
.small { font-size: 0.875rem !important; }
.fs-1 { font-size: 2.5rem !important; }
.fs-2 { font-size: 2rem !important; }
.fs-3 { font-size: 1.5rem !important; }
.fs-4 { font-size: 1.25rem !important; }
.fs-5 { font-size: 1.1rem !important; }
.w-100 { width: 100% !important; }

/* Contact Cards & Form Components */
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-radius: 14px;
  background: var(--theme-card-bg);
  border: 1px solid var(--theme-border-color);
  box-shadow: var(--theme-card-shadow);
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: var(--theme-border-color-hover);
  background: var(--theme-card-bg-hover);
  transform: translateY(-2px);
  box-shadow: var(--theme-card-shadow-hover);
}

.contact-info-card .icon-box {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid var(--theme-border-color);
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-top: 2px;
}

.contact-info-card strong {
  display: block;
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-info-card span {
  color: var(--theme-text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  display: block;
}

.contact-form-card {
  background: var(--theme-card-bg);
  border: 1px solid var(--theme-border-color);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--theme-card-shadow);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-control, .form-select {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid var(--theme-border-color);
  border-radius: 10px;
  color: #FFFFFF;
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
  box-sizing: border-box;
}

.form-control:focus, .form-select:focus {
  border-color: var(--gold-bright);
  box-shadow: 0 0 12px var(--gold-glow);
  background: rgba(10, 8, 5, 0.95);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* USA Datacenter & Infrastructure Section */
.usa-arch-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.usa-datacenter-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.75rem;
}

.dc-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  background: var(--theme-card-bg);
  border: 1px solid var(--theme-border-color);
  box-shadow: var(--theme-card-shadow);
  transition: var(--transition);
}

.dc-item:hover {
  border-color: var(--theme-border-color-hover);
  background: var(--theme-card-bg-hover);
  transform: translateY(-2px);
  box-shadow: var(--theme-card-shadow-hover);
}

.dc-item .flag-icon {
  width: 36px;
  height: 24px;
  min-width: 36px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.dc-item strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
}

.dc-item small {
  font-size: 0.82rem;
  color: var(--theme-text-muted);
}

.latency-tag {
  margin-left: auto;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid var(--theme-border-color);
  color: var(--gold-bright);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

/* Infrastructure Dashboard Visual Card */
.infra-img-card {
  background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.12) 0%, rgba(20, 16, 10, 0.95) 100%);
  border: 1px solid var(--theme-border-color);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--theme-card-shadow);
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}

.infra-img-card img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.6));
  transition: var(--transition);
}

.infra-img-card:hover img {
  transform: scale(1.02);
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.2rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 540px; margin: 0 auto; }
  .bots-grid, .features-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 3rem 2rem;
    gap: 1.5rem;
    transition: var(--transition);
    border-right: 1px solid var(--theme-border-color);
  }
  .nav-links.show { left: 0; }
  .nav-actions { display: none; }
  .mobile-nav-actions { display: flex; flex-direction: column; width: 100%; gap: 1rem; margin-top: 1.5rem; }
  .hamburger { display: block; }
  
  .credibility-grid { grid-template-columns: repeat(2, 1fr); }
  .usa-arch-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.9rem; }
  .section { padding: 4rem 0; }
  .bots-grid, .features-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .credibility-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .top-ticker-bar { display: none; }
  .floating-pill { display: none; }
}