:root {
  /* Colors */
  --bg-primary: #050b14;
  --bg-secondary: #0a1122;
  --bg-glass: rgba(16, 25, 45, 0.6);
  --text-main: #f0f4f8;
  --text-muted: #9ba4b5;
  --accent-1: #3b82f6; /* Bright Blue */
  --accent-2: #8b5cf6; /* Vibrant Purple */
  
  /* Radii & Shadows */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
  --border-glass: 1px solid rgba(255, 255, 255, 0.05);

  /* Typography */
  --font-family: 'Outfit', sans-serif;
}

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

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

body {
  overflow-x: hidden;
  position: relative;
}

/* Background Ambient Orbs */
.bg-orb-1, .bg-orb-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  opacity: 0.4;
  pointer-events: none;
}
.bg-orb-1 {
  top: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: var(--accent-1);
}
.bg-orb-2 {
  top: 40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: var(--accent-2);
  opacity: 0.25;
}

/* Typography Utilities */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.text-center { text-align: center; }
.mb-loose { margin-bottom: 2.5rem; }
.accent-text {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container-sm {
  max-width: 800px;
}
.section {
  padding: 6rem 0;
  position: relative;
}

/* Glassmorphism Panel */
.glass-panel {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: var(--border-glass);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glass);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 0;
  z-index: 100;
  background: rgba(5, 11, 20, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}
.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: 1px;
}
.logo-text {
  color: var(--accent-1);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: var(--accent-1);
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--text-main);
  border-radius: 3px;
  transition: 0.3s;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: var(--font-family);
  font-size: 1rem;
}
.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}
.btn-primary {
  background: var(--accent-1);
  color: #fff;
}
.btn-primary:hover {
  background: #2563eb;
  transform: translateY(-2px);
}
.btn-glow {
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}
.btn-glow:hover {
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-main);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}
.btn-full {
  width: 100%;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 6rem;
  text-align: center;
}
.hero-chip {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 50px;
  color: var(--accent-1);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: -1px;
}
.hero-subtitle {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-size: 1.25rem;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}
.hero-glass {
  display: flex;
  justify-content: center;
  gap: 3rem;
  width: 100%;
  max-width: 900px;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-glass);
}
.glass-stat {
  text-align: center;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-1);
  margin-bottom: 0.5rem;
}
.stat-label {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-subtitle {
  color: var(--accent-1);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: 3rem;
}

/* Process Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.process-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  position: relative;
  transition: transform 0.3s ease, background 0.3s ease;
}
.process-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(59, 130, 246, 0.2);
}
.process-icon {
  width: 60px;
  height: 60px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent-1);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Features List */
.features-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.feature-item {
  display: flex;
  gap: 1.5rem;
  background: var(--bg-secondary);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.03);
  align-items: flex-start;
  transition: all 0.3s ease;
}
.feature-item:hover {
  border-color: var(--accent-2);
  transform: translateX(10px);
}
.feature-check {
  color: var(--accent-1);
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-text h4 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}
.feature-text p {
  margin-bottom: 0;
  font-size: 1rem;
}

/* Contact Section */
.section-contact {
  position: relative;
}
.contact-box {
  padding: 4rem;
}
.contact-methods {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.contact-method {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text-main);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.contact-method:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
}
.method-icon {
  color: var(--accent-1);
}
.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 2rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.divider span {
  padding: 0 1rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
}
.form-group input, 
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: var(--font-family);
  font-size: 1rem;
  transition: all 0.3s ease;
}
.form-group input:focus, 
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-1);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}
.form-success {
  margin-top: 2rem;
  padding: 2rem;
  text-align: center;
  border-color: #10b981; /* green */
}
.form-success h4 {
  color: #10b981;
  font-size: 1.5rem;
}
.hidden { display: none; }

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 4rem;
  background: var(--bg-primary);
}
.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand {
  max-width: 300px;
}
.footer-desc {
  margin-top: 1rem;
  font-size: 0.95rem;
}
.footer-links {
  display: flex;
  gap: 4rem;
}
.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.footer-links ul {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.8rem;
  color: var(--text-muted);
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--accent-1);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-up.visible, .fade-in-left.visible {
  opacity: 1;
  transform: translate(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive Media Queries */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .nav-links.active {
    display: flex;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-cta {
    flex-direction: column;
  }
  .hero-glass {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  .contact-methods {
    flex-direction: column;
  }
  .contact-box {
    padding: 2rem 1.5rem;
  }
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
}
