:root{
  --primary:#ffffff;
  --secondary:#f1f5f9;
  --accent:#16a34a;
  --accent-dark:#15803d;
  --gold:#f59e0b;
  --light:#ffffff;
  --white:#0f172a;
  --muted:#64748b;
  --border:rgba(15,23,42,0.08);
  --shadow:0 20px 60px rgba(2, 6, 23, 0.08);
  --radius:22px;
  --max-width:1400px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter',sans-serif;
}
@media (max-width:768px){
  *{
    font-size: 15px;
  }
}

html{
  scroll-behavior:smooth;
}

body{
  background:#ffffff;
  color:#0f172a;
  min-height:100vh;
  line-height:1.6;
}

a{
  text-decoration:none;
  color:inherit;
}

.container{
  width:min(92%, var(--max-width));
  margin:auto;
}


.navbar{
  position:sticky;
  top:0;
  z-index:1000;
  backdrop-filter:blur(10px);
  background:rgba(255,255,255,0.85);
  border-bottom:1px solid var(--border);
}

.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
}
.img{
  height: 60px;
  margin-top: -10px;
  margin-left: -10px;
}
.logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:1.35rem;
  font-weight:800;
}

.logo-badge{
  width:42px;
  height:42px;
  border-radius:14px;
  background:transparent;
  display:grid;
  place-items:center;
  color:#fff;
  font-weight:800;
}

.nav-links{
  display:flex;
  gap:28px;
  align-items:center;
  color:#334155;
  font-weight:500;
}

.nav-links a:hover{
  color:var(--accent);
}

.nav-btn{
  padding:12px 20px;
  background:linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius:999px;
  color:#fff;
  font-weight:700;
  transition:0.3s ease;
}

.nav-btn:hover{
  transform:translateY(-2px);
}
.nav-btn-login{
  padding:12px 20px;
  background:white;
  border:1px solid var(--border);
  border-radius:999px;
  color:#0f172a;
  font-weight:700;
  transition:0.3s ease;
}

.nav-btn-login:hover{
  transform:translateY(-2px);
}


.hero{
  padding:40px 0 70px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:48px;
  align-items:center;
}

.hero-text .tag{
  background:#f1f5f9;
  border:1px solid var(--border);
  color:#334155;
  padding:10px 16px;
  border-radius:999px;
  margin-bottom:24px;
  display:inline-block;
}

.hero-text h1{
  font-size:clamp(2.6rem, 6vw, 5rem);
  margin-bottom:22px;
  font-weight:800;
}

.hero-text h1 span{
  background:linear-gradient(135deg, #4ade80, #fbbf24);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero-text p{
  color:#475569;
  margin-bottom:30px;
}

.hero-actions{
  display:flex;
  gap:16px;
  margin-bottom:34px;
}

.btn{
  padding:15px 24px;
  border-radius:999px;
  font-weight:700;
}

.btn-primary{
  background:linear-gradient(135deg, var(--accent), var(--accent-dark));
  color:#fff;
}

.btn-secondary{
  border:1px solid var(--border);
  background:#fff;
}

.btn-secondary:hover{
  background:#f1f5f9;
}


.hero-stats{
  display:flex;
  gap:18px;
}

.mini-stat{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px;
}

.mini-stat span{
  color:var(--muted);
}


.hero-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:28px;
  padding:28px;
  box-shadow:var(--shadow);
}

.dashboard-top{
  display:flex;
  justify-content:space-between;
  margin-bottom:22px;
}

.status{
  background:rgba(22,163,74,0.12);
  color:#15803d;
  padding:6px 12px;
  border-radius:999px;
}


.event-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  padding:18px;
  margin-bottom:16px;
}

.event-card p{
  color:#64748b;
}

.badge{
  background:rgba(245,158,11,0.12);
  color:#b45309;
  padding:6px 10px;
  border-radius:999px;
}

.progress{
  background:#e2e8f0;
  height:10px;
  border-radius:999px;
  overflow:hidden;
}

.progress span{
  width:78%;
  display:block;
  height:100%;
  background:linear-gradient(90deg, var(--accent), var(--gold));
}


.section{
  padding:80px 0;
}

.section-title{
  text-align:center;
  margin-bottom:50px;
}

.section-title p{
  color:#64748b;
}


.features-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.feature-card{
  background:#fff;
  border:1px solid var(--border);
  padding:28px;
  border-radius:24px;
}

.feature-card p{
  color:#64748b;
}

.feature-icon{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  border-radius:16px;
  margin-bottom:18px;
  background:linear-gradient(135deg, rgba(22,163,74,0.12), rgba(245,158,11,0.12));
}


.steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.step{
  background:#fff;
  border:1px solid var(--border);
  padding:30px;
  border-radius:24px;
}

.step-number{
  width:46px;
  height:46px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--gold), #f97316);
  color:#fff;
  display:grid;
  place-items:center;
  margin-bottom:18px;
}

.step p{
  color:#64748b;
}


.cta{
  padding-bottom:100px;
}

.cta-box{
  background:#fff;
  border:1px solid var(--border);
  border-radius:30px;
  padding:55px 40px;
  text-align:center;
  box-shadow:var(--shadow);
}

.cta-box p{
  color:#475569;
  margin-bottom: 30px;
}


footer{
  border-top:1px solid var(--border);
  padding:24px 0;
  color:#64748b;
}

.footer-wrap{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
}

.footer-links{
  display:flex;
  gap:18px;
}

.footer-links a:hover{
  color:#0f172a;
}


@media (max-width:1024px){
  .hero-grid,
  .features-grid,
  .steps{
    grid-template-columns:1fr;
  }
}

@media (max-width:768px){
  .nav-links{
    display:flex;
  }

  .navbar{
    overflow: scroll;
  }
  .img{
    height: 50px;
  }
  .nav-links{
    gap: 10px;
  }
  .nav-btn{
    margin-left: 10px;
    font-size: 13px;
  }
  .nav-btn-login{
     font-size: 13px;
  }
  .logo{
    font-size: 17px;
    gap: 5px;
    color: black;
  }
  #feature{
    display: none;
  }

  .hero-actions{
    flex-direction:column;
  }
  .section{
    padding: 10px 0px;
  }

  .btn{
    width:100%;
  }
  .nav-wrap{
    display: flex;
  }
}
@media (max-width:340px){
   .nav-wrap{
    display: inline-block;
  }
}
@media (max-width:480px){
  .hero-text h1{
    font-size:2.2rem;
  }
}