    * {
      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 {
      font-weight: 900;
      font-size: 64px;
      line-height: 1.2;
      text-align: center;
      position: relative;
    }

    h2 {
      font-weight: 900;
      font-size: 48px;
      line-height: 1.35;
    }

    h3 {
      font-weight: 900;
      font-size: 28px;
      line-height: 1.3;
    }

    h4 {
      font-size: 20px;
    }

    h5 {
      font-size: 18px;
      line-height: 1.4;
    }

    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: 18px;
      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) 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__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .header__logo {
      display: flex;
      font-weight: 800;
      font-size: 32px;
      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: 80px;
      min-height: 80vh;
      position: relative;
      display: flex;
      align-items: center;
    }

    .hero__inner {
      position: relative;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      z-index: 5;
    }

    .hero__badge {
      display: inline-block;
      padding: 8px 24px;
      background: rgba(171, 44, 244, 0.2);
      border: 1px solid rgba(171, 44, 244, 0.5);
      border-radius: 100px;
      color: var(--primary-color);
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 30px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .hero__main-txt {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 20px;
      text-align: center;
      margin-bottom: 50px;
    }

    .hero__subtitle {
      font-size: 22px;
      color: rgba(255, 255, 255, 0.8);
      max-width: 700px;
    }

    /* 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: -10%;
      left: -5%;
      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: 400px;
      height: 400px;
      border-radius: 50%;
      filter: blur(80px);
      animation: parallax 10s infinite alternate linear;
    }

    .p-circle2 {
      position: absolute;
      bottom: 10%;
      left: -3%;
      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(60px);
      width: 200px;
      height: 200px;
      border-radius: 50%;
      animation: parallax2 12s infinite alternate ease;
    }

    .p-circle3 {
      position: absolute;
      top: 20%;
      right: -5%;
      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(60px);
      width: 300px;
      height: 300px;
      border-radius: 50%;
    }

    .p-circle4 {
      position: absolute;
      bottom: -10%;
      right: 10%;
      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: 350px;
      height: 350px;
      border-radius: 50%;
      filter: blur(80px);
    }

    /* Services Grid */
    .services {
      margin-top: 60px;
      margin-bottom: 100px;
    }

    .services__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: 30px;
      position: relative;
      z-index: 5;
    }

    @property --angle {
      syntax: "<angle>";
      inherits: true;
      initial-value: 0turn;
    }

    @keyframes spin {
      to {
        --angle: 1turn;
      }
    }

    .service-card {
      position: relative;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 32px;
      padding: 40px;
      transition: all .4s;
      cursor: pointer;
      --border-width: 2px;
      --radius: 32px;
      border: var(--border-width) solid transparent;
      overflow: hidden;
    }

    .service-card::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;
    }

    .service-card:hover {
      transform: translateY(-10px);
      background: rgba(255, 255, 255, 0.08);
    }

    .service-card__icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, var(--primary-color), #6021a0);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 40px;
      margin-bottom: 24px;
    }

    .service-card h3 {
      margin-bottom: 16px;
    }

    .service-card p {
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 24px;
      line-height: 1.7;
    }

    .service-card__link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--primary-color);
      font-weight: 600;
      text-decoration: none;
      transition: all .3s;
    }

    .service-card__link:hover {
      gap: 12px;
    }

    /* Features */
    .features {
      padding: 100px 0;
      background: rgba(255, 255, 255, 0.02);
      position: relative;
    }

    .features__inner {
      text-align: center;
    }

    .features h2 {
      margin-bottom: 20px;
      text-align: center;
    }

    .features__subtitle {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 60px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .features__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 60px;
    }

    .feature-item {
      text-align: center;
      padding: 30px 20px;
    }

    .feature-item__icon {
      font-size: 48px;
      margin-bottom: 20px;
    }

    .feature-item h4 {
      margin-bottom: 12px;
      color: var(--primary-color);
    }

    .feature-item p {
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.6;
    }

    /* CTA Section */
    .cta {
      padding: 100px 0;
      text-align: center;
      position: relative;
    }

    .cta h2 {
      margin-bottom: 20px;
    }

    .cta p {
      font-size: 20px;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 40px;
    }

    /* Footer */
    footer {
      padding: 60px 0 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .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: 28px;
      font-weight: 800;
      text-decoration: none;
      color: white;
    }

    .footer__nav {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .footer__nav-elem {
      font-size: 16px;
      font-weight: 600;
      transition: all .3s;
      text-decoration: none;
      color: rgba(255, 255, 255, 0.7);
    }

    .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);
      font-size: 14px;
    }

    /* Mobile styles */
    @media (max-width: 768px) {
      h1 {
        font-size: 40px;
      }

      h2 {
        font-size: 32px;
      }

      h3 {
        font-size: 22px;
      }

      .btn {
        padding: 14px 30px;
        font-size: 16px;
      }

      .header__nav {
        display: none;
      }
      
      .header__btn {
        font-size: 14px;
        padding: 10px 20px;
      }

      .header__logo {
        font-size: 24px;
      }

      .hero {
        margin-top: 40px;
        min-height: auto;
        padding: 60px 0;
      }

      .hero__subtitle {
        font-size: 18px;
      }

      .services__grid {
        grid-template-columns: 1fr;
      }

      .service-card {
        padding: 30px 24px;
      }

      .features__grid {
        grid-template-columns: 1fr;
      }

      .footer__top {
        flex-direction: column;
        gap: 30px;
        text-align: center;
      }

      .footer__nav {
        flex-direction: column;
        gap: 15px;
      }

      .footer__lower {
        flex-direction: column;
        gap: 10px;
        text-align: center;
      }

      .p-circle1,
      .p-circle2,
      .p-circle3,
      .p-circle4 {
        width: 200px;
        height: 200px;
      }
    }
