   *{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    body{
      font-family:'Poppins',sans-serif;
      background:#f8fafc;
      color:#0f172a;
      overflow-x:hidden;
    }

    a{
      text-decoration:none;
    }

    .container{
      width:100%;
      max-width:1300px;
      margin:auto;
      padding:0 15px;
    }

    section{
      padding:40px 0;
      position:relative;
    }

    .title{
      text-align:center;
      margin-bottom:50px;
    }

    .title h2{
      font-size:40px;
      font-weight:700;
      margin-bottom:15px;
      color:#0f172a;
    }

    .title p{
      max-width:700px;
      margin:auto;
      color:#64748b;
      line-height:1.8;
      font-size:15px;
    }

    /* HERO */
    .hero{
     min-height:100vh;
     padding-top:0;
     margin-top:0;
     align-items:center;
     background:linear-gradient(135deg,#ffffff,#f1f5f9,#e2e8f0);
    }

    .hero::before{
      content:'';
      position:absolute;
      width:500px;
      height:500px;
      background:#2563eb;
      filter:blur(180px);
      opacity:.25;
      top:-100px;
      left:-100px;
    }

    .hero::after{
      content:'';
      position:absolute;
      width:500px;
      height:500px;
      background:#06b6d4;
      filter:blur(180px);
      opacity:.20;
      bottom:-120px;
      right:-100px;
    }

    .hero-wrap{
      display:grid;
      grid-template-columns:1fr 1fr;
      align-items:center;
      gap:40px;
      position:relative;
      z-index:2;
    }

    .hero-text h1{
      font-size:60px;
      line-height:1.2;
      margin-bottom:20px;
      font-weight:700;
    }

    .hero-text h1 span{
      color:#2563eb;
    }

    .hero-text p{
      color:#64748b;
      line-height:1.9;
      font-size:16px;
      margin-bottom:35px;
    }

    .hero-btns{
      display:flex;
      gap:15px;
      flex-wrap:wrap;
    }

    .btn{
      padding:15px 35px;
      border-radius:14px;
      font-weight:600;
      transition:.3s;
      display:inline-block;
    }

    .btn-primary{
      background:linear-gradient(45deg,#2563eb,#06b6d4);
      color:#0f172a;
      box-shadow:0 10px 30px rgba(37,99,235,.4);
    }

    .btn-primary:hover{
      transform:translateY(-4px);
    }

    .btn-outline{
      border:2px solid rgba(255,255,255,.15);
      color:#0f172a;
      background:#ffffff;
      backdrop-filter:blur(10px);
    }

    .btn-outline:hover{
      background:#fff;
      color:#111827;
    }

    .hero-image{
      position:relative;
      text-align:center;
    }

    .hero-image img{
      width:100%;
      max-width:550px;
      animation:float 4s ease-in-out infinite;
      filter:drop-shadow(0 20px 40px rgba(0,0,0,.4));
    }

    @keyframes float{
      0%,100%{transform:translateY(0px)}
      50%{transform:translateY(-15px)}
    }

    /* STATUS */

    .stats-grid{
      display:grid;
      grid-template-columns:repeat(5,1fr);
      gap:20px;
    }

    .stat-box{
      background:#ffffff;
      border:1px solid #e2e8f0;
      backdrop-filter:blur(10px);
      border-radius:24px;
      padding:30px 20px;
      text-align:center;
      transition:.3s;
      position:relative;
      overflow:hidden;
    }

    .stat-box:hover{
      transform:translateY(-8px);
      border-color:#2563eb;
    }

    .stat-box i{
      width:70px;
      height:70px;
      line-height:70px;
      border-radius:50%;
      background:linear-gradient(45deg,#2563eb,#06b6d4);
      font-size:28px;
      margin-bottom:18px;
    }

    .stat-box h3{
      font-size:30px;
      margin-bottom:10px;
    }

    .stat-box p{
      color:#64748b;
      font-size:15px;
    }

    /* OFFERWALLS */

    .offer-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:22px;
    }

    .offer-box{
      background:#ffffff;
      border-radius:22px;
      padding:25px;
      text-align:center;
      border:1px solid #e2e8f0;
      transition:.3s;
    }

    .offer-box:hover{
      transform:translateY(-8px);
      border-color:#2563eb;
      box-shadow:0 15px 35px rgba(15,23,42,.08);
    }

    .offer-box img{
      width:75px;
      height:75px;
      object-fit:contain;
      margin-bottom:18px;
      background:#fff;
      padding:10px;
      border-radius:18px;
    }

    .offer-box h4{
      font-size:20px;
      margin-bottom:10px;
    }

    .offer-box p{
      color:#64748b;
      font-size:14px;
      line-height:1.7;
    }

    /* FEATURES */

    .feature-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:22px;
    }

    .feature-box{
      background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
      border-radius:24px;
      padding:30px 25px;
      border:1px solid #e2e8f0;
      transition:.3s;
    }

    .feature-box:hover{
      transform:translateY(-7px);
      border-color:#06b6d4;
    }

    .feature-box i{
      font-size:35px;
      margin-bottom:18px;
      color:#2563eb;
    }

    .feature-box h4{
      margin-bottom:15px;
      font-size:21px;
    }

    .feature-box p{
      color:#64748b;
      line-height:1.8;
      font-size:14px;
    }

    /* PAYMENTS */

    .payment-wrap{
      background:rgba(255,255,255,.04);
      border-radius:30px;
      padding:30px;
      border:1px solid #e2e8f0;
      overflow:auto;
    }

    table{
      width:100%;
      border-collapse:collapse;
    }

    table th{
      background:#f1f5f9;
      padding:18px;
      text-align:left;
      font-size:15px;
    }

    table td{
      padding:18px;
      border-bottom:1px solid rgba(255,255,255,.07);
      color:#64748b;
      font-size:14px;
    }

    .badge{
      padding:8px 15px;
      border-radius:30px;
      background:#16a34a;
      color:#0f172a;
      font-size:13px;
      display:inline-block;
    }

    /* FAQ */

    .faq-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:25px;
      align-items:start;
    }

    .faq-image img{
      width:100%;
      border-radius:30px;
    }

    .faq-item{
      background:#ffffff;
      border-radius:18px;
      margin-bottom:18px;
      padding:22px;
      border:1px solid rgba(255,255,255,.07);
    }

    .faq-item h4{
      font-size:18px;
      margin-bottom:12px;
    }

    .faq-item p{
      color:#64748b;
      line-height:1.8;
      font-size:14px;
    }

    /* MOBILE */

    @media(max-width:1200px){
      .stats-grid{
        grid-template-columns:repeat(3,1fr);
      }

      .feature-grid,
      .offer-grid{
        grid-template-columns:repeat(2,1fr);
      }
    }

    @media(max-width:991px){
      .hero-wrap,
      .faq-grid{
        grid-template-columns:1fr;
      }

      .hero{
        padding-top:60px;
      }

      .hero-text{
        text-align:center;
      }

      .hero-btns{
        justify-content:center;
      }

      .hero-text h1{
        font-size:42px;
      }
    }

    @media(max-width:768px){
      .stats-grid,
      .feature-grid,
      .offer-grid{
        grid-template-columns:1fr;
      }

      .title h2{
        font-size:30px;
      }

      .hero-text h1{
        font-size:34px;
      }

      .hero-text p{
        font-size:15px;
      }

      section{
        padding:55px 0;
      }

      .btn{
        width:100%;
        text-align:center;
      }

      .hero-btns{
        flex-direction:column;
      }
    }