<!-- Menu code start below -->


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #020617;
  color: white;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 20px;
  width: 100%;
  padding: 0 10px;
}

.nav-container {
  max-width: 950px;
  margin: auto;
  background: #000;
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
}

.logo img {
  height: 35px;
}

.menu-list {
  display: flex;
  list-style: none;
  gap: 15px;
}

.menu-list a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
}

.btn-get-started {
  background: #6366f1;
  border: none;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
}

/* MODAL */
.modal-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
}

.glass-modal {
  background: #0f172a;
  padding: 25px;
  border-radius: 15px;
  width: 90%;
  max-width: 350px;
  text-align: center;
}

.close-btn {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
  background: none;
  border: none;
  color: white;
}

form input {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border-radius: 6px;
  border: none;
  background: #1e293b;
  color: white;
}

.phone {
  display: flex;
  gap: 5px;
}

.phone input:first-child {
  width: 70px;
}

form button {
  width: 100%;
  margin-top: 15px;
  padding: 12px;
  background: #6366f1;
  border: none;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

.hidden {
  display: none;
}

/* MOBILE */
@media(max-width:768px){
  .menu-list a {
    font-size: 11px;
  }

  .btn-get-started {
    font-size: 11px;
    padding: 6px 10px;
  }

  .logo img {
    height: 25px;
  }
}




<!-- Menu code end above -->





* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #020617;
  color: white;
  padding: 80px 20px;
}

/* LAYOUT */
.hero-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

/* TEXT */
h1 {
  font-size: 48px;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(90deg, #6366f1, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtext {
  margin-top: 20px;
  color: #94a3b8;
}

/* BUTTON */
.cta-btn {
  margin-top: 30px;
  padding: 14px 28px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(90deg, #6366f1, #22c55e);
  color: white;
  font-weight: 600;
  cursor: pointer;
}

/* GRAPH CARD */
.graph-card {
  width: 380px;
  padding: 25px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

/* HEADER */
.card-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.status {
  color: #22c55e;
}

/* GRAPH */
.graph {
  display: flex;
  align-items: flex-end;
  height: 180px;
  gap: 12px;
}

/* BARS */
.bar-group {
  flex: 1;
  text-align: center;
}

.bar {
  height: 20%;
  background: linear-gradient(to top, #6366f1, #22c55e);
  border-radius: 6px;
  transition: height 1s ease;
}

/* ROI */
.roi {
  margin-top: 20px;
  font-size: 14px;
}

/* MOBILE */
@media (max-width:768px){
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  h1 {
    font-size: 32px;
  }
}













