
/* Mulish - self-hosted */
@font-face {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/mulish-v12-latin_cyrillic-regular.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/fonts/mulish-v12-latin_cyrillic-600.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('/fonts/mulish-v12-latin_cyrillic-800.woff2') format('woff2');
  }
  *{
      box-sizing: border-box;
      padding: 0;
      margin: 0;
  }
  html {
      background: #1F0529;
  }
  body {
      font-family: "Unbounded", sans-serif;
      font-size: 14px;
      padding: 160px 0 0;
      color: #fff;
      background-image: url(../img/backgrounds/main-bg.svg);
      background-size: 140%;
      background-repeat: repeat-y;
      background-position: top -220px center;
  }
  h1 {
      font-size: 80px;
      font-weight: 300;
      color: #fff;
      margin-bottom: 25px;
  }
  img{
      vertical-align: top;
      max-width: 100%;
  }
  .menu-icon { /*BURGER*/
      display: none;
      cursor: pointer;
      font-size: 30px;
  }
  a{
      display: inline-block;
  }
  
  header {
      max-width: 1700px;
      width: 100%;
      margin: 0 auto;
      position: absolute;
      z-index: 4;
      top: 40px;
      left: 0;
      right: 0;
      padding: 20px 15px;
      display: flex;
      align-items: center;
      justify-content: space-between;
  }
  
  header .logo {
      display: inline-block;
  }
  
  header .logo img {
      max-width: 242px;
  }
  
  header .cta-button {
      padding: 11.25px 25px;
      font-size: 14px;
  }
  
  .nav-list {
      padding: 0;
      width: 100%;
      display: flex;
      align-items: center;
      list-style: none;
  }
  .nav-list a {
      color: #fff;
      font-weight: 300;
      text-decoration: none;
      margin: 0 25px;
      padding: 20px 0;
  }
  .nav-list a:hover {
      color: #B676F4;
  }
  .sidebar {    
      position: fixed;
      height: 100dvh;
      top: 0;
      left: -100%;
      max-width: 80%;
      width: 100%;
      z-index: 9;
      background: #1F0529;
      padding: 30px 20px;
      display: flex;
      flex-direction: column;
      transition: left .3s;
  }
  .sidebar.active {
      left: 0;
  }
  .sidebar + .sidebar-background {   
      content: '';
      position: fixed;
      z-index: 8;
      height: 100dvh;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      background-color: rgba(0,0,0, .4);
      opacity: 0;
      pointer-events: none;
      transition: .3s;
  }
  .sidebar.active + .sidebar-background {
      opacity: 1;
      pointer-events: all;
  }
  .sidebar .logo {
      margin-right: 30px;
      max-width: calc(100% - 50px);
  }
  .sidebar-list {
      margin: 30px 0 auto;
  }
  .sidebar-list a {
      color: #fff;
      text-decoration: none;
      margin-bottom: 15px;
      font-size: 14px;
  }
  .sidebar-list a:hover {
      color: #B676F4;
  }
  .sidebar select {
      width: 100%;
      font-size: 16px;
      background-color: inherit;
      background-size: 30px;
      background-repeat: no-repeat;
      background-position: left 13px center;
      padding: 15px 15px 15px 50px;
      color: #fff;
      border-radius: 10px;
      border: 1px solid #B676F4;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
  }
  .sidebar select:focus {
      outline: none;
      border: 1px solid #cb3cff;
  }
  .sidebar-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 30px;
  }
  .sidebar-head .close-sidebar {
      width: 20px;
      display: flex;
      cursor: pointer;
  }
  .container {
      max-width: 1700px;
      margin: 0 auto;
      padding: 0 15px;
      position: relative;
      z-index: 2;
  }
  .main-block {
      display: flex;
      align-items: center;
      min-height: calc(100dvh - 320px);
      position: relative;
  }
  .main-block .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
  }
  .main-block .text {
      font-size: 32px;
  }
  .main-block .text span:last-child {
      text-shadow: -1px 0 #B676F4, 0 1px #B676F4, 1px 0 #B676F4, 0 -1px #B676F4;
      color: #1F0529;
  }
  .main-block .text-content p {
      color: #C8C8C8;
      font-weight: 300;
      line-height: 30px;
      width: 80%;
      margin: 26px 0;
  }
  .text-content h1 {
      font-size: 50px;
  }
  .main-block .text-content .cta-button {
      padding: 11.25px 25px;
      font-size: 14px;
  }
  .main-block .image-content {
      max-width: 37%;
  }
  .main-block .image-content img {
      width: 100%;
      height: auto;
  }
  .main-block a {
      color: white;
      text-decoration: none;
  }
  .main-block a + a {
      margin-left: 10px;
  }
  .cta-button {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 16px 52px;
      background: linear-gradient(-60deg, rgba(127, 37, 251, 1) 20%, rgba(203, 60, 255, 1) 68%);
      color: #fff;
      border-radius: 10px;
      cursor: pointer;
      border: none;
      text-decoration: none;
      transition: 0.3s;
      font-size: 14px;
      font-weight: 400;
  }
  .cta-button.rounded {
      border-radius: 18px;
  }
  .cta-button.bordered {
      border: 1px solid #B676F4;
      background: none;
  }
  
  
  
  

  
  /*Селект смены языокв*/
  .language-switcher {
      position: fixed;
      bottom: 10px;
      right: 10px;
      width: 8%;
      height: 4%;
      z-index: 100000;
      background-color: #2c2c2c;
      padding: 10px;
      border-radius: 5px;
  }
  
  #lang-select {
      transform: scale(1.1);
      padding: 5px;
      border: none;
      border-radius: 5px;
      width: 100%;
      font-size: 14px;
      background-size: 20px;
      background-repeat: no-repeat;
      background-position: right 10px center;
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      cursor: pointer;
  }
  
  #lang-select option {
      background-repeat: no-repeat;
      background-position: left 10px center;
      padding-left: 30px;
  }
  
  #lang-select option[value="en"] {
      background-image: url('img/flug/en.png');
  }
  
  #lang-select option[value="es"] {
      background-image: url('/img/flug/es.jpg');
  }
  
  #lang-select option[value="de"] {
      background-image: url('/img/flug/de.jpg');
  }
  
  #lang-select option[value="ru"] {
      background-image: url('/img/flug/ru.jpg');
  }
  


  
  
  /*СЕКЦИЯ FAQ*/
  .faq {
      padding: 80px 0;
      position: relative;
  }
  .faq .container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      align-items: flex-start;
  }
  
  .faq-items {
      max-width: 716px;
  }
  
  .faq-item {
      margin-bottom: 20px;
      border-bottom: 1px solid rgb(182 118 244 / 30%);
  }
  .faq-item:hover {
      border-bottom: 1px solid rgb(182 118 244 / 100%);
  }
  .faq-question {
      padding: 0 0 20px;
      font-size: 16px;
      font-weight: 300;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
  }
  
  .faq-question .arrow {
      min-width: 14px;
      height: 14px;
      transition: transform 0.3s ease;
      margin-left: 20px;
  }
  
  .faq-answer {
      padding: 0 0 20px;
      display: none;
      font-weight: 300;
      line-height: 30px;
      color: #C8C8C8;
  }
  
  .faq-item.open .faq-answer {
      display: block;
  }
  
  .faq-item.open .faq-question .arrow {
      transform: rotate(45deg);
  }
  
  .faq-additional {
      padding-top: 165px;
      max-width: 400px;
      text-align: center;
  }
  
  .faq-additional img {
      margin-top: -165px;
      max-width: 292px;
  }
  
  .faq-wrapper {
      background-color: rgb(182 118 244 / 30%);
      padding: 0 34px 70px;
      border-radius: 30px;
  }
  
  .faq-wrapper h2 {
      font-size: 18px;
      font-weight: 300;
      margin-bottom: 40px;
  }
  
  .faq-wrapper p {
      font-size: 14px;
      font-weight: 300;
      color: #C8C8C8;
      margin-bottom: 60px;
  }
  
  /* SEO-текстовый блок под Яндекс */
  .seo-text {
      padding: 80px 0;
      position: relative;
      z-index: 1;
    }
    
    .seo-text .container {
      max-width: 980px;
      margin: 0 auto;
    }
    
    .seo-text h2 {
      font-size: 32px;
      line-height: 1.3;
      margin-bottom: 24px;
      font-weight: 700;
    }
    
    .seo-text h3 {
      font-size: 22px;
      line-height: 1.4;
      margin-top: 32px;
      margin-bottom: 12px;
      font-weight: 600;
    }
    
    .seo-text p {
      font-size: 16px;
      line-height: 1.8;
      margin-bottom: 16px;
      color: #e5e0ff; /* мягкий светлый текст под тёмный фон */
    }
    
    .seo-text strong {
      font-weight: 700;
      color: #ff5ba8; /* розовый акцент в стиле кнопок */
    }
    
    /* лёгкий верхний разделитель, чтобы блок не "лип" к предыдущему */
    .seo-text::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 0;
      transform: translateX(-50%);
      width: 80%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255, 91, 168, 0.5), transparent);
    }
  

  
  /*ФУТЕР*/
  footer {
      background: rgb(182 118 244 / 10%);
      padding: 100px 0 150px;
  }
  footer a {
      color: #B676F4;
      text-decoration: none;
  }
  footer a:hover {
      color: #dd5bd0;
  }
  
  .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      flex-wrap: wrap;
  }
  
  .logo-block {
      max-width: 50%;
  }
  
  .logo-block p {
      font-size: 14px;
      font-weight: 300;
      color: #C8C8C8;
      margin-bottom: 20px;
  }
  
  .logo-block .social-links p {
      margin-bottom: 0;
  }
  
  .social-block .social-links {
      margin-top: 0;
      margin-bottom: 20px;
      display: flex;
      justify-content: flex-end;
      gap: 30px;
  }
  
  .social-block p {
      font-size: 14px;
      font-weight: 300;
      color: #C8C8C8;
  }
  
  footer .logo {
      width: 242px;
      margin-bottom: 40px;
  }
  
  .social-links {
  }
  
  .social-links p, .social-media p {
  }
  
  .social-links a img, .social-media a img {
      width: 40px;
  }
  
  .contact-form {
      padding: 80px 15px;
      position: relative;
  }
  
  .contact-form .centered-title {
      margin-bottom: 60px;
  }
  
  .contact-form .centered-title h2 {
      font-size: 18px;
      max-width: 372px;
      margin: 0 auto;
  }
  
  .contact-form form {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      width: 100%;
      max-width: 560px;
      margin: 0 auto;
  }
  
  .contact-form span {
      display: block;
      font-size: 14px;
      font-weight: 300;
  }
  
  .contact-form input,
  .contact-form textarea {
      font-family: "Unbounded", sans-serif;
      padding: 2px 0 7px 25px;
      color: #fff;
      margin-top: 8px;
      background: none;
      border: none;
      border-bottom: 2px solid  rgb(182 118 244 / 50%);
      outline: none;
      width: 100%;
      line-height: 20px;
      font-size: 14px;
      background-repeat: no-repeat;
      background-position: top left;
  }
  .contact-form textarea {
      min-height: 31px;
  }
  .contact-form label {
      width: calc(50% - 15px);
      margin-bottom: 40px;
  }
  .contact-form label:last-of-type {
      width: 100%;
      margin-bottom: 60px;
  }
  
  .contact-form button {
      width: 100%;
  }
  
  /* для модального окна покупки -  связи */
  .modal {
      display: none; 
      position: fixed; 
      z-index: 10; 
      left: 0;
      top: 0;
      width: 100%; 
      height: 100%; 
      overflow: auto; 
      color: black;
      background-color: rgb(0,0,0); 
      background-color: rgba(0,0,0,0.4); 
      padding-top: 60px; 
      box-shadow: 1px 1px 2px black;
  }
  
  .modal-content {
      background: linear-gradient(135deg, #dfdfe7 10%, #94c4ef 80%, #cdaad8 100%);
      margin: 5% auto; 
      padding: 20px;
      border: 1px solid #888;
      width: 80%; 
      max-width: 500px; 
      text-align: center;
      border-radius: 10px;
  }
  
  .close {
      color: #fafafa;
      float: right;
      font-size: 28px;
      font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
      color: black;
      text-decoration: none;
      cursor: pointer;
  }
  
  .modal-button {
      padding: 10px 20px;
      margin: 10px;
      background-color: #8A15FF;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      box-shadow: 2px 1px 2px rgb(127, 116, 210);
  }
  
  .modal-button:hover {
      background-color: #ff00ff;
  }
  
  
  
  /*ВЫПАДАШКА В ШАПКЕ*/
  .dropdown {
      position: relative;
  }
  
  li {
      list-style: none;
  }
  .dropdown-content {
      display: none;
      position: absolute;
      background-color: rgb(182 118 244 / 100%);
      min-width: 160px;
      z-index: 100;
  }
  
  .dropdown-content a {
      padding: 12px 16px;
      text-decoration: none;
      display: block;
      text-align: left;
      width: 100%;
      margin: 0;
  }
  
  .dropdown-content a:hover {
      background-color: #f1f1f1;
  }
  
  /* Показывать меню при наведении */
  .dropdown:hover .dropdown-content {
      display: block;
  }
  
  /* Стили для бургер-меню */
  .menu-icon {
      display: none;
      cursor: pointer;
      font-size: 30px;
  }
  
  @media (max-width: 768px) {
      .menu-icon {
          display: block;
      }
  
      .nav-list.show {
          display: block;
      }
  
      .dropdown-content {
          position: relative;
          margin: 0 auto;
      }
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  