:root {
  color-scheme: only light;
  --ink: #0b0b0d;
  --muted: rgba(3, 3, 6, 0.62);
  --red: #ef3124;
  --red-hover: #d9271c;
  --lavender: #bfc4fe;
  --paper: #f2f3f5;
  --line: rgba(3, 3, 6, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
  background: #fff;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  background: #fff;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

img {
  display: block;
  max-width: 100%;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

.mobile-shell {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.partner-note {
  min-height: 42px;
  padding: 7px 14px;
  background: #0b0b0d;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 10px;
  line-height: 1.35;
}

.partner-note strong {
  color: #fff;
  font-weight: 700;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(3, 3, 6, 0.06);
  background: #fff;
}

.header-inner {
  width: min(100% - 24px, 1180px);
  height: 64px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.1;
}

.brand img {
  width: 22px;
  height: 36px;
  flex: 0 0 auto;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: #777980;
  font-size: 9px;
  font-weight: 600;
}

.header-inner nav {
  display: none;
}

.offer-button {
  width: fit-content;
  min-height: 48px;
  padding: 0 18px 0 20px;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 15px;
  font-weight: 720;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(239, 49, 36, 0.2);
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.offer-button:hover {
  background: var(--red-hover);
  transform: translateY(-1px);
}

.offer-button:focus-visible,
.brand:focus-visible,
.header-inner nav a:focus-visible,
summary:focus-visible {
  outline: 3px solid #1557ff;
  outline-offset: 3px;
}

.header-button {
  min-height: 40px;
  margin-left: auto;
  padding: 0 14px;
  border-radius: 11px;
  gap: 8px;
  font-size: 13px;
  box-shadow: none;
}

.header-button span:last-child {
  display: none;
}

.hero {
  overflow: hidden;
  background: var(--lavender);
}

.hero-inner {
  width: 100%;
  margin-inline: auto;
}

.hero-image {
  padding: 12px 10px 0;
}

.hero-image picture,
.hero-image img {
  width: 100%;
}

.hero-image img {
  aspect-ratio: 656 / 416;
  object-fit: contain;
  object-position: center bottom;
}

.hero-copy {
  padding: 4px 20px 66px;
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-size: clamp(30px, 8.8vw, 38px);
  font-weight: 720;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.hero-subtitle {
  margin: 13px 0 23px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.28;
}

.hero-copy .offer-button {
  width: min(230px, 100%);
}

.hero-disclaimer {
  max-width: 310px;
  margin: 13px auto 0;
  color: rgba(3, 3, 6, 0.58);
  font-size: 10px;
  line-height: 1.4;
}

.benefits-panel {
  position: relative;
  z-index: 2;
  margin-top: -32px;
  padding: 30px 0 34px;
  border-radius: 32px 32px 0 0;
  background: linear-gradient(180deg, #fff 0%, #f3f4f5 100%);
}

.benefit-list {
  display: grid;
  gap: 0;
}

.benefit-row {
  min-height: 88px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(3, 3, 6, 0.08);
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: center;
}

.benefit-row img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.benefit-row h2 {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 680;
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.benefit-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.delivery-note {
  margin: 18px 0 0;
  padding: 13px 16px;
  border-radius: 14px;
  background: #fff;
  color: rgba(3, 3, 6, 0.68);
  text-align: center;
  font-size: 13px;
  line-height: 1.35;
}

.intro-section {
  padding-top: 22px;
  padding-bottom: 68px;
}

.intro-card {
  overflow: hidden;
  border-radius: 24px;
  background: var(--paper);
}

.intro-card > img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.intro-copy {
  padding: 24px 20px 22px;
}

.intro-copy h2 {
  margin: 0;
  font-size: 27px;
  font-weight: 720;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.intro-copy p {
  margin: 14px 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
}

.intro-copy .offer-button {
  width: 100%;
}

.cashback-section,
.advantages-section,
.steps-section,
.terms-section,
.cta-section,
.faq-section {
  padding: 68px 0;
}

.cashback-section {
  overflow: hidden;
  background: #fff;
}

.section-title {
  margin: 0;
  font-size: clamp(30px, 8.8vw, 40px);
  font-weight: 720;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.section-lead {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
}

.cashback-hero {
  width: calc(100% + 32px);
  max-width: none;
  margin: 22px -16px 0;
  aspect-ratio: 2 / 1;
  object-fit: contain;
}

.card-scroller {
  width: 100%;
  margin-top: 28px;
  padding: 0 16px 12px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(260px, calc(100vw - 54px));
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.card-scroller::-webkit-scrollbar {
  display: none;
}

.cashback-card {
  min-height: 272px;
  padding: 18px;
  border-radius: 22px;
  background: var(--paper);
  scroll-snap-align: start;
}

.cashback-card img {
  width: 100%;
  height: 104px;
  object-fit: contain;
}

.cashback-card h3 {
  margin: 18px 0 8px;
  font-size: 21px;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.cashback-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.advantages-section {
  background: var(--paper);
}

.advantage-list {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.advantage-card {
  overflow: hidden;
  min-width: 0;
  border-radius: 24px;
  background: #fff;
}

.advantage-card > div {
  position: relative;
  z-index: 2;
  padding: 24px 20px 8px;
}

.tag,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  color: rgba(3, 3, 6, 0.56);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.tag {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(3, 3, 6, 0.06);
}

.advantage-card h3 {
  margin: 14px 0 10px;
  font-size: 27px;
  font-weight: 720;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.advantage-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.advantage-card > img {
  width: 100%;
  height: 240px;
  margin-top: 8px;
  object-fit: contain;
  object-position: center bottom;
}

.advantage-grace {
  background: #ffdd5c;
}

.advantage-grace > img {
  height: 260px;
  object-fit: cover;
  object-position: center bottom;
}

.advantage-cash {
  background: #111;
  color: #fff;
}

.advantage-cash .tag {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
}

.advantage-cash p {
  color: rgba(255, 255, 255, 0.68);
}

.advantage-limit {
  background: #ced1ff;
}

.advantage-limit > img {
  width: 76%;
  height: 220px;
  margin-inline: auto;
  transform: rotate(-5deg) translateY(34px);
  filter: drop-shadow(0 24px 28px rgba(15, 15, 35, 0.18));
}

.steps-section {
  background: #fff;
}

.steps-section .section-lead {
  margin-bottom: 28px;
}

.steps-list {
  display: grid;
  gap: 0;
}

.step-card {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
}

.step-card:last-child {
  border-bottom: 1px solid var(--line);
}

.step-icon {
  position: relative;
}

.step-icon span {
  color: #a4a5aa;
  font-size: 11px;
  font-weight: 760;
}

.step-icon img {
  width: 58px;
  height: 58px;
  margin-top: 8px;
  object-fit: contain;
}

.step-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.terms-section {
  background: #151515;
  color: #fff;
}

.terms-copy .section-title {
  margin-top: 12px;
}

.terms-copy > p {
  margin: 18px 0 30px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.5;
}

.terms-section .section-kicker {
  color: rgba(255, 255, 255, 0.5);
}

.terms-list {
  margin: 0 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.terms-list > div {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.terms-list dt {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.terms-list dd {
  margin: 7px 0 0;
  font-size: 18px;
  font-weight: 680;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.terms-section .offer-button {
  width: 100%;
}

.cta-section {
  background: #fff;
}

.cta-card {
  overflow: hidden;
  padding: 28px 20px 0;
  border-radius: 26px;
  background: var(--lavender);
}

.cta-card .section-kicker {
  margin-bottom: 13px;
}

.cta-card h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 720;
  letter-spacing: -0.05em;
  line-height: 1;
}

.cta-card p {
  margin: 16px 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.cta-card .offer-button {
  width: 100%;
}

.cta-card > img {
  width: 230px;
  height: 270px;
  margin: 14px auto -48px;
  object-fit: contain;
  transform: rotate(-6deg);
  filter: drop-shadow(0 24px 24px rgba(12, 12, 22, 0.18));
}

.faq-section {
  padding-top: 28px;
  background: #fff;
}

.faq-list {
  margin-top: 26px;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 82px;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.25;
}

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

.faq-list summary > span:last-child {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--paper);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 21px;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary > span:last-child {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -4px 44px 24px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.site-footer {
  padding: 44px 0 30px;
  background: #111;
  color: #fff;
}

.footer-inner {
  display: grid;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 24px;
  height: 40px;
}

.footer-brand strong {
  max-width: 190px;
  font-size: 14px;
  line-height: 1.25;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  line-height: 1.55;
}

.footer-inner .offer-button {
  width: 100%;
  margin-top: 4px;
}

@media (min-width: 520px) {
  .partner-note {
    min-height: 34px;
    flex-direction: row;
    gap: 9px;
  }

  .partner-note span::before {
    content: "— ";
  }

  .header-inner {
    width: min(100% - 36px, 1180px);
    height: 70px;
  }

  .hero-inner {
    max-width: 720px;
  }

  .hero-image {
    padding-top: 20px;
  }

  .hero-copy {
    padding-bottom: 72px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-subtitle {
    font-size: 19px;
  }

  .benefit-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
  }

  .delivery-note {
    grid-column: 1 / -1;
  }

  .intro-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .intro-card > img {
    height: 100%;
    min-height: 340px;
    aspect-ratio: auto;
    object-fit: contain;
    background: #2e6bff;
  }

  .intro-copy {
    padding: 34px 28px;
  }

  .card-scroller {
    padding-inline: max(16px, calc((100vw - 720px) / 2));
    grid-auto-columns: 280px;
  }

  .advantage-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .advantage-grace {
    grid-column: 1 / -1;
  }

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

  .step-card,
  .step-card:last-child {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 22px;
    grid-template-columns: 1fr;
  }

  .terms-list > div {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 24px;
  }

  .terms-list dd {
    margin-top: 0;
  }

  .terms-section .offer-button {
    width: fit-content;
  }

  .cta-card {
    min-height: 470px;
    padding: 44px 44% 40px 34px;
    position: relative;
  }

  .cta-card > img {
    position: absolute;
    width: 340px;
    height: 380px;
    right: -20px;
    bottom: -70px;
    margin: 0;
  }

  .cta-card .offer-button {
    width: fit-content;
  }

  .footer-inner .offer-button {
    width: fit-content;
  }
}

@media (min-width: 768px) {
  .mobile-shell {
    width: min(100% - 48px, 1180px);
  }

  .header-inner {
    width: min(100% - 48px, 1180px);
    height: 76px;
  }

  .brand {
    font-size: 14px;
  }

  .brand img {
    width: 25px;
    height: 41px;
  }

  .brand small {
    font-size: 10px;
  }

  .header-button {
    min-height: 44px;
    padding-inline: 18px;
    font-size: 14px;
  }

  .header-button span:last-child {
    display: inline;
  }

  .cashback-section,
  .advantages-section,
  .steps-section,
  .terms-section,
  .cta-section,
  .faq-section {
    padding: 88px 0;
  }

  .section-title {
    font-size: 52px;
  }

  .section-lead {
    max-width: 720px;
    font-size: 17px;
  }

  .cashback-hero {
    width: min(720px, 100%);
    margin: 28px auto 0;
  }

  .card-scroller {
    width: min(100% - 48px, 1180px);
    margin-inline: auto;
    padding: 0 0 12px;
    grid-auto-columns: minmax(0, 1fr);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
  }

  .cashback-card {
    min-height: 320px;
    padding: 24px;
  }

  .cashback-card img {
    height: 128px;
  }

  .cashback-card h3 {
    font-size: 24px;
  }

  .advantage-card > div {
    padding: 30px 28px 10px;
  }

  .advantage-card h3 {
    font-size: 34px;
  }

  .advantage-grace {
    min-height: 450px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
  }

  .advantage-grace > img {
    height: 100%;
    margin: 0;
    object-fit: cover;
  }

  .advantage-cash,
  .advantage-limit {
    min-height: 520px;
  }

  .advantage-card > img {
    height: 300px;
  }

  .advantage-limit > img {
    height: 280px;
  }

  .steps-section .section-lead {
    margin-bottom: 36px;
  }

  .step-card {
    min-height: 300px;
    padding: 28px;
  }

  .step-card h3 {
    font-size: 23px;
  }

  .terms-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 60px;
    align-items: start;
  }

  .terms-copy {
    position: sticky;
    top: 24px;
  }

  .terms-copy > p {
    font-size: 17px;
  }

  .terms-list {
    margin-bottom: 0;
  }

  .terms-layout > .offer-button {
    grid-column: 2;
  }

  .faq-layout {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 60px;
  }

  .faq-list {
    margin-top: 0;
  }

  .faq-list summary {
    min-height: 92px;
    font-size: 19px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1.2fr 1fr;
    align-items: start;
    column-gap: 30px;
  }

  .footer-inner .offer-button {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }
}

@media (min-width: 960px) {
  .header-inner nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 26px;
  }

  .header-inner nav a {
    color: #36373a;
    font-size: 14px;
    font-weight: 640;
  }

  .header-button {
    margin-left: 12px;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-inner {
    width: min(100% - 48px, 1180px);
    max-width: none;
    min-height: 510px;
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
    align-items: center;
    gap: 20px;
  }

  .hero-image {
    grid-column: 2;
    padding: 0;
  }

  .hero-image img {
    aspect-ratio: 1116 / 912;
    max-height: 500px;
    object-position: center bottom;
  }

  .hero-copy {
    grid-column: 1;
    grid-row: 1;
    padding: 42px 0 48px;
    text-align: left;
  }

  .hero h1 {
    font-size: clamp(48px, 5vw, 66px);
    line-height: 0.98;
  }

  .hero-subtitle {
    margin: 22px 0 28px;
    font-size: 23px;
  }

  .hero-disclaimer {
    margin-inline: 0;
  }

  .benefits-panel {
    margin-top: -28px;
    padding-top: 28px;
    border-radius: 34px 34px 0 0;
  }

  .benefit-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .benefit-row {
    min-height: 170px;
    padding: 24px;
    border: none;
    border-radius: 24px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .benefit-row img {
    margin-bottom: 18px;
  }

  .delivery-note {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .intro-section {
    padding-top: 70px;
    padding-bottom: 100px;
  }

  .intro-card {
    min-height: 460px;
  }

  .intro-card > img {
    min-height: 460px;
  }

  .intro-copy {
    padding: 54px;
  }

  .intro-copy h2 {
    font-size: 43px;
  }

  .intro-copy p {
    font-size: 17px;
  }

  .advantage-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .advantage-grace {
    grid-column: 1 / -1;
  }

  .cta-card {
    min-height: 520px;
    padding: 58px 48% 50px 54px;
  }

  .cta-card h2 {
    font-size: 50px;
  }

  .cta-card p {
    font-size: 17px;
  }

  .cta-card > img {
    width: 420px;
    height: 450px;
    right: 3%;
    bottom: -88px;
  }
}

@media (min-width: 1200px) {
  .hero-inner {
    min-height: 550px;
  }

  .hero h1 {
    font-size: 72px;
  }

  .hero-image img {
    max-height: 540px;
  }

  .section-title {
    font-size: 64px;
  }

  .cashback-card {
    min-height: 350px;
  }

  .cashback-card img {
    height: 150px;
  }

  .advantage-card h3 {
    font-size: 40px;
  }
}

@media (max-width: 359px) {
  .header-inner {
    width: min(100% - 18px, 1180px);
  }

  .brand span {
    display: none;
  }

  .hero-copy {
    padding-inline: 14px;
  }

  .hero h1 {
    font-size: 29px;
  }

  .mobile-shell {
    width: min(100% - 24px, 1180px);
  }

  .cashback-hero {
    width: calc(100% + 24px);
    margin-inline: -12px;
  }

  .intro-copy,
  .advantage-card > div,
  .cta-card {
    padding-inline: 16px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
