/* ==========================================================================
   DANAVERIFY - EXECUTIVE FINTECH & TELECOM LANDING PAGE STYLESHEET
   Aesthetics: Ultra-Modern, Clean Silicon Valley Fintech, High Contrast, Crisp Glass
   ========================================================================== */

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

/* --- Design Tokens & Color Systems --- */
:root {
  /* DARK THEME (Default) */
  --bg-main: #060913;
  --bg-surface: #0b1124;
  --bg-surface-elevated: #111a36;
  --bg-card: rgba(14, 21, 46, 0.75);
  --bg-card-hover: rgba(20, 30, 66, 0.9);
  --bg-glass: rgba(6, 9, 19, 0.8);
  
  --input-bg: rgba(7, 12, 28, 0.95);
  --input-border: rgba(255, 255, 255, 0.1);
  --input-text: #f8fafc;
  --input-placeholder: #64748b;

  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-glass: rgba(255, 255, 255, 0.12);
  --border-glow: rgba(0, 242, 254, 0.3);

  --primary: #00e5ff;
  --primary-glow: rgba(0, 229, 255, 0.35);
  --primary-gradient: linear-gradient(135deg, #00e5ff 0%, #0072ff 100%);
  
  --accent-emerald: #10b981;
  --accent-emerald-glow: rgba(16, 185, 129, 0.3);
  --accent-purple: #8b5cf6;
  --accent-amber: #f59e0b;

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-inverse: #050814;

  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 35px rgba(0, 229, 255, 0.18);
  
  --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max: 1200px;
}

/* LIGHT THEME TOKENS */
[data-theme="light"] {
  --bg-main: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-elevated: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.88);
  
  --input-bg: #f8fafc;
  --input-border: #cbd5e1;
  --input-text: #0f172a;
  --input-placeholder: #94a3b8;

  --border-subtle: #e2e8f0;
  --border-glass: #e2e8f0;
  --border-glow: rgba(0, 114, 255, 0.25);

  --primary: #0284c7;
  --primary-glow: rgba(2, 132, 199, 0.2);
  --primary-gradient: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-inverse: #ffffff;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 25px -4px rgba(0, 0, 0, 0.07), 0 4px 10px -2px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 30px rgba(2, 132, 199, 0.12);
}

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

html {
  scroll-behavior: smooth;
  font-size: 15px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.55;
  overflow-x: hidden;
  position: relative;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

/* Ambient Subtle Background Orbs */
.bg-ambient-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(140px);
  z-index: 0;
  opacity: 0.35;
}

[data-theme="light"] .bg-ambient-orb {
  opacity: 0.15;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.4) 0%, transparent 70%);
  top: -120px;
  left: -100px;
}

.orb-2 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.35) 0%, transparent 70%);
  top: 35%;
  right: -150px;
}

.orb-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, transparent 70%);
  bottom: 5%;
  left: 15%;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

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

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Gradient Text Utilities */
.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gradient-text-emerald {
  background: linear-gradient(135deg, #10b981 0%, #00e5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--text-inverse);
  box-shadow: 0 2px 14px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-1.5px);
  box-shadow: 0 6px 20px rgba(0, 229, 255, 0.45);
  filter: brightness(1.06);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
}

[data-theme="light"] .btn-secondary {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--border-glow);
  transform: translateY(-1.5px);
}

[data-theme="light"] .btn-secondary:hover {
  background: #e2e8f0;
}

.btn-emerald {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 2px 14px var(--accent-emerald-glow);
}

.btn-emerald:hover {
  transform: translateY(-1.5px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
}

.btn-sm {
  padding: 7px 16px;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 13px 28px;
  font-size: 0.98rem;
}

/* ==========================================================================
   HEADER & NAVBAR (COMPACT & PROFESSIONAL REDUCTION)
/* ==========================================================================
   HEADER & NAVBAR (COMPACT & SLEEK EXECUTIVE FINTECH)
   ========================================================================== */
.announcement-bar {
  background: rgba(0, 229, 255, 0.05);
  border-bottom: 1px solid var(--border-subtle);
  padding: 4px 16px;
  font-size: 0.74rem;
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 100;
  backdrop-filter: blur(8px);
}

[data-theme="light"] .announcement-bar {
  background: rgba(2, 132, 199, 0.05);
  border-bottom-color: #e2e8f0;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.announcement-link {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 700;
  margin-left: 4px;
}

.badge-tag {
  background: var(--primary-gradient);
  color: var(--text-inverse);
  padding: 2px 7px;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

/* Compact Floating Navbar */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 99;
  padding: 7px 0;
  transition: all var(--transition-fast);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: var(--bg-glass);
  border-bottom: 1px solid var(--border-subtle);
}

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

/* Brand Logo (Reduced & Separated cleanly from Nav) */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  flex-shrink: 0;
  margin-right: 28px;
}

.brand-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #050814;
  box-shadow: 0 2px 8px var(--primary-glow);
  flex-shrink: 0;
}

.brand-text span {
  color: var(--primary);
}

/* Nav Links (Single-Line, Sleek spacing) */
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  white-space: nowrap;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 2px;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

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

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.theme-toggle-btn {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

[data-theme="light"] .theme-toggle-btn {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.theme-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--primary);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.4rem;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION (BALANCED PROPORTIONS & EXECUTIVE FINTECH POLISH)
   ========================================================================== */
.hero-section {
  padding: 48px 0 70px;
  position: relative;
}

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

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

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: #10b981;
  width: fit-content;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
  font-size: 2.85rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

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

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.hero-trust-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  margin-top: 6px;
}

.trust-metric-item h4 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.trust-metric-item p {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   INTERACTIVE SIMULATOR CARD (LIGHT & DARK ADAPTIVE)
   ========================================================================== */
.hero-interactive-card {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
}

[data-theme="dark"] .hero-interactive-card {
  border-color: var(--border-glow);
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.7), var(--shadow-glow);
}

.interactive-card-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.02);
}

[data-theme="dark"] .interactive-card-header {
  background: rgba(255, 255, 255, 0.02);
}

.interactive-card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 800;
}

.live-badge {
  font-size: 0.68rem;
  background: rgba(0, 229, 255, 0.12);
  color: var(--primary);
  border: 1px solid var(--primary-glow);
  padding: 3px 9px;
  border-radius: var(--radius-full);
  font-weight: 800;
  letter-spacing: 0.04em;
}

/* Tabs */
.sim-tabs {
  display: flex;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.04);
  gap: 6px;
  border-bottom: 1px solid var(--border-subtle);
}

[data-theme="dark"] .sim-tabs {
  background: rgba(0, 0, 0, 0.25);
}

.sim-tab-btn {
  flex: 1;
  padding: 8px 12px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
}

.sim-tab-btn:hover {
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] .sim-tab-btn:hover {
  background: rgba(255, 255, 255, 0.06);
}

.sim-tab-btn.active {
  background: var(--primary-gradient);
  color: var(--text-inverse);
  box-shadow: 0 2px 10px var(--primary-glow);
}

.sim-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sim-panel {
  display: none;
  flex-direction: column;
  gap: 15px;
}

.sim-panel.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

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

/* Adaptive Form Controls */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input, .form-select {
  width: 100%;
  padding: 10px 14px;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: var(--radius-md);
  color: var(--input-text);
  font-size: 0.9rem;
  outline: none;
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

/* Network Pills Grid */
.network-pills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.network-pill {
  padding: 8px 6px;
  text-align: center;
  border-radius: var(--radius-md);
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--text-primary);
}

.network-pill:hover {
  border-color: var(--primary);
}

.network-pill.active {
  border-color: var(--primary);
  background: rgba(0, 229, 255, 0.08);
  box-shadow: 0 0 0 1px var(--primary);
}

.network-pill.mtn.active { border-color: #f59e0b; color: #f59e0b; background: rgba(245, 158, 11, 0.1); }
.network-pill.airtel.active { border-color: #ef4444; color: #ef4444; background: rgba(239, 68, 68, 0.1); }
.network-pill.glo.active { border-color: #10b981; color: #10b981; background: rgba(16, 185, 129, 0.1); }
.network-pill.nine_mobile.active { border-color: #84cc16; color: #84cc16; background: rgba(132, 204, 22, 0.1); }

/* Simulation Summary Box */
.sim-summary-box {
  background: rgba(0, 229, 255, 0.04);
  border: 1px solid rgba(0, 229, 255, 0.18);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

[data-theme="light"] .sim-summary-box {
  background: #f0fdfa;
  border-color: #ccfbf1;
}

.sim-summary-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.sim-summary-price {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--primary);
}

.sim-cashback-badge {
  font-size: 0.72rem;
  color: #10b981;
  font-weight: 800;
}

.sim-result-preview {
  padding: 10px 14px;
  border-radius: var(--radius-md);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  font-size: 0.82rem;
  color: #10b981;
  display: none;
  align-items: center;
  gap: 8px;
}

.sim-result-preview.active {
  display: flex;
  animation: fadeIn 0.25s ease;
}

/* ==========================================================================
   PARTNERS / NETWORKS STRIP
   ========================================================================== */
.partners-section {
  padding: 28px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(0, 0, 0, 0.015);
}

[data-theme="dark"] .partners-section {
  background: rgba(255, 255, 255, 0.01);
}

.partners-title {
  text-align: center;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.partners-marquee {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.partner-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.partner-item:hover {
  border-color: var(--border-glow);
  color: var(--text-primary);
  transform: translateY(-1.5px);
}

.partner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot-mtn { background: #f59e0b; }
.dot-airtel { background: #ef4444; }
.dot-glo { background: #10b981; }
.dot-9mobile { background: #84cc16; }
.dot-dstv { background: #0284c7; }
.dot-gotv { background: #f97316; }
.dot-startimes { background: #e11d48; }
.dot-disco { background: #10b981; }
.dot-sms { background: #00e5ff; }

/* ==========================================================================
   PLATFORM VISUAL SHOWCASE (HIGH-TECH FINTECH TERMINAL & 3D MOCKUP)
   ========================================================================== */
.showcase-section {
  padding: 50px 0 70px;
  position: relative;
  overflow: visible;
}

.showcase-header {
  margin-bottom: 36px;
}

.hero-visual-wrap {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 10px;
}

/* Ambient glow spotlight behind the mockup */
.visual-glow-backdrop {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(0, 229, 255, 0.18) 0%, rgba(139, 92, 246, 0.12) 40%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

[data-theme="light"] .visual-glow-backdrop {
  background: radial-gradient(ellipse at center, rgba(2, 132, 199, 0.12) 0%, rgba(139, 92, 246, 0.08) 40%, transparent 70%);
  filter: blur(50px);
}

/* Executive Terminal Frame */
.hero-visual-card {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  background: #080d1e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 70px -15px rgba(0, 0, 0, 0.6), 0 0 50px rgba(0, 229, 255, 0.15);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

[data-theme="light"] .hero-visual-card {
  background: #ffffff;
  border: 1px solid rgba(203, 213, 225, 0.8);
  box-shadow: 0 20px 60px -15px rgba(15, 23, 42, 0.12), 0 0 35px rgba(2, 132, 199, 0.1);
}

.hero-visual-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 35px 85px -15px rgba(0, 0, 0, 0.7), 0 0 60px rgba(0, 229, 255, 0.22);
}

[data-theme="light"] .hero-visual-card:hover {
  box-shadow: 0 30px 75px -15px rgba(15, 23, 42, 0.16), 0 0 45px rgba(2, 132, 199, 0.18);
}

/* Terminal Chrome Bar */
.terminal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  background: rgba(14, 21, 46, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .terminal-bar {
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
}

.terminal-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.t-red { background: #ff5f56; box-shadow: 0 0 6px rgba(255, 95, 86, 0.4); }
.t-yellow { background: #ffbd2e; box-shadow: 0 0 6px rgba(255, 189, 46, 0.4); }
.t-green { background: #27c93f; box-shadow: 0 0 6px rgba(39, 201, 63, 0.4); }

.terminal-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 16px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-secondary);
}

[data-theme="light"] .terminal-search {
  background: #ffffff;
  border-color: #cbd5e1;
  color: #475569;
}

.terminal-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #10b981;
}

.terminal-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: pulse 1.8s infinite;
}

/* Screen Image Area */
.terminal-screen {
  position: relative;
  overflow: hidden;
  background: #02040a;
}

.showcase-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 0.6s ease;
}

.hero-visual-card:hover .showcase-img {
  transform: scale(1.02);
}

.terminal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 9, 19, 0) 60%, rgba(6, 9, 19, 0.6) 100%);
  pointer-events: none;
}

[data-theme="light"] .terminal-overlay {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.4) 100%);
}

/* Floating Glass Badges */
.floating-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: var(--radius-lg);
  background: rgba(11, 17, 36, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 229, 255, 0.18);
  animation: float 5s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

[data-theme="light"] .floating-badge {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(203, 213, 225, 0.9);
  box-shadow: 0 15px 35px -5px rgba(15, 23, 42, 0.12), 0 0 25px rgba(2, 132, 199, 0.12);
}

.floating-badge:hover {
  transform: translateY(-4px) scale(1.02);
}

.floating-badge-1 {
  top: 18%;
  left: -24px;
  animation-delay: 0s;
}

.floating-badge-2 {
  bottom: 16%;
  right: -24px;
  animation-delay: 1.5s;
}

.floating-badge-3 {
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  animation: floatCenter 6s ease-in-out infinite;
}

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

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

.badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-icon.vtu {
  background: rgba(0, 229, 255, 0.12);
  color: #00e5ff;
  border: 1px solid rgba(0, 229, 255, 0.3);
}

[data-theme="light"] .badge-icon.vtu {
  background: #e0f2fe;
  color: #0284c7;
  border-color: #bae6fd;
}

.badge-icon.sms {
  background: rgba(139, 92, 246, 0.12);
  color: #8b5cf6;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

[data-theme="light"] .badge-icon.sms {
  background: #ede9fe;
  color: #7c3aed;
  border-color: #ddd6fe;
}

.badge-icon.tv {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

[data-theme="light"] .badge-icon.tv {
  background: #d1fae5;
  color: #059669;
  border-color: #a7f3d0;
}

.badge-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.badge-tagline {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.badge-info h5 {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-primary);
}

.badge-sub {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.dot-emerald { background: #10b981; }
.dot-cyan { background: #00e5ff; }
.dot-purple { background: #8b5cf6; }

/* 4-Pillar Strip Under Showcase */
.showcase-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1040px;
  margin: 48px auto 0;
  padding: 24px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pillar-icon {
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
}

.pillar-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.pillar-item p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid var(--border-glow);
  color: var(--primary);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: fit-content;
  margin: 0 auto;
}

.section-title {
  font-size: 2.35rem;
  letter-spacing: -0.03em;
}

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

/* ==========================================================================
   SERVICES GRID (REFINED CARDS)
   ========================================================================== */
.services-section {
  padding: 80px 0;
  position: relative;
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-md);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.icon-cyan { background: rgba(0, 229, 255, 0.1); color: var(--primary); border: 1px solid rgba(0, 229, 255, 0.25); }
.icon-purple { background: rgba(139, 92, 246, 0.1); color: #a78bfa; border: 1px solid rgba(139, 92, 246, 0.25); }
.icon-emerald { background: rgba(16, 185, 129, 0.1); color: #10b981; border: 1px solid rgba(16, 185, 129, 0.25); }
.icon-amber { background: rgba(245, 158, 11, 0.1); color: #f59e0b; border: 1px solid rgba(245, 158, 11, 0.25); }
.icon-indigo { background: rgba(99, 102, 241, 0.1); color: #818cf8; border: 1px solid rgba(99, 102, 241, 0.25); }
.icon-rose { background: rgba(244, 63, 94, 0.1); color: #fb7185; border: 1px solid rgba(244, 63, 94, 0.25); }

.service-card-title {
  font-size: 1.25rem;
  font-weight: 800;
}

.service-card-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.service-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
}

.service-features-list li {
  font-size: 0.82rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features-list li svg {
  color: #10b981;
  flex-shrink: 0;
}

/* ==========================================================================
   SMARTCARD VALIDATOR DEMO
   ========================================================================== */
.validator-section {
  padding: 60px 0;
  position: relative;
}

.validator-card {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.validator-demo-box {
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.verified-customer-card {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.customer-info h5 {
  font-size: 0.95rem;
  color: #10b981;
}

.customer-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.verified-stamp {
  background: #10b981;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.68rem;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

/* ==========================================================================
   PRICING MATRIX
   ========================================================================== */
.pricing-section {
  padding: 80px 0;
  position: relative;
}

.pricing-filter-pills {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.pricing-pill {
  padding: 7px 18px;
  border-radius: var(--radius-full);
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.pricing-pill:hover, .pricing-pill.active {
  background: var(--primary-gradient);
  color: var(--text-inverse);
  border-color: transparent;
  box-shadow: 0 2px 12px var(--primary-glow);
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.price-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.price-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--primary-gradient);
  color: var(--text-inverse);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
}

.price-plan-name {
  font-size: 1.15rem;
  font-weight: 800;
}

.price-amount-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-amount {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
}

.price-unit {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.price-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 0;
  margin: 4px 0;
}

.price-details-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ==========================================================================
   VIRTUAL NUMBERS & LIVE SMS FEED
   ========================================================================== */
.sms-section {
  padding: 70px 0;
  position: relative;
}

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

.sms-ticker-card {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sms-bubble {
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.sms-app-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.sms-app-icon.whatsapp { background: #25d366; color: #fff; }
.sms-app-icon.telegram { background: #229ed9; color: #fff; }
.sms-app-icon.google { background: #ea4335; color: #fff; }
.sms-app-icon.openai { background: #10a37f; color: #fff; }

.sms-bubble-content h6 {
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sms-code-highlight {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1.5px;
  background: rgba(0, 229, 255, 0.08);
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
}

/* ==========================================================================
   DEVELOPER API & CODE BOX
   ========================================================================== */
.api-section {
  padding: 80px 0;
  position: relative;
}

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

.code-mockup {
  background: #040711;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.code-mockup-header {
  background: rgba(255, 255, 255, 0.04);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.code-lang-tabs {
  display: flex;
  gap: 4px;
}

.code-tab-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.code-tab-btn.active, .code-tab-btn:hover {
  color: var(--primary);
  background: rgba(0, 229, 255, 0.1);
}

.code-copy-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.code-copy-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  color: var(--text-primary);
}

.code-body {
  padding: 20px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.65;
  color: #cbd5e1;
  overflow-x: auto;
}

.code-token-keyword { color: #f43f5e; }
.code-token-string { color: #10b981; }
.code-token-variable { color: #00e5ff; }
.code-token-comment { color: #64748b; font-style: italic; }

/* ==========================================================================
   WHY CHOOSE US PILLARS
   ========================================================================== */
.pillars-section {
  padding: 70px 0;
  position: relative;
}

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

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.pillar-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-glow);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid var(--primary-glow);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.pillar-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
}

.pillar-card p {
  font-size: 0.84rem;
  line-height: 1.55;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-section {
  padding: 70px 0;
  position: relative;
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.testimonial-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-3px);
}

.stars-row {
  display: flex;
  gap: 3px;
  color: #f59e0b;
  font-size: 0.85rem;
}

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

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: var(--text-inverse);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
}

.author-meta h5 {
  font-size: 0.88rem;
  font-weight: 800;
}

.author-meta p {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-section {
  padding: 70px 0;
  position: relative;
}

.faq-container {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--border-glow);
}

.faq-question {
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  gap: 12px;
}

.faq-chevron {
  font-size: 1.1rem;
  color: var(--primary);
  transition: transform var(--transition-fast);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  padding: 0 20px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 350px;
  padding-bottom: 18px;
}

/* ==========================================================================
   FINAL CTA BANNER
   ========================================================================== */
.cta-section {
  padding: 60px 0 90px;
  position: relative;
}

.cta-banner {
  background: radial-gradient(circle at 10% 20%, rgba(0, 229, 255, 0.14) 0%, rgba(139, 92, 246, 0.12) 50%, var(--bg-surface-elevated) 100%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: 48px 36px;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.cta-banner-content {
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.cta-title {
  font-size: 2.5rem;
  letter-spacing: -0.03em;
}

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

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

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--bg-main);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 24px;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-col h5 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
}

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

.footer-link {
  font-size: 0.84rem;
  color: var(--text-secondary);
}

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

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-icon-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.social-icon-btn:hover {
  color: var(--primary);
  background: rgba(0, 229, 255, 0.12);
  border-color: var(--border-glow);
  transform: translateY(-1.5px);
}

/* Toast */
.dana-toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-glow);
  box-shadow: var(--shadow-md);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 999999;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-normal);
}

.dana-toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-content {
    text-align: center;
    align-items: center;
  }
  .hero-desc {
    margin: 0 auto;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-trust-metrics {
    width: 100%;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sms-grid, .api-grid, .validator-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .showcase-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
  .floating-badge-1 {
    left: 10px;
    top: 12px;
  }
  .floating-badge-2 {
    right: 10px;
    bottom: 12px;
  }
  .floating-badge-3 {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .section-title {
    font-size: 1.9rem;
  }
  .cta-title {
    font-size: 1.95rem;
  }
  .nav-links {
    display: none;
  }
  .nav-actions .btn {
    display: none !important;
  }
  .mobile-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    cursor: pointer;
  }
  [data-theme="light"] .mobile-toggle {
    background: #f1f5f9;
    border-color: #cbd5e1;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .pricing-cards-grid {
    grid-template-columns: 1fr;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .hero-trust-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .validator-card {
    padding: 20px;
  }
  .cta-banner {
    padding: 32px 18px;
  }
  .showcase-img {
    height: 280px;
  }
  .terminal-search {
    display: none;
  }
  .showcase-pillars {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }
  .floating-badge {
    position: static;
    margin-top: 10px;
    width: 100%;
    animation: none;
  }
}

/* Mobile Drawer */
.mobile-menu-drawer {
  position: fixed;
  inset: 0;
  background: var(--bg-main);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
}

.mobile-menu-drawer.open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1.15rem;
  font-weight: 700;
}
