/* ==========================================================================
   OTax Liquid Glass Design System
   Enterprise B2B Dark Mode Aesthetic for Egyptian E-Invoicing & Tax Compliance
   ========================================================================== */

:root {
  --bg-dark: #0B0F1C;
  --bg-card: rgba(18, 26, 46, 0.65);
  --bg-card-liquid: rgba(26, 38, 66, 0.75);
  --border-glass: rgba(255, 255, 255, 0.12);
  --border-glow: rgba(46, 142, 255, 0.35);
  --accent: #2E8EFF;
  --accent-glow: #00F2FE;
  --accent-2: #8A2BE2;
  --good: #00E676;
  --warn: #FFB300;
  --danger: #FF5252;
  --text: #EAF1FF;
  --text-muted: #93A2C4;
  --text-dim: #64748B;
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  --font-ar: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text);
  scroll-behavior: smooth;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

html[dir="rtl"] {
  font-family: var(--font-ar);
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  background: radial-gradient(circle at 50% -20%, #1A2B4C 0%, var(--bg-dark) 70%);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  z-index: 10000;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 20px; }

/* Container & Grids */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Glassmorphism Classes */
.glass {
  background: var(--bg-card);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.glass::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
}

.glass-liquid {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%), var(--bg-card-liquid);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.glass-liquid:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 242, 254, 0.6);
  box-shadow: 0 40px 90px rgba(46, 142, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(11, 15, 28, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

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

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-glow) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 0 20px rgba(46, 142, 255, 0.5);
}

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

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text);
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

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

.lang-switch {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}
.lang-switch:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #0062FF 100%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(46, 142, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(46, 142, 255, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* Hero Section */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.4;
}
.orb.a { width: 500px; height: 500px; background: var(--accent); top: -100px; left: -100px; }
.orb.b { width: 450px; height: 450px; background: var(--accent-2); top: 100px; right: -100px; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: rgba(46, 142, 255, 0.12);
  border: 1px solid rgba(46, 142, 255, 0.3);
  color: var(--accent-glow);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 10px var(--good);
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

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

.hero-lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  padding: 6px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   OTax Intelligent Integration Data Hub Component (Aimicromind Style)
   ========================================================================== */
.hub-diagram-card {
  position: relative;
  width: 100%;
  height: 440px;
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}

.hub-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  opacity: 0.4;
  mask-image: radial-gradient(circle at center, black 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 85%);
}

/* SVG Pulse Lines */
.hub-lines-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.line-base {
  stroke: rgba(46, 142, 255, 0.18);
  stroke-width: 2;
  stroke-dasharray: 4 4;
}

.line-pulse {
  stroke: #00F2FE;
  stroke-width: 3;
  stroke-dasharray: 12 120;
  animation: laserFlow 2.5s linear infinite;
  filter: drop-shadow(0 0 8px #00F2FE);
}

.line-pulse.delay-1 { animation-delay: 0.6s; stroke: #2E8EFF; }
.line-pulse.delay-2 { animation-delay: 1.2s; stroke: #00E676; }
.line-pulse.delay-3 { animation-delay: 1.8s; stroke: #FFB300; }

@keyframes laserFlow {
  0% { stroke-dashoffset: 132; }
  100% { stroke-dashoffset: 0; }
}

/* Corner Nodes */
.hub-node {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.hub-node:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: var(--accent-glow);
  box-shadow: 0 16px 40px rgba(0, 242, 254, 0.25);
}

.node-tl { top: 32px; left: 24px; }
.node-tr { top: 32px; right: 24px; }
.node-bl { bottom: 32px; left: 24px; }
.node-br { bottom: 32px; right: 24px; }

html[dir="rtl"] .node-tl { top: 32px; right: 24px; left: auto; }
html[dir="rtl"] .node-tr { top: 32px; left: 24px; right: auto; }
html[dir="rtl"] .node-bl { bottom: 32px; right: 24px; left: auto; }
html[dir="rtl"] .node-br { bottom: 32px; left: 24px; right: auto; }

.node-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 142, 255, 0.15);
  color: var(--accent-glow);
  border: 1px solid rgba(46, 142, 255, 0.3);
}

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

.node-info strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

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

/* Central Hub Core */
.hub-center-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.core-badge {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 15, 28, 0.98) 0%, rgba(20, 32, 60, 0.92) 100%);
  border: 2px solid var(--accent-glow);
  box-shadow: 0 0 35px rgba(0, 242, 254, 0.6), inset 0 0 20px rgba(46, 142, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  pointer-events: auto;
}

.core-logo {
  max-width: 98px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.8));
}

.core-pulse-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid var(--accent-glow);
  pointer-events: none;
  opacity: 0;
  animation: coreRingPulse 3.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.ring-1 { width: 175px; height: 175px; animation-delay: 0s; }
.ring-2 { width: 220px; height: 220px; animation-delay: 1.1s; }
.ring-3 { width: 270px; height: 270px; animation-delay: 2.2s; }

@keyframes coreRingPulse {
  0% { transform: translate(-50%, -50%) scale(0.6); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; }
}

.core-label {
  position: absolute;
  top: calc(50% + 82px);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  white-space: nowrap;
  z-index: 5;
  pointer-events: auto;
}

.core-label strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  text-shadow: 0 0 12px rgba(0, 242, 254, 0.5);
}

.core-label span {
  display: block;
  font-size: 0.8rem;
  color: var(--accent-glow);
  font-weight: 600;
}

/* Section Common */
.section {
  padding: 90px 0;
  position: relative;
}

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

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 12px;
  margin-bottom: 16px;
}

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

/* Impact Metrics Banner */
.metrics-banner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.metric-card {
  padding: 32px;
  text-align: center;
}

.metric-number {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-glow) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.metric-label {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Bento Grid 4 Pillars */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.bento-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(46, 142, 255, 0.12);
  border: 1px solid rgba(46, 142, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-glow);
  margin-bottom: 24px;
}

.bento-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.bento-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* CPA & Multi-Tenant Spotlight */
.cpa-banner {
  padding: 60px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

/* Pricing Toggle Switch */
.pricing-switch-wrapper {
  display: flex;
  justify-content: center;
  margin: 20px 0 36px;
}

.pricing-switch-container {
  display: flex;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 5px;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  gap: 6px;
}

.pricing-switch-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 22px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-switch-btn.active {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-blue) 100%);
  box-shadow: 0 4px 18px rgba(0, 229, 255, 0.35);
}

.discount-badge {
  background: rgba(16, 185, 129, 0.2);
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.4);
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 700;
}

.pricing-switch-btn.active .discount-badge {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

/* Enhanced Pricing Card Styling & Pixel-Perfect Alignment */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.price-card {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 229, 255, 0.15);
}

.price-card.featured-card {
  border: 2px solid var(--accent);
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.08) 0%, rgba(15, 23, 42, 0.85) 100%);
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.2);
}

.price-card-top {
  display: flex;
  flex-direction: column;
  height: 170px;
  justify-content: flex-start;
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-blue) 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(0, 229, 255, 0.4);
  z-index: 2;
}

html[dir="rtl"] .popular-badge {
  right: auto;
  left: 18px;
}

.price-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  min-height: 52px;
  display: flex;
  align-items: center;
  line-height: 1.25;
  padding-right: 60px;
}

html[dir="rtl"] .price-title {
  padding-right: 0;
  padding-left: 60px;
}

.price-amount-wrap {
  display: flex;
  align-items: baseline;
  min-height: 44px;
  margin: 6px 0 4px;
}

.price-amount {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--accent-glow);
  line-height: 1;
}

.price-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-left: 6px;
}

html[dir="rtl"] .price-period {
  margin-left: 0;
  margin-right: 6px;
}

.price-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  min-height: 24px;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.price-features-heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin: 12px 0 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price-features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #E2E8F0;
  margin-bottom: 12px;
}

.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid rgba(0, 229, 255, 0.4);
  color: var(--accent-glow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  flex-shrink: 0;
}

.price-card .btn {
  margin-top: auto;
  width: 100%;
  text-align: center;
}

/* Comparison Tables */
.comp-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
  margin-top: 40px;
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

html[dir="rtl"] .comp-table {
  text-align: right;
}

.comp-table th, .comp-table td {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comp-table th {
  background: rgba(18, 26, 46, 0.9);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.comp-table th.highlight {
  color: var(--accent-glow);
  background: rgba(46, 142, 255, 0.15);
}

.comp-table td.highlight {
  background: rgba(46, 142, 255, 0.06);
  font-weight: 600;
}

.comp-table tr:last-child td {
  border-bottom: none;
}

/* FAQ Accordions */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.faq-item {
  padding: 24px;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-answer {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 12px;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: #070A14;
  border-top: 1px solid var(--border-glass);
  padding: 80px 0 40px;
  margin-top: 100px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 16px;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-dim);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid, .cpa-banner, .bento-grid, .faq-grid {
    grid-template-columns: 1fr;
  }
  .hero-title { font-size: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hub-node { padding: 8px 12px; }
  .node-info strong { font-size: 0.8rem; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .hero-cta-group { flex-direction: column; width: 100%; }
  .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .hub-diagram-card { height: 380px; }
  .hub-node { position: relative; inset: auto; margin: 4px; }
}

/* Calculator & Ecosystem Trust Bar Styles */
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 24px;
  align-items: center;
}

.styled-slider {
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  outline: none;
}

.styled-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-glow);
  box-shadow: 0 0 12px var(--accent-glow);
  cursor: pointer;
}

.badge-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.badge-pill:hover {
  background: rgba(0, 229, 255, 0.1);
  border-color: var(--accent-glow);
  color: #fff;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

@media (max-width: 992px) {
  .calc-grid {
    grid-template-columns: 1fr;
  }
  .calc-results {
    grid-template-columns: 1fr !important;
  }
}

