:root {
  --bg-color: #050508;
  --bg-elevated: rgba(20, 20, 28, 0.7);
  --text-main: #FFFFFF;
  --text-muted: #A0A0B0;
  --accent-cyan: #00F0FF;
  --accent-purple: #7A22FF;
  --accent-gradient: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --font-family: 'Outfit', sans-serif;
  --transition-speed: 0.3s;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 3.5rem; letter-spacing: -1px; margin-bottom: 20px; }
h2 { font-size: 2.5rem; letter-spacing: -0.5px; margin-bottom: 15px; }
h3 { font-size: 1.5rem; margin-bottom: 10px; }
p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 20px; font-weight: 300; }

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Layout Core */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-padding {
  padding: 100px 0;
}

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

/* Glassmorphism Classes */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 30px;
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow: 0 10px 40px rgba(0, 240, 255, 0.1);
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: all var(--transition-speed);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
}

.btn-primary:hover {
  filter: brightness(1.2);
  box-shadow: 0 0 20px rgba(122, 34, 255, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.glow-btn::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: inherit;
  box-shadow: 0 0 20px var(--accent-cyan);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}

.glow-btn:hover::after {
  opacity: 0.5;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(16px);
  z-index: 1000;
  border-bottom: 1px solid var(--glass-border);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

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

.nav-links a:not(.btn-primary):hover {
  color: var(--accent-cyan);
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
}

.menu-btn span {
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  left: 0;
  transition: .25s ease-in-out;
}

.menu-btn span:nth-child(1) { top: 0; }
.menu-btn span:nth-child(2) { top: 9px; }
.menu-btn span:nth-child(3) { top: 18px; }

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  z-index: -1;
  animation: float 10s infinite ease-in-out alternate;
}

.glow-orb.top-left {
  background: var(--accent-cyan);
  top: -200px;
  left: -200px;
}

.glow-orb.bottom-right {
  background: var(--accent-purple);
  bottom: -200px;
  right: -200px;
  animation-delay: -5s;
}

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

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(122, 34, 255, 0.1);
  border: 1px solid rgba(122, 34, 255, 0.3);
  border-radius: 30px;
  color: var(--accent-cyan);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--glass-border);
}

.stat {
  color: var(--text-muted);
  font-size: 1rem;
}

.stat strong {
  display: block;
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 5px;
}

/* Services section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

/* How It Works - Pipeline */
.pipeline-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 60px;
  position: relative;
}

.pipeline-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 15px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--bg-elevated);
  border: 2px solid var(--accent-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  margin: 0 auto 20px;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.pipeline-line {
  flex-grow: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  margin-top: 30px;
  opacity: 0.5;
}

/* Industries Section */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.industry-card {
  position: relative;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  cursor: pointer;
}

.industry-image {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  z-index: 1;
}

.industry-card:hover .industry-image {
  transform: scale(1.05);
}

.industry-content {
  position: absolute;
  bottom: 0; left: 0; width: 100%;
  padding: 30px;
  z-index: 2;
}

/* About Section */
.about-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-box h3 {
  font-size: 3rem;
  color: var(--accent-cyan);
}

/* Partner Form */
.partner-section {
  background: rgba(20, 20, 28, 0.3);
  position: relative;
}

.partner-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.partner-benefits {
  list-style: none;
  margin-top: 30px;
}

.partner-benefits li {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 500;
}

.partner-form .form-row {
  display: flex;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-group input, .form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--accent-purple);
}

.submit-btn {
  width: 100%;
  margin-top: 10px;
  position: relative;
}

/* Footer */
.footer {
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 20px;
  background: var(--bg-elevated);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-brand h3 {
  color: #fff;
  letter-spacing: 2px;
}

.location {
  margin-top: 10px;
  color: var(--accent-cyan);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Responsive Media Queries */
@media (max-width: 900px) {
  h1 { font-size: 2.8rem; }
  .about-container { grid-template-columns: 1fr; }
  .partner-wrapper { grid-template-columns: 1fr; }
  .pipeline-container { flex-direction: column; align-items: center; gap: 30px; }
  .pipeline-line { display: none; }
  .pipeline-step { width: 100%; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 250px;
    height: 100vh;
    background: var(--bg-elevated);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding-top: 80px;
    transition: right 0.4s ease;
  }
  .nav-links.active {
    right: 0;
  }
  .menu-btn { display: block; z-index: 1001; }
  
  .hero-cta { flex-direction: column; }
  .stats-row { flex-direction: column; gap: 20px; align-items: center; }
  .form-row { flex-direction: column; gap: 0; }
  .footer-container { flex-direction: column; gap: 40px; }
}
