@font-face {
    font-family: 'Segoe UI';
    src: url('SegoeUI-SemiBold.eot');
    src: local('Segoe UI Semibold'), local('SegoeUI-SemiBold'),
    url('../fonts/SegoeUI-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/SegoeUI-SemiBold.woff') format('woff'),
    url('../fonts/SegoeUI-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Segoe UI';
    src: url('SegoeUI.eot');
    src: local('Segoe UI'), local('SegoeUI'),
    url('../fonts/SegoeUI.eot?#iefix') format('embedded-opentype'),
    url('../fonts/SegoeUI.woff') format('woff'),
    url('../fonts/SegoeUI.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Segoe UI';
    src: url('SegoeUI-Bold.eot');
    src: local('Segoe UI Bold'), local('SegoeUI-Bold'),
    url('../fonts/SegoeUI-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/SegoeUI-Bold.woff') format('woff'),
    url('../fonts/SegoeUI-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

:root {
    --color-red: #D92E24;
}

*, *:after, *:before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html {
    background: #211E1E;
    color: #ffffff;
    font-size: 16px;
    font-family: "Segoe UI", sans-serif;
}
body.disable-scroll {
    overflow-y: hidden;
}
ul {
    list-style: none;
}
h2 {
    font-size: 48px;
    line-height: 64px;
    margin-bottom: 45px;
    text-align: center;
    color: #ECECEC;
}
input {
    font-family: inherit;
}
.red {
    color: var(--color-red);
}
.container {
    max-width: 1140px;
    margin: 0px auto;
    padding: 0px 15px;
}
.btn {
    background: var(--color-red);
    box-shadow: 0px 4px 50px rgba(255, 77, 67, 0.5);
    border-radius: 5px;
    padding: 18px 30px;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.33;
    color: #ECECEC;
    border: 2px solid var(--color-red);
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}
.btn:hover {
    box-shadow: 0px 4px 50px rgba(255, 77, 67, 0.75);
}
.btn-border {
    background: transparent;
    color: var(--color-red);
    box-shadow: none;
}
.btn-border:hover {
    background: var(--color-red);
    color: #ececec;
    box-shadow: none;
}

.header {
    padding: 34px 0px;
}
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu ul {
    display: flex;
    gap: 40px;
    align-items: center;
}
.menu ul a {
    color: #ffffff;
    font-size: 18px;
    padding: 10px 0px;
    position: relative;
    text-decoration: none;
}
.menu ul a:after {
    content: "";
    display: block;
    background: var(--color-red);
    bottom: 0;
    left: auto;
    right: 0px;
    height: 2px;
    width: 0px;
    position: absolute;
    transition: width 0.3s ease;
}
.menu ul li:hover a:after {
    width: 100%;
    left: 0px;
    right: auto;
}
.menu ul a.btn {
    padding: 17px 65px;
    font-weight: 700;
    font-size: 20px;
}
.mmenu {
    display: none;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}

.top-section {
    background: linear-gradient(360deg, #211E1E 0.18%, rgba(0, 0, 0, 0) 40.43%), linear-gradient(180deg, #211E1E 2.75%, rgba(0, 0, 0, 0) 46.64%), linear-gradient(90deg, #211E1E 48.8%, rgba(0, 0, 0, 0) 74.14%), url(../../images/dark2/top_d.jpg), #000;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    padding: 40px 0 65px;
}
.top-title {
    font-size: 64px;
    line-height: 120%;
    color: #ECECEC;
    margin-bottom: 30px;
}
.top-title .red {
    padding-top: 0.15em;
}
.top-content {
    font-weight: 600;
    font-size: 16px;
    line-height: 28px;
    color: #ffffff;
    margin-bottom: 45px;
}
.top-content li:before {
    content: "►";
    color: var(--color-red);
    margin-right: 5px;
}
.top-form form {
    display: flex;
    align-items: center;
    gap: 20px;
}
input[type="email"] {
    background: #262626;
    border: 1px solid #454545;
    box-sizing: border-box;
    border-radius: 5px;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    padding: 22px 25px;
    color: rgba(255, 255, 255, 0.8);
}

.how-section {
    padding: 95px 0 0;
}
.how-section h2 {
    margin-bottom: 25px;
}
.how-grid {
    display: grid;
    grid-template-columns: repeat(4, auto);
}
.how-item {
    padding: 50px 25px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 5px;
}
.how-item:hover {
    background: #262626;
    box-shadow: 3px 7px 10px rgba(47, 47, 47, 0.25);
}
.how-number {
    font-weight: 700;
    font-size: 36px;
    line-height: 48px;
    color: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 20px;
    left: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}
.how-item:hover .how-number {
    opacity: 1;
}
.how-text {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #ECECEC;
    margin-top: 20px;
}
.how-info {
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: #ECECEC;
    margin-top: 40px;
}

.packages-section {
    padding: 50px 0 0;
}
.packages-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
}
.packages-top h2 {
    max-width: 540px;
    text-align: left;
    margin-bottom: 0px;
}
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}
.package {
    position: relative;
    color: #ffffff;
    min-height: 415px;
    padding: 18px 25px 0px;
    display: flex;
    flex-direction: column;
    background: #1D1D1D;
    border: 1px solid #292929;
    border-radius: 15px;
    overflow: hidden;
}
.package.optimal:before {
    content: url(../../images/dark2/optimal.svg);
    position: absolute;
    top: 0;
    left: 0;
}
.package.vip:before {
    content: url(../../images/dark2/vip.svg);
    position: absolute;
    top: 0;
    left: 0;
}
.package-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 13px;
    text-align: center;
}
.package-image {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 12px;
}
.package-subtitle {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    margin-bottom: 5px;
}
.package-content {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.7;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    margin-bottom: 10px;
}
.package-content ul {
    list-style: disc;
    list-style-position: inside;
    font-weight: 400;
}
.package-price {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.25;
    text-align: center;
    color: #FFAB43;
    background: #161616;
    padding: 18px 20px;
    margin-top: auto;
    margin-right: -25px;
    margin-left: -25px;
    border-radius: 0px 0px 15px 15px;
    height: 60px;
}
.package-btn {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 60px;
    bottom: 0px;
    left: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
    opacity: 0;
}
.package-btn .btn {
    width: 100%;
    height: 60px;
    border-radius: 0px 0px 15px 15px;
    box-shadow: none;
}
.package:hover .package-btn {
    transform: translateY(0);
    opacity: 1;
}
.packages-button {
    margin-top: 40px;
    text-align: center;
}
.packages-button .btn {
    color: #ffffff;
}
/*.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}
.package {
  position: relative;
  color: #ffffff;
  min-height: 415px;
  padding: 25px;
  display: flex;
  flex-direction: column;
}
.package:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: -1;
  background: linear-gradient(180deg, rgba(29, 29, 29, 0.1) 0%, rgba(29, 29, 29, 0.8) 72.27%);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
}
.package-image {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}
.package-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.33;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  margin-bottom: 16px;
}
.package-subtitle {
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  margin-bottom: 15px;
}
.package-content {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.7;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}
.package-content ul {
  list-style: disc;
  list-style-position: inside;
}
.package-price {
  font-weight: 700;
  font-size: 36px;
  line-height: 48px;
  text-align: center;
  color: #FFAB43;
  margin-top: auto;
  margin-bottom: 20px;
}
.package-btn {
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 25px;
  left: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
  opacity: 0;
}
.package-btn .btn {
  width: 70%;
}
.package:hover .package-btn {
  transform: translateY(0);
  opacity: 1;
}
.packages-button {
  margin-top: 40px;
  text-align: center;
}
.packages-button .btn {
  color: #ffffff;
}*/

.advantages-section {
    padding: 100px 0 0;
}
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px 60px;
}
.advantage {
    display: flex;
}
.advantage-image {
    margin-right: 25px;
    padding-top: 15px;
}
.advantage-content h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #ECECEC;
    margin-bottom: 5px;
}
.advantage-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    color: #ECECEC;
}

.faq-section {
    padding: 100px 0 0;
}
.questions {
    max-width: 730px;
    margin: 0 auto;
}
.question {
    background: #262626;
    border: 1px solid #454545;
    box-sizing: border-box;
    border-radius: 5px;
    margin-bottom: 15px;
    color: #ECECEC;
    padding: 30px;
}
.question:last-of-type {
    margin-bottom: 0;
}
.question-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    justify-content: space-between;
}
.question-title:after {
    content: url(../../images/dark2/arrow.svg);
    margin-left: 40px;
    transition: all 0.3s ease;
}
.question-answer {
    font-weight: 400;
    font-size: 16px;
    max-height: 0px;
    opacity: 0;
    line-height: 21px;
    transition: all 0.3s ease;
}
.question.open .question-answer {
    opacity: 1;
    margin-top: 20px;
}
.question.open .question-title:after {
    transform: scaleY(-1);
}
.question.open .question-title {
    padding-bottom: 20px;
}
.question.open .question-title:before {
    content: "";
    display: block;
    height: 2px;
    width: 80px;
    background: var(--color-red);
    position: absolute;
    bottom: 0;
}


.join-section {
    padding: 110px 0 90px;
}
.join-form {
    max-width: 540px;
    margin: 0 auto;
}
.join-form form {
    display: flex;
    flex-direction: column;
    text-align: center;
}
.join-form input[type="email"] {
    margin-bottom: 25px;
    text-align: center;
}

.footer {
    padding: 40px 0px;
}
.footer-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.footer-menu {
    margin-bottom: 15px;
}
.footer-menu ul li {
    display: inline-block;
    margin-left: 30px;
}
.footer-menu ul li a {
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
    transition: all 0.3s ease;
    text-decoration: none;
}
.footer-menu ul li a:hover {
    color: var(--color-red);
}
.copyright {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
}


.desktop-hidden {
    display: none;
}
.mobile-hidden {
    display: block;
}


@media screen and (max-width: 1024px) {
    .top-title {
        font-size: 52px;
    }
    .menu ul {
        gap: 20px;
    }
    .menu ul a.btn {
        padding: 14px 35px;
        font-weight: 700;
        font-size: 18px;
    }
}
@media screen and (max-width: 840px) {
    h2 {
        font-size: 40px;
        line-height: 56px;
        margin-bottom: 30px;
    }
    .logo img {
        max-width: 180px;
    }
    .top-title {
        font-size: 46px;
    }
    .how-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }
    .how-text {
        font-size: 24px;
    }/*
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }*/
}
@media screen and (max-width: 768px) {
    .menu {
        position: fixed;
        width: 100%;
        height: 100vh;
        right: 0;
        top: 0;
        transition: all 0.3s ease;
        transform: translateX(100%);
        background: rgba(29, 29, 29, 0.8);
        backdrop-filter: blur(15px);
        padding: 80px 25px;
        overflow-y: auto;
        z-index: 100;
    }
    .menu.open {
        transform: translateX(0);
    }
    .menu ul {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 0px;
        height: 100%;
    }
    .menu ul li:not(:last-of-type) {
        margin-bottom: 30px;
    }
    .menu ul li a {
        font-size: 24px;
        line-height: 1.3;
    }
    .mmenu {
        display: block;
    }
    .menu-close {
        position: absolute;
        top: 30px;
        right: 20px;
    }
    .advantages-grid {
        max-width: 600px;
        margin: 0 auto;
        grid-template-columns: 1fr;
        grid-gap: 60px;
    }
    .question-title {
        font-size: 20px;
    }
    .how-section {
        padding: 50px 0 0;
    }
    .how-item {
        background: #262626;
        box-shadow: 3px 7px 10px rgba(47, 47, 47, 0.25);
    }
    .how-number {
        opacity: 1;
    }
    .packages-section {
        padding: 90px 0 0;
    }
    .packages-grid {
        grid-template-columns: 1fr;
        grid-gap: 20px;
        max-width: 450px;
        margin-right: auto;
        margin-left: auto;
    }
    /*
    .packages-section {
      padding: 90px 0 0;
    }
    .package {
      min-height: 452px;
    }
    .package-btn {
      position: relative;
      bottom: unset;
      left: 0;
      transform: unset;
      transition: all 0.3s ease;
      opacity: 1;
    }
    .package-btn .btn {
      width: 70%;
    }
    .package-price {
      font-size: 24px;
      line-height: 32px;
      margin-bottom: 15px;
    }*/
    .advantages-section {
        padding: 90px 0 0;
    }
    .faq-section {
        padding: 90px 0 0;
    }
    .join-section {
        padding: 90px 0 50px;
    }
    .footer-logo img {
        max-width: 180px;
    }
    .copyright {
        font-size: 15px;
    }
    .desktop-hidden {
        display: block;
        margin-top: 20px;
    }
    .mobile-hidden {
        display: none;
    }
}
@media screen and (max-width: 600px) {
    .header {
        padding: 25px 0px;
    }
    h2 {
        font-size: 36px;
        line-height: 48px;
    }
    .top-section {
        background: url(../../images/dark2/top_m.jpg), transparent;
        background-position: bottom center;
        background-size: contain;
        background-repeat: no-repeat;
        padding: 20px 0 70vw;
    }
    .top-title {
        text-align: center;
    }
    .top-content {
        margin-bottom: 25px;
    }
    .top-form form {
        flex-direction: column;
        align-items: stretch;
        max-width: 100%;
        margin: 0 auto;
        gap: 0;
    }
    .top-form form input[type="email"] {
        margin-bottom: 20px;
        text-align: center;
    }
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    .footer {
        padding: 25px 0px;
    }
    .footer-flex {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
    .footer-right {
        margin-top: 22px;
        align-items: center;
    }
    .footer-menu {
        margin-bottom: 0px;
        text-align: center;
    }
    .footer-menu ul li {
        margin: 0 15px;
    }
    .copyright {
        font-size: 18px;
        margin-top: 30px;
        text-align: center;
    }
}
@media screen and (max-width: 480px) {
    .top-title {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    .how-grid {
        grid-template-columns: 1fr;
        max-width: 80%;
        margin: 0 auto;
    }
    .advantage-image {
        margin-right: 13px;
    }
    .question-title:after {
        margin-left: 15px;
    }
    .how-section {
        padding: 15px 0 0;
    }
    .packages-section {
        padding: 80px 0 0;
    }
    .advantages-section {
        padding: 65px 0 0;
    }
    .faq-section {
        padding: 35px 0 0;
    }
}
