/* =========================================================
   IMMIX GROUP SAVINGS V1
   Clean source of truth for group-savings-plans.php
   Built on immix-next-base.css

   UX architecture, readability refinement, ScrollMeta-aware
   layout implementation, and page-specific CSS system by
   Ken Buis, Fervid Solutions.
========================================================= */

/* IMMIX-GROUP-SAVINGS-V1-ACTIVE */


/* =========================================================
   1. PAGE FOUNDATION
========================================================= */

.ixgs-page {
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(105, 166, 61, 0.06), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(18, 52, 93, 0.05), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7faf6 100%);
}

.ixgs-wrap {
  width: min(100% - var(--ix-gutter), 1240px);
  margin-inline: auto;
}


/* =========================================================
   2. TYPE + TEXT FLOOR
========================================================= */

.ixgs-page,
.ixgs-page p,
.ixgs-page li,
.ixgs-page a,
.ixgs-page span,
.ixgs-page label,
.ixgs-page button {
  font-family: var(--ix-font-sans);
}

.ixgs-kicker,
.ixgs-copy p,
.ixgs-hero__panel-item h3,
.ixgs-hero__panel-item p,
.ixgs-support__point,
.ixgs-support__guide p,
.ixgs-plans__lead,
.ixgs-plan-card h3,
.ixgs-plan-card p,
.ixgs-plan-card li,
.ixgs-reasons__highlight,
.ixgs-reasons__callout,
.ixgs-reason-card h3,
.ixgs-reason-card p {
  font-size: 17px;
}

.ixgs-copy p,
.ixgs-hero__panel-item p,
.ixgs-support__guide p,
.ixgs-plan-card p,
.ixgs-plan-card li,
.ixgs-reason-card p {
  line-height: 1.8;
  color: #425d76;
}


/* =========================================================
   3. HERO
========================================================= */

.ixgs-hero {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0 0 5.7rem;
  min-height: clamp(760px, 62vw, 920px);
  overflow: hidden;
  isolation: isolate;
  background: var(--ix-page);
  border-top: 0 !important;
}

.ixgs-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  left: 50%;
  width: 100vw;
  min-width: 100vw;
  transform: translateX(-50%);
  overflow: hidden;
  pointer-events: none;
  background: #eef3ef;
}

.ixgs-hero__media img {
  display: block !important;
  width: 100vw;
  min-width: 100vw;
  max-width: none;
  height: 100%;
  min-height: clamp(760px, 62vw, 920px);
  object-fit: cover;
  object-position: center center;
}

.ixgs-hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(248, 251, 247, 0.995) 0%,
      rgba(248, 251, 247, 0.99) 18%,
      rgba(248, 251, 247, 0.965) 34%,
      rgba(248, 251, 247, 0.84) 50%,
      rgba(248, 251, 247, 0.52) 66%,
      rgba(248, 251, 247, 0.18) 82%,
      rgba(248, 251, 247, 0.05) 100%
    );
}

.ixgs-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(248, 251, 247, 0.12) 0%,
      rgba(248, 251, 247, 0.00) 22%,
      rgba(248, 251, 247, 0.02) 78%,
      rgba(248, 251, 247, 0.16) 100%
    );
}

.ixgs-hero__overlay {
  display: none !important;
}

.ixgs-hero > .ixgs-wrap {
  position: relative;
  z-index: 4;
  width: min(100% - 72px, 1240px);
  max-width: 1240px;
  margin: 0 auto;
}

.ixgs-hero__frame {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(340px, 410px);
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1160px;
  margin: clamp(2.2rem, 4vw, 3.35rem) auto 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.ixgs-hero__content {
  position: relative;
  z-index: 6;
  width: 100%;
  max-width: 720px;
  margin: 0;
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 2.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(18, 58, 102, 0.08);
  border-radius: 34px;
  box-shadow:
    0 28px 58px rgba(13, 30, 52, 0.12),
    0 8px 20px rgba(13, 30, 52, 0.04);
  overflow: hidden;
}

.ixgs-hero__content::before {
  content: "";
  position: absolute;
  top: -40px;
  bottom: -40px;
  left: calc(50% - 50vw);
  right: -120px;
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(249, 251, 248, 0.96) 44%,
      rgba(249, 251, 248, 0.78) 70%,
      rgba(249, 251, 248, 0.18) 100%
    );
}

.ixgs-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: var(--ix-green-650);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ixgs-kicker::after {
  content: "";
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: rgba(105, 166, 61, 0.72);
}

.ixgs-hero__content h1 {
  margin: 0 0 1.25rem;
  max-width: 8ch;
  font-family: var(--ix-font-serif);
  font-size: clamp(3.1rem, 5vw, 5.05rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--ix-navy-800);
}

.ixgs-copy {
  max-width: 42rem;
}

.ixgs-copy p {
  margin: 0;
}

.ixgs-copy p + p {
  margin-top: 0.95rem;
}

/* =========================================================
   HERO PANEL REFINEMENT
   More bespoke group-savings tone
   Refined by Ken Buis, Fervid Solutions
========================================================= */

.ixgs-hero__panel {
  position: relative;
  z-index: 7;
  margin-left: -4rem;
  margin-top: 0.8rem;
}

.ixgs-hero__panel-card {
  position: relative;
  width: 100%;
  padding: 2.1rem 1.95rem 1.9rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(111, 158, 57, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(22, 72, 122, 0.985) 0%, rgba(10, 39, 70, 0.995) 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 30px 64px rgba(10, 39, 70, 0.28),
    0 10px 28px rgba(10, 39, 70, 0.08);
  overflow: hidden;
}

.ixgs-hero__panel-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(111, 158, 57, 0.16) 0%, rgba(111, 158, 57, 0) 74%);
  pointer-events: none;
}

.ixgs-hero__panel-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(5, 21, 38, 0.08) 100%);
}

.ixgs-hero__panel-kicker {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ixgs-hero__panel-kicker::after {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.ixgs-hero__panel-card h2 {
  position: relative;
  z-index: 2;
  margin: 0 0 0.85rem;
  color: #ffffff;
  font-family: var(--ix-font-sans);
  font-size: clamp(30px, 2vw, 38px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.032em;
  max-width: 12ch;
}

.ixgs-hero__panel-intro {
  position: relative;
  z-index: 2;
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.68;
  max-width: 30ch;
}

.ixgs-hero__panel-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.8rem;
}

.ixgs-hero__panel-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.ixgs-hero__panel-item:first-child {
  padding-top: 0.15rem;
  border-top: 0;
}

.ixgs-hero__panel-num {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(215, 179, 90, 0.18);
  color: #edf4fb;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
}

.ixgs-hero__panel-item h3 {
  margin: 0 0 0.3rem;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.ixgs-hero__panel-item p {
  margin: 0;
  font-size: 17px;
  line-height: 1.64;
  color: rgba(255, 255, 255, 0.84);
}

@media (max-width: 1199px) {
  .ixgs-hero__panel {
    margin-left: -2.5rem;
  }
}

@media (max-width: 991px) {
  .ixgs-hero__panel {
    margin-left: 0;
    margin-top: 0;
  }

  .ixgs-hero__panel-card h2,
  .ixgs-hero__panel-intro {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .ixgs-hero__panel-card {
    padding: 1.45rem 1.2rem;
    border-radius: 24px;
  }
}


/* =========================================================
   4. SUPPORT SECTION REFINEMENT
   Integrated piggy-bank support panel
   Refined by Ken Buis, Fervid Solutions
========================================================= */

.ixgs-support {
  position: relative;
  padding: 0 0 3.6rem;
}

.ixgs-support::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 320px;
  background:
    radial-gradient(circle at 14% 22%, rgba(111, 158, 57, 0.07) 0%, rgba(111, 158, 57, 0) 34%),
    radial-gradient(circle at 84% 24%, rgba(18, 58, 102, 0.05) 0%, rgba(18, 58, 102, 0) 34%);
  pointer-events: none;
}

.ixgs-support .ixgs-wrap {
  position: relative;
  z-index: 2;
}

.ixgs-support__shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: clamp(1.6rem, 2.8vw, 2.4rem);
  align-items: stretch;
  padding: clamp(1.45rem, 2vw, 1.9rem);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.985) 0%, rgba(249, 251, 248, 0.98) 100%);
  border: 1px solid rgba(18, 58, 102, 0.08);
  box-shadow:
    0 24px 56px rgba(13, 30, 52, 0.08),
    0 8px 22px rgba(13, 30, 52, 0.035);
  overflow: hidden;
}

.ixgs-support__shell::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--ix-green-600) 0%, rgba(111, 158, 57, 0.22) 100%);
}

.ixgs-support__shell::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 44%;
  height: 100%;
  background:
    radial-gradient(circle at 28% 18%, rgba(111, 158, 57, 0.10) 0%, rgba(111, 158, 57, 0) 34%),
    radial-gradient(circle at 78% 86%, rgba(18, 58, 102, 0.07) 0%, rgba(18, 58, 102, 0) 34%);
  pointer-events: none;
}

.ixgs-support__media {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.ixgs-support__media-card {
  position: relative;
  width: 100%;
  min-height: 100%;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(249, 251, 248, 0.84) 0%, rgba(240, 245, 240, 0.72) 100%);
  border: 1px solid rgba(18, 58, 102, 0.06);
  overflow: hidden;
}

.ixgs-support__media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 22%, rgba(111, 158, 57, 0.10) 0%, rgba(111, 158, 57, 0) 36%),
    radial-gradient(circle at 76% 78%, rgba(18, 58, 102, 0.07) 0%, rgba(18, 58, 102, 0) 34%);
  pointer-events: none;
}

.ixgs-support__media-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1.45rem;
  width: 74%;
  height: 28px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(18, 58, 102, 0.12) 0%, rgba(18, 58, 102, 0) 72%);
  filter: blur(10px);
  pointer-events: none;
}

.ixgs-support__media-inner {
  position: relative;
  z-index: 2;
  min-height: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 3vw, 2.8rem) 1.4rem;
}

.ixgs-support__media-card img {
  display: block;
  width: min(100%, 330px);
  max-width: 330px;
  height: auto;
  object-fit: contain;
  transform: translateY(2px);
  filter: drop-shadow(0 18px 28px rgba(18, 58, 102, 0.08));
}

.ixgs-support__content-card {
  position: relative;
  z-index: 2;
  padding: clamp(1rem, 1vw, 1.2rem) clamp(0.35rem, 1vw, 0.75rem) clamp(0.3rem, 1vw, 0.5rem) 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.ixgs-support__header {
  margin-bottom: 1.45rem;
}

.ixgs-support__header .ixgs-kicker {
  margin-bottom: 0.95rem;
}

.ixgs-support__header h2 {
  margin: 0 0 0.85rem;
  color: var(--ix-navy-800);
  font-family: var(--ix-font-sans);
  font-size: clamp(36px, 3vw, 54px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.042em;
  max-width: 12ch;
}

.ixgs-support__lede {
  max-width: 48rem;
  margin: 0;
  font-size: 17px;
  line-height: 1.78;
  color: #5a738b;
}

.ixgs-support__points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 1.35rem;
}

.ixgs-support__point {
  padding: 1rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(18, 58, 102, 0.08);
  box-shadow: 0 8px 18px rgba(13, 30, 52, 0.035);
  line-height: 1.68;
  color: #425d76;
}

.ixgs-support__guide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(18, 58, 102, 0.08);
}

.ixgs-support__guide-copy strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--ix-navy-800);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
}

.ixgs-support__guide-copy p {
  margin: 0;
  font-size: 17px;
  line-height: 1.74;
  color: #425d76;
}

.ixgs-inline-btn {
  min-height: 50px;
  padding: 0 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(180deg, #70ab43 0%, var(--ix-green-700) 100%);
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  box-shadow:
    0 16px 34px rgba(105, 166, 61, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.ixgs-inline-btn:hover,
.ixgs-inline-btn:focus-visible {
  transform: translateY(-2px);
  color: #ffffff;
  text-decoration: none;
  outline: none;
}

@media (max-width: 991px) {
  .ixgs-support__shell {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 1.35rem;
  }

  .ixgs-support__shell::after {
    width: 100%;
    height: 42%;
  }

  .ixgs-support__content-card {
    padding: 0.3rem 0.2rem 0.1rem;
  }

  .ixgs-support__media-card {
    min-height: 0;
  }

  .ixgs-support__media-inner {
    min-height: 320px;
    padding: 1.6rem 1rem;
  }

  .ixgs-support__media-card img {
    max-width: 260px;
  }

  .ixgs-support__header h2 {
    max-width: 100%;
  }

  .ixgs-support__points {
    grid-template-columns: 1fr;
  }

  .ixgs-support__guide {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 767px) {
  .ixgs-support__shell,
  .ixgs-support__media-card {
    border-radius: 24px;
  }

  .ixgs-support__shell {
    padding: 1.2rem;
  }

  .ixgs-support__media-inner {
    min-height: 260px;
    padding: 1.2rem 0.8rem;
  }

  .ixgs-support__media-card img {
    max-width: 220px;
  }

  .ixgs-support__header h2 {
    font-size: clamp(30px, 8vw, 38px);
  }
}

@media (max-width: 575px) {
  .ixgs-support__media-inner {
    min-height: 235px;
  }

  .ixgs-support__media-card img {
    max-width: 190px;
  }
}
/* =========================================================
   5. PLAN TYPES REFINEMENT
   More editorial and easier to scan
   Refined by Ken Buis, Fervid Solutions
========================================================= */

.ixgs-plans {
  position: relative;
  padding: 0 0 3.8rem;
}

.ixgs-plans::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 260px;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 16%, rgba(111, 158, 57, 0.06) 0%, rgba(111, 158, 57, 0) 34%),
    radial-gradient(circle at 84% 22%, rgba(18, 58, 102, 0.05) 0%, rgba(18, 58, 102, 0) 32%);
}

.ixgs-plans .ixgs-wrap {
  position: relative;
  z-index: 2;
}

.ixgs-plans__heading {
  max-width: 860px;
  margin: 0 auto 2.7rem;
  text-align: center;
}

.ixgs-plans__heading .ixgs-kicker {
  justify-content: center;
  margin-bottom: 0.95rem;
}

.ixgs-plans__heading h2 {
  margin: 0 0 0.9rem;
  color: var(--ix-navy-800);
  font-family: var(--ix-font-sans);
  font-size: clamp(36px, 3vw, 48px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.038em;
}

.ixgs-plans__lead {
  max-width: 54rem;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.76;
  color: #5a738b;
}

.ixgs-plans__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
  align-items: stretch;
}

.ixgs-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.5rem 1.4rem 1.35rem;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.985) 0%, rgba(249, 251, 248, 0.97) 100%);
  border: 1px solid rgba(18, 58, 102, 0.08);
  box-shadow:
    0 12px 28px rgba(13, 30, 52, 0.05),
    0 3px 10px rgba(13, 30, 52, 0.02);
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.ixgs-plan-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, rgba(111, 158, 57, 0.92) 0%, rgba(18, 58, 102, 0.72) 100%);
  opacity: 0.92;
}

.ixgs-plan-card:hover,
.ixgs-plan-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(18, 58, 102, 0.14);
  box-shadow:
    0 20px 42px rgba(13, 30, 52, 0.09),
    0 6px 18px rgba(13, 30, 52, 0.03);
}

.ixgs-plan-card__top {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  margin-bottom: 1rem;
}

.ixgs-plan-card__number {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(135deg, #5b9a42 0%, #4a8535 100%);
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(91, 154, 66, 0.25);
}

.ixgs-plan-card__eyebrow {
  margin: 0 0 0.25rem;
  color: #4f842e;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ixgs-plan-card h3 {
  margin: 0;
  color: var(--ix-navy-800);
  font-family: var(--ix-font-sans);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -0.012em;
}

.ixgs-plan-card__body {
  display: grid;
  gap: 0.85rem;
}

.ixgs-plan-card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  color: #425d76;
}

.ixgs-plan-card__list-block {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(18, 58, 102, 0.08);
  box-shadow: 0 8px 18px rgba(13, 30, 52, 0.035);
}

.ixgs-plan-card__list-title {
  margin: 0 0 0.55rem;
  color: var(--ix-navy-800);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
}

.ixgs-plan-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding-left: 1.1rem;
}

.ixgs-plan-card li {
  font-size: 17px;
  line-height: 1.72;
  color: #425d76;
}

@media (max-width: 991px) {
  .ixgs-plans__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .ixgs-plan-card {
    padding: 1.35rem 1.15rem 1.2rem;
    border-radius: 24px;
  }

  .ixgs-plan-card__list-block {
    padding: 0.9rem 0.9rem;
    border-radius: 16px;
  }

  .ixgs-plans__heading h2 {
    font-size: clamp(30px, 8vw, 38px);
  }
}

@media (max-width: 575px) {
  .ixgs-plan-card__top {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .ixgs-plan-card__number {
    width: 46px;
    height: 46px;
  }
}
/* =========================================================
   6. REASONS PANEL REFINEMENT
   Premium decision-support section
   Refined by Ken Buis, Fervid Solutions
========================================================= */

.ixgs-reasons {
  position: relative;
  padding: 0 0 6.4rem;
}

.ixgs-reasons::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 220px;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 24%, rgba(111, 158, 57, 0.07) 0%, rgba(111, 158, 57, 0) 34%),
    radial-gradient(circle at 84% 26%, rgba(18, 58, 102, 0.05) 0%, rgba(18, 58, 102, 0) 34%);
}

.ixgs-reasons .ixgs-wrap {
  position: relative;
  z-index: 2;
}

.ixgs-reasons__panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.8rem, 3vw, 2.5rem);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(135deg, #153d69 0%, #10345d 58%, #092a50 100%);
  box-shadow:
    0 24px 54px rgba(10, 39, 70, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.ixgs-reasons__panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(5, 21, 38, 0.08) 100%);
}

.ixgs-reasons__intro {
  position: relative;
  z-index: 2;
  max-width: 60rem;
  margin: 0 auto 1.6rem;
  text-align: center;
}

.ixgs-reasons__intro .ixgs-kicker {
  justify-content: center;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.84);
}

.ixgs-reasons__intro .ixgs-kicker::after {
  background: rgba(255, 255, 255, 0.38);
}

.ixgs-reasons__intro h2 {
  margin: 0 0 0.85rem;
  color: #ffffff;
  font-family: var(--ix-font-sans);
  font-size: clamp(34px, 2.8vw, 46px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.ixgs-reasons__highlights {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.ixgs-reasons__highlight {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 700;
}

.ixgs-reasons__callout {
  max-width: 42rem;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.72;
}

.ixgs-reasons__cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.ixgs-reason-card {
  padding: 1.15rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.ixgs-reason-card__top {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  margin-bottom: 0.55rem;
}

.ixgs-reason-card__number {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
}

.ixgs-reason-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.ixgs-reason-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.74;
}

@media (max-width: 991px) {
  .ixgs-reasons {
    padding-bottom: 5.6rem;
  }

  .ixgs-reasons__cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .ixgs-reasons__panel,
  .ixgs-reason-card {
    border-radius: 24px;
  }

  .ixgs-reasons__panel {
    padding: 1.2rem;
  }

  .ixgs-reasons__intro h2 {
    font-size: clamp(30px, 8vw, 38px);
  }

  .ixgs-reasons__highlights {
    gap: 0.6rem;
  }

  .ixgs-reason-card {
    padding: 1rem;
  }
}
/* =========================================================
   7. NEXT STEP BANNER REFINEMENT
   More balanced decision bridge above footer
   Refined by Ken Buis, Fervid Solutions
========================================================= */

.ixgs-next-step {
  position: relative;
  padding: 0 0 3.8rem;
}

.ixgs-next-step::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 2rem;
  width: min(92vw, 1500px);
  height: 140px;
  transform: translateX(-50%);
  pointer-events: none;
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 50%, rgba(111, 158, 57, 0.07) 0%, rgba(111, 158, 57, 0) 34%),
    radial-gradient(circle at 82% 50%, rgba(18, 58, 102, 0.05) 0%, rgba(18, 58, 102, 0) 34%);
}

.ixgs-next-step .ixgs-wrap {
  position: relative;
  z-index: 2;
}

.ixgs-next-step__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(460px, 0.92fr);
  gap: 1.15rem;
  align-items: center;
  padding: clamp(1.35rem, 2.4vw, 1.9rem);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.988) 0%, rgba(249,251,248,0.98) 100%);
  border: 1px solid rgba(18, 58, 102, 0.08);
  box-shadow:
    0 22px 50px rgba(13, 30, 52, 0.08),
    0 8px 20px rgba(13, 30, 52, 0.03);
}

.ixgs-next-step__content h2 {
  margin: 0 0 0.8rem;
  color: var(--ix-navy-800);
  font-family: var(--ix-font-sans);
  font-size: clamp(34px, 3.1vw, 52px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.045em;
  max-width: 9.8ch;
}

.ixgs-next-step__lede {
  max-width: 42rem;
  margin: 0;
  font-size: 17px;
  line-height: 1.74;
  color: #5a738b;
}

.ixgs-next-step__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.ixgs-next-step__card {
  min-height: 132px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 22px;
  gap: 0.85rem;
  align-items: center;
  padding: 1.15rem 1rem;
  border-radius: 22px;
  background: rgba(250, 251, 248, 0.96);
  border: 1px solid rgba(18, 58, 102, 0.08);
  box-shadow: 0 10px 24px rgba(13, 30, 52, 0.04);
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.ixgs-next-step__card:hover,
.ixgs-next-step__card:focus-visible {
  transform: translateY(-3px);
  text-decoration: none;
  border-color: rgba(18, 58, 102, 0.14);
  box-shadow: 0 18px 34px rgba(13, 30, 52, 0.08);
  outline: none;
}

.ixgs-next-step__icon {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(111, 158, 57, 0.10);
  color: #5f9134;
  font-size: 20px;
}

.ixgs-next-step__text {
  display: grid;
  gap: 0.2rem;
}

.ixgs-next-step__text strong {
  color: #4f842e;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ixgs-next-step__text span {
  color: #48637c;
  font-size: 17px;
  line-height: 1.52;
}

.ixgs-next-step__arrow {
  color: #5c9532;
  font-size: 32px;
  line-height: 1;
}

@media (max-width: 1100px) {
  .ixgs-next-step__panel {
    grid-template-columns: 1fr;
  }

  .ixgs-next-step__content h2 {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .ixgs-next-step {
    padding-bottom: 3.3rem;
  }

  .ixgs-next-step__panel {
    padding: 1.15rem;
    border-radius: 24px;
  }

  .ixgs-next-step__content h2 {
    font-size: clamp(30px, 8vw, 40px);
  }

  .ixgs-next-step__actions {
    grid-template-columns: 1fr;
  }

  .ixgs-next-step__card {
    min-height: 110px;
    border-radius: 18px;
  }
}
/* =========================================================
   FINAL POLISH PASS
   Group Savings Plans
   Final refinement by Ken Buis, Fervid Solutions
========================================================= */

/* -----------------------------------------
   1. Better section rhythm
----------------------------------------- */

.ixgs-support {
  padding-bottom: 4rem;
}

.ixgs-plans {
  padding-bottom: 4.1rem;
}

.ixgs-reasons {
  padding-bottom: 4.8rem;
}

/* -----------------------------------------
   2. Reasons panel refinement
----------------------------------------- */

.ixgs-reasons__panel {
  border-radius: 34px;
}

.ixgs-reasons__intro {
  margin-bottom: 1.8rem;
}

.ixgs-reasons__intro h2 {
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}

.ixgs-reasons__cards {
  gap: 1.1rem;
}

.ixgs-reason-card {
  min-height: 100%;
  padding: 1.2rem 1.15rem;
  border-radius: 20px;
}

.ixgs-reason-card__top {
  margin-bottom: 0.65rem;
}

.ixgs-reason-card h3 {
  line-height: 1.42;
}

.ixgs-reason-card p {
  line-height: 1.76;
}

/* -----------------------------------------
   3. Next-step banner refinement
----------------------------------------- */

.ixgs-next-step {
  position: relative;
  padding: 0 0 2.9rem;
  margin-top: -0.35rem;
}

.ixgs-next-step::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 1.4rem;
  width: min(90vw, 1420px);
  height: 120px;
  transform: translateX(-50%);
  pointer-events: none;
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 50%, rgba(111, 158, 57, 0.055) 0%, rgba(111, 158, 57, 0) 34%),
    radial-gradient(circle at 82% 50%, rgba(18, 58, 102, 0.04) 0%, rgba(18, 58, 102, 0) 34%);
}

.ixgs-next-step__panel {
  grid-template-columns: minmax(0, 1.12fr) minmax(430px, 0.88fr);
  gap: 1rem;
  align-items: center;
  padding: clamp(1.25rem, 2.1vw, 1.7rem);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.992) 0%, rgba(249,251,248,0.982) 100%);
  box-shadow:
    0 20px 46px rgba(13, 30, 52, 0.07),
    0 8px 18px rgba(13, 30, 52, 0.025);
}

.ixgs-next-step__content {
  padding-left: 0.1rem;
}

.ixgs-next-step__content h2 {
  max-width: 8.6ch;
  margin: 0 0 0.75rem;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.ixgs-next-step__lede {
  max-width: 39rem;
  font-size: 17px;
  line-height: 1.72;
}

.ixgs-next-step__actions {
  gap: 0.85rem;
}

.ixgs-next-step__card {
  min-height: 122px;
  grid-template-columns: 50px minmax(0, 1fr) 20px;
  gap: 0.8rem;
  padding: 1rem 0.95rem;
  border-radius: 20px;
  background: rgba(252, 252, 250, 0.98);
  box-shadow: 0 8px 18px rgba(13, 30, 52, 0.03);
}

.ixgs-next-step__icon {
  width: 46px;
  height: 46px;
  font-size: 18px;
  box-shadow: 0 0 0 6px rgba(111, 158, 57, 0.06);
}

.ixgs-next-step__text strong {
  letter-spacing: 0.035em;
}

.ixgs-next-step__text span {
  line-height: 1.5;
}

.ixgs-next-step__arrow {
  font-size: 28px;
}

/* -----------------------------------------
   4. Better spacing before footer
----------------------------------------- */

.ixgs-next-step + .site-footer,
.ixgs-next-step + footer {
  margin-top: 0 !important;
}

/* -----------------------------------------
   5. Slightly calmer footer handoff
----------------------------------------- */

.ixgs-page .ixgs-next-step + .footer-two,
.ixgs-page .ixgs-next-step + .site-footer,
.ixgs-page .ixgs-next-step + footer {
  position: relative;
}

.ixgs-page .ixgs-next-step + .footer-two::before,
.ixgs-page .ixgs-next-step + .site-footer::before,
.ixgs-page .ixgs-next-step + footer::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

/* -----------------------------------------
   6. Mobile polish
----------------------------------------- */

@media (max-width: 1100px) {
  .ixgs-next-step__panel {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .ixgs-next-step__content h2 {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .ixgs-support {
    padding-bottom: 3.4rem;
  }

  .ixgs-plans {
    padding-bottom: 3.5rem;
  }

  .ixgs-reasons {
    padding-bottom: 3.8rem;
  }

  .ixgs-reasons__panel {
    border-radius: 24px;
  }

  .ixgs-next-step {
    padding-bottom: 2.5rem;
  }

  .ixgs-next-step::before {
    top: 1rem;
    height: 90px;
  }

  .ixgs-next-step__panel {
    padding: 1.05rem;
    border-radius: 24px;
  }

  .ixgs-next-step__content h2 {
    font-size: clamp(30px, 8vw, 38px);
    max-width: 100%;
  }

  .ixgs-next-step__actions {
    grid-template-columns: 1fr;
  }

  .ixgs-next-step__card {
    min-height: 104px;
    border-radius: 18px;
  }
}

/* =========================================================
   GROUP SAVINGS TYPOGRAPHY HANDOFF PATCH
   Supports the unified /assets/css/immix-locked-typography.css layer.
   Keep this at the end of immix-group-savings-v1.css.
========================================================= */

.ixgs-page {
  font-family: var(--ix-font-sans, Inter, Arial, Helvetica, sans-serif);
}

/* Dark panels: hero planning panel and reasons decision-support panel */
.ixgs-page :is(
  .ixgs-hero__panel-card,
  .ixgs-reasons__panel
) {
  color: #ffffff;
}

.ixgs-page :is(
  .ixgs-hero__panel-card,
  .ixgs-reasons__panel
) :is(h1, h2, h3, h4, h5, h6, strong) {
  color: #ffffff !important;
}

.ixgs-page :is(
  .ixgs-hero__panel-card,
  .ixgs-reasons__panel
) :is(p, li, span, a) {
  color: rgba(255, 255, 255, 0.88) !important;
}

.ixgs-page :is(
  .ixgs-hero__panel-card,
  .ixgs-reasons__panel
) :is(.ixgs-kicker, .ixgs-hero__panel-kicker, [class*="kicker"], [class*="eyebrow"]) {
  color: rgba(255, 255, 255, 0.82) !important;
}

.ixgs-page :is(
  .ixgs-hero__panel-card,
  .ixgs-reasons__panel
) :is(.ixgs-kicker::after, .ixgs-hero__panel-kicker::after, [class*="kicker"]::after, [class*="eyebrow"]::after) {
  background: rgba(255, 255, 255, 0.42) !important;
}

/* Dark nested cards in reasons panel */
.ixgs-page .ixgs-reasons__panel :is(
  .ixgs-reason-card,
  .ixgs-reasons__highlight
) {
  background: rgba(255, 255, 255, 0.105) !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
}

.ixgs-page .ixgs-reason-card__number,
.ixgs-page .ixgs-hero__panel-num {
  color: #ffffff !important;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.22), transparent 34%),
    linear-gradient(135deg, #78b44a 0%, #4f8735 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.32) !important;
  box-shadow:
    0 12px 22px rgba(79, 135, 53, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.28) !important;
}

/* Light cards and next-step banner stay dark-on-light */
.ixgs-page :is(
  .ixgs-hero__content,
  .ixgs-support__shell,
  .ixgs-support__content-card,
  .ixgs-support__point,
  .ixgs-support__guide,
  .ixgs-plan-card,
  .ixgs-plan-card__list-block,
  .ixgs-next-step__panel,
  .ixgs-next-step__card
) :is(h1, h2, h3, h4, h5, h6, strong) {
  color: var(--ix-navy-800, #12345d) !important;
}

.ixgs-page :is(
  .ixgs-hero__content,
  .ixgs-support__shell,
  .ixgs-support__content-card,
  .ixgs-support__point,
  .ixgs-support__guide,
  .ixgs-plan-card,
  .ixgs-plan-card__list-block,
  .ixgs-next-step__panel,
  .ixgs-next-step__card
) :is(p, li, span) {
  color: #425d76 !important;
}

.ixgs-page .ixgs-kicker,
.ixgs-page .ixgs-plan-card__eyebrow,
.ixgs-page .ixgs-next-step__text strong {
  color: var(--ix-green-650, #5f9938) !important;
}

.ixgs-page .ixgs-plan-card__number {
  color: #ffffff !important;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.22), transparent 34%),
    linear-gradient(135deg, #6fa63d 0%, #4f8735 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.38) !important;
  box-shadow:
    0 14px 26px rgba(79, 135, 53, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.30) !important;
}

.ixgs-page .ixgs-inline-btn {
  color: #ffffff !important;
}

@media (max-width: 760px) {
  .ixgs-page :is(.ixgs-hero__panel-card p, .ixgs-reason-card p, .ixgs-reasons__callout, .ixgs-plan-card p, .ixgs-plan-card li) {
    font-size: 17px !important;
    line-height: 1.58 !important;
  }
}

/* =========================================================
   GROUP SAVINGS NEXT-STEP TITLE POLISH
   Fixes the stacked "Let's build..." heading in the final CTA panel.
   Keep this at the end of immix-group-savings-v1.css.
========================================================= */

.ixgs-page .ixgs-next-step__panel {
  grid-template-columns: minmax(0, 1.18fr) minmax(390px, 0.82fr) !important;
  gap: clamp(1.1rem, 2.4vw, 1.8rem) !important;
}

.ixgs-page .ixgs-next-step__content {
  min-width: 0;
  max-width: 100%;
}

.ixgs-page .ixgs-next-step__content h2 {
  max-width: 17.5ch !important;
  font-size: clamp(34px, 2.75vw, 46px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.04em !important;
  text-wrap: balance;
}

.ixgs-page .ixgs-next-step__lede {
  max-width: 50rem !important;
}

.ixgs-page .ixgs-next-step__actions {
  align-self: center;
}

.ixgs-page .ixgs-next-step__card {
  min-width: 0;
}

@media (max-width: 1100px) {
  .ixgs-page .ixgs-next-step__panel {
    grid-template-columns: 1fr !important;
  }

  .ixgs-page .ixgs-next-step__content h2 {
    max-width: 16ch !important;
  }
}

@media (max-width: 760px) {
  .ixgs-page .ixgs-next-step__content h2 {
    max-width: 100% !important;
    font-size: clamp(30px, 8vw, 38px) !important;
  }
}

/* =========================================================
   GROUP SAVINGS PLAN CARD HEADER CLEANUP v1.1
   Removes visual dependency on the small eyebrow/header label
   so each plan card title stands on its own cleanly.
   Keep this at the end of immix-group-savings-v1.css.
========================================================= */

.ixgs-page .ixgs-plan-card__top {
  align-items: center !important;
  margin-bottom: 1.05rem !important;
}

.ixgs-page .ixgs-plan-card__top > div {
  display: flex !important;
  align-items: center !important;
  min-height: 52px !important;
}

.ixgs-page .ixgs-plan-card__top h3 {
  margin: 0 !important;
  color: var(--ix-navy-800, #12345d) !important;
  font-size: clamp(22px, 1.55vw, 28px) !important;
  line-height: 1.14 !important;
  letter-spacing: -0.028em !important;
  font-weight: 820 !important;
}

.ixgs-page .ixgs-plan-card__eyebrow {
  display: none !important;
}

@media (max-width: 575px) {
  .ixgs-page .ixgs-plan-card__top > div {
    min-height: 46px !important;
  }

  .ixgs-page .ixgs-plan-card__top h3 {
    font-size: clamp(20px, 6vw, 24px) !important;
    line-height: 1.18 !important;
  }
}

/* =========================================================
   GROUP SAVINGS SUPPORT SECTION REDESIGN v1.2
   Keeps the piggy-bank avatar, but redesigns the layout into
   a more premium, balanced guidance panel.
   Keep this at the end of immix-group-savings-v1.css.
========================================================= */

.ixgs-page .ixgs-support--redesigned {
  position: relative;
  padding: clamp(3.6rem, 6vw, 5.4rem) 0 clamp(4rem, 6vw, 5.8rem) !important;
  background:
    radial-gradient(circle at 12% 18%, rgba(111, 158, 57, 0.07) 0%, rgba(111, 158, 57, 0) 34%),
    radial-gradient(circle at 86% 16%, rgba(18, 58, 102, 0.055) 0%, rgba(18, 58, 102, 0) 32%),
    linear-gradient(180deg, #ffffff 0%, #f7faf6 100%) !important;
}

.ixgs-page .ixgs-support--redesigned::before {
  height: 420px !important;
  background:
    radial-gradient(circle at 18% 22%, rgba(111, 158, 57, 0.10) 0%, rgba(111, 158, 57, 0) 34%),
    radial-gradient(circle at 82% 28%, rgba(18, 58, 102, 0.065) 0%, rgba(18, 58, 102, 0) 34%) !important;
}

.ixgs-page .ixgs-support--redesigned .ixgs-support__shell {
  grid-template-columns: minmax(300px, 400px) minmax(0, 1fr) !important;
  gap: clamp(1.65rem, 3.2vw, 3rem) !important;
  align-items: stretch !important;
  padding: clamp(1.3rem, 2.3vw, 2rem) !important;
  border-radius: 38px !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(111, 158, 57, 0.105) 0%, rgba(111, 158, 57, 0) 32%),
    radial-gradient(circle at 0% 100%, rgba(18, 58, 102, 0.075) 0%, rgba(18, 58, 102, 0) 34%),
    linear-gradient(180deg, rgba(255,255,255,0.995) 0%, rgba(249,251,248,0.985) 100%) !important;
  box-shadow:
    0 30px 78px rgba(13, 30, 52, 0.105),
    0 8px 22px rgba(13, 30, 52, 0.035) !important;
}

.ixgs-page .ixgs-support--redesigned .ixgs-support__shell::after {
  width: 100% !important;
  background:
    radial-gradient(circle at 14% 18%, rgba(111, 158, 57, 0.08) 0%, rgba(111, 158, 57, 0) 32%),
    radial-gradient(circle at 86% 84%, rgba(18, 58, 102, 0.045) 0%, rgba(18, 58, 102, 0) 31%) !important;
}

.ixgs-page .ixgs-support--redesigned .ixgs-support__media {
  min-height: 100% !important;
}

.ixgs-page .ixgs-support--redesigned .ixgs-support__media-card {
  min-height: 100% !important;
  border-radius: 30px !important;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0) 36%),
    linear-gradient(180deg, rgba(249, 251, 248, 0.94) 0%, rgba(237, 244, 238, 0.82) 100%) !important;
  border: 1px solid rgba(18, 58, 102, 0.08) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.72),
    0 14px 32px rgba(13, 30, 52, 0.04) !important;
}

.ixgs-page .ixgs-support--redesigned .ixgs-support__media-inner {
  min-height: 100% !important;
  padding: clamp(2.1rem, 4vw, 3.4rem) 1.2rem !important;
}

.ixgs-page .ixgs-support--redesigned .ixgs-support__media-card img {
  width: min(100%, 345px) !important;
  max-width: 345px !important;
  filter: drop-shadow(0 22px 30px rgba(18, 58, 102, 0.10)) !important;
  transform: translateY(-2px) !important;
}

.ixgs-page .ixgs-support--redesigned .ixgs-support__content-card {
  display: grid !important;
  grid-template-columns: 1fr;
  align-content: center;
  padding: clamp(0.65rem, 1.8vw, 1.2rem) clamp(0.25rem, 1.2vw, 0.7rem) !important;
}

.ixgs-page .ixgs-support--redesigned .ixgs-support__header {
  max-width: 760px;
  margin: 0 0 clamp(1.25rem, 2.2vw, 1.7rem) !important;
  padding-bottom: clamp(1.1rem, 2vw, 1.45rem);
  border-bottom: 1px solid rgba(18, 58, 102, 0.08);
}

.ixgs-page .ixgs-support--redesigned .ixgs-support__header h2 {
  max-width: 17ch !important;
  margin-bottom: 0.85rem !important;
  font-size: clamp(34px, 3.45vw, 54px) !important;
  line-height: 1.01 !important;
  letter-spacing: -0.047em !important;
  text-wrap: balance;
}

.ixgs-page .ixgs-support--redesigned .ixgs-support__lede {
  max-width: 66rem !important;
  color: #425d76 !important;
  font-size: clamp(17px, 1.2vw, 20px) !important;
  line-height: 1.72 !important;
  font-weight: 590 !important;
}

.ixgs-page .ixgs-support--redesigned .ixgs-support__points {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0.85rem !important;
  margin: 0 0 clamp(1.2rem, 2.2vw, 1.65rem) !important;
}

.ixgs-page .ixgs-support--redesigned .ixgs-support__point {
  position: relative;
  min-height: 96px;
  display: flex;
  align-items: flex-start;
  padding: 1rem 1rem 1rem 2.8rem !important;
  border-radius: 20px !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(111, 158, 57, 0.075) 0%, rgba(111, 158, 57, 0) 34%),
    linear-gradient(180deg, #ffffff 0%, #fbfdf9 100%) !important;
  border: 1px solid rgba(18, 58, 102, 0.085) !important;
  box-shadow:
    0 12px 26px rgba(13, 30, 52, 0.045),
    0 3px 8px rgba(13, 30, 52, 0.018) !important;
  color: #425d76 !important;
  font-size: 17px !important;
  line-height: 1.58 !important;
  font-weight: 610 !important;
}

.ixgs-page .ixgs-support--redesigned .ixgs-support__point::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.17rem;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #76b448 0%, #4f8735 100%);
  box-shadow: 0 0 0 6px rgba(111, 158, 57, 0.10);
}

.ixgs-page .ixgs-support--redesigned .ixgs-support__point:nth-child(7) {
  grid-column: span 3;
  min-height: 72px;
  align-items: center;
  background:
    radial-gradient(circle at 100% 0%, rgba(18, 58, 102, 0.06) 0%, rgba(18, 58, 102, 0) 32%),
    linear-gradient(180deg, #ffffff 0%, #f7fbf3 100%) !important;
}

.ixgs-page .ixgs-support--redesigned .ixgs-support__guide {
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: clamp(1rem, 2vw, 1.6rem) !important;
  margin-top: 0 !important;
  padding: clamp(1.1rem, 2vw, 1.35rem) !important;
  border: 1px solid rgba(18, 58, 102, 0.08) !important;
  border-radius: 22px !important;
  background:
    linear-gradient(135deg, rgba(18, 58, 102, 0.055) 0%, rgba(111, 158, 57, 0.085) 100%) !important;
}

.ixgs-page .ixgs-support--redesigned .ixgs-support__guide-copy strong {
  margin-bottom: 0.25rem !important;
  font-size: 18px !important;
  line-height: 1.32 !important;
}

.ixgs-page .ixgs-support--redesigned .ixgs-support__guide-copy p {
  color: #425d76 !important;
  font-size: 17px !important;
  line-height: 1.55 !important;
}

.ixgs-page .ixgs-support--redesigned .ixgs-inline-btn {
  min-width: 150px;
  min-height: 54px !important;
  border-radius: 16px !important;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .ixgs-page .ixgs-support--redesigned .ixgs-support__shell {
    grid-template-columns: minmax(270px, 340px) minmax(0, 1fr) !important;
  }

  .ixgs-page .ixgs-support--redesigned .ixgs-support__points {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .ixgs-page .ixgs-support--redesigned .ixgs-support__point:nth-child(7) {
    grid-column: span 2;
  }
}

@media (max-width: 991px) {
  .ixgs-page .ixgs-support--redesigned .ixgs-support__shell {
    grid-template-columns: 1fr !important;
    gap: 1.15rem !important;
  }

  .ixgs-page .ixgs-support--redesigned .ixgs-support__media-inner {
    min-height: 285px !important;
    padding: 1.6rem 1rem !important;
  }

  .ixgs-page .ixgs-support--redesigned .ixgs-support__media-card img {
    max-width: 265px !important;
  }

  .ixgs-page .ixgs-support--redesigned .ixgs-support__header h2 {
    max-width: 100% !important;
  }
}

@media (max-width: 760px) {
  .ixgs-page .ixgs-support--redesigned {
    padding: 3.2rem 0 4rem !important;
  }

  .ixgs-page .ixgs-support--redesigned .ixgs-support__shell,
  .ixgs-page .ixgs-support--redesigned .ixgs-support__media-card {
    border-radius: 24px !important;
  }

  .ixgs-page .ixgs-support--redesigned .ixgs-support__shell {
    padding: 1.05rem !important;
  }

  .ixgs-page .ixgs-support--redesigned .ixgs-support__media-inner {
    min-height: 230px !important;
    padding: 1.25rem 0.8rem !important;
  }

  .ixgs-page .ixgs-support--redesigned .ixgs-support__media-card img {
    max-width: 205px !important;
  }

  .ixgs-page .ixgs-support--redesigned .ixgs-support__header {
    padding-bottom: 1rem;
  }

  .ixgs-page .ixgs-support--redesigned .ixgs-support__header h2 {
    font-size: clamp(30px, 8vw, 40px) !important;
    line-height: 1.04 !important;
  }

  .ixgs-page .ixgs-support--redesigned .ixgs-support__points {
    grid-template-columns: 1fr !important;
  }

  .ixgs-page .ixgs-support--redesigned .ixgs-support__point,
  .ixgs-page .ixgs-support--redesigned .ixgs-support__point:nth-child(7) {
    grid-column: auto;
    min-height: auto;
  }

  .ixgs-page .ixgs-support--redesigned .ixgs-support__guide {
    grid-template-columns: 1fr !important;
    padding: 1rem !important;
  }

  .ixgs-page .ixgs-support--redesigned .ixgs-inline-btn {
    width: 100%;
  }
}
