    * {
      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;
    }

    .container {
      max-width: 1350px;
      padding: 0 15px;
      margin: 0 auto;
      height: 100%;
    }

    h1 {
      text-transform: uppercase;
      font-weight: 900;
      font-size: 56px;
      line-height: 1.35;
      text-align: center;
      position: relative;
    }

    h2 {
      font-weight: 900;
      font-size: 48px;
      line-height: 1.35;
    }

    h3 {
      font-weight: 900;
      font-size: 24px;
      line-height: 1.3;
    }

    h4 {
      font-size: 20px;
    }

    h5 {
      font-size: 16px;
      line-height: 1.3;
    }

    p {
      font-weight: 400;
      font-size: 16px;
      line-height: 1.6;
    }

    .p-color {
      color: var(--primary-color);
    }

    @keyframes fiolentGradient {
      0% { background-position: 0% 50%; }
      100% { background-position: 100% 50%; }
    }

    .btn {
      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: 20px;
      white-space: nowrap;
      animation: fiolentGradient 4s alternate infinite;
      transition: all .3s;
      text-decoration: none;
      color: white;
      display: inline-block;
      border: none;
      cursor: pointer;
    }

    .btn:hover {
      animation-play-state: paused;
      transform: rotate(-2deg);
    }

    /* 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__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .header__logo {
      display: flex;
      font-weight: 700;
      font-size: 28px;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      color: white;
    }

    .header__nav {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .header__nav-elem {
      font-weight: 600;
      font-size: 18px;
      transition: all .3s;
      text-decoration: none;
      color: white;
    }

    .header__nav-elem:hover {
      color: var(--primary-color);
    }

    .header__btn {
      text-align: center;
      font-size: 16px;
      font-weight: 600;
      border: 1px solid white;
      border-radius: 40px;
      padding: 12px 24px;
      transition: all .3s;
      text-decoration: none;
      color: white;
      display: inline-block;
    }

    .header__btn:hover {
      background: linear-gradient(135deg, #b74eda 0%, #6021a0 25%, #6854b8 50%, #944eda 70%, #6721a0 90%, #5468b8 100%);
      border: 1px solid transparent;
      background-size: 500% 300%;
      animation: fiolentGradient 5s alternate infinite;
    }

    /* Hero */
    .hero {
      margin-top: 50px;
      min-height: 75vh;
      position: relative;
    }

    .hero__inner {
      position: relative;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      z-index: 0;
    }

    .hero__main {
      display: flex;
      position: relative;
      z-index: 5;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      max-width: 770px;
      margin-top: 80px;
    }

    .hero__main-txt {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 20px;
      text-align: center;
    }

    .h1-highlight {
      color: #AB2CF4;
    }

    .hero__main-low {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-top: 32px;
    }

    .manager__cont {
      display: flex;
      align-items: center;
      gap: 16px;
      text-decoration: none;
      color: white;
      transition: all .3s;
    }

    .manager__cont img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      transition: all .5s;
      object-fit: cover;
    }

    .manager__cont:hover img {
      transform: rotateY(360deg);
    }

    .manager__txt {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .manager__txt h4 {
      font-weight: 700;
    }

    .manager__txt h5 {
      font-weight: 300;
    }

    /* Floating animations */
    @keyframes float {
      0% { transform: translatey(0px); }
      50% { transform: translatey(-20px); }
      100% { transform: translatey(0px); }
    }

    .hero__elem {
      position: absolute;
      z-index: 2;
      transition: all 1s;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(171, 44, 244, 0.3);
    }

    .hero__elem img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      opacity: 0.7;

    }

    .hero__elem-blur {
      position: absolute;
      z-index: 1;
      filter: blur(15px);
      opacity: 0.7;
      border-radius: 12px;
      overflow: hidden;
    }

    .hero__elem-blur img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .hero__elem1 {
      top: 17%;
      left: -3%;
      width: 371px;
      height: 200px;
      animation: float 6s ease-in-out infinite;
    }

    .hero__elem1-blur {
      top: 17%;
      left: -3%;
      width: 371px;
      height: 200px;
      animation: float 6s ease-in-out infinite;
    }

    .hero__elem2 {
      top: 46%;
      left: 10%;
      width: 288px;
      height: 160px;
      animation: float 6s ease-in-out infinite;
      animation-delay: 3s;
    }

    .hero__elem2-blur {
      top: 47%;
      left: 10%;
      width: 288px;
      height: 160px;
      animation: float 6s ease-in-out infinite;
      animation-delay: 3s;
    }

    .hero__elem3 {
      top: 49%;
      left: 40%;
      width: 257px;
      height: 140px;
      animation: float 4s ease-in-out infinite;
    }

    .hero__elem3-blur {
      top: 47%;
      left: 40%;
      width: 277px;
      height: 140px;
      animation: float 4s ease-in-out infinite;
    }

    .hero__elem4 {
      top: 45%;
      right: 8%;
      width: 348px;
      height: 190px;
      animation: float 7s ease-in-out infinite;
      animation-delay: 3s;
    }

    .hero__elem4-blur {
      top: 45%;
      right: 8%;
      width: 348px;
      height: 190px;
      animation: float 7s ease-in-out infinite;
      animation-delay: 3s;
    }

    .hero__elem5 {
      top: 14%;
      right: -4%;
      width: 340px;
      height: 180px;
      animation: float 7s ease-in-out infinite;
      animation-delay: 4s;
    }

    .hero__elem5-blur {
      top: 14%;
      right: -4%;
      width: 340px;
      height: 180px;
      animation: float 7s ease-in-out infinite;
      animation-delay: 4s;
    }

    /* Gradient circles */
    @keyframes parallax {
      0% { transform: translate(0, 0) scale(1); opacity: 1; }
      50% { transform: translate(-25%, -25%) scale(1.1); opacity: 0.8; }
      100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    }

    @keyframes parallax2 {
      0% { transform: translate(0, 0) scale(1); opacity: 1; }
      50% { transform: translate(25%, 25%) scale(0.9); opacity: 0.6; }
      100% { transform: translate(50%, 50%) scale(1); opacity: 1; }
    }

    .p-circle1 {
      position: absolute;
      top: 0;
      left: -2%;
      background: linear-gradient(180deg, rgba(171, 44, 244, 0.25) 0%, rgba(107, 26, 157, 0.25) 52.5%, rgba(21, 22, 28, 0.25) 100%);
      width: 264px;
      height: 264px;
      border-radius: 50%;
      filter: blur(10px);
      animation: parallax 10s infinite alternate linear;
    }

    .p-circle2 {
      position: absolute;
      bottom: 19%;
      left: -4%;
      background: linear-gradient(180deg, rgba(171, 44, 244, 0.75) 0%, rgba(107, 26, 157, 0.75) 52.5%, rgba(21, 22, 28, 0.75) 100%);
      filter: blur(10px);
      width: 90px;
      height: 90px;
      border-radius: 50%;
      animation: parallax2 12s infinite alternate ease;
    }

    .p-circle3 {
      position: absolute;
      top: -3%;
      right: 6%;
      background: linear-gradient(180deg, rgba(171, 44, 244, 0.5) 0%, rgba(107, 26, 157, 0.5) 52.5%, rgba(21, 22, 28, 0.5) 100%);
      filter: blur(10px);
      width: 90px;
      height: 90px;
      border-radius: 50%;
    }

    .p-circle4 {
      position: absolute;
      bottom: 8%;
      right: -4%;
      background: linear-gradient(180deg, rgba(171, 44, 244, 0.25) 0%, rgba(107, 26, 157, 0.25) 52.5%, rgba(21, 22, 28, 0.25) 100%);
      width: 264px;
      height: 264px;
      border-radius: 50%;
      filter: blur(10px);
    }

    /* Services section */
    .serv {
      margin-top: 100px;
    }

    .serv__inner {
      position: relative;
    }

    .serv__txt {
      margin-bottom: 30px;
    }

    .serv__subt {
      font-weight: 400;
      font-size: 16px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.25);
    }

    .upper {
      text-transform: uppercase;
    }

    .descript {
      color: rgba(255, 255, 255, 0.75);
      font-weight: 400;
      margin-top: 18px;
      line-height: 1.7;
    }

    .serv__main {
      display: flex;
      align-items: stretch;
      gap: 16px;
      margin-top: 30px;
    }

    .serv__col {
      display: flex;
      flex-direction: column;
      gap: 16px;
      flex: 1;
    }

    @property --angle {
      syntax: "<angle>";
      inherits: true;
      initial-value: 0turn;
    }

    @keyframes spin {
      to {
        --angle: 1turn;
      }
    }

    .serv__col-elem {
      display: flex;
      flex-direction: column;
      width: 100%;
      gap: 24px;
      border-radius: 24px;
      padding: 24px 30px;
      position: relative;
      background: rgba(255, 255, 255, 0.1);
      --border-width: 1px;
      --radius: 24px;
      border-radius: var(--radius);
      border: var(--border-width) solid transparent;
      transition: all .3s;
    }

    .serv__col-elem:hover {
      transform: translateY(-5px);
    }

    .serv__col-elem::before {
      content: " ";
      position: absolute;
      inset: calc(var(--border-width) * -1);
      z-index: -1;
      border: inherit;
      border-radius: inherit;
      background-image: conic-gradient(from var(--angle), #381d6a20 80%, #E0D1FF 88%, #E0D1FF 92%, #381D6A 100%);
      background-origin: border-box;
      -webkit-mask: linear-gradient(black, black) content-box, linear-gradient(black, black);
      mask: linear-gradient(black, black), linear-gradient(black, black);
      -webkit-mask-clip: content-box, border-box;
      mask-clip: content-box, border-box;
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      animation: spin 3s linear infinite;
    }

    .serv__elem-bot {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: auto;
    }

    .serv__numb {
      font-weight: 900;
      font-size: 16px;
      color: rgba(171, 44, 244, 1);
      background: white;
      padding: 4px 10px;
      border-radius: 24px;
    }

    .serv__elem-bot p {
      font-size: 14px;
    }

    .serv__manager {
      margin-top: 40px;
      display: flex;
      align-items: center;
      gap: 16px;
      justify-content: center;
    }

    /* SEO Content Section */
    .seo-content {
      margin-top: 100px;
      padding: 60px 0;
      background: rgba(255, 255, 255, 0.02);
    }

    .seo-content__inner {
      max-width: 900px;
      margin: 0 auto;
    }

    .seo-content h2 {
      margin-bottom: 30px;
      text-align: center;
    }

    .seo-content h3 {
      margin-top: 40px;
      margin-bottom: 15px;
      color: var(--primary-color);
    }

    .seo-content p {
      margin-bottom: 20px;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.85);
    }

    .seo-content ul {
      margin: 20px 0 20px 30px;
      line-height: 1.8;
    }

    .seo-content ul li {
      margin-bottom: 10px;
      color: rgba(255, 255, 255, 0.85);
    }

    /* FAQ */
    .faq {
      margin-top: 111px;
      position: relative;
    }

    .faq__inner {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .faq__title {
      font-weight: 900;
      font-size: 64px;
      text-align: center;
      text-transform: uppercase;
    }

    .faq__elems {
      display: flex;
      flex-direction: column;
      margin: 40px auto;
      justify-content: center;
      max-width: 867px;
      width: 100%;
      gap: 24px;
    }

    .faq__elem-btn {
      cursor: pointer;
      background: #1E1E1E;
      border-radius: 24px;
      display: flex;
      align-items: center;
      width: 100%;
      justify-content: space-between;
      padding: 16px 32px;
      font-weight: 700;
      font-size: 20px;
      line-height: 1.3;
      font-family: 'Noto Sans';
      position: relative;
      border: none;
      color: white;
      transition: all .3s;
    }

    .faq__elem-content {
      display: none;
      background: #1E1E1E;
      border-radius: 0 0 24px 24px;
      padding: 16px 32px;
      margin-top: -20px;
      padding-top: 23px;
    }

    .faq__elem-content p {
      font-size: 16px;
      font-weight: 400;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.85);
      margin-top: 10px;
    }

    .faq__svg {
      transition: all .3s;
      flex-shrink: 0;
    }

    .faq__active {
      background: var(--primary-color);
    }

    .faq__rotate {
      transform: rotate(180deg);
    }

    .faq__content-active {
      display: block;
    }

    /* Footer */
    footer {
      margin-top: 120px;
      padding-bottom: 50px;
    }

    .footer__inner {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .footer__top {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .footer__logo {
      display: flex;
      align-items: center;
      gap: 13.5px;
      font-size: 24px;
      font-weight: 700;
      text-decoration: none;
      color: white;
    }

    .footer__nav {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .footer__nav-elem {
      font-size: 18px;
      font-weight: 600;
      transition: all .3s;
      text-decoration: none;
      color: white;
    }

    .footer__nav-elem:hover {
      color: var(--primary-color);
    }

    hr {
      height: 1px;
      width: 100%;
      background: rgba(81, 91, 110, 1);
      border: none;
    }

    .footer__lower {
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: rgba(81, 91, 110, 1);
    }

    /* Mobile styles */
    @media (max-width: 1200px) {
      .hero__elem1, .hero__elem1-blur {
        width: 280px;
        height: 150px;
      }
      
      .hero__elem2, .hero__elem2-blur {
        width: 220px;
        height: 120px;
      }
      
      .hero__elem3, .hero__elem3-blur {
        width: 200px;
        height: 110px;
      }
      
      .hero__elem4, .hero__elem4-blur {
        width: 260px;
        height: 140px;
      }
      
      .hero__elem5, .hero__elem5-blur {
        width: 250px;
        height: 130px;
      }
    }

    @media (max-width: 768px) {
      h1 {
        font-size: 36px;
      }

      h2 {
        font-size: 32px;
      }

      h3 {
        font-size: 20px;
      }

      .btn {
        padding: 14px 30px;
        font-size: 16px;
      }

      .header__nav {
        display: none;
      }
      
      .header__btn {
        display: none;
      }

      .hero {
        min-height: auto;
        padding-bottom: 50px;
      }

      .hero__main {
        margin-top: 40px;
      }

      .hero__main-low {
        flex-direction: column;
        width: 100%;
      }

      .hero__main-low .btn {
        width: 100%;
        text-align: center;
      }

      .hero__elem1, .hero__elem1-blur {
        width: 140px;
        height: 80px;
        top: auto;
        bottom: 30%;
        left: -3%;
      }
      
      .hero__elem2, .hero__elem2-blur {
        width: 110px;
        height: 65px;
        top: auto;
        bottom: 10%;
        left: 2%;
      }
      
      .hero__elem3, .hero__elem3-blur {
        width: 130px;
        height: 75px;
        top: auto;
        bottom: 18%;
        left: 34%;
      }
      
      .hero__elem4, .hero__elem4-blur {
        width: 120px;
        height: 70px;
        top: auto;
        bottom: 14%;
        right: 2%;
      }
      
      .hero__elem5, .hero__elem5-blur {
        width: 130px;
        height: 75px;
        top: auto;
        bottom: 32%;
        right: -3%;
      }

      .serv__main {
        flex-direction: column;
      }

      .serv__col-elem {
        padding: 20px;
      }

      .faq__title {
        font-size: 36px;
      }

      .faq__elem-btn {
        font-size: 16px;
        padding: 14px 20px;
      }

      .faq__elem-content {
        padding: 14px 20px;
        padding-top: 30px;
      }

      .footer__top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
      }

      .footer__nav {
        flex-direction: column;
        gap: 15px;
      }

      .footer__lower {
        flex-direction: column;
        gap: 10px;
        text-align: center;
      }

      .seo-content h2 {
        font-size: 28px;
      }

      .seo-content h3 {
        font-size: 20px;
      }
    }
  