/* ===== Theme Variables ===== */
:root {
  --bg: #080B16;
  --surface: #0E1428;
  --surface-alt: #0C1224;
  --card: #142040;
  --border: #1C2D50;
  --text: #F0F4FF;
  --text-secondary: #8892B0;
  --text-muted: #5E6E8A;
  --text-dim: #4A5A78;
  --text-bright: #E8EDFF;
  --primary: #00E5FF;
  --primary-dark: #00B8D4;
  --primary-rgb: 0, 229, 255;
  --secondary: #FF2D78;
  --secondary-rgb: 255, 45, 120;
  --accent: #00FF88;
  --accent-rgb: 0, 255, 136;
  --error: #FF4060;
  --success: #00FF88;
}

[data-theme="light"] {
  --bg: #F4F7FC;
  --surface: #EDF1F8;
  --surface-alt: #E4EAF4;
  --card: #FFFFFF;
  --border: #C8D4E8;
  --text: #0A1030;
  --text-secondary: #3D4F70;
  --text-muted: #5A6A88;
  --text-dim: #8892B0;
  --text-bright: #0E1840;
  --primary: #0097A7;
  --primary-dark: #007A8A;
  --primary-rgb: 0, 151, 167;
  --secondary: #D4265C;
  --secondary-rgb: 212, 38, 92;
  --accent: #00C06A;
  --accent-rgb: 0, 192, 106;
  --error: #D4265C;
  --success: #00C06A;
}

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

/* ===== Animations ===== */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

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

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 229, 255, 0.15); }
  50% { box-shadow: 0 0 40px rgba(0, 229, 255, 0.3); }
}

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

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===== Global Reset ===== */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.app {
  padding-top: 4px;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.1;
}

p {
  margin: 0;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: color 0.2s ease;
}

a:hover {
  color: var(--secondary);
}

::selection {
  background-color: #00E5FF;
  color: #080B16;
}

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3.5rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #F0F4FF;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #8892B0;
  text-align: center;
  max-width: 700px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

/* ===== Badge ===== */
.badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  border: 1px solid rgba(var(--primary-rgb), 0.3);
  color: var(--primary);
  background-color: rgba(var(--primary-rgb), 0.06);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* ===== Buttons ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.25);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  background-color: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: rgba(var(--primary-rgb), 0.05);
  box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.1);
}

.btn-lg {
  padding: 1.125rem 2.25rem;
  font-size: 1.0625rem;
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* ===== Gradient Text ===== */
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--primary));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 4s ease infinite;
}

.glow-line {
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin-bottom: 1.5rem;
  box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.4);
}

/* ===== Navbar ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(8, 11, 22, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(28, 45, 80, 0.5);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  width: 100%;
  max-width: 100%;
  padding: 0 4rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #00E5FF, #00B8D4);
  font-size: 1.25rem;
  font-weight: 800;
  color: #080B16;
  box-shadow: 0 2px 10px rgba(0, 229, 255, 0.3);
}

.logo-icon-img {
  width: 40px;
  height: 40px;
  display: block;
}

.footer-logo-img {
  width: 36px;
  height: 36px;
  display: block;
}

.logo-text {
  font-size: 1.375rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

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

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #8892B0;
  cursor: pointer;
  transition: color 0.2s ease;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00E5FF, #FF2D78);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.nav-link:hover {
  color: #FFFFFF;
}

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

.nav-link.active {
  color: #00E5FF;
}

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

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.5rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #080B16;
  background: linear-gradient(135deg, #00E5FF, #00B8D4);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 229, 255, 0.2);
}

.btn-nav-cta:hover {
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.35);
  transform: translateY(-1px);
}

/* ===== Footer ===== */
.footer {
  background-color: #0A1628;
  border-top: 1px solid #1C2D50;
  padding: 4rem 0 2rem 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00E5FF, transparent);
}

.footer-top {
  display: flex;
  gap: 4rem;
}

.footer-brand {
  flex: 0 0 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #00E5FF, #FF2D78);
  font-size: 1.125rem;
  font-weight: 800;
  color: #080B16;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
}

.footer-tagline {
  font-size: 0.9375rem;
  color: #5E6E8A;
  line-height: 1.6;
}

.footer-grid {
  display: flex;
  flex: 1;
  gap: 2rem;
  justify-content: space-between;
}

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

.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #E8EDFF;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.footer-col a,
.footer-col span {
  font-size: 0.9375rem;
  color: #5E6E8A;
  cursor: pointer;
  transition: color 0.2s ease;
}

.footer-col a:hover,
.footer-col span:hover {
  color: #00E5FF;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 2rem 0;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background-color: rgba(0, 229, 255, 0.06);
  border: 1px solid rgba(0, 229, 255, 0.12);
  font-size: 0.875rem;
  font-weight: 500;
  color: #8892B0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.social-link:hover {
  border-color: rgba(0, 229, 255, 0.3);
  color: #00E5FF;
  background-color: rgba(0, 229, 255, 0.1);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background-color: rgba(0, 229, 255, 0.1);
  font-size: 0.75rem;
  font-weight: 700;
  color: #00E5FF;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-contact {
  font-size: 0.875rem;
  color: #5E6E8A;
}

.footer-copy {
  font-size: 0.8125rem;
  color: #4A5A78;
}

/* ===== Hero ===== */
.hero {
  padding: 6rem 0 4rem 0;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: transparent;
  width: 100%;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background-image: url('/bms-control-room.jpg');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 100%);
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 11, 22, 0.4) 45%, var(--bg) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-container {
  display: flex;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  padding: 0 4rem;
}

.hero-content {
  flex: 1;
}

.hero-visual {
  flex: 1;
  animation: float 6s ease-in-out infinite;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  background-color: rgba(0, 229, 255, 0.06);
  border: 1px solid rgba(0, 229, 255, 0.15);
  margin-bottom: 2rem;
  animation: glow 3s ease-in-out infinite;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #00E5FF;
  box-shadow: 0 0 8px #00E5FF;
  animation: pulse 2s ease-in-out infinite;
}

.status-text {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #00E5FF;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.1875rem;
  color: #8892B0;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-integrations {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.integration-label {
  font-size: 0.8125rem;
  color: #5E6E8A;
  font-weight: 500;
}

.integration-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  background-color: rgba(30, 41, 59, 0.6);
  color: #8892B0;
  border: 1px solid rgba(30, 41, 59, 0.8);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.02em;
}

.hero-image {
  margin-top: 1.5rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  opacity: 0.85;
}

.hero-bg-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* ===== Dashboard Mockup ===== */
.dashboard-mockup {
  border-radius: 16px;
  border: 1px solid rgba(30, 41, 59, 0.8);
  background-color: #0E1428;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 229, 255, 0.05);
  position: relative;
}

.dashboard-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00E5FF, #FF2D78, transparent);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background-color: rgba(13, 27, 42, 0.8);
  border-bottom: 1px solid #1C2D50;
}

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

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

.dot-red { background-color: #FF5F56; }
.dot-yellow { background-color: #FFBD2E; }
.dot-green { background-color: #27C93F; }

.mockup-title {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #5E6E8A;
}

.mockup-body {
  display: flex;
  min-height: 300px;
}

.mockup-sidebar {
  width: 160px;
  padding: 1rem;
  border-right: 1px solid #1C2D50;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: rgba(10, 22, 40, 0.5);
}

.mockup-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0.5rem;
  border-radius: 6px;
  transition: background-color 0.2s;
}

.mockup-stat:hover {
  background-color: rgba(30, 41, 59, 0.5);
}

.stat-label {
  font-size: 0.625rem;
  color: #5E6E8A;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
}

.stat-value.accent { color: #00FF88; }
.stat-value.green { color: #00E5FF; }
.stat-value.warning { color: #FF4060; }

.mockup-main {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.mockup-chart-header span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #5E6E8A;
}

.chart-live {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #00E5FF;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #00E5FF;
  animation: pulse 1.5s ease-in-out infinite;
}

.mockup-chart {
  flex: 1;
  display: flex;
  align-items: flex-end;
}

.chart-bars {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  width: 100%;
  height: 100%;
}

.chart-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #00E5FF, rgba(0, 229, 255, 0.15));
  transition: opacity 0.2s;
}

.chart-bar:hover {
  opacity: 0.8;
}

.mockup-bottom-row {
  display: flex;
  gap: 0.75rem;
}

.mockup-mini-card {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background-color: rgba(27, 40, 56, 0.6);
  border: 1px solid rgba(30, 41, 59, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mini-label {
  font-size: 0.8125rem;
  color: #8892B0;
}

.mini-status {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.mini-status.green {
  color: #00E5FF;
  background-color: rgba(0, 229, 255, 0.1);
}

.mini-status.warning {
  color: #00FF88;
  background-color: rgba(0, 255, 136, 0.1);
}

/* ===== Problem Section ===== */
.problem-section {
  background-color: #0C1224;
  position: relative;
}

.problem-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #1C2D50, transparent);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.problem-card {
  padding: 2rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(27, 40, 56, 0.8), rgba(13, 27, 42, 0.8));
  border: 1px solid rgba(30, 41, 59, 0.6);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF4060, #00FF88);
  opacity: 0;
  transition: opacity 0.3s;
}

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

.problem-card:hover {
  border-color: rgba(239, 68, 68, 0.3);
  transform: translateY(-2px);
}

.problem-card-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 1rem;
}

.problem-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: #FF4060;
  line-height: 1;
}

.problem-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #5E6E8A;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.problem-card-desc {
  font-size: 0.9375rem;
  color: #8892B0;
  line-height: 1.7;
}

.problem-solution {
  padding: 3rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.04), rgba(255, 45, 120, 0.04));
  border: 1px solid rgba(0, 229, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.problem-solution::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #00E5FF, #FF2D78);
  border-radius: 2px;
}

.problem-solution-content {
  max-width: 700px;
  padding-left: 1rem;
}

.problem-solution-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.problem-solution-content p {
  color: #8892B0;
  line-height: 1.7;
}

/* ===== AI Overview Section ===== */
.ai-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.ai-card {
  padding: 2rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(27, 40, 56, 0.8), rgba(13, 27, 42, 0.8));
  border: 1px solid rgba(30, 41, 59, 0.6);
  transition: all 0.3s ease;
  position: relative;
}

.ai-card:hover {
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: 0 8px 30px rgba(0, 229, 255, 0.08);
  transform: translateY(-3px);
}

.ai-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.ai-card p {
  font-size: 0.9375rem;
  color: #8892B0;
  line-height: 1.7;
}

.ai-data-flow {
  padding: 3rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(27, 40, 56, 0.6), rgba(13, 27, 42, 0.6));
  border: 1px solid rgba(30, 41, 59, 0.6);
  position: relative;
}

.ai-data-flow h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.data-flow-grid {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.data-flow-col {
  flex: 1;
  padding: 1.5rem;
  border-radius: 12px;
  background-color: rgba(10, 22, 40, 0.5);
  border: 1px solid rgba(30, 41, 59, 0.4);
}

.data-flow-col h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #00E5FF;
  margin-bottom: 1rem;
}

.data-flow-col ul {
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.data-flow-col li {
  font-size: 0.875rem;
  color: #8892B0;
  line-height: 1.6;
}

.data-flow-arrow {
  font-size: 2rem;
  color: #00E5FF;
  font-weight: 700;
  align-self: center;
  flex-shrink: 0;
}

/* ===== Features Section ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  padding: 2rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(27, 40, 56, 0.8), rgba(13, 27, 42, 0.8));
  border: 1px solid rgba(30, 41, 59, 0.6);
  transition: all 0.3s ease;
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00E5FF, #FF2D78);
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity 0.3s;
}

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

.feature-card:hover {
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.9375rem;
  color: #8892B0;
  line-height: 1.7;
}

/* ===== Benefits Section ===== */
.benefits-section {
  background-color: #0C1224;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  padding: 2rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(27, 40, 56, 0.8), rgba(13, 27, 42, 0.8));
  border: 1px solid rgba(30, 41, 59, 0.6);
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-3px);
}

.benefit-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.875rem;
  color: #8892B0;
  line-height: 1.7;
}

.benefit-stat {
  display: block;
  font-size: 2.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00E5FF, #FF2D78);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

/* ===== CTA Section ===== */
.cta-section {
  padding-bottom: 6rem;
}

.cta-box {
  padding: 4rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.06), rgba(255, 45, 120, 0.06), rgba(0, 229, 255, 0.06));
  border: 1px solid rgba(0, 229, 255, 0.12);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(0, 229, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.cta-box h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-box p {
  font-size: 1.0625rem;
  color: #8892B0;
  max-width: 540px;
  margin: 0 auto 2rem auto;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* ===== Page Hero (Technology, Pricing, About) ===== */
.page-hero {
  padding: 8rem 0 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero:not(.hero-tech):not(.hero-res):not(.hero-calc):not(.hero-contact)::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 229, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero.hero-tech {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero.hero-tech::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background-image: url('/network-infrastructure.jpg');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 100%);
}

.page-hero.hero-tech::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 11, 22, 0.4) 40%, var(--bg) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-tech .container {
  position: relative;
  z-index: 2;
}

.page-hero.hero-res {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero.hero-res::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background-image: url('https://images.unsplash.com/photo-1504868584819-f8e8b4b6d7e3?w=1200&q=80');
  background-size: cover;
  background-position: center 60%;
  z-index: 0;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 100%);
}

.page-hero.hero-res::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 11, 22, 0.4) 40%, var(--bg) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-res .container {
  position: relative;
  z-index: 2;
}

.page-hero.hero-calc {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero.hero-calc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1200&q=80');
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 100%);
}

.page-hero.hero-calc::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 11, 22, 0.4) 40%, var(--bg) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-calc .container {
  position: relative;
  z-index: 2;
}

.page-hero.hero-contact {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero.hero-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background-image: url('https://images.unsplash.com/photo-1556761175-4b46a572b786?w=1200&q=80');
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 100%);
}

.page-hero.hero-contact::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 11, 22, 0.4) 40%, var(--bg) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-contact .container {
  position: relative;
  z-index: 2;
}

.page-hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.page-hero-subtitle {
  font-size: 1.1875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 0 auto;
}

.tech-hero-image {
  margin-top: 2rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ===== Technology: Tech Detail Grid ===== */
.tech-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.tech-detail-card {
  padding: 2.5rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(27, 40, 56, 0.8), rgba(13, 27, 42, 0.8));
  border: 1px solid rgba(30, 41, 59, 0.6);
}

.tech-detail-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.tech-detail-card p {
  font-size: 0.9375rem;
  color: #8892B0;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.tech-detail-card ul {
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tech-detail-card li {
  font-size: 0.9375rem;
  color: #8892B0;
  line-height: 1.6;
}

/* ===== Technology: Models Section ===== */
.models-section {
  padding: 3rem;
  border-radius: 20px;
  background-color: #0C1224;
  border: 1px solid rgba(30, 41, 59, 0.6);
}

.models-section h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.model-card {
  padding: 2rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(27, 40, 56, 0.8), rgba(13, 27, 42, 0.8));
  border: 1px solid rgba(30, 41, 59, 0.6);
  transition: all 0.3s ease;
}

.model-card:hover {
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-2px);
}

.model-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.model-card p {
  font-size: 0.9375rem;
  color: #8892B0;
  line-height: 1.7;
}

.model-badge {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.375rem 0.875rem;
  border-radius: 6px;
  background-color: rgba(0, 229, 255, 0.08);
  color: #00E5FF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== Technology: Infrastructure ===== */
.infra-section {
  background-color: #0C1224;
}

.infra-category {
  margin-bottom: 2.5rem;
}

.infra-category h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(30, 41, 59, 0.6);
  color: #E8EDFF;
}

.infra-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1rem;
}

.infra-item {
  padding: 1.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(27, 40, 56, 0.6), rgba(13, 27, 42, 0.6));
  border: 1px solid rgba(30, 41, 59, 0.5);
  transition: all 0.3s ease;
}

.infra-item:hover {
  border-color: rgba(0, 229, 255, 0.3);
}

.infra-item h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #00E5FF;
}

.infra-item p {
  font-size: 0.875rem;
  color: #8892B0;
  line-height: 1.6;
}

/* ===== Technology: Cloud GPU ===== */
.cloud-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  gap: 1.5rem;
}

.cloud-card {
  padding: 2.5rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(27, 40, 56, 0.8), rgba(13, 27, 42, 0.8));
  border: 1px solid rgba(30, 41, 59, 0.6);
  position: relative;
  overflow: hidden;
}

.cloud-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00E5FF, #FF2D78);
}

.cloud-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cloud-card ul {
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.cloud-card li {
  font-size: 0.9375rem;
  color: #8892B0;
  line-height: 1.6;
}

/* ===== Technology: Steps ===== */
.how-section {
  background-color: #0C1224;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.step-card {
  padding: 2rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(27, 40, 56, 0.8), rgba(13, 27, 42, 0.8));
  border: 1px solid rgba(30, 41, 59, 0.6);
  text-align: center;
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-3px);
}

.step-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.step-card p {
  font-size: 0.9375rem;
  color: #8892B0;
  line-height: 1.7;
}

.step-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00E5FF, #FF2D78);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  font-family: 'JetBrains Mono', monospace;
}

/* ===== Pricing: Cards ===== */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
}

.pricing-card {
  padding: 2.5rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(27, 40, 56, 0.8), rgba(13, 27, 42, 0.8));
  border: 1px solid rgba(30, 41, 59, 0.6);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pricing-card.featured {
  border: 1px solid rgba(0, 229, 255, 0.4);
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.04), rgba(13, 27, 42, 0.9));
  position: relative;
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00E5FF, #FF2D78);
  border-radius: 20px 20px 0 0;
}

.pricing-featured-badge {
  display: inline-block;
  margin-bottom: 1.5rem;
  align-self: flex-start;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.375rem 1rem;
  border-radius: 6px;
  background: linear-gradient(135deg, #00E5FF, #00B8D4);
  color: #080B16;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.pricing-amount {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-period {
  font-size: 1rem;
  color: #5E6E8A;
  margin-bottom: 0.5rem;
}

.pricing-target {
  font-size: 0.9375rem;
  color: #8892B0;
  margin-bottom: 1.5rem;
}

.pricing-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #1C2D50, transparent);
  margin-bottom: 1.5rem;
}

.pricing-features {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: #8892B0;
}

.check-icon {
  color: #00E5FF;
  font-weight: 600;
  font-size: 0.875rem;
}

.pricing-action {
  width: 100%;
}

/* ===== Pricing: Comparison Table ===== */
.comparison-section {
  background-color: #0C1224;
}

.comparison-table-wrap {
  overflow: auto;
  border-radius: 16px;
  border: 1px solid rgba(30, 41, 59, 0.6);
}

.comparison-table {
  width: 100%;
  background-color: rgba(27, 40, 56, 0.6);
  border-collapse: collapse;
}

.comparison-table th {
  padding: 1rem 1.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #8892B0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: left;
  background-color: rgba(10, 22, 40, 0.8);
  border-bottom: 1px solid rgba(30, 41, 59, 0.6);
}

.comparison-table td {
  padding: 1rem 1.5rem;
  font-size: 0.9375rem;
  color: #8892B0;
  border-bottom: 1px solid rgba(30, 41, 59, 0.4);
}

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

.comparison-table tr:hover td {
  background-color: rgba(0, 229, 255, 0.03);
}

.table-check {
  color: #00E5FF;
  font-weight: 600;
}

.table-cross {
  color: #4A5A78;
}

/* ===== Pricing: FAQ ===== */
.faq-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
}

.faq-item {
  padding: 2rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(27, 40, 56, 0.8), rgba(13, 27, 42, 0.8));
  border: 1px solid rgba(30, 41, 59, 0.6);
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: rgba(0, 229, 255, 0.3);
}

.faq-item h4 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #E8EDFF;
}

.faq-item p {
  font-size: 0.9375rem;
  color: #8892B0;
  line-height: 1.7;
}

/* ===== About: Traction ===== */
.traction-section {
  background-color: #0C1224;
}

.traction-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.traction-stat {
  padding: 2.5rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(27, 40, 56, 0.8), rgba(13, 27, 42, 0.8));
  border: 1px solid rgba(30, 41, 59, 0.6);
  text-align: center;
  transition: all 0.3s ease;
}

.traction-stat:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 229, 255, 0.3);
}

.traction-stat h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.traction-stat p {
  font-size: 0.875rem;
  color: #8892B0;
  line-height: 1.6;
}

.traction-number {
  display: block;
  font-size: 2.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00E5FF, #FF2D78);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

/* ===== About: Team ===== */
.team-section {
  background-color: #080B16;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.team-card {
  padding: 2.5rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(27, 40, 56, 0.8), rgba(13, 27, 42, 0.8));
  border: 1px solid rgba(30, 41, 59, 0.6);
  text-align: center;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 229, 255, 0.3);
}

.team-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.team-card p {
  font-size: 0.9375rem;
  color: #8892B0;
  line-height: 1.7;
}

.team-avatar {
  width: 160px;
  height: 160px;
  margin: 0 auto 1.5rem auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 229, 255, 0.25);
}

.team-avatar .team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.team-role {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #00E5FF;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.team-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.1);
  color: #00E5FF;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.team-social-icon:hover {
  background: #00E5FF;
  color: #080B16;
}

.social-info-card {
  cursor: pointer;
  text-decoration: none;
}

.social-info-card:hover {
  border-color: rgba(0, 229, 255, 0.3) !important;
  transform: translateY(-2px);
}

/* ===== About: Roadmap ===== */
.roadmap-section {
  background-color: #0C1224;
}

.roadmap-timeline {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, #00E5FF, #1C2D50);
}

.roadmap-item {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2rem;
  position: relative;
}

.roadmap-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 24px;
  z-index: 1;
}

.roadmap-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #080B16;
  border: 3px solid #1C2D50;
  flex-shrink: 0;
}

.roadmap-dot.completed {
  background-color: #00E5FF;
  border-color: #00E5FF;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.roadmap-content {
  flex: 1;
  padding-top: 0.125rem;
}

.roadmap-content p {
  font-size: 0.9375rem;
  color: #8892B0;
  line-height: 1.7;
}

.roadmap-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.roadmap-phase {
  font-size: 0.875rem;
  font-weight: 600;
  color: #E8EDFF;
}

.roadmap-status {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  background-color: rgba(30, 41, 59, 0.6);
  color: #8892B0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.roadmap-status.done {
  background-color: rgba(0, 229, 255, 0.1);
  color: #00E5FF;
}

/* ===== About: Market ===== */
.market-section {
  background-color: #080B16;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.market-card {
  padding: 2rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(27, 40, 56, 0.8), rgba(13, 27, 42, 0.8));
  border: 1px solid rgba(30, 41, 59, 0.6);
  transition: all 0.3s ease;
}

.market-card:hover {
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-2px);
}

.market-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.market-card ul {
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.market-card li {
  font-size: 0.9375rem;
  color: #8892B0;
  line-height: 1.6;
}

/* ===== About: Compliance ===== */
.compliance-section {
  background-color: #0C1224;
}

.compliance-box {
  padding: 3rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(27, 40, 56, 0.8), rgba(13, 27, 42, 0.8));
  border: 1px solid rgba(30, 41, 59, 0.6);
}

.compliance-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.compliance-item {
  padding: 1.5rem;
  border-radius: 12px;
  background-color: rgba(10, 22, 40, 0.6);
  border: 1px solid rgba(30, 41, 59, 0.4);
  transition: border-color 0.3s;
}

.compliance-item:hover {
  border-color: rgba(0, 229, 255, 0.3);
}

.compliance-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #00E5FF;
}

.compliance-item p {
  font-size: 0.875rem;
  color: #8892B0;
  line-height: 1.7;
}

/* ===== Live Chart ===== */
.live-chart {
  border-radius: 16px;
  border: 1px solid rgba(30, 41, 59, 0.8);
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.9), rgba(5, 10, 24, 0.9));
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 229, 255, 0.05);
  padding: 1.25rem;
}

.live-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.live-chart-title-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.live-dot-anim {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #00E5FF;
  box-shadow: 0 0 8px #00E5FF;
  animation: pulse 2s ease-in-out infinite;
}

.live-chart-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #E8EDFF;
}

.live-badge {
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  background-color: rgba(0, 229, 255, 0.15);
  color: #00E5FF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.live-chart-subtitle {
  font-size: 0.75rem;
  color: #5E6E8A;
}

.live-chart-stats {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.live-stat {
  flex: 1;
  padding: 0.625rem 0.75rem;
  border-radius: 8px;
  background-color: rgba(10, 22, 40, 0.6);
  border: 1px solid rgba(30, 41, 59, 0.4);
  text-align: center;
}

.live-stat-label {
  display: block;
  font-size: 0.625rem;
  color: #5E6E8A;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.live-stat-value {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  color: #FFFFFF;
}

.live-stat-value.current { color: #00E5FF; }
.live-stat-value.peak { color: #FF4060; }
.live-stat-value.avg { color: #FF2D78; }

.live-chart-bars {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 160px;
  padding: 0.5rem 0;
}

.live-bar {
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, #00E5FF, rgba(0, 229, 255, 0.2));
  transition: height 0.4s ease-out;
  min-height: 4px;
}

.live-chart-footer {
  display: flex;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(30, 41, 59, 0.4);
  font-size: 0.6875rem;
  color: #4A5A78;
}

/* ===== Visual Banners ===== */
.visual-banner {
  position: relative;
  padding: 3rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.04), rgba(255, 45, 120, 0.04), rgba(0, 229, 255, 0.04));
  border: 1px solid rgba(0, 229, 255, 0.12);
  text-align: center;
  overflow: hidden;
  margin: 3rem 0;
}

.visual-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(0, 229, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.banner-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.banner-content {
  position: relative;
  z-index: 1;
}

.banner-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}

.banner-content h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #E8EDFF;
}

.banner-content p {
  font-size: 0.9375rem;
  color: #8892B0;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Stock Images ===== */
.section-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 2rem;
  border: 1px solid rgba(30, 41, 59, 0.6);
}

.team-card .team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

/* ===== Calculator Page ===== */
.calculator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.calculator-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.calculator-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.calculator-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #E8EDFF;
}

.calculator-input,
.calculator-select,
.calculator-textarea {
  padding: 0.875rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(30, 41, 59, 0.8);
  background-color: rgba(13, 27, 42, 0.8);
  color: #FFFFFF;
  font-size: 0.9375rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s ease;
  outline: none;
}

.calculator-input:focus,
.calculator-select:focus,
.calculator-textarea:focus {
  border-color: #00E5FF;
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

.calculator-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394A3B8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.calculator-select option {
  background-color: #0E1428;
  color: #FFFFFF;
}

.calculator-textarea {
  min-height: 100px;
  resize: vertical;
}

.calculator-results {
  padding: 2rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.06), rgba(255, 45, 120, 0.06));
  border: 1px solid rgba(0, 229, 255, 0.2);
}

.calculator-results-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #E8EDFF;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.result-card {
  padding: 1.25rem;
  border-radius: 12px;
  background-color: rgba(10, 22, 40, 0.6);
  border: 1px solid rgba(30, 41, 59, 0.4);
  text-align: center;
}

.result-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #00E5FF;
  margin-bottom: 0.25rem;
}

.result-label {
  font-size: 0.75rem;
  color: #5E6E8A;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.calculator-cta {
  margin-top: 1.5rem;
  text-align: center;
}

.calculator-banner {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
  margin: 3rem 0;
  border: 1px solid rgba(30, 41, 59, 0.6);
}

/* ===== Contact Page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-info-card {
  padding: 1.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(27, 40, 56, 0.8), rgba(13, 27, 42, 0.8));
  border: 1px solid rgba(30, 41, 59, 0.6);
  text-align: center;
  transition: border-color 0.3s;
}

.contact-info-card:hover {
  border-color: rgba(0, 229, 255, 0.3);
}

.contact-info-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.contact-info-label {
  font-size: 0.75rem;
  color: #5E6E8A;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.contact-info-value {
  font-size: 0.9375rem;
  color: #E8EDFF;
  font-weight: 600;
  margin-top: 0.25rem;
}

.contact-banner {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
  margin: 3rem 0;
  border: 1px solid rgba(30, 41, 59, 0.6);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.trust-card {
  padding: 1.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(27, 40, 56, 0.6), rgba(13, 27, 42, 0.6));
  border: 1px solid rgba(30, 41, 59, 0.4);
  text-align: center;
}

.trust-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.trust-card p {
  font-size: 0.875rem;
  color: #8892B0;
  line-height: 1.6;
}

.trust-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.form-success {
  padding: 1.5rem;
  border-radius: 12px;
  background-color: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.3);
  text-align: center;
  margin-top: 1rem;
}

.form-success h4 {
  color: #00E5FF;
  margin-bottom: 0.5rem;
}

.form-success p {
  color: #8892B0;
  font-size: 0.9375rem;
}

/* ===== Resources Page ===== */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.resource-card {
  padding: 2rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(27, 40, 56, 0.8), rgba(13, 27, 42, 0.8));
  border: 1px solid rgba(30, 41, 59, 0.6);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.resource-card:hover {
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-3px);
}

.resource-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
  background-color: rgba(0, 229, 255, 0.08);
  color: #00E5FF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  align-self: flex-start;
}

.resource-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.resource-card p {
  font-size: 0.875rem;
  color: #8892B0;
  line-height: 1.7;
  flex: 1;
}

.resource-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(30, 41, 59, 0.4);
}

.resource-readtime {
  font-size: 0.75rem;
  color: #5E6E8A;
}

.resource-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #00E5FF;
}

.resources-banner {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
  margin: 3rem 0;
  border: 1px solid rgba(30, 41, 59, 0.6);
}

.resource-category-header {
  font-size: 1rem;
  font-weight: 600;
  color: #E8EDFF;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(30, 41, 59, 0.4);
}

/* ===== Resource Tabs ===== */
.resource-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  padding: 0.375rem;
  background-color: rgba(13, 27, 42, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(30, 41, 59, 0.4);
  overflow-x: auto;
}

.resource-tab {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: #8892B0;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.resource-tab:hover {
  color: #FFFFFF;
  background-color: rgba(30, 41, 59, 0.5);
}

.resource-tab.active {
  color: #080B16;
  background: linear-gradient(135deg, #00E5FF, #00B8D4);
  box-shadow: 0 2px 8px rgba(0, 229, 255, 0.25);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.resource-card-item {
  width: 100%;
}

.article-content {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(30, 41, 59, 0.4);
}

[data-theme="light"] .article-content {
  border-top-color: #C8D4E8;
}

.article-section {
  margin-bottom: 1.5rem;
}

.article-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #F0F4FF;
  margin-bottom: 0.75rem;
}

.article-subheading {
  font-size: 1rem;
  font-weight: 600;
  color: #E8EDFF;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

.article-text {
  font-size: 0.9375rem;
  color: #8892B0;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.article-list {
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1rem;
}

.article-list li {
  font-size: 0.9375rem;
  color: #8892B0;
  line-height: 1.6;
}

.article-table-wrapper {
  overflow-x: auto;
  margin: 1rem 0;
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

.article-table th,
.article-table td {
  padding: 0.5rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(30, 41, 59, 0.4);
  color: #8892B0;
}

.article-table th {
  color: #E8EDFF;
  font-weight: 600;
  background-color: rgba(14, 20, 40, 0.5);
}

.resource-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.resource-category-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
  background-color: rgba(0, 229, 255, 0.08);
  color: #00E5FF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.resource-read-time {
  font-size: 0.75rem;
  color: #5E6E8A;
}

.resource-card-footer {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(30, 41, 59, 0.4);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

/* ===== API Method Badges ===== */
.api-method {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-right: 0.5rem;
}

.api-method.get {
  background-color: rgba(0, 229, 255, 0.15);
  color: #00E5FF;
}

.api-method.post {
  background-color: rgba(255, 45, 120, 0.15);
  color: #FF2D78;
}

.api-method.put {
  background-color: rgba(0, 255, 136, 0.15);
  color: #00FF88;
}

.api-endpoint-path {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  color: #E8EDFF;
  margin-bottom: 0.5rem;
  display: block;
}

.api-response {
  font-size: 0.75rem;
  color: #5E6E8A;
  font-family: 'JetBrains Mono', monospace;
  margin-top: 0.75rem;
}

/* ===== System Status ===== */
.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.status-card {
  padding: 1.25rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(27, 40, 56, 0.6), rgba(13, 27, 42, 0.6));
  border: 1px solid rgba(30, 41, 59, 0.4);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.status-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-indicator.operational {
  background-color: #00E5FF;
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.5);
}

.status-indicator.degraded {
  background-color: #00FF88;
  box-shadow: 0 0 8px rgba(0, 255, 136, 0.5);
}

.status-indicator.outage {
  background-color: #FF4060;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
}

.status-info {
  flex: 1;
}

.status-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #E8EDFF;
}

.status-detail {
  font-size: 0.75rem;
  color: #5E6E8A;
}

.status-badge {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.status-badge.operational {
  background-color: rgba(0, 229, 255, 0.1);
  color: #00E5FF;
}

/* ===== API Code Cards ===== */
.api-code-card {
  border-radius: 12px;
  border: 1px solid rgba(30, 41, 59, 0.6);
  background-color: #080B16;
  overflow: hidden;
  transition: all 0.3s ease;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
}

.api-code-card:hover {
  border-color: rgba(0, 229, 255, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 229, 255, 0.05);
}

.api-code-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background-color: rgba(14, 20, 40, 0.8);
  border-bottom: 1px solid rgba(30, 41, 59, 0.5);
}

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

.api-code-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.api-code-filename {
  font-size: 0.75rem;
  color: #5E6E8A;
}

.api-code-body {
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.8125rem;
  line-height: 1.7;
  overflow-x: auto;
}

.api-code-line {
  white-space: pre;
  color: #8892B0;
}

.api-code-comment {
  color: #4A5A78;
  font-style: italic;
}

.api-code-keyword {
  color: #FF2D78;
  font-weight: 500;
}

.api-code-type {
  color: #00E5FF;
}

.api-code-fn {
  color: #E8EDFF;
}

.api-code-string {
  color: #00FF88;
}

.api-code-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  background-color: rgba(14, 20, 40, 0.6);
  border-top: 1px solid rgba(30, 41, 59, 0.5);
  font-size: 0.75rem;
  flex-wrap: wrap;
}

.api-code-path-label {
  color: #8892B0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
}

.api-returns-type {
  color: #00E5FF;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  background-color: rgba(0, 229, 255, 0.08);
  margin-left: auto;
}

.api-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 1.5rem;
}

/* ===== Resources Section ===== */
.resources-section {
  background-color: #0C1224;
}

.resources-banner-section {
  background-color: #080B16;
}

/* ===== API Intro ===== */
.api-intro {
  font-size: 1.0625rem;
  color: #8892B0;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 800px;
}

.api-base-url {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background-color: rgba(10, 22, 40, 0.8);
  border: 1px solid rgba(30, 41, 59, 0.6);
  color: #00E5FF;
  margin-bottom: 2rem;
}

/* ===== Light Theme Overrides ===== */
[data-theme="light"] {
  --card-bg: linear-gradient(135deg, #FFFFFF, #EDF1F8);
  --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] body,
[data-theme="light"] .app {
  background-color: #F4F7FC;
}

[data-theme="light"] .navbar {
  background-color: rgba(248, 250, 252, 0.92);
  border-bottom-color: #C8D4E8;
}

[data-theme="light"] .logo-text { color: #0A1030; }
[data-theme="light"] .nav-link { color: #3D4F70; }
[data-theme="light"] .nav-link:hover { color: #0A1030; }
[data-theme="light"] .nav-link.active { color: #0097A7; }
[data-theme="light"] .btn-nav-cta { color: #FFFFFF; }

[data-theme="light"] .hero::after {
  background: linear-gradient(180deg, transparent 0%, rgba(248, 250, 252, 0.4) 45%, #F4F7FC 100%);
}

[data-theme="light"] .hero::before {
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, transparent 100%);
}

[data-theme="light"] .page-hero.hero-tech::before {
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 100%);
}

[data-theme="light"] .page-hero.hero-tech::after {
  background: linear-gradient(180deg, transparent 0%, rgba(248, 250, 252, 0.4) 40%, #F4F7FC 100%);
}

[data-theme="light"] .page-hero.hero-res::before {
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 100%);
}

[data-theme="light"] .page-hero.hero-res::after {
  background: linear-gradient(180deg, transparent 0%, rgba(248, 250, 252, 0.4) 40%, #F4F7FC 100%);
}

[data-theme="light"] .page-hero.hero-calc::before {
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 100%);
}

[data-theme="light"] .page-hero.hero-calc::after {
  background: linear-gradient(180deg, transparent 0%, rgba(248, 250, 252, 0.4) 40%, #F4F7FC 100%);
}

[data-theme="light"] .page-hero.hero-contact::before {
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 100%);
}

[data-theme="light"] .page-hero.hero-contact::after {
  background: linear-gradient(180deg, transparent 0%, rgba(248, 250, 252, 0.4) 40%, #F4F7FC 100%);
}

[data-theme="light"] .hero-status { background-color: rgba(0, 151, 167, 0.06); border-color: rgba(0, 151, 167, 0.15); }
[data-theme="light"] .hero-title { color: #0A1030; }
[data-theme="light"] .hero-subtitle { color: #3D4F70; }
[data-theme="light"] .integration-tag { background-color: #EDF1F8; color: #3D4F70; border-color: #C8D4E8; }
[data-theme="light"] .integration-label { color: #5A6A88; }
[data-theme="light"] .status-dot { background-color: #0097A7; box-shadow: 0 0 8px rgba(0, 151, 167, 0.4); }
[data-theme="light"] .status-text { color: #0097A7; }

/* Footer */
[data-theme="light"] .footer { background-color: #EDF1F8; border-top-color: #C8D4E8; }
[data-theme="light"] .footer::before { background: linear-gradient(90deg, transparent, #0097A7, transparent); }
[data-theme="light"] .footer-col h4 { color: #0A1030; }
[data-theme="light"] .footer-col a, [data-theme="light"] .footer-col span { color: #5A6A88; }
[data-theme="light"] .footer-col a:hover, [data-theme="light"] .footer-col span:hover { color: #0097A7; }
[data-theme="light"] .footer-divider { background: linear-gradient(90deg, transparent, #C8D4E8, transparent); }
[data-theme="light"] .footer-contact, [data-theme="light"] .footer-copy { color: #5A6A88; }
[data-theme="light"] .footer-logo-text { color: #0A1030; }
[data-theme="light"] .footer-tagline { color: #5A6A88; }

/* Live Chart */
[data-theme="light"] .live-chart { background: linear-gradient(135deg, #FFFFFF, #EDF1F8); border-color: #C8D4E8; box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08); }
[data-theme="light"] .live-chart-header { border-bottom-color: #DDE4F0; }
[data-theme="light"] .live-chart-title { color: #0A1030; }
[data-theme="light"] .live-stat { background-color: #F4F7FC; border-color: #DDE4F0; }
[data-theme="light"] .live-stat-label { color: #5A6A88; }
[data-theme="light"] .live-stat-value { color: #0A1030; }
[data-theme="light"] .live-bar { background: linear-gradient(180deg, #0097A7, rgba(0, 151, 167, 0.2)); }
[data-theme="light"] .live-chart-footer { border-top-color: #DDE4F0; color: #8892B0; }
[data-theme="light"] .live-dot-anim { background-color: #0097A7; box-shadow: 0 0 8px rgba(0, 151, 167, 0.4); }

/* Section backgrounds */
[data-theme="light"] .problem-section,
[data-theme="light"] .benefits-section,
[data-theme="light"] .ai-overview-section,
[data-theme="light"] .features-section,
[data-theme="light"] .infra-section,
[data-theme="light"] .how-section,
[data-theme="light"] .comparison-section,
[data-theme="light"] .traction-section,
[data-theme="light"] .roadmap-section,
[data-theme="light"] .compliance-section,
[data-theme="light"] .resources-section,
[data-theme="light"] .resources-banner-section,
[data-theme="light"] .market-section,
[data-theme="light"] .team-section,
[data-theme="light"] .cta-section {
  background-color: #EDF1F8;
}

/* All card types */
[data-theme="light"] .problem-card,
[data-theme="light"] .ai-card,
[data-theme="light"] .feature-card,
[data-theme="light"] .benefit-card,
[data-theme="light"] .step-card,
[data-theme="light"] .pricing-card,
[data-theme="light"] .team-card,
[data-theme="light"] .market-card,
[data-theme="light"] .faq-item,
[data-theme="light"] .model-card,
[data-theme="light"] .infra-item,
[data-theme="light"] .cloud-card,
[data-theme="light"] .traction-stat,
[data-theme="light"] .tech-detail-card,
[data-theme="light"] .compliance-item,
[data-theme="light"] .result-card,
[data-theme="light"] .status-card,
[data-theme="light"] .contact-info-card,
[data-theme="light"] .trust-card,
[data-theme="light"] .legal-section,
[data-theme="light"] .resource-card {
  background: var(--card-bg);
  border-color: #C8D4E8;
  box-shadow: var(--card-shadow);
}

[data-theme="light"] .problem-card:hover,
[data-theme="light"] .ai-card:hover,
[data-theme="light"] .feature-card:hover,
[data-theme="light"] .pricing-card:hover,
[data-theme="light"] .team-card:hover,
[data-theme="light"] .traction-stat:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Typography */
[data-theme="light"] .section-title,
[data-theme="light"] h1, [data-theme="light"] h2,
[data-theme="light"] h3, [data-theme="light"] h4,
[data-theme="light"] h5, [data-theme="light"] h6 { color: #0A1030; }
[data-theme="light"] .section-subtitle,
[data-theme="light"] p, [data-theme="light"] li,
[data-theme="light"] td { color: #3D4F70; }
[data-theme="light"] .problem-number { color: #FF4060; }
[data-theme="light"] .step-number { background: linear-gradient(135deg, #0097A7, #D4265C); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
[data-theme="light"] .benefit-stat { background: linear-gradient(135deg, #0097A7, #D4265C); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
[data-theme="light"] .traction-number { background: linear-gradient(135deg, #0097A7, #D4265C); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* Badges */
[data-theme="light"] .badge { border-color: rgba(0, 151, 167, 0.3); color: #0097A7; background-color: rgba(0, 151, 167, 0.06); }

/* Buttons */
[data-theme="light"] .btn-primary { color: #FFFFFF; background: linear-gradient(135deg, #0097A7, #007A8A); border: none; box-shadow: 0 4px 15px rgba(0, 151, 167, 0.3); }
[data-theme="light"] .btn-outline { color: #0A1030; border-color: #C8D4E8; background-color: transparent; }
[data-theme="light"] .btn-outline:hover { border-color: #0097A7; color: #0097A7; background-color: rgba(0, 151, 167, 0.04); }

/* Problem section */
[data-theme="light"] .problem-solution { background: linear-gradient(135deg, rgba(0, 151, 167, 0.04), rgba(212, 38, 92, 0.04)); border-color: rgba(0, 151, 167, 0.12); }
[data-theme="light"] .problem-solution-content h3 { color: #0A1030; }
[data-theme="light"] .problem-solution-content p { color: #3D4F70; }

/* AI Data Flow */
[data-theme="light"] .ai-data-flow { background: linear-gradient(135deg, #FFFFFF, #EDF1F8); border-color: #C8D4E8; }
[data-theme="light"] .data-flow-col { background-color: #F4F7FC; border-color: #DDE4F0; }
[data-theme="light"] .data-flow-col h4 { color: #0097A7; }
[data-theme="light"] .data-flow-col li { color: #3D4F70; }

/* Calculator / Contact forms */
[data-theme="light"] .calculator-form,
[data-theme="light"] .contact-form,
[data-theme="light"] .calculator-results,
[data-theme="light"] .calculator-grid,
[data-theme="light"] .contact-grid { background: #FFFFFF; border-color: #C8D4E8; }
[data-theme="light"] .calculator-input,
[data-theme="light"] .calculator-select,
[data-theme="light"] .calculator-textarea,
[data-theme="light"] input[type="text"],
[data-theme="light"] input[type="email"],
[data-theme="light"] input[type="tel"],
[data-theme="light"] input[type="number"],
[data-theme="light"] select,
[data-theme="light"] textarea {
  background-color: #F4F7FC;
  border-color: #C8D4E8;
  color: #0A1030;
}
[data-theme="light"] .calculator-label,
[data-theme="light"] label { color: #0A1030; }
[data-theme="light"] .calculator-results-title { color: #0A1030; }
[data-theme="light"] .result-card { background-color: #F4F7FC; border-color: #DDE4F0; }
[data-theme="light"] .result-value { color: #0097A7; }

/* Pricing */
[data-theme="light"] .pricing-card.featured { border-color: rgba(0, 151, 167, 0.4); background: linear-gradient(135deg, rgba(0, 151, 167, 0.04), #FFFFFF); }
[data-theme="light"] .pricing-divider { background: linear-gradient(90deg, transparent, #C8D4E8, transparent); }
[data-theme="light"] .pricing-amount { color: #0A1030; }
[data-theme="light"] .pricing-featured-badge { background: linear-gradient(135deg, #0097A7, #007A8A); color: #FFFFFF; }

/* Table */
[data-theme="light"] .comparison-table-wrap { border-color: #C8D4E8; border-radius: 16px; }
[data-theme="light"] .comparison-table { background-color: #FFFFFF; }
[data-theme="light"] .comparison-table th { background-color: #EDF1F8; border-bottom-color: #C8D4E8; color: #3D4F70; }
[data-theme="light"] .comparison-table td { border-bottom-color: #DDE4F0; color: #3D4F70; }
[data-theme="light"] .comparison-table tr:hover td { background-color: rgba(0, 151, 167, 0.03); }

/* CTA */
[data-theme="light"] .cta-box { background: linear-gradient(135deg, rgba(0, 151, 167, 0.04), rgba(212, 38, 92, 0.04)); border-color: rgba(0, 151, 167, 0.12); }
[data-theme="light"] .cta-box h2 { color: #0A1030; }
[data-theme="light"] .cta-box p { color: #3D4F70; }

/* Page Hero */
[data-theme="light"] .page-hero:not(.hero-tech):not(.hero-res):not(.hero-calc):not(.hero-contact)::before { background: radial-gradient(ellipse, rgba(0, 151, 167, 0.04) 0%, transparent 70%); }
[data-theme="light"] .page-hero-title { color: #0A1030; }
[data-theme="light"] .page-hero-subtitle { color: #3D4F70; }
[data-theme="light"] .tech-hero-image { border-color: #C8D4E8; }

/* Infrastructure */
[data-theme="light"] .infra-category h3 { color: #0A1030; border-bottom-color: #C8D4E8; }
[data-theme="light"] .infra-item h4 { color: #0097A7; }
[data-theme="light"] .cloud-card::before { background: linear-gradient(90deg, #0097A7, #D4265C); }

/* Models Section */
[data-theme="light"] .models-section { background-color: #FFFFFF; border-color: #C8D4E8; }
[data-theme="light"] .models-section h3 { color: #0A1030; }
[data-theme="light"] .model-badge { background-color: rgba(0, 151, 167, 0.1); color: #0097A7; }
[data-theme="light"] .model-card h4 { color: #0A1030; }
[data-theme="light"] .model-card p { color: #3D4F70; }

/* Cloud & GPU section (plain section, no class — inherits light bg) */
[data-theme="light"] .cloud-card h3 { color: #0A1030; }
[data-theme="light"] .cloud-card li { color: #3D4F70; }
[data-theme="light"] .step-card h4 { color: #0A1030; }
[data-theme="light"] .step-card p { color: #3D4F70; }
[data-theme="light"] .step-number { background: linear-gradient(135deg, #0097A7, #D4265C); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* Tech detail card headings */
[data-theme="light"] .tech-detail-card h3 { color: #0A1030; }
[data-theme="light"] .tech-detail-card p { color: #3D4F70; }
[data-theme="light"] .tech-detail-card li { color: #3D4F70; }

/* Resources */
[data-theme="light"] .resource-tab { color: #3D4F70; background-color: #EDF1F8; }
[data-theme="light"] .resource-tab.active { color: #FFFFFF; background: linear-gradient(135deg, #0097A7, #007A8A); }
[data-theme="light"] .resource-tabs { background-color: #EDF1F8; border-color: #C8D4E8; }
[data-theme="light"] .api-method.get { background-color: rgba(0, 151, 167, 0.1); color: #0097A7; }
[data-theme="light"] .api-method.post { background-color: rgba(212, 38, 92, 0.1); color: #D4265C; }
[data-theme="light"] .api-method.put { background-color: rgba(212, 38, 92, 0.1); color: #D4265C; }
[data-theme="light"] .api-endpoint-path { color: #0A1030; }
[data-theme="light"] .api-intro { color: #3D4F70; }
[data-theme="light"] .resource-card { background: var(--card-bg); }
[data-theme="light"] .resource-category-tag { color: #0097A7; background-color: rgba(0, 151, 167, 0.08); }
[data-theme="light"] .article-heading { color: #0A1030; }
[data-theme="light"] .article-subheading { color: #1E293B; }
[data-theme="light"] .article-text { color: #3D4F70; }
[data-theme="light"] .article-list li { color: #3D4F70; }
[data-theme="light"] .article-table th { color: #0F172A; background-color: #F1F5F9; }
[data-theme="light"] .article-table td { color: #3D4F70; border-bottom-color: #E2E8F0; }
[data-theme="light"] .api-code-card { border-color: #C8D4E8; background-color: #F8FAFC; }
[data-theme="light"] .api-code-header { background-color: #F1F5F9; border-bottom-color: #E2E8F0; }
[data-theme="light"] .api-code-body { color: #334155; }
[data-theme="light"] .api-code-comment { color: #94A3B8; }
[data-theme="light"] .api-code-keyword { color: #D4265C; }
[data-theme="light"] .api-code-type { color: #0097A7; }
[data-theme="light"] .api-code-fn { color: #0F172A; }
[data-theme="light"] .api-code-string { color: #059669; }
[data-theme="light"] .api-code-footer { background-color: #F8FAFC; border-top-color: #E2E8F0; }
[data-theme="light"] .api-code-path-label { color: #334155; }
[data-theme="light"] .api-returns-type { background-color: rgba(0, 151, 167, 0.08); color: #0097A7; }

/* Roadmap */
[data-theme="light"] .roadmap-dot { background-color: #F4F7FC; border-color: #C8D4E8; }
[data-theme="light"] .roadmap-dot.completed { background-color: #0097A7; border-color: #0097A7; }
[data-theme="light"] .roadmap-timeline::before { background: linear-gradient(180deg, #0097A7, #C8D4E8); }
[data-theme="light"] .roadmap-phase { color: #0A1030; }
[data-theme="light"] .roadmap-status { background-color: #EDF1F8; color: #3D4F70; }
[data-theme="light"] .roadmap-status.done { background-color: rgba(0, 151, 167, 0.1); color: #0097A7; }

/* Team */
[data-theme="light"] .team-role { color: #0097A7; }
[data-theme="light"] .team-linkedin { color: #5A6A88; }
[data-theme="light"] .team-linkedin:hover { color: #0097A7; }
[data-theme="light"] .social-link { background-color: rgba(0, 151, 167, 0.06); border-color: rgba(0, 151, 167, 0.12); color: #3D4F70; }
[data-theme="light"] .social-link:hover { border-color: rgba(0, 151, 167, 0.3); color: #0097A7; background-color: rgba(0, 151, 167, 0.08); }
[data-theme="light"] .social-icon { background-color: rgba(0, 151, 167, 0.1); color: #0097A7; }
[data-theme="light"] .team-avatar { box-shadow: 0 4px 20px rgba(0, 151, 167, 0.15); }
[data-theme="light"] .team-social-icon { background: rgba(0, 151, 167, 0.1); color: #0097A7; }
[data-theme="light"] .team-social-icon:hover { background: #0097A7; color: #FFFFFF; }

/* Traction */
[data-theme="light"] .traction-stat h4 { color: #0A1030; }
[data-theme="light"] .traction-stat p { color: #3D4F70; }

/* Market */
[data-theme="light"] .market-card ul { color: #3D4F70; }
[data-theme="light"] .market-card li { color: #3D4F70; }

/* Compliance */
[data-theme="light"] .compliance-box { background: var(--card-bg); border-color: #C8D4E8; }
[data-theme="light"] .compliance-box h3 { color: #0A1030; }
[data-theme="light"] .compliance-item { background-color: #F4F7FC; border-color: #C8D4E8; }
[data-theme="light"] .compliance-item h4 { color: #0097A7; }
[data-theme="light"] .compliance-item p { color: #3D4F70; }

/* Roadmap */
[data-theme="light"] .status-card { background: var(--card-bg); border-color: #C8D4E8; }
[data-theme="light"] .status-name { color: #0A1030; }
[data-theme="light"] .status-indicator.operational { background-color: #00C06A; box-shadow: 0 0 8px rgba(0, 192, 106, 0.4); }
[data-theme="light"] .status-indicator.degraded { background-color: #D4265C; }
[data-theme="light"] .status-badge.operational { background-color: rgba(0, 192, 106, 0.1); color: #00C06A; }

/* Legal */
[data-theme="light"] .legal-section { background: var(--card-bg); border-color: #C8D4E8; }
[data-theme="light"] .legal-section h3 { color: #0A1030; }
[data-theme="light"] .legal-section p, [data-theme="light"] .legal-section li { color: #3D4F70; }

/* Forms / Success */
[data-theme="light"] .form-success { background-color: rgba(0, 151, 167, 0.05); border-color: rgba(0, 151, 167, 0.2); }
[data-theme="light"] .form-success h4 { color: #0097A7; }
[data-theme="light"] .contact-info-value { color: #0A1030; }
[data-theme="light"] .contact-info-label { color: #5A6A88; }
[data-theme="light"] .trust-card h4 { color: #0A1030; }
[data-theme="light"] .trust-card p { color: #3D4F70; }
[data-theme="light"] .trust-icon { filter: none; }
[data-theme="light"] .check-icon { color: #0097A7; }
[data-theme="light"] .check-icon { color: #0097A7; }

/* Theme toggle */
[data-theme="light"] .theme-toggle { color: #0A1030; border-color: #C8D4E8; }
[data-theme="light"] .theme-toggle:hover { border-color: #0097A7; background-color: rgba(0, 151, 167, 0.06); }

/* Hamburger */
[data-theme="light"] .hamburger-line { background-color: #0A1030; }
[data-theme="light"] .mobile-menu { background-color: rgba(248, 250, 252, 0.98); border-top-color: #C8D4E8; }

/* Banner */
[data-theme="light"] .visual-banner { background: linear-gradient(135deg, rgba(0, 151, 167, 0.04), rgba(212, 38, 92, 0.04)); border-color: rgba(0, 151, 167, 0.12); }
[data-theme="light"] .banner-content h3 { color: #0A1030; }
[data-theme="light"] .banner-content p { color: #3D4F70; }

/* Images */
[data-theme="light"] .calculator-banner,
[data-theme="light"] .contact-banner,
[data-theme="light"] .resources-banner {
  border-color: #C8D4E8;
}

/* H4 headings in cards */
[data-theme="light"] .ai-card h4,
[data-theme="light"] .feature-card h4,
[data-theme="light"] .problem-solution-content h3,
[data-theme="light"] .pricing-card h3,
[data-theme="light"] .team-card h4,
[data-theme="light"] .model-card h4,
[data-theme="light"] .cloud-card h3,
[data-theme="light"] .step-card h4,
[data-theme="light"] .market-card h4,
[data-theme="light"] .faq-item h4,
[data-theme="light"] .compliance-box h3,
[data-theme="light"] .compliance-item h4 {
  color: #0A1030;
}

/* ===== Hamburger Menu ===== */
.navbar-mobile {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  border-radius: 8px;
  transition: background-color 0.2s;
}

.hamburger:hover {
  background-color: rgba(var(--primary-rgb), 0.1);
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  padding: 1rem 2rem 1.5rem;
  background-color: rgba(var(--primary-rgb), 0.03);
  border-top: 1px solid var(--border);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu .nav-link {
  display: block;
  padding: 0.75rem 0;
  font-size: 1rem;
  border-bottom: 1px solid var(--border);
}

.mobile-menu .nav-link:last-child {
  border-bottom: none;
}

.mobile-menu .btn-nav-cta {
  display: block;
  text-align: center;
  margin-top: 0.75rem;
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: none;
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 1.125rem;
  transition: all 0.2s;
  color: var(--text);
}

.theme-toggle:hover {
  border-color: var(--primary);
  background-color: rgba(var(--primary-rgb), 0.1);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }

  .navbar-inner {
    padding: 0 1rem;
  }

  .navbar-mobile {
    display: flex;
  }

  .mobile-menu.open {
    display: block;
  }

  .hero-container {
    flex-direction: column;
  }

  .hero-content {
    text-align: center;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-integrations {
    justify-content: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-visual {
    animation: none;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-brand {
    flex: 0 0 auto;
  }

  .footer-grid {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .page-hero-title {
    font-size: 2.25rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .cta-box {
    padding: 2.5rem 1.5rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .data-flow-grid {
    flex-direction: column;
  }

  .data-flow-arrow {
    transform: rotate(90deg);
    align-self: center;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .cloud-grid {
    grid-template-columns: 1fr;
  }

  .tech-detail-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    font-size: 0.8125rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem 1rem;
  }

  .calculator-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-grid,
  .results-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .page-hero-title {
    font-size: 1.875rem;
  }

  .mockup-sidebar {
    display: none;
  }

  .problem-grid,
  .ai-grid,
  .features-grid,
  .benefits-grid,
  .traction-stats,
  .team-grid,
  .market-grid,
  .compliance-grid,
  .models-grid,
  .infra-items,
  .steps-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .resources-grid {
    grid-template-columns: 1fr;
  }
}
