body {
  background-color: #fff2f7;
}

/* ============================= */
/* HERO SECTION */
/* ============================= */
.hero {
  padding: 2.5rem 1rem;
  font-family: 'Times New Roman', Times, serif;
  text-align: center;
}

.hero-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ============================= */
/* HERO TEXT */
/* ============================= */
.hero-heading {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: bold;
  color: #0b0224;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.hero-subtext {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  margin-bottom: 1rem;
}

.hero-text {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Badge */
.badge {
  display: inline-block;
  background: #c9bdfa;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #623fff;
  font-size: 0.95rem;
}




/* ============================= */
/* PRICING SECTION */
/* ============================= */
.pricing {
  padding: 2rem 1rem 3rem;
  font-family: 'Times New Roman', Times, serif;
}

.pricing-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ============================= */
/* GRID */
/* ============================= */
.sections {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr; /* mobile default */
}

/* Tablet */
@media (min-width: 768px) {
  .sections {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .sections {
    grid-template-columns: repeat(2, 1fr); /* 👈 fixed */
  }
}

/* ============================= */
/* PRICING CARD */
/* ============================= */
.pricing-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.8rem 1.4rem;
  border: 2px solid #c9bdfa;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(123, 92, 255, 0.2);
  transition: transform 0.2s ease;
}

.pricing-section:hover {
  transform: translateY(-4px);
}

/* Highlight card */
.pricing-section:nth-child(1) {
  border-color: #ff6aa2;
  transform: scale(1.03);
}

/* ============================= */
/* TEXT INSIDE CARD */
/* ============================= */
.section-heading {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-subheading {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-text,
.section-options {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Price */
.section-price {
  text-align: center;
  font-weight: 600;
  margin: 1rem 0;
}

/* ============================= */
/* OPTIONS ROW */
/* ============================= */
.section-options {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.8rem;
}

/* ============================= */
/* BUTTON */
/* ============================= */
.section-button {
  margin-top: 1rem;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: bold;
  color: #000;
  background: linear-gradient(45deg, #7b5cff, #ff6aa2);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.section-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px #7b5cff;
}

/* ============================= */
/* INPUT */
/* ============================= */
input {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  text-align: center;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 1rem;
}

/* ============================= */
/* SMALL MOBILE FIX */
/* ============================= */
@media (max-width: 480px) {
  .hero {
    padding: 2rem 1rem;
  }

  .pricing {
    padding: 1.5rem 1rem 2rem;
  }
}