/* ---------------- SERVICES HERO ---------------- */
.services-hero {
  background: #ffffff;
  padding-block: clamp(4rem, 8vw, 6rem);
  padding-inline: clamp(1.5rem, 6vw, 10rem);
}

.services-hero-container {
  max-width: clamp(42rem, 55vw, 60rem);

  display: flex;
  flex-direction: column;
  gap: clamp(1.2rem, 3vw, 1.8rem);
}

.hero-pill {
  align-self: flex-start;
  font-size: clamp(0.75rem, 1.2vw, 0.85rem);

  padding: clamp(0.4rem, 1vw, 0.6rem) clamp(0.8rem, 2vw, 1.2rem);

  border-radius: 999rem;
  background: #07a3c31a;
  color: #343434;
  font-weight: 400;
}

.services-hero-title {
  font-weight: 400;
  line-height: 1.2;

  font-size: clamp(2rem, 5vw, 3.125rem);
  color: #111827;
}

.services-hero-text {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  line-height: 1.6;

  color: #6b7280;
  max-width: clamp(28rem, 45vw, 40rem);
  font-weight: 400;
}

.services-hero-actions {
  display: flex;
  gap: clamp(0.8rem, 2vw, 1.2rem);
  margin-top: clamp(0.5rem, 1.5vw, 1rem);
}

.btn-primary {
  min-height: clamp(2.75rem, 6vw, 3.25rem);
  min-width: clamp(9rem, 28vw, 11rem);

  font-size: clamp(0.85rem, 1.4vw, 0.95rem);
  font-weight: 400;

  padding: clamp(0.6rem, 1.2vw, 0.8rem) clamp(1.4rem, 3vw, 2rem);

  border-radius: clamp(0.4rem, 0.8vw, 0.6rem);
  color: #ffffff;

  background: linear-gradient(96.12deg, #13b7a6 0%, #0892b2 100%);
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.btn-secondary {
  min-height: clamp(2.75rem, 6vw, 3.25rem);
  min-width: clamp(9rem, 28vw, 11rem);

  font-size: clamp(0.85rem, 1.4vw, 0.95rem);
  font-weight: 400;

  padding: clamp(0.6rem, 1.2vw, 0.8rem) clamp(1.4rem, 3vw, 2rem);

  border-radius: clamp(0.4rem, 0.8vw, 0.6rem);
  color: #111827;

  background: transparent;
  border: 0.0625rem solid #d1d5db;

  text-decoration: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

@media (hover: hover) {
  .btn-primary:hover {
    transform: translateY(-0.15rem);
    box-shadow: 0 0.6rem 1.4rem rgba(19, 183, 166, 0.35);
  }
}

.btn-primary:active {
  transform: scale(0.97);
}

.btn-primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(19, 183, 166, 0.35);
}

@media (hover: hover) {
  .btn-secondary:hover {
    background: #f9fafb;
    border-color: #9ca3af;
    transform: translateY(-0.15rem);
  }
}

.btn-secondary:active {
  transform: scale(0.97);
}

.btn-secondary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(17, 24, 39, 0.2);
}

@media (max-width: 768px) {
  .services-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ------------------------- Service Section -------------------------- */
/* ---------- Service 01, 02, 03 ---------------- */
.service-section {
  max-width: 68.75rem;
  margin: auto;
  padding: 4rem 1rem;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: clamp(0.4rem, 1vw, 0.6rem) clamp(0.8rem, 2vw, 1.2rem);
  border-radius: 999rem;
  background: #07a3c31a;
  color: #343434;
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 400;
}

.service-section h2 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 400;
  margin-bottom: clamp(1rem, 2vw, 1.4rem);
  color: #111827;
  line-height: 1.2;
}

.section-desc {
  max-width: 43.75rem;
  margin: 0 auto 2rem;
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  line-height: 1.5;
  color: #4b5563;
}

.service-cards {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.service-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.6rem;
  width: 100%;
  max-width: 20rem;
  text-align: left;

  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}

@media (hover: hover) {
  .service-card:hover {
    transform: translateY(-0.375rem);
    box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.08);
  }
}

.service-card:active {
  transform: scale(0.98);
}

.icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 0.625rem;
  background: #e7edf3;
  color: #0892b2;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

@media (hover: hover) {
  .service-card:hover .icon-box {
    background: #e0f2fe;
    transform: scale(1.1);
  }
}

.service-card h3 {
  font-size: clamp(1.2rem, 2.4vw, 1.25rem);
  font-weight: 400;
  margin-bottom: 0.4rem;
}

.service-card p {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  line-height: clamp(1rem, 3vw, 1.3rem);
  opacity: 0.95;
  color: #6b7280;
}

.key-benefits {
  margin-top: 4rem;
  background: #f0fdff;
  padding: 2.5rem 1.5rem;
  border-radius: 1rem;
}

.key-benefits h3 {
  font-size: clamp(1.2rem, 2.4vw, 1.4rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.key-benefits ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 0.8rem 2rem;
  max-width: 50rem;
  margin: 0 auto 2rem;
  text-align: left;
}

.key-benefits li {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  opacity: 0.95;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 400;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.8rem;
  border-radius: 0.6rem;
  background: linear-gradient(90deg, #12b5a6, #0894b0);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  margin-top: 2.5rem;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

@media (hover: hover) {
  .cta-btn:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.75rem 1.5rem rgba(19, 183, 166, 0.35);
  }
}

.cta-btn:active {
  transform: scale(0.97);
}

@media (max-width: 768px) {
  .service-section {
    padding: 3rem 1rem;
  }

  .service-card {
    max-width: 100%;
  }
}

/* ------------- Service 02, 03 Button ------------- */
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.8rem;
  border-radius: 0.6rem;
  background: linear-gradient(90deg, #12b5a6, #0894b0);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  margin-top: 2.5rem;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.primary-btn:hover {
  transform: translateY(-0.2rem);
  box-shadow: 0 0.8rem 1.4rem rgba(8, 148, 176, 0.35);
}

/* -------------------- CTA Section --------------------- */
.cta-section {
  background:
    radial-gradient(
      circle at center,
      rgba(255, 255, 255, 0.08),
      transparent 60%
    ),
    linear-gradient(180deg, #0f3d6e, #0b3a67);
  padding: clamp(3.5rem, 7vw, 5.5rem) 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-content {
  max-width: clamp(45rem, 80vw, 65rem);
  text-align: center;
  color: #ffffff;
}

.cta-content h2 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 400;
  margin-bottom: clamp(1rem, 2vw, 1.4rem);
  line-height: 1.2;
}

.cta-content p {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  max-width: 43.75rem;
  margin: 0 auto 2.2rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-actions .btn {
  min-height: 3rem;
  padding: 0 1.8rem;
  border-radius: 0.55rem;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn.primary {
  background: linear-gradient(90.63deg, #0cc6b4 0%, #07a2c4 100.22%);

  color: #083344;
  font-weight: 500;
}

.btn.primary:hover {
  transform: translateY(-0.15rem);
  box-shadow: 0 0.7rem 1.5rem rgba(31, 212, 199, 0.45);
}

.btn.secondary {
  border: 0.08rem solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
  background: #276599;
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-0.15rem);
}

@media (max-width: 768px) {
  .ct-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn {
    width: 100%;
  }
}
