/* ==================================================
   DIN eKYC Section 9 — Pricing Split Alignment Patch
   Scope: /din-ekyc-dir-3-kyc-filing/
================================================== */

.mc-service-fee-split {
  display: grid;
  grid-template-columns: minmax(0, 560px) 340px;
  gap: 24px;
  justify-content: center;
  align-items: center;
  max-width: 960px;
  margin: 0 auto clamp(34px, 4.5vw, 52px);
}

/* Left heading/text column */
.mc-service-fee-split__content {
  max-width: 560px;
  margin: 0;
  text-align: left;
}

.mc-service-fee-split__content .mc-service-eyebrow {
  justify-content: flex-start;
}

.mc-service-fee-split__content .mc-service-title {
  max-width: 520px;
  margin: 24px 0 0;
}

.mc-service-fee-split__content .mc-service-lead {
  max-width: 540px;
  margin: 16px 0 0;
  font-size: clamp(16px, 1.18vw, 18px);
  line-height: 1.62;
}

/* Right pricing card */
.mc-service-fee-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 340px;
  justify-self: start;
  border: 1px solid rgba(224, 231, 245, 0.95);
  border-radius: var(--mc-service-radius-lg);
  background:
    radial-gradient(circle at 92% 10%, rgba(64, 133, 255, 0.16), transparent 34%),
    linear-gradient(180deg, var(--mc-service-white) 0%, #f7fbff 100%);
  box-shadow: var(--mc-service-shadow-card);
  padding: clamp(24px, 3vw, 34px);
}

.mc-service-fee-card__eyebrow {
  margin: 0;
  color: var(--mc-service-blue);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mc-service-fee-card__amount {
  margin-top: 14px;
  color: var(--mc-service-dark);
  font-size: clamp(44px, 5vw, 64px);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.mc-service-fee-card__amount span {
  display: block;
  margin-top: 8px;
  color: var(--mc-service-body);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.mc-service-fee-card__text {
  margin: 18px 0 0;
  color: var(--mc-service-body);
  font-size: 15.5px;
  line-height: 1.65;
}

.mc-service-fee-card__list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.mc-service-fee-card__list li {
  position: relative;
  padding-left: 24px;
  color: var(--mc-service-dark);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 650;
}

.mc-service-fee-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--mc-service-blue);
  font-weight: 900;
}

/* Tablet */
@media (max-width: 1024px) {
  .mc-service-fee-split {
    grid-template-columns: minmax(0, 1fr) 320px;
    max-width: 900px;
    gap: 22px;
  }

  .mc-service-fee-card {
    max-width: 320px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .mc-service-fee-split {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 100%;
    margin-bottom: 32px;
  }

  .mc-service-fee-split__content {
    max-width: none;
    text-align: left;
  }

  .mc-service-fee-split__content .mc-service-eyebrow {
    justify-content: flex-start;
  }

  .mc-service-fee-split__content .mc-service-title,
  .mc-service-fee-split__content .mc-service-lead {
    max-width: none;
  }

  .mc-service-fee-card {
    max-width: none;
    justify-self: stretch;
    padding: 24px 20px;
    border-radius: 18px;
  }
}

/* ==== DIN Fee-Card Approved Tick Icon ==== */

.mc-service-fee-card__list li::before {
  content: "" !important;
  position: absolute;
  top: 1px;
  left: 0;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background-color: var(--mc-service-blue);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='M504 256c0 136.97-111.03 248-248 248S8 392.97 8 256 119.03 8 256 8s248 111.03 248 248zM227.31 387.31l184-184c6.25-6.25 6.25-16.38 0-22.62l-22.62-22.63c-6.25-6.25-16.38-6.25-22.63 0L216 308.12l-70.06-70.06c-6.25-6.25-16.38-6.25-22.63 0l-22.62 22.63c-6.25 6.25-6.25 16.38 0 22.62l104 104c6.25 6.25 16.37 6.25 22.62 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
}
