body {
  background-color: #fff2f7;
}

/* ============================= */
/* HERO SECTION */
/* ============================= */
.hero {
  padding: 3rem 1rem;
  font-family: 'Times New Roman', Times, serif;
}

/* ============================= */
/* GRID LAYOUT */
/* ============================= */
.hero-container {
  display: flex;
  flex-direction: column;

  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ============================= */
/* HEADING */
/* ============================= */
.hero-heading {
  letter-spacing: 1px;
  font-weight: bold;
  color: #0b0224;
  margin-bottom: 1rem;

  font-size: 50px;
}

/* ============================= */
/* TEXT */
/* ============================= */
.hero-subtext {
  color: #000;
  font-size: 30px
}

.hero-text {
  letter-spacing: 0.5px;
  color: #000;
  line-height: 1.6;

  /* Responsive font scaling */
  font-size: clamp(1rem, 2.2vw, 1rem);
}

.badge {
  display: inline-block;
  background: #c9bdfa;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #623fff;
  font-size: 1.1rem;
}







/* ============================= */
/* PRICING SECTION */
/* ============================= */
.pricing {
  padding: 0rem 1rem 4rem 0rem;
  font-family: 'Times New Roman', Times, serif;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;

}

/* ============================= */
/* GRID LAYOUT */
/* ============================= */
.sections {
  display: grid;
  gap: 2rem;
}

/* 1 column on phones */
@media (max-width: 767px) {
  .sections {
    grid-template-columns: 1fr;
  }
}

/* 2 columns on tablets */
@media (min-width: 768px) and (max-width: 1023px) {
  .sections {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 3 columns on desktop */
@media (min-width: 1024px) {
  .sections {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================= */
/* PRICING CARDS */
/* ============================= */
.pricing-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 1.5rem;
  border: 2px solid #c9bdfa;
  border-radius: 8px;
  height: 100%;
  box-shadow: 0 2px 10px #7b5cff;
  background-color: white;
}

/* Card heading */
.pricing-section .section-heading {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: #0b0224;
  margin-bottom: 0rem;
}

/* Price / subheading */
.pricing-section .section-subheading {
  margin-top: 0.9rem;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #000;
  margin-bottom: 0.4rem;
}

/* Description text */
.pricing-section .section-text,
.pricing-section .section-options {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: #000;
  line-height: 1.6;
  margin-bottom: 0rem;
}

/* ============================= */
/* BUTTON ALIGNMENT */
/* ============================= */
.pricing-section {
  justify-content: space-between; /* ensures button sits at bottom */
}

/* Button */
.section-button {
  margin-top: 1.5rem;
  text-decoration: none;
  border: none;
  padding: 0.7rem 3rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #000;
  background: linear-gradient(45deg, #7b5cff, #ff6aa2);
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.section-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px #7b5cff;
}

.section-options {
  display: flex;
  flex-direction: row;
  gap: 1.2rem;
  margin-top: 1rem;
}

.pricing-section:nth-child(2) {
  transform: scale(1.05);
  border: 2px solid #ff6aa2;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  
  background: linear-gradient(45deg, #7b5cff, #ff6aa2);
  color: white;
  
  padding: 0.3rem 0.8rem;
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 1px;
  
  border-radius: 20px;
}