:root {
  --amazon-orange: #ff9900;
  --amazon-orange-dark: #e47911;
  --amazon-navy: #131921;
  --amazon-blue: #232f3e;
  --deep-blue: #0d1f2d;
  --white: #ffffff;
  --light: #f5f6f7;
  --ink: #17202b;
  --muted: #5c6672;
  --shell: 1180px;
  --font-sans: Inter, Arial, Helvetica, system-ui, sans-serif;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 36px;
  --space-2xl: 52px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: relative;
  z-index: 20;
  height: 68px;
  color: var(--white);
  background: var(--amazon-navy);
  border-bottom: 3px solid var(--amazon-orange);
}

.site-header__inner,
.hero__inner,
.benefit-strip__inner,
.section-shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.site-header__inner {
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand-icon {
  position: relative;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 7px;
  background: var(--amazon-blue);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.brand-icon::before,
.brand-icon::after,
.brand-icon__ribbon {
  content: "";
  position: absolute;
  background: var(--amazon-orange);
}

.brand-icon::before {
  left: 7px;
  right: 7px;
  top: 14px;
  height: 15px;
  border-radius: 2px;
}

.brand-icon::after {
  left: 5px;
  right: 5px;
  top: 10px;
  height: 6px;
  border-radius: 2px;
}

.brand-icon__ribbon {
  z-index: 1;
  left: 17px;
  top: 10px;
  width: 4px;
  height: 19px;
  background: var(--amazon-navy);
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-copy strong {
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 0.01em;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.reward-badge {
  padding: 7px 11px 6px;
  border: 2px solid var(--amazon-orange);
  border-radius: 5px;
  color: var(--amazon-orange);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  transform: rotate(2.5deg);
}

.header-trust {
  display: flex;
  align-items: center;
  gap: 19px;
}

.secure-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.mini-icon {
  position: relative;
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  display: inline-block;
  color: currentColor;
}

.mini-icon--shield {
  border: 0;
}

.mini-icon--shield::before,
.mini-icon--shield::after {
  content: "";
  position: absolute;
  border: 1.5px solid var(--amazon-orange);
}

.mini-icon--shield::before {
  left: 4px;
  top: 1px;
  width: 7px;
  height: 9px;
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
}

.mini-icon--shield::after {
  left: 2px;
  bottom: 1px;
  width: 13px;
  height: 10px;
  border-radius: 3px;
  background: transparent;
}

.mini-icon--document {
  border: 1.5px solid currentColor;
  border-radius: 2px;
}

.mini-icon--document::before,
.mini-icon--document::after {
  content: "";
  position: absolute;
  left: 3px;
  height: 1px;
  background: currentColor;
}

.mini-icon--document::before {
  top: 5px;
  width: 9px;
}

.mini-icon--document::after {
  top: 9px;
  width: 6px;
}

.mini-icon--browse {
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.mini-icon--browse::before,
.mini-icon--browse::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.mini-icon--browse::before {
  left: 2px;
  right: 2px;
  top: 7px;
  height: 1px;
}

.mini-icon--browse::after {
  left: 7px;
  top: 2px;
  width: 1px;
  height: 11px;
}

.hero {
  position: relative;
  min-height: 628px;
  overflow: hidden;
  color: var(--white);
  background: var(--deep-blue);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    radial-gradient(circle at 78% 47%, rgba(54, 91, 116, 0.54) 0, rgba(13, 31, 45, 0) 32%),
    linear-gradient(112deg, #0b1925 0%, #102b3e 51%, #0b1d2b 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  top: -24%;
  right: -8%;
  width: 58%;
  height: 145%;
  opacity: 0.28;
  background: #31526a;
  clip-path: polygon(32% 0, 100% 0, 100% 70%, 0 100%);
}

.hero__inner {
  min-height: 570px;
  display: grid;
  grid-template-columns: minmax(440px, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 40px;
  padding-block: 36px 38px;
}

.hero__copy {
  position: relative;
  z-index: 4;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--amazon-orange);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow {
  width: fit-content;
  padding: 8px 12px;
  color: var(--amazon-navy);
  border-radius: 3px;
  background: var(--amazon-orange);
  box-shadow: 7px 7px 0 rgba(255, 153, 0, 0.12);
}

.hero h1 {
  margin: 14px 0 0;
  font-weight: 900;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.reward-amount {
  color: var(--amazon-orange);
  font-size: clamp(5.75rem, 7.2vw, 6.85rem);
  line-height: 0.84;
}

.reward-brand {
  margin-top: 12px;
  font-size: clamp(3.65rem, 5.3vw, 4.75rem);
  line-height: 0.84;
}

.reward-type {
  margin-top: 7px;
  font-size: clamp(3.15rem, 4.65vw, 4.15rem);
  line-height: 0.9;
  text-transform: none;
}

.hero__lead {
  max-width: 470px;
  margin: 19px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.55;
}

.offer-cta {
  width: min(100%, 430px);
  min-height: 60px;
  margin-top: 24px;
  padding: 0 21px 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--amazon-navy);
  background: var(--amazon-orange);
  box-shadow: 0 13px 28px rgba(0, 0, 0, 0.25);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.offer-cta:hover {
  background: #ffad21;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.offer-cta:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 4px;
}

.offer-cta__arrow {
  font-size: 1.55rem;
  line-height: 1;
}

.cta-disclosure {
  max-width: 430px;
  margin: 11px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.73rem;
  line-height: 1.5;
}

.hero-trust {
  width: min(100%, 540px);
  margin-top: 18px;
  padding-top: 15px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-trust__item {
  min-width: 0;
  display: grid;
  grid-template-columns: 25px 1fr;
  align-items: start;
  gap: 8px;
}

.hero-trust__item span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.61rem;
  line-height: 1.35;
}

.hero-trust__item strong {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.67rem;
  line-height: 1.2;
}

.trust-icon {
  position: relative;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 153, 0, 0.6);
  color: var(--amazon-orange);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
}

.trust-icon--shield {
  border-radius: 5px;
}

.trust-icon--document::after {
  content: "";
  width: 7px;
  height: 4px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg) translate(1px, -1px);
}

.trust-icon--shield::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 8px;
  height: 8px;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
}

.trust-icon--shield::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 12px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.trust-icon--document {
  border-radius: 4px;
}

.trust-icon--document::before {
  content: "";
  position: absolute;
  inset: 4px 5px;
  border: 1px solid rgba(255, 153, 0, 0.45);
  border-radius: 1px;
}

.trust-icon--info {
  border-radius: 50%;
}

.trust-icon--mobile {
  border-radius: 5px;
}

.trust-icon--mobile::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 8px;
  height: 14px;
  border: 1.5px solid currentColor;
  border-radius: 2px;
}

.trust-icon--mobile::after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 4px;
  width: 3px;
  height: 1px;
  background: currentColor;
}

.product-stage {
  position: relative;
  z-index: 3;
  height: 485px;
  display: grid;
  place-items: center;
  perspective: 1100px;
}

.product-stage::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 2%;
  bottom: 45px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.48);
  filter: blur(18px);
  transform: rotate(-4deg);
}

.stage-glow {
  position: absolute;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255, 153, 0, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 46px rgba(255, 255, 255, 0.015),
    0 0 0 96px rgba(255, 255, 255, 0.012);
}

.card-cluster {
  position: relative;
  z-index: 2;
  width: 560px;
  height: 400px;
  animation: cluster-float 6s ease-in-out infinite;
}

.gift-card {
  position: absolute;
  overflow: hidden;
  width: 374px;
  aspect-ratio: 1.585;
  padding: 29px 31px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;
  color: var(--white);
  background:
    linear-gradient(128deg, rgba(255, 255, 255, 0.09), transparent 27%),
    radial-gradient(circle at 88% 112%, rgba(255, 153, 0, 0.22), transparent 37%),
    #111519;
  box-shadow:
    0 30px 42px rgba(0, 0, 0, 0.43),
    inset 0 1px rgba(255, 255, 255, 0.09);
  transform-style: preserve-3d;
}

.gift-card::before {
  content: "";
  position: absolute;
  top: -75px;
  right: -64px;
  width: 185px;
  height: 185px;
  border: 28px solid rgba(255, 153, 0, 0.74);
  border-radius: 50%;
}

.gift-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: repeating-linear-gradient(135deg, transparent 0 13px, rgba(255, 255, 255, 0.055) 14px 15px);
}

.gift-card--back {
  top: 35px;
  left: 107px;
  z-index: 1;
  width: 410px;
  transform: rotate(-5deg) translateZ(-30px);
}

.gift-card--left {
  left: 5px;
  bottom: 22px;
  z-index: 2;
  transform: rotate(7deg) translateZ(15px);
}

.gift-card--right {
  right: -2px;
  bottom: 1px;
  z-index: 3;
  transform: rotate(-7deg) translateZ(40px);
}

.gift-card__brand,
.gift-card__label,
.gift-card__value,
.gift-card__smile {
  position: relative;
  z-index: 2;
}

.gift-card__brand {
  display: block;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.gift-card__label {
  display: block;
  margin-top: 48px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.gift-card__value {
  position: absolute;
  right: 27px;
  bottom: 24px;
  color: var(--amazon-orange);
  font-size: 1.35rem;
  font-weight: 900;
}

.gift-card__smile {
  display: block;
  width: 65px;
  height: 22px;
  margin-top: 7px;
  border-bottom: 5px solid var(--amazon-orange);
  border-radius: 0 0 70% 70%;
  transform: rotate(5deg);
}

.hero__decor,
.hero__beam,
.mobile-visual {
  pointer-events: none;
}

.hero__beam {
  position: absolute;
  z-index: -1;
  width: 150%;
  height: 1px;
  left: -20%;
  background: rgba(255, 255, 255, 0.07);
  transform-origin: center;
}

.hero__beam--one {
  top: 37%;
  transform: rotate(-13deg);
}

.hero__beam--two {
  top: 67%;
  transform: rotate(12deg);
}

.decor-percent {
  position: absolute;
  top: 65px;
  right: 4%;
  color: rgba(255, 255, 255, 0.055);
  font-size: 12rem;
  font-weight: 900;
  line-height: 1;
  transform: rotate(10deg);
}

.decor-ring {
  position: absolute;
  top: -190px;
  left: 33%;
  width: 430px;
  height: 430px;
  border: 64px solid rgba(255, 255, 255, 0.025);
  border-radius: 50%;
}

.decor-diamond {
  position: absolute;
  width: 13px;
  height: 13px;
  border: 2px solid var(--amazon-orange);
  transform: rotate(45deg);
  opacity: 0.72;
}

.decor-diamond--one {
  top: 12%;
  left: 43%;
}

.decor-diamond--two {
  top: 78%;
  left: 48%;
  width: 9px;
  height: 9px;
}

.decor-diamond--three {
  top: 16%;
  right: 3%;
  width: 8px;
  height: 8px;
}

.decor-gift {
  position: absolute;
  right: -35px;
  bottom: 12px;
  width: 150px;
  height: 128px;
  border: 8px solid rgba(255, 255, 255, 0.035);
  transform: rotate(-10deg);
}

.decor-gift::before,
.decor-gift::after,
.decor-gift i {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.035);
}

.decor-gift::before {
  top: -23px;
  left: -15px;
  width: 164px;
  height: 15px;
}

.decor-gift::after {
  top: 0;
  left: 63px;
  width: 9px;
  height: 100%;
}

.decor-cart {
  position: absolute;
  left: -42px;
  bottom: 80px;
  width: 170px;
  height: 102px;
  opacity: 0.045;
  border: 13px solid var(--white);
  border-top: 0;
  transform: skewX(-10deg) rotate(-7deg);
}

.decor-cart::before {
  content: "";
  position: absolute;
  left: -29px;
  top: -28px;
  width: 38px;
  height: 13px;
  background: var(--white);
}

.decor-cart i,
.decor-cart b {
  position: absolute;
  bottom: -37px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
}

.decor-cart i {
  left: 20px;
}

.decor-cart b {
  right: 20px;
}

.benefit-strip {
  height: 58px;
  color: var(--amazon-navy);
  background: var(--amazon-orange);
  box-shadow: 0 -7px 22px rgba(0, 0, 0, 0.13);
}

.benefit-strip__inner {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.benefit-strip__inner span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 0.91rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.benefit-strip__inner span + span {
  border-left: 1px solid rgba(19, 25, 33, 0.24);
}

.benefit-strip b {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 0.72rem;
}

.steps {
  padding: 74px 0 78px;
  background: var(--white);
}

.steps .section-kicker,
.steps > .section-shell > h2 {
  text-align: center;
}

.steps h2,
.offer-info h2,
.section-heading h2,
.privacy h2 {
  margin: 10px 0 0;
  color: var(--amazon-navy);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.steps__grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #e3e7eb;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(19, 25, 33, 0.07);
  overflow: hidden;
}

.step {
  position: relative;
  min-height: 205px;
  padding: 31px 30px 28px;
  background: var(--white);
}

.step + .step {
  border-left: 1px solid #e3e7eb;
}

.step__number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: var(--amazon-navy);
  background: var(--amazon-orange);
  font-size: 0.9rem;
  font-weight: 900;
}

.step__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.step-icon {
  position: relative;
  width: 39px;
  height: 39px;
  border: 1px solid #e1e5e9;
  border-radius: 9px;
  background: var(--light);
}

.step-icon--read::before {
  content: "";
  position: absolute;
  inset: 9px 11px;
  border: 2px solid var(--amazon-blue);
  border-radius: 2px;
  box-shadow: 5px 4px 0 -2px var(--light), 5px 4px 0 0 var(--amazon-orange);
}

.step-icon--check::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 10px;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--amazon-orange-dark);
  border-bottom: 3px solid var(--amazon-orange-dark);
  transform: rotate(-45deg);
}

.step-icon--steps::before,
.step-icon--steps::after {
  content: "";
  position: absolute;
  height: 5px;
  border-radius: 2px;
  background: var(--amazon-blue);
}

.step-icon--steps::before {
  left: 9px;
  bottom: 9px;
  width: 21px;
  box-shadow: 0 -8px 0 -1px var(--amazon-orange);
}

.step-icon--steps::after {
  left: 9px;
  top: 8px;
  width: 7px;
}

.step h3 {
  margin: 21px 0 0;
  color: var(--amazon-navy);
  font-size: 1.06rem;
}

.step p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.58;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.68;
}

.section-heading--centered {
  display: grid;
  justify-items: center;
  text-align: center;
}

.transparency {
  padding: 75px 0 80px;
  background: var(--light);
  border-top: 1px solid #e7eaed;
  border-bottom: 1px solid #e2e6e9;
}

.transparency__grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.transparency-card {
  min-height: 180px;
  padding: 27px;
  border: 1px solid #e0e4e8;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 14px 35px rgba(19, 25, 33, 0.055);
}

.transparency-card h3 {
  margin: 20px 0 0;
  color: var(--amazon-navy);
  font-size: 1rem;
}

.transparency-card p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.55;
}

.line-icon {
  position: relative;
  width: 36px;
  height: 36px;
  display: block;
  border: 1px solid rgba(255, 153, 0, 0.42);
  border-radius: 8px;
  background: rgba(255, 153, 0, 0.08);
}

.line-icon::before,
.line-icon::after {
  content: "";
  position: absolute;
}

.line-icon--claim::before {
  inset: 8px;
  border: 2px solid var(--amazon-blue);
  border-radius: 50%;
}

.line-icon--claim::after {
  left: 9px;
  top: 16px;
  width: 18px;
  height: 2px;
  background: var(--amazon-orange-dark);
  transform: rotate(-45deg);
}

.line-icon--requirements::before {
  left: 10px;
  top: 8px;
  width: 14px;
  height: 17px;
  border: 2px solid var(--amazon-blue);
  border-radius: 2px;
}

.line-icon--requirements::after {
  left: 15px;
  top: 14px;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--amazon-orange-dark);
  border-bottom: 2px solid var(--amazon-orange-dark);
  transform: rotate(-45deg);
}

.line-icon--choice::before {
  left: 8px;
  top: 9px;
  width: 18px;
  height: 14px;
  border: 2px solid var(--amazon-blue);
  border-radius: 50%;
}

.line-icon--choice::after {
  left: 15px;
  top: 14px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amazon-orange-dark);
}

.before-section {
  padding: 60px 0;
  background: var(--white);
}

.before-box {
  position: relative;
  overflow: hidden;
  padding: 34px 38px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  border: 1px solid #dbe3e9;
  border-left: 5px solid var(--amazon-orange);
  border-radius: 12px;
  background: #f8fafb;
  box-shadow: 0 18px 42px rgba(19, 25, 33, 0.06);
}

.before-box::after {
  content: "";
  position: absolute;
  right: -65px;
  top: -90px;
  width: 220px;
  height: 220px;
  border: 34px solid rgba(255, 153, 0, 0.055);
  border-radius: 50%;
}

.before-box__icon,
.support__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--amazon-navy);
  background: var(--amazon-orange);
  font-size: 1.15rem;
  font-weight: 900;
}

.before-box h2,
.support h2 {
  margin: 0;
  color: var(--amazon-navy);
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.before-box__content > p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.before-box ul {
  position: relative;
  z-index: 1;
  margin: 23px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 26px;
  list-style: none;
}

.before-box li {
  position: relative;
  padding-left: 23px;
  color: #45515d;
  font-size: 0.86rem;
  line-height: 1.45;
}

.before-box li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--amazon-orange-dark);
  font-weight: 900;
}

.faq {
  padding: 78px 0 82px;
  background: var(--amazon-navy);
}

.faq__layout {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  align-items: start;
  gap: 75px;
}

.faq .section-heading {
  position: sticky;
  top: 30px;
}

.faq .section-heading h2 {
  color: var(--white);
}

.faq .section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.62);
}

.faq__list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.faq-item[open] {
  border-color: rgba(255, 153, 0, 0.48);
  background: rgba(255, 255, 255, 0.075);
}

.faq-item summary {
  min-height: 64px;
  padding: 18px 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.4;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:focus-visible {
  outline: 3px solid var(--amazon-orange);
  outline-offset: -3px;
  border-radius: 9px;
}

.faq-item summary span {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 153, 0, 0.65);
  border-radius: 50%;
}

.faq-item summary span::before,
.faq-item summary span::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 10px;
  width: 10px;
  height: 1px;
  background: var(--amazon-orange);
  transition: transform 180ms ease;
}

.faq-item summary span::after {
  transform: rotate(90deg);
}

.faq-item[open] summary span::after {
  transform: rotate(0);
}

.faq-answer {
  animation: faq-reveal 190ms ease both;
}

.faq-answer p {
  margin: 0;
  padding: 0 55px 21px 21px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  line-height: 1.65;
}

@keyframes faq-reveal {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.privacy {
  padding: 64px 0;
  background: var(--white);
}

.privacy__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 70px;
}

.privacy h2 {
  margin-top: 10px;
  font-size: 2rem;
}

.privacy__copy > p:last-child {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.privacy__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #e2e6e9;
  border-radius: 11px;
  overflow: hidden;
  box-shadow: 0 13px 32px rgba(19, 25, 33, 0.05);
}

.privacy__points span {
  min-height: 96px;
  padding: 17px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--amazon-blue);
  text-align: center;
  font-size: 0.73rem;
  font-weight: 800;
  line-height: 1.3;
}

.privacy__points span + span {
  border-left: 1px solid #e2e6e9;
}

.privacy__points .mini-icon {
  width: 21px;
  height: 21px;
  color: var(--amazon-orange-dark);
}

.feedback {
  padding: 64px 0 68px;
  background: var(--white);
  border-bottom: 1px solid #e5e8eb;
}

.feedback__heading {
  display: grid;
  justify-items: center;
  text-align: center;
}

.feedback__heading h2 {
  margin: 10px 0 0;
  color: var(--amazon-navy);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.feedback__heading > p:last-child {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.feedback-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feedback-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 30px 24px;
  border: 1px dashed #cbd2d8;
  border-radius: 10px;
  color: #6a747e;
  background: #fafbfb;
  font-size: 0.88rem;
  text-align: center;
}

.feedback-card {
  min-width: 0;
  min-height: 154px;
  padding: 20px 19px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  border: 1px solid #dfe4e8;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 11px 28px rgba(19, 25, 33, 0.065);
}

.feedback-card__header {
  display: flex;
  align-items: center;
  gap: 7px;
}

.feedback-card__header strong {
  color: var(--amazon-navy);
  font-size: 0.92rem;
}

.feedback-card__body > time {
  display: block;
  margin-top: 12px;
  color: #7a848e;
  font-size: 0.7rem;
}

.feedback-card__body > p {
  margin: 9px 0 0;
  color: #404b56;
  font-size: 0.9rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.feedback-avatar,
.info-toast__avatar {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 2px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 0 0 1px rgba(19, 25, 33, 0.12);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.feedback-avatar img,
.info-toast__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-style--01 { background: linear-gradient(135deg, #25384c, #e47911); }
.avatar-style--02 { background: linear-gradient(135deg, #1d5667, #e1a126); }
.avatar-style--03 { background: linear-gradient(135deg, #294f3f, #d4812a); }
.avatar-style--04 { background: linear-gradient(135deg, #1f3e67, #5794b7); }
.avatar-style--05 { background: linear-gradient(135deg, #633b2d, #df9234); }
.avatar-style--06 { background: linear-gradient(135deg, #34475c, #8899a8); }
.avatar-style--07 { background: linear-gradient(135deg, #16504f, #d99a32); }
.avatar-style--08 { background: linear-gradient(135deg, #733c2d, #d66c3d); }
.avatar-style--09 { background: linear-gradient(135deg, #25394f, #3d7b92); }
.avatar-style--10 { background: linear-gradient(135deg, #566036, #d5a03b); }
.avatar-style--11 { background: linear-gradient(135deg, #323f53, #e09024); }
.avatar-style--12 { background: linear-gradient(135deg, #1d5b70, #62a3a9); }
.avatar-style--13 { background: linear-gradient(135deg, #6a4727, #c98542); }
.avatar-style--14 { background: linear-gradient(135deg, #264c40, #6d9276); }
.avatar-style--15 { background: linear-gradient(135deg, #273955, #c17334); }

.feedback-verified,
.verified-indicator {
  width: 17px;
  height: 17px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #327a55;
  font-size: 0.61rem;
  font-weight: 900;
}

.verified-indicator[hidden] {
  display: none;
}

.feedback-form {
  max-width: 920px;
  margin: 31px auto 0;
  padding: 28px 30px 25px;
  border: 1px solid #dce2e7;
  border-radius: 13px;
  background: #f8fafb;
  box-shadow: 0 17px 40px rgba(19, 25, 33, 0.07);
}

.form-heading h3 {
  margin: 0;
  color: var(--amazon-navy);
  font-size: 1.16rem;
}

.form-heading p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.5;
}

.feedback-form__grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  position: relative;
  min-width: 0;
}

.form-field--wide {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--amazon-blue);
  font-size: 0.8rem;
  font-weight: 800;
}

.form-field label span {
  color: #75808a;
  font-size: 0.72rem;
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #cbd3da;
  border-radius: 7px;
  color: var(--amazon-navy);
  background: #fbfcfc;
  font: inherit;
  font-size: 0.94rem;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.form-field input {
  min-height: 48px;
  padding: 10px 12px;
}

.form-field input[type="file"] {
  padding: 7px;
  color: #596570;
  background: var(--white);
  font-size: 0.78rem;
}

.form-field input[type="file"]::file-selector-button {
  height: 32px;
  margin-right: 10px;
  padding: 0 12px;
  border: 1px solid #c7cfd6;
  border-radius: 5px;
  color: var(--amazon-blue);
  background: #eef1f3;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.form-field textarea {
  min-height: 112px;
  padding: 12px 12px 28px;
  line-height: 1.5;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: var(--amazon-orange-dark);
  box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.18);
}

.character-counter {
  position: absolute;
  right: 10px;
  bottom: 9px;
  color: #7b858e;
  font-size: 0.68rem;
}

.field-help {
  display: block;
  margin-top: 6px;
  color: #7a858e;
  font-size: 0.69rem;
}

.feedback-form__footer {
  margin-top: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.form-guidance {
  max-width: 630px;
  margin: 0;
  padding-left: 20px;
  position: relative;
  color: #646f79;
  font-size: 0.76rem;
  line-height: 1.5;
}

.form-guidance::before {
  content: "i";
  position: absolute;
  left: 0;
  top: 1px;
  width: 14px;
  height: 14px;
  display: grid;
  place-items: center;
  border: 1px solid var(--amazon-orange-dark);
  border-radius: 50%;
  color: var(--amazon-orange-dark);
  font-size: 0.6rem;
  font-weight: 900;
}

.feedback-submit {
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--amazon-blue);
  border-radius: 7px;
  color: var(--white);
  background: var(--amazon-blue);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 150ms ease, transform 150ms ease;
}

.feedback-submit:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.feedback-submit:hover {
  background: #314052;
  transform: translateY(-1px);
}

.feedback-submit:focus-visible {
  outline: 3px solid var(--amazon-orange);
  outline-offset: 3px;
}

.form-status {
  min-height: 18px;
  margin: 10px 0 0;
  font-size: 0.76rem;
  line-height: 1.45;
}

.form-status--error {
  color: #a52e2e;
}

.form-status--success {
  color: #287048;
}

.feedback-public {
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid #e3e7ea;
}

.feedback-public__heading {
  margin-bottom: 20px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.feedback-public__heading h3 {
  margin: 0;
  color: var(--amazon-navy);
  font-size: 1.08rem;
}

.feedback-public__heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.info-toast {
  position: fixed;
  z-index: 50;
  left: 24px;
  bottom: 24px;
  width: min(calc(100% - 32px), 350px);
  padding: 15px 16px;
  display: block;
  border: 1px solid #e0e4e7;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(19, 25, 33, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.feedback-toast-inner {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.info-toast[hidden] {
  display: none;
}

.info-toast--visible {
  opacity: 1;
  transform: translateY(0);
}

.info-toast__icon {
  display: none;
}

.info-toast__avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  flex: 0 0 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.info-toast__avatar--info {
  color: var(--amazon-navy);
  background: var(--amazon-orange);
  font-size: 0.76rem;
}

.info-toast__name-row {
  display: flex;
  align-items: center;
  gap: 7px;
}

.feedback-toast-content {
  min-width: 0;
  flex: 1 1 auto;
}

.info-toast__name-row strong {
  color: var(--amazon-navy);
  font-size: 0.83rem;
}

.info-toast__name-row .verified-indicator {
  width: 15px;
  height: 15px;
  font-size: 0.55rem;
}

.info-toast__content p {
  margin: 0;
  color: #3d4853;
  font-size: 0.78rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.info-toast__name-row + p {
  margin-top: 4px;
}

.info-toast__meta {
  display: block;
  margin-top: 6px;
  color: #7a858e;
  font-size: 0.66rem;
}

.support {
  padding: 40px 0;
  background: var(--light);
  border-top: 1px solid #e2e6e9;
}

.support__inner {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 20px;
}

.support__icon {
  background: var(--amazon-blue);
  color: var(--amazon-orange);
}

.support h2 {
  font-size: 1.15rem;
}

.support p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.offer-info {
  padding: 45px 0;
  background: var(--light);
  border-top: 1px solid #e5e8eb;
}

.offer-info__inner {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  align-items: center;
  gap: 64px;
}

.offer-info h2 {
  margin: 0;
  font-size: 1.55rem;
}

.offer-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.site-footer {
  padding: 23px 0;
  color: rgba(255, 255, 255, 0.65);
  background: var(--amazon-navy);
  font-size: 0.78rem;
}

.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-footer__top strong {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.8rem;
}

.site-footer__legal {
  display: flex;
  gap: 25px;
}

.site-footer__legal span {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__disclosures {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.site-footer__disclosures p {
  max-width: 1050px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  line-height: 1.6;
}

.site-footer__disclosures p + p {
  margin-top: 7px;
}

.mobile-visual {
  display: none;
}

@keyframes cluster-float {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-9px) rotate(-1deg);
  }
}

@media (max-width: 1120px) {
  .hero__inner {
    grid-template-columns: minmax(390px, 0.9fr) minmax(430px, 1.1fr);
    gap: 16px;
  }

  .card-cluster {
    transform-origin: center;
    scale: 0.84;
  }

  .reward-amount {
    font-size: 5.7rem;
  }

  .reward-brand {
    font-size: 3.65rem;
  }

  .reward-type {
    font-size: 3.3rem;
  }
}

@media (max-width: 820px) {
  .site-header__inner,
  .hero__inner,
  .benefit-strip__inner,
  .section-shell {
    width: min(calc(100% - 36px), var(--shell));
  }

  .hero__inner {
    grid-template-columns: minmax(330px, 0.95fr) minmax(350px, 1.05fr);
  }

  .card-cluster {
    scale: 0.7;
  }

  .faq__layout {
    gap: 38px;
  }

  .privacy__inner {
    gap: 35px;
  }
}

@media (max-width: 767px) {
  .site-header {
    height: 64px;
  }

  .site-header__inner {
    height: 61px;
  }

  .brand-icon {
    width: 34px;
    height: 34px;
  }

  .brand-icon::before {
    top: 13px;
  }

  .brand-icon::after {
    top: 9px;
  }

  .brand-icon__ribbon {
    left: 15px;
    top: 9px;
  }

  .brand-copy strong {
    font-size: 0.85rem;
  }

  .brand-copy small {
    font-size: 0.58rem;
  }

  .reward-badge {
    padding: 6px 8px 5px;
    font-size: 0.76rem;
  }

  .header-trust {
    gap: 12px;
  }

  .secure-label {
    width: 17px;
    overflow: hidden;
    gap: 0;
    color: transparent;
    font-size: 0;
    white-space: nowrap;
  }

  .secure-label .mini-icon {
    color: var(--white);
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    top: 26%;
    right: -40%;
    width: 120%;
    height: 54%;
    clip-path: polygon(39% 0, 100% 15%, 78% 100%, 0 82%);
  }

  .hero__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 28px 24px;
    text-align: center;
  }

  .hero__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .eyebrow {
    padding: 7px 10px;
    font-size: 0.67rem;
  }

  .hero h1 {
    margin-top: 15px;
  }

  .reward-amount {
    font-size: clamp(4rem, 20vw, 5.5rem);
    line-height: 0.95;
  }

  .reward-brand {
    margin-top: 10px;
    font-size: clamp(2.7rem, 13.5vw, 3.35rem);
  }

  .reward-type {
    margin-top: 5px;
    font-size: clamp(2.45rem, 12vw, 3rem);
  }

  .hero__lead {
    max-width: 340px;
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .product-stage {
    height: 260px;
    width: 100%;
    grid-row: auto;
    margin-top: -350px;
    visibility: hidden;
  }

  .mobile-visual {
    display: block;
    width: 100%;
    height: 350px;
    margin-top: 8px;
  }

  .product-stage {
    position: absolute;
    left: 0;
    top: 375px;
    margin: 0;
    visibility: visible;
  }

  .product-stage::after {
    left: 17%;
    right: 17%;
    bottom: 22px;
  }

  .stage-glow {
    width: min(78vw, 300px);
    height: min(78vw, 300px);
  }

  .card-cluster {
    width: min(92vw, 360px);
    height: 242px;
    scale: 1;
  }

  .gift-card {
    width: min(72vw, 260px);
    padding: 18px 20px;
    border-radius: 11px;
  }

  .gift-card::before {
    top: -53px;
    right: -46px;
    width: 130px;
    height: 130px;
    border-width: 19px;
  }

  .gift-card--back {
    top: 9px;
    left: 50%;
    width: min(78vw, 280px);
    transform: translateX(-50%) rotate(-2deg);
  }

  .gift-card--left {
    left: 0;
    bottom: 8px;
    transform: rotate(3deg);
  }

  .gift-card--right {
    right: 0;
    bottom: 1px;
    transform: rotate(-3deg);
  }

  .gift-card__brand {
    font-size: 1.12rem;
  }

  .gift-card__label {
    margin-top: 27px;
    font-size: 0.55rem;
  }

  .gift-card__smile {
    width: 47px;
    height: 16px;
    margin-top: 4px;
    border-bottom-width: 3px;
  }

  .gift-card__value {
    right: 17px;
    bottom: 15px;
    font-size: 0.9rem;
  }

  .offer-cta {
    width: min(100%, 360px);
    min-height: 58px;
    margin-top: 6px;
    font-size: 1rem;
  }

  .cta-disclosure {
    margin-inline: auto;
  }

  .hero-trust {
    width: 100%;
    margin-top: 21px;
    padding-top: 18px;
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: left;
  }

  .hero-trust__item {
    grid-template-columns: 28px 1fr;
    gap: 10px;
  }

  .hero-trust__item span {
    font-size: 0.72rem;
  }

  .hero-trust__item strong {
    font-size: 0.75rem;
  }

  .decor-percent {
    top: 38%;
    right: -10%;
    font-size: 8rem;
  }

  .decor-diamond--one {
    top: 40%;
    left: 8%;
  }

  .decor-diamond--two {
    top: 64%;
    left: 88%;
  }

  .decor-cart {
    bottom: 96px;
  }

  .benefit-strip {
    height: 56px;
  }

  .benefit-strip__inner span {
    gap: 5px;
    font-size: 0.7rem;
    letter-spacing: 0.02em;
  }

  .benefit-strip b {
    width: 18px;
    height: 18px;
    font-size: 0.59rem;
  }

  .steps {
    padding: 57px 0 60px;
  }

  .steps__grid {
    margin-top: 31px;
    grid-template-columns: 1fr;
  }

  .step {
    min-height: 0;
    padding: 25px 24px;
  }

  .step + .step {
    border-top: 1px solid #e3e7eb;
    border-left: 0;
  }

  .transparency {
    padding: 57px 0 60px;
  }

  .transparency__grid {
    margin-top: 30px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .transparency-card {
    min-height: 0;
    padding: 24px;
  }

  .before-section {
    padding: 44px 0;
  }

  .before-box {
    padding: 27px 24px;
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }

  .before-box__icon {
    width: 40px;
    height: 40px;
  }

  .before-box h2 {
    font-size: 1.28rem;
  }

  .before-box ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .faq {
    padding: 58px 0 62px;
  }

  .faq__layout {
    grid-template-columns: 1fr;
    gap: 31px;
  }

  .faq .section-heading {
    position: static;
  }

  .faq-item summary {
    min-height: 66px;
    padding: 17px 18px;
    font-size: 1rem;
  }

  .faq-answer p {
    padding: 0 50px 19px 18px;
    font-size: 0.84rem;
  }

  .privacy {
    padding: 53px 0;
  }

  .privacy__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .privacy__points span {
    min-height: 90px;
    padding-inline: 6px;
    font-size: 0.68rem;
  }

  .feedback {
    padding: var(--space-xl) 0;
  }

  .feedback__heading h2 {
    font-size: 2rem;
  }

  .feedback-form__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .form-field--wide {
    grid-column: auto;
  }

  .feedback-form {
    margin-top: var(--space-lg);
    padding: var(--space-lg);
  }

  .feedback-form__footer {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .form-field label {
    font-size: 0.88rem;
  }

  .form-field input,
  .form-field textarea {
    font-size: 1rem;
  }

  .feedback-submit {
    width: 100%;
    min-height: 48px;
    font-size: 0.9rem;
  }

  .feedback-public {
    margin-top: 32px;
    padding-top: 25px;
  }

  .feedback-public__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .feedback-list {
    grid-template-columns: 1fr;
  }

  .feedback-card {
    min-height: 0;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 13px;
  }

  .feedback-avatar {
    width: 44px;
    height: 44px;
  }

  .feedback-card__header strong,
  .feedback-card__body > p {
    font-size: 0.94rem;
  }

  .info-toast {
    left: 50%;
    right: auto;
    bottom: 16px;
    width: calc(100% - 24px);
    max-width: 340px;
    transform: translate(-50%, 12px);
  }

  .info-toast__avatar {
    width: 42px;
    height: 42px;
    min-width: 42px;
    flex-basis: 42px;
  }

  .info-toast--visible {
    transform: translate(-50%, 0);
  }

  .support {
    padding: 35px 0;
  }

  .support__inner {
    align-items: start;
  }

  .offer-info {
    padding: 39px 0;
  }

  .offer-info__inner {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .site-footer {
    padding: 28px 0;
  }

  .site-footer__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .site-footer__legal {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px 18px;
  }

  .site-footer__disclosures p {
    font-size: 0.74rem;
  }
}

@media (max-width: 430px) {
  .site-header__inner,
  .hero__inner,
  .benefit-strip__inner,
  .section-shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .product-stage {
    top: 375px;
  }

  .before-box {
    grid-template-columns: 1fr;
  }

  .before-box__icon {
    width: 36px;
    height: 36px;
  }

  .support__inner {
    grid-template-columns: 40px 1fr;
    gap: 14px;
  }

  .support__icon {
    width: 40px;
    height: 40px;
  }

  .feedback-card__header {
    align-items: center;
    flex-direction: row;
    gap: 7px;
  }
}

@media (max-width: 360px) {
  .brand-lockup {
    gap: 8px;
  }

  .brand-copy small {
    letter-spacing: 0;
  }

  .reward-amount {
    font-size: 4rem;
  }

  .reward-brand {
    font-size: 2.7rem;
  }

  .reward-type {
    font-size: 2.45rem;
  }

  .product-stage {
    top: 375px;
  }

  .mobile-visual {
    height: 350px;
  }

  .offer-cta {
    padding-inline: 18px;
    font-size: 1rem;
  }

  .privacy__points {
    grid-template-columns: 1fr;
  }

  .privacy__points span {
    min-height: 70px;
    flex-direction: row;
  }

  .privacy__points span + span {
    border-top: 1px solid #e2e6e9;
    border-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .card-cluster {
    animation: none;
  }

  .offer-cta {
    transition: none;
  }

  .faq-answer,
  .faq-item,
  .faq-item summary span::before,
  .faq-item summary span::after,
  .info-toast,
  .feedback-submit {
    animation: none;
    transition: none;
  }
}
