:root {
  --background-color: #f5e8fa;
  --accent-color: #c071c5;
  --shadow: #cec4d3;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

/* NAVBAR — SAME STYLE AS PREVIOUS DAYS */
.navbar {
  width: 100%;
  background: white;
  box-shadow: 0 4px 10px var(--shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
}

.brand span {
  color: var(--accent-color);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--accent-color);
}

.cta-btn {
  background: var(--accent-color);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #a85cb0;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 3px;
}

/* PRICING SECTION */
.pricing-section {
  padding: 3rem 1rem;
  text-align: center;
  background: var(--background-color);
}

.title {
  font-size: 2.2rem;
  color: #2d033b;
  font-weight: 700;
}

.subtitle {
  margin-top: 0.5rem;
  color: #4a4a4a;
}

.pricing-container {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* CARD */
.pricing-card {
  width: 300px;
  background: white;
  border: 1.5px solid var(--shadow);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  box-shadow: 0 6px 14px var(--shadow);
  transition: 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
}

/* Recommended Plan */
.recommended {
  border-color: var(--accent-color);
  box-shadow: 0 12px 25px rgba(192, 113, 197, 0.4);
}

.badge {
  background: var(--accent-color);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  display: inline-block;
}

/* Text */
.plan-title {
  font-size: 1.4rem;
  color: #2d033b;
  font-weight: 700;
}

.price {
  font-size: 2rem;
  color: var(--accent-color);
  font-weight: 700;
  margin: 0.8rem 0;
}

.features {
  list-style: none;
  margin: 1rem 0 1.5rem;
  color: #333;
}

.features li {
  margin-bottom: 0.6rem;
}

/* Button */
.btn {
  display: inline-block;
  padding: 0.7rem 1.2rem;
  border-radius: 30px;
  background: white;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: var(--accent-color);
  color: white;
}

/* Highlight button */
.highlight {
  background: var(--accent-color);
  color: white;
}

.highlight:hover {
  background: #a85cb0;
}

/* RESPONSIVE */
@media (max-width:768px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 0;
    background: white;
    text-align: center;
    box-shadow: 0 4px 10px var(--shadow);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .cta-btn {
    display: none;
  }
}
