:root{
  --primary:#10b981;
  --dark:#0f172a;
  --gray:#64748b;
  --light:#f8fafc;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter',sans-serif;
}
html{
  scroll-behavior: smooth;
}
body{
  background:white;
  color:var(--dark);
}

/* NAVBAR */
header{
  position:fixed;
  top:0;
  width:100%;
  padding:20px 10%;
  background:white;
  border-bottom:1px solid #e2e8f0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:1000;
}

.logo{
  font-size:22px;
  font-weight:800;
  color:var(--dark);
}

.logo span{
  color:var(--primary);
}

nav a{
  text-decoration:none;
  color:var(--gray);
  margin-left:30px;
  font-weight:500;
  transition:.3s;
}

nav a:hover{
  color:var(--dark);
}

.nav-btn{
  margin-left:30px;
  padding:10px 20px;
  /*background:var(--primary);*/
  background-image: linear-gradient(to right, #0a5fbda6 20%, #54c743 100%);
  color:white;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
}

/* HERO */
.hero{
  padding:180px 10% 120px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:60px;
}

.hero-text{
  max-width:550px;
}

.hero h1{
  font-size:56px;
  line-height:1.1;
  font-weight:800;
}

.hero p{
  margin-top:20px;
  font-size:20px;
  color:var(--gray);
}

.hero-buttons{
  margin-top:40px;
}

.btn-primary{
  padding:14px 28px;
  /*background:var(--primary);*/
  background-image: linear-gradient(to right, #0a5fbda6 20%, #54c743 100%);
  color:white;
  border:none;
  border-radius:8px;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
}

.btn-secondary{
  margin-left:15px;
  padding:14px 28px;
  background:transparent;
  border:1px solid #cbd5e1;
  border-radius:8px;
  font-size:16px;
  font-weight:500;
  cursor:pointer;
}

/* DASHBOARD MOCKUP */
.dashboard{
  width:600px;
  background:var(--light);
  border-radius:16px;
  box-shadow:0 30px 60px rgba(0,0,0,0.08);
  padding:30px;
}

.dashboard h3{
  font-size:18px;
  margin-bottom:20px;
}

.metric{
  display:flex;
  justify-content:space-between;
  margin-bottom:15px;
  font-weight:600;
}

/* FEATURES */
.section{
  padding:120px 10%;
  text-align:center;
}

.section h2{
  font-size:40px;
  margin-bottom:60px;
}

.features{
  display:flex;
  gap:40px;
  justify-content:center;
  flex-wrap:wrap;
}

.feature{
  width:300px;
}

.feature h3{
  margin-bottom:15px;
}

/* PRICING */
.pricing-cards{
  display:flex;
  gap:40px;
  justify-content:center;
  flex-wrap:wrap;
}

.pricing-card{
  border:1px solid #e2e8f0;
  padding:50px;
  width:320px;
  border-radius:16px;
}

.price{
  font-size:42px;
  font-weight:800;
  margin:20px 0;
}

.pricing-card ul{
  list-style:none;
  margin-bottom:30px;
}

.pricing-card li{
  margin-bottom:10px;
  color:var(--gray);
}

/* CTA */
.cta{
  padding:120px 10%;
  background:var(--dark);
  color:white;
  text-align:center;
}

.cta h2{
  font-size:40px;
  margin-bottom:30px;
}

/* FOOTER */
footer{
  padding:40px;
  text-align:center;
  color:var(--gray);
}

/* RESPONSIVE */
@media(max-width:1000px){
  .hero{
    flex-direction:column;
    text-align:center;
  }
  .dashboard{
    width:100%;
  }
}
.menu-toggle{
  display:none;
  font-size:26px;
  cursor:pointer;
}
.lang-selector{
  display: flex;
  gap: 8px;
  margin-left: 10px;
  position: absolute;
  right: 10px;
  top: 10px;
}

.lang-selector a{
  padding:6px 10px;
  border-radius:20px;
  font-size:13px;
  border:1px solid #ddd;
}

.lang-selector a.active{
  background:#1565c0;
  color:white;
  border-color:#1565c0;
}
/* MOBILE */
@media(max-width:768px){
  .logo img{
    width: 200px;
  }
  .lang-selector{
    display: flex;
    gap: 8px;
    margin-left: 10px;
    position: absolute;
    right: 5%;
    top: -20px;
  }
  nav{
    position:absolute;
    top:110px;
    right:0;
    width:100%;
    background:white;
    border-bottom:1px solid #e2e8f0;
    display:none;
    flex-direction:column;
    text-align:center;
    padding:20px 0;
  }

  nav a{
    display:block;
    margin:15px 0;
  }

  .menu-toggle{
    display:block;
  }

  nav.active{
    display:flex;
  }
}
.modal{
  display:none;
  position:fixed;
  top:0; left:0;
  width:100%; height:100%;
  background:rgba(0,0,0,0.5);
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.modal-content{
  background:white;
  padding:40px;
  border-radius:14px;
  width:350px;
  position:relative;
}

.close{
  position:absolute;
  top:10px;
  right:15px;
  cursor:pointer;
  font-size:22px;
}
.action-btn{
  margin-top: 10px;
  /*background: #10b981;*/
  background-image: linear-gradient(to right, #0a5fbda6 20%, #54c743 100%);
  border: none;
  font-size: 18px;
  cursor: pointer;
  height: 30px;
  width: 100%;
  border-radius: 10px;
}
input,select{
  padding:10px;
  border:1px solid #10b981;
  border-radius:8px;
  margin-bottom:10px;
}
