* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary-blue: #0500ff;
  --text-dark: #1a1a1a;
  --text-gray: #666666;
  --bg-light: #f7f7f7;
  --white: #ffffff;
  --border-color: #e8e8e8;
}
html {
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}
body {
  font-family: "Wix Madefor Display", sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}
h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.05;
}
h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.05;
}
h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.05;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  border-bottom: 1px solid var(--border-color);
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-dark);
}
.logo-icon {
  width: 32px;
  height: 32px;
}
.logo-icon svg {
  width: 100%;
  height: 100%;
}
.logo-text {
  font-size: 24px;
  font-weight: 800;
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav a:hover,
.nav a.active {
  color: var(--primary-blue);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-selector {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  background: var(--white);
}
.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 160px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-top: 4px;
  display: none;
  z-index: 1001;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.lang-dropdown.show {
  display: block;
}
.lang-option {
  padding: 10px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  white-space: nowrap;
}
.lang-option:hover {
  background: var(--bg-light);
}
.lang-option:first-child {
  border-radius: 8px 8px 0 0;
}
.lang-option:last-child {
  border-radius: 0 0 8px 8px;
}
.lang-flag {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  flex-shrink: 0;
}
.btn-primary {
  background: var(--primary-blue);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.btn-primary:hover {
  opacity: 0.9;
}
.btn-outline {
  background: transparent;
  color: var(--primary-blue);
  padding: 14px 24px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  border: 1.5px solid var(--primary-blue);
  cursor: pointer;
}
.btn-outline:hover {
  background: rgba(5, 0, 255, 0.05);
}
.btn-white-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  border: 1.5px solid var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.btn-white-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}
.snap-section {
  min-height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 80px;
}
.anim-fade {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.anim-fade.visible {
  opacity: 1;
  transform: translateY(0);
}
.anim-scale {
  opacity: 0;
  transform: scale(1.3);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.anim-scale.visible {
  opacity: 1;
  transform: scale(1);
}
.anim-card-grow {
  transition: transform 0.4s ease;
}
.anim-card-grow.grown {
  transform: translate(-50%, -50%) scale(1.3);
}
.anim-delay-1 {
  transition-delay: 0.1s;
}
.anim-delay-2 {
  transition-delay: 0.2s;
}
.anim-delay-3 {
  transition-delay: 0.3s;
}
.anim-delay-4 {
  transition-delay: 0.4s;
}
.anim-delay-5 {
  transition-delay: 0.5s;
}
.anim-delay-6 {
  transition-delay: 0.6s;
}
.anim-delay-7 {
  transition-delay: 0.7s;
}
.anim-delay-8 {
  transition-delay: 0.8s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.float-anim {
  animation: float 3s ease-in-out infinite;
}
.float-anim-delay-1 {
  animation-delay: 0s;
}
.float-anim-delay-2 {
  animation-delay: 0.5s;
}
.float-anim-delay-3 {
  animation-delay: 1s;
}
.float-anim-delay-4 {
  animation-delay: 1.5s;
}
.float-anim-delay-5 {
  animation-delay: 2s;
}
.hero {
  padding-top: 72px;
  background: var(--white);
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content h1 {
  margin-bottom: 24px;
}
.hero-content h1 span {
  color: var(--primary-blue);
}
.hero-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-gray);
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
}
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image img {
  max-width: 100%;
  height: auto;
}
.stats-banner-block {
  background: var(--white);
  padding-top: 72px;
  padding-bottom: 72px;
  justify-content: flex-start;
}
.stats-banner-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  height: calc(100vh - 144px);
}
.stats-banner-layout .stats-section {
  padding: 0;
}
.stats-inner {
  width: 100%;
}

.new-banner-card {
  width: 100%;
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 64px;
}
.new-banner-content {
  max-width: 520px;
}
.new-banner-content h2 {
  color: #000;
  margin-bottom: 18px;
}
.new-banner-content h2 span {
  color: var(--primary-blue);
}
.new-banner-content p {
  color: #000;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 460px;
}
.new-banner-media {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
.new-banner-media img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: contain;
  display: block;
}
.new-banner-media--mobile {
  display: none;
  flex: none;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.new-banner-media--desktop {
  display: flex;
}
@media (max-width: 900px) {
  .stats-banner-layout {
    height: auto;
    padding-bottom: 16px;
  }
  .new-banner-card {
    min-height: 360px;
    padding: 28px;
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .new-banner-content {
    max-width: 100%;
  }
  .new-banner-content p {
    max-width: 100%;
  }
  .new-banner-media {
    width: 100%;
    justify-content: center;
  }
  .new-banner-media img {
    max-height: 360px;
  }
  .new-banner-media--mobile {
    display: flex;
  }
  .new-banner-media--desktop {
    display: none;
  }
}
.stats-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.stat-item {
  text-align: center;
}
.stat-label {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 8px;
}
.stat-value {
  font-size: 30px;
  font-weight: 700;
}
.stat-value.blue {
  color: var(--primary-blue);
}
.stat-value span {
  color: var(--primary-blue);
}
.stars {
  color: var(--primary-blue);
  font-size: 24px;
  letter-spacing: 2px;
}
.blue-banner {
  background: var(--primary-blue);
  padding: 80px 0;
}
.blue-banner .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.blue-banner-content h2 {
  color: var(--white);
  margin-bottom: 20px;
}
.blue-banner-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 440px;
}
.blue-banner-image img {
  max-width: 100%;
  height: auto;
}
.feature-section {
  background: var(--white);
  padding: 100px 0;
}
.feature-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-section.reverse .container {
  direction: rtl;
}
.feature-section.reverse .feature-content,
.feature-section.reverse .feature-image {
  direction: ltr;
}
.feature-content h2 {
  margin-bottom: 20px;
}
.feature-content h2 span {
  color: var(--primary-blue);
}
.feature-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-gray);
  max-width: 400px;
}
.feature-composition {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 520px;
  margin: 0 auto;
}
.feature-composition img {
  position: absolute;
  object-fit: contain;
}
.composition-block4 .phone {
  width: 220px;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.composition-block4 .card {
  width: 220px;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.composition-block4 .card.grown {
  transform: translate(-50%, -50%) scale(1.3);
}
.composition-block4 .badge {
  width: 70px;
  height: auto;
  z-index: 4;
}
.composition-block4 .badge-gpay {
  left: 5%;
  top: 25%;
}
.composition-block4 .badge-atm {
  right: 5%;
  top: 15%;
}
.composition-block4 .badge-applepay {
  right: 10%;
  bottom: 25%;
}
.composition-block5 .phone {
  width: 200px;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.composition-block5 .coin {
  width: 80px;
  height: auto;
  z-index: 3;
}
.composition-block5 .coin-1 {
  left: 0;
  top: 35%;
}
.composition-block5 .coin-2 {
  right: 15%;
  top: 5%;
}
.composition-block5 .coin-3 {
  right: 5%;
  top: 40%;
}
.composition-block5 .coin-4 {
  left: 15%;
  bottom: 10%;
}
.composition-block5 .coin-5 {
  right: 20%;
  bottom: 15%;
}
.composition-block6 {
  position: relative;
  width: 100%;
  max-width: 680px;
  height: 620px;
  margin: 0 auto;
  overflow: visible;
}
.composition-block6 .phone {
  width: 260px;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.composition-block6 .transactions-grid {
  position: absolute;
  left: 50%;
  top: 70%;
  transform: translate(-50%, -50%);

  display: flex;
  flex-direction: column;
  gap: 14px;

  z-index: 3;
  pointer-events: none;
}

.composition-block6 .tx-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  /* смещение строк «лесенкой» */
  transform: translateX(var(--row-shift, 0%));
}
.composition-block6 .tx-row:nth-child(1) {
  --row-shift: 0%;
}
.composition-block6 .tx-row:nth-child(2) {
  --row-shift: 10%;
}
.composition-block6 .tx-row:nth-child(3) {
  --row-shift: 20%;
}

.composition-block6 .transactions-grid .transaction {
  width: 240px;
  height: auto;
  position: static;
  display: block;

  /* мягкая тень как в референсе */
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.18));
}

.composition-block6 .transactions-grid .transaction--wide {
  width: 240px;
  height: auto;
}

.composition-block6 .transactions-grid .transaction.anim-scale {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  will-change: transform, opacity;
}
.composition-block6 .transactions-grid .transaction.anim-scale.visible {
  opacity: 1;
  transform: translateY(0);
}

.privileges-section {
  background: var(--white);
  padding: 100px 0;
}
.privileges-section h2 {
  margin-bottom: 16px;
}
.privileges-section > .container > p {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 48px;
}
.privileges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.privilege-card {
  background: var(--bg-light);
  border-radius: 20px;
  padding: 32px 28px;
}
.privilege-icon {
  width: 140px;
  height: 140px;
  margin-bottom: 24px;
  border-radius: 16px;
  overflow: hidden;
}
.privilege-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.privilege-card h4 {
  margin-bottom: 12px;
  line-height: 1.3;
}
.privilege-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.5;
}
.faq-section {
  background: var(--white);
  padding: 100px 0;
}
.faq-section h2 {
  margin-bottom: 16px;
}
.faq-section > .container > p {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 48px;
}
.faq-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 20px 24px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item:hover {
  border-color: #ccc;
}
.faq-item.active {
  border-color: var(--primary-blue);
}
.faq-item.active .faq-question {
  color: var(--primary-blue);
}
.faq-question {
  font-size: 16px;
  font-weight: 500;
  flex: 1;
  padding-right: 16px;
}
.faq-arrow {
  font-size: 18px;
  color: var(--text-gray);
  transition: transform 0.2s;
}
.faq-item.active .faq-arrow {
  transform: rotate(90deg);
  color: var(--primary-blue);
}
.faq-answer {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 32px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-gray);
  height: fit-content;
}

.faq-inline-answer {
  display: none;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 18px 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-gray);
  margin-top: -4px;
  margin-bottom: 8px;
}

.faq-inline-answer.show {
  display: block;
  animation: faqDrop 0.2s ease;
}

@keyframes faqDrop {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cta-footer-section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.cta-section {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 60px 0;
  background: var(--white);
}
.cta-box {
  background: var(--primary-blue);
  border-radius: 24px;
  padding: 64px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.cta-content h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.cta-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 400px;
}
.cta-image img {
  max-width: 100%;
  height: auto;
}
.footer {
  background: var(--white);
  padding: 24px 80px;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-logo svg {
  width: 28px;
  height: 28px;
}
.footer-logo span {
  font-weight: 800;
  font-size: 20px;
}
.footer-center {
  font-size: 14px;
  color: var(--text-gray);
}
.footer-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.scroll-indicator {
  position: fixed;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 100;
}
.scroll-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.2s ease;
}
.scroll-dot.active {
  background: var(--primary-blue);
  transform: scale(1.2);
}
.scroll-dot:hover {
  background: #bbb;
}
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.popup-overlay.show {
  display: flex;
}
.popup-box {
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  max-width: 480px;
  width: 90%;
  text-align: center;
}
.popup-box h3 {
  margin-bottom: 24px;
  font-size: 24px;
}
.popup-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.popup-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
}
.popup-option:hover {
  border-color: var(--primary-blue);
  background: rgba(5, 0, 255, 0.02);
}
.popup-option img {
  width: 40px;
  height: 40px;
}
.popup-option span {
  font-weight: 500;
  font-size: 18px;
}
.popup-close {
  margin-top: 24px;
  padding: 12px 32px;
  background: var(--bg-light);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
}
.popup-close:hover {
  background: #eee;
}

/* --- Card application flow (5 steps) --- */
.card-flow {
  background: var(--white);
  border-radius: 28px;
  padding: 36px 32px 28px;
  max-width: 520px;
  width: 92%;
  position: relative;
  text-align: left;
}
.card-flow__x {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-flow__x:hover {
  color: #666;
}
.card-flow__x img {
  width: 22px;
  height: 22px;
  opacity: 0.75;
}
.card-flow__x:hover img {
  opacity: 1;
}
.card-flow h3 {
  font-size: 40px;
  line-height: 1.05;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
#cardFlowTitle {
  text-align: center;
}
.card-flow__sub {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.5;
  margin-bottom: 22px;
  text-align: center;
}

.stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 22px;
}
.stepper__dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f1f1f1;
  color: #8a8a8a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  flex: 0 0 auto;
  user-select: none;
}
.stepper__dot.active {
  background: var(--primary-blue);
  color: var(--white);
}
.stepper__dot.done {
  background: #f1f1f1;
  color: #a6a6a6;
}
.stepper__mark {
  width: 16px;
  height: 16px;
  display: block;
}
.stepper__check {
  font-size: 16px;
  line-height: 1;
  color: #a6a6a6;
}
.stepper__line {
  height: 2px;
  width: 34px;
  background: #e5e5e5;
  border-radius: 2px;
  flex: 0 0 auto;
}
.stepper__line.done {
  background: #d0d0d0;
}

.card-flow__content {
  margin-top: 8px;
}
.flow-question {
  font-size: 16px;
  line-height: 1.45;
  margin-bottom: 14px;
}
.flow-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.flow-option {
  width: 100%;
  border: 1px solid #f1f1f1;
  background: #f7f7f7;
  border-radius: 999px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 15px;
  color: var(--text-dark);
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}
.flow-option:hover {
  border-color: #dcdcdc;
}
.flow-option.selected {
  border-color: rgba(5, 0, 255, 0.35);
  background: rgba(5, 0, 255, 0.03);
}
.flow-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #e0e0e0;
  background: var(--white);
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.flow-option.selected .flow-radio {
  border-color: var(--primary-blue);
}
.flow-option.selected .flow-radio::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-blue);
  display: block;
}

.flow-option--network .flow-net-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}

.flow-hint {
  margin-top: 10px;
  color: #e11d48;
  font-size: 13px;
  min-height: 18px;
}
.flow-hint.hidden {
  visibility: hidden;
}

.card-flow__footer {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.flow-back {
  flex: 1 1 0%;
  padding: 14px 16px;
  border-radius: 999px;
  border: none;
  background: #f1f1f1;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: #1f1f1f;
}
.flow-back:hover {
  background: #eaeaea;
}
.flow-next {
  flex: 1 1 0%;
  justify-content: center;
}
.flow-next[disabled] {
  opacity: 0.4;
  pointer-events: none;
}

@media (max-width: 640px) {
  .card-flow {
    padding: 26px 18px 18px;
  }
  .card-flow h3 {
    font-size: 30px;
  }
  .stepper__line {
    width: 22px;
  }
}
@media (max-width: 1024px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 26px;
  }
  .header {
    padding: 0 24px;
  }
  .container {
    padding: 0 24px;
  }
  .nav {
    display: none;
  }
  .hero .container,
  .blue-banner .container,
  .feature-section .container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .feature-composition {
    max-width: 350px;
    height: 450px;
  }
  .composition-block4 .phone {
    width: 180px;
  }
  .composition-block4 .card {
    width: 180px;
  }
  .composition-block4 .card.grown {
    transform: translate(-50%, -50%) scale(1.15);
  }
  .composition-block4 .badge {
    width: 80px;
  }
  .composition-block5 .phone {
    width: 180px;
  }
  .composition-block5 .coin {
    width: 70px;
  }
  .composition-block6 {
    height: 640px;
    overflow: visible;
  }
  .composition-block6 .phone {
    width: 220px;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
  }

  .composition-block6 .transactions-grid {
    left: 50%;
    top: 72%;
    transform: translate(-50%, -50%);
    gap: 10px;
  }
  .composition-block6 .tx-row {
    gap: 10px;
  }
  .composition-block6 .transactions-grid .transaction {
    width: 160px;
    filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.18));
  }
  .composition-block6 .transactions-grid .transaction--wide {
    width: 160px;
  }
  .privileges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-container {
    grid-template-columns: 1fr;
  }
  .cta-box {
    grid-template-columns: 1fr;
    padding: 40px 32px;
    text-align: center;
  }
  .stats-grid {
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
  }
  .footer {
    padding: 24px;
    flex-direction: column;
    gap: 16px;
  }
  .scroll-indicator {
    display: none;
  }
}
@media (max-width: 640px) {
  .faq-answer {
    display: none;
  }
  .faq-list {
    gap: 10px;
  }
  .faq-item {
    align-items: flex-start;
    padding: 18px;
  }
  .faq-question {
    font-size: 15px;
    padding-right: 10px;
  }
  .faq-inline-answer {
    font-size: 14px;
    margin-top: -2px;
  }
  .privileges-grid {
    grid-template-columns: 1fr;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}
