:root {
  --bg: #0b0d10;
  --bg-deep: #07090c;
  --surface: rgba(22, 26, 32, 0.76);
  --surface-strong: rgba(24, 28, 35, 0.92);
  --line: rgba(255, 255, 255, 0.1);
  --line-warm: rgba(255, 132, 0, 0.42);
  --text: #f7f7f5;
  --muted: rgba(247, 247, 245, 0.66);
  --muted-2: rgba(247, 247, 245, 0.48);
  --green-dark: rgba(29, 250, 0, 0.753);
  --orange: #ff8a00;
  --orange-dark: #c85f00;
  --orange-soft: rgba(255, 138, 0, 0.14);
  --orange-glow: rgba(255, 138, 0, 0.48);
  --green: #6ee7a4;
  --red: #ff5a5f;
  --container: 1228px;
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    Inter,
    Manrope,
    "Segoe UI Variable",
    "Segoe UI",
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  /* background:
        radial-gradient(circle at 72% 18%, rgba(255, 138, 0, 0.16), transparent 27%),
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.026), transparent 34%),
        linear-gradient(180deg, #090c10 0%, #080b0f 54%, #06080b 100%); */
  background: #0a0a0c;
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 72%);
  opacity: 0.5;
}

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

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

.page {
  overflow: hidden;
  position: relative;
}

.wrap {
  width: min(var(--container), calc(100% - 56px));
  margin: 0 auto;
}

.header {
  position: relative;
  z-index: 10;
  padding: 18px 0 8px;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}

.brand {
  font-size: 26px;
  font-weight: 760;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand span {
  color: var(--orange);
}

.tagline {
  color: rgba(247, 247, 245, 0.58);
  font-size: 14px;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 33px;
  color: rgba(247, 247, 245, 0.86);
  font-size: 15px;
  font-weight: 690;
}

.nav-link {
  transition: color 160ms ease;
}

.nav-link:hover {
  color: var(--orange);
}

.lang {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 53px;
  padding: 0 27px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 16px;
  font-weight: 720;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fffaf1;
  background:
    radial-gradient(
      circle at 22% 18%,
      rgba(255, 230, 150, 0.36),
      transparent 24%
    ),
    linear-gradient(135deg, #ffb629 0%, #ff8a00 46%, #f07100 100%);
  box-shadow:
    0 18px 44px rgba(255, 138, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.btn-secondary {
  color: var(--text);
  background: rgba(8, 10, 13, 0.48);
  border-color: rgba(255, 138, 0, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.circle-icon {
  width: 26px;
  height: 26px;
  border: 2px solid currentColor;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-size: 11px;
  line-height: 1;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 602px;
  padding: 24px 0 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: start;
  gap: 22px;
}

.hero-copy {
  padding-top: 13px;
  position: relative;
  z-index: 3;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  color: #ff9b18;
  background: rgba(255, 138, 0, 0.12);
  border: 1px solid rgba(255, 138, 0, 0.45);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.eyebrow-icon {
  width: 16px;
  height: 16px;
  color: var(--orange);
}

.hero-title {
  max-width: 520px;
  margin: 28px 0 0;
  font-size: clamp(54px, 4.15vw, 64px);
  line-height: 1.08;
  font-weight: 760;
  letter-spacing: 0;
}

.hero-title span {
  display: block;
  color: var(--orange);
}

.hero-text {
  max-width: 500px;
  margin: 19px 0 0;
  color: rgba(247, 247, 245, 0.78);
  font-size: 18px;
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.tester-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 23px;
  color: rgba(247, 247, 245, 0.68);
  font-size: 14px;
  line-height: 1.35;
}

.avatars {
  display: flex;
  padding-left: 12px;
}

.avatar {
  width: 38px;
  height: 38px;
  margin-left: -12px;
  border-radius: 999px;
  border: 2px solid #101318;
  background-color: #181b20;
  background-image: var(--avatar-image);
  background-position: center;
  background-size: cover;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
}

.avatar:nth-child(1) {
  --avatar-image: url("../assets/tester-avatar-1.jpg");
}

.avatar:nth-child(2) {
  --avatar-image: url("../assets/tester-avatar-2.jpg");
}

.avatar:nth-child(3) {
  --avatar-image: url("../assets/tester-avatar-3.jpg");
}

.hero-visual {
  position: relative;
  min-height: 612px;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  top: -16px;
  right: -108px;
  z-index: 1;
  width: min(790px, 116%);
  aspect-ratio: 850 / 785;
  background: url("../assets/hero-phone-orbit.png") center / contain no-repeat;
  filter: drop-shadow(0 42px 92px rgba(0, 0, 0, 0.5));
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 9%,
    #000 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 9%,
    #000 94%,
    transparent 100%
  );
  pointer-events: none;
}

.hero-visual > .orbit,
.hero-visual > .phone {
  display: none;
}

.orbit {
  position: absolute;
  width: 610px;
  height: 610px;
  top: 30px;
  left: 13px;
  border: 2px solid rgba(245, 158, 11, 0.7);
  border-radius: 999px;
  box-shadow:
    0 0 34px rgba(245, 158, 11, 0.42),
    0 0 115px rgba(245, 158, 11, 0.18),
    inset 0 0 70px rgba(245, 158, 11, 0.09);
  opacity: 0.92;
}

.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 190, 80, 0.9);
  box-shadow: 0 0 18px rgba(245, 158, 11, 0.9);
}

.orbit::before {
  width: 5px;
  height: 5px;
  top: 92px;
  left: -2px;
}

.orbit::after {
  width: 4px;
  height: 4px;
  right: 34px;
  bottom: 148px;
}

.phone {
  position: absolute;
  top: -24px;
  right: 46px;
  width: 392px;
  height: 704px;
  border-radius: 58px;
  background: linear-gradient(
    90deg,
    #080a0d 0%,
    #2a241c 9%,
    #080a0d 15%,
    #090b0e 85%,
    #554632 96%,
    #0b0d10 100%
  );
  border: 2px solid rgba(255, 214, 148, 0.42);
  box-shadow:
    0 42px 85px rgba(0, 0, 0, 0.54),
    inset 0 0 0 8px #080a0d,
    inset 0 0 0 10px rgba(255, 255, 255, 0.05);
  overflow: hidden;
  z-index: 2;
}

.phone::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  width: 146px;
  height: 34px;
  transform: translateX(-50%);
  border-radius: 0 0 22px 22px;
  background: #050607;
  z-index: 6;
}

.screen {
  position: absolute;
  inset: 18px 16px;
  border-radius: 46px;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 6%, rgba(76, 142, 203, 0.5), transparent 28%),
    radial-gradient(
      circle at 78% 44%,
      rgba(21, 104, 125, 0.38),
      transparent 28%
    ),
    radial-gradient(circle at 24% 74%, rgba(21, 54, 70, 0.7), transparent 34%),
    linear-gradient(180deg, #172333 0%, #0f1820 49%, #0b1117 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    transparent 34%
  );
}

.lock-time {
  position: relative;
  z-index: 1;
  padding: 72px 32px 0;
  font-size: 54px;
  font-weight: 300;
  line-height: 1;
  color: rgba(255, 255, 255, 0.88);
}

.lock-date {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}

.bell {
  position: absolute;
  top: 118px;
  right: 32px;
  z-index: 2;
  width: 24px;
  height: 24px;
  opacity: 0.82;
}

.phone-notifications {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 17px;
  margin: 38px 23px 0;
}

.notification {
  border-radius: 21px;
  background: rgba(15, 16, 18, 0.91);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.notification-small {
  min-height: 82px;
  padding: 16px;
}

.notification-big {
  min-height: 214px;
  padding: 18px;
}

.notification-top {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 560;
  line-height: 1.35;
}

.app-dot {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(135deg, #e6f1ff 0%, #afccff 100%);
  display: grid;
  place-items: center;
  color: #0750a4;
  font-size: 17px;
  font-weight: 580;
}

.chevron {
  margin-left: auto;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
}

.small-line {
  margin: 6px 0 0 37px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.phrase {
  margin: 15px 0 13px 39px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  font-weight: 560;
  line-height: 1.24;
}

.translation {
  margin: 0 0 17px 39px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.translation strong {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2px;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 560;
}

.quick-actions span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  white-space: nowrap;
}

.quick-actions .ok {
  color: #b8f8ce;
}

.quick-actions .repeat {
  color: #ffd18b;
}

.quick-actions .no {
  color: #ff9a9f;
}

.benefit-band {
  position: relative;
  z-index: 4;
  margin-top: -48px;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  min-width: 0;
  min-height: 136px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 15px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 138, 0, 0.06), transparent 28%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.022)
    ),
    rgba(18, 22, 27, 0.78);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.benefit {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 22px;
  min-width: 0;
  padding: 24px 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.065);
}

.benefit:last-child {
  border-right: 0;
}

.benefit > div {
  min-width: 0;
}

.benefit-icon,
.step-icon,
.audience-icon {
  display: grid;
  place-items: center;
  color: var(--orange);
  background:
    radial-gradient(
      circle at 48% 45%,
      rgba(255, 138, 0, 0.26),
      transparent 56%
    ),
    rgba(255, 138, 0, 0.055);
  border: 1px solid rgba(255, 138, 0, 0.14);
  box-shadow:
    0 16px 44px rgba(255, 138, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
}

.benefit svg,
.step-icon svg,
.audience-icon svg,
.eyebrow svg,
.bell svg {
  width: 29px;
  height: 29px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit h2 {
  margin: 0 0 9px;
  font-size: 22px;
  line-height: 1.08;
  font-weight: 760;
  letter-spacing: 0;
}

.benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.42;
  overflow-wrap: anywhere;
}

.section {
  position: relative;
  z-index: 2;
  padding: 28px 0 0;
}

.post-benefits {
  padding-top: 18px;
}

.post-benefits-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: start;
  gap: 44px;
}

.section-title {
  margin: 0;
  text-align: center;
  font-size: 30px;
  line-height: 1.12;
  font-weight: 760;
  letter-spacing: 0;
}

.section-lead {
  max-width: 620px;
  margin: 15px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 17px;
  line-height: 1.56;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  --step-gap: 34px;
  gap: var(--step-gap);
  margin-top: 20px;
  padding: 0 10px;
}

.step {
  position: relative;
  text-align: center;
  min-height: 172px;
}

.step:nth-child(1)::after,
.step:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 31px;
  left: calc(50% + 42px);
  right: calc(var(--step-gap) * -1);
  z-index: 0;
  border-top: 2px dashed rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.step-number {
  position: absolute;
  top: 7px;
  left: 0;
  z-index: 1;
  width: 45px;
  height: 45px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.045);
  color: var(--orange);
  font-size: 19px;
  font-weight: 760;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.step-icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 15px;
}

.step h3 {
  max-width: 230px;
  margin: 0 auto 12px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 760;
  letter-spacing: 0;
}

.step p {
  max-width: 220px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.audience-panel {
  margin-top: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.audience-card {
  min-height: 116px;
  padding: 17px 14px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.audience-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  margin-bottom: 12px;
}

.audience-icon svg {
  width: 21px;
  height: 21px;
}

.audience-card h3 {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 760;
  letter-spacing: 0;
}

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

.signup-section {
  padding: 58px 0 0;
}

.signup {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
  padding: 36px;
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: 16px;
  background:
    radial-gradient(
      circle at 82% 15%,
      rgba(245, 158, 11, 0.14),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.052),
      rgba(255, 255, 255, 0.022)
    ),
    rgba(16, 20, 25, 0.78);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.signup h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: 0;
}

.signup p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.form {
  display: grid;
  gap: 13px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.field,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  outline: none;
  background: rgba(7, 9, 12, 0.62);
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 108px;
  resize: vertical;
}

.field::placeholder,
textarea::placeholder {
  color: rgba(247, 247, 245, 0.42);
}

.field:focus,
textarea:focus {
  border-color: rgba(245, 158, 11, 0.55);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.09);
}

.form-note {
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.45;
}

.form-note-success {
  color: var(--green);
  font-size: 17px;
  line-height: 1.45;
  margin-top: 50px;
}

/* .signup-formnote {
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.45;
} */
.signup-formnote-success {
  display: none;
  color: var(--green);
  font-size: 17px;
  line-height: 1.45;
  margin-top: 50px;
}

.faq-section {
  padding: 58px 0 0;
}

.faq {
  max-width: 860px;
  margin: 26px auto 0;
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  list-style: none;
  font-weight: 560;
  color: rgba(247, 247, 245, 0.94);
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.footer {
  margin-top: 58px;
  padding: 28px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  color: var(--muted-2);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 1120px) {
  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .hero-grid,
  .post-benefits-grid,
  .signup {
    grid-template-columns: 1fr;
  }

  .post-benefits-grid {
    gap: 30px;
  }

  .hero-copy {
    padding-top: 0;
  }

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

  .hero-visual {
    min-height: 620px;
  }

  .hero-visual::before {
    left: 50%;
    right: auto;
    width: min(820px, 108vw);
    transform: translateX(-50%);
  }

  .benefit-band {
    margin-top: -18px;
  }

  .benefits,
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit:nth-child(2) {
    border-right: 0;
  }

  .benefit:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.065);
  }

  .steps {
    --step-gap: 28px;
    padding: 0;
  }
}

@media (max-width: 760px) {
  .wrap {
    width: min(var(--container), calc(100% - 28px));
  }

  .header {
    padding: 18px 0 0;
  }

  .header-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .brand-row {
    justify-content: space-between;
  }

  .tagline {
    display: none;
  }

  .nav {
    display: flex;
    justify-content: flex-start;
    gap: clamp(13px, 4vw, 18px);
    overflow: visible;
    padding-bottom: 0;
    font-size: 13px;
    white-space: nowrap;
  }

  .nav .btn {
    flex: 0 0 auto;
  }

  .nav .lang {
    align-self: center;
  }

  .nav .btn {
    min-height: 42px;
    padding: 0 19px;
    font-size: 13px;
  }

  .hero {
    min-height: 672px;
    padding-top: 22px;
    overflow: hidden;
  }

  .hero-grid {
    display: block;
    position: relative;
  }

  .hero-copy {
    width: min(340px, 100%);
    max-width: 100%;
  }

  .hero-title {
    font-size: 42px;
    max-width: 340px;
  }

  .hero-text {
    font-size: 17px;
    max-width: 220px;
    text-align: justify;
  }

  .hero-actions {
    align-items: stretch;
    max-width: 340px;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
    white-space: normal;
  }

  .hero-visual {
    position: absolute;
    inset: 0;
    min-height: 0;
    z-index: 1;
    pointer-events: none;
  }

  .hero-visual::before {
    top: 72px;
    left: auto;
    right: -284px;
    width: 610px;
    max-width: none;
    transform: none;
  }

  .benefits,
  .audience-grid,
  .steps,
  .form-row {
    grid-template-columns: 1fr;
  }

  .benefit {
    grid-template-columns: 58px 1fr;
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.065);
  }

  .benefit:last-child {
    border-bottom: 0;
  }

  .benefit:nth-child(3) {
    border-top: 0;
  }

  .benefit-icon {
    width: 58px;
    height: 58px;
    border-radius: 17px;
  }

  .benefit h2 {
    font-size: 21px;
  }

  .benefit h2,
  .benefit p {
    max-width: 225px;
  }

  .section-title,
  .signup h2 {
    font-size: 31px;
  }

  .steps {
    gap: 18px;
    margin-top: 28px;
  }

  .step:nth-child(1)::after,
  .step:nth-child(2)::after {
    display: none;
  }

  .step {
    min-height: auto;
    padding: 8px 0 22px;
  }

  .step-number {
    left: calc(50% - 91px);
  }

  .signup {
    padding: 24px;
  }
}
