.hero-buttons {
  justify-content: center;
}

.section-title,
.about-text {
  opacity: 1 !important;
}

.service-hero {
  height: 70vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(10, 14, 23, 0.9),
    rgba(0, 168, 255, 0.2)
  );
}

.service-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(0, 240, 255, 0.05)" d="M0,100 L100,0 L100,100 Z"></path></svg>');
  background-size: cover;
  z-index: -1;
}

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

.service-hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, var(--primary), var(--light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}

.service-hero p {
  font-size: 1.3rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.service-details {
  padding: 6rem 0;
  position: relative;
}

.service-details::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 240, 255, 0.05) 0%,
    transparent 70%
  );
  z-index: -1;
}

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

.benefit-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(0, 240, 255, 0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 240, 255, 0.1);
  border-color: var(--primary);
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.benefit-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--light);
}

.pain-solution {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #0a0e17, #0c1120);
  position: relative;
}

.problem-solution-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  margin-top: 4rem;
}

.problems-column,
.solutions-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.solution-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 3rem;
}

.problem-card,
.solution-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.problem-card:hover {
  border-color: var(--secondary);
  transform: translateY(-5px);
}

.solution-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.problem-icon,
.solution-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.problem-icon {
  background: rgba(255, 45, 117, 0.1);
  color: var(--secondary);
}

.solution-icon {
  background: rgba(0, 240, 255, 0.1);
  color: var(--primary);
}

.pain-cta {
  text-align: center;
  margin-top: 4rem;
}

.pain-cta p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

/* Social Proof */
.social-proof {
  padding: 6rem 0;
  position: relative;
  background: linear-gradient(to bottom, #0c1120, #0a0e17);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(0, 240, 255, 0.1);
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.testimonial-card.active {
  opacity: 1;
  height: auto;
}

.testimonial-content {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--light);
  position: relative;
}

.testimonial-content::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.2;
  position: absolute;
  top: -2rem;
  left: -1.5rem;
}

.author-info h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.author-info p {
  color: var(--gray);
  font-size: 0.9rem;
}

.clients-logos {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.clients-logos h3 {
  color: var(--gray);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  text-align: center;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.logos-grid img {
  max-height: 60px;
  width: auto;
  opacity: 0.8;
  transition: var(--transition);
  filter: grayscale(100%) brightness(2);
}

.logos-grid img:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1);
}

.results-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
}

.stat-card {
  text-align: center;
}

.stat-card h3 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-card p {
  color: var(--gray);
}

/* Guarantee Section */
.guarantee-section {
  padding: 6rem 0;
  position: relative;
}

.guarantee-card {
  background: rgba(0, 240, 255, 0.05);
  border-radius: 20px;
  padding: 4rem;
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
  overflow: hidden;
}

.guarantee-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 240, 255, 0.1) 0%,
    transparent 70%
  );
  z-index: -1;
}

.guarantee-icon {
  width: 100px;
  height: 100px;
  background: var(--primary);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  flex-shrink: 0;
}

.guarantee-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--light);
}

.guarantee-content ul {
  list-style: none;
  margin: 2rem 0;
}

.guarantee-content li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.guarantee-content i {
  color: var(--primary);
}

.guarantee-cta {
  font-size: 1.2rem;
  margin: 2rem 0 1.5rem;
  color: var(--light);
}

/* Responsive */
@media (max-width: 992px) {
  .problem-solution-grid {
    grid-template-columns: 1fr;
  }

  .solution-arrow {
    display: none;
  }

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

  .guarantee-card {
    flex-direction: column;
    text-align: center;
  }

  .guarantee-content ul {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .results-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .logos-grid {
    grid-template-columns: 1fr;
  }
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  height: 100%;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  z-index: 0;
}

.process-step {
  display: flex;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(0, 240, 255, 0.1);
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--light);
}

.technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.tech-badge {
  background: rgba(0, 240, 255, 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
}

.showcase {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #0a0e17, #0c1120);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.showcase-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: 300px;
}

.showcase-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: var(--transition);
}

.showcase-item:hover .showcase-overlay {
  opacity: 1;
}

.showcase-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.showcase-overlay p {
  transform: translateY(20px);
  transition: transform 0.3s ease 0.1s;
}

.showcase-item:hover .showcase-overlay h3,
.showcase-item:hover .showcase-overlay p {
  transform: translateY(0);
}

.showcase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-section {
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(0, 240, 255, 0.1) 0%,
    transparent 50%
  );
  z-index: -1;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--light);
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
}

@media (max-width: 992px) {
  .service-hero h1 {
    font-size: 3rem;
  }

  .service-hero p {
    font-size: 1.1rem;
  }

  .process-steps::before {
    left: 25px;
  }
}

@media (max-width: 768px) {
  .service-hero {
    height: auto;
    padding: 8rem 0;
  }

  .service-hero h1 {
    font-size: 2.5rem;
  }

  .process-step {
    flex-direction: column;
    gap: 1rem;
  }

  .process-steps::before {
    left: 30px;
    height: calc(100% - 60px);
    top: 60px;
  }

  .step-content {
    padding: 3rem;
  }
}
