/* =========================
   GLOBAL RESET
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial, sans-serif;
  background:#f4f7fb;
  color:#1e293b;
  line-height:1.6;
}

/* =========================
   LINKS
========================= */

a{
  text-decoration:none;
}

/* =========================
   NAVBAR
========================= */

.navbar{

  width:100%;

  height:70px;

  background:#0f172a;

  display:flex;

  align-items:center;

  justify-content:space-between;

  padding:0 40px;

  position:sticky;

  top:0;

  z-index:999;

}

.logo{

  color:white;

  font-size:24px;

  font-weight:bold;

}

.nav-links{

  display:flex;

  align-items:center;

  gap:20px;

}

.nav-links a{

  color:#cbd5e1;

  font-size:15px;

  transition:0.3s;

}

.nav-links a:hover{

  color:white;

}

.nav-user {

  color: white;

  font-weight: 600;

}

.logout-btn {

  background: #ef4444;

  color: white;

  border: none;

  padding: 10px 18px;

  border-radius: 8px;

  cursor: pointer;

  font-weight: 600;

  transition: 0.3s;

}

.logout-btn:hover {

  background: #dc2626;

}

/* =========================
   HERO SECTION
========================= */

.hero{

  width:100%;

  text-align:center;

  padding:100px 20px 70px;

}

.hero h1{

  font-size:58px;

  color:#0f172a;

  margin-bottom:25px;

}

.hero p{

  max-width:800px;

  margin:auto;

  font-size:20px;

  color:#64748b;

  line-height:1.8;

}

/* =========================
   SECTIONS
========================= */

.cards-section{

  width:100%;

  max-width:1200px;

  margin:auto;

  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(320px,1fr));

  gap:30px;

  padding:20px;

}

/* =========================
   FEATURE CARD
========================= */

.feature-card{

  background:white;

  border-radius:20px;

  padding:40px;

  box-shadow:
  0 10px 25px rgba(0,0,0,0.06);

  transition:0.3s;

}

.feature-card:hover{

  transform:translateY(-5px);

}

.feature-card h2{

  margin-bottom:20px;

  color:#0f172a;

}

.feature-card p{

  color:#64748b;

  margin-bottom:30px;

  line-height:1.8;

}

/* =========================
   BUTTONS
========================= */

.btn{

  display:inline-block;

  background:#2563eb;

  color:white;

  padding:14px 24px;

  border:none;

  border-radius:10px;

  cursor:pointer;

  font-weight:bold;

  transition:0.3s;

}

.btn:hover{

  background:#1d4ed8;

}

.btn-outline{

  background:white;

  color:#2563eb;

  border:2px solid #2563eb;

}

.btn-outline:hover{

  background:#2563eb;

  color:white;

}

/* =========================
   AUTH PAGES
========================= */

.auth-wrapper{

  width:100%;

  min-height:calc(100vh - 70px);

  display:flex;

  align-items:center;

  justify-content:center;

  padding:40px 20px;

}

.auth-card{

  width:100%;

  max-width:450px;

  background:white;

  padding:40px;

  border-radius:20px;

  box-shadow:
  0 15px 40px rgba(0,0,0,0.08);

}

.auth-title{

  font-size:34px;

  margin-bottom:10px;

  text-align:center;

  color:#0f172a;

}

.auth-subtitle{

  text-align:center;

  color:#64748b;

  margin-bottom:30px;

}

.form-group{

  margin-bottom:20px;

}

.form-group label{

  display:block;

  margin-bottom:8px;

  font-weight:bold;

}

.form-group input{

  width:100%;

  padding:14px;

  border:1px solid #cbd5e1;

  border-radius:10px;

  font-size:15px;

  transition:0.3s;

}

.form-group input:focus{

  outline:none;

  border-color:#2563eb;

}

/* =========================
   DASHBOARD
========================= */

.dashboard-container{

  width:100%;

  max-width:1200px;

  margin:auto;

  padding:40px 20px;

}

.dashboard-header{

  margin-bottom:40px;

}

.dashboard-header h1{

  font-size:40px;

  margin-bottom:10px;

}

.dashboard-header p{

  color:#64748b;

}

/* =========================
   STATS GRID
========================= */

.stats-grid{

  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(250px,1fr));

  gap:20px;

  margin-bottom:30px;

}

.stat-card{

  background:white;

  padding:30px;

  border-radius:20px;

  box-shadow:
  0 10px 25px rgba(0,0,0,0.05);

}

.stat-label{

  color:#64748b;

  margin-bottom:10px;

}

.stat-value{

  font-size:34px;

  color:#2563eb;

}

/* =========================
   STATUS CARD
========================= */

.status-card{

  background:white;

  padding:30px;

  border-radius:20px;

  margin-bottom:30px;

  box-shadow:
  0 10px 25px rgba(0,0,0,0.05);

}

.status-card h2{

  margin-bottom:15px;

}

/* =========================
   QUICK ACTIONS
========================= */

.quick-actions{

  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(250px,1fr));

  gap:20px;

  margin-bottom:50px;

}

.action-card{

  background:white;

  padding:30px;

  border-radius:20px;

  box-shadow:
  0 10px 25px rgba(0,0,0,0.05);

  transition:0.3s;

  color:#1e293b;

}

.action-card:hover{

  transform:translateY(-5px);

}

.action-card h3{

  margin-bottom:12px;

}

.action-card p{

  color:#64748b;

}

/* =========================
   PRICING
========================= */

.pricing-section{

  width:100%;

  max-width:1200px;

  margin:80px auto;

  padding:20px;

  text-align:center;

}

.pricing-section h2{

  font-size:42px;

  margin-bottom:15px;

}

.pricing-section p{

  color:#64748b;

}

.pricing-wrapper{

  margin-top:60px;

}

.pricing-grid{

  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(320px,1fr));

  gap:30px;

  margin-top:40px;

}

.pricing-card{

  background:white;

  padding:40px;

  border-radius:20px;

  box-shadow:
  0 10px 30px rgba(0,0,0,0.06);

  transition:0.3s;

}

.pricing-card:hover{

  transform:translateY(-5px);

}

.pricing-card h3{

  font-size:28px;

  margin-bottom:15px;

}

.price{

  font-size:54px;

  color:#2563eb;

  font-weight:bold;

  margin-bottom:20px;

}

.pricing-card ul{

  list-style:none;

  margin-bottom:30px;

}

.pricing-card li{

  margin-bottom:12px;

  color:#64748b;

}

/* =========================
   FOOTER
========================= */

.footer{

  margin-top:80px;

  background:#0f172a;

  color:white;

  text-align:center;

  padding:30px 20px;

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

  .navbar{

    padding:0 20px;

    flex-wrap:wrap;

    height:auto;

    padding-top:15px;

    padding-bottom:15px;

  }

  .nav-links{

    width:100%;

    justify-content:center;

    flex-wrap:wrap;

    margin-top:15px;

  }

  .hero h1{

    font-size:40px;

  }

  .hero p{

    font-size:18px;

  }

  .dashboard-header h1{

    font-size:32px;

  }

  .pricing-section h2{

    font-size:34px;

  }

}