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

:root {
  --primary-gradient: linear-gradient(135deg, #952197 0%, #6220f1 100%);
  --primary-color: #667eea;
  --secondary-color: #764ba2;
  --dark-bg: #0a0a0a;
  --light-bg: #ffffff;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --text-muted: #6b7280;
  --border-color: #e5e7eb;
  --accent-purple: #952197;
  --accent-blue: #6220f1;
  --primary-blue: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #3b82f6;
  --white: #ffffff;
}

/* === Global + Scrollbar === */
html {
  scroll-behavior: smooth;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === Hero Section === */
.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gradient);
  color: white;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 20px;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  line-height: 1.1;
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: white;
  opacity: 0.95;
  line-height: 1.6;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

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

/* === Introduction Section === */
.intro-section {
  padding: 100px 20px;
  background: var(--light-bg);
}

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

.intro-text {
  animation: fadeInLeft 0.8s ease-out;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.2;
}

.section-title.centered {
  text-align: center;
}

.section-description {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.8;
}

.section-description.centered {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}

.intro-image {
  position: relative;
  animation: fadeInRight 0.8s ease-out;
}

.intro-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.intro-image:hover img {
  transform: scale(1.02);
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cta-button {
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  background: var(--primary-gradient);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(149, 33, 151, 0.3);
  margin-top: 20px;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(149, 33, 151, 0.4);
}

/* === Services Section === */
.services-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--accent-purple);
}

.service-icon {
  width: 100%;
  height: 200px;
  margin-bottom: 24px;
  border-radius: 12px;
  overflow: hidden;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon img {
  transform: scale(1.1);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.service-description {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-features {
  list-style-type: disc;
  padding-left: 20px;
}

.service-features li {
  padding: 6px 0;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === Process Section === */
.process-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.process-timeline {
  max-width: 900px;
  margin: 60px auto 0;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 50px;
  bottom: 50px;
  width: 3px;
  background: var(--primary-gradient);
}

.process-step {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
  position: relative;
  animation: fadeInUp 0.6s ease-out backwards;
}

.process-step:nth-child(1) {
  animation-delay: 0.1s;
}
.process-step:nth-child(2) {
  animation-delay: 0.2s;
}
.process-step:nth-child(3) {
  animation-delay: 0.3s;
}
.process-step:nth-child(4) {
  animation-delay: 0.4s;
}
.process-step:nth-child(5) {
  animation-delay: 0.5s;
}
.process-step:nth-child(6) {
  animation-delay: 0.6s;
}

.step-number {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--primary-gradient);
  color: white;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(149, 33, 151, 0.3);
  position: relative;
  z-index: 1;
}

.step-content {
  flex: 1;
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.step-content:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.step-description {
  color: var(--text-muted);
  line-height: 1.7;
}

/* === Why Choose Us Section === */
.why-choose-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.benefit-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

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

.benefit-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.benefit-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* === CTA Section === */
.cta-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  line-height: 1.8;
}

.cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: var(--white);
  color: var(--primary-blue);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-xl);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 35px -5px rgba(0, 0, 0, 0.2);
}

/* === Footer === */
.footer-section {
  background: var(--dark-bg);
  color: var(--text-light);
}

/* === Responsive Design === */
@media (max-width: 968px) {
  .intro-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .hero-stats {
    gap: 40px;
  }

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

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }

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

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

  .cta-button {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding: 60px 20px;
  }

  .hero-stats {
    gap: 30px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .intro-section,
  .services-section,
  .process-section,
  .industries-section,
  .why-choose-section,
  .cta-section {
    padding: 60px 20px;
  }

  .service-card,
  .industry-card,
  .benefit-card {
    padding: 25px 20px;
  }

  .section-description.centered {
    margin-bottom: 40px;
  }
}
