:root {
  --primary: #6366f1;
  --secondary: #a855f7;
  --dark: #0f172a;
  --light: #f8fafc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10%;
  height: 80px;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
  /* background-color: blue; */
  font-size: 1.5rem;
  font-weight: 800;
  cursor: pointer;
}

.logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 5%;
}

.nav-links a {
  text-decoration: none;
  color: #64748b;
  font-weight: 600;
  font-size: 18px;
  transition: 0.3s;
  /* background-color: #0353b6; */
}

.nav-links a:hover {
  color: var(--primary);
}

.btn-login {
  background-color: var(--primary);
  color: white;
  padding: 1% 3%;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.btn-login:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

body {
  padding-top: 80px;
}

.logo span {
  color: var(--primary);
}

/* Hero */
.hero {
  text-align: center;
  padding: 10% 10%;
  background: radial-gradient(circle at top, #f5f3ff 0%, #ffffff 100%);
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero h1 span {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto 4%;
}

/* Pricing */
.pricing {
  padding: 8% 10%;
  background: #fff;
  width: 100%;
}
.section-title {
  text-align: center;
  margin-bottom: 5%;
  font-size: 2.5rem;
}

.pricing-container {
  display: flex;
  justify-content: center;
  gap: 3%;
  flex-wrap: wrap;
  width: 100%;
}

.price-card {
  border: 1px solid #e2e8f0;
  padding: 4%;
  border-radius: 2%;
  width: 35%;
  transition: transform 0.3s;
}
.price-card h3 {
  margin-top: 30%;
}
.price-card-featured {
  border: 2px solid var(--primary);
  position: relative;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  width: 35%;
}
.price-card-featured h3 {
  margin-top: 30%;
}
.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 2% 0%;
}
.price span {
  font-size: 1rem;
  color: #64748b;
}
.price-card-featured .price,
.price-card-featured h3 {
  margin-left: 12%;
}
ul {
  list-style: none;
  margin-bottom: 3%;
  text-align: center;
}
ul li {
  margin-bottom: 10px;
  color: #64748b;
}

/* Buttons */
.btn-main {
  background: var(--primary);
  color: white;
  padding: 2% 5%;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  margin-left: 5%;
}

.btn-outline {
  background: transparent;
  border: 1px solid #cbd5e1;
  width: 100%;
  padding: 3%;
  border-radius: 8px;
  cursor: pointer;
}
