
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    html {
      scroll-behavior: smooth;
    }
    
    body {
      font-family: 'Noto Sans', sans-serif;
      background: #110F12;
      color: #ffffff;
      overflow-x: hidden;
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    /* Header */
    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(17, 15, 18, 0.8);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .header__inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 0;
    }
    
    .header-logo {
      font-size: 28px;
      font-weight: 900;
      color: #ffffff;
      text-decoration: none;
      letter-spacing: -1px;
    }
    
    .header__nav {
      display: flex;
      gap: 40px;
      align-items: center;
    }
    
    .header__nav a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      font-size: 16px;
      font-weight: 500;
      transition: color 0.3s;
    }
    
    .header__nav a:hover {
      color: #ab2cf4;
    }
    
    /* Buttons */
    .btn {
      padding: 14px 28px;
      border-radius: 12px;
      text-decoration: none;
      font-size: 16px;
      font-weight: 600;
      transition: all 0.3s;
      display: inline-block;
      border: none;
      cursor: pointer;
    }
    
    .grad-btn {
      background: linear-gradient(135deg, #ab2cf4 0%, #8a24c4 100%);
      color: #ffffff;
      animation: fiolentGradient 4s ease-in-out infinite alternate;
    }
    
    .grad-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(171, 44, 244, 0.3);
    }
    
    .black-btn {
      background: rgba(255, 255, 255, 0.05);
      color: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .black-btn:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.2);
    }
    
    @keyframes fiolentGradient {
      0% { background-position: 0% 50%; }
      100% { background-position: 100% 50%; }
    }
    
    /* Hero Section */
    .hero {
      padding: 100px 0 80px;
      position: relative;
      overflow: hidden;
    }
    
    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -20%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(171, 44, 244, 0.15) 0%, transparent 70%);
      filter: blur(80px);
      pointer-events: none;
    }
    
    .hero__inner {
      position: relative;
      z-index: 1;
    }
    
    .hero__top {
      max-width: 800px;
    }
    
    .hero__txt h3 {
      font-size: 20px;
      font-weight: 600;
      color: #ab2cf4;
      margin-bottom: 16px;
    }
    
    .hero__txt h1 {
      font-size: 64px;
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 24px;
    }
    
    .hero__btns {
      display: flex;
      gap: 16px;
      margin-top: 40px;
    }
    
    .hero__image {
      margin-top: 60px;
      text-align: center;
    }
    
    .hero__image img {
      max-width: 500px;
      width: 100%;
      height: auto;
      filter: drop-shadow(0 20px 60px rgba(171, 44, 244, 0.3));
    }
    
    /* Why Section */
    .why {
      padding: 100px 0;
      background: rgba(255, 255, 255, 0.02);
    }
    
    .why__t {
      font-size: 48px;
      font-weight: 900;
      margin-bottom: 60px;
      line-height: 1.2;
    }
    
    .grey-txt {
      color: rgba(255, 255, 255, 0.4);
    }
    
    .gold-txt {
      color: #FFD700;
    }
    
    .orange-txt {
      color: #FF6B35;
    }
    
    .grad-txt {
      background: linear-gradient(135deg, #ab2cf4 0%, #60d5ff 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    .why__elems {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    
    .why__elem {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 20px;
      padding: 40px 30px;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }
    
    .why__elem:hover {
      transform: translateY(-5px);
      border-color: rgba(171, 44, 244, 0.3);
      background: rgba(255, 255, 255, 0.05);
    }
    
    .why__elem h2 {
      font-size: 28px;
      font-weight: 700;
      line-height: 1.3;
    }
    
    .refill {
      grid-column: span 2;
    }
    
    .bins {
      grid-column: span 1;
    }
    
    .payment {
      grid-column: span 2;
      display: flex;
      align-items: center;
      gap: 30px;
    }
    
    .payment img {
      width: 120px;
      height: 120px;
    }
    
    .payment-txt h3 {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.6);
      font-weight: 400;
      margin-top: 12px;
    }
    
    /* Bigger Section */
    .bigger {
      padding: 100px 0;
    }
    
    .bigger__inner h1 {
      font-size: 48px;
      font-weight: 900;
      margin-bottom: 60px;
      line-height: 1.2;
    }
    
    .bigger__elems {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    
    .bigger__elem {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 20px;
      padding: 40px 30px;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }
    
    .bigger__elem:hover {
      transform: translateY(-5px);
      border-color: rgba(171, 44, 244, 0.3);
    }
    
    .bigger__elem h2 {
      font-size: 28px;
      font-weight: 700;
      line-height: 1.3;
    }
    
    .bigger__elem h3 {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.6);
      font-weight: 400;
      margin-top: 12px;
    }
    
    .blue-txt {
      color: #60d5ff;
    }
    
    .green-txt {
      color: #48B96D;
    }
    
    .reliable {
      grid-column: span 2;
      position: relative;
    }
    
    .relia-shield {
      position: absolute;
      right: 30px;
      bottom: 20px;
      opacity: 0.1;
    }
    
    .balance {
      grid-column: span 1;
    }
    
    .platf {
      grid-column: span 3;
    }
    
    .platf img {
      width: 100%;
      max-width: 800px;
      margin-top: 30px;
      border-radius: 12px;
    }
    
    .popoln {
      grid-column: span 1;
    }
    
    .pgrad-txt {
      background: linear-gradient(135deg, #ab2cf4 0%, #FF6B35 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    .graph {
      grid-column: span 1;
    }
    
    .teleg {
      grid-column: span 1;
      position: relative;
    }
    
    .tg-txt {
      color: #229ED9;
    }
    
    .manager {
      grid-column: span 2;
    }
    
    /* Cards Section */
    .cards {
      padding: 100px 0;
      background: rgba(255, 255, 255, 0.02);
    }
    
    .cards__inner h1 {
      font-size: 48px;
      font-weight: 900;
      margin-bottom: 60px;
      line-height: 1.2;
    }
    
    .cards__elems {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    
    .cards__elem {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 20px;
      padding: 40px;
      transition: all 0.3s;
      display: flex;
      gap: 30px;
      align-items: center;
    }
    
    .cards__elem:hover {
      transform: translateY(-5px);
      border-color: rgba(171, 44, 244, 0.3);
      background: rgba(255, 255, 255, 0.05);
    }
    
    .cards__elem img {
      width: 80px;
      height: 80px;
      flex-shrink: 0;
    }
    
    .cards__txt h2 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 12px;
    }
    
    .cards__txt h4 {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.6);
      font-weight: 400;
      line-height: 1.6;
    }
    
    /* Tarifs Section */
    .tarifs {
      padding: 100px 0;
    }
    
    .tarifs__txt h1 {
      font-size: 48px;
      font-weight: 900;
      margin-bottom: 12px;
    }
    
    .tarifs__txt h2 {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.5);
      font-weight: 400;
      margin-bottom: 60px;
    }
    
    .tarifs__table {
      display: grid;
      grid-template-columns: 1.5fr 2fr 1fr 1fr;
      gap: 1px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 16px;
      overflow: hidden;
    }
    
    .tarifs__col {
      background: #110F12;
      display: flex;
      flex-direction: column;
    }
    
    .tarifs__col h4 {
      padding: 20px;
      font-size: 16px;
      font-weight: 400;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .tarifs__col h4:first-child {
      font-weight: 700;
      background: rgba(255, 255, 255, 0.03);
    }
    
    .bold-txt {
      font-weight: 700 !important;
    }
    
    .pro-grad-txt {
      background: linear-gradient(135deg, #ab2cf4 0%, #60d5ff 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 700 !important;
    }
    
    .ent-grad-txt {
      background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 700 !important;
    }
    
    .elite-grad-txt {
      background: linear-gradient(135deg, #FF6B35 0%, #FF4500 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 700 !important;
    }
    
    .privat-grad-txt {
      background: linear-gradient(135deg, #48B96D 0%, #00C853 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 700 !important;
    }
    
    .tarifs__kom {
      margin-top: 60px;
      display: flex;
      gap: 60px;
      align-items: flex-start;
    }
    
    .tarifs__kom h2 {
      font-size: 32px;
      font-weight: 700;
      min-width: 300px;
    }
    
    .tarifs__kom-r {
      flex: 1;
    }
    
    .tarisf__dop {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 16px;
      padding-left: 20px;
      position: relative;
    }
    
    .tarisf__dop::before {
      content: '•';
      position: absolute;
      left: 0;
      color: #ab2cf4;
      font-weight: 900;
    }
    
    /* FAQ Section */
    .faq {
      padding: 100px 0;
      background: rgba(255, 255, 255, 0.02);
    }
    
    .faq__inner h1 {
      font-size: 48px;
      font-weight: 900;
      margin-bottom: 60px;
    }
    
    .faq__item {
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .faq__question {
      width: 100%;
      background: none;
      border: none;
      color: #ffffff;
      font-size: 20px;
      font-weight: 600;
      padding: 30px 0;
      text-align: left;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: color 0.3s;
    }
    
    .faq__question:hover {
      color: #ab2cf4;
    }
    
    .faq__arrow {
      width: 20px;
      height: 12px;
      transition: transform 0.3s;
    }
    
    .faq__item.active .faq__arrow {
      transform: rotate(180deg);
    }
    
    .faq__answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      font-size: 16px;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.6;
    }
    
    .faq__item.active .faq__answer {
      max-height: 500px;
      padding-bottom: 30px;
    }
    
    /* Solution Section */
    .solut {
      padding: 120px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    
    .solut::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(171, 44, 244, 0.2) 0%, transparent 70%);
      filter: blur(100px);
      pointer-events: none;
    }
    
    .solut__inner {
      position: relative;
      z-index: 1;
    }
    
    .solut__inner svg {
      margin-bottom: 30px;
    }
    
    .solut__inner h1 {
      font-size: 56px;
      font-weight: 900;
      margin-bottom: 16px;
      line-height: 1.2;
    }
    
    .solut__inner h3 {
      font-size: 20px;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 40px;
    }
    
    .solut-btn {
      display: inline-block;
      padding: 18px 48px;
      background: linear-gradient(135deg, #ab2cf4 0%, #8a24c4 100%);
      color: #ffffff;
      text-decoration: none;
      font-size: 18px;
      font-weight: 600;
      border-radius: 12px;
      transition: all 0.3s;
    }
    
    .solut-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 40px rgba(171, 44, 244, 0.4);
    }
    
    /* Footer */
    footer {
      background: rgba(255, 255, 255, 0.02);
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding: 60px 0 40px;
    }
    
    .footer__top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 40px;
    }
    
    .footer__top .logo {
      font-size: 28px;
      font-weight: 900;
      color: #ffffff;
      text-decoration: none;
    }
    
    .footer__top-r {
      display: flex;
      gap: 16px;
    }
    
    .footer__divid {
      height: 1px;
      background: rgba(255, 255, 255, 0.05);
      margin: 40px 0;
    }
    
    .footer__bot {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .footer__bot p {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.5);
    }
    
    .footer__nav {
      display: flex;
      gap: 32px;
    }
    
    .footer__nav a {
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      font-size: 14px;
      transition: color 0.3s;
    }
    
    .footer__nav a:hover {
      color: #ab2cf4;
    }
    
    /* Responsive */
    @media (max-width: 1024px) {
      .header__nav {
        display: none;
      }
      
      .hero__txt h1 {
        font-size: 48px;
      }
      
      .why__elems,
      .bigger__elems {
        grid-template-columns: 1fr;
      }
      
      .why__elem,
      .bigger__elem {
        grid-column: span 1 !important;
      }
      
      .cards__elems {
        grid-template-columns: 1fr;
      }
      
      .tarifs__table {
        grid-template-columns: 1fr;
      }
      
      .tarifs__kom {
        flex-direction: column;
        gap: 30px;
      }
      
      .footer__top,
      .footer__bot {
        flex-direction: column;
        gap: 24px;
        text-align: center;
      }
      
      .footer__nav {
        flex-direction: column;
        gap: 16px;
      }
    }
    
    @media (max-width: 768px) {
      .hero__txt h1 {
        font-size: 36px;
      }
      
      .hero__btns {
        flex-direction: column;
      }
      
      .why__t,
      .bigger__inner h1,
      .cards__inner h1,
      .tarifs__txt h1,
      .faq__inner h1,
      .solut__inner h1 {
        font-size: 32px;
      }
      
      .cards__elem {
        flex-direction: column;
        text-align: center;
      }
    }
