.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

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

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(0, 217, 255, 0.1);
  border: 1px solid rgba(0, 217, 255, 0.2);
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-badge .badge-dot {
  width: 6px;
  height: 6px;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

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

.hero-title {
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  font-family: var(--font-secondary);
  letter-spacing: -2px;
}

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

.hero-description {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stat h3 {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-secondary);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat h3 .stat-plus {
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat p {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-3d-container {
  position: relative;
  width: 100%;
  height: 600px;
  z-index: 1;
}

#hero-3d-canvas {
  width: 100%;
  height: 100%;
  outline: none;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

.hero-scroll-indicator .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--secondary), transparent);
}

/* Trusted By */
.trusted-section {
  padding: 80px 0;
  text-align: center;
}

.trusted-label {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 40px;
  font-weight: 500;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  opacity: 0.5;
}

.trusted-logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-secondary);
  letter-spacing: -0.5px;
  transition: var(--transition);
}

.trusted-logo:hover {
  opacity: 1;
  color: var(--secondary);
}

/* Services Overview */
.services-overview {
  position: relative;
}

.services-overview .section-title.reveal,
.services-overview .section-subtitle.reveal,
.services-overview .section-label.reveal {
  opacity: 1;
  transform: translateY(0);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.service-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.08), transparent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 217, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 217, 255, 0.05);
}

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

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(0, 217, 255, 0.1);
  border: 1px solid rgba(0, 217, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--secondary);
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: var(--neon-glow);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  font-family: var(--font-secondary);
}

.service-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.service-link i {
  transition: var(--transition);
}

.service-card:hover .service-link i {
  transform: translateX(5px);
}

/* Why Choose Us */
.why-choose-section {
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.why-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  display: flex;
  gap: 24px;
}

.why-card:hover {
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.why-number {
  font-size: 48px;
  font-weight: 900;
  color: rgba(0, 217, 255, 0.1);
  font-family: var(--font-secondary);
  line-height: 1;
  min-width: 60px;
}

.why-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  font-family: var(--font-secondary);
}

.why-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Statistics */
.stats-section {
  position: relative;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.stat-item {
  padding: 40px 20px;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

.stat-item:hover {
  border-color: rgba(0, 217, 255, 0.3);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  font-family: var(--font-secondary);
  margin-bottom: 8px;
  display: block;
}

.stat-number .accent {
  color: var(--secondary);
}

.stat-item p {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Portfolio Preview */
.portfolio-preview {
  position: relative;
}

.portfolio-showcase {
  margin-top: 60px;
}

.portfolio-showcase-inner {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.portfolio-showcase-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(0, 217, 255, 0.03), transparent, rgba(255, 215, 0, 0.03), transparent);
  animation: rotateGradient 20s linear infinite;
}

@keyframes rotateGradient {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

.portfolio-showcase-icon {
  font-size: 64px;
  color: var(--secondary);
  margin-bottom: 30px;
  display: block;
}

.portfolio-showcase h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  font-family: var(--font-secondary);
}

.portfolio-showcase p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Process */
.process-section {
  position: relative;
}

.process-timeline {
  position: relative;
  margin-top: 60px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--secondary), rgba(0, 217, 255, 0.1));
  transform: translateX(-50%);
}

.process-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  position: relative;
}

.process-step:nth-child(even) .process-content {
  order: 2;
}

.process-step:nth-child(even) .process-visual {
  order: 1;
}

.process-step-number {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary);
  font-family: var(--font-secondary);
  z-index: 2;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

.process-content {
  padding-right: 60px;
}

.process-step:nth-child(even) .process-content {
  padding-right: 0;
  padding-left: 60px;
}

.process-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  font-family: var(--font-secondary);
}

.process-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

.process-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-visual-inner {
  width: 200px;
  height: 200px;
  border-radius: 30px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: var(--secondary);
  transition: var(--transition);
}

.process-step:hover .process-visual-inner {
  border-color: var(--secondary);
  box-shadow: var(--neon-glow);
  transform: scale(1.05);
}

/* Industries */
.industries-section {
  position: relative;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.industry-item {
  padding: 32px 24px;
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.industry-item:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 217, 255, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.industry-icon {
  font-size: 36px;
  color: var(--secondary);
  margin-bottom: 16px;
  display: block;
}

.industry-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

/* Testimonials */
.testimonials-section {
  position: relative;
}

/* FAQ */
.faq-section {
  position: relative;
}

/* CTA */
.cta-section {
  position: relative;
}

.cta-box {
  padding: 80px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(255, 215, 0, 0.02));
  border: 1px solid rgba(0, 217, 255, 0.15);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(0, 217, 255, 0.05), transparent 70%);
  pointer-events: none;
}

.cta-box h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  font-family: var(--font-secondary);
}

.cta-box p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

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

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-3d-container {
    height: 400px;
  }

  .hero-stats {
    gap: 30px;
  }

  .hero-stat h3 {
    font-size: 28px;
  }

  .process-timeline::before {
    left: 24px;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-left: 60px;
  }

  .process-step-number {
    left: 24px;
  }

  .process-content {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .process-step:nth-child(even) .process-content {
    order: unset;
  }

  .process-step:nth-child(even) .process-visual {
    order: unset;
  }

  .cta-box {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .hero-description {
    font-size: 16px;
  }

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

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

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

  .hero-3d-container {
    height: 300px;
  }

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

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

  .why-card {
    flex-direction: column;
    gap: 16px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-number {
    font-size: 36px;
  }

  .portfolio-showcase-inner {
    padding: 40px 24px;
  }

  .process-visual-inner {
    width: 150px;
    height: 150px;
    font-size: 48px;
  }

  .cta-box {
    padding: 40px 24px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

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

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

  .trusted-logos {
    gap: 30px;
  }
}
