/* ============================================================
   Service pages — CTA · Newsletter (Gelai light brand)
   ============================================================ */

/* ---------- CTA ---------- */
.svc-cta {
  position: relative;
  padding: 88px 0 96px;
  background:
    radial-gradient(ellipse 80% 70% at 50% 0%, rgba(12, 110, 183, 0.08) 0%, transparent 70%),
    var(--white);
  color: var(--navy);
  overflow: hidden;
}

.svc-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.svc-cta__title {
  font-family: var(--font);
  font-size: clamp(32px, 4vw, var(--fs-title-section));
  font-weight: 600;
  line-height: 1.35;
  color: var(--navy);
  margin: 0 0 16px;
}

.svc-cta__title .text-blue {
  color: var(--blue);
}

.svc-cta__lead {
  font-family: var(--font);
  font-size: var(--fs-body-lg);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(35, 43, 64, 0.78);
  margin: 0 auto 36px;
  max-width: 620px;
}

.svc-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.svc-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: var(--btn-height);
  padding: 0 var(--btn-pad-x);
  font-family: var(--font);
  font-size: var(--btn-font-size);
  font-weight: 600;
  line-height: 1;
  border-radius: var(--btn-radius);
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.svc-cta__btn--primary {
  color: var(--btn-color);
  background: var(--btn-bg);
  border: none;
  box-shadow: var(--btn-shadow);
}

.svc-cta__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(12, 110, 183, 0.32);
}

.svc-cta__btn--ghost {
  display: none !important;
}

.svc-cta__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}

.svc-cta__card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(12, 110, 183, 0.12);
  box-shadow: 0 8px 28px rgba(12, 110, 183, 0.08);
  text-align: left;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.svc-cta__card:hover {
  border-color: rgba(12, 110, 183, 0.28);
  box-shadow: 0 12px 32px rgba(12, 110, 183, 0.14);
  transform: translateY(-2px);
}

.svc-cta__card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 110, 183, 0.1);
  color: var(--blue);
}

.svc-cta__card-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(35, 43, 64, 0.62);
  margin-bottom: 4px;
}

.svc-cta__card-value {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
}

/* ---------- Newsletter ---------- */
.svc-newsletter {
  position: relative;
  padding: 80px 0 88px;
  background: var(--white);
  overflow: hidden;
}

.svc-newsletter__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.svc-newsletter__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
  padding: 8px 18px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(12, 110, 183, 0.08);
  border: 1px solid rgba(12, 110, 183, 0.14);
}

.svc-newsletter__title {
  font-family: var(--font);
  font-size: clamp(28px, 3.5vw, var(--fs-title-section));
  font-weight: 600;
  line-height: 1.3;
  color: var(--navy);
  margin: 0 0 14px;
}

.svc-newsletter__brand {
  color: var(--blue);
  background: none;
  -webkit-text-fill-color: currentColor;
}

.svc-newsletter__lead {
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.55;
  color: rgba(35, 43, 64, 0.75);
  margin: 0 0 32px;
}

.svc-newsletter__form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto 28px;
}

.svc-newsletter__input {
  flex: 1 1 220px;
  height: var(--btn-height);
  padding: 0 20px;
  font-family: var(--font);
  font-size: 16px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(35, 43, 64, 0.14);
  border-radius: 10px;
  outline: none;
  box-shadow: 0 2px 10px rgba(35, 43, 64, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.svc-newsletter__input::placeholder {
  color: rgba(35, 43, 64, 0.42);
}

.svc-newsletter__input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(12, 110, 183, 0.12);
}

.svc-newsletter__submit {
  flex: 0 0 auto;
  height: var(--btn-height);
  padding: 0 var(--btn-pad-x);
  font-family: var(--font);
  font-size: var(--btn-font-size);
  font-weight: 600;
  color: var(--btn-color);
  border: none;
  border-radius: var(--btn-radius);
  cursor: pointer;
  background: var(--btn-bg);
  box-shadow: var(--btn-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.svc-newsletter__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(12, 110, 183, 0.32);
}

.svc-newsletter__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.svc-newsletter__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 14px;
  color: rgba(35, 43, 64, 0.72);
}

.svc-newsletter__check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--blue);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .svc-cta {
    padding: 64px 0 72px;
  }

  .svc-cta__cards {
    grid-template-columns: 1fr;
  }

  .svc-newsletter {
    padding: 64px 0 72px;
  }

  .svc-newsletter__form {
    flex-direction: column;
  }

  .svc-newsletter__submit {
    width: 100%;
  }

  .svc-newsletter__trust {
    flex-direction: column;
    gap: 12px;
  }
}
