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

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

/* NAVBAR */
.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;
  transition: all 0.3s ease;
}

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

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

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

.cta-btn:hover {
  background: #a85cb0;
  transform: translateY(-2px);
}

/* PURE CSS HAMBURGER */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 21px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.bar {
  height: 3px;
  width: 100%;
  background-color: #333;
  border-radius: 10px;
  transition: all 0.4s ease;
}

/* Transform bars into X when open */
.menu-toggle.open .bar:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.menu-toggle.open .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* HERO SECTION */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f5e8fa 40%, #c071c5 100%);
  min-height: 90vh;
  color: #333;
  overflow: hidden;
}

.hero-content {
  max-width: 500px;
  animation: slideInLeft 1s ease forwards;
}

.hero-content h1 {
  font-size: 2.5rem;
  color: #2d033b;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #4a4a4a;
}

.hero-btn {
  display: inline-block;
  background: #fff;
  color: var(--accent-color);
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: var(--accent-color);
  color: #fff;
  transform: translateY(-3px);
}

.hero-image img {
  width: 400px;
  animation: floatUp 3s ease-in-out infinite alternate;
}

/* ANIMATIONS */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes floatUp {
  from {
    transform: translateY(10px);
  }
  
  to {
    transform: translateY(-10px);
  }
}

/* RESPONSIVE */
@media (max-width:768px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    box-shadow: 0 4px 10px var(--shadow);
  }
  
  .nav-links.active {
    max-height: 300px;
    padding: 1.5rem 0;
  }
  
  .cta-btn {
    display: none;
  }
  
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
  }
  
  .hero-image img {
    width: 250px;
    margin-top: 2rem;
  }
}



/* Pricing Title */
.pricing-title {
  text-align: center;
  padding: 3rem 1.5rem 1rem;
}

.pricing-title h1 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #0A0F24;
}

.pricing-title p {
  max-width: 550px;
  margin: 0.5rem auto;
  color: #555;
  font-size: 1rem;
}

/* Pricing Section */
.pricing-section {
  padding: 2rem 1rem 4rem;
}

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

/* Card */
.price-card {
  width: 300px;
  background: #ffffff;
  border: 1.5px solid #d4d7e5;
  border-radius: 15px;
  padding: 1.8rem;
  text-align: center;
  transition: 0.3s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.07);
}

.price-card h2 {
  font-size: 1.6rem;
  color: #0A0F24;
  font-weight: 700;
}

.amount {
  font-size: 2rem;
  margin: 0.6rem 0 1rem;
  color: #0A0F24;
  font-weight: 700;
}

/* Features */
.price-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.3rem;
}

.price-card ul li {
  padding: 0.4rem 0;
  color: #444;
}

/* Recommended card */
.recommended {
  border-color: #28D160;
  box-shadow: 0 12px 30px rgba(40,209,96,0.15);
}

/* Button */
.choose-btn {
  display: inline-block;
  padding: 0.7rem 1.3rem;
  border-radius: 30px;
  background: #28D160;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}

.choose-btn:hover {
  background: #22b753;
}

/* Responsive */
@media (max-width:768px) {
  .price-card {
    width: 100%;
    max-width: 330px;
  }
}




/* Title */
.pricing-title {
  text-align: center;
  padding: 3rem 1rem 1rem;
}

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

.pricing-title p {
  font-size: 1rem;
  color: #4a4a4a;
  max-width: 550px;
  margin: 0.5rem auto;
}

/* Pricing Section */
.pricing-section {
  padding: 2rem 1rem 4rem;
  background: var(--background-color);
}

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

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

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

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

/* Text */
.price-card h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2d033b;
}

.amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 0.5rem 0 1rem;
}

/* Features */
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.3rem;
}

.price-card ul li {
  padding: 0.4rem 0;
  color: #4a4a4a;
}

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

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

/* Responsive */
@media (max-width:768px) {
  .price-card {
    width: 100%;
    max-width: 330px;
  }
}

