/* ═══════════════════════════════════════════════════════
   TIER CARDS MODULE
   3-across pricing/tier cards with a large watermark numeral,
   borrowed from the numbered ".step" cards used in the
   design-contest-linked-in "How to Enter" section.
   ═══════════════════════════════════════════════════════ */

.tier-cards-section {
  --navy: #09476E;
  --blue: #0096D6;
  --gold: #C5960C;
  --lgray: #c5c5c5;
  font-family: "Galano Grotesque", Sans-Serif;
}

.imgt-module--outer-section {
  padding: 30px 0 45px;
}

.imgt-module--outer-section a,
.imgt-module--outer-section a > span {
  font-family: "Galano Grotesque Bold", Sans-Serif;
  color: #0096d6 !important;
}

.tier-cards-section .tier-cards-wrap {
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Widths match production's usable content width once nested in
   .row > .col-md-12 (container width minus the row/col 15px gutter cancel-out
   leaves a net -30px vs. the container's own outer width). */
@media (min-width: 768px) {
  .tier-cards-section .tier-cards-wrap {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .tier-cards-section .tier-cards-wrap {
    width: 940px;
  }
}
@media (min-width: 1200px) {
  .tier-cards-section .tier-cards-wrap {
    width: 1077px;
  }
}

.tier-cards-section .section-label {
  font-family: "Galano Grotesque Bold", Sans-Serif;
  color: var(--navy);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
}


.tier-cards-section .tier-cards-intro {
    font-family: "Galano Grotesque Bold", Sans-Serif !important;
  line-height: 1.65;
  text-align: center;
  margin: 0 auto 40px;
}

/* ── ROW / GRID ── */
.tier-cards-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: center;
}

/* ── CARD ── */
.tier-card {
  position: relative;
  flex: 1 1 calc(33.333% - 46px);
  min-width: 270px;
  background: #ffffff;
  border: 1px solid #D8E4ED;
  border-radius: 6px;
  padding: 40px 30px 34px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.tier-card:hover {
  box-shadow: 0 14px 32px rgba(9, 71, 110, 0.14);
  transform: translateY(-4px);
  border-color: var(--blue);
}

/* Big faint numeral watermark, top-right of the card */
.tier-card-watermark {
  position: absolute;
  top: -18px;
  right: 6px;
  font-family: "Galano Grotesque Bold", Sans-Serif;
  font-size: 120px;
  line-height: 0.8;
  font-weight: 700;
  color: var(--navy);
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

.tier-card:hover .tier-card-watermark {
  opacity: 0.21;
}

.tier-card-body {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
}

.tier-card-eyebrow {
  font-family: "Galano Grotesque Bold", Sans-Serif !important;
  color: var(--blue) !important;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0  !important;
}

.tier-card-name {
  font-family: "Galano Grotesque Bold", Sans-Serif;
  color: var(--navy);
  font-size: 24px;
    letter-spacing: 1.2px;
  line-height: 1.25;
  margin: 0 0 12px !important;
}

.tier-card-bestfor {
  margin: 0 0 22px !important;
  padding-bottom: 22px;
  border-bottom: 1px solid #E4ECF2;
}

.tier-card-includes-label {
  font-family: "Galano Grotesque Bold", Sans-Serif;
  text-transform: uppercase;
  margin: 0 0 14px !important;
}

.tier-card-includes-list {
  list-style: none;
  margin: 0 !important;
  padding: 0 0 0 16px !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tier-card-includes-list li {
  position: relative;
  line-height: 1.4;
}

.tier-card-includes-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  background: url("/Portals/4/Images/icons/checkmark-outline-db.png") no-repeat center / contain;
}

/* ── OPTIONAL CTA ── */
.tier-card-btn {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 26px;
  padding: 10px 22px;
  text-align: center;
  border: 2px solid var(--blue);
  border-radius: 4px;
  font-family: "Galano Grotesque Bold", Sans-Serif !important;
  color: var(--blue) !important;
  font-size: 15px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.tier-card-btn:hover {
  background: var(--blue);
  color: #ffffff !important;
}

/* ── HIGHLIGHTED TIER ── */
.tier-card.is-highlighted {
  border: 2px solid var(--gold);
  box-shadow: 0 10px 28px rgba(197, 150, 12, 0.16);
}

.tier-card.is-highlighted .tier-card-watermark {
  color: var(--gold);
  opacity: 0.1;
}

.tier-card-ribbon {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 4px 12px;
  background: var(--gold);
  color: #ffffff;
  font-family: "Galano Grotesque Bold", Sans-Serif;
  font-size: 11px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-radius: 3px;
}

.tier-cards-close {
  text-align: center;
  margin: 30px 0 0 !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .tier-card {
    flex: 1 1 calc(50% - 22px);
  }
}

@media (max-width: 600px) {
  .tier-card {
    flex: 1 1 100%;
  }
  .tier-card-watermark {
    font-size: 90px;
  }
}
