.header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(8,23,38,.85);
  backdrop-filter:blur(10px);
}


.nav-wrapper{
  width:100%;
  height:80px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  padding:0 30px;
  background:rgb(13 20 48);
}

.nav-left,
.nav-right{
  display:flex;
  gap:26px;
}

.nav-left{justify-content:flex-start}
.nav-right{justify-content:flex-end}

.nav-left a,
.nav-right a{
  font-weight:500;
  opacity:.9;
  transition:.2s;
  
}

.nav-left a:hover,
.nav-right a:hover{opacity:1}

.nav-logo{
  font-size:22px;
  font-weight:800;
  letter-spacing:2px;
  text-align:center;
}


.btn-nav{
  padding:10px 22px;
  border-radius:30px;
  background:linear-gradient(180deg, #3995b5 0%, #1e85ad 45%, #1660a9 100%);
  color:#000;
  font-weight:600;
}


.burger{
  display:none;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
  justify-self:end;
  padding: 10px;
  font-size: 9px;
}

.burger span{
  width:26px;
  height:2px;
  background:#fff;
  transition:.3s;
}


.mobile-menu{
  position:fixed;
  top:0;
  right:-100%;
  width:100%;
  height:80vh;
  background:linear-gradient(180deg, #17295a, #0b1836);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  transition:.4s ease;
      font-size: 14px;
}

.mobile-menu a{
  font-size:22px;
  font-weight:600;
}

.btn-mobile{
  padding:14px 36px;
  border-radius:40px;
  background:linear-gradient(180deg, #3995b5 0%, #1e85ad 45%, #1660a9 100%);
  color:#000;
}


.mobile-menu.active{right:0;
    z-index: -999999;
    position: relative;}

.burger.active span:nth-child(1){
  transform:rotate(45deg) translate(6px,6px)
}
.burger.active span:nth-child(2){opacity:0}
.burger.active span:nth-child(3){
  transform:rotate(-45deg) translate(6px,-6px)
}


@media(max-width:900px){
  .nav-left,
  .nav-right{display:none}

  .burger{display:flex}
}
.mobile-close{
  position:absolute;
  top:25px;
  right:25px;
  font-size:32px;
  font-weight:300;
  cursor:pointer;
  opacity:.8;
  transition:.2s;
}

.mobile-close:hover{
  opacity:1;
  transform:scale(1.1);
}








.hero-banner{
  min-height:85vh;
  display:flex;
  align-items:center;
  /*background:
    radial-gradient(circle at top left,#143d66,transparent 40%),
    radial-gradient(circle at bottom right,#0b3a5c,transparent 40%),
    #081726;*/
	background-image: url(/home/img/head1.png);
}


.hero-inner{
  width:100%;
  max-width:1400px;
  margin:120px auto;
  padding:0 30px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:60px;
  align-items:center;
}


.hero-badge{
  display:inline-block;
  padding:8px 16px;
  border-radius:30px;
  background:#ffffff14;
  margin-bottom:20px;
  font-size:70px;
  text-transform: uppercase;
}

.hero-title span{
  display:block;
  font-size:clamp(36px,5vw,64px);
  font-weight:800;
  line-height:1.1;
  opacity:0;
  transform:translateY(20px);
  animation:fadeUp .6s forwards;
}

.hero-title span:nth-child(1){animation-delay:.1s}
.hero-title span:nth-child(2){animation-delay:.25s}
.hero-title span:nth-child(3){animation-delay:.4s}
.hero-title span:nth-child(4){animation-delay:.55s}

.hero-text{
  margin:30px 0 40px;
  max-width:500px;
  opacity:0;
  animation:fadeUp .6s .7s forwards;
  
}

.hero-actions{
  display:flex;
  gap:20px;
  opacity:0;
  animation:fadeUp .6s .9s forwards;
}

.btn{
  padding:14px 34px;
  border-radius:40px;
  background:linear-gradient(90deg,#2ecbff,#22d3ee);
  color:#000;
  font-weight:600;
}

.btn.ghost{
  background:#ffffff18;
  color:#fff;
  border: 1px solid #2ab7ff;
/* background: #141E3D;
 color: #FFFFFF;*/
}


.hero-right{
  position:relative;
  display:flex;
  justify-content:center;
}

.visual-card{
  width:100%;
  max-width:500px;
  height:500px;
  background:url(/home/img/head2.png);
  border-radius:30px;
  padding:20px;
  box-shadow:0 0 50px rgb(34 53 104);
  animation:float 6s ease-in-out infinite;
  background-position: center;
}
.visual-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgb(48, 1, 52, 0.2);
  z-index:1;
}

.visual-card img{
  border-radius:20px;
}

.home_profit{
  width:100%;
  max-width:500px;
  height:500px;
  background:url(/home/img/head3.png);
  border-radius:30px;
  padding:20px;
  box-shadow:0 0 50px rgb(34 53 104);
  animation:float 6s ease-in-out infinite;
  background-position: center;
}


/*.home_profit::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgb(48, 1, 52, 0.4);
  z-index:1;
}*/

.home_profit img{
  border-radius:20px;
}

/* floating effects */
.floating{
  position:absolute;
  width:180px;
  height:180px;
  border-radius:50%;
  filter:blur(60px);
  background:#2ecbff55;
  top:10%;
  right:10%;
  animation:float 8s infinite;
}

.floating.small{
  width:120px;
  height:120px;
  background:#22d3ee55;
  top:60%;
  right:50%;
}


@keyframes fadeUp{
  to{opacity:1;transform:translateY(0)}
}

@keyframes float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-20px)}
}


@media(max-width:900px){
  .hero-inner{
    grid-template-columns:1fr;
    text-align:center;
  }

  .hero-text{margin-left:auto;margin-right:auto}
  .hero-actions{justify-content:center}

  .hero-right{
    margin-top:40px;
  }
}






.stats{
  padding:90px 20px;
      background: linear-gradient(180deg, #17295a, #0b1836);
}

.stats-grid{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}
.stats-grid_accaunt{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}


.stat-card{
  background:#1b2954;
  border:1px solid rgba(255,255,255,0.15);
  border-radius:20px;
  padding:35px 20px;
  text-align:center;
  backdrop-filter:blur(12px);
  transition:.35s ease;
}
.stats-card p{color: #8FA3C8;}

.stat-card:hover{
  transform:translateY(-8px);
    background: linear-gradient(180deg, #3352a7, #223568);
    box-shadow: 0 0 50px rgb(34 53 104);
}

.stat-number{
  font-size:30px;
  font-weight:700;
  color:#9ad4ff;
  display:block;
}

.stat-card p{
  margin-top:8px;
  opacity:.8;
}


@media(max-width:1000px){
  .stats-grid{
    grid-template-columns:repeat(2,1fr);
  }
}
@media(max-width:1000px){
  .stats-grid_accaunt{
    grid-template-columns:repeat(1,1fr);
  }
}


@media(max-width:520px){
  .stats-grid{
    grid-template-columns:repeat(2,1fr);
    gap:15px;
  }

  .stat-number{
    font-size:28px;
  }
}






*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
}
body{
  background:#000;
  color:#fff;
  overflow-x:hidden;
}


.tariffs2{
  position:relative;
  background:url("/home/img/head1.png") center/cover no-repeat;
}

.tariffs2::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgb(11, 25, 55, 0.3);
  z-index:1;
}

.tariffs2 > *{
  position:relative;
  z-index:2;
}
.tariffs{
  padding:80px 20px;
}
.tariffs h2{
  text-align:center;
  font-size:42p;
  margin-bottom:60px;
}


.tariffs-layout{
  max-width:1600px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1.2fr 1fr;
  gap:40px;
}


.side{
  position:relative;
}
.cards{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:25px;
}


.card{
  height:auto;
  border-radius:20px;
  padding:30px 20px;
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:space-between;
  text-align:center;
}

.card h3{
  font-size:18px;
  text-transform:uppercase;
}

.price-circle{
width: 130px;
    height: 130px;
    border-radius: 26px;
    background: #1b2954;
    color: #9ad4ff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: bold;
	margin: 0px auto;
}

.price-circle span{
  font-size:28px;
}

.card ul{
  list-style:none;
  font-size:14px;
  line-height:1.6;
  color: #9FB2D9;
}
.card ul{
    border: 1px solid #2ab7ff;
    backgroun: rgb(126, 5, 207, 0.2);
    border-radius: 11px;

    margin: 10px 10px 10px 10px;
}

.card button{
    background: #1b2954;
    color: #9ad4ff;
  border:none;
  padding:12px 30px;
  border-radius:30px;
  font-weight:bold;
  cursor:pointer;
  font-size: 12px;
}


.pink{background:linear-gradient(180deg,#ff3cac,#784ba0);}
.blue{background:linear-gradient(180deg,#00dbde,#007adf);}
.yellow{background:linear-gradient(180deg,#f7971e,#ffd200);}
.red{background:linear-gradient(180deg,#f00000,#dc281e);}


.center{
    background: linear-gradient(180deg, #17295a, #0b1836);
    border-radius: 30px;
    padding: 10px;
    border: 2px solid #2EC5FF;
    box-shadow: 0 0 50px rgb(34 53 104);
}
.center h3{
  font-size:30px;
  margin-bottom:20px;
}
.center label{
  display:block;
  margin-top:15px;
}
.center input{
  width:100%;
  margin-top:10px;
  border: 1px solid #2ec5ff;
  background: #182c62;
  padding: 10px;
}
.results{
  margin-top:20px;
  line-height:1.8;
  font-size:16px;
}


.arrow{
  display:none;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:40px;
  height:40px;
  border-radius:50%;
  background:#4fd1ff;
  border:none;
  font-size:22px;
  cursor:pointer;
      z-index: 9;
}
.arrow.left{left:-15px;}
.arrow.right{right:-15px;}


@media(max-width:1100px){
  .tariffs-layout{
    grid-template-columns:1fr;
  }


  .cards{
    display:flex;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
  }
  .cards::-webkit-scrollbar{display:none;}

  .card{
    min-width:85%;
    scroll-snap-align:center;
  }

  .arrow{
    display:block;
  }
}

@media(max-width:420px){
  .tariffs-layout{
    grid-template-columns:1fr;
  }

  .cards{
    display:flex;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
  }
  .cards::-webkit-scrollbar{display:none;}

  .card{
    min-width:85%;
    scroll-snap-align:center;
  }

  .arrow{
    display:block;
  }
}






.plan1{
      position: relative;
    border-radius: 26px;
    padding: 28px;
    backdrop-filter: blur(14px);
    background: #121C3A;
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    transition: .5s;
}

.plan1::before{
  content:"";
  position:absolute;
  inset:-2px;
  /*background:linear-gradient(120deg,transparent,rgba(255,255,255,.35),transparent);*/
  opacity:0;
  transition:.5s;
       box-shadow: 0 0 50px rgb(178, 29, 205, 0.5);
}

.plan1:hover::before{
  opacity:1;
}

.plan1:hover{
  transform:translateY(-12px) scale(1.02);
  box-shadow:0 0 50px rgb(34 53 104);
}






body {
  margin:0; padding:0;
  font-family:sans-serif;
  background:#000;
  color:#fff;
}


.section-title{
  text-align:center;
  font-size:36px;
  margin-top:50px;
  color:#fff;
}
.plans-column h3{
  font-size:22px;
  margin-bottom:20px;
  text-align:center;
  color:#2ecbff;
}


.plans-wrapper{
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
  margin-top:30px;
}
.plans-column{
  flex:1 1 300px;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.plan-slider{
  display:flex;
  gap:20px;
  overflow:hidden;
}
.plan-card{
  min-width:220px;
  background:linear-gradient(180deg,#102d46,#081726);
  border-radius:24px;
  padding:25px 15px;
  text-align:center;
  box-shadow:0 20px 40px rgba(0,0,0,.4);
  transition:.3s;
  cursor:pointer;
}
.plan-card:hover{
  transform:translateY(-5px);
  box-shadow:0 30px 50px rgba(0,0,0,.5);
}


.slider-controls{
  display:flex;
  justify-content:center;
  margin-top:15px;
  gap:10px;
}
.slider-controls button{
  padding:8px 16px;
  border:none;
  border-radius:20px;
  background:#2ecbff;
  color:#000;
  font-weight:700;
  cursor:pointer;
  transition:.2s;
}
.slider-controls button:hover{
  transform:scale(1.1);
}

@media(max-width:900px){
  .plan-slider{
    overflow-x:auto;
    display:flex;
    gap:15px;
    padding-bottom:10px;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .plan-slider::-webkit-scrollbar{
    display:none;
  }
  .plan-card{
    min-width:80%;
    scroll-snap-align:center;
    flex-shrink:0;
  }
}

.calculator{
  background:linear-gradient(180deg,#081726,#0b1f33);
  border-radius:30px;
  padding:40px 30px;
  margin:60px auto;
  text-align:center;
  max-width:800px;
}
.calculator h3{
  color:#2ecbff;
  margin-bottom:20px;
}
.calc-row{
  margin:20px 0;
}
#calc-range{
  width:100%;
  margin-top:10px;
}
.calc-result{
  margin-top:30px;
  font-size:18px;
}
.calc-result span{
  font-weight:700;
  color:#2ecbff;
}
select{
  padding:8px 12px;
  border-radius:8px;
  border:none;
  font-size:16px;
  border: 1px solid #2ec5ff;
  background: #182c62;
}






.how-section{
  padding:100px 20px;
  background:radial-gradient(circle at top,#0b1f33,#000);
}

.how-wrapper{
  max-width:1400px;
  margin:auto;
  position:relative;
}

.how-slider{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.how-card{
  background:linear-gradient(180deg,#0c2b44,#061726);
  border-radius:30px;
  padding:40px 30px;
  text-align:center;
  transition:.4s;
}

.how-card:hover{
  transform:translateY(-8px);
}

.how-icon{
  width:70px;
  height:70px;
  margin:0 auto 20px;
  border-radius:50%;
  background:linear-gradient(135deg,#2ecbff,#1b7fd6);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  font-weight:700;
  color:#000;
}

.how-card h4{
  color:#2ecbff;
  margin-bottom:10px;
}

.how-arrow{
  display:none;
}

@media(max-width:900px){
  .how-slider{
    display:flex;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    gap:20px;
  }

  .how-slider::-webkit-scrollbar{
    display:none;
  }

  .how-card{
    min-width:85%;
    scroll-snap-align:center;
  }

  .how-arrow{
    display:flex;
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:38px;
    height:38px;
    border-radius:50%;
    background:#2ecbff;
    color:#000;
    font-size:24px;
    align-items:center;
    justify-content:center;
    border:none;
    cursor:pointer;
    z-index:10;
  }

  .how-arrow.left{left:-10px}
  .how-arrow.right{right:-10px}
}






.about-section{
  padding:100px 20px;
}
.about-section2{
  position:relative;
  background:url("/home/img/head5.png") center/cover no-repeat;
}

.about-section2::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgb(14, 21, 47, 0.8);
  z-index:1;
}

.about-section2 > *{
  position:relative;
  z-index:2;
}

.about-container{
  max-width:1400px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:60px;
  align-items:center;
}

.section-title.left{
  text-align:left;
}

.about-desc{
  font-size:17px;
  opacity:.85;
  margin:20px 0 30px;
  line-height:1.7;
}

.about-list{
  list-style:none;
  padding:0;
  margin:0;
}

.about-list li{
  padding-left:28px;
  margin-bottom:14px;
  position:relative;
}

.about-list li::before{
  content:'✓';
  position:absolute;
  left:0;
  color:#4fd1ff;
}

.about-visual{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.about-card{
  background:linear-gradient(180deg, #1e336c, #112450);
  border-radius:26px;
  padding:40px 20px;
  text-align:center;
  font-weight:600;
  transition:.3s;
}

.about-card:hover{
  transform:translateY(-8px);
      background:linear-gradient(180deg, #223a7c, #152e68);
    box-shadow:0 0 50px rgb(34 53 104);
}

@media(max-width:900px){
  .about-container{
    grid-template-columns:1fr;
  }
}






.features-section{
  padding:100px 20px;
  background:linear-gradient(180deg, #0b182e, #17295a, #0b182e);
}

.features-wrapper{
  max-width:1400px;
  margin:auto;
  position:relative;
}

.features-slider{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.feature-card{
  background:linear-gradient(180deg, #1e336c, #112450);
  border-radius:30px;
  padding:40px 30px;
  transition:.4s;
}

.feature-card:hover{
  transform:translateY(-10px);
}

.feature-card h4{
  color:#d5d1d6;
  margin-bottom:12px;
}
.feature-card:hover{
    background: linear-gradient(180deg, #233b7e, #142a5e);
    box-shadow: 0 0 50px rgb(34 53 104);
	}
.feature-card p{
  opacity:.85;
  line-height:1.6;
}


.features-arrow{
  display:none;
}


@media(max-width:900px){
  .features-slider{
    display:flex;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    gap:20px;
  }

  .features-slider::-webkit-scrollbar{
    display:none;
  }

  .feature-card{
    min-width:85%;
    scroll-snap-align:center;
  }

  .features-arrow{
    display:flex;
    position:absolute;
    top:75%;
    transform:translateY(-50%);
    width:38px;
    height:38px;
    border-radius:50%;
    background:#00d2ff;
    color:#000;
    font-size:24px;
    align-items:center;
    justify-content:center;
    border:none;
    cursor:pointer;
    z-index:10;
  }

  .features-arrow.left{left:-10px}
  .features-arrow.right{right:-10px}
}






.footer-pay-img{width: 40px;
    height: 40px;
    float: left;
    padding: 5px;}
.footer{
  background:linear-gradient(180deg, #17295a, #0b1836);
  padding:80px 20px 30px;
  color:#fff;
}

.footer-container{
  max-width:1400px;
  margin:auto;
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:50px;
}

.footer-logo{
  font-size:22px;
  font-weight:700;
  color:#2ecbff;
  margin-bottom:15px;
  text-align: center;
}

.footer-col p{
  font-size:14px;
  line-height:1.6;
  opacity:.8;
}

.footer-col h4{
  margin-bottom:15px;
  color:#4fd1ff;
}

.footer-col ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-col ul li{
  margin-bottom:10px;
}

.footer-col ul li a{
  color:#fff;
  opacity:.75;
  text-decoration:none;
  transition:.3s;
}

.footer-col ul li a:hover{
  opacity:1;
  color:#2ecbff;
}

.footer-socials{
  display:flex;
  gap:12px;
}

.footer-socials a{
  width:38px;
  height:38px;
  border-radius:50%;
  background:#0c2b44;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#2ecbff;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.footer-socials a:hover{
  background:#2ecbff;
  color:#000;
}

.footer-bottom{
  margin-top:60px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.1);
  text-align:center;
  font-size:13px;
  opacity:.6;
}


@media(max-width:900px){
  .footer-container{
    grid-template-columns:1fr;
    gap:30px;
  }

  .footer-bottom{
    margin-top:30px;
  }
}






.ref-features{
  padding:100px 20px;
  background: #0e152f;
  color:#fff;
  text-align:center;
}

.ref-features h2{
  font-size:42px;
  margin-bottom:10px;
}

.ref-subtitle{
  opacity:.75;
  margin-bottom:50px;
}


.ref-features-grid{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:25px;
}


@media(max-width:1000px){
  .ref-features-grid{
    grid-template-columns:repeat(2,1fr);
  }
}


@media(max-width:520px){
  .ref-features-grid{
    grid-template-columns:repeat(2,1fr);
    gap:15px;
  }

  .ref-features-grid h2{
    font-size:30px;
  }
}


.ref-feature{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,.15);
  border-radius:22px;
  padding:30px 25px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  backdrop-filter:blur(14px);
  transition:.35s ease;
}

.ref-feature:hover{
  transform:translateY(-8px);
  background:linear-gradient(180deg, #233b7e, #142a5e);
    box-shadow: 0 0 50px rgb(34 53 104);
}


.ref-feature.main{
    background: linear-gradient(180deg, #1e336c, #112450);
    box-shadow: 0 0 50px rgb(34 53 104);
}


.ref-feature .icon{
  font-size:42px;
}

.ref-feature h3{
  font-size:16px;
}

.ref-feature span{
  font-size:36px;
  font-weight:bold;
}

.ref-feature p{
  font-size:14px;
  opacity:.8;
}






.how-it-works{
  padding:100px 20px;
      background:#0e152f;
  color:#fff;
  text-align:center;
}

.how-it-works h2{
  font-size:42px;
  margin-bottom:10px;
}

.subtitle{
  opacity:.75;
  margin-bottom:55px;
}

.how-grid{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}


.how-card{
  background:linear-gradient(180deg, #17295a, #0b1836);
  border:1px solid rgba(255,255,255,0.15);
  border-radius:22px;
  padding:35px 25px;
  backdrop-filter:blur(14px);
  position:relative;
  transition:.35s ease;
}

.how-card:hover{
    transform:translateY(-8px);
    background: linear-gradient(180deg, #1e336c, #112450);
    box-shadow: 0 0 50px rgb(34 53 104);
}


.step{
position: absolute;
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #152653, #152654);
    border: 1px solid #3a4973;
    color: #9ad4ff;
    width: 72px;
    height: 72px;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 30px;
}


.how-card h3{
  margin-top:30px;
  font-size:18px;
}

.how-card p{
  margin-top:8px;
  opacity:.8;
  color: #9FB2D9;
}


@media(max-width:1000px){
  .how-grid{
    grid-template-columns:repeat(2,1fr);
  }
}


@media(max-width:520px){
  .how-grid{
    grid-template-columns:repeat(2,1fr);
    gap:15px;
  }

  .how-it-works h2{
    font-size:30px;
  }
}






.contact-cta{
  padding:100px 20px;
      background: linear-gradient(180deg, #0a1734, #17295a);
}

.contact-box{
  max-width:1200px;
  margin:30px auto;
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:50px;
  align-items:center;
      background:linear-gradient(180deg, #1e336c, #112450);
	  box-shadow: 0 0 50px rgb(34 53 104);
  border-radius:28px;
  padding:60px;
  border:1px solid rgba(255,255,255,0.1);
}
.contact-box_fa_ru{
  max-width:1200px;
  margin:30px auto;
  display:grid;
  grid-template-columns:1.fr 1fr;
  gap:50px;
  align-items:center;
      background:linear-gradient(180deg, #1e336c, #112450);
	  box-shadow: 0 0 50px rgb(34 53 104);
  border-radius:28px;
  padding:60px;
  border:1px solid rgba(255,255,255,0.1);
}
.contact-box_accaunt{
  max-width:1200px;
  margin:30px auto;
  display:grid;
  grid-template-columns:1.fr 1fr;
  gap:50px;
  align-items:center;
      background:linear-gradient(180deg, #1e336c, #112450);
	  box-shadow: 0 0 50px rgb(34 53 104);
  border-radius:28px;
  padding:10px;
  border:1px solid rgba(255,255,255,0.1);
}


.contact-text h2{
  font-size:42px;
  margin-bottom:15px;
  color:#fff;
}

.contact-text p{
  opacity:.8;
  margin-bottom:30px;
  color:#fff;
}


.contact-buttons{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.btn{
  padding:14px 26px;
  border-radius:14px;
  font-weight:600;
  text-decoration:none;
  transition:.3s ease;
}

.btn.primary{
    background: #ffffff18;
    color: #fff;
    border: 1px solid #2ab7ff;
}

.btn.primary:hover{
  transform:translateY(-2px);
  background:linear-gradient(180deg, #233b7e, #142a5e);
    box-shadow:0 0 50px rgb(34 53 104);
}

.btn.outline{
  border:1px solid rgba(255,255,255,.3);
  color:#fff;
}

.btn.outline:hover{
  background:linear-gradient(180deg, #233b7e, #142a5e);
  box-shadow: 0 0 50px rgb(34 53 104);
    border: 1px solid #2ab7ff;
}


.contact-visual img{
  width:100%;
  max-width:420px;
  animation:float 6s ease-in-out infinite;
}

.contact-visual2{
  width:100%;
  max-width:450px;
  height:300px;
  background:url(/home/img/support.png);
  border-radius:30px;
  padding:20px;
  box-shadow:0 0 50px rgb(34 53 104);
  animation:float 6s ease-in-out infinite;
  background-position: center;
}
.contact-visual2_login{
  width:100%;
  max-width:450px;
  height:300px;
  background:url(/home/img/login.png);
  border-radius:30px;
  padding:20px;
  box-shadow:0 0 50px rgb(34 53 104);
  animation:float 6s ease-in-out infinite;
  background-position: center;
}
.contact-visual2_signup{
  width:100%;
  max-width:450px;
  height:300px;
  background:url(/home/img/signup.png);
  border-radius:30px;
  padding:20px;
  box-shadow:0 0 50px rgb(34 53 104);
  animation:float 6s ease-in-out infinite;
  background-position: center;
}
.contact-visual2_support{
  width:100%;
  max-width:450px;
  height:300px;
  background:url(/home/img/support.png);
  border-radius:30px;
  padding:20px;
  box-shadow:0 0 50px rgb(34 53 104);
  animation:float 6s ease-in-out infinite;
  background-position: center;
}
.contact-visual2_news{
  width:100%;
  max-width:450px;
  height:300px;
  background:url(/home/img/news.png);
  border-radius:30px;
  padding:20px;
  box-shadow:0 0 50px rgb(34 53 104);
  animation:float 6s ease-in-out infinite;
}
.contact-visual2_faq{
  width:100%;
  max-width:450px;
  height:300px;
  background:url(/home/img/faq.png);
  border-radius:30px;
  padding:20px;
  box-shadow:0 0 50px rgb(34 53 104);
  animation:float 6s ease-in-out infinite;
}
.contact-visual2_rules{
  width:100%;
  max-width:450px;
  height:300px;
  background:url(/home/img/rules.png);
  border-radius:30px;
  padding:20px;
  box-shadow:0 0 50px rgb(34 53 104);
  animation:float 6s ease-in-out infinite;
}


/*.contact-visual2::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgb(48, 1, 52, 0.4);
  z-index:1;
}*/

@media(max-width:900px){
  .contact-box{
    grid-template-columns:1fr;
    text-align:center;
    padding:40px 25px;
  }

  .contact-buttons{
    justify-content:center;
  }

  .contact-text h2{
    font-size:32px;
  }
}

.thumb-wrapper{
  width:100px;
  height:100px;
  position:relative;
  border-radius:12px;
  overflow:hidden;
  cursor:pointer;
}

.thumb-img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.3s ease;
}

.zoom-icon{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  color:#fff;
  background:rgba(0,0,0,.4);
  opacity:0;
  transition:.3s ease;
}


.thumb-wrapper:hover .zoom-icon{
  opacity:1;
}

.thumb-wrapper:hover .thumb-img{
  transform:scale(1.05);
}

.lightbox-full{
  position:fixed;
  inset:0;
  background:#000;
  display:none;
  overflow:auto;
  z-index:9999;
}

.lightbox-full img{
  display:block;
  margin:60px auto;
  max-width:none;
  width:auto;
  height:auto;
}

.close{
  position:fixed;
  top:15px;
  right:25px;
  font-size:40px;
  color:#fff;
  cursor:pointer;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


@media (max-width: 1199px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 767px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


.plan-radio {
    /*display: none;*/
	width: 30px;
    height: 30px;
}


.plan-card_account {
    width: auto !important;
    max-width: none !important;
    float: none !important;

    border: 2px solid #2ab7ff;
    padding: 20px;
    cursor: pointer;
    background: #294287;
	box-shadow: 0 0 50px rgb(45 76 161);
    transition: all 0.25s ease;
}


.plan-card_account:hover {
background: linear-gradient(180deg, #243c7f, #183371);
    box-shadow: 0 0 70px rgb(45 76 161);
    border: 2px solid #2ab7ff;
}


.plan-card_account.active {
    background: linear-gradient(180deg, #1e336c, #112450);
	color: #fff;
    box-shadow: 0 0 50px rgb(45 76 161);
    border: 2px solid #2ab7ff;
}


.plans-grid > .card,
.plans-grid > label.card,
.plan-card_account {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;

    display: block;          
    grid-column: span 1 !important;
}
#b_accaunt{line-height: 15px; font-size: 12px;     padding: 15px 10px 10px 10px;}






.ref-block {
  padding: 60px 20px;
  background: linear-gradient(135deg, #000c3f, #031a40);
  color: #fff;
  text-align: center;
}

.ref-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.ref-block h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
}

.ref-block p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px auto;
  opacity: 0.9;
}

.ref-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.ref-item {
  padding: 25px;
  background: rgba(255,255,255,0.05);
  border-radius: 14px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s ease;
}

.ref-item:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}

.ref-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.ref-item p {
  font-size: 15px;
  opacity: 0.85;
}

.ref-btn {
  display: inline-block;
  background: #062060;
  color: #fff;
  padding: 14px 30px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.ref-btn:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}


@media(max-width: 768px) {
  .ref-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ref-block h2 {
    font-size: 26px;
  }

  .ref-block p {
    font-size: 16px;
  }
}

@media(max-width: 480px) {
  .ref-grid {
    grid-template-columns: 1fr;
  }

  .ref-btn {
    width: 100%;
    padding: 16px 0;
  }
}






.calc-wrapper {
  width: 100%;
  background: linear-gradient(180deg, #0b1f44, #081833);
  border-radius: 18px;
  padding: 22px;
  color: #fff;
  font-family: Inter, Arial;
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
}

.calc-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 14px;
}

.calc-switch {
  display: flex;
  background: #06132b;
  border-radius: 14px;
  padding: 4px;
  margin-bottom: 14px;
}

.calc-switch button {
  flex: 1;
  background: transparent;
  border: none;
  color: #8aa4ff;
  padding: 10px 0;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
  transition: .3s;
}

.calc-switch button.active {
  background: linear-gradient(135deg, #1e90ff, #00c6ff);
  color: #fff;
  box-shadow: 0 0 15px rgba(30,144,255,.6);
}

.calc-label {
  font-size: 13px;
  opacity: .8;
  margin-bottom: 6px;
}

.calc-input, .calc-select {
  width: 100%;
  background: #06132b;
  border: 1px solid #12265f;
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}

.calc-result {
  background: #06132b;
  border-radius: 12px;
  padding: 14px;
  font-size: 14px;
  line-height: 1.6;
  box-shadow: inset 0 0 0 1px #12265f;
}

.calc-error {
  color: #ff6b6b;
}

.calc-row {
  display: flex;
  justify-content: space-between;
}

.calc-row span {
  opacity: .8;
}






.payments-container {
    display: flex;
    gap: 10px;
}

.payments {
    width: 24px;
    height: 24px;
    overflow: hidden;
}

.payments img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    filter: brightness(50%); 
    transition: filter 0.3s; 
}

.payments img:hover {
    filter: brightness(100%); 
}








  .btn {
    display:inline-block;
    text-decoration:none;
    text-align:center;
    padding:11px 14px;
    border-radius:12px;
    font-weight:700;
    font-size:14px;
    background: linear-gradient(90deg,#ffffff10,#ffffff06);
    border: 1px solid rgba(255,255,255,0.06);
    color: #e6eef6;
    width:100%;
    transition: transform .12s ease, box-shadow .12s ease;
  }
  .btn:active{ transform: translateY(1px); }


  .accent-1 .big{ color: var(--accent1); }
  .accent-1 .tag{ background: rgba(32,201,151,0.06); color:#9ff0d6; border: 1px solid rgba(32,201,151,0.09); }

  .accent-2 .big{ color: #fff; }
  .accent-3 .big{ color: #fff; }
  .accent-4 .big{ color: #fff; }
  .accent-5 .big{ color: #fff; }


  .foot {
    margin-top:auto;
    font-size:12px;
    color:var(--muted);
    display:flex;
    justify-content:space-between;
    gap:8px;
    align-items:center;
  }



  @media (max-width:640px){
    .page { padding:14px; }
    .cadcard { padding:14px; min-height: 200px; border-radius:14px; }
    .big{ font-size: clamp(22px,7.6vw,28px); }
    .btn { padding:10px; font-size:14px; border-radius:10px; }
  }


  .highlight {
    background: linear-gradient(180deg, rgb(0 46 141), rgb(0 56 153));
    border-left: 6px solid rgba(255,255,255,0.02);
  }
  
  
  
  
@media (max-width:980px){
.layout{grid-template-columns:1fr;}
.center .banner{height:260px}
.side{grid-template-columns:repeat(2,1fr)}
}

@media (max-width:767px){
.layout{grid-template-columns:1fr;}
.center .banner{display: none;}
.side{grid-template-columns:repeat(1,1fr)}
}



.layoustats{display:grid;grid-template-columns:2fr 2fr 2fr;gap:20px;align-items:start}

.side{display:grid;grid-template-columns:repeat(1,1fr);grid-auto-rows:1fr;gap:16px}

.center{display:flex;flex-direction:column;gap:16px;align-items:center; min-width: 100%;}
.center .banner{width:100%;height:440px;border-radius:8px;overflow:hidden;box-shadow:0 10px 30px rgba(2,6,23,0.12)}
.center .banner img{width:100%;height:100%;object-fit:cover;display:block}

.cadcard{background:#00181c;border-radius:8px;padding:12px;box-shadow:0 8px 20px rgba(16,24,40,0.08);display:flex;flex-direction:column}
.cadcard .head{display:flex;align-items:center;justify-content:space-between;margin-bottom:8px}
.cadcard .title{font-weight:700;color:#01e1a5;font-size:14px}
.cadcard .price{font-weight:800;font-size:20px;color:#ef6b2f}
.cadcard .period{font-size:12px;color:#1abcd2}
.cadcard .list{margin-top:8px;flex:1}
.cadcard .list li{text-align: center; text-transform: uppercase; font-size:13px;color:#e1f0f2;padding:6px 0; list-style: none; border-top:1px solid #f1f5f9}
.cadcard .btn{display:block;margin-top:10px;background:#07163a;color:#fff;padding:8px;border-radius:6px;text-align:center;text-decoration:none;font-weight:700}

.badge{width:36px;height:36px;border-radius:6px;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 12px rgba(2,6,23,0.06)}
.badge img{width:28px;height:28px;object-fit:contain}

.center .side-cards{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;width:100%}

@media (max-width:980px){
.layoustats{grid-template-columns:1fr;}
.center .banner{height:260px}
.side{grid-template-columns:repeat(1,1fr)}
}

@media (max-width:767px){
.layoustats{grid-template-columns:1fr;}
.center .banner{display: none;}
.side{grid-template-columns:repeat(1,1fr)}
}
  







.contact-cta {
  padding: 80px 20px;
}

.contact-box_fa_ru h4 {
  margin: 40px 0 20px;
  font-size: 22px;
  color: #4FD1FF;
}

.faq-item  {
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 14px;
  cursor: pointer;
  transition: background .3s;
}
.faq-item a {
color: #9ed6ff;
}
.faq-item:hover a{

  color: #64bcff;
}

.faq-item:hover {
  background: rgba(255,255,255,0.06);

}

.faq-item b {
  display: block;
  position: relative;
  padding-right: 30px;
  font-size: 15px;
  color: #fff;
}


.faq-item b::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 22px;
  transition: transform .3s;
  color: #4FD1FF;
}

.faq-item.active b::after {
  content: "−";
}


.faq-item span {
  display: block;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, opacity .3s;
  opacity: 0;
  font-size: 14px;
  color: #c4d3e1;
  margin-top: 10px;
}

.faq-item.active span {
  max-height: 800px;
  opacity: 1;
}







.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all .7s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}



.roadmap {
  background: #0b1530;
  padding: 80px 20px;
  color: #fff;
}

.roadmap h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 32px;
}

.roadmap-container {
  max-width: 900px;
  margin: auto;
  position: relative;
}

.roadmap-container::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #1e90ff, #00cfff);
  transform: translateX(-50%);
}

.roadmap-item {
  width: 45%;
  padding: 20px 25px;
  background: #121f45;
  border-radius: 12px;
  position: relative;
  margin-bottom: 50px;
}

.roadmap-item span {
  font-size: 14px;
  color: #00cfff;
}

.roadmap-item h3 {
  margin: 10px 0;
}

.roadmap-item p {
  font-size: 15px;
  opacity: 0.9;
}

.roadmap-item.left {
  left: 0;
}

.roadmap-item.right {
  left: 55%;
}

.roadmap-item::after {
  content: "";
  position: absolute;
  top: 30px;
  width: 16px;
  height: 16px;
  background: #00cfff;
  border-radius: 50%;
}

.roadmap-item.left::after {
  right: -38px;
}

.roadmap-item.right::after {
  left: -38px;
}

@media (max-width: 768px) {
  .roadmap-container::before {
    left: 20px;
  }
  .roadmap-item {
    width: 100%;
    left: 40px !important;
  }
  .roadmap-item::after {
    left: -30px !important;
  }
}







.wrap {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.bounty-clean {
  background: #0b1530;
  padding: 80px 0;
  color: #fff;
}

.bounty-clean h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 12px;
}

.desc {
  text-align: center;
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 60px;
}

.bounty-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.bounty-item {
  background: #121f45;
  border-radius: 14px;
  padding: 26px;
}

.bounty-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.bounty-item p {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 14px;
}

.bounty-item span {
  font-weight: 600;
  color: #00cfff;
}

/* Steps */
.bounty-steps-clean {
  background: #0e1a3a;
  padding: 70px 0;
  color: #fff;
}

.bounty-steps-clean h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
}

.steps {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  background: #121f45;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  font-size: 40px;
}

/* Mobile */
@media (max-width: 768px) {
  .steps {
    flex-direction: column;
  }
}
.bounty-info {
  background: #0b1530;
  padding: 70px 0;
  color: #fff;
}

.bounty-info h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 50px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.info-card {
  background: #121f45;
  border-radius: 14px;
  padding: 28px;
}

.info-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.info-card p {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.6;
}
.bounty-rules {
  background: #0e1a3a;
  padding: 80px 0;
  color: #fff;
}

.bounty-rules h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 50px;
}

.rules-list {
  max-width: 900px;
  margin: auto;
}

.rule-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  background: #121f45;
  border-radius: 12px;
  padding: 20px;
}

.rule-item span {
  min-width: 34px;
  height: 34px;
  background: #00cfff;
  color: #0b1530;
  font-weight: bold;
  border-radius: 50%;
  text-align: center;
  line-height: 34px;
}

.rule-item p {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.5;
}

/* Mobile */
@media (max-width: 768px) {
  .rule-item {
    flex-direction: column;
  }
}



.diagonal-badge {
    position: absolute;
    top: 3px;
    right: -10px;
    transform: rotate(45deg);
    background: #2da5d3;
    color: #fff;
    padding: 6px 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    z-index: 9;
}





body {
  margin: 0;
  background: #0a0f1f;
  font-family: "Segoe UI", Arial, sans-serif;
}

.investment-plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 24px;
}

.plan-text-card {
  background: linear-gradient(180deg, #0e1a33, #0a0f1f);
  border-radius: 18px;
  padding: 22px;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 120, 255, 0.15);
  position: relative;
}

.plan-text-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  border-radius: 18px 18px 0 0;
}

.plan-name {
  font-size: 14px;
  letter-spacing: 1px;
  color: #4fc3ff;
  font-weight: 600;
}

.plan-body {
  font-size: 14px;
  line-height: 1.6;
  margin: 12px 0 18px;
  opacity: 0.95;
}

.plan-footer {
  font-size: 12px;
  color: #9bb7ff;
  opacity: 0.8;
}

.plan-text-card.accent {
  box-shadow: 0 0 40px rgba(0, 200, 255, 0.4);
  border: 1px solid rgba(0, 200, 255, 0.4);
}

/* Tablet */
@media (min-width: 768px) {
  .investment-plans {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop */
@media (min-width: 1200px) {
  .investment-plans {
    grid-template-columns: repeat(4, 1fr);
  }
}



