/* ============================================
   SERVICES - Shared
   ============================================ */
.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

/* ============================================
   Hero
   ============================================ */
.services-hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, #f8f6fc 0%, #ffffff 100%);
  text-align: center;
}

.services-title {
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #1d1d1f;
  margin-bottom: 16px;
}

.services-subtitle {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: #6e6e73;
  max-width: 480px;
  margin: 0 auto;
}

/* ============================================
   Showcase Sections
   ============================================ */
.services-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.services-section.section-alt {
  background-color: #fafafa;
}

.service-showcase {
  display: flex;
  align-items: center;
  gap: 64px;
}

.service-showcase.showcase-reverse {
  flex-direction: row-reverse;
}

/* ---- Content Side ---- */
.showcase-content {
  flex: 1;
  min-width: 0;
}

.category-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6643b5;
  background: rgba(102, 67, 181, 0.08);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.showcase-title {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #1d1d1f;
  margin-bottom: 16px;
}

.showcase-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #6e6e73;
  margin-bottom: 28px;
}

/* ---- Feature Checklist ---- */
.showcase-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.showcase-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #1d1d1f;
}

.feature-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(102, 67, 181, 0.08);
  color: #6643b5;
}

/* ---- Service Tags ---- */
.showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  padding: 8px 18px;
  border-radius: 980px;
  background-color: #f3f0fa;
  color: #6643b5;
}

/* ---- Image Side ---- */
.showcase-image {
  flex: 1;
  min-width: 0;
  position: relative;
}

.showcase-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

/* ---- Floating Cards over Image ---- */
.image-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
  z-index: 2;
}

.image-float-card.float-top {
  top: 24px;
  left: -28px;
}

.image-float-card.float-bottom {
  bottom: 24px;
  right: -28px;
}

.showcase-reverse .image-float-card.float-top {
  left: auto;
  right: -28px;
}

.showcase-reverse .image-float-card.float-bottom {
  right: auto;
  left: -28px;
}

.float-icon {
  font-size: 22px;
  line-height: 1;
}

.image-float-card strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #1d1d1f;
  line-height: 1.2;
}

.image-float-card small {
  font-size: 11px;
  font-weight: 400;
  color: #86868b;
  line-height: 1.3;
}

/* ============================================
   CTA Section
   ============================================ */
.services-cta {
  padding: 80px 0;
  background: linear-gradient(180deg, #f5f5f7 0%, #f3f0fa 100%);
  border-top: 1px solid #e8e8ed;
}

.cta-inner {
  text-align: center;
}

.cta-inner h2 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1d1d1f;
  margin-bottom: 10px;
}

.cta-inner p {
  font-size: 16px;
  font-weight: 400;
  color: #6e6e73;
  margin-bottom: 32px;
}

.btn-cta {
  display: inline-block;
  padding: 14px 36px;
  background-color: #6643b5;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 980px;
  letter-spacing: 0.2px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-cta:hover {
  background-color: #5536a0;
  transform: translateY(-1px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media screen and (max-width: 1024px) {
  .services-container {
    padding: 0 32px;
  }

  .services-hero {
    padding: 120px 0 64px;
  }

  .services-title {
    font-size: 36px;
  }

  .service-showcase {
    gap: 40px;
  }

  .showcase-title {
    font-size: 28px;
  }

  .showcase-image img {
    height: 340px;
  }

  .image-float-card.float-top {
    left: -12px;
  }

  .image-float-card.float-bottom {
    right: -12px;
  }

  .showcase-reverse .image-float-card.float-top {
    right: -12px;
  }

  .showcase-reverse .image-float-card.float-bottom {
    left: -12px;
  }
}

/* Mobile */
@media screen and (max-width: 768px) {
  .services-container {
    padding: 0 24px;
  }

  .services-hero {
    padding: 100px 0 48px;
  }

  .services-title {
    font-size: 30px;
    letter-spacing: -0.02em;
  }

  .services-subtitle {
    font-size: 15px;
  }

  .services-section {
    padding: 64px 0;
  }

  .service-showcase,
  .service-showcase.showcase-reverse {
    flex-direction: column;
    gap: 36px;
  }

  .showcase-title {
    font-size: 26px;
  }

  .showcase-description {
    font-size: 15px;
  }

  .showcase-image img {
    height: 280px;
  }

  .image-float-card.float-top,
  .showcase-reverse .image-float-card.float-top {
    left: 12px;
    right: auto;
    top: 16px;
  }

  .image-float-card.float-bottom,
  .showcase-reverse .image-float-card.float-bottom {
    right: 12px;
    left: auto;
    bottom: 16px;
  }

  .showcase-features li {
    font-size: 14px;
  }

  .services-cta {
    padding: 56px 0;
  }

  .cta-inner h2 {
    font-size: 22px;
  }
}
