/* ==========================================================================
   NEXUS GROWTH MEDIA LLC - DESIGN SYSTEM & STYLESHEET
   Dark High-Tech Corporate Theme with Emerald Accent (#00C853)
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Color Palette */
  --bg-primary: #121212;
  --bg-secondary: #1E1E1E;
  --bg-tertiary: #252525;
  --bg-card-hover: #2D2D2D;
  --border-color: #333333;
  --border-highlight: #444444;
  
  /* Text Colors */
  --text-primary: #FFFFFF;
  --text-secondary: #A0A0A0;
  --text-muted: #6E6E6E;

  /* Accent Colors */
  --accent-emerald: #00C853;
  --accent-emerald-hover: #00E65C;
  --accent-emerald-dark: #009624;
  --accent-emerald-glow: rgba(0, 200, 83, 0.25);
  --accent-emerald-subtle: rgba(0, 200, 83, 0.08);

  /* Typography */
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Shadows & Glows */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.8);
  --glow-emerald: 0 0 20px rgba(0, 200, 83, 0.35);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --max-width: 1240px;
  --header-height: 80px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

section[id] {
  scroll-margin-top: var(--header-height);
}

body {
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #2E2E2E;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-emerald-dark);
}

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

p {
  color: var(--text-secondary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

/* Background Ambient Glow Effects */
.bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 83, 0.07) 0%, rgba(18, 18, 18, 0) 70%);
  pointer-events: none;
  z-index: 0;
}
.bg-glow-1 {
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
}
.bg-glow-2 {
  top: 1400px;
  right: -200px;
}

/* --- Container & Grid System --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.text-center { text-align: center; }
.text-gradient {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--accent-emerald) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Section Header Component */
.section-header {
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent-emerald);
  background: var(--accent-emerald-subtle);
  border: 1px solid rgba(0, 200, 83, 0.2);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-description {
  font-size: 1.125rem;
  max-width: 680px;
  margin: 0 auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-emerald {
  background-color: var(--accent-emerald);
  color: #000000;
}
.btn-emerald:hover {
  background-color: var(--accent-emerald-hover);
  box-shadow: var(--glow-emerald);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border-color: var(--border-highlight);
}
.btn-outline:hover {
  background-color: var(--bg-tertiary);
  border-color: var(--accent-emerald);
  color: var(--accent-emerald);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

.full-width { width: 100%; }

/* --- HEADER & NAVBAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1000;
  transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

.navbar.scrolled {
  background-color: rgba(18, 18, 18, 0.95);
  border-bottom-color: var(--border-color);
  box-shadow: var(--shadow-md);
}

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

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

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition-fast);
}

.brand-logo:hover .logo-icon {
  border-color: var(--accent-emerald);
  box-shadow: var(--glow-emerald);
}

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

.brand-name {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  line-height: 1;
}

.brand-sub {
  font-size: 0.65rem;
  font-family: var(--font-mono);
  color: var(--accent-emerald);
  letter-spacing: 0.12em;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent-emerald);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.compliance-badge-header {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-secondary);
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-emerald);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-emerald);
}

.mobile-drawer-cta {
  display: none;
}

/* Hamburger Button */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger-btn span {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.hamburger-btn.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* --- HERO SECTION --- */
.hero-section {
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: 90px;
  position: relative;
}

.hero-wrapper {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--accent-emerald);
  border-radius: 50%;
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(0, 200, 83, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 200, 83, 0); }
}

.badge-text {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: rgba(30, 30, 30, 0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  max-width: 780px;
  margin: 0 auto;
  backdrop-filter: blur(8px);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
}

.trust-divider {
  width: 1px;
  height: 16px;
  background-color: var(--border-color);
}

/* --- LIVE PERFORMANCE METRICS (STATS) --- */
.stats-section {
  padding: 90px 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 36px;
}

.stat-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-emerald);
}

.stat-card.featured-stat {
  border-color: rgba(0, 200, 83, 0.4);
  background: linear-gradient(180deg, var(--bg-tertiary) 0%, rgba(0, 200, 83, 0.04) 100%);
}

.stat-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-emerald);
  background: var(--accent-emerald-subtle);
  border: 1px solid rgba(0, 200, 83, 0.3);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.stat-icon {
  width: 52px;
  height: 52px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 20px;
}

.stat-bar {
  width: 100%;
  height: 4px;
  background: var(--bg-secondary);
  border-radius: 2px;
  overflow: hidden;
}

.stat-fill {
  height: 100%;
  background: var(--accent-emerald);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--accent-emerald);
}

.stats-subtext {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* --- HYBRID BUSINESS MODEL SECTION --- */
.hybrid-section {
  padding: 100px 0;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.model-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.model-card:hover {
  border-color: var(--border-highlight);
}

.model-card.featured-model {
  border-color: var(--accent-emerald);
  background: linear-gradient(180deg, var(--bg-secondary) 0%, rgba(0, 200, 83, 0.05) 100%);
  box-shadow: var(--shadow-lg);
}

.featured-ribbon {
  position: absolute;
  top: -14px;
  right: 32px;
  background: var(--accent-emerald);
  color: #000;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
}

.model-header {
  margin-bottom: 20px;
}

.model-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.tag-emerald {
  color: var(--accent-emerald);
}

.model-title {
  font-size: 1.65rem;
  margin-bottom: 6px;
}

.model-tagline {
  font-size: 0.9375rem;
  color: var(--accent-emerald);
  font-weight: 600;
}

.model-description {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

.model-subheading {
  font-size: 0.9375rem;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.model-capabilities {
  margin-bottom: 32px;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 12px;
}

.capability-list li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-icon {
  color: var(--accent-emerald);
  font-weight: bold;
}

.model-financials {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 36px;
}

.financials-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.model-terms-list {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.term-box {
  display: flex;
  gap: 16px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  padding: 18px;
  border-radius: var(--radius-md);
}

.term-num {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-emerald);
  background: var(--accent-emerald-subtle);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.term-content h5 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.term-content p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.model-footer {
  margin-top: auto;
}

/* --- ADVERTISING PLATFORMS & MEDIA EXPERTISE --- */
.platforms-section {
  padding: 100px 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.platform-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all var(--transition-fast);
}

.platform-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-emerald);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.platform-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.platform-name {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.platform-sub {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent-emerald);
  margin-bottom: 14px;
}

.platform-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- COMPLIANCE & BANKING DISCLOSURES SECTION --- */
.compliance-section {
  padding: 100px 0;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.compliance-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color var(--transition-fast);
}

.compliance-card:hover {
  border-color: var(--border-highlight);
}

.compliance-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-emerald-subtle);
  border: 1px solid rgba(0, 200, 83, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.compliance-title {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.compliance-content {
  font-size: 0.9125rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
}

.compliance-footer {
  margin-top: auto;
}

.badge-status {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-emerald);
  background: rgba(0, 200, 83, 0.08);
  border: 1px solid rgba(0, 200, 83, 0.25);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.banking-review-strip {
  background: linear-gradient(90deg, #1A1A1A 0%, var(--bg-secondary) 50%, #1A1A1A 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.strip-header h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.strip-header p {
  font-size: 0.84rem;
  color: var(--text-secondary);
}

.institution-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.inst-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

/* --- CONTACT & PARTNERSHIP INQUIRY --- */
.contact-section {
  padding: 100px 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-title {
  font-size: 2.25rem;
  margin-top: 8px;
  margin-bottom: 16px;
}

.contact-subtitle {
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.detail-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-item h6 {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.contact-detail-item p {
  font-size: 0.95rem;
  color: var(--text-primary);
}

.link-emerald {
  color: var(--accent-emerald);
}
.link-emerald:hover {
  text-decoration: underline;
}

.kyb-quick-notice {
  background: var(--bg-tertiary);
  border: 1px dashed var(--border-highlight);
  border-radius: var(--radius-md);
  padding: 20px;
}

.kyb-quick-notice p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Contact Form */
.contact-form-container {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.form-heading {
  font-size: 1.35rem;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.required {
  color: var(--accent-emerald);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-main);
  font-size: 0.9375rem;
  color: var(--text-primary);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-emerald);
  box-shadow: 0 0 0 3px var(--accent-emerald-subtle);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%20%23A0A0A0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-disclaimer {
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

.legal-trigger {
  color: var(--text-secondary);
  text-decoration: none;
  cursor: pointer;
}
.legal-trigger:hover {
  color: var(--accent-emerald);
  text-decoration: none;
}

.form-success-message {
  text-align: center;
  padding: 40px 20px;
}

.form-success-message.hidden {
  display: none;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-emerald-subtle);
  border: 2px solid var(--accent-emerald);
  border-radius: 50%;
  color: var(--accent-emerald);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.form-success-message h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.form-success-message p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* --- FOOTER & LEGAL --- */
.footer {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 80px 0 40px 0;
}

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

.brand-col .footer-about {
  margin-top: 16px;
  margin-bottom: 20px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.corporate-badge-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}

.footer-heading {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent-emerald);
  text-decoration: none;
}

.entity-address p {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-divider {
  height: 1px;
  background: var(--border-color);
  margin-bottom: 32px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}

/* --- MODAL DIALOG STYLES --- */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 1;
  transition: opacity var(--transition-fast);
}

.modal-backdrop.hidden {
  display: none;
  opacity: 0;
  pointer-events: none;
}

.modal-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 24px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--accent-emerald);
  color: #000;
}

.modal-body h2 {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.modal-body .modal-date {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent-emerald);
  margin-bottom: 24px;
  display: block;
}

.modal-body h3 {
  font-size: 1.15rem;
  margin-top: 24px;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.modal-body p, .modal-body ul {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 14px;
}

.modal-body ul {
  padding-left: 20px;
  list-style: disc;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1024px) {
  .hero-title { font-size: 2.75rem; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .models-grid { grid-template-columns: 1fr; }
  .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .compliance-grid { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .d-none-mobile { display: none !important; }
  .hamburger-btn { display: flex; }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--bg-primary);
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 24px;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    border-top: 1px solid var(--border-color);
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
  }

  .nav-link {
    font-size: 1.15rem;
  }

  .mobile-drawer-cta {
    display: block;
    width: 100%;
  }

  .hero-title { font-size: 2.15rem; }
  .hero-subtitle { font-size: 1.05rem; }

  .stats-grid { grid-template-columns: 1fr; }
  .platforms-grid { grid-template-columns: 1fr; }

  .hero-trust-bar {
    flex-direction: column;
    gap: 12px;
    border-radius: var(--radius-md);
  }
  .trust-divider {
    display: none;
  }

  .banking-review-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}
