/* ================================================================
   Start Plan page  —  page-templates/start-plan.php
   ================================================================ */

/* ── Page wrapper ──────────────────────────────────────────────── */
#page-start-plan {
  background-color: #EBF6FF;
  min-height: 100vh;
}

/* ── Badge (eyebrow pill) ──────────────────────────────────────── */
.spl-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 30px;
  border: 1px solid #EBE9E6;
  background: #FFFFFF;
  box-shadow: 0px 5px 10px 0px rgba(77, 137, 199, 0.1);
  font-family: "SFProText", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0C1D3D;
  line-height: 1;
  height: 40px;
}

/* ── Header section ────────────────────────────────────────────── */
.spl-header {
  padding-top: 140px;
  padding-bottom: 60px;
  text-align: center;
}

.spl-header__eyebrow-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.spl-header__title {
  font-family: "PT Serif", serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #0C1D3D;
  margin-bottom: 16px;
}

.spl-header__title .color-light-blue,
.spl-header__title .color-highlight {
  color: #1A4C8B;
}

.spl-header__subtitle {
  font-family: "SFProText", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: #6D6969;
  margin: 0 auto;
  max-width: 480px;
}

/* ── Plans section ─────────────────────────────────────────────── */
.spl-plans {
  padding-bottom: 80px;
}

.spl-plans__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ── Plan card ─────────────────────────────────────────────────── */
.spl-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 5px 10px 0px rgba(8, 26, 73, 0.04);
  display: flex;
  flex-direction: column;
}

.spl-card__body {
  padding: 40px 40px 32px;
  flex: 1;
}

.spl-card__icon {
  margin-bottom: 20px;
  line-height: 0;
}

.spl-card__icon img,
.spl-card__icon svg {
  width: 58px;
  height: 58px;
  display: inline-block;
  border-radius: 8px;
}

.spl-card__title {
  font-family: "PT Serif", serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
  color: #0C1D3D;
  margin-bottom: 16px;
}

.spl-card__desc {
  font-family: "SFProText", sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #6D6969;
  margin-bottom: 24px;
}

.spl-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 28px;
}

.spl-card__price {
  font-family: "PT Serif", serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: #618E00;
}

.spl-card__period {
  font-family: "SFProText", sans-serif;
  font-size: 16px;
  color: #6D6969;
}

/* Override common.css a.button constraints */
.spl-card__cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 100% !important;
  background: #1A4C8B !important;
  color: #FFFFFF !important;
  font-family: "SFProText", sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 200ms ease;
  box-sizing: border-box;
}

.spl-card__cta:hover {
  background: #133772 !important;
}

.spl-card__image-wrap {
  line-height: 0;
  overflow: hidden;
}

.spl-card__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top center;
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .spl-card__body {
    padding: 32px 32px 28px;
  }
  .spl-card__title {
    font-size: 24px;
  }
  .spl-card__price {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .spl-header {
    padding-top: 110px;
    padding-bottom: 48px;
  }
  .spl-header__title {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .spl-header {
    padding-top: 90px;
    padding-bottom: 36px;
  }
  .spl-header__title {
    font-size: 30px;
  }
  .spl-header__subtitle {
    font-size: 15px;
  }
  .spl-plans {
    padding-bottom: 60px;
  }
  .spl-plans__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .spl-card__cta {
    font-size: 15px;
    padding: 13px 22px;
  }
}

@media (max-width: 568px) {
  .spl-header {
    padding-top: 80px;
    padding-bottom: 28px;
  }
  .spl-header__eyebrow-wrap {
    margin-bottom: 18px;
  }
  .spl-header__title {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .spl-plans {
    padding-bottom: 40px;
  }
  .spl-card__body {
    padding: 28px 24px 24px;
  }
  .spl-card__title {
    font-size: 22px;
  }
  .spl-card__desc {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .spl-card__price-row {
    margin-bottom: 20px;
  }
  .spl-card__price {
    font-size: 36px;
  }
  .spl-card__cta {
    font-size: 14px;
  }
}
