﻿:root {
  --bg: #000;
  --panel: #070a12;
  --panel-2: #0b101d;
  --text: #f4f8ff;
  --muted: #97a4bd;
  --blue: #0d7cff;
  --cyan: #23d4ff;
  --line: rgba(96, 151, 255, 0.2);
  --line-strong: rgba(35, 212, 255, 0.42);
  --green: #8fff95;
  --shadow: 0 28px 80px rgba(0, 98, 255, 0.22);
  --page-max: 1180px;
  --page-gutter: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #000;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 82% -10%, rgba(0, 115, 255, 0.18), transparent 36%),
    radial-gradient(circle at 0% 35%, rgba(35, 212, 255, 0.08), transparent 30%),
    #000;
}

main {
  background:
    radial-gradient(circle at 78% 20%, rgba(13, 124, 255, 0.08), transparent 30%),
    radial-gradient(circle at 18% 58%, rgba(35, 212, 255, 0.055), transparent 28%),
    linear-gradient(180deg, #000 0%, #03050a 42%, #000 100%);
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.56));
  backdrop-filter: blur(16px);
}

body {
  padding-top: 90px;
}

.nav {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px;
  border: 1px solid rgba(96, 151, 255, 0.16);
  border-radius: 24px;
  background: rgba(7, 12, 23, 0.72);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 32px rgba(35, 212, 255, 0.22);
}

.nav-links {
  display: flex;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(96, 151, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 0.9rem;
}

.nav-links a {
  padding: 9px 12px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.burger-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.burger-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #fff;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: block;
  padding: 12px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background: #000 !important;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.mobile-menu.is-open {
  visibility: visible;
  background: #000 !important;
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background: #000;
}

.mobile-menu__links {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: calc(100vh - 24px);
  padding: 78px 22px 24px;
  border: 1px solid rgba(96, 151, 255, 0.22);
  border-radius: 28px;
  background: #02040a !important;
  background-color: #02040a !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: scale(0.98);
  transition: transform 0.2s ease;
}

.mobile-menu.is-open .mobile-menu__links {
  transform: scale(1);
}

.mobile-menu__links a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(96, 151, 255, 0.16);
  border-radius: 0;
  color: #fff;
  background: transparent;
  font-size: 1.05rem;
  font-weight: 800;
}

.mobile-menu__links a:last-child {
  margin-top: 18px;
  border-bottom: 0;
  border-radius: 999px;
}

.mobile-menu__close {
  position: fixed;
  top: 28px;
  right: 28px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  color: #fff;
  background: #0a1020;
  font-size: 1.7rem;
  line-height: 1;
}

body.menu-open {
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid rgba(35, 212, 255, 0.36);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #23d4ff, #0d7cff 55%, #003bb8);
  box-shadow: 0 18px 48px rgba(13, 124, 255, 0.35);
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 70px rgba(13, 124, 255, 0.48);
}

.btn-small {
  min-height: 42px;
  padding: 9px 16px;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.btn-full {
  width: 100%;
}

.hero {
  position: relative;
  z-index: 0;
  overflow: hidden;
  min-height: 650px;
  padding: 64px 0 72px;
  background: #000;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.38) 50%, rgba(0, 0, 0, 0.68) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0) 56%, #000 100%);
  opacity: 1;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: -18px;
  background: url("./hero-fintech-bg.png") 62% center / min(720px, 52vw) auto no-repeat;
  filter: blur(4px);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 22%, rgba(35, 212, 255, 0.1), transparent 34%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.08) 52%, rgba(0, 0, 0, 0.48) 100%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: center;
  justify-content: space-between;
  gap: clamp(36px, 5vw, 86px);
}

.hero-copy {
  max-width: none;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.75rem, 5.4vw, 5.7rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.6vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.14rem;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.crypto-strip {
  position: relative;
  overflow: hidden;
  padding: 16px 0;
  background:
    radial-gradient(ellipse at center, rgba(0, 103, 255, 0.24), transparent 64%),
    linear-gradient(90deg, #000 0%, rgba(0, 103, 255, 0.08) 18%, rgba(0, 103, 255, 0.08) 82%, #000 100%);
  box-shadow: inset 0 1px 0 rgba(96, 151, 255, 0.14), inset 0 -1px 0 rgba(96, 151, 255, 0.1);
}

.crypto-strip::before,
.crypto-strip::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 110px;
  height: 100%;
  pointer-events: none;
}

.crypto-strip::before {
  left: 0;
  background: linear-gradient(90deg, #000, transparent);
}

.crypto-strip::after {
  right: 0;
  background: linear-gradient(270deg, #000, transparent);
}

.crypto-track {
  display: flex;
  width: max-content;
  animation: cryptoMarquee 56s linear infinite;
}

.crypto-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-right: 9px;
}

.crypto-chip {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  padding: 8px;
  border: 1px solid rgba(96, 151, 255, 0.18);
  border-radius: 50%;
  color: #fff;
  background: rgba(2, 8, 18, 0.86);
  box-shadow: 0 0 20px rgba(0, 103, 255, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.crypto-chip img {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 0 18px rgba(35, 212, 255, 0.2);
}

@keyframes cryptoMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.025);
}

.metrics div {
  padding: 14px 16px;
  border-right: 1px solid var(--line);
}

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

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  font-size: 1.35rem;
}

.metrics span {
  color: var(--muted);
  font-size: 0.85rem;
}

.ceo-quote-section {
  padding-top: 36px;
}

.ceo-quote-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(24px, 4vw, 54px);
  align-items: stretch;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(96, 151, 255, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 103, 255, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(11, 16, 29, 0.9), rgba(0, 0, 0, 0.96));
  box-shadow: var(--shadow);
}

.ceo-quote-copy blockquote {
  margin: 0;
  max-width: 900px;
  color: #f4f8ff;
  font-size: clamp(1.35rem, 2.5vw, 2.35rem);
  font-weight: 850;
  line-height: 1.16;
  letter-spacing: -0.055em;
}

.ceo-author {
  display: grid;
  gap: 4px;
  margin-top: 22px;
}

.ceo-author strong {
  color: #fff;
  font-size: 1.05rem;
}

.ceo-author span {
  color: var(--muted);
  font-size: 0.92rem;
}

.ceo-stats {
  display: grid;
  gap: 14px;
}

.ceo-stats div {
  display: grid;
  align-content: center;
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(96, 151, 255, 0.14);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.04);
}

.ceo-stats strong {
  color: var(--cyan);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.ceo-stats span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.signup-card,
.final-form-card {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(11, 16, 29, 0.92), rgba(2, 4, 9, 0.96));
  box-shadow: var(--shadow);
}

.signup-card {
  max-width: 390px;
  justify-self: end;
  padding: 20px;
}

.signup-card h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  line-height: 1.04;
}

.card-kicker {
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 12px;
  border: 1px solid rgba(35, 212, 255, 0.34);
  border-radius: 999px;
  color: #dff8ff;
  background: rgba(35, 212, 255, 0.1);
  font-size: 0.84rem;
  font-weight: 800;
}

.signup-card p,
.final-form-card p {
  color: var(--muted);
}

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

.form label {
  display: grid;
  gap: 7px;
  color: #dbe7ff;
  font-size: 0.84rem;
  font-weight: 800;
}

.form input {
  min-height: 44px;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(126, 167, 255, 0.28);
  border-radius: 14px;
  color: #fff;
  background: rgba(0, 0, 0, 0.58);
}

.form input:focus {
  outline: none;
  border-color: rgba(35, 212, 255, 0.8);
  box-shadow: 0 0 0 4px rgba(35, 212, 255, 0.12);
}

.section {
  padding: 58px 0;
}

.section-dark {
  background: transparent;
}

.section-head {
  max-width: 860px;
  margin-bottom: 26px;
}

.row-head {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

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

.step,
.benefit-grid article,
.review-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(11, 16, 29, 0.82), rgba(3, 5, 10, 0.9));
}

.step,
.benefit-grid article {
  padding: 22px;
}

.step span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--cyan);
  font-weight: 900;
}

.split,
.final-layout,
.calculator-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.split > div:first-child,
.final-layout > div:first-child,
.calculator-layout > div:first-child {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.calculator-layout,
.final-layout {
  max-width: 820px;
  margin-inline: auto;
}

.split {
  max-width: 900px;
  margin-inline: auto;
}

.calculator-card {
  max-width: 760px;
  width: 100%;
  margin-inline: auto;
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 22px;
  padding: 28px;
  border: 1px solid rgba(96, 151, 255, 0.2);
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 0%, rgba(35, 212, 255, 0.2), transparent 34%),
    radial-gradient(circle at 90% 18%, rgba(0, 103, 255, 0.24), transparent 32%),
    linear-gradient(180deg, rgba(11, 16, 29, 0.94), rgba(2, 4, 9, 0.98));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.calculator-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 28%, transparent 72%, rgba(35, 212, 255, 0.08));
}

.calculator-note {
  max-width: 640px;
  margin-inline: auto;
  color: #74829a;
  font-size: 0.92rem;
}

.calc-row {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(96, 151, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
}

.calc-row > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.calc-row span {
  color: var(--muted);
  font-size: 0.92rem;
}

.calc-result-group {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.calc-result-label {
  color: #d9e5ff;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.calc-row strong {
  color: #fff;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.calc-row input[type="range"] {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  outline: none;
  accent-color: var(--cyan);
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  cursor: pointer;
}

.calc-row input[type="range"]::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.calc-row input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 22px;
  height: 22px;
  margin-top: -7px;
  border: 4px solid #07101e;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(35, 212, 255, 0.18), 0 8px 24px rgba(0, 103, 255, 0.45);
}

.calc-row input[type="range"]::-moz-range-track {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.calc-row input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 4px solid #07101e;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(35, 212, 255, 0.18), 0 8px 24px rgba(0, 103, 255, 0.45);
}

.calc-result {
  position: relative;
  z-index: 1;
  margin-top: 4px;
  padding: 24px;
  border: 1px solid rgba(143, 255, 149, 0.3);
  border-radius: 28px;
  background:
    radial-gradient(circle at 84% 20%, rgba(143, 255, 149, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(143, 255, 149, 0.14), rgba(0, 103, 255, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-align: center;
}

.calc-result strong {
  white-space: nowrap;
  color: var(--green);
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.06em;
}

.benefit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 820px;
  width: 100%;
  margin-inline: auto;
}

.benefit-grid p,
.step p,
.review-card p,
.faq-list p {
  color: var(--muted);
}

.review-carousel {
  position: relative;
  height: 300px;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
  pointer-events: none;
}

.review-card {
  position: absolute;
  top: 14px;
  left: 50%;
  width: min(390px, 78vw);
  min-height: 238px;
  padding: 22px;
  opacity: 0;
  filter: blur(3px);
  transform: translateX(-50%) scale(0.86);
  transition: opacity 0.45s ease, filter 0.45s ease, transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
  z-index: 0;
}

.review-card.is-active {
  filter: blur(0);
  opacity: 1;
  transform: translateX(-50%) scale(1);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
  z-index: 3;
}

.review-card.is-prev {
  opacity: 0.42;
  transform: translateX(calc(-50% - 340px)) scale(0.84);
  z-index: 1;
}

.review-card.is-next {
  opacity: 0.42;
  transform: translateX(calc(-50% + 340px)) scale(0.84);
  z-index: 1;
}

.review-card.is-hidden {
  opacity: 0;
  transform: translateX(-50%) scale(0.72);
  z-index: 0;
}

.stars {
  margin-bottom: 16px;
  color: var(--cyan);
  letter-spacing: 0.12em;
}

.review-card strong,
.review-card span {
  display: block;
}

.review-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.narrow {
  max-width: var(--page-max);
}

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

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 14px 0 0;
}

.final-form {
  padding-top: 58px;
}

.final-form-card {
  max-width: 520px;
  margin-inline: auto;
  grid-template-columns: 1fr;
  padding: 24px;
}

.final-form-card .btn {
  grid-column: 1 / -1;
}

.site-footer {
  padding: 36px 0 24px;
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 103, 255, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), #000 34%);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 28px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(96, 151, 255, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
}

.footer-brand p,
.footer-support small {
  margin: 12px 0 0;
  color: #7f8ca3;
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-nav,
.footer-support {
  display: grid;
  gap: 10px;
}

.footer-nav a,
.footer-support a {
  color: #d9e5ff;
  font-weight: 800;
}

.footer-nav a:hover,
.footer-support a:hover {
  color: #fff;
}

.footer-support span {
  color: #7f8ca3;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.support-email {
  width: fit-content;
  padding: 10px 12px;
  border: 1px solid rgba(0, 103, 255, 0.26);
  border-radius: 999px;
  background: rgba(0, 103, 255, 0.1);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  color: #707d94;
  font-size: 0.78rem;
}

.legal {
  padding: 14px 0 0;
  color: #707d94;
  font-size: 0.78rem;
  line-height: 1.55;
}

@media (max-width: 980px) {
  :root {
    --page-gutter: 20px;
  }

  .container {
    width: min(100% - (var(--page-gutter) * 2), var(--page-max));
  }

  .nav-links {
    display: none;
  }

  .nav .btn-small {
    display: none;
  }

  .nav {
    width: min(100% - 24px, var(--page-max));
    margin-inline: auto;
    border-radius: 20px;
  }

  .burger-button {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 40px 0 46px;
  }

  .hero-bg {
    opacity: 0.55;
    background:
      linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.72) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0) 62%, #000 100%);
  }

  .hero-bg::before {
    background: url("./hero-fintech-bg.png") center top / min(520px, 86vw) auto no-repeat;
  }

  .hero-layout,
  .ceo-quote-card,
  .split,
  .final-layout,
  .calculator-layout,
  .steps,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

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

  .metrics div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics div:last-child {
    border-bottom: 0;
  }

  .row-head {
    align-items: start;
    flex-direction: column;
  }

  .review-carousel {
    height: 292px;
    max-width: 100%;
  }

  .review-card.is-prev {
    transform: translateX(calc(-50% - 260px)) scale(0.82);
  }

  .review-card.is-next {
    transform: translateX(calc(-50% + 260px)) scale(0.82);
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  :root {
    --page-gutter: 12px;
  }

  .site-header {
    padding-top: 10px;
  }

  .container {
    width: min(100% - (var(--page-gutter) * 2), var(--page-max));
  }

  .nav {
    width: min(100% - 20px, var(--page-max));
    padding: 9px 10px;
  }

  .mobile-menu {
    padding: 10px;
  }

  .mobile-menu__links {
    width: 100%;
    min-height: calc(100vh - 20px);
    border-radius: 24px;
  }

  .brand span:last-child {
    font-size: 0.94rem;
  }

  .btn-small {
    display: none;
  }

  h1 {
    font-size: clamp(2.55rem, 15vw, 4rem);
  }

  h2 {
    font-size: clamp(1.9rem, 11vw, 3rem);
  }

  .section {
    padding: 40px 0;
  }

  .signup-card,
  .final-form-card,
  .step,
  .benefit-grid article,
  .review-card {
    border-radius: 22px;
    padding: 18px;
  }

  .final-form-card {
    grid-template-columns: 1fr;
  }

  .review-carousel {
    height: 300px;
  }

  .review-card {
    width: min(82vw, 340px);
    filter: blur(2px);
  }

  .review-card.is-prev {
    opacity: 0.3;
    transform: translateX(calc(-50% - 185px)) scale(0.8);
  }

  .review-card.is-next {
    opacity: 0.3;
    transform: translateX(calc(-50% + 185px)) scale(0.8);
  }
}
