    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      font-family: 'Noto Sans', sans-serif;
      background: #110F12;
      color: #ffffff;
      overflow-x: hidden;
      scroll-padding-top: 80px;
      scroll-behavior: smooth;
    }

    ::-webkit-scrollbar {
      width: 6px;
      background-color: transparent;
    }

    ::-webkit-scrollbar-thumb {
      background-color: #ab2cf4;
      border-radius: 4px;
    }

    :root {
      --primary-color: #ab2cf4;
    }

    .wrapper {
      min-height: 100%;
      width: 100%;
      position: relative;
      overflow-x: hidden;
    }

    .wrap {
      max-width: 1350px;
      padding: 0 15px;
      margin: 0 auto;
    }

    /* Typography */
    .block-title {
      font-weight: 900;
      font-size: 48px;
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .section-title {
      font-weight: 900;
      font-size: 40px;
      line-height: 1.3;
    }

    .section-descr {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.6;
    }

    .section-tag {
      display: inline-block;
      padding: 8px 20px;
      background: rgba(171, 44, 244, 0.15);
      border: 1px solid rgba(171, 44, 244, 0.4);
      border-radius: 100px;
      color: var(--primary-color);
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .company-name {
      color: var(--primary-color);
    }

    .content {
      padding: 80px 0;
    }

    .mt-30 {
      margin-top: 30px;
    }

    .mt-180 {
      margin-top: 180px;
    }

    /* Buttons */
    @keyframes fiolentGradient {
      0% { background-position: 0% 50%; }
      100% { background-position: 100% 50%; }
    }

    .step__btn-elem,
    .mini-btn {
      display: inline-block;
      background: linear-gradient(135deg, #b74eda 0%, #6021a0 25%, #6854b8 50%, #944eda 70%, #6721a0 90%, #5468b8 100%);
      background-size: 300% 300%;
      border-radius: 40px;
      padding: 16px 40px;
      font-weight: 600;
      font-size: 18px;
      white-space: nowrap;
      animation: fiolentGradient 4s alternate infinite;
      transition: all .3s;
      text-decoration: none;
      color: white;
      border: none;
      cursor: pointer;
    }

    .mini-btn.white {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      animation: none;
    }

    .mini-btn.white:hover {
      background: rgba(255, 255, 255, 0.15);
    }

    .step__btn-elem:hover,
    .mini-btn:hover {
      transform: rotate(-2deg) scale(1.05);
    }

    /* Header */
    header {
      padding: 24px 0;
      position: sticky;
      top: 0;
      background: rgba(17, 15, 18, 0.95);
      backdrop-filter: blur(10px);
      z-index: 1000;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .header__wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .header__logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      color: white;
      font-weight: 800;
      font-size: 28px;
    }

    .header__nav ul {
      display: flex;
      align-items: center;
      gap: 30px;
      list-style: none;
    }

    .header__nav a {
      color: white;
      text-decoration: none;
      font-weight: 600;
      font-size: 16px;
      transition: color .3s;
    }

    .header__nav a:hover {
      color: var(--primary-color);
    }

    /* Preview Section */
    .preview {
      padding: 100px 0 60px;
      position: relative;
    }

    .preview__wrap {
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .preview__content {
      margin-bottom: 20px;
    }

    .preview-btn {
      display: flex;
      gap: 16px;
      justify-content: center;
      margin-top: 40px;
      flex-wrap: wrap;
    }

    .preview .img {
      margin-top: 60px;
    }

    .preview .img img {
      max-width: 100%;
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(171, 44, 244, 0.3);
    }

    /* Animated List */
    .preview__list {
      margin-top: 80px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.02);
      padding: 30px 0;
    }

    .preview__list ul {
      display: flex;
      gap: 40px;
      list-style: none;
      animation: scroll 30s linear infinite;
      width: max-content;
    }

    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .preview__item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 16px;
      font-weight: 600;
      white-space: nowrap;
      color: rgba(255, 255, 255, 0.9);
    }

    .preview__item img {
      width: 32px;
      height: 32px;
    }

    /* About Section */
    .about__wrap {
      max-width: 900px;
      margin: 40px auto;
    }

    .about__content {
      font-size: 18px;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.85);
    }

    .about .img {
      text-align: center;
      margin-top: 60px;
    }

    .about .img img {
      max-width: 100%;
      border-radius: 20px;
    }

    /* Suit Section */
    .suit__elems {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      margin-top: 60px;
    }

    .suit__elem {
      text-align: center;
      padding: 40px 20px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.05);
      transition: all .3s;
    }

    .suit__elem:hover {
      transform: translateY(-10px);
      background: rgba(255, 255, 255, 0.06);
      border-color: var(--primary-color);
    }

    .suit__elem img {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
    }

    .suit__elem span {
      font-size: 16px;
      font-weight: 600;
    }

    /* Step Section */
    .step__inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .step__left h2 {
      margin: 20px 0;
    }

    .step__left span {
      display: block;
      font-size: 18px;
      color: rgba(255, 255, 255, 0.8);
      margin: 20px 0 40px;
      line-height: 1.6;
    }

    .step__spis {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .step__spis-elem {
      padding: 24px 30px;
      background: rgba(255, 255, 255, 0.05);
      border-left: 4px solid var(--primary-color);
      font-size: 16px;
      line-height: 1.6;
    }

    .step__spis-stick {
      width: 4px;
      height: 20px;
      background: var(--primary-color);
      margin-left: 0;
    }

    /* Why Section */
    .why {
      background: rgba(255, 255, 255, 0.02);
    }

    .why .wrap {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .why__wrap {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      margin-top: 40px;
    }

    .why__point {
      padding: 20px 24px;
      background: rgba(171, 44, 244, 0.1);
      border-radius: 12px;
      border-left: 4px solid var(--primary-color);
    }

    .why__point span {
      font-size: 16px;
      line-height: 1.6;
    }

    .why .img img {
      width: 100%;
      border-radius: 20px;
    }

    /* Numbers Section */
    .numbers__wrap {
      margin: 60px 0 40px;
    }

    .numbers__list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      list-style: none;
    }

    .numbers__item {
      text-align: center;
      padding: 40px 30px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.05);
      transition: all .3s;
    }

    .numbers__item:hover {
      transform: translateY(-5px);
      border-color: var(--primary-color);
    }

    .numbers__bold {
      font-size: 48px;
      font-weight: 900;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .numbers__text {
      display: block;
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .numbers__descr {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.7);
    }

    .numbers .step__btn-elem {
      display: block;
      text-align: center;
      max-width: 300px;
      margin: 0 auto;
    }

    /* Problems Section */
    .problems__spis,
    .forget__spis {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .problems__spis-elem {
      padding: 24px;
      background: rgba(255, 59, 59, 0.1);
      border-radius: 12px;
      border-left: 4px solid #ff3b3b;
      display: flex;
      align-items: center;
    }

    .problems__spis-elem span {
      font-size: 16px;
    }

    .forget__spis-elem {
      padding: 30px;
      background: rgba(16, 185, 129, 0.1);
      border-radius: 12px;
      border-left: 4px solid #10b981;
    }

    .forget__elem-top strong {
      display: block;
      font-size: 18px;
      margin-bottom: 12px;
      color: #10b981;
    }

    .forget__elem-top span {
      font-size: 15px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.8);
    }

    /* Variants Section */
    .variants .info {
      text-align: center;
      margin-bottom: 60px;
    }

    .variants .img {
      margin: 40px 0;
    }

    .variants .img img {
      width: 100%;
      max-width: 600px;
      border-radius: 20px;
    }

    .block-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }

    .variants__elem {
      padding: 30px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      transition: all .3s;
      text-align: center;
    }

    .variants__elem:hover {
      transform: translateY(-5px);
      border-color: var(--primary-color);
    }

    .elem__wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }

    .elem__wrap img {
      width: 60px;
      height: 60px;
      object-fit: contain;
    }

    .elem__wrap span {
      font-size: 15px;
      font-weight: 600;
    }

    /* Contact Section */
    .contact .wrap {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: 30px;
    }

    .contact-block {
      padding: 40px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 24px;
      border: 1px solid rgba(255, 255, 255, 0.05);
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .contact-block h2 {
      font-size: 28px;
    }

    .contact-block span {
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.6;
    }

    .contact-block .link {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-top: 20px;
    }

    .contact-block .img img {
      width: 60px;
      height: 60px;
    }

    /* FAQ Section */
    .faq__wrap {
      max-width: 900px;
      margin: 60px auto 0;
    }

    .faq__list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .faq__item {
      background: rgba(255, 255, 255, 0.03);
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .faq__btn {
      width: 100%;
      background: transparent;
      border: none;
      padding: 24px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      color: white;
      font-size: 18px;
      font-weight: 600;
      transition: all .3s;
    }

    .faq__btn:hover {
      background: rgba(255, 255, 255, 0.05);
    }

    .faq__btn.active {
      background: var(--primary-color);
    }

    .faq__btn-span-two {
      width: 24px;
      height: 24px;
      position: relative;
      transition: transform .3s;
    }

    .faq__btn-span-two::before,
    .faq__btn-span-two::after {
      content: '';
      position: absolute;
      background: white;
      transition: transform .3s;
    }

    .faq__btn-span-two::before {
      width: 24px;
      height: 2px;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
    }

    .faq__btn-span-two::after {
      width: 2px;
      height: 24px;
      left: 50%;
      top: 0;
      transform: translateX(-50%);
    }

    .faq__btn.active .faq__btn-span-two::after {
      transform: translateX(-50%) rotate(90deg);
    }

    .faq__text {
      max-height: 0;
      overflow: hidden;
      transition: max-height .3s, padding .3s;
      padding: 0 30px;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.7;
    }

    .faq__btn.active + .faq__text {
      max-height: 500px;
      padding: 0 30px 24px;
    }

    /* Footer */
    footer {
      padding: 60px 0 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer__wrap {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 60px;
    }

    .footer-block .logo img {
      width: 60px;
      margin-bottom: 20px;
    }

    .footer-block .info p {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .footer-block .info span {
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.6;
      display: block;
      margin-bottom: 30px;
    }

    .footer__nav ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .footer__nav a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      font-size: 16px;
      transition: color .3s;
    }

    .footer__nav a:hover {
      color: var(--primary-color);
    }

    .footer__copyright {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-top: 40px;
      color: rgba(255, 255, 255, 0.5);
      font-size: 14px;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .step__inner,
      .why .wrap,
      .footer__wrap {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    @media (max-width: 768px) {
      .block-title {
        font-size: 32px;
      }

      .section-title {
        font-size: 28px;
      }

      .header__nav {
        display: none;
      }

      .preview-btn {
        flex-direction: column;
        align-items: center;
      }

      .suit__elems {
        grid-template-columns: repeat(2, 1fr);
      }

      .numbers__list {
        grid-template-columns: 1fr;
      }

      .contact .wrap {
        grid-template-columns: 1fr;
      }

      .block-list {
        grid-template-columns: 1fr;
      }

      .problems__spis,
      .forget__spis {
        grid-template-columns: 1fr;
      }
    }
  