:root {
  --ink: #13242e;
  --body: #46545c;
  --red: #d7192d;
  --red-dark: #b80f22;
  --green: #2b8f83;
  --line: #dfe3e5;
  --muted: #f5f6f7;
  --warm: #fbf8f2;
  --shadow: 0 5px 18px rgba(23, 37, 45, 0.08);
  --content-width: 1140px;
  --cta-height: 84px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  padding-bottom: calc(var(--cta-height) + 18px);
  overflow-x: hidden;
  background: #fff;
  color: var(--body);
}

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

h1,
h2,
p {
  margin-top: 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 64%) minmax(340px, 36%);
  min-height: calc(100svh - var(--cta-height));
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.hero__content {
  width: min(100%, 760px);
  align-self: center;
  justify-self: end;
  padding: 72px 54px 68px 40px;
}

.eyebrow {
  width: 100%;
  margin-bottom: 18px;
  padding: 7px 13px;
  border: 1px solid rgba(215, 25, 45, 0.24);
  border-radius: 999px;
  color: var(--red-dark);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
}

h1 {
  max-width: 650px;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 780;
  letter-spacing: -0.035em;
  line-height: 1.03;
}

.hero__description {
  max-width: 670px;
  margin-bottom: 21px;
  color: var(--body);
  font-size: 19px;
  line-height: 1.48;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 15px;
}

.stat-card {
  min-height: 80px;
  padding: 14px 15px 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  box-shadow: var(--shadow);
}

.stat-card__value {
  margin-bottom: 4px;
  color: var(--red-dark);
  font-size: 20px;
  font-weight: 780;
  line-height: 1.15;
}

.stat-card__label {
  margin: 0;
  color: #59646a;
  font-size: 12px;
  line-height: 1.35;
}

.hero__benefits {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__benefits li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: start;
  gap: 8px;
  color: #435158;
  font-size: 14px;
  line-height: 1.38;
}

.check-icon {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.hero__visual {
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  min-height: calc(100svh - var(--cta-height));
  object-fit: cover;
  object-position: 51% 55%;
}

.section-shell {
  width: min(var(--content-width), calc(100% - 40px));
  margin-inline: auto;
}

.earnings {
  padding-top: 27px;
}

.earnings h2 {
  margin-bottom: 13px;
  color: var(--ink);
  font-size: 28px;
  font-weight: 780;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

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

.earning-card {
  display: flex;
  min-height: 59px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--muted);
}

.earning-card__label {
  color: #69747a;
  font-size: 14px;
  line-height: 1.3;
}

.earning-card__value {
  flex: 0 0 auto;
  color: var(--red-dark);
  font-size: 20px;
  font-weight: 780;
  line-height: 1;
}

.steps {
  padding-top: 17px;
  padding-bottom: 40px;
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-card {
  min-height: 112px;
  padding: 14px 15px;
  border: 1px solid #e8dfcf;
  border-radius: 8px;
  background: var(--warm);
}

.step-card__number {
  display: grid;
  width: 29px;
  height: 29px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 50%;
  background: #e51e35;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.step-card__text {
  margin: 0;
  color: #566168;
  font-size: 14px;
  line-height: 1.35;
}

.fixed-cta {
  position: fixed;
  z-index: 20;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  min-height: var(--cta-height);
  place-items: center;
  padding: 11px 18px;
  border-top: 1px solid rgba(23, 37, 45, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -7px 24px rgba(20, 32, 40, 0.08);
  backdrop-filter: blur(8px);
}

.fixed-cta__button {
  display: inline-grid;
  width: min(390px, 100%);
  min-height: 57px;
  place-items: center;
  border-radius: 7px;
  background: var(--red);
  box-shadow: 0 8px 21px rgba(215, 25, 45, 0.25);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: background-color 140ms ease, transform 140ms ease;
}

.fixed-cta__button:hover {
  background: var(--red-dark);
}

.fixed-cta__button:active {
  transform: translateY(1px);
}

.fixed-cta__button:focus-visible {
  outline: 3px solid rgba(215, 25, 45, 0.28);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: minmax(0, 58%) minmax(300px, 42%);
  }

  .hero__content {
    padding-inline: 28px;
  }

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

@media (max-width: 700px) {
  :root {
    --cta-height: 92px;
  }

  body {
    padding-bottom: calc(var(--cta-height) + 10px);
  }

  .hero {
    display: flex;
    min-height: 0;
    flex-direction: column;
    border-bottom: 0;
  }

  .hero__content {
    display: contents;
  }

  .eyebrow,
  .hero h1,
  .hero__description,
  .hero__stats {
    margin-right: 14px;
    margin-left: 14px;
  }

  .eyebrow {
    order: 1;
    width: auto;
    margin-top: 21px;
    margin-bottom: 12px;
    padding: 7px 9px;
    font-size: 12px;
    white-space: nowrap;
  }

  .hero h1 {
    order: 2;
    margin-bottom: 11px;
    font-size: clamp(31px, 8.8vw, 38px);
    letter-spacing: -0.032em;
    line-height: 1.05;
  }

  .hero__description {
    order: 3;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.45;
  }

  .hero__stats {
    order: 4;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 0;
  }

  .stat-card {
    min-height: 74px;
    padding: 11px 12px 10px;
  }

  .stat-card__value {
    font-size: 19px;
  }

  .hero__visual {
    position: relative;
    order: 5;
    height: 415px;
    min-height: 415px;
    margin-top: 8px;
  }

  .hero__visual::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.92) 0, rgba(255, 255, 255, 0.52) 27%, transparent 58%);
    content: "";
    pointer-events: none;
  }

  .hero__visual img {
    height: 100%;
    min-height: 0;
    object-position: 51% 62%;
  }

  .hero__benefits {
    position: absolute;
    z-index: 2;
    top: 389px;
    right: 14px;
    left: 14px;
    order: 6;
    gap: 5px;
  }

  .hero__benefits li {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 7px;
    color: #3d4a51;
    font-size: 14px;
    line-height: 1.35;
  }

  .section-shell {
    width: calc(100% - 28px);
  }

  .earnings {
    padding-top: 26px;
  }

  .earnings h2 {
    max-width: 330px;
    margin-bottom: 14px;
    font-size: 26px;
    line-height: 1.08;
  }

  .earnings__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .earning-card {
    min-height: 56px;
    padding: 12px 13px;
  }

  .steps {
    padding-top: 17px;
    padding-bottom: 28px;
  }

  .steps__grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .step-card {
    min-height: 108px;
    padding: 14px 13px;
  }

  .fixed-cta {
    padding: 12px 15px;
  }

  .fixed-cta__button {
    width: 100%;
    min-height: 53px;
    font-size: 18px;
  }
}

@media (max-width: 350px) {
  .eyebrow {
    font-size: 11px;
    white-space: normal;
  }

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

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

  .fixed-cta__button {
    transition: none;
  }
}
