:root {
  --ink: #15201d;
  --muted: #5f6f68;
  --line: #dfe7e2;
  --surface: #ffffff;
  --soft: #f4f8f6;
  --accent: #0a7a5c;
  --accent-strong: #075440;
  --warn: #b84719;
  --shadow: 0 22px 60px rgba(22, 41, 36, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background:
    linear-gradient(180deg, #ffffff 0%, #f2f6f4 42%, #ffffff 100%);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 70px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border-radius: 8px;
  font-size: 14px;
}

.header-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.header-nav a:hover,
.site-footer a:hover {
  color: var(--accent-strong);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  overflow: hidden;
}

.hero-media,
.hero-overlay,
.hero-inner {
  grid-area: 1 / 1;
}

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1642790106117-e829e14a795f?auto=format&fit=crop&w=1800&q=80");
  background-position: center 42%;
  background-size: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 16, 14, 0.94), rgba(3, 16, 14, 0.76) 52%, rgba(3, 16, 14, 0.44)),
    linear-gradient(0deg, rgba(3, 16, 14, 0.52), rgba(3, 16, 14, 0.05) 42%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 66px 0;
}

.win-strip {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 22px max(18px, calc((100% - 1180px) / 2));
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.win-feed {
  position: relative;
  z-index: 4;
  width: 100%;
  min-height: 106px;
}

.win-strip-copy {
  display: grid;
  gap: 4px;
}

.win-strip-copy strong {
  color: var(--ink);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.05;
}

.win-strip-copy span {
  color: var(--muted);
  font-size: 17px;
}

.live-gains {
  position: relative;
  padding: 0 max(18px, calc((100% - 1180px) / 2)) clamp(48px, 7vw, 74px);
  background: #ffffff;
}

.live-signup {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(420px, calc(100% - 32px));
  min-height: 72px;
  align-items: center;
  justify-content: center;
  margin: 0 auto -38px;
  color: #211a55;
  background: #ffe238;
  box-shadow: 0 18px 34px rgba(48, 39, 93, 0.16);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.live-gains-card {
  padding: clamp(72px, 8vw, 96px) clamp(18px, 5vw, 78px) clamp(36px, 6vw, 58px);
  border: 1px solid #e8e8f0;
  background: #fff;
  box-shadow: 0 18px 60px rgba(36, 31, 84, 0.08);
}

.live-gains-card h2 {
  margin-bottom: 30px;
  color: #2f257d;
  text-align: center;
  font-size: clamp(38px, 5vw, 54px);
}

.live-table-wrap {
  overflow-x: auto;
}

.live-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: #3d3d42;
}

.live-table th,
.live-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #e7e7ef;
  text-align: left;
}

.live-table th {
  color: #2b275f;
  background: #f4f4f8;
  font-weight: 900;
}

.live-table tbody tr:nth-child(even) {
  background: #f8f8fb;
}

.live-table tbody {
  transition: opacity 0.42s ease, transform 0.42s ease;
}

.live-table tbody.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.live-table tbody tr {
  animation: tableFade 0.56s ease both;
}

.live-table td strong {
  font-weight: 900;
}

.result-check {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: #fff;
  background: #f3d64a;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
}

@keyframes tableFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.win-item {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border-left: 4px solid #6a4cff;
  border-radius: 0 8px 8px 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.96);
}

.win-item.is-active {
  opacity: 1;
  pointer-events: auto;
  animation: winPop 2.3s ease-in-out both;
}

.win-avatar {
  position: relative;
  overflow: visible;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 3px solid #f5d13d;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(245, 209, 61, 0.18);
  background: #edf2f0;
}

.win-avatar::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  margin: 46px 0 0 48px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #0abf70;
}

.win-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.win-item strong,
.win-item span,
.win-item b {
  display: block;
}

.win-item strong {
  color: #151b28;
  font-size: 15px;
}

.win-item span {
  margin-top: 3px;
  color: #1b2430;
  font-size: 14px;
}

.win-item b {
  margin-top: 2px;
  color: #079b5f;
  font-size: 24px;
  line-height: 1;
}

@keyframes winPop {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  12% {
    opacity: 1;
    transform: translateY(-5px) scale(1.02);
  }

  20%,
  82% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  92% {
    opacity: 1;
    transform: translateY(-3px) scale(1.01);
  }

  100% {
    opacity: 0;
    transform: translateY(14px) scale(0.97);
  }
}

.hero-copy {
  color: #fff;
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 13px;
}

.hero .eyebrow {
  color: #8ef0cd;
}

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

h1 {
  margin-bottom: 22px;
  max-width: 860px;
  font-size: clamp(46px, 7.2vw, 88px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-title span {
  display: block;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
  letter-spacing: 0;
}

.hero-text {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.market-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(620px, 100%);
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.market-strip div {
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.market-strip div:last-child {
  border-right: 0;
}

.market-strip span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  text-transform: uppercase;
}

.market-strip strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 22px;
}

.lead-panel {
  width: 100%;
  padding: 28px;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lead-panel h2 {
  margin-bottom: 8px;
  font-size: 28px;
}

.lead-panel p {
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 14px;
}

.site-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lead-form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
  font-size: 14px;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  background: #fff;
}

.lead-form input:focus,
.lead-form select:focus {
  outline: 3px solid rgba(10, 122, 92, 0.18);
  border-color: var(--accent);
}

.check-row {
  grid-template-columns: 18px 1fr;
  align-items: start;
  color: var(--muted);
  font-weight: 400;
}

.check-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.lead-form button,
.cta-link {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  padding: 0 22px;
  color: #fff;
  background: var(--accent);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.lead-form button:hover,
.cta-link:hover {
  background: var(--accent-strong);
}

.form-note {
  margin: 0;
  color: var(--warn);
  font-size: 13px;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.trust-band div {
  min-height: 94px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 20px clamp(18px, 4vw, 40px);
  border-right: 1px solid var(--line);
}

.trust-band div:last-child {
  border-right: 0;
}

.trust-band strong {
  color: var(--accent-strong);
  font-size: 22px;
}

.trust-band span {
  color: var(--muted);
}

.promo-gallery {
  width: 100%;
  margin: 0;
  padding: clamp(42px, 7vw, 76px) max(18px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 1.25fr 0.875fr 0.875fr;
  gap: 18px;
  background:
    linear-gradient(180deg, #07120f 0%, #10231d 100%);
}

.promo-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 8px;
  background: #07120f;
  box-shadow: var(--shadow);
}

.promo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.promo-card:hover img {
  transform: scale(1.035);
  opacity: 0.92;
}

.promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 16, 14, 0.04), rgba(3, 16, 14, 0.86));
}

.profit-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #07120f;
  background: linear-gradient(135deg, #f9d46a, #8ef0cd);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.32);
  font-size: 28px;
  font-weight: 900;
}

.profit-badge.small {
  min-height: 44px;
  padding: 0 14px;
  font-size: 21px;
}

.promo-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 24px;
  color: #fff;
}

.promo-card span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 9px;
  border-radius: 6px;
  color: #07120f;
  background: #8ef0cd;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.promo-card h2,
.promo-card h3 {
  margin-bottom: 10px;
}

.promo-card h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.05;
}

.promo-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.dark-card::after {
  background: linear-gradient(180deg, rgba(3, 16, 14, 0.18), rgba(3, 16, 14, 0.9));
}

.content-section,
.steps-section,
.faq-section,
.risk-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 9vw, 96px) 0;
}

.intro-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.intro-section {
  width: 100%;
  padding-left: max(18px, calc((100% - 1180px) / 2));
  padding-right: max(18px, calc((100% - 1180px) / 2));
  background: #f4f8f6;
}

.wealth-banner {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  min-height: 420px;
  display: grid;
  align-items: center;
  margin: clamp(54px, 8vw, 88px) auto;
  overflow: hidden;
  border-radius: 8px;
  background: #081511;
  box-shadow: var(--shadow);
}

.wealth-banner img,
.wealth-banner::after,
.banner-profit,
.wealth-copy {
  grid-area: 1 / 1;
}

.wealth-banner img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  opacity: 0.7;
}

.wealth-banner::after {
  content: "";
  z-index: 1;
  align-self: stretch;
  background: linear-gradient(90deg, rgba(3, 16, 14, 0.92), rgba(3, 16, 14, 0.68) 48%, rgba(3, 16, 14, 0.16));
}

.banner-profit {
  position: relative;
  z-index: 3;
  align-self: start;
  justify-self: end;
  margin: 28px;
  padding: 14px 18px;
  color: #07120f;
  background: linear-gradient(135deg, #f9d46a, #8ef0cd);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
}

.wealth-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: clamp(28px, 5vw, 56px);
  color: #fff;
}

.wealth-copy .eyebrow {
  color: #8ef0cd;
}

.wealth-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.section-copy p:last-child {
  color: var(--muted);
  font-size: 17px;
}

.centered {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

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

.info-grid article,
.steps article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.info-grid p,
.steps p,
.faq-list p {
  color: var(--muted);
}

.icon,
.steps span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 8px;
  color: #fff;
  background: var(--accent);
  font-weight: 800;
}

.steps-section {
  width: 100%;
  padding-left: max(18px, calc((100% - 1180px) / 2));
  padding-right: max(18px, calc((100% - 1180px) / 2));
  color: #fff;
  border-top: 0;
  border-bottom: 0;
  background:
    linear-gradient(135deg, rgba(3, 16, 14, 0.96), rgba(14, 55, 43, 0.96)),
    url("https://images.unsplash.com/photo-1640340434855-6084b1f4901c?auto=format&fit=crop&w=1700&q=60");
  background-position: center;
  background-size: cover;
}

.steps-section .cta-link {
  margin: 32px auto 0;
}

.steps-section .eyebrow {
  color: #8ef0cd;
}

.steps-section .section-copy p,
.steps-section .steps p {
  color: rgba(255, 255, 255, 0.76);
}

.steps-section .steps article {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
}

.faq-section {
  width: 100%;
  padding-left: max(18px, calc((100% - 1180px) / 2));
  padding-right: max(18px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 5vw, 70px);
  background: #ffffff;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

summary {
  padding: 18px 20px;
  font-weight: 800;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.risk-section {
  color: #21332e;
  background:
    linear-gradient(180deg, rgba(244, 248, 246, 0.96), rgba(230, 239, 235, 0.96)),
    url("https://images.unsplash.com/photo-1579621970795-87facc2f976d?auto=format&fit=crop&w=1700&q=55");
  background-position: center;
  background-size: cover;
  width: 100%;
  padding-left: max(18px, calc((100% - 1180px) / 2));
  padding-right: max(18px, calc((100% - 1180px) / 2));
}

.risk-section h2,
.risk-section p {
  max-width: 1000px;
}

.legal-info,
.about-info,
.privacy-info {
  width: 100%;
  margin: 0 auto;
  padding-top: clamp(54px, 8vw, 82px);
  padding-bottom: clamp(54px, 8vw, 82px);
  padding-left: max(18px, calc((100% - 1180px) / 2));
  padding-right: max(18px, calc((100% - 1180px) / 2));
  border-top: 1px solid var(--line);
}

.legal-info {
  background: #ffffff;
}

.about-info {
  background: #f4f8f6;
}

.privacy-info {
  background: #ffffff;
}

.legal-info,
.about-info {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.legal-text {
  display: grid;
  gap: 14px;
  color: var(--muted);
  font-size: 16px;
}

.legal-text p {
  margin: 0;
}

.about-info-grid,
.privacy-info-grid {
  display: grid;
  gap: 16px;
}

.about-info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.privacy-info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.about-info-grid article,
.privacy-info-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.about-info-grid p,
.privacy-info-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.privacy-heading {
  max-width: 760px;
}

.site-footer {
  display: grid;
  gap: 18px;
  padding: 34px clamp(18px, 5vw, 70px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-brand {
  color: var(--ink);
}

.site-footer p {
  margin: 0;
  font-size: 14px;
}

.is-invalid {
  border-color: var(--warn) !important;
}

@media (max-width: 920px) {
  .hero-inner,
  .intro-section,
  .faq-section,
  .legal-info,
  .about-info {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    gap: 34px;
    padding: 56px 0;
  }

  .lead-panel {
    max-width: 620px;
  }

  .info-grid,
  .steps,
  .trust-band,
  .promo-gallery,
  .about-info-grid,
  .privacy-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wide-card {
    grid-column: 1 / -1;
  }

  .promo-card {
    min-height: 330px;
  }

  .win-strip {
    grid-template-columns: 1fr;
  }

  .win-feed {
    width: min(420px, 100%);
  }

  .live-gains {
    padding-left: 14px;
    padding-right: 14px;
  }

  .info-grid article,
  .steps article {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 14px 18px;
  }

  .header-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 12px;
  }

  .header-nav a {
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
  }

  .brand {
    max-width: 100%;
  }

  h1 {
    font-size: 36px;
    line-height: 1.04;
  }

  h2 {
    font-size: 28px;
  }

  .hero-inner,
  .content-section,
  .steps-section,
  .faq-section,
  .promo-gallery,
  .wealth-banner,
  .legal-info,
  .about-info,
  .privacy-info {
    width: min(100% - 28px, 1180px);
  }

  .hero-inner {
    padding: 38px 0 22px;
  }

  .hero-text,
  .section-copy p:last-child {
    font-size: 16px;
  }

  .market-strip {
    margin-top: 24px;
  }

  .market-strip div {
    padding: 14px 16px;
  }

  .market-strip strong {
    font-size: 20px;
  }

  .market-strip,
  .info-grid,
  .steps,
  .trust-band,
  .promo-gallery,
  .about-info-grid,
  .privacy-info-grid {
    grid-template-columns: 1fr;
  }

  .promo-card {
    min-height: 300px;
  }

  .promo-card div {
    padding: 20px;
  }

  .profit-badge {
    top: 14px;
    right: 14px;
    min-height: 44px;
    font-size: 22px;
  }

  .wealth-banner,
  .wealth-banner img {
    min-height: 360px;
  }

  .wealth-banner::after {
    background: linear-gradient(180deg, rgba(3, 16, 14, 0.9), rgba(3, 16, 14, 0.68));
  }

  .wealth-copy {
    padding: 24px;
  }

  .live-signup {
    min-height: 62px;
    margin-bottom: -32px;
  }

  .live-gains-card {
    padding: 62px 14px 24px;
  }

  .live-gains-card h2 {
    margin-bottom: 20px;
    font-size: 34px;
  }

  .banner-profit {
    justify-self: start;
    margin: 18px;
    font-size: 22px;
  }

  .market-strip div,
  .trust-band div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .trust-band div {
    border-bottom-color: var(--line);
  }

  .market-strip div:last-child,
  .trust-band div:last-child {
    border-bottom: 0;
  }

  .lead-panel {
    padding: 20px;
    box-shadow: 0 16px 40px rgba(22, 41, 36, 0.16);
  }

  .win-strip {
    padding: 18px 14px;
  }

  .win-feed {
    width: min(100%, 420px);
    min-height: 100px;
  }

  .win-item {
    grid-template-columns: 58px 1fr;
    gap: 14px;
    padding: 14px 16px;
  }

  .win-avatar {
    width: 56px;
    height: 56px;
  }

  .win-item b {
    font-size: 22px;
  }

  .lead-panel h2 {
    font-size: 25px;
  }

  .info-grid article,
  .steps article {
    padding: 20px;
  }

  .icon,
  .steps span {
    margin-bottom: 18px;
  }

  .risk-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .legal-info,
  .about-info,
  .privacy-info {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .intro-section,
  .promo-gallery,
  .steps-section,
  .faq-section,
  .legal-info,
  .about-info,
  .privacy-info {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  .about-info-grid article,
  .privacy-info-grid article {
    padding: 18px;
  }

  .site-footer {
    padding: 26px 18px;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 31px;
  }

  .lead-panel,
  .info-grid article,
  .steps article,
  .promo-card div {
    padding: 18px;
  }

  .profit-badge {
    font-size: 19px;
  }

  .lead-form button,
  .cta-link {
    width: 100%;
  }
}
