@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Raleway&display=swap');
:root {
  /* Цвета */
  --accent-green: #20975E;
  --alert-color: #EC4444;
  --light-green: #DCFBEC;
  --accent-black: #0C1218;

  --bg-light-color: rgb(245, 247, 250);
  --card-color: #F1F0F5;
  --border-color: #D1D1D1;

  --secondary-text-color: #A8ADB5; 
  --navbar-text-color: #B9C4CA;
  
  --disabled-color: #EFEFEF;


  /* misc */
  /* --top-navbar-height: 44px; */
  /* --phone-statusbar-height: 47px; */
  --top-navbar-height: 16px;
  --top-title-block-height: 107px;
  --phone-statusbar-height: 16px;
  --font-family-raleway: "Raleway", -apple-system, Roboto, Helvetica, sans-serif;
  --font-family-inter: "Inter", -apple-system, Roboto, Helvetica, sans-serif;
  --font-family-manrope: Manrope, sans-serif;;
  --page-title-size: 28px;
  --page-title-line-height: 32px;
  --page-title-color: var(--accent-black);
  --box-shadow:  0 4px 20px rgba(0, 0, 0, 0.1);
  --card-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  --faq-arrow-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  --border-radius: 16px;
  --footer-height: 60px;

}
/* Input */
.input-wrapper {
  width: 100%;
  position: relative;
  color: #a8adb5;

  &.has-errors {
    .text-input {
      border-color: var(--alert-color);
    }
  }
}
.input-field {
  border-radius: 12px;
  display: inline;
  position: absolute;
  background: transparent;
  transition: 0.2s ease all;
  top: 18px;
  left: 16px;
  pointer-events: none;
}
.text-input {
  border-radius: var(--border-radius);
  background-color: #ffffff;
  border: 1px solid #a8adb5;
  padding: 16px 16px;
  width: 100%;
  font-family: var(--font-family-raleway);
  font-size: 16px;
  color: var(--accent-black);
  font-weight: 600;
  outline: none;
  opacity: 1;
}
.text-input:not(:-moz-placeholder) {
  padding: 24px 16px 8px;
}
.text-input:not(:placeholder-shown) {
  padding: 24px 16px 8px;
}
.text-input:not(:-moz-placeholder) + .input-field {
  top: 6px;
  left: 16px;
  font-size: 12px;
  opacity: 1;
}
.text-input:not(:placeholder-shown) + .input-field {
  top: 6px;
  left: 16px;
  font-size: 12px;
  opacity: 1;
}
/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-feature-settings: 'lnum' 1;
  flex-direction: column;
  background-color: #fff;
  display: flex;
  font-family: var(--font-family-raleway);
  font-optical-sizing: auto;
  font-style: normal;
  text-rendering: optimizeLegibility;
  &.no-scroll {
    overflow: hidden;
    height: 100vh;
  }
}
a,
input,
button,
textarea {
  -webkit-tap-highlight-color: transparent; /* для мобильных Safari/Chrome */
  outline: none;
}
button, a, .button {
  transition: opacity 250ms ease;
}
button {
  touch-action: manipulation;
}
img {
  image-rendering: auto;
  image-rendering: -webkit-optimize-contrast; /* WebKit fallback */
}
svg {
  shape-rendering: geometricPrecision;
  text-rendering: optimizeLegibility;
  image-rendering: auto;
}
/* Hover effects */
button:hover,
.button:hover,
a:hover {
  opacity: 0.7;
}
/* Active states */
button:active,
a:active,
input:active,
textarea:active {
  background: none;
  box-shadow: none;
}
/* App container */
.app-container {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  overflow: hidden;
  padding-bottom: var(--footer-height);
  /* padding-top: 64px; */
}
.container {
  padding-left: 16px;
  padding-right: 16px;
}
/* Main content */
.main-content {
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 36px;
  
  width: 100%;
}
/* Header Section */
.header {
  width: 100%;
  font-weight: 600;
  white-space: nowrap;
  padding: 10px 0;
  margin-top: var(--top-navbar-height);
  margin-bottom: 12px;
}
.page-title {
  font-family: var(--font-family-raleway);
  font-size: var(--page-title-size);
  line-height: var(--page-title-line-height);
  color: var(--page-title-color);
  font-weight: 600;
  align-self: stretch;
  width: 100%;
  padding: 0 16px;
  display: flex;
  align-items: center;
}
/* Info alert */
.info-alert {
  position: fixed;
  top: 16px;
  left: 16px;
  width: calc(100% - 32px);
  transform: translateY(100%);
  background-color: var(--bg-light-color);
  color: black;
  padding: 16px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  transition: transform 0.4s ease, opacity 0.4s ease;
  will-change: opacity, transform;
  opacity: 0;
  border: 1px solid var(--border-color);
  z-index: 1000;
}
.info-alert.show {
  transform: translateY(0);
  opacity: 0.95;
}
/* Scroll effects */
.scrollable-container {
  overflow-x: auto;
  scrollbar-width: none;    /* Firefox */
  -ms-overflow-style: none; /* IE и Edge */
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; /* плавный скролл на iOS */
  margin-left: -16px;
  margin-right: -16px;
}
.scrollable-container-inner {
  position: relative;
  left: 16px;
  width: -moz-fit-content;
  width: fit-content;
}
.scrollable-container-inner > *:last-child {
  padding-right: 16px;
}
.scrollable-container::-webkit-scrollbar {
  display: none;            /* Chrome, Safari и др. на WebKit */
}
/* Misc */
.view-all {
  color: rgba(32, 151, 94, 1);
  font-size: 14px;
  font-family: var(--font-family-inter);
  font-weight: 500;
  line-height: 2;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
  /* width: 25px; */
  text-decoration: none;
}
.hidden {
  display: none !important;
}
.sticky {
  position: sticky;
  top: 0;
  z-index: 99999;
}
.landing-header {
  border-radius: 1000px;
  background-color: rgba(255, 255, 255, 0.8);
  align-self: center;
  display: flex;
  width: 100%;
  max-width: 1360px;
  padding: 12px 24px;
  align-items: stretch;
  gap: 20px;
  overflow: hidden;
  font-size: 16px;
  flex-wrap: nowrap;
  justify-content: space-between;

  .header-menu-bar {
    display: none;
    background-color: #F8F8F8;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    flex-direction: column;
    gap: 4px;
  }
  .header-menu-bar-stripe {
    background-color: black;
    width: 12px;
    height: 2px;
    margin-left: 1px;
  }
}
@media (min-width: 768px) and (max-width: 1120px) {
  .landing-header {
    padding: 8px 16px;
    max-width: 100%;
  }
  .landing-header .header-left {
    gap: 20px;
  }
  .nav-links > * {
    font-size: 14px !important; 
  }

  .header-right > *{
    font-size: 14px !important;
  }

}
@media (max-width: 767px) {

  .landing-header {
    padding: 4px;
  }
  .landing-header-wrapper .nav-links {
    display: none;
  }
  .landing-header .header-menu-bar {
    display: flex;
    padding: 9px;
  }

  .landing-header .header-left {
    gap: 12px;
  }

  .brand {
    gap: 6px;
  }

  .brand-icon {
    width: 18px;
    height: 18px;
  }

  .landing-header .cta-button {
    padding: 5px 10px;
    border-radius: 50px;
    line-height: 20px;
    min-height: auto;
    height: -moz-fit-content;
    height: fit-content;
    align-self: center;
    font-size: 12px !important;  
  }

  .landing-header .help-button {
    padding: 0;
  }
  .landing-header .help-button  .help-text {
    display: none;
  }
}
.header-left {
  display: flex;
  margin-top: auto;
  margin-bottom: auto;
  align-items: center;
  gap: 80px;
  font-family: var(--font-family-raleway);
  justify-content: start;
  flex-wrap: nowrap;
}
.brand {
  align-self: stretch;
  display: flex;
  margin-top: auto;
  margin-bottom: auto;
  align-items: center;
  gap: 8px;
  color: #1f1f1f;
  font-weight: 700;
  justify-content: start;
}
.brand-icon {
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 24px;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
  flex-shrink: 0;
}
.brand-text {
  color: #1f1f1f;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
}
.nav-links {
  align-self: stretch;
  display: flex;
  min-width: 240px;
  margin-top: auto;
  margin-bottom: auto;
  align-items: start;
  gap: 16px;
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1;
  justify-content: start;
  cursor: pointer;
}
.how-it-works {
  border-radius: 8px;
  color: rgba(50, 151, 241, 1);
}
.how-it-works-link {
  border-radius: 8px;
  display: flex;
  padding: 8px;
  align-items: center;
  gap: 12px;
  justify-content: start;
  text-decoration: none;
  color: inherit;
}
.indicator {
  border-radius: 100px;
  background-color: rgba(50, 151, 241, 1);
  box-shadow: 0px 0px 0px 3px rgba(210, 230, 247, 1);
  align-self: stretch;
  display: flex;
  margin-top: auto;
  margin-bottom: auto;
  width: 8px;
  flex-shrink: 0;
  height: 8px;
}
.link-text {
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
}
.other-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(0, 0, 0, 1);
  justify-content: start;
}
.other-link {
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
  padding: 8px 12px;
  gap: 3px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.header-right {
  display: flex;
  align-items: start;
  gap: 8px;
  justify-content: start;
  align-items: center;
}
.help-button {
  border-radius: 16px;
  display: flex;
  padding: 12px 24px;
  align-items: center;
  gap: 10px;
  font-family: var(--font-family-raleway);
  color: rgba(3, 191, 98, 1);
  font-weight: 600;
  text-align: right;
  justify-content: center;
  text-decoration: none;
}
.help-button-inner {
  align-self: stretch;
  display: flex;
  margin-top: auto;
  margin-bottom: auto;
  min-height: 24px;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.help-icon {
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 16px;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
  flex-shrink: 0;
}
.help-text {
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
  width: -moz-max-content;
  width: max-content;
}
.cta-button {
  align-self: stretch;
  border-radius: 16px;
  background-color: rgba(0, 0, 0, 1);
  min-height: 48px;
  padding: 14px 24px;
  gap: 10px;
  font-family:
    Manrope,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  color: rgba(255, 255, 255, 1);
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.nowrap {
  white-space: nowrap;
}
@media (max-width: 767px) {

  .landing-header {
    max-width: 100%;
  }

  .header-left {
    max-width: 100%;
  }

  .help-button {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cta-button {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nowrap {
    white-space: initial;
  }
}
.payment-process {
  margin-top: 40px;
  width: 100%;
}
@media (max-width: 767px) {
  .payment-process {
      max-width: 100%;
  }
}
.process-grid-top {
  display: flex;
  width: 100%;
  align-items: start;
  gap: 12px;
  justify-content: start;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .process-grid-top {
      max-width: 100%;
  }
}
.process-card {
  border-radius: 24px;
  background-color: rgba(250, 250, 253, 1);
  display: flex;
  min-width: 240px;
  padding: 24px;
  align-items: start;
  gap: 10px;
  overflow: hidden;
  justify-content: start;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
@media (max-width: 767px) {
  .process-card {
      max-width: 100%;
      padding: 20px;
  }
}
.card-content {
  min-width: 240px;
  width: 100%;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
@media (max-width: 767px) {
  .card-content {
      max-width: 100%;
  }
}
.card-inner {
  width: 100%;
}
@media (max-width: 767px) {
  .card-inner {
      max-width: 100%;
  }
}
.image-section {
  width: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .image-section {
      max-width: 100%;
  }
}
.phone-mockup {
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  padding: 0;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .phone-mockup {
      max-width: 100%;
      padding: 17px 20px;
  }
}
.process-image {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  /* width: 178px; */
  max-width: 100%;
}
.phone-mockup-container {
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  padding: 17px 80px;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .phone-mockup-container {
      max-width: 100%;
      padding: 17px 20px;
  }
}
.phone-frame {
  display: flex;
  flex-direction: column;
  position: relative;
  aspect-ratio: 1.053;
  width: 178px;
  max-width: 100%;
  padding: 3px 6px;
  align-items: stretch;
  justify-content: center;
}
.phone-background {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.phone-screen {
  position: relative;
  border-radius: 22px;
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  align-items: stretch;
  width: 100%;
  height: 165px;
}
.screen-content {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  position: relative;
  z-index: 10;
  aspect-ratio: 1.012;
  width: 100%;
  padding: 5px 33px 143px;
  align-items: center;
}
@media (max-width: 767px) {
  .screen-content {
      padding: 5px 20px 100px;
  }
}
.screen-background {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.bank-logo {
  aspect-ratio: 3.38;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 54px;
  margin-bottom: -29px;
}
@media (max-width: 767px) {
  .bank-logo {
      margin-bottom: 10px;
  }
}
.screen-inner {
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 15px;
  aspect-ratio: 1.012;
  width: 100%;
  padding: 5px 33px 143px;
  align-items: center;
}
@media (max-width: 767px) {
  .screen-inner {
      padding: 5px 20px 100px;
  }
}
.inner-screen-background {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.notification-icon {
  aspect-ratio: 3.31;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 53px;
  margin-bottom: -29px;
}
@media (max-width: 767px) {
  .notification-icon {
      margin-bottom: 10px;
  }
}
.payment-screen-background {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.success-icon {
  aspect-ratio: 3.38;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 54px;
  margin-bottom: -29px;
}
@media (max-width: 767px) {
  .success-icon {
      margin-bottom: 10px;
  }
}
.screen-placeholder {
  color: rgba(255, 255, 255, 1);
  font-size: 21px;
  font-family: Poppins, -apple-system, Roboto, Helvetica, sans-serif;
  font-weight: 700;
  text-align: center;
  align-self: center;
  z-index: 10;
  margin-top: -31px;
  margin-bottom: -62px;
}
@media (max-width: 767px) {
  .screen-placeholder {
      margin-bottom: 10px;
  }
}
.content-section {
  margin-top: 24px;
  width: 100%;
  font-family: Raleway, -apple-system, Roboto, Helvetica, sans-serif;
}
@media (max-width: 767px) {
  .content-section {
      max-width: 100%;
      margin-top: 0px;
  }
}
.step-info {
  display: flex;
  width: 100%;
  align-items: start;
  gap: 16px;
  justify-content: start;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .step-info {
      max-width: 100%;
  }
}
.step-number {
  border-radius: 16px;
  background-color: rgba(0, 0, 0, 1);
  min-height: 44px;
  padding: 0 17px;
  overflow: hidden;
  font-size: 20px;
  color: rgba(255, 255, 255, 1);
  font-weight: 700;
  white-space: nowrap;
  line-height: 1.2;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .step-number {
      white-space: initial;
      width: 32px;
      height: 32px;
      border-radius: 12px;
      min-height: 32px;
  }
}
.step-details {
  display: flex;
  min-width: 240px;
  flex-direction: column;
  align-items: stretch;
  color: rgba(31, 32, 40, 1);
  font-weight: 600;
  justify-content: center;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 34px;
}
@media (max-width: 767px) {
  .step-details {
      max-width: 100%;
  }
}
.step-title {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -1.28px;
  margin: 0;
}
@media (max-width: 767px) {
  .step-title {
    font-size: 16px;
  }
  .step-description {
    font-size: 14px;
  }
}
.step-description {
  font-size: 16px;
  line-height: 19px;
  letter-spacing: -0.64px;
  margin: 4px 0 0 0;
}
.process-grid-bottom {
  display: flex;
  margin-top: 12px;
  width: 100%;
  align-items: center;
  gap: 12px;
  justify-content: start;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .process-grid-bottom {
      max-width: 100%;
  }
}
.process-grid-bottom .process-card {
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
}
.commercial-proposal-section {
  --container-height: 280px;
  border-radius: 40px;
  background-color: rgba(226, 246, 247, 1);
  width: 100%;
  padding-left: 44px;
  overflow: hidden;
  flex: 1;
  margin-top: 80px !important;
  position: relative;
  height: var(--container-height);
}
@media (max-width: 767px) {
  .commercial-proposal-section {
    max-width: 100%;
    padding-left: 20px;
    margin-top: 40px !important;
    .decorative-gallery {
      display: none;
    }
  }
}
.content-wrapper {
  gap: 20px;
  display: flex;
}
@media (max-width: 767px) {
  .content-wrapper {
      flex-direction: column;
      align-items: stretch;
      gap: 0px;
  }
}
.proposal-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 100%;
  margin-left: 0px;
  height: var(--container-height);
}
@media (max-width: 767px) {
  .proposal-content {
      width: 100%;
      height: auto;
      padding-top: 16px;
      padding-bottom: 16px;
  }
}
.proposal-container {
  z-index: 10;
  margin: auto 0;
  min-height: 197px;
  width: 100%;
  align-self: stretch;
}
@media (max-width: 767px) {
  .proposal-container {
      max-width: 100%;
      margin-right: -13px;
      .submit-button {
        width:  50%;
        align-content: center;
      }
      .contact-buttons {
        width: calc(50% - 8px);
        justify-content: center;
      }
   
  }
}
.proposal-header {
  max-width: 100%;
  width: 789px;
  font-family: Raleway, -apple-system, Roboto, Helvetica, sans-serif;
  color: rgba(0, 0, 0, 1);
}
.proposal-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.8px;
  margin: 0;
}
@media (max-width: 767px) {
  .proposal-title {
    max-width: 100%;
    font-size: 22px;
    line-height: 24px;
    text-align: center;
  }
}
.proposal-description {
  transform: rotate(1.3877787807814457e-17rad);
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  margin-top: 12px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .proposal-description {
      text-align: center;
      max-width: 100%;
      font-size: 15px;
      line-height: 17px;
  }
}
.proposal-form-section {
  display: flex;
  margin-top: 39px;
  width: 100%;
  align-items: center;
  gap: 24px;
  justify-content: start;
}
@media (max-width: 767px) {
  .proposal-form-section {
      max-width: 100%;
  }
}
.proposal-form {
  align-self: stretch;
  display: flex;
  min-width: 240px;
  margin: auto 0;
  align-items: center;
  gap: 8px;
  justify-content: start;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .proposal-form {
      max-width: 100%;
  }
}
.phone-input-wrapper {
  border-radius: 12px;
  align-self: stretch;
  min-width: 240px;
  margin: auto 0;
  font-family: Raleway, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 16px;
  color: rgba(168, 173, 181, 1);
  font-weight: 600;
  width: 347px;
}
.phone-input {
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 1);
  border-color: rgba(214, 219, 227, 1);
  border-style: solid;
  border-width: 1px;
  padding: 21px 16px;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  box-sizing: border-box;
}
.phone-input::-moz-placeholder {
  color: rgba(168, 173, 181, 1);
}
.phone-input::placeholder {
  color: rgba(168, 173, 181, 1);
}
@media (max-width: 767px) {
  .phone-input {
      padding-right: 20px;
  }
}
.submit-button {
  align-self: stretch;
  border-radius: 16px;
  background-color: rgba(0, 0, 0, 1);
  margin: auto 0;
  min-height: 56px;
  padding: 18px 24px;
  gap: 10px;
  font-family: Manrope, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 1);
  font-weight: 500;
  line-height: 1;
  border: none;
  cursor: pointer;
}
@media (max-width: 767px) {
  .submit-button {
      padding-left: 20px;
      padding-right: 20px;
  }
}
.contact-buttons {
  display: flex;
  gap: 8px;
  align-items: center;
}
.contact-icon-button {
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 1);
  align-self: stretch;
  display: flex;
  margin: auto 0;
  min-height: 56px;
  padding: 12px;
  align-items: center;
  gap: 10px;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: none;
  cursor: pointer;
}
.contact-icon {
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 24px;
  align-self: stretch;
  margin: auto 0;
}
.contact-icon-rounded {
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 24px;
  border-radius: 1000px;
  align-self: stretch;
  margin: auto 0;
}
.decorative-gallery {
  display: flex;
  height: var(--container-height);
  position: absolute;
  top: 0;
  right: -14px;
  flex-direction: row;
  align-items: stretch;
  line-height: normal;
  justify-content: start;
}
@media (max-width: 767px) {
  .decorative-gallery {
      width: 100%;
      height: 100%;
      svg {
        display: none;
      }
  }
}
.gallery-card {
  width: 33px;
  flex-shrink: 0;
  height: var(--container-height);
  margin-right: -2px;
  filter: blur(1px)
}
@media (max-width: 767px) {
  .gallery-card-final {
      display: none;
  }
}
/* Form interaction states */
.phone-input:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.3);
}
.submit-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.contact-icon-button:hover {
  background-color: rgba(240, 240, 240, 1);
}
/* Accessibility improvements */
.contact-icon-button:focus,
.submit-button:focus,
.phone-input:focus {
  outline: 2px solid rgba(0, 0, 0, 0.5);
  outline-offset: 2px;
}
.benefits-section {
  --container-height: 700px;
  border-radius: 40px;
  background-color: rgba(226, 246, 247, 1);
  display: flex;
  margin-top: 80px !important;
  width: 100%;
  padding: 40px;
  gap: 40px;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  height: 700px;
  position: relative;
  height: var(--container-height);
}
.gallery-card.final {
  height: var(--container-height);
}
@media (max-width: 767px) {
  .benefits-section {
      max-width: 100%;
      margin-top: 16px !important;
      height: unset;
  }
}
.benefits-container {
  display: flex;
  width: 100%;
  flex-direction: column;
  .benefits-description {
    display: none;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    font-family: var(--font-family-raleway);
  }
}
@media (max-width: 767px) {
  .benefits-container {
      max-width: 100%;
      .header-content {
        gap: 12px
      }
      .benefits-header {
        text-align: center;
        justify-content: center;
        line-height: 24px;
        font-size: 22px;
      }
      .benefits-description {
        display: flex;
      }
      .cta-wrapper {
        display: none;
      }
  }
}
.benefits-header {
  z-index: 10;
  display: flex;
  max-width: 100%;
  align-items: center;
  gap: 40px 100px;
  overflow: hidden;
  font-family: var(--font-family-raleway);
  justify-content: space-between;
  flex-wrap: wrap;
}
.header-content {
  align-self: stretch;
  display: flex;
  min-width: 240px;
  margin: auto 0;
  flex-direction: column;
  align-items: center;
  font-size: 40px;
  color: rgba(0, 0, 0, 1);
  font-weight: 600;
  letter-spacing: -0.8px;
  justify-content: center;
}
.main-title {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  color: inherit;
}
.cta-wrapper {
  align-self: stretch;
  margin: auto 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 1);
  font-weight: 500;
  text-align: right;
  width: 227px;
}
.button-text {
  align-self: stretch;
  margin: auto 0;
  min-height: 24px;
  gap: 8px;
  color: rgba(0, 0, 0, 1);
}
.comparison-container {
  align-self: center;
  z-index: 10;
  display: flex;
  max-width: 100%;
  align-items: start;
  gap: 24px;
  font-family: Raleway, -apple-system, Roboto, Helvetica, sans-serif;
  justify-content: start;
  flex-wrap: wrap;
  width: 100%;
  .comparison-bg-mobile {
    display: none;
  }
}
@media (max-width: 767px) {
  .comparison-bg-mobile {
    display: block;
  }

}
.current-state {
  min-width: 240px;
  min-height: 524px;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
@media (max-width: 767px) {
  .current-state {
    max-width: 100%;
    min-height: unset;
  }
}
.section-header {
  display: flex;
  flex-direction: row;
  border-radius: 32px;
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  width: 100%;
  padding: 24px;
  align-items: center;
  overflow: hidden;
  font-size: 32px;
  color: rgba(0, 0, 0, 1);
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: -0.64px;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .section-header {
      max-width: 100%;
      padding: 16px;
      white-space: initial;
  }
}
.section-title {
  align-self: stretch;
  margin: auto 0;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  color: inherit;
}
.section-title-icon {
  width: 40px;
  height: 40px;
}
@media (max-width: 767px) {
  .section-title, .solution-title {
      white-space: initial;
      font-size: 20px !important;
  }

}
.problems-list {
  border-radius: 32px;
  background-color: rgba(255, 255, 255, 1);
  margin-top: 4px;
  min-height: 432px;
  width: 100%;
  padding: 24px 24px 74px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .problems-list {
    max-width: 100%;
    padding: 16px;
    min-height: unset;
  }
}
.problem-item {
  width: 100%;
  line-height: 1.1;
  margin: 0;
}
.problem-item:not(:first-child) {
  margin-top: 24px;
}
@media (max-width: 767px) {
  .problem-item {
    max-width: 100%;
  }
  .problem-item:not(:first-child) {
    margin-top: 12px;
  }
}
.problem-title {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.8px;
  margin: 0;
}
@media (max-width: 767px) {
  .problem-title {
      max-width: 100%;
      font-size: 16px;
  }
}
.problem-description {
  color: rgba(139, 142, 146, 1);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.64px;
  margin: 4px 0 0;
}
@media (max-width: 767px) {
  .problem-description {
    max-width: 100%;
    font-size: 12px;
  }
}
.solution-state {
  min-width: 240px;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .solution-state {
      max-width: 100%;
  }
}
.solution-header {
  align-self: stretch;
  border-radius: 32px;
  background-color: rgba(255, 255, 255, 1);
  width: 100%;
  padding: 24px;
  overflow: hidden;
  font-size: 32px;
  color: rgba(0, 0, 0, 1);
  font-weight: 700;
  letter-spacing: -0.64px;
  flex-direction: row;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .solution-header {
      max-width: 100%;
      padding: 16px;
      font-size: 20px;
      align-items: center;
  }
}
.solution-title {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  color: inherit;
}
.solution-title-icon {
  width: 40px;
  height: 40px;
}
.benefits-list {
  border-radius: 32px;
  background-color: rgba(255, 255, 255, 1);
  margin-top: 4px;
  width: 100%;
  padding: 24px;
  overflow: hidden;
  line-height: 1.1;
}
@media (max-width: 767px) {
  .benefits-list {
      max-width: 100%;
      padding: 24px 20px;
  }
}
.benefit-item {
  width: 100%;
  margin: 0;
}
.benefit-item:not(:first-child) {
  margin-top: 24px;
}
@media (max-width: 767px) {
  .benefit-item {
      max-width: 100%;
  }
}
.benefit-title {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.8px;
  margin: 0;
}
@media (max-width: 767px) {
  .benefit-title {
      max-width: 100%;
      font-size: 16px;
  }
}
.benefit-description {
  color: rgba(172, 180, 196, 1);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.64px;
  margin: 4px 0 0;
}
@media (max-width: 767px) {
  .benefit-description {
      max-width: 100%;
      font-size: 12px;
  }
}
.payment-cta-section {
  margin-top: 80px;
  min-height: 362px;
  width: 100%;
  .comparison-bg-mobile {
    display: none;
  }
}
@media (max-width: 767px) {
  .payment-cta-section {
    max-width: 100%;
    margin-top: 40px;
    .comparison-bg-mobile {
      display: block;
    }
  }
}
.cta-container {
  border-radius: 40px;
  background-color: #FAFAFD;
  width: 100%;
  padding: 0;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .cta-container {
    max-width: 100%;
  }
}
.content-wrapper {
  gap: 20px;
  display: flex;
}
@media (max-width: 767px) {
  .content-wrapper {
      flex-direction: column;
      align-items: stretch;
      gap: 0px;
  }
}
.main-content-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 65%;
  margin-left: 0px;
  padding: 44px;
}
@media (max-width: 767px) {
  .main-content-column {
    width: 100%;
    padding: 16px;
  }
}
.content-inner {
  z-index: 10;
  margin-top: auto;
  margin-right: -156px;
  margin-bottom: auto;
  min-height: 274px;
  width: 100%;
  align-self: stretch;
}
@media (max-width: 767px) {
  .content-inner {
      max-width: 100%;
  }
}
.cta-header {
  max-width: 100%;
  width: 789px;
  font-family: Raleway, -apple-system, Roboto, Helvetica, sans-serif;
  color: rgba(0, 0, 0, 1);
}
.main-heading {
  font-size: 40px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.8px;
  margin: 0;
}
@media (max-width: 767px) {
  .main-heading {
    max-width: 100%;
    text-align: center;
    align-content: center;
    font-size: 28px;
  }
}
.steps-description {
  transform: rotate(1.3877787807814457e-17rad);
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .steps-description {
      max-width: 100%;
      padding-left: 12px;
      padding-right: 12px;
      font-size: 14px;
      line-height: 18px;
  }
}
.signup-form {
  display: flex;
  margin-top: 39px;
  width: 100%;
  align-items: start;
  gap: 8px;
  font-size: 16px;
  justify-content: start;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .signup-form {
      max-width: 100%;
  }
}
.input-wrapper {
  border-radius: 12px;
  min-width: 240px;
  font-family: Raleway, -apple-system, Roboto, Helvetica, sans-serif;
  color: rgba(168, 173, 181, 1);
  font-weight: 600;
  max-width: 347px;
}
.email-phone-input {
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 1);
  border-color: rgba(214, 219, 227, 1);
  border-style: solid;
  border-width: 1px;
  padding: 21px 16px;
  width: 100%;
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.email-phone-input::-moz-placeholder {
  color: rgba(168, 173, 181, 1);
}
.email-phone-input::placeholder {
  color: rgba(168, 173, 181, 1);
}
@media (max-width: 767px) {
  .email-phone-input {
      padding-right: 20px;
  }
}
.submit-button {
  align-self: stretch;
  border-radius: 16px;
  background-color: rgba(0, 0, 0, 1);
  min-height: 56px;
  padding: 18px 24px;
  gap: 10px;
  font-family: Manrope, -apple-system, Roboto, Helvetica, sans-serif;
  color: rgba(255, 255, 255, 1);
  font-weight: 500;
  line-height: 1;
  border: none;
  cursor: pointer;
  font-size: 16px;
}
@media (max-width: 767px) {
  .submit-button {
      padding-left: 20px;
      padding-right: 20px;
  }
}
.images-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 35%;
  margin-left: 20px;
}
@media (max-width: 767px) {
  .images-column {
      width: 100%;
  }
}
.glass-container {
  display: flex;
  min-height: 595px;
  align-items: stretch;
  justify-content: start;
}
.decorative-image {
  aspect-ratio: 0.09;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 33px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .decorative-image {
      display: none;
  }
}
.decorative-image-tall {
  aspect-ratio: 0.06;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 33px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .decorative-image-tall {
      display: none;
  }
}
.financial-control-section {
  margin-top: 80px !important;
  display: flex;
  flex-direction: column;
  gap: 40px;
  .landing-title {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .financial-control-section {
    margin-top: 40px !important;
  }
}
.financial-control-content {
  display: flex;
  flex-direction: row;
  overflow: hidden;
  gap: 12px;
  > * {
    background: #E2F3F8;
    background: linear-gradient(133deg, rgba(226, 243, 248, 1) 0%, rgba(210, 249, 242, 1) 100%);
  }
  .features-list {
    padding-left: 20px;
    gap: 20px;
    display: flex;
    flex-direction: column;
    max-width: 346px;
  }
}
@media (max-width: 767px) {
  .financial-control-content {
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
  }
}
.section-header {
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Raleway, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 40px;
  color: rgba(0, 0, 0, 1);
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.8px;
  flex-direction: row;
}
@media (max-width: 767px) {
  .section-header {
    max-width: 100%;
  }
}
.coin-icon {
  display: flex;
  min-height: 32px;
  width: 32px;
}
.main-title {
  margin: 24px 0 0 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
@media (max-width: 767px) {
  .main-title {
    max-width: 100%;
  }
}
.content-container {
  display: flex;
  margin-top: 40px;
  min-height: 568px;
  width: 100%;
  align-items: start;
  gap: 12px;
  justify-content: start;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .content-container {
    max-width: 100%;
  }
}
.content-card {
  border-radius: 40px;
  background-color: rgba(250, 250, 253, 1);
  display: flex;
  min-width: 240px;
  padding: 44px;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  justify-content: start;
  flex: 1;
  flex-shrink: 1;
  /* flex-basis: 22px; */
}
@media (max-width: 767px) {
  .content-card {
    max-width: 100%;
    padding: 20px;
  }
}
.card-content {
  align-self: stretch;
  display: flex;
  min-width: 240px;
  margin: auto 0;
  width: 430px;
  flex-direction: column;
  align-items: stretch;
  justify-content: start;
}
.text-content {
  width: 100%;
  font-family: Raleway, -apple-system, Roboto, Helvetica, sans-serif;
  color: rgba(0, 0, 0, 1);
}
@media (max-width: 767px) {
  .text-content {
    max-width: 100%;
  }
}
.card-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: -0.64px;
  margin: 0;
}
@media (max-width: 767px) {
  .card-title {
    max-width: 100%;
    text-align: center;
    font-size: 22px;
    line-height: 24px;
  }
}
.underlined-text {
  text-decoration: underline;
}
.features-list {
  transform: rotate(1.3877787807814457e-17rad);
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  margin-top: 24px;
}
.demo-button {
  border-radius: 16px;
  background-color: rgba(0, 0, 0, 1);
  align-self: start;
  display: flex;
  margin-top: 40px;
  min-height: 56px;
  padding: 16px 24px;
  align-items: center;
  gap: 10px;
  font-family: Manrope, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 1);
  font-weight: 500;
  line-height: 1;
  justify-content: center;
  border: none;
  cursor: pointer;
  .demo-span-desktop {
    display: block;
  }
  .demo-span-mobile {
    display: none;
  }
}
@media (max-width: 767px) {
  .demo-button {
    padding: 16px 20px;
    align-self: center;

    .button-content {
      justify-content: center;
    }

    .demo-span-desktop {
      display: none;
    }
    .demo-span-mobile {
      display: block;
    }
  }
}
.button-content {
  align-self: stretch;
  display: flex;
  min-width: 240px;
  margin: auto 0;
  align-items: center;
  gap: 8px;
  justify-content: start;
}
.arrow-icon {
  align-self: stretch;
  display: flex;
  margin: auto 0;
  width: 24px;
  flex-shrink: 0;
  height: 24px;
}
.image-container {
  border-radius: 40px;
  min-width: 240px;
  padding: 64px 55px 0;
  overflow: hidden;
  width: 466px;
}
@media (max-width: 767px) {
  .image-container {
    max-width: 100%;
    padding: 26px 20px 0;
    max-height: 207px;
    text-align: center;
  }
}
.dashboard-image {
  aspect-ratio: 0.71;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}
@media (max-width: 767px) {
  .dashboard-image {
    width: 70%;
  }
}
.partners-section {
  margin-top: 80px !important;
  display: flex;
  flex-direction: column;
  gap: 46px;

  .landing-title {
    text-align: center;
  }

  .teams-row-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--card-box-shadow);
    max-width: 100%;
    overflow: hidden;
  }

  .teams-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    .team-member-item {
      width: 124px;
      height: 124px;
      border-radius: 33px;
      white-space: nowrap;
      flex-shrink: 0;
      outline: 3px solid white;
      outline-offset: -2px;
      margin-right: -24px;
      background: #E8EDF3;
    }
    .teams-etc {
      background-color: black;
      color: white;
      font: var(--font-family-raleway);
      font-weight: 600;
      font-size: 37px;
      text-align: center;
      align-items: center;
      justify-content: center;
    } 
  }

  .teams-row-text {
    font-size: 18px;
    font: var(--font-family-raleway);
    color: black;
    font-weight: 600;
    line-height: 120%;
  }

  .benefits-cards-container {
    display: flex;
    flex: 1;
    flex-direction: row;
    gap: 8px;
    .benefit-card {
      padding: 24px;
      background-color: white;
      border-radius: 24px;
      box-shadow: var(--card-box-shadow);
      display: flex;
      flex: 1;
      gap: 24px;
      flex-direction: column;
    }

    .benefit-icon-container {
      background-color: black;
      border-radius: 16px;
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .benefit-icon-row {
      display: flex;
      flex-direction: row;
      align-items: center;
      flex-wrap: wrap;
      flex: 1;
      > img {
        width: 60px;
        height: 60px;
        margin-right: -20px;
      }
    }
      
    .benefit-icon {
      width: 24px;
    }

    .benefit-text {
      font: var(--font-family-raleway);
      font-size: 18px;
      font-weight: 600;
      color: #1F2028;
    }
  }
}
@media (max-width: 767px) {
  .partners-section {
    width: 100%;
    .benefits-cards-container {
      flex-direction: column;
      .benefit-card {
        align-items: center;
        flex-direction: row;
      }
      .benefit-text {
        flex: inherit
      }
    }
  }
}
/* FAQ section */
.faq-section {
  margin-top: 80px !important;
  width: 100%;
}
@media (max-width: 767px) {
  .faq-section {
    margin-top: 40px !important;
    .faq-title {
      font-size: 22px !important;
      line-height: 28px !important;
    }
  }
}
.faq-container {
  width: 100%;
}
.faq-title {
  text-align: center;
  color: rgba(12, 18, 24, 1);
  font-family:
    Gilroy,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-weight: 600;
  line-height: 1.2;
  font-size: 40px;
  color: #1F2028;
}
.accordion-container {
  margin-top: 16px;
  width: 100%;
  font-family:
    Raleway,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
}
.accordion-item {
  border-radius: 16px;
  background-color: rgba(245, 247, 250, 1);
  width: 100%;
  overflow: hidden;
  padding: 24px;
}
.accordion-item:first-child {
  margin-bottom: 0;
}
.accordion-item:not(:first-child) {
  margin-top: 12px;
}
.accordion-header {
  border-radius: 8px;
  display: flex;
  width: 100%;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  color: rgba(12, 18, 24, 1);
  font-weight: 700;
  justify-content: start;
}
.accordion-title {
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  font-size: 16px;
  font-weight: 700;
}
.accordion-icon {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 32px;
  height: 32px;
  box-shadow: var(--card-box-shadow);
  align-self: stretch;
  flex-shrink: 0;
  background: white;
  border-radius: 100%;
  cursor: pointer;
}
.accordion-item.expanded {
  .accordion-icon{
    transform: rotate(180deg);
  }
}
.accordion-content {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  justify-content: start;
  will-change: max-height;
  transition: max-height 300ms ease;
  max-height: 0;
  overflow: hidden;
 
}
.accordion-text {
  color: rgba(12, 18, 24, 1);
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}
.read-reviews {
  align-self: start;
  display: flex;
  margin-top: 16px;
  min-height: 24px;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
  text-align: right;
  justify-content: center;
}
.read-reviews-text {
  display: flex;
  gap: 8px;
  background:  linear-gradient(52deg, #58D3C7 0%, #5BB6FB 51%, #A88BF8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.payment-landing {
  display: flex;
  width: 100%;
  min-height: 824px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
  margin-top: 80px;
  overflow: hidden;

  .container {
    display: flex;
    width: 100%;
    max-width: 1100px;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  
  .hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    position: relative;
  }
  
  .wallet-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .wallet-icon {
    width: 32px;
    height: 32px;
    position: relative;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
  }
  
  .main-title {
    width: 802px;
    color: #000;
    text-align: center;
    font-family: 'Raleway', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.8px;
    position: relative;
    gap: 4px;
  }

  @media (max-width: 767px) {
    .main-title {
      font-size: 22px;
    }
  }
  
  .subtitle {
    color: #a2a3ad;
    text-align: center;
    font-family: 'Raleway', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.32px;
    position: relative;
    gap: 4px;
  }
  
  .background-circle {
    width: 2000px;
    aspect-ratio: 1.2;
    position: absolute;
    bottom: -148%;
    background: #fafafd;
    z-index: -1;
    border-radius: 50%;
  }
  
  @media (max-width: 767px) {
    .background-circle {
      display: none;
    }
  }
  
  .content-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
  }
  
  .aquiring-benefits-section {
    display: flex;
    width: 652px;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    border-radius: 40px;
    background: linear-gradient(110deg, #d2f9f2 2.54%, #e2f3f8 100%), #000;
    position: relative;
  }
  
  @media (max-width: 767px) {
    .aquiring-benefits-section {
      width: 100%;
      padding: 40px;
      border-radius: 40px;
    }
    .aquiring-benefits-title {
      width: 100% !important;
      text-align: center;
    }
  }
  
  .aquiring-benefits-title {
    width: 436px;
    color: #000;
    font-feature-settings: "liga" off, "clig" off;
    font-family: 'Raleway', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 25px;
    position: relative;
  }
  
  .aquiring-benefits-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
    position: relative;
    list-style: none;
    .aquiring-benefit-item {
      display: flex;
      align-items: center;
      gap: 8px;
      align-self: stretch;
      position: relative;
    }
  
    .aquiring-benefit-text {
      color: #000;
      text-align: center;
      font-family: 'Raleway', -apple-system, Roboto, Helvetica, sans-serif;
      font-size: 16px;
      font-weight: 400;
      letter-spacing: -0.32px;
      position: relative;
      gap: 4px;
    }
  }
  
  
  .check-icon {
    width: 16px;
    height: 16px;
    fill: #000;
    position: relative;
    flex-shrink: 0;
  }
  
  .contact-form {
    display: flex;
    width: 652px;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-radius: 40px;
    box-shadow: 0px 4px 24px 0px rgba(167, 164, 186, 0.25);
    position: relative;
    background-color: #fff;
  }

  @media (max-width: 767px) {
    .contact-form {
      width: 100%;
      padding: 40px;
      border-radius: 40px;
      overflow: hidden;
    }
  }
  
  .form-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 80px;
    align-self: stretch;
    position: relative;
  }
  
  .form-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
    position: relative;
  }
  
  .phone-input {
    max-width: 378px;
    height: 56px;
    flex-shrink: 0;
    overflow: hidden;
    color: #a8adb5;
    font-variant-numeric: lining-nums tabular-nums;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: 'Raleway', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    padding: 17px 91px 15px 16px;
    border-radius: 16px;
    border: 1px solid #d6dbe3;
    background-color: #fff;
    flex: 1;
  }
  
  .phone-input::-moz-placeholder {
    color: #a8adb5;
  }
  
  .phone-input::placeholder {
    color: #a8adb5;
  }

  @media (max-width: 767px) {
    .phone-input {
      width: 100%;
      padding: 17px 16px;
      font-size: 14px;
      line-height: 20px;
      height: 48px;
      border-radius: 12px;
    }
  }
  
  .submit-button {
    color: #fff;
    font-feature-settings: "liga" off, "clig" off;
    font-family: 'Manrope', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    position: relative;
    height: 56px;
    padding: 12px 24px;
    gap: 10px;
    border-radius: 16px;
    -webkit-backdrop-filter: blur(12.5px);
            backdrop-filter: blur(12.5px);
    cursor: pointer;
    background-color: #000;
    border: none;
    white-space: nowrap;
  }
  
  .social-links {
    display: flex;
    align-items: center;
    align-content: center;
    gap: 8px;
    flex-wrap: wrap;
    position: relative;
  }
  
  .social-icons {
    display: flex;
    width: 177px;
    align-items: center;
    align-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
  }
  
  .social-link {
    display: flex;
    width: 32px;
    height: 32px;
    padding: 4px;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 8px;
    background-color: #fff;
    text-decoration: none;
  }
  
  .social-link.telegram {
    border-radius: 100px;
  }
  
  .social-link svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }
  
  .youtube-placeholder {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    color: #000;
  }
  
}
/* Responsive Design */
@media (max-width: 767px) {
  .payment-landing {
      padding: 30px 15px;
      gap: 30px;
      min-height: unset;
      margin-top: 40px;
      margin-bottom: 40px;
  }
  .payment-landing .phone-input {
      width: 100%;
      padding: 17px 16px 15px 16px;
  }

  .container {
      max-width: 100%;
      gap: 30px;
  }

  .payment-landing .main-title {
    width: 100%;
    font-size: 22px;
    letter-spacing: -0.64px;
  }

  .subtitle {
    font-size: 14px;
    letter-spacing: -0.28px;
    width: 100%;
    text-align: center;
    font-size: 14px;
    letter-spacing: -0.28px;
  }

  .benefits-section {
      width: 100%;
      max-width: 500px;
      padding: 30px;
      gap: 20px;
  }

  .benefits-title {
      width: 100%;
      font-size: 20px;
      line-height: 22px;
  }

  .contact-form {
      width: 100%;
      max-width: 500px;
      padding: 30px;
  }

  .form-row {
      flex-direction: column;
      gap: 12px;
  }

  .phone-input {
      width: 100%;
      padding: 17px 16px 15px 16px;
  }

  .submit-button {
      width: 100%;
      align-self: stretch;
  }
}
@media (max-width: 640px) {
  .payment-landing {
      padding: 20px 10px;
      gap: 20px;
  }

  .hero-section {
      gap: 16px;
  }

  .hero-content {
      gap: 12px;
  }

  .main-title {
      font-size: 24px;
      letter-spacing: -0.48px;
      line-height: 1.2;
  }

  .subtitle {
      font-size: 12px;
      letter-spacing: -0.24px;
  }

  .benefits-section {
      padding: 20px;
      gap: 24px;
      border-radius: 20px;
  }

  .benefits-title {
      font-size: 18px;
      line-height: 20px;
  }

  .benefits-list {
      gap: 8px;
  }

  .benefit-text {
      font-size: 14px;
      letter-spacing: -0.28px;
      text-align: left;
  }

  .contact-form {
      padding: 20px;
      border-radius: 20px;
  }

  .phone-input {
      font-size: 14px;
      line-height: 20px;
      height: 48px;
      padding: 12px 16px;
      border-radius: 12px;
  }

  .submit-button {
      font-size: 14px;
      line-height: 18px;
      height: 48px;
      padding: 10px 20px;
      border-radius: 12px;
  }

  .social-icons {
      width: 100%;
      justify-content: center;
      gap: 12px;
  }
}
.footer-container {
    border-radius: 40px 40px 0px 0px;
    background-color: rgba(0, 0, 0, 1);
    display: flex;
    padding: 39px 40px;
    flex-direction: column;
    overflow: hidden;
    align-items: stretch;
    justify-content: center;
    align-items: center;
}
@media (max-width: 767px) {
    .footer-container {
        padding: 39px 20px;
    }
}
.footer-content {
    display: flex;
    min-height: 320px;
    width: 100%;
    max-width: 1360px;
    align-items: start;
    gap: 40px 80px;
    justify-content: start;
}
@media (max-width: 767px) {
    .footer-content {
        max-width: 100%;
    }
}
.footer-main {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    min-width: 240px;
    width: 100%;
    align-items: start;
    gap: 40px 80px;
    justify-content: start;
    flex: 1;
    flex-shrink: 1;
    flex-basis: 0%;
}
@media (max-width: 767px) {
    .footer-main {
        max-width: 100%;
    }
}
.brand-section {
    align-self: stretch;
    z-index: 0;
    display: flex;
    min-width: 240px;
    flex-direction: column;
    align-items: stretch;
    font-family: Raleway, -apple-system, Roboto, Helvetica, sans-serif;
    justify-content: start;
    width: 361px;
}
.brand-info {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
}
.logo-container {
    align-self: start;
    display: flex;
    align-items: center;
    gap: 19px;
    font-size: 39px;
    color: rgba(255, 255, 255, 1);
    font-weight: 700;
    justify-content: start;
}
.logo-image {
    aspect-ratio: 1;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
    width: 58px;
    align-self: stretch;
    margin: auto 0;
    flex-shrink: 0;
}
@media (max-width: 767px) {
    .logo-image {
        width: 37px;
    }
    .brand-name {
        font-size: 24px;
        font: vatar(--font-family-raleway);
        font-weight: 600;
    }
}
.brand-name {
    align-self: stretch;
    margin: auto 0;
}
.brand-description {
    color: rgba(116, 116, 116, 1);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin-top: 16px;
}
.legal-links {
    align-self: start;
    margin-top: 32px;
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
    line-height: 32px;
}
.legal-link {
    margin-top: 16px;
    color: white;
    text-decoration: none;
    display: block;
}
.navigation-section {
    z-index: 0;
    display: flex;
    min-width: 240px;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
    flex: 1;
    flex-shrink: 1;
    flex-basis: 30px;
}
@media (max-width: 767px) {
    .navigation-section {
        max-width: 100%;
    }
}
.footer-container .nav-links {
    align-self: start;
    font-family: Raleway, -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
    line-height: 32px;
    display: flex;
    flex-direction: column;
}
.social-section {
    display: flex;
    margin-top: 40px;
    width: 100%;
    align-items: start;
    gap: 40px;
    justify-content: start;
}
@media (max-width: 767px) {
    .social-section {
        max-width: 100%;
    }
}
.social-container {
    width: 177px;
}
.social-title {
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    font-family: Raleway, -apple-system, Roboto, Helvetica, sans-serif;
    font-weight: 600;
    line-height: 32px;
}
.social-icons {
    display: flex;
    margin-top: 24px;
    width: 100%;
    align-items: center;
    gap: 16px;
    justify-content: start;
    flex-wrap: nowrap;
}
.social-icon-wrapper {
  border-radius: 100px;
  align-self: stretch;
  display: flex;
  margin: auto 0;
  align-items: start;
  background-color: white;
  padding: 4px;
  box-sizing: content-box;
}
.social-icon {
    width: 26px;
}
.social-icon-square {
    border-radius: 100px;
    align-self: stretch;
    display: flex;
    margin: auto 0;
    align-items: start;
    gap: 8px;
    overflow: hidden;
    justify-content: start;
    flex-grow: 1;
    flex-shrink: 1;
    width: 26px;
}
.social-icon-square .social-icon {
    border-radius: 8px;
}
.social-icon-last {
    align-self: stretch;
    display: flex;
    margin: auto 0;
    align-items: start;
    gap: 8px;
    overflow: hidden;
    justify-content: start;
    flex-grow: 1;
    flex-shrink: 1;
    width: 26px;
}
.cta-card {
    border-radius: 24px;
    background-color: #FAFAFD;
    position: absolute;
    z-index: 0;
    min-width: 240px;
    padding: 30px 30px 0 30px;
    overflow: hidden;
    right: 0px;
    bottom: 0px;
    width: 587px;
    height: 256px;
}
@media (max-width: 767px) {
    .cta-card {
        max-width: 100%;
        position: initial;
        padding: 16px;
        overflow: hidden;
        width: 100%;
        height: auto;
    }
}
.cta-content {
    gap: 20px;
    display: flex;
}
@media (max-width: 767px) {
    .cta-content {
        gap: 0px;
    }
}
.cta-text-column {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    line-height: normal;
    width: 59%;
    margin-left: 0px;
}
@media (max-width: 767px) {
    .cta-text-column {
        width: 100%;
    }
}
.cta-text-content {
    z-index: 10;
    margin-right: -65px;
    min-height: 196px;
    font-family: Raleway, -apple-system, Roboto, Helvetica, sans-serif;
}
.cta-text-wrapper {
    max-width: 100%;
    width: 364px;
    color: rgba(0, 0, 0, 1);
}
@media (max-width: 767px) {
    .cta-text-wrapper {
        max-width: 100%;
        width: 100%;
    }
}
.cta-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.48px;
}
.cta-subtitle {
    transform: rotate(1.3877787807814457e-17rad);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    margin-top: 12px;
}
.cta-button-wrapper {
    margin-top: 20px;
    width: 227px;
    max-width: 100%;
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    text-align: right;
}
.cta-button {
    border-radius: 16px;
    background-color: rgba(0, 0, 0, 1);
    display: flex;
    width: 100%;
    /* padding: 16px 24px; */
    font-size: 16px;
    line-height: 24px;
    font-family: var(--font-family-raleway);
    align-items: center;
    gap: 8px;
    justify-content: center;
    border: none;
    cursor: pointer;
}
@media (max-width: 767px) {
    .cta-button {
        padding: 16px 20px;
    }
}
.cta-button-text {
    align-self: stretch;
    margin: auto 0;
    min-height: 24px;
    gap: 8px;
}
.cta-image-column {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    line-height: normal;
    width: 41%;
    margin-left: -20px;
}
@media (max-width: 767px) {
    .cta-image-column {
        width: 100%;
        margin-bottom: -110px;
    }
}
.cta-image-wrapper {
    display: flex;
    margin-top: 60px;
    flex-grow: 1;
    padding: 10px 10px 10px 10px;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    width: 270px;
}
.cta-image {
    aspect-ratio: 1.7;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
    width: 100%;
}
/* Затемнение фона */
.modal {
  display: none; /* по умолчанию скрыто */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}
/* Контент модального окна */
.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border-radius: 8px;
  width: 600px;
  /* height: 300px; */
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  position: relative;
}
.modal-content.mobile-menu-content {
  background-image: url('/assets/img/landing/Glass.png');
  background-size: cover;
  height: 100vh;
  padding: 0;
  margin: 0;
  justify-content: flex-start;
  padding-top: 28px;
  padding-left: 16px;
  padding-right: 16px;
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    .other-links {
      display: flex;
      flex-direction: column;
      gap: 24px;
      .other-link {
        padding: 8px;
      }
    }

  
  }
  .cta-button {
    padding: 14px 24px;
    width: 100%;
    font-size: 16px;
    line-height: 20px;
  }

  .help-button {
    padding: 8px;
    text-align: left;
    justify-content: flex-start;
  }

  .proposal-content {
    margin-top: 36px;
    border: 1px solid #D6DBE3;
    padding: 16px;
    background: white;
    border-radius: 16px;
  }
}
/* Кнопка закрытия */
.close {
  color: #aaa;
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}
.close:hover {
  color: #000;
}
.modal-overlay {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.modal-container {
  width: 100%;
  max-width: 375px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  position: relative;
}
.modal-body-mobile-menu {
  display: flex;
  width: 100%;
  display: flex;
  gap: 24px;
  flex-direction: column;

}
.close-button {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}
.close-button:hover {
  opacity: 0.7;
}
.close-button:focus {
  outline: 2px solid #3B82F6;
  outline-offset: 2px;
  border-radius: 4px;
}
.modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}
.success-icon-wrapper {
  margin-bottom: 32px;
}
.success-icon {
  width: 120px;
  height: 120px;
  background-color: #d1fae5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-title {
  color: #1f2937;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 16px;
}
.modal-description {
  color: #6b7280;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 48px;
  max-width: 280px;
}
.action-button {
  width: 100%;
  background: linear-gradient(to right, #3B82F6, #06B6D4);
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  padding: 16px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: Inter, sans-serif;
}
.action-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}
.action-button:focus {
  outline: 2px solid #3B82F6;
  outline-offset: 2px;
}
.action-button:active {
  transform: translateY(0);
}
/* Responsive adjustments */
@media (max-width: 375px) {
  .modal-container {
      padding: 0 16px;
  }

  .close-button {
      top: 16px;
      right: 16px;
  }

  .modal-title {
      font-size: 22px;
      line-height: 28px;
  }

  .modal-description {
      font-size: 15px;
      line-height: 22px;
      max-width: 260px;
  }
}
@media (min-width: 768px) {
  .modal-container {
      max-width: 400px;
      padding: 0 32px;
  }

  .close-button {
      top: 32px;
      right: 32px;
  }
}
#modal-equiring,
#modal-demo {
  .modal-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  
  .modal-container {
    border-radius: 16px 16px 0px 0px;
    box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.11);
    max-width: 375px;
    width: 100%;
    background-color: rgba(255, 255, 255, 1);
  }
  
  /* Modal header */
  .modal-header {
    border-radius: 12px 12px 0px 0px;
    background-color: rgba(255, 255, 255, 1);
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    padding: 6px 6px;
  }
  
  .close-button {
    position: initial;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .close-icon {
    aspect-ratio: 1;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
    width: 32px;
    border-radius: 24px;
  }
  
  /* Modal content */
  .modal-content {
    background-color: rgba(255, 255, 255, 1);
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: 16px 16px 52px;
    max-width: 375px;
  }
  
  .modal-body {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
  }
  
  .content-wrapper {
    width: 100%;
    flex-direction: column;

  }
  
  /* Text section */
  .text-section {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    font-family: Raleway, -apple-system, Roboto, Helvetica, sans-serif;
    color: var(--Text-Dark, #0a0d27);
    text-align: center;
    justify-content: center;
  }
  
  .modal-title {
    color: var(--Text-Dark, #0a0d27);
    font-variant-numeric: lining-nums tabular-nums;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: unset;
  }
  
  .modal-description {
    color: var(--Text-Dark, #0a0d27);
    font-variant-numeric: lining-nums tabular-nums;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-top: 8px;
    margin-bottom: 0px;
  }
  
  /* Form styles */
  .contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;

    .text-input {
      cursor: default;
    }

    .input-field {
      font-family: Raleway;
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
    }

    .input-field .asterisk {
      color: #58d3c7;
      width: 7px;
      margin-left: 2px;
   
    }
  }
  
  .form-field {
    width: 100%;
  }
  
  .form-field:not(:first-child) {
    margin-top: 8px;
  }
  
  .field-wrapper {
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 1);
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 16px;
    border: 1px solid rgba(227, 231, 237, 1);
    cursor: text;
  }
  
  .optional-field {
    color: rgba(165, 175, 191, 1);
    font: 500 16px Raleway, -apple-system, Roboto, Helvetica, sans-serif;
  }
  
  .field-content {
    display: flex;
    align-items: start;
    justify-content: start;
  }
  
  .field-placeholder {
    color: rgba(165, 175, 191, 1);
    font: 500 16px Raleway, -apple-system, Roboto, Helvetica, sans-serif;
  }
  
  .required-asterisk {
    color: #58d3c7;
    width: 7px;
    font: 400 15px/1.6 MegaFon Graphik LC, -apple-system, Roboto, Helvetica, sans-serif;
  }
  
  /* Form actions */
  .form-actions {
    margin-top: 40px;
    width: 100%;
    color: rgba(255, 255, 255, 1);
    text-align: right;
    font: 500 16px/1 Manrope, -apple-system, Roboto, Helvetica, sans-serif;
  }
  
  .submit-button {
    border-radius: 16px;
    background-color: rgba(0, 0, 0, 1);
    display: flex;
    width: 100%;
    align-items: center;
    gap: 8px;
    justify-content: center;
    padding: 16px 24px;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 1);
    font: 500 16px/1 Manrope, -apple-system, Roboto, Helvetica, sans-serif;
  }
  
  .button-content {
    align-self: stretch;
    display: flex;
    min-height: 24px;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin: auto 0;
  }
  
  .button-text {
    align-self: stretch;
    margin: auto 0;
  }
  
  /* Hover and focus states */
  .close-button:hover {
    opacity: 0.8;
  }
  
  .submit-button:hover {
    background-color: rgba(0, 0, 0, 0.9);
  }
  
  .field-wrapper:hover {
    border-color: rgba(200, 210, 220, 1);
  }
  
  .field-wrapper:focus-within {
    border-color: #58d3c7;
    outline: none;
  }
  
  /* Responsive adjustments */
  @media (max-width: 400px) {
    .modal-container {
        max-width: 100%;
        margin: 0 10px;
    }
  
    .modal-header {
        padding: 6px 20px;
    }
  }
  
}
:root {
  --header-height: 72px;
  --container-width: 1100px;
  --mobile-width-break: 767px;
}
* {
  font-feature-settings: 'lnum' 1;
}
.container {
  max-width: var(--container-width);
  margin: 0 auto;
}
.landing-header-wrapper {
  display: flex;
  justify-content: center;
  padding-left: 40px;
  padding-right: 40px;
  border-radius: 16px;
  z-index: 1000;
  transition: transform 0.3s ease;
  position: fixed;
  top: 0;
  width: 100%;
}
@media(max-width: 767px) {
  .landing-header-wrapper {
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
  }
}
.landing-header-wrapper.hidden {
  transform: translateY(-100%);
}
.app-container {
  margin-top: 80px;
}
/* Auto-scrolling support */
.popular-section .scrollable-container-inner {
  transition: scroll-left 0.3s ease;
  scroll-behavior: smooth;
}
.banner-section {
  padding-top: calc(var(--header-height) + 66px);
  padding-bottom: 77px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(3, 191, 150, 0.22) 0%, rgba(255, 255, 255, 0.22) 100%);
  background-position-x: -20vw;
  background-position-y: -70px;
  background-repeat: no-repeat;

  .banner-content {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 33px;
    min-height: 500px;
    justify-content: space-between;
  }

  .banner-title {
    font-family: var(--font-family-raleway);
    font-weight: 600;
    font-size: 64px;
    line-height: 56px;
    letter-spacing: -4%;
    text-align: center;
    color: #1F2028;
  }

  .benefit-cards {
    display: flex;
    flex-direction: row;
    gap: 12px;
  }

  @media(max-width: 767px) {
    .banner-title {
      font-size: 28px;
      line-height: 34px;
    }
    .benefit-cards {
      flex-direction: column;
    }
  }

  .benefit-card {
    background: #FFFFFFA6;
    border: 1px solid;
    max-width: 320px;
    border-color: #a0a0a021;
    padding: 24px;
    display: flex;
    gap: 16px;
    border-radius: 24px;
    span {
      font-family: var(--font-family-raleway);
      font-weight: 500;
      font-size: 16px;
      line-height: 20px;
    }
    img {
      width: 68px;
      height: 68px;
    }
  }
}
@media (max-width: 767px) {
  .banner-section {
    padding-top: var(--header-height);
    padding-bottom: 40px;
  }
}
.partners-section {
  .marquee {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
  }
  
  .marquee__inner {
    display: inline-flex;
    animation: marquee-scroll 30s linear infinite;
    gap: 12px;
  }
  
  .marquee__inner .marquee-item {
    padding: 0 2rem;
    font-size: 1.5rem;
    background: #F8FDFC;
    border-radius: 16px;
    align-items: center;
    display: flex;
    border: 1px solid #a0a0a038;
  }
  
}
@media (max-width: 767px) {
  .partners-section {
    margin-top: 40px !important;
  }
}
.four-steps {
  margin-top: 66px;

  .landing-title {
    text-align: center;
    margin-bottom: 40px;
  }

  .coins-row {
    display: flex;
    justify-content: center;
    flex: 1;
    margin-bottom: 24px;
    .coins-content {
      display: inline-flex;
      :first-child {
        width: 48px;
        transform: translateX(10px);
      }
      :last-child {
        width: 56px;
        transform: translateX(-10px);
      }
    }
  }
}
@media (max-width: 767px) {
  .four-steps {
    margin-top: 40px;
  }
  .landing-title {
    font-size: 22px !important;
    line-height: 28px !important;
    text-align: center;
  }
}
/* Анимация прокрутки */
@keyframes marquee-scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Misc */
.accent-button {
  border-radius: 16px;
  padding: 16px 24px;
  background: #58D3C7;
  background: linear-gradient(217deg, rgba(88, 211, 199, 1) 0%, rgba(91, 182, 251, 1) 50%, rgba(168, 139, 248, 1) 100%);
  border: none;
  .accent-button__text {
    color: white;
    line-height: 24px;
    font: var(--font-family-raleway);
    font-size: 16px;
  }
}
.landing-title {
  font-size: 40px;
  color: #1F2028;
  font-family: var(--font-family-raleway);
  font-weight: 600;
}
.financial-partners-section {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .financial-partners-section {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
  }
}