body {
  font-family: "Montserrat";
  overflow-x: hidden;
  background-color: #1a1a1a;
  color: #ffffff;
}
p,
h1,
h2,
h3 {
  margin: 0;
  padding: 0;
}

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: 8px;
    backdrop-filter: blur(10px);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .burger-menu .dropdown-menu.show {
    max-height: 200px;
    padding: 10px 0;
  }

  .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 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 {
  display: flex;
  align-items: center;
  gap: 80px;
  margin: 80px 160px 0;
}

.hero__section-image {
  position: relative;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__section-image img {
  width: 640px;
}
.hero__section-text {
  display: flex;
  flex-direction: column;
}

.hero__section-text h1 {
  font-family: "Lexend";
  font-size: 39px;
  font-weight: 500;
  line-height: 150%;
  text-align: right;
  color: #caff33;
}

.hero__section-text p {
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
  margin: 14px 0 20px;
  text-align: right;
}

button {
  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) {
  .hero__section {
    gap: 80px;
    margin: 100px 120px 0;
  }

  .hero__section-image img {
    width: 527px;
  }

  .hero__section-text h2 {
    font-size: 32px;
  }

  .hero__section-text {
    width: 450px;
  }
}

@media (max-width: 768px) {
  .hero__section {
    display: block;
    margin: 40px 16px 0;
  }

  .hero__section-image {
    position: relative;
    display: block;
    margin: 0 auto;
  }

  .hero__section-image img {
    width: 100%;
  }

  .hero__section-text {
    display: flex;
    flex-direction: column;
    margin-top: 18px;
    width: 100%;
  }

  .hero__section-text h2 {
    font-family: "Lexend";
    font-size: 36px;
    font-weight: 500;
    line-height: 150%;
    text-align: center;
  }

  .hero__section-text span {
    color: #caff33;
  }

  .hero__section-text p {
    font-family: "Lexend";
    font-size: 14px;
    font-weight: 300;
    line-height: 150%;
    color: #b3b3b3;
    margin: 10px 0 30px;
    text-align: center;
  }

  .hero__section-text button {
    background-color: #caff33;
    border: 0;
    padding: 14px 22px;
    border-radius: 60px;
    align-self: center;

    font-family: "Lexend";
    font-size: 14px;
    font-weight: 400;
  }
}

/*Second Section*/
.stack__section-background .abstract {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 30%;
  z-index: -1;
  transform: rotate(90deg);
}

.stack__section-background .abstract img {
  width: 224px;
}

.stack__section-background {
  position: relative;
  z-index: -2;
  background-color: #1c1c1c;
  border-radius: 20px;
  padding: 50px;
  margin: 80px 160px 0;
}

.stack__section-columns {
  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 h3 span {
  color: #caff33;
}

.stack__section-descriptions p {
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
}

@media (max-width: 1440px) {
  .second__section {
    gap: 80px;
    margin: 100px 120px 0;
  }

  .stack__section-background .abstract img {
    width: 190px;
  }

  .stack__section-background {
    padding: 40px;
    margin: 60px 120px 0;
  }

  .stack__section-columns {
    gap: 16px;
  }

  .stack__section-descriptions {
    border-radius: 16px;
    padding: 30px 80px;
  }

  .stack__section-descriptions h3 {
    font-family: "Lexend";
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin: 20px 0;
  }
}

@media (max-width: 768px) {
  .stack__section-background {
    margin: 40px 16px 0;
    background-color: transparent;
    padding: 0;
  }

  .stack__section-background .abstract {
    display: none;
  }

  .stack__section-descriptions {
    border: 1px solid #262626;
    padding: 30px 30px 60px;
  }

  .stack__section-columns {
    flex-direction: column;
    gap: 30px;
  }

  .stack__section-descriptions img {
    width: 68px;
  }
}

/*Three section*/
.three__section {
  display: flex;
  align-items: center;
  gap: 90px;
  margin: 80px 160px 0;
}

.three__section-image {
  position: relative;
  width: fit-content;
  display: flex;
  flex-direction: column;
}

.three__section-text {
  display: flex;
  flex-direction: column;
}

.three__section-text h2 {
  font-family: "Lexend";
  font-size: 39px;
  font-weight: 500;
  line-height: 150%;
  text-align: right;
}

.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;
  text-align: right;
}

@media (max-width: 1440px) {
  .three__section {
    gap: 80px;
    margin: 100px 120px 0;
  }

  .three__section-image img {
    width: 527px;
  }

  .three__section-text h2 {
    font-size: 32px;
  }

  .three__section-text {
    width: 450px;
  }
}

@media (max-width: 768px) {
  .three__section {
    display: block;
    margin: 40px 16px 0;
  }

  .three__section-image {
    position: relative;
    display: block;
    margin: 0 auto;
  }

  .three__section-image img {
    width: 100%;
  }

  .three__section-text {
    display: flex;
    flex-direction: column;
    margin-top: 18px;
    width: 100%;
  }

  .three__section-text h2 {
    font-family: "Lexend";
    font-size: 36px;
    font-weight: 500;
    line-height: 150%;
    text-align: center;
  }

  .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: 10px 0 30px;
    text-align: center;
  }

  .three__section-text button {
    background-color: #caff33;
    border: 0;
    padding: 14px 22px;
    border-radius: 60px;
    align-self: center;

    font-family: "Lexend";
    font-size: 14px;
    font-weight: 400;
  }
}

/*Advantages*/
.map__section {
  margin: 80px 160px;
  text-align: center;
}

.map__section-text p {
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
  margin: 14px 0 30px;
}

.map__section-text button {
  background-color: #caff33;
  border: 0;
  padding: 18px 30px;
  border-radius: 80px;

  font-family: "Lexend";
  font-size: 14px;
  font-weight: 400;
  text-decoration: underline;
  align-self: flex-start;
}

.advantages {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin: 0px 160px;
}

.advantages__block {
  background-color: #1c1c1c;
  border: 1px solid #262626;
  border-radius: 12px;
  padding: 50px;
}

.advantages__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.advantages__title svg {
  width: 30px;
  height: 30px;
}

.advantages__title h3 {
  font-family: "Lexend";
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

.advantages__text p {
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
  margin-top: 20px;
}

@media (max-width: 1440px) {
  .map__section {
    margin: 60px 120px 0 0;
  }

  .map__section-text {
    display: flex;
    flex-direction: column;
  }

  .map__section-text h2 {
    font-size: 32px;
  }

  .advantages {
    margin: 0px 120px;
  }

  .advantages__block {
    border-radius: 10px;
    padding: 40px;
  }

  .advantages__title svg {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 768px) {
  .map__section {
    margin: 40px 16px 0;
    background-color: transparent;
    flex-direction: column;
    gap: 16px;
  }

  .map__section-text {
    text-align: center;
  }

  .map__section-text h2 {
    font-size: 36px;
  }

  .map__section-text button {
    margin: 0 auto;
  }

  .advantages {
    flex-direction: column;
    gap: 26px;
    margin: 40px 16px 0;
  }

  .advantages__block {
    border-radius: 10px;
    padding: 40px;
  }

  .advantages__title svg {
    width: 30px;
    height: 30px;
  }
}

/*Offer Section*/
.offer__section {
  position: relative;
  display: flex;
  align-items: center;
  gap: 60px;
  margin: 100px 160px 0;
  background: linear-gradient(#1c1c1c 100%, #1c1c1c 0%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 80px;
  z-index: 1;
}

.offer__section .abstract {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 30%;
  z-index: -1;
  width: 298px;
}

.offer__section-text {
  width: 700px;
}

.title-2 {
  font-family: "Lexend";
  font-size: 39px;
  font-weight: 500;
  line-height: 150%;
}

.title-2 span {
  color: #caff33;
}

.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: 60px;
    margin: 140px 120px 0;
    padding: 60px;
  }

  .offer__section .abstract {
    width: 221px;
  }

  .offer__section-text {
    width: auto;
  }

  .title-2 {
    font-size: 32px;
  }

  .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;
    z-index: -2;
  }

  .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;
  }
}

/*Solutions*/
.solution__section {
  margin: 80px 160px;
  text-align: center;
}

.solution__advantages {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin: 60px 160px 0;
}

.two {
  margin-top: 30px;
}

.solution__block {
  background-color: #1c1c1c;
  border: 1px solid #262626;
  border-radius: 12px;
  padding: 50px;
  text-align: left;
}

.advantages__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.advantages__title svg {
  width: 30px;
  height: 30px;
}

.advantages__title h3 {
  font-family: "Lexend";
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

.advantages__text p {
  font-family: "Lexend";
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  color: #b3b3b3;
  margin-top: 20px;
}

@media (max-width: 1440px) {
  .solution__section {
    margin: 60px 120px 0;
  }

  .solution-advantages {
    margin: 0px 120px;
  }

  .solution__block {
    border-radius: 10px;
    padding: 40px;
  }

  .advantages__title svg {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 768px) {
  .solution__section {
    margin: 40px 16px 0;
  }

  .solution__advantages {
    flex-direction: column;
    gap: 20px;
    margin: 30px 16px 0;
  }

  .two {
    margin-top: 20px;
  }

  .solution__block {
    border-radius: 10px;
    padding: 46px;
  }

  .advantages__title svg {
    width: 30px;
    height: 30px;
  }
}

/*Single integration*/
.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;
  gap: 80px;
  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-descriptions-2 {
  background-color: #1c1c1c;
  border-color: 1px solid #262626;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
}

.stack__section-descriptions-2 {
  width: 800px;
}

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-2 {
  background-color: #1c1c1c;
  border-radius: 20px;
  padding: 35px 270px;
  margin-top: 60px;
}

.code {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.hidden {
  display: none;
}

@media (max-width: 1440px) {
  .stack__section {
    margin: 100px 120px 0;
  }

  .title-2 {
    font-size: 32px;
  }

  .stack__section-description {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 180px;
    margin-top: 14px;
  }

  .stack__section-description p {
    font-family: "Lexend";
    font-size: 14px;
    font-weight: 300;
    line-height: 150%;
    color: #b3b3b3;
    margin: 10px 0 0;
  }

  .stack__section-descriptions-2 {
    width: 760px;
  }
}

@media (max-width: 768px) {
  .stack__section {
    margin: 40px 16px 0;
    text-align: center;
  }

  .hidden-mob {
    display: none;
  }

  .hidden {
    display: block;
  }

  .title-2 {
    font-size: 36px;
  }

  .stack__section-description {
    flex-direction: column;
    gap: 32px;
  }

  .stack__section-tabs {
    border-radius: 60px;
    padding: 8px;
    gap: 0;
    width: 100%;
  }

  .stack__section-tabs label {
    font-size: 10px;
    padding: 8px 14px;
  }

  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"] {
    font-size: 10px;
  }

  .stack__section-background-2 {
    background-color: transparent;
    padding: 0;
    margin-top: 40px;
  }

  .stack__section-descriptions-2 {
    width: 100%;
    margin: 0 auto;
  }

  .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;
  }
}

/*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;
  text-align: center;
}
.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;
}
.calendar-date.selected {
  background-color: #caff33;
}

#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.left1 {
  left: 0;
}

.slider-arrow1.right1 {
  right: 0;
}

@media (max-width: 1440px) {
  .meeting-form {
    margin: 100px 120px 0;
    padding: 20px;
  }

  .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 {
    padding: 18px 12px;
    font-size: 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;
  }
}

@media (max-width: 768px) {
  .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;
  }
}

/* Footer*/

footer {
  overflow: hidden;
  margin: 100px 160px;
  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-weight: 400;
  font-size: 14px;
}

.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;
  }
}

/* ==================== 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;
  }
}
