

.service-detail {
  max-width: 1280px;
  margin: 0 auto;
}

.info-section {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: white;
  transition: all 0.3s ease;
}
.info-section:hover {
  box-shadow: 0 20px 35px -12px rgba(155, 81, 224, 0.12);
}
.info-section.reverse {
  flex-direction: row-reverse;
}
.info-content {
  flex: 1;
}
.info-content h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #9b51e0, #c084fc);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.info-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 1rem;
}
.info-image {
  flex: 0.8;
  border-radius: 1.25rem;
  overflow: hidden;
}
.info-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.25rem;
  transition: transform 0.4s ease;
}
.info-section:hover .info-image img {
  transform: scale(1.02);
}

.benefits-list {
  list-style: none;
  margin-top: 1.2rem;
}
.benefits-list li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: #334155;
  flex-wrap: nowrap;
}
.benefits-list .benefit-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefits-list .benefit-icon img {
  width: 18px;
  height: 18px;
}
.benefits-list .benefit-icon svg {
  width: 18px;
  height: 18px;
}

.service-types {
  margin: 4rem 0;
}
.types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.type-card {
  background: white;
  border-radius: 1.25rem;
  padding: 1.8rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #eef2ff;
}
.type-card:hover {
  transform: translateY(-6px);
  border-color: #9b51e0;
  box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.08);
}
.type-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.type-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.type-icon svg {
  width: 50px;
  height: 50px;
}
.type-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #1e293b;
}
.type-card p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.7;
}

.process-section {
  background: linear-gradient(135deg, #faf5ff, #f3e8ff);
  border-radius: 2rem;
  padding: 3rem;
  margin: 4rem 0;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step {
  text-align: center;
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #eef2ff;
  transition: all 0.3s ease;
}
.step:hover {
  transform: translateY(-4px);
  border-color: #9b51e0;
  box-shadow: 0 15px 30px -12px rgba(155, 81, 224, 0.1);
}
.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #9b51e0, #7c3aed);
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #1e293b;
}
.step p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.7;
}

.service-cta {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  margin: 3rem 0;
}
.service-cta h2 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
.service-cta p {
  margin-bottom: 1.8rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}
.service-cta .cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #9b51e0, #7c3aed);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 2rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.service-cta .cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(155, 81, 224, 0.4);
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(155, 81, 224, 0.2);
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}
.bubble-1 { width: 100px; height: 100px; top: -30px; right: 5%; animation-delay: 0s; }
.bubble-2 { width: 150px; height: 150px; bottom: -50px; left: 0; animation-delay: 1s; animation-duration: 8s; }
.bubble-3 { width: 60px; height: 60px; top: 50%; right: 15%; animation-delay: 2s; animation-duration: 5s; }
.bubble-4 { width: 80px; height: 80px; bottom: 20%; left: 10%; animation-delay: 0.5s; animation-duration: 7s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
  50% { transform: translateY(-20px) scale(1.05); opacity: 0.6; }
}

.bots-hero {
  text-align: center;
  padding: 2rem 0 1rem;
}
.bots-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #9b51e0, #c084fc);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 0.8rem;
}
.bots-hero p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.9;
}

.bots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.bot-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid #eef2ff;
  text-decoration: none;
  color: inherit;
  display: block;
}
.bot-card:hover {
  transform: translateY(-12px);
  border-color: #9b51e0;
  box-shadow: 0 30px 50px -20px rgba(155, 81, 224, 0.35);
}

.bot-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
  background: linear-gradient(135deg, #faf5ff, #f3e8ff);
  transition: all 0.4s ease;
}
.bot-card:hover .bot-icon {
  background: linear-gradient(135deg, #9b51e0, #7c3aed);
}
.bot-card:hover .bot-icon img {
  filter: brightness(0) invert(1);
}
.bot-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: all 0.4s ease;
}

.bot-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #1e293b;
}
.bot-card p {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.bot-card .bot-btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #9b51e0;
  border: 1px solid #9b51e0;
  background: transparent;
  transition: all 0.3s ease;
  text-decoration: none;
}
.bot-card .bot-btn:hover {
  background: #9b51e0;
  color: white;
}

.bots-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.bots-features .feature-item {
  text-align: center;
  padding: 1.5rem 1.2rem;
  background: white;
  border-radius: 1rem;
  border: 1px solid #eef2ff;
  transition: all 0.3s ease;
}
.bots-features .feature-item:hover {
  border-color: #9b51e0;
  transform: translateY(-6px);
  box-shadow: 0 15px 30px -12px rgba(155, 81, 224, 0.12);
}
.bots-features .feature-item .fi-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.6rem;
}
.bots-features .feature-item .fi-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.bots-features .feature-item h4 {
  font-size: 0.95rem;
  color: #1e293b;
  margin-bottom: 0.2rem;
}
.bots-features .feature-item p {
  font-size: 0.78rem;
  color: #94a3b8;
}

@media (max-width: 992px) {
  .info-section,
  .info-section.reverse {
    flex-direction: column;
    text-align: center;
  }
  .benefits-list li {
    justify-content: center;
  }
  .types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .info-image {
    width: 80%;
    margin: 0 auto;
  }
  .bots-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
    text-align: right;
    font-size: 0.85rem;
  }
  .benefits-list .benefit-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }
  .benefits-list .benefit-icon img,
  .benefits-list .benefit-icon svg {
    width: 16px;
    height: 16px;
  }
  .types-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .process-section {
    padding: 1.5rem;
  }
  .service-cta {
    padding: 1.5rem;
  }
  .service-cta h2 {
    font-size: 1.3rem;
  }
  .bubble-2,
  .bubble-4 {
    display: none;
  }
  .info-image {
    width: 100%;
  }

  
  .bots-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .bots-features {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .bots-hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .benefits-list li {
    font-size: 0.8rem;
    gap: 0.4rem;
  }
  .benefits-list .benefit-icon {
    width: 18px;
    height: 18px;
  }
  .benefits-list .benefit-icon img,
  .benefits-list .benefit-icon svg {
    width: 14px;
    height: 14px;
  }
  .info-content h3 {
    font-size: 1.3rem;
  }
}