body {
  font-family: "Montserrat";
  overflow-x: hidden;
  background-color: #1a1a1a;
  color: #ffffff;
}
p,
h1,
h2,
h3,
a {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

a {
  color: buttontext;
}

header {
  margin-bottom: 64px;
}

/*Header*/

.top-bar {
  margin: 10px 45px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.cryptocoin {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cryptocoin img {
  width: 30px;
  height: 30px;
}

.coin {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 16px;

  white-space: nowrap;
}

.procent {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 16px;
  color: #5dd662;

  white-space: nowrap;
}

.procent-down {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 16px;
  color: #caff33;

  white-space: nowrap;
}

.procent svg {
  width: 12px;
  height: 12px;
}

/*Menu*/

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;

  background-color: #1c1c1c;
  border: 1px solid #262626;
  border-radius: 100px;

  margin: 45px 160px 0;
  padding: 10px 60px;
}

.main-nav .logo img {
  width: 140px;
  height: auto;
}

.menu {
  font-family: "lexend";
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
}
.menu li a {
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  color: #ffffff;
  padding: 12px 24px;
  transition: all 0.3s;
}
.menu li a:hover {
  background-color: #caff33;
  padding: 12px 24px;
  border-radius: 82px;
  color: #000000;
}

.menu li a:focus {
  background-color: #262626;
  padding: 12px 24px;
  border-radius: 82px;
  color: #ffffff;
}

.menu-buttons {
  display: flex;
  gap: 12px;
}

/* Dropdown Menu Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-toggle::after {
  content: "▼";
  font-size: 10px;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(180deg, rgba(38, 38, 38, 0.38) 0%, rgba(140, 140, 140, 0.38) 100%);
  box-shadow: -31px 22px 18.299999237060547px rgba(0, 0, 0, 0.21);
  border-radius: 20px;
  backdrop-filter: blur(4.5px);
  border: 1px solid #262626;
  list-style: none;
  padding: 8px 0;
  margin: 8px 0 0 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  border-radius: 0;
  background: transparent;
  transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
  background-color: #caff33;
  color: #000000;
  margin: 0 8px;
  border-radius: 15px;
}

.sign-up {
  outline: none;
  border: 0;
  background: transparent;
  padding: 14px 30px;

  font-family: "Lexend";
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}

.sign-up:hover {
  background-color: #caff33;
  color: #000000;
  border-radius: 80px;
}

.sign-up:active {
  background-color: #262626;
  color: #ffffff;
  border-radius: 80px;
}

.login {
  background-color: #caff33;
  border: 0;
  padding: 14px 30px;
  border-radius: 80px;

  font-family: "Lexend";
  font-size: 14px;
  font-weight: 400;
}

.menu-toggle {
  display: none;
  background: none;
  cursor: pointer;
  background: #caff33;
  border-radius: 82px;
  padding: 6px 14px;
}

.menu-toggle img {
  width: 28px;
  height: 28px;
}

.burger-menu {
  position: fixed;
  right: 0;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
}

.burger-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #262626, #8c8c8c);
  opacity: 0.65; /* Прозрачность градиента */
  z-index: -1;
}

.burger-menu.active {
  transform: translateX(0);
}

.hidden {
  display: none;
}

@media (max-width: 1440px) {
  header {
    margin-bottom: 16px;
  }
  .top-bar {
    margin: 10px 36px 0;
  }

  .cryptocoin {
    gap: 7px;
  }

  .cryptocoin img {
    width: 22px;
    height: 22px;
  }

  .coin,
  .procent,
  .procent-down {
    font-size: 12px;
  }

  .procent svg {
    width: 9px;
    height: 9px;
  }

  /*Menu*/

  .main-nav {
    border-radius: 75px;
    margin: 32px 120px 0;
  }

  .main-nav .logo img {
    width: 105px;
    height: auto;
  }

  .menu li a {
    font-size: 12px;
  }

  .menu-buttons {
    gap: 22px;
  }

  .sign-up,
  .login {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  * {
    box-sizing: border-box;
  }
  header {
    margin-bottom: 40px;
  }

  .top-bar {
    display: none;
  }

  .main-nav {
    width: 100%;
    padding: 14px 24px;
    margin: 0 auto;
    gap: 0;
  }

  .main-nav .menu,
  .main-nav .menu-buttons {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hidden {
    display: block;
  }

  .menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 999; /* ниже чем .burger-menu (1000) */
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
  }

  .menu-overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  .burger-menu {
    padding: 60px 40px;
  }

  .burger-menu .logo img {
    width: 140px;
    height: auto;
    margin-bottom: 24px;
  }

  .burger-menu .menu {
    display: block;
  }

  .burger-menu ul {
    margin: 0;
    padding: 0;
  }

  .burger-menu .menu li a {
    font-size: 20px;
    display: block; /* чтобы весь li реагировал */
    padding: 0 0 15px;
    margin: 0;
  }

  .burger-menu .menu li a:hover {
    background-color: #caff33;
    color: #000000;
    margin: 15px;
    padding: 12px 24px;
    text-align: center;
  }

  .burger-menu .menu li a:active {
    background-color: #caff33;
    color: #000000;
    margin-left: 15px;
    margin: 15px;
    padding: 12px 24px;
    text-align: center;
  }

  .menu-contact {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .menu-contact .phone,
  .menu-contact .email,
  .menu-contact .location {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 20px;
  }

  .menu-contact p {
    font-family: "Lexend";
    font-size: 16px;
    font-weight: 400;
  }

  .sign-up,
  .login {
    font-size: 18px;
  }

  /* Dropdown в burger-menu */
  .burger-menu .dropdown {
    position: relative;
  }

  .burger-menu .dropdown-menu {
    position: static;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    margin-top: 10px;
    padding: 0;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    max-height: 0;
    overflow: hidden;
    border: none;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .burger-menu .dropdown-menu.show {
    max-height: 200px;
    padding: 10px;
  }

  .burger-menu .dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: background-color 0.2s ease;
  }
  .burger-menu .dropdown-menu li:last-child a {
    padding-bottom: 0;
  }

  .burger-menu .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .burger-menu .dropdown-toggle::after {
    content: "▼";
    font-size: 12px;
    margin-left: 8px;
    transition: transform 0.3s ease;
  }

  .burger-menu .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}

/*Hero Section*/
.hero__section {
  margin: 80px 160px 0;
  display: flex;
  gap: 20px;
}

.hero__section-text .verify {
  background-color: #262626;
  border-radius: 60px;
  padding: 10px 20px;
  white-space: nowrap;
  width: 300px;
}

.hero__section-text .verify img {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}

.hero__section-text .verify p {
  font-family: "Lexend";
  font-size: 16px;
  font-weight: 300;
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}

.hero__section-text h1 {
  font-family: "Lexend";
  font-size: 39px;
  font-weight: 500;
  line-height: 150%;
  margin: 20px 0 30px;
}

.hero__section-text span {
  color: #caff33;
}

.hero__section-text p {
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
}

.hero__section-text .hero__buttons {
  display: flex;
  gap: 28px;
  margin-top: 80px;
}

.book {
  background-color: #caff33;
  border: 0;
  padding: 18px 30px;
  border-radius: 80px;

  font-family: "Lexend";
  font-size: 14px;
  font-weight: 400;
}

.talk {
  background-color: #ffffff;
  border: 0;
  padding: 18px 30px;
  border-radius: 80px;

  font-family: "Lexend";
  font-size: 14px;
  font-weight: 400;
}

.hero__section-image {
  position: relative;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* Выравнивание блока по правому краю */
}

.hero__section-image img {
  width: 600px;
  height: auto;
}

.hero__section-currency {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  background-color: #22251b;
  padding: 10px;
  border-radius: 60px;
  width: 430px;
}

.hero__section-currency p {
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

.hero__section-currency .coins {
  background-color: #1a1a1a;
  border: 1px solid #262626;
  border-radius: 50px;
  padding: 8px;
}

.hidden {
  display: none;
}

.hero__section-currency .coins img {
  width: 34px;
  height: 34px;
}

button:hover,
button:active {
  background-color: #fff;
}

.talk:hover,
.talk:active {
  background-color: #caff33;
}

@media (max-width: 1440px) {
  .hero__section {
    margin: 100px 120px 0;
    gap: 0;
  }

  .hero__section-text .verify {
    padding: 8px 10px;
    width: 260px;
  }

  .hero__section-text .verify img {
    width: 18px;
    height: 18px;
  }

  .hero__section-text .verify p {
    font-size: 14px;
  }

  .hero__section-text h1 {
    font-family: "Lexend";
    font-size: 36px;
    font-weight: 500;
    line-height: 150%;
    margin: 20px 0;
  }

  .hero__section-text p {
    font-size: 16px;
  }

  .hero__section-text span {
    color: #caff33;
  }

  .hero__section-text p {
    font-family: "Lexend";
    font-size: 14px;
    font-weight: 300;
    line-height: 150%;
  }

  .hero__section-text .hero__buttons {
    display: flex;
    gap: 20px;
    margin-top: 60px;
  }

  .hero__section-image img {
    width: 560px;
    height: auto;
  }

  .hero__section-currency {
    gap: 8px;
    padding: 8px;
    border-radius: 60px;
    width: 400px;
  }

  .hero__section-currency .coins {
    background-color: #1a1a1a;
    border: 1px solid #262626;
    border-radius: 50px;
    padding: 6px;
  }

  .hidden {
    display: none;
  }

  .hero__section-currency .coins img {
    width: 34px;
    height: 34px;
  }

  button:hover,
  button:active {
    background-color: #fff;
  }

  .talk:hover,
  .talk:active {
    background-color: #caff33;
  }
}

@media (max-width: 768px) {
  .hero__section {
    flex-direction: column-reverse;
    margin: 40px 16px;
  }

  .hero__section-image {
    display: block;
  }
  .hero__section-image img {
    width: 320px;
  }

  .hidden {
    display: block;
  }

  .hero__section-currency.hidden-mob {
    display: none;
  }

  .hero__section-text .verify {
    background-color: #262626;
    border-radius: 40px;
    padding: 8px;
    white-space: nowrap;
    width: 267px;
  }

  .hero__section-text .verify img {
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
  }

  .hero__section-text .verify p {
    font-family: "Lexend";
    font-size: 14px;
    font-weight: 300;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
  }

  .hero__section-text h1 {
    font-family: "Lexend";
    font-size: 36px;
    font-weight: 500;
    line-height: 150%;
    margin: 15px 0 20px;
  }

  .hero__section-text span {
    color: #caff33;
  }

  .hero__section-text p {
    font-family: "Lexend";
    font-size: 14px;
    font-weight: 300;
    line-height: 150%;
  }

  .hero__section-currency {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    background-color: #22251b;
    padding: 6px 18px;
    border-radius: 60px;
    width: 100%;
  }

  .hero__section-currency p {
    font-family: "Lexend";
    font-size: 12px;
    font-weight: 400;
    line-height: 150%;
  }

  .hero__section-currency .coins {
    background-color: #1a1a1a;
    border: 1px solid #262626;
    border-radius: 50px;
    padding: 6px;
  }

  .hero__section-currency .coins img {
    width: 26px;
    height: 26px;
  }

  .hero__section-text .hero__buttons {
    display: flex;
    gap: 20px;
    margin-top: 60px;
  }

  .book {
    background-color: #caff33;
    border: 0;
    padding: 14px 22px;
    border-radius: 60px;

    font-family: "Lexend";
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
  }

  .talk {
    background-color: #ffffff;
    border: 0;
    padding: 14px 22px;
    border-radius: 60px;

    font-family: "Lexend";
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
  }
}

/*Second Section*/
.second__section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  margin: 80px 160px 0;
}

.second__section-image {
  position: relative;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.second__section-text {
  display: flex;
  flex-direction: column;
  margin-top: 86px;
}

.second__section-text h2 {
  font-family: "Lexend";
  font-size: 39px;
  font-weight: 500;
  line-height: 150%;
  text-align: right;
}

.second__section-text span {
  color: #caff33;
}

.second__section-text p {
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
  margin: 14px 0 20px;
  text-align: right;
}

.discover {
  background-color: #caff33;
  border: 0;
  padding: 18px 30px;
  border-radius: 80px;
  align-self: flex-end;

  font-family: "Lexend";
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 1440px) {
  .second__section {
    margin: 100px 120px 0;
    gap: 60px;
  }

  .second__section-text h2 {
    font-size: 36px;
  }

  .discover {
    background-color: #caff33;
    border: 0;
    padding: 14px 22px;
    border-radius: 6;
    align-self: flex-end;

    font-family: "Lexend";
    font-size: 14px;
    font-weight: 400;
  }

  .payment {
    width: 420px;
  }
}

@media (max-width: 768px) {
  .second__section {
    display: block;
    margin: 40px 16px;
  }

  .second__section-image {
    position: relative;
    display: block;
    margin: 0 auto;
  }

  .second__section-image img {
    width: 223px;
  }

  .second__section-text {
    display: flex;
    flex-direction: column;
    margin-top: 18px;
  }

  .second__section-text h2 {
    font-family: "Lexend";
    font-size: 36px;
    font-weight: 500;
    line-height: 150%;
    text-align: center;
  }

  .second__section-text span {
    color: #caff33;
  }

  .second__section-text p {
    font-family: "Lexend";
    font-size: 14px;
    font-weight: 300;
    line-height: 150%;
    color: #b3b3b3;
    margin: 10px 0 30px;
    text-align: center;
  }

  .discover {
    background-color: #caff33;
    border: 0;
    padding: 14px 22px;
    border-radius: 60px;
    align-self: center;

    font-family: "Lexend";
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
  }
}

/*Three Section*/
.three__section {
  position: relative;
  margin: 80px 160px 0;
  background: linear-gradient(#1c1c1c 100%, #1c1c1c 0%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px 60px;
  z-index: 1;
}

.three__section-content,
.three__section-content-1 {
  display: flex;
  align-items: center;
  gap: 60px;
}

.three__section-text h2 {
  font-family: "Lexend";
  font-size: 39px;
  font-weight: 500;
  line-height: 150%;
}

.three__section-text span {
  color: #caff33;
}

.three__section-text p {
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
  margin: 14px 0 20px;
}

button,
.a-button {
  background-color: #caff33;
  border: 0;
  padding: 14px 22px;
  border-radius: 60px;
  cursor: pointer;

  font-family: "Lexend";
  font-size: 14px;
  font-weight: 400;
}

.three__section-image img,
.three__section-image-1 img {
  width: 400px;
}

.three__section .abstract {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 30%;
  z-index: -1;
}

.three__section-1 {
  position: relative;
  margin: 80px 160px 0;
  background: linear-gradient(#1c1c1c 100%, #1c1c1c 0%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 80px 60px 40px;
  z-index: 1;
}

.three__section-1 .abstract {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 30%;
  z-index: -1;
}

@media (max-width: 1440px) {
  .three__section {
    margin: 100px 120px 0;
    border-radius: 16px;
  }

  .three__section-content {
    display: flex;
    align-items: center;
    gap: 160px;
  }

  .three__section-text h2 {
    font-size: 36px;
  }

  .three__section-image img {
    width: 290px;
  }

  .three__section-1 {
    margin: 100px 120px 0;
    border-radius: 16px;
    padding: 40px 60px;
  }

  .three__section-content-1 {
    display: flex;
    align-items: center;
    gap: 80px;
  }

  .three__section-image-1 img {
    width: 333px;
  }
}

@media (max-width: 768px) {
  .three__section {
    position: relative;
    margin: 20px 16px 0;
    border-radius: 14px;
    padding: 35px;
    z-index: -2;
  }

  .three__section-content,
  .three__section-content-1 {
    flex-direction: column-reverse;
    gap: 0;
  }

  .three__section-image img,
  .three__section-image-1 img {
    width: 285px;
  }

  .three__section .abstract {
    width: 300px;
  }

  .three__section-text h2 {
    font-family: "Lexend";
    font-size: 36px;
    font-weight: 400;
    line-height: 150%;
  }

  .three__section-text span {
    color: #caff33;
  }

  .three__section-text p {
    font-family: "Lexend";
    font-size: 14px;
    font-weight: 300;
    line-height: 150%;
    color: #b3b3b3;
    margin: 19px 0 20px;
  }

  button {
    border: 0;
    padding: 18px 30px;
    border-radius: 80px;
  }

  .three__section-1 {
    position: relative;
    margin: 120px 16px 0;
    border-radius: 14px;
    padding: 35px;
    z-index: -2;
  }

  .three__section-1 .abstract {
    width: 297px;
  }
}

/*4 Section*/
.stack__section {
  margin: 80px 160px 0;
}

.title-2 {
  font-family: "Lexend";
  font-size: 39px;
  font-weight: 500;
  line-height: 150%;
}

.title-2 span {
  color: #caff33;
}

.stack__section-description {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}

.stack__section-description p {
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
  margin: 14px 0 20px;
}

.stack__section-tabs {
  background-color: #1c1c1c;
  border: 1px solid #262626;
  border-radius: 80px;
  padding: 14px;
}

.stack__section-content {
  margin-top: 100px;
  background-color: #1c1c1c;
  padding: 50px;
  border-radius: 20px;
}

.stack__section-column {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.stack__section-descriptions {
  background-color: #1a1a1a;
  border-color: 1px solid #262626;
  border-radius: 16px;
  padding: 30px;
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stack__section-descriptions h3 {
  font-family: "Lexend";
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  margin: 20px 0;
}

.stack__section-descriptions p {
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
}

input[type="radio"] {
  display: none;
}

.tab-content {
  display: none;
}

#tab-btn-1:checked ~ .content-1,
#tab-btn-2:checked ~ .content-2,
#tab-btn-3:checked ~ .content-3 {
  display: block;
}

input#tab-btn-1:checked ~ label[for="tab-btn-1"],
input#tab-btn-2:checked ~ label[for="tab-btn-2"],
input#tab-btn-3:checked ~ label[for="tab-btn-3"] {
  background: #caff33;
  color: #000;

  font-family: "Lexend";
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

.stack__section-tabs label {
  padding: 14px 24px;
  border-radius: 80px;
  background: transparent;
  color: #fff;
  cursor: pointer;

  font-family: "Lexend";
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

.stack__section-tabs {
  display: flex;
  padding: 14px;
  background: #1c1c1c;
  border: 1px solid #262626;
  border-radius: 80px;
}

.stack__section-background {
  background-color: #1c1c1c;
  border-radius: 20px;
  padding: 50px;
  margin-top: 60px;
}

.code {
  width: 70%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.stack__section-icons {
  display: flex;
  justify-content: space-between;
}

.stack__section-develop {
  width: 100%;
  margin-top: 60px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stack__section-develop h3 {
  font-family: "Lexend";
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  margin: 20px 0;
}

.stack__section-develop span {
  color: #caff33;
}

@media (max-width: 1440px) {
  .stack__section {
    margin: 100px 120px 0;
  }

  .title-2 {
    font-size: 36px;
  }

  .stack__section-description p {
    margin-top: 0;
  }

  .stack__section-tabs {
    border-radius: 60px;
    padding: 10px;
  }

  .stack__section-content {
    margin-top: 100px;
    background-color: #1c1c1c;
    padding: 50px;
    border-radius: 20px;
  }

  .stack__section-descriptions {
    padding: 20px;
  }

  .stack__section-descriptions h3 {
    font-size: 16px;
    margin: 16px 0;
  }

  .stack__section-tabs label {
    padding: 10px 16px;
    border-radius: 60px;
  }

  .stack__section-tabs {
    padding: 10px;
    border-radius: 60px;
  }

  .stack__section-background {
    border-radius: 16px;
    padding: 35px;
    margin-top: 80px;
  }

  .code {
    width: 70%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .stack__section-develop img {
    width: 78px;
    height: 78px;
  }

  .stack__section-develop h3 {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .stack__section {
    position: relative;
    background-color: #1c1c1c;
    margin: 20px 16px 0;
    border-radius: 20px;
    padding: 110px 25px 30px;
    z-index: -2;
  }

  .title-2 {
    font-size: 36px;
  }

  .stack__section-description {
    display: block;
  }

  .stack__section-tabs {
    margin-top: 40px;
    border-radius: 60px;
    padding: 12px;
    gap: 0;
  }

  .stack__section-tabs label {
    padding: 10px 18px;
  }

  .stack__section-background {
    background-color: transparent;
    padding: 0;
    margin-top: 70px;
  }

  .stack__section-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .stack__section-descriptions {
    padding: 60px 20px 30px;
    width: auto;
  }

  .Payouts-image {
    width: 258px;
  }

  .code {
    width: 100%;
    margin-bottom: 60px;
  }

  .stack__section-develop {
    margin-top: 0px;
  }

  .stack__section-icons {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .stack__section-develop img {
    width: 60px;
  }
}

/*Solition Section*/
.solition__section {
  display: flex;
  align-items: center;
  gap: 60px;
  margin: 80px 160px 0;
}

.solition__section-image {
  position: relative;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.solition__section-image img {
  width: 550px;
}

.solition__section-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 86px;
}

.solition__section-text h2 {
  font-family: "Lexend";
  font-size: 39px;
  font-weight: 500;
  line-height: 150%;
  text-align: right;
}

.solition__section-text span {
  color: #caff33;
}

.solition__section-text p {
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
  margin: 14px 0 20px;
  text-align: right;
}

.solition__section-text button {
  align-self: flex-end;
}

.solition__section-text button:hover,
.solition__section-text button:active {
  background-color: #fff;
}

@media (max-width: 1440px) {
  .solition__section {
    margin: 100px 120px 0;
  }

  .solition__section-image img {
    width: 480px;
  }

  .solition__section-text {
    margin-top: 0px;
  }

  .solition__section-text h2 {
    font-size: 36px;
  }

  .solition__section-text button {
    align-self: flex-end;
  }
}

@media (max-width: 768px) {
  .solition__section {
    flex-direction: column;
    margin: 60px 16px 0;
    gap: 48px;
  }

  .solition__section-image img {
    width: 100%;
  }

  .solition__section-text {
    margin-top: 0;
  }

  .solition__section-text h2 {
    font-size: 36px;
    text-align: center;
  }

  .solition__section-text p {
    margin: 10px 0 20px;
    text-align: center;
  }

  .solition__section-text button {
    padding: 14px 22px;
    align-self: center;
    font-size: 14px;
  }
}

/* Slider Reviews*/
.review__section {
  margin: 80px 160px 0;
}

.review__section-title h2 {
  text-align: center;
}

.review__section-title p {
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
  margin: 14px 0 80px;
  text-align: center;
}

.slider-container {
  position: relative;
  max-width: 1200px;
  margin: 80px auto;
  overflow: visible;
}

.slider-wrapper {
  overflow: hidden;
  padding: 0 80px;
}

.slider-track {
  display: flex;
}

.slide {
  min-width: calc(90% / 3);
  margin: 0 20px;
  height: 300px;
  display: block;
  text-align: center;
}

.review-text {
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: #ffffff;
  margin: 30px 0;
}

.clients {
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  color: #caff33;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  background: #1c1c1c;
  border: 1px solid #262626;
  cursor: pointer;
  padding: 14px;
  border-radius: 100%;
  width: 62px;
  height: 62px;
  transition: 0.3s;
}

.slider-arrow.left {
  left: 0;
}

.slider-arrow.right {
  right: 0;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}

.fade-left {
  position: absolute;
  top: 0;
  left: 0;
}

.fade-right {
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 1440px) {
  .review__section {
    margin: 100px 120px 0;
  }

  .review__section-title p {
    margin: 10px 0 60px;
  }

  .slider-container {
    position: relative;
    max-width: 1200px;
    margin: 80px auto;
    overflow: visible;
  }

  .slider-arrow {
    padding: 10px;
    width: 44px;
    height: 44px;
  }

  .slider-arrow svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 768px) {
  .review__section {
    margin: 60px 16px 0;
  }

  .review__section-title p {
    margin: 10px 0 40px;
  }

  .slider-container {
    max-width: 350px;
    margin: 80px auto;
    overflow: visible;
  }

  .slider-arrow {
    width: 44px;
    height: 44px;
    padding: 10px;
  }

  .slider-arrow svg {
    width: 24px;
    height: 24px;
  }

  .slider-wrapper {
    overflow: hidden;
    padding: 0px;
  }

  .slide {
    min-width: 100%;
    margin: 0 auto;
    height: auto;
    display: block;
    text-align: center;
  }

  .review-text {
    margin: 35px 60px;
  }

  .clients {
    font-size: 12px;
  }

  .fade-left,
  .fade-right {
    display: none;
  }
}

/*Offer Section*/
.offer__section {
  position: relative;
  display: flex;
  align-items: center;
  gap: 60px;
  margin: 80px 160px 0;
  background: linear-gradient(#1c1c1c 100%, #1c1c1c 0%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 80px;
}

.offer__section .abstract {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 30%;
  z-index: -1;
  width: 298px;
}

.offer__section-text {
  width: 700px;
}

.offer__section-text p {
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
  margin-top: 14px;
}

@media (max-width: 1440px) {
  .offer__section {
    gap: 150px;
    margin: 140px 120px 0;
    padding: 60px;
  }

  .offer__section .abstract {
    width: 221px;
  }

  .offer__section-text {
    width: auto;
  }

  .title-2 {
    font-size: 29px;
  }

  .offer__section-button button {
    padding: 14px 20px;
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .offer__section {
    margin: 90px 16px 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
    border-radius: 20px;
    padding: 30px 25px;
  }

  .offer__section .abstract {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 30%;
    z-index: -1;
    width: 214px;
  }

  .offer__section-text {
    width: auto;
  }

  .offer__section-text h2 {
    text-align: center;
  }

  .offer__section-text p {
    text-align: center;
  }
}

/*Form*/

.meeting-form {
  position: relative;
  margin: 80px 160px 0;
  background: linear-gradient(#1c1c1c 100%, #1c1c1c 0%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 80px;
}

.meeting-form .abstract {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 30%;
  width: 298px;
}

.meeting-form h2 {
  text-align: center;
}

.form-container {
  display: flex;
  gap: 60px;
  margin-top: 80px;
  margin-bottom: 60px;
}
.form-left {
  width: 100%;
}
.calendar {
  background-color: #1a1a1a;
  padding: 50px 70px;
  user-select: none;
  margin-bottom: 26px;
  border-radius: 30px;
}
.calendar-header {
  display: none;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.calendar-day {
  font-family: "Roboto";
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  padding: 20px;
}
.calendar-date {
  text-align: center;
  padding: 20px 16px;
  cursor: pointer;
  border-radius: 50%;

  font-family: "Lexend";
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
}
.calendar-date:hover {
  background-color: #caff33;
  color: #000;
}
.calendar-date.selected {
  background-color: #caff33;
  color: #000;
}

#time {
  width: 100%;
  padding: 24px;
  margin-top: 12px;
  border-radius: 88px;
  background: #1a1a1a;
  color: white;
  border: 1px solid #262626;
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
}

.form-rigth {
  width: 100%;
}

.input-section {
  flex: 1;
  min-width: 300px;
}

.input-icon {
  display: flex;
  align-items: center;
  background: #1a1a1a;
  border-radius: 88px;
  margin-bottom: 24px;
  padding: 24px;
  border: 1px solid #262626;
}

.input-icon input {
  background: none;
  border: none;
  flex-grow: 1;
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
}

.input-icon span {
  color: #caff33;
}

.privacy-text {
  font-family: "Lexend";
  font-size: 12px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
  margin-top: 24px;
}

.submit-button {
  background: #caff33;
  color: black;
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  font-weight: 500;
  cursor: pointer;

  display: block;
  margin: 0 auto;

  font-family: "Lexend";
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

.users h2 {
  margin: 80px 160px 30px;
  text-align: center;
}

.slider-container1 {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
}

.slider-wrapper1 {
  overflow: hidden;
  padding: 0 40px;
}

.slider-track1 {
  display: flex;
}

.slide1 {
  min-width: calc(100% / 7);
  margin: 0 14px;
  display: block;
  text-align: center;
}

.slider-arrow1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 38px;
  height: 38px;
  transition: 0.3s;
}

.slider-arrow1:hover {
  background-color: transparent;
}

.slider-arrow1.left1 {
  left: 0;
}

.slider-arrow1.right1 {
  right: 0;
}

@media (max-width: 1440px) {
  .meeting-form {
    margin: 100px 120px 0;
    padding: 30px;
  }

  .meeting-form .abstract {
    width: 214px;
  }

  .form-container {
    margin-top: 60px;
    margin-bottom: 50px;
  }

  .calendar {
    padding: 40px;
  }

  .calendar-day {
    font-size: 12px;
    padding: 16px;
  }

  .calendar-date {
    font-size: 12px;
    padding: 18px 12px;
  }

  label {
    font-family: "Lexend";
    font-size: 14px;
    font-weight: 300;
    line-height: 150%;
  }

  #time {
    padding: 20px;
    margin-top: 10px;
    border-radius: 60px;
  }

  .input-section {
    min-width: 100%;
  }

  .input-icon {
    border-radius: 60px;
    margin-bottom: 10px;
    padding: 20px;
  }

  .privacy-text {
    margin-top: 20px;
  }

  .users {
    margin: 60px 120px 0;
  }

  .title-2 {
    font-size: 36px;
  }

  .slider-container1 {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .users {
    margin: 60px 16px 0;
  }

  .users h2 {
    margin: 0;
  }

  .slider-container1 {
    max-width: 100%;
    margin: 20px auto;
    overflow: visible;
  }

  .slider-wrapper1 {
    overflow: hidden;
    padding: 0;
  }

  .slide1 {
    min-width: 100%;
    margin: 0 auto;
    height: auto;
    display: block;
    text-align: center;
  }

  .meeting-form {
    margin: 40px 16px 0;
    padding: 25px;
  }

  .meeting-form .abstract {
    width: 298px;
  }

  .form-container {
    flex-direction: column;
    gap: 30px;
    margin-top: 26px;
    margin-bottom: 40px;
  }

  .calendar {
    background-color: #1a1a1a;
    border-radius: 16px;
    padding: 20px 20px 60px;
  }

  .calendar-day {
    font-size: 8px;
    padding: 8px;
  }

  .calendar-date {
    font-size: 8px;
    padding: 11px 8px;
  }

  label {
    font-size: 14px;
  }

  #time {
    padding: 24px;
  }
}

/*FAQ"*/
.faq-section {
  margin: 80px 160px 0px;
}

.faq-section p {
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
  margin: 14px 0 80px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(560px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.faq-item {
  border: 1px solid #262626;
  padding: 50px;
  border-radius: 14px;
  text-align: left;
}

.faq-item h3 {
  font-family: "Lexend";
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

.faq-item p {
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
}

.faq-item.hidden {
  display: none;
}

.faq-toggle {
  background: #1c1c1c;
  color: #ffffff;
  border: 1px solid #262626;
  padding: 18px 24px;
  border-radius: 100px;
  cursor: pointer;
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  display: block;
  margin: 0 auto;
}
.faq-toggle:hover {
  background: #3a3a3a;
}

.faq-toggle svg {
  width: 10px;
  margin-left: 8px;
}

@media (max-width: 1440px) {
  .faq-section {
    margin: 80px 120px 0px;
  }

  .faq-grid {
    gap: 20px;
    margin: 0 auto 20px;
    width: 100%;
  }

  .faq-item {
    padding: 35px;
  }

  .faq-toggle {
    font-size: 14px;
  }

  .faq-toggle svg {
    width: 10px;
    margin-left: 4px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    margin: 40px 16px 0;
  }

  .faq-section p {
    margin-bottom: 60px;
  }

  .faq-grid {
    display: flex;
    flex-direction: column;
  }

  .faq-item {
    padding: 30px 25px;
  }

  .faq-item p {
    margin: 0;
  }
}

/* Footer*/

footer {
  overflow: hidden;
  margin: 60px 160px 0px;
  padding: 100px 0 50px;
}

.footer__section img {
  width: 155px;
  display: block;
  margin: 0 auto;
}

.footer__section .menu {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.footer__section .menu li a {
  font-size: 14px;
  font-weight: 400;
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.footer-contact .email,
.footer-contact .phone,
.footer-contact .location {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-contact p {
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

.footer-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.social {
  display: flex;
  gap: 14px;
}

.footer-block p {
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
  text-align: center;
}

.policy {
  display: flex;
  align-items: center;

  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
}

.policy a {
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
}

@media (max-width: 768px) {
  footer {
    overflow: hidden;
    margin: 60px 16px 0;
    padding: 50px 0 30px;
  }

  .footer__section img {
    width: 142px;
    margin-bottom: 24px;
  }

  .menu-mob {
    display: none;
  }

  ul.menu {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
  }

  .menu li a {
    font-size: 14px;
  }

  .footer-contact {
    flex-wrap: wrap;
  }

  .footer-block {
    flex-direction: column;
    gap: 20px;
  }

  .social img {
    width: 44px;
  }

  .PayOut2025 {
    margin-top: 10px;
  }
}

/* ==================== Smart Routing Engine Animation ==================== */
.routing-engine-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px 40px;
  min-height: 500px;
  gap: 60px;
}

/* Top Card Icon */
.card-icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: float 3s ease-in-out infinite;
}

/* Vertical Connection Line */
.vertical-line {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 80px;
  background: #CAFF33;
  overflow: visible;
}

.horizontal-line {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 3px;
  width: 60px;
  background: #CAFF33;
  overflow: visible;
}

.horizontal-line.left-line {
  right: -60px;
}

.horizontal-line.right-line {
  left: -60px;
}

/* Payment Providers Container */
.payment-providers {
  display: flex;
  flex-direction: column;
  gap: 30px;
  z-index: 5;
}

.payment-providers.left {
  align-items: flex-end;
}

.payment-providers.right {
  align-items: flex-start;
}

/* Provider Card */
.provider-card {
  position: relative;
  background: #262626;
  border: 2px solid #404040;
  border-radius: 12px;
  padding: 20px 30px;
  min-width: 180px;
  transition: all 0.3s ease;
}

.provider-card.active {
  background: #CAFF33;
  border-color: #CAFF33;
}

.provider-card.active .provider-name {
  color: #1A1A1A;
  font-weight: 600;
}

.provider-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.provider-name {
  font-family: "Lexend";
  font-size: 16px;
  font-weight: 500;
  color: #FFFFFF;
}

/* Check Icon */
.check-icon {
  width: 28px;
  height: 28px;
  background: #1A1A1A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #CAFF33;
  font-weight: bold;
  font-size: 18px;
}

/* Loading Icon */
.loading-icon {
  width: 28px;
  height: 28px;
  border: 3px solid #404040;
  border-top-color: #CAFF33;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Animated Arrows */
.arrow-down,
.arrow-right,
.arrow-left {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}

.arrow-down {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px 6px 0 6px;
  border-color: #CAFF33 transparent transparent transparent;
  animation: moveDown 1.5s ease-in-out infinite;
}

.arrow-right {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #CAFF33;
  animation: moveRight 1.5s ease-in-out infinite;
}

.arrow-left {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px 8px 6px 0;
  border-color: transparent #CAFF33 transparent transparent;
  animation: moveLeft 1.5s ease-in-out infinite;
}

/* Central Routing Engine */
.routing-engine {
  position: relative;
  background: linear-gradient(135deg, #0033FF 0%, #0055FF 100%);
  border-radius: 20px;
  padding: 40px;
  max-width: 350px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(0, 51, 255, 0.3);
  z-index: 6;
}

.engine-content h3 {
  font-family: "Lexend";
  font-size: 28px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 15px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.engine-content p {
  font-family: "Lexend";
  font-size: 12px;
  font-weight: 300;
  color: #FFFFFF;
  line-height: 1.6;
}

/* Dots Grid */
.dots-grid {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  grid-template-columns: repeat(3, 8px);
  gap: 8px;
}

.dots-grid .dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes moveDown {
  0% {
    bottom: 80%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes moveRight {
  0% {
    right: 80%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    right: 0;
    opacity: 0;
  }
}

@keyframes moveLeft {
  0% {
    left: 80%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    left: 0;
    opacity: 0;
  }
}

/* Responsive Design */

/* Tablet - Large (1024px and below) */
@media (max-width: 1024px) {
  .routing-engine-container {
    gap: 40px;
    padding: 80px 30px 40px;
  }

  .routing-engine {
    max-width: 300px;
    min-height: 300px;
    padding: 30px;
  }

  .engine-content h3 {
    font-size: 24px;
  }

  .engine-content p {
    font-size: 11px;
  }

  .provider-card {
    min-width: 150px;
    padding: 15px 20px;
  }

  .provider-name {
    font-size: 14px;
  }

  .horizontal-line.left-line {
    right: -40px;
    width: 40px;
  }

  .horizontal-line.right-line {
    left: -40px;
    width: 40px;
  }
}

/* Tablet - Small (768px and below) */
@media (max-width: 768px) {
  .routing-engine-container {
    flex-direction: column;
    padding: 60px 20px 40px;
    gap: 30px;
    min-height: auto;
  }

  .card-icon {
    position: relative;
    left: auto;
    transform: none;
    margin: 0 auto 20px;
    display: block;
  }

  .card-icon svg {
    width: 60px;
    height: 45px;
  }

  .vertical-line {
    display: none;
  }

  .payment-providers {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .payment-providers.left,
  .payment-providers.right {
    align-items: center;
  }

  .provider-card {
    min-width: 140px;
    padding: 15px 20px;
  }

  .provider-name {
    font-size: 13px;
  }

  .check-icon,
  .loading-icon {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }

  .horizontal-line {
    display: none;
  }

  .routing-engine {
    max-width: 100%;
    min-height: auto;
    padding: 30px 25px;
  }

  .engine-content h3 {
    font-size: 22px;
  }

  .engine-content p {
    font-size: 11px;
  }

  .dots-grid {
    grid-template-columns: repeat(3, 6px);
    gap: 6px;
  }

  .dots-grid .dot {
    width: 6px;
    height: 6px;
  }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
  .routing-engine-container {
    padding: 40px 15px 30px;
    gap: 20px;
  }

  .card-icon svg {
    width: 50px;
    height: 38px;
  }

  .payment-providers {
    gap: 12px;
  }

  .provider-card {
    min-width: 120px;
    padding: 12px 15px;
  }

  .provider-name {
    font-size: 12px;
  }

  .check-icon,
  .loading-icon {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }

  .loading-icon {
    border-width: 2px;
  }

  .routing-engine {
    padding: 25px 20px;
    border-radius: 15px;
  }

  .engine-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .engine-content p {
    font-size: 10px;
    line-height: 1.5;
  }

  .dots-grid {
    grid-template-columns: repeat(3, 5px);
    gap: 5px;
    top: 15px;
    right: 15px;
  }

  .dots-grid .dot {
    width: 5px;
    height: 5px;
  }
}

/* ==================== Animated Code Editor ==================== */
.code-editor-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.code-editor {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid #2a2a2a;
}

.code-editor-header {
  background: #2a2a2a;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #3a3a3a;
}

.editor-dots {
  display: flex;
  gap: 8px;
}

.editor-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.editor-dots .dot.red {
  background: #ff5f56;
}

.editor-dots .dot.yellow {
  background: #ffbd2e;
}

.editor-dots .dot.green {
  background: #27c93f;
}

.editor-title {
  font-family: "Lexend", monospace;
  font-size: 13px;
  color: #888;
  font-weight: 400;
}

.code-editor-body {
  padding: 24px;
  overflow-x: auto;
}

.code-editor-body pre {
  margin: 0;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 14px;
  line-height: 1.8;
  color: #e6e6e6;
}

.code-editor-body code {
  display: block;
}

.line-number {
  display: inline-block;
  width: 40px;
  color: #4a4a4a;
  user-select: none;
  text-align: right;
  margin-right: 20px;
}

.code-line {
  opacity: 0;
  animation: typeLine 0.5s forwards;
}

/* Syntax Highlighting */
.keyword {
  color: #ff79c6;
  font-weight: 500;
}

.variable {
  color: #50fa7b;
}

.function {
  color: #8be9fd;
}

.string {
  color: #f1fa8c;
}

.number {
  color: #bd93f9;
}

.property {
  color: #50fa7b;
}

.operator {
  color: #ff79c6;
}

.comment {
  color: #6272a4;
  font-style: italic;
}

/* Typing Animation */
@keyframes typeLine {
  to {
    opacity: 1;
  }
}

.code-line[data-line="1"] {
  animation-delay: 0s;
}

.code-line[data-line="2"] {
  animation-delay: 0.3s;
}

.code-line[data-line="3"] {
  animation-delay: 0.6s;
}

.code-line[data-line="4"] {
  animation-delay: 1s;
}

.code-line[data-line="5"] {
  animation-delay: 1.4s;
}

.code-line[data-line="6"] {
  animation-delay: 1.8s;
}

.code-line[data-line="7"] {
  animation-delay: 2.2s;
}

.code-line[data-line="8"] {
  animation-delay: 2.6s;
}

.code-line[data-line="9"] {
  animation-delay: 3s;
}

.code-line[data-line="10"] {
  animation-delay: 3.4s;
}

.code-line[data-line="11"] {
  animation-delay: 3.8s;
}

.code-line[data-line="12"] {
  animation-delay: 4.2s;
}

.code-line[data-line="13"] {
  animation-delay: 4.6s;
}

.code-line[data-line="14"] {
  animation-delay: 5s;
}

.code-line[data-line="15"] {
  animation-delay: 5.4s;
}

/* Success indicator animation */
.code-line[data-line="15"] .comment {
  color: #caff33;
  font-style: normal;
  font-weight: 600;
}
.code-line[data-line="14"] .comment {
  color: #caff33;
  font-style: normal;
  font-weight: 600;
}
.code-line[data-line="13"] .comment {
  color: #caff33;
  font-style: normal;
  font-weight: 600;
}

/* Responsive Design for Code Editor */
@media (max-width: 768px) {
  .code-editor-container {
    max-width: 100%;
    padding: 0 15px;
  }

  .code-editor-body {
    padding: 16px;
  }

  .code-editor-body pre {
    font-size: 12px;
    line-height: 1.6;
  }

  .line-number {
    width: 30px;
    margin-right: 12px;
  }

  .editor-dots .dot {
    width: 10px;
    height: 10px;
  }

  .editor-title {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .code-editor-body {
    padding: 12px;
  }

  .code-editor-body pre {
    font-size: 11px;
    line-height: 1.5;
  }

  .line-number {
    width: 25px;
    margin-right: 8px;
    font-size: 10px;
  }

  .editor-dots .dot {
    width: 8px;
    height: 8px;
    gap: 6px;
  }

  .editor-title {
    font-size: 11px;
  }
}
