/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0a0a0f;
  --fg: #ededed;
  --primary: #00d4ff;
  --secondary: #7c3aed;
  --accent: #06b6d4;
  --violet: #8b5cf6;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.06);
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0a0f; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00d4ff, #7c3aed);
  border-radius: 3px;
}
::selection { background: rgba(0, 212, 255, 0.3); color: #fff; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== UTILITY ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section {
  position: relative;
  padding: 4rem 0;
}
@media (min-width: 1024px) { .section { padding: 5rem 0; } }

.text-gradient {
  background: linear-gradient(135deg, #00d4ff, #7c3aed, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-blue {
  background: linear-gradient(135deg, #00d4ff, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
}

.neon-glow {
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.15), 0 0 40px rgba(0, 212, 255, 0.05);
}

.text-shadow-glow {
  text-shadow: 0 0 40px rgba(0, 212, 255, 0.3), 0 0 80px rgba(0, 212, 255, 0.1);
}

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes countUp {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes progressFill {
  from { width: 0; }
}
@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}
@keyframes blink {
  50% { border-color: transparent; }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes ping {
  0% { transform: scale(1); opacity: 1; }
  75%, 100% { transform: scale(2); opacity: 0; }
}
@keyframes scrollIndicator {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(6px); opacity: 0; }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes drawLine {
  0% { stroke-dashoffset: 120; opacity: 0; }
  30% { opacity: 0.6; }
  60% { stroke-dashoffset: 0; opacity: 0.6; }
  100% { stroke-dashoffset: -120; opacity: 0; }
}
@keyframes nodePulse {
  0%, 100% { opacity: 0.4; r: 3; }
  50% { opacity: 1; r: 4.5; }
}
@keyframes orbitSpin {
  from { transform: translate(-50%, -50%) rotate(var(--angle, 0deg)) translateX(37.5%) rotate(calc(-1 * var(--angle, 0deg))); }
  to { transform: translate(-50%, -50%) rotate(calc(var(--angle, 0deg) + 360deg)) translateX(37.5%) rotate(calc(-1 * var(--angle, 0deg) - 360deg)); }
}
@keyframes expandFade {
  0% { transform: scale(0.5); opacity: 0.8; }
  100% { transform: scale(2); opacity: 0; }
}
@keyframes twinkle {
  0%, 100% { opacity: 0.2; }
  30% { opacity: 1; }
  60% { opacity: 0.3; }
}


.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ===== LOADING SCREEN ===== */
#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0f;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loading-logo {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  animation: fadeInScale 0.5s ease;
}
.loading-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 1rem;
}
.loading-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00d4ff, #7c3aed);
  animation: pulse-glow 1.5s ease infinite;
}
.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }
.loading-text {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.5s ease;
}
#navbar.scrolled {
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
@media (min-width: 1024px) { .nav-inner { height: 80px; } }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: contain;
}
.nav-logo-text {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-links a {
  padding: 8px 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.nav-links a:hover { color: #fff; background: rgba(255, 255, 255, 0.05); }

.nav-cta {
  padding: 8px 20px !important;
  font-weight: 500;
  color: #fff !important;
  background: linear-gradient(135deg, #00d4ff, #7c3aed) !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
  margin-left: 16px;
}
.nav-cta:hover { opacity: 0.9; background: linear-gradient(135deg, #00d4ff, #7c3aed) !important; }

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  position: absolute;
}
.nav-toggle span:nth-child(1) { transform: translateY(-6px); }
.nav-toggle span:nth-child(3) { transform: translateY(6px); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg); }

#mobile-menu {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem;
}
#mobile-menu.open { display: block; }
#mobile-menu a {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  transition: all 0.3s ease;
}
#mobile-menu a:hover { color: #fff; background: rgba(255, 255, 255, 0.05); }
#mobile-menu .nav-cta {
  display: block;
  margin-left: 0;
  margin-top: 12px;
  text-align: center;
  padding: 12px !important;
}

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #020617;
}

#hero-canvas-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

#hero-canvas-fg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.3) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 100% 60% at 50% 50%, transparent 30%, rgba(2, 6, 23, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 6rem 1rem 2rem;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  color: #c084fc;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
  border: 1px solid rgba(124, 58, 237, 0.25);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease;
}
.hero-badge-dot {
  position: relative;
  width: 12px;
  height: 12px;
}
.hero-badge-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #c084fc;
  animation: ping 1.5s ease infinite;
}
.hero-badge-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #c084fc;
}

.hero-title {
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: fadeInUp 0.8s ease 0.6s both;
}
@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; justify-content: center; }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #00d4ff, #7c3aed);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.25);
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.4);
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #00d4ff, #7c3aed);
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 1);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-secondary:hover { color: #fff; border-color: rgba(0, 212, 255, 0.3); background: rgba(255, 255, 255, 0.1); }
.btn-secondary .arrow { display: inline-block; transition: transform 0.3s ease; }
.btn-secondary:hover .arrow { transform: translateX(4px); }

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  animation: fadeInUp 0.8s ease 1.2s both;
}
.scroll-mouse {
  width: 20px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  padding: 6px;
}
.scroll-mouse div {
  width: 3px;
  height: 8px;
  border-radius: 2px;
  background: #00d4ff;
  animation: scrollIndicator 1.5s ease infinite;
}

/* ===== SECTION HEADERS ===== */
.section-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #22d3ee;
  margin-bottom: 1rem;
  display: block;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  max-width: 560px;
  margin: 0 auto;
}

.text-center { text-align: center; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 2.5rem; }
.mb-20 { margin-bottom: 5rem; }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 6rem; } }

.about-cards {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
}
.about-card:first-child {
  align-self: flex-start;
}
.about-card:last-child {
  align-self: flex-end;
}
.about-card {
  padding: 1.25rem;
  border-radius: 12px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}
.about-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 212, 255, 0.2);
}
.about-card h3 {
  color: #67e8f9;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}
.about-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.6;
}

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-container {
  position: relative;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 1;
  margin: 0 auto;
  overflow: visible;
}

.dash-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: dashGridMove 8s linear infinite;
  border-radius: 16px;
}

.dash-web-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

.web-ring {
  stroke: rgba(0, 212, 255, 0.12);
  stroke-width: 0.8;
  fill: none;
  animation: webRotate 20s linear infinite;
  transform-origin: 250px 250px;
}

.web-con {
  stroke: rgba(124, 58, 237, 0.15);
  stroke-width: 0.6;
  animation: webPulse 4s ease infinite;
}

.web-spoke {
  stroke: rgba(124, 58, 237, 0.1);
  stroke-width: 0.6;
  animation: webPulse 4s ease infinite;
}

.web-node {
  fill: #22d3ee;
  opacity: 0.3;
  animation: dashPulse 3s ease infinite;
}

.dash-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.dash-card-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

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

.dash-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 8px 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dash-c-xs {
  padding: 4px 6px;
  border-radius: 7px;
}

.dash-c-xs .dash-card-header {
  margin-bottom: 1px;
}

.dash-c-rc {
  padding: 5px 7px;
  border-radius: 8px;
  min-width: 0;
  white-space: nowrap;
}

.dash-card:hover {
  border-color: rgba(0, 212, 255, 0.2);
  box-shadow: 0 8px 40px rgba(0, 212, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.dash-card-header {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 8px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 5px;
}

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

.dash-card-ai {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 12%; aspect-ratio: 1;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2px; z-index: 5; padding: 12px;
  border: none;
  background: rgba(255,255,255,0.02);
  animation: dashAiPulse 4s ease-in-out infinite;
}

.dash-ai-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.15), transparent 70%);
  animation: dashGlowExpand 4s ease-in-out infinite;
  pointer-events: none;
}

.dash-ai-icon {
  width: 28px;
  height: 28px;
  color: #22d3ee;
  animation: dashAiRotate 10s linear infinite;
  z-index: 1;
}

.dash-ai-label {
  font-size: 9px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  z-index: 1;
}

.dash-ai-status {
  font-size: 7px;
  color: #10b981;
  z-index: 1;
}

.dash-chart-ring {
  position: relative;
  width: 36px;
  height: 36px;
  margin: 0 auto 4px;
}

.dash-chart-ring svg {
  width: 100%;
  height: 100%;
}

.dash-ring-fill {
  animation: dashRingRotate 8s linear infinite;
  transform-origin: center;
}

.dash-ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
}

.dash-metric-row {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: rgba(255,255,255,0.4);
}

.dash-workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dash-step {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  color: rgba(255,255,255,0.5);
}

.dash-step-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7c3aed;
  animation: dashPulse 2s ease infinite;
}

.dash-step:nth-child(2) .dash-step-dot { animation-delay: 0.5s; }
.dash-step:nth-child(3) .dash-step-dot { animation-delay: 1s; }

.dash-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 28px;
}

.dash-bar {
  flex: 1;
  height: calc(var(--h) * 1% * 0.4);
  background: linear-gradient(to top, rgba(16,185,129,0.3), rgba(16,185,129,0.6));
  border-radius: 3px 3px 0 0;
  animation: dashBarGrow 2s ease-out infinite alternate;
}

.dash-bar:nth-child(1) { animation-delay: 0s; }
.dash-bar:nth-child(2) { animation-delay: 0.2s; }
.dash-bar:nth-child(3) { animation-delay: 0.4s; }
.dash-bar:nth-child(4) { animation-delay: 0.6s; }
.dash-bar:nth-child(5) { animation-delay: 0.8s; }

.dash-realtime-nodes {
  display: flex;
  gap: 6px;
}

.dash-live-node {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f59e0b;
  animation: dashNodePing 2s ease infinite;
  animation-delay: calc(var(--i) * 0.4s);
}

.dash-line-chart {
  width: 100%;
  height: 28px;
  margin-bottom: 3px;
}

.dash-line-path {
  fill: none;
  stroke: #f472b6;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 4px rgba(244,114,182,0.3));
}

.dash-line-fill {
  fill: url(#dashGrad);
  opacity: 0.15;
  stroke: none;
}

.dash-graph-labels {
  display: flex;
  justify-content: space-between;
  font-size: 7px;
  color: rgba(255,255,255,0.3);
  padding: 0 2px;
}

.dash-hr-rows {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.dash-hr-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 8px;
}

.dash-hr-avatar {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dash-hr-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dash-hr-name {
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.dash-hr-role {
  color: rgba(255,255,255,0.3);
}

.dash-hr-status {
  font-size: 7px;
}

.dash-finance-total {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 2px;
}

.dash-finance-row {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}

.dash-finance-chart {
  width: 100%;
  height: 18px;
  margin-bottom: 4px;
}

.dash-finance-line {
  fill: none;
  stroke: #34d399;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 4px rgba(52,211,153,0.3));
  animation: dashFinanceDraw 3s ease-out infinite;
}

.dash-finance-pills {
  display: flex;
  gap: 4px;
}

.dash-pill {
  font-size: 6px;
  padding: 2px 6px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: rgba(255,255,255,0.4);
}

.dash-proj-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 8px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.dash-proj-row:last-child { margin-bottom: 0; }

.dash-proj-row span:first-child {
  width: 28px;
  flex-shrink: 0;
}

.dash-proj-bar {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}

.dash-proj-fill {
  height: 100%;
  width: calc(var(--w) * 1%);
  background: linear-gradient(90deg, #818cf8, #7c3aed);
  border-radius: 2px;
  animation: dashProjFill 2s ease-out infinite alternate;
}

.dash-invoice-rows {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 4px;
}

.dash-invoice-row {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  color: rgba(255,255,255,0.5);
}

.dash-invoice-row span:first-child {
  font-family: monospace;
  opacity: 0.6;
}

.dash-clients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 4px;
}

.dash-client-icon {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 600;
  color: #fff;
}

.dash-client-plus {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  border: 1px dashed rgba(255,255,255,0.2);
}

.dash-proc-rows {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dash-proc-row {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 8px;
  color: rgba(255,255,255,0.5);
}

.dash-proc-row span:nth-child(2) {
  font-family: monospace;
  opacity: 0.6;
  flex: 1;
}

.dash-proc-row span:nth-child(3) {
  font-size: 7px;
}

.dash-proc-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.dash-inv-items {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.dash-inv-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 8px;
  color: rgba(255,255,255,0.5);
}

.dash-inv-item span:first-child {
  width: 32px;
  flex-shrink: 0;
}

.dash-inv-item .dash-proj-bar {
  flex: 1;
}

.dash-inv-pct {
  font-size: 7px;
  color: rgba(255,255,255,0.3);
  width: 20px;
  text-align: right;
}

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

@keyframes dashGridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(30px, 30px); }
}

@keyframes webRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes webPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

@keyframes dashPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

@keyframes dashAiPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(124,58,237,0.1); }
  50% { box-shadow: 0 0 40px rgba(124,58,237,0.2); }
}

@keyframes dashGlowExpand {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

@keyframes dashAiRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes dashRingRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes dashBarGrow {
  0% { height: 0; }
  100% { height: calc(var(--h) * 1% * 0.4); }
}

@keyframes dashNodePing {
  0% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); box-shadow: 0 0 8px rgba(245,158,11,0.6); }
  100% { opacity: 0.4; transform: scale(1); }
}

@keyframes dashFinanceDraw {
  0% { stroke-dashoffset: 200; }
  100% { stroke-dashoffset: 0; }
}

@keyframes dashProjFill {
  0% { width: 0; }
  100% { width: calc(var(--w) * 1%); }
}

@keyframes dashParticle {
  0% { transform: translate(0, 0) scale(0); opacity: 0; }
  20% { opacity: 0.8; transform: scale(1); }
  80% { opacity: 0.4; }
  100% { transform: translate(var(--tx), var(--ty)) scale(0); opacity: 0; }
}

/* ===== CITYSCAPE ===== */
.cityscape {
  position: absolute;
  bottom: 2%;
  left: 5%;
  width: 90%;
  height: 30%;
  display: flex;
  align-items: flex-end;
  z-index: 3;
}

.bldg {
  position: relative;
  width: calc(var(--w) * 1%);
  height: calc(var(--h) * 1%);
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.15), rgba(124, 58, 237, 0.08));
  border: 1px solid rgba(0, 212, 255, 0.1);
  margin-left: calc(var(--x) * 1% - var(--w) * 0.5%);
  border-radius: 2px 2px 0 0;
}

.bldg:first-child { margin-left: 0; }

.win {
  position: absolute;
  width: 15%;
  height: 8%;
  background: rgba(0, 212, 255, 0.5);
  top: calc(var(--t) * 1%);
  left: calc(var(--l) * 1%);
  border-radius: 1px;
  animation: twinkle 3s ease infinite;
  animation-delay: calc(var(--t) * 0.1s + var(--l) * 0.05s);
}

/* ===== STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-item { text-align: center; }
.stat-number {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, #00d4ff, #7c3aed, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease;
}
.stat-item:hover .stat-label { color: rgba(255, 255, 255, 0.6); }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 540px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 16px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: all 0.5s ease;
  overflow: hidden;
  isolation: isolate;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.2);
}
.service-card-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 16px;
  z-index: -1;
}
.service-card:hover .service-card-bg { opacity: 1; }

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
  transition: all 0.3s ease;
  color: #22d3ee;
}
.service-card:hover .service-icon { transform: scale(1.1); }

.service-icon svg { width: 28px; height: 28px; }

.service-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  position: relative;
}
.service-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  position: relative;
  transition: color 0.3s ease;
}
.service-card:hover p { color: rgba(255, 255, 255, 0.6); }

.service-glow {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  filter: blur(32px);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.service-card:hover .service-glow { opacity: 0.6; }

/* ===== TECHNOLOGY ===== */
.tech-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) { .tech-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tech-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

.tech-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 16px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s ease;
  overflow: hidden;
}
.tech-card:hover {
  transform: scale(1.02);
  border-color: rgba(255, 255, 255, 0.1);
}
.tech-card-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 16px;
}
.tech-card:hover .tech-card-bg { opacity: 0.1; }

.tech-card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.tech-icon { font-size: 2rem; }
.tech-info h3 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
.tech-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  margin-top: 10px;
  overflow: hidden;
}
.tech-bar-fill {
  height: 100%;
  border-radius: 2px;
  width: 0;
  transition: width 1.5s ease;
}
.tech-bar-fill.animate { width: 100%; }

/* Tech Tags */
.tech-tags-wrap {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.tech-tags-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.05), transparent, rgba(124, 58, 237, 0.05));
  pointer-events: none;
}
.tech-tags-title {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  position: relative;
}
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  position: relative;
}
.tech-tag {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.tech-tag:hover {
  color: #67e8f9;
  border-color: rgba(0, 212, 255, 0.3);
  background: rgba(0, 212, 255, 0.1);
  transform: scale(1.05);
}

/* ===== PORTFOLIO ===== */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 8px 20px;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover { color: rgba(255, 255, 255, 0.7); border-color: rgba(255, 255, 255, 0.1); }
.filter-btn.active {
  color: #67e8f9;
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
}

.portfolio-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }

.portfolio-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 16px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s ease;
  overflow: hidden;
}
.portfolio-card:hover { border-color: rgba(255, 255, 255, 0.1); }
.portfolio-card-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 16px;
}
.portfolio-card:hover .portfolio-card-bg { opacity: 1; }

.portfolio-card .category {
  font-size: 12px;
  font-weight: 500;
  color: rgba(0, 212, 255, 0.4);
  margin-bottom: 10px;
  display: block;
  position: relative;
}
.portfolio-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  position: relative;
}
.portfolio-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  margin-bottom: 1rem;
  position: relative;
  transition: color 0.3s ease;
}
.portfolio-card:hover p { color: rgba(255, 255, 255, 0.6); }
.portfolio-metric {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #67e8f9;
  padding: 6px 12px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 999px;
  position: relative;
}

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) { .why-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.timeline { position: relative; }
.timeline-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, #00d4ff, #7c3aed, transparent);
}
.timeline-item {
  position: relative;
  padding-left: 2.5rem;
  padding-bottom: 2rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -4px;
  top: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #00d4ff;
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.5);
}
.timeline-year {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(0, 212, 255, 0.4);
  margin-bottom: 2px;
  display: block;
}
.timeline-item h3 {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}
.timeline-item:hover h3 { color: #67e8f9; }
.timeline-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  transition: color 0.3s ease;
}
.timeline-item:hover p { color: rgba(255, 255, 255, 0.6); }

.qualities { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 1024px) { .qualities { padding-top: 3rem; } }

.quality-item {
  padding: 1.25rem;
  border-radius: 12px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s ease;
}
.quality-item:hover { border-color: rgba(0, 212, 255, 0.2); }
.quality-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.quality-header span:first-child {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}
.quality-item:hover .quality-header span:first-child { color: #fff; }
.quality-value {
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(135deg, #00d4ff, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.quality-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  overflow: hidden;
}
.quality-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #00d4ff, #7c3aed);
  width: 0;
  transition: width 1.5s ease;
}
.quality-bar-fill.animate { width: var(--target); }

.trust-card {
  padding: 1.5rem;
  border-radius: 12px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.trust-avatars { display: flex; }
.trust-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00d4ff, #7c3aed);
  border: 2px solid #0a0a0f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  margin-right: -8px;
}
.trust-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.trust-info p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }

.feature-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 16px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  transition: all 0.5s ease;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.2);
}
.feature-card-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 16px;
  z-index: -1;
}
.feature-card:hover .feature-card-bg { opacity: 1; }
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  color: #fff;
}
.feature-card:hover .feature-icon { transform: scale(1.1); }
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  position: relative;
}
.feature-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  position: relative;
  transition: color 0.3s ease;
  width: 100%;
}
.feature-card:hover p { color: rgba(255, 255, 255, 0.6); }
.feature-glow {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  filter: blur(32px);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.feature-card:hover .feature-glow { opacity: 0.6; }

/* ===== TESTIMONIALS ===== */
.testimonials-carousel {
  position: relative;
}
.testimonials-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

.testimonial-card {
  padding: 1.5rem;
  border-radius: 16px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s ease;
}
.testimonial-card:hover {
  border-color: rgba(0, 212, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.15), 0 0 40px rgba(0, 212, 255, 0.05);
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}
.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: #22d3ee;
}
.testimonial-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.testimonial-author h4 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.testimonial-author span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}
.testimonial-dot {
  height: 6px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.testimonial-dot.inactive {
  width: 6px;
  background: rgba(255, 255, 255, 0.2);
}
.testimonial-dot.active {
  width: 32px;
  background: linear-gradient(90deg, #00d4ff, #7c3aed);
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 3fr 2fr; gap: 3rem; } }

.form-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) { .form-grid { grid-template-columns: repeat(2, 1fr); } }
.form-grid .full { grid-column: 1 / -1; }

.form-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
}
.form-input::placeholder { color: rgba(255, 255, 255, 0.8); }
.form-input:focus {
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.15), 0 0 40px rgba(0, 212, 255, 0.05);
}
textarea.form-input { resize: vertical; min-height: 120px; }
.field-error { font-size: 12px; color: #f87171; margin-top: 4px; min-height: 18px; }
.form-input.input-error { border-color: #f87171; }

.contact-info-card {
  padding: 1.5rem;
  border-radius: 16px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.contact-info-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}
.contact-detail { margin-bottom: 1rem; }
.contact-detail:last-child { margin-bottom: 0; }
.contact-detail-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2px;
}
.contact-detail-value {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.social-card {
  padding: 1.5rem;
  border-radius: 16px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 1.5rem;
}
.social-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}
.social-link:hover {
  color: #67e8f9;
  border-color: rgba(0, 212, 255, 0.3);
  background: rgba(0, 212, 255, 0.1);
}
.social-link svg { width: 18px; height: 18px; }

/* ===== FOOTER ===== */
#footer {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 2rem;
  overflow: hidden;
}
.footer-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.02;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.5) 1px, transparent 1px);
  background-size: 40px 40px;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 280px;
  margin-top: 1rem;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}
.footer-col ul a:hover { color: #67e8f9; }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-bottom p { font-size: 12px; color: rgba(255, 255, 255, 0.3); }
.footer-legal { display: flex; gap: 1rem; }
.footer-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.3s ease;
}
.footer-legal a:hover { color: rgba(255, 255, 255, 0.4); }

/* ===== CUSTOM CURSOR ===== */
#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  background: rgba(0, 212, 255, 0.8);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  mix-blend-mode: difference;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 639px) {
  .section { padding: 2.5rem 0; }
  .hide-mobile { display: none !important; }
  .dash-container { max-width: 480px; }
}

@media (max-width: 767px) {
  .hero-title { font-size: 2rem; }
  .stats-grid { gap: 1.5rem; }
}

@media (min-width: 768px) {
  .hide-desktop { display: none !important; }
}
