*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{
  --bg:#0b0f14;
  --text:#ffffff;
  --text2:#aeb6c4;
  --green:#16c35b;
  --green-dark:#0fa64d;
  --border:#252b36;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.7;
  overflow-x:hidden;
}

a{
  text-decoration:none;
}

img{
  max-width:100%;
  display:block;
}

.container{
  width:92%;
  max-width:1200px;
  margin:auto;
}

/* SCROLLBAR */

::-webkit-scrollbar{
  width:8px;
}

::-webkit-scrollbar-thumb{
  background:var(--green);
  border-radius:20px;
}

/* HEADER */

header{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(11,15,20,.82);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,.04);
  box-shadow:0 10px 40px rgba(0,0,0,.25);
}

.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
  font-size:24px;
  font-weight:800;
  letter-spacing:.3px;
}

.logo img{
  width:46px;
  height:46px;
  border-radius:14px;
  box-shadow:0 0 25px rgba(22,195,91,.35);
}

/* HERO */

.hero{
  position:relative;
  padding:90px 0 75px;
  overflow:hidden;
  text-align:center;
}

.hero::before{
  content:'';
  position:absolute;
  width:520px;
  height:520px;
  background:
  radial-gradient(
  circle,
  rgba(34,197,94,.16),
  transparent 70%
  );
  top:-220px;
  left:50%;
  transform:translateX(-50%);
  filter:blur(45px);
}

.hero-wrap{
  position:relative;
  z-index:2;
}

.hero h1{
  font-size:58px;
  line-height:1.05;
  font-weight:900;
  letter-spacing:-2px;
  margin-bottom:22px;
  color:#ffffff;
}

.hero-desc{
  max-width:640px;
  margin:auto;
  font-size:19px;
  line-height:1.9;
  color:#b4becd;
  content-visibility:auto;
}

.hero-desc a{
  color:#7c3aed;
  font-weight:700;
  transition:.25s ease;
}

.hero-desc a:hover{
  color:#a855f7;
}

.hero-buttons{
  margin-top:34px;
}

.hero-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:58px;
  padding:0 36px;
  border-radius:999px;
  background:
  linear-gradient(
  135deg,
  #22c55e,
  #16a34a
  );
  color:#ffffff;
  font-size:15px;
  font-weight:800;
  box-shadow:
  0 18px 45px rgba(34,197,94,.30);
  transition:.3s ease;
}

.hero-btn:hover{
  transform:translateY(-4px);
  box-shadow:
  0 24px 55px rgba(34,197,94,.42);
}

.hero-stats{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  margin-top:42px;
  flex-wrap:wrap;
}

.stat-box{
  min-width:150px;
  padding:20px 24px;
  border-radius:22px;
  background:
  linear-gradient(
  180deg,
  rgba(255,255,255,.04),
  rgba(255,255,255,.015)
  );
  border:1px solid rgba(255,255,255,.06);
  backdrop-filter:blur(14px);
  box-shadow:
  0 12px 35px rgba(0,0,0,.25);
}

.stat-box strong{
  display:block;
  font-size:24px;
  color:#ffffff;
  margin-bottom:6px;
}

.stat-box span{
  font-size:14px;
  color:#9ca3af;
}

/* SECTION */

.section{
  padding:95px 0;
}

.section-title{
  text-align:center;
  font-size:46px;
  font-weight:900;
  letter-spacing:-1px;
  margin-bottom:60px;
}

/* GRID */

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

/* CARD */

.card{
  position:relative;
  overflow:hidden;
  background:
  linear-gradient(
  180deg,
  rgba(255,255,255,.03),
  rgba(255,255,255,.015)
  );
  border:1px solid var(--border);
  border-radius:28px;
  padding:35px;
  transition:.35s;
  box-shadow:
  0 10px 40px rgba(0,0,0,.28);
}

.card::before{
  content:'';
  position:absolute;
  inset:0;
  background:
  linear-gradient(
  135deg,
  rgba(22,195,91,.08),
  transparent
  );
  opacity:0;
  transition:.35s;
}

.card:hover{
  transform:translateY(-8px);
  border-color:
  rgba(22,195,91,.28);
}

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

.card h3{
  font-size:24px;
  margin-bottom:15px;
  color:#ffffff;
}

.card p{
  color:var(--text2);
  font-size:15px;
}

/* FAQ */

.faq-box{
  position:relative;
  max-width:980px;
  margin:60px auto 0;
  padding:45px;
  border-radius:32px;
  overflow:hidden;
  background:
  linear-gradient(
  180deg,
  rgba(255,255,255,.04),
  rgba(255,255,255,.015)
  );
  border:1px solid rgba(255,255,255,.06);
  backdrop-filter:blur(18px);
  box-shadow:
  0 20px 60px rgba(0,0,0,.35);
}

.faq-box::before{
  content:'';
  position:absolute;
  width:320px;
  height:320px;
  background:
  rgba(22,195,91,.08);
  border-radius:50%;
  filter:blur(90px);
  top:-120px;
  right:-100px;
}

.faq-title{
  position:relative;
  z-index:2;
  text-align:center;
  font-size:58px;
  font-weight:900;
  letter-spacing:-2px;
  margin-bottom:55px;
  line-height:1.1;
}

.faq-grid{
  position:relative;
  z-index:2;
  display:grid;
  gap:22px;
}

.faq-item{
  background:
  rgba(255,255,255,.025);
  border:1px solid rgba(255,255,255,.05);
  border-radius:24px;
  overflow:hidden;
  transition:.35s;
}

.faq-item:hover{
  border-color:
  rgba(22,195,91,.28);
  transform:translateY(-4px);
}

.faq-question{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:28px;
  border:none;
  background:transparent;
  color:#ffffff;
  font-size:24px;
  font-weight:800;
  text-align:left;
  cursor:pointer;
}

.faq-icon{
  min-width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:
  rgba(22,195,91,.12);
  color:var(--green);
  font-size:28px;
  transition:.35s;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:
  max-height .45s ease,
  padding .35s ease;
}

.faq-answer p{
  padding:0 28px 28px;
  color:var(--text2);
  font-size:16px;
  line-height:1.9;
}

.faq-item.active{
  border-color:
  rgba(22,195,91,.35);
  box-shadow:
  0 18px 45px rgba(0,0,0,.25);
}

.faq-item.active .faq-answer{
  max-height:300px;
}

.faq-item.active .faq-icon{
  transform:rotate(45deg);
  background:var(--green);
  color:#ffffff;
}

/* FOOTER */

footer{
  margin-top:100px;
  background:#11151d;
  border-top:
  1px solid rgba(255,255,255,.05);
  padding:80px 0 35px;
}

.footer-grid{
  display:grid;
  grid-template-columns:
  repeat(auto-fit,minmax(220px,1fr));
  gap:40px;
}

.footer-col span{
  display:block;
  color:#ffffff;
  margin-bottom:22px;
  font-size:20px;
  font-weight:700;
}

.footer-col a{
  display:block;
  color:var(--text2);
  margin-bottom:14px;
  transition:.3s;
}

.footer-col a:hover{
  color:var(--green);
  transform:translateX(4px);
}

.footer-col p{
  color:var(--text2);
}

.copyright{
  margin-top:55px;
  text-align:center;
  color:#7d8796;
  font-size:14px;
}

/* MOBILE */

@media(max-width:768px){

  .navbar{
    gap:12px;
  }

  .logo{
    font-size:18px;
    gap:10px;
  }

  .logo img{
    width:38px;
    height:38px;
  }

  .hero{
    padding:55px 0 60px;
  }

  .hero h1{
    font-size:34px;
    line-height:1.12;
    letter-spacing:-1px;
    margin-bottom:18px;
  }

  .hero-desc{
    font-size:15px;
    line-height:1.9;
    max-width:320px;
  }

  .hero-btn{
    width:100%;
    max-width:250px;
    min-height:52px;
    font-size:14px;
  }

  .hero-stats{
    gap:12px;
    margin-top:28px;
  }

  .stat-box{
    width:100%;
    max-width:250px;
    padding:25px;
  }

  .section-title{
    font-size:34px;
  }

  .card{
    padding:28px;
  }

  .faq-box{
    padding:24px;
    border-radius:24px;
  }

  .faq-title{
    font-size:38px;
    margin-bottom:35px;
  }

  .faq-question{
    font-size:20px;
    padding:22px;
  }

  .faq-answer p{
    padding:0 22px 22px;
    font-size:15px;
  }
}


 .register-image{
  display:flex;
  justify-content:center;
  align-items:center;
  margin:0 auto;
  text-align:center;
  padding:22px;
}