.icred-downsell-page {
  --ds-green: #16c764;
  --ds-green-dark: #087d3a;
  --ds-ink: #102018;
  min-height: 100vh;
  min-height: 100dvh;
  background:
    radial-gradient(circle at 50% -10%, rgba(22, 199, 100, .18), transparent 34rem),
    linear-gradient(180deg, #f5faf7 0%, #edf5f0 100%);
  color: var(--ds-ink);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  padding: 0 0 2rem;
}

.icred-downsell-page * { box-sizing: border-box; }

.ds-alert {
  background: #b91c1c;
  color: #fff;
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .65rem 1rem;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-align: center;
  text-transform: uppercase;
}

.ds-shell {
  width: min(100% - 2rem, 58rem);
  margin: 0 auto;
}

.ds-header {
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(16, 32, 24, .09);
}

.ds-logo { width: 6.4rem; height: auto; }

.ds-secure {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: #506158;
  font-size: .75rem;
  font-weight: 700;
}

.ds-secure::before {
  content: "";
  width: .55rem;
  height: .55rem;
  background: var(--ds-green);
  border-radius: 50%;
  box-shadow: 0 0 0 .25rem rgba(22, 199, 100, .13);
}

.ds-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(19rem, 25rem);
  gap: 2rem;
  align-items: center;
  padding: 3rem 0 2rem;
}

.ds-kicker {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem .75rem;
  border: 1px solid rgba(185, 28, 28, .22);
  border-radius: 999px;
  background: #fff1f1;
  color: #a41717;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.ds-copy h1 {
  max-width: 35rem;
  margin: 1rem 0 .9rem;
  color: #0d1812;
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1.03;
  letter-spacing: -.045em;
}

.ds-copy h1 span { color: var(--ds-green-dark); }

.ds-lead {
  max-width: 36rem;
  margin: 0;
  color: #526259;
  font-size: 1rem;
  line-height: 1.7;
}

.ds-benefits {
  display: grid;
  gap: .7rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.ds-benefits li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  color: #2d4035;
  font-size: .9rem;
  line-height: 1.45;
  font-weight: 650;
}

.ds-benefits li::before {
  content: "✓";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: .03rem;
  border-radius: 50%;
  background: #daf8e5;
  color: #079343;
  font-size: .72rem;
  font-weight: 950;
}

.ds-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(22, 199, 100, .25);
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, .96);
  padding: 1.65rem;
  box-shadow: 0 1.5rem 4rem rgba(19, 63, 38, .14);
}

.ds-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: .32rem;
  background: linear-gradient(90deg, #0b8e43, #22d66d);
}

.ds-card-label {
  color: #708078;
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ds-product {
  margin: .45rem 0 1.25rem;
  font-size: 1.15rem;
  line-height: 1.3;
  font-weight: 850;
}

.ds-old-price {
  margin: 0;
  color: #77847d;
  font-size: .84rem;
}

.ds-old-price strong { text-decoration: line-through; }

.ds-price {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  margin: .2rem 0 .35rem;
  color: #0b9d49;
  font-weight: 950;
}

.ds-price small { font-size: 1rem; }
.ds-price strong { font-size: 2.75rem; letter-spacing: -.06em; }

.ds-once {
  margin: 0 0 1.25rem;
  color: #65736b;
  font-size: .76rem;
}

.ds-pay {
  width: 100%;
  min-height: 3.55rem;
  border: 0;
  border-radius: .95rem;
  background: linear-gradient(135deg, #16c764, #08a94e);
  color: #fff;
  cursor: pointer;
  padding: .9rem 1rem;
  font: inherit;
  font-size: .93rem;
  font-weight: 900;
  box-shadow: 0 .75rem 1.8rem rgba(8, 169, 78, .28);
  transition: transform .18s ease, filter .18s ease;
}

.ds-pay:hover { filter: brightness(1.04); transform: translateY(-1px); }
.ds-pay:active { transform: scale(.985); }

.ds-skip {
  display: block;
  margin: 1rem auto 0;
  color: #6a7770;
  font-size: .74rem;
  font-weight: 650;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: .18rem;
}

.ds-trust {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.25rem 0 0;
  color: #829087;
  font-size: .67rem;
  font-weight: 700;
}

.ds-note {
  border-top: 1px solid rgba(16, 32, 24, .09);
  padding: 1.2rem 0 0;
  color: #78877f;
  font-size: .7rem;
  line-height: 1.55;
  text-align: center;
}

@media (max-width: 760px) {
  .ds-shell { width: min(100% - 1.25rem, 31rem); }
  .ds-header { height: 4rem; }
  .ds-secure { font-size: .66rem; }
  .ds-main { grid-template-columns: 1fr; gap: 1.6rem; padding: 2rem 0 1.25rem; }
  .ds-copy { text-align: center; }
  .ds-copy h1 { margin-inline: auto; font-size: clamp(2rem, 10vw, 2.75rem); }
  .ds-lead { font-size: .94rem; line-height: 1.6; }
  .ds-benefits { width: fit-content; max-width: 100%; margin-inline: auto; text-align: left; }
  .ds-card { padding: 1.4rem; border-radius: 1.35rem; }
  .ds-price strong { font-size: 2.45rem; }
}

@media (prefers-reduced-motion: reduce) {
  .ds-pay { transition: none; }
}
