.hero-sec{
    padding: 120px 0px;
    background: linear-gradient(135deg,#ffffff,rgba(197, 204, 255, 0.175), #6c17bd);
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-sec .content h1{
    color: var(--violet);
    font-size: 84px;
}
.hero-sec .content p{
    font-size: 44px;
    margin-top: 15px;
}
.about-product{
    padding: 60px 0px; 
}
.about-product  img{
    border-radius: 12px;
}
.about-product .content h2{
    font-size: 54px;
    margin-bottom: 20px;
    color: var(--violet);
}
.about-product .content p{
    font-size: 18px;
    line-height: 28px;
}
/*  benefits */
.benefits-sec{
    padding: 60px 0px;
    background: #400767;
    /* background: linear-gradient(178deg, var(--purple), #1c1627); */
    /* background: linear-gradient(180deg, var(--purple), #a67bf5);
       background: linear-gradient(180deg, #BD47F9, #a67bf5); */
    /* background: linear-gradient(180deg, #70429c, #b39ac4); */
    background: linear-gradient(180deg, #8e5da7, #8a6ebd);
    color: #fff;
}
.benefits-sec .heading{
    font-size: 46px;
    text-align: center;
   
}
.benefits-sec .benefits{
    padding: 30px 0px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    background: #5a21be24;
    border-radius: 12px;
    margin: 40px 0;
    box-shadow: 0px 6px 23px 10px #5b3b92;
}
.benefits-sec .benefits .benefit {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    border-right: 2px solid #fff; /* vertical divider */
}
.benefits-sec .benefits .benefit img{
    width: 150px;
}
.benefits-sec .benefits .benefit:last-child {
    border-right: none; /* remove divider from last item */
}

/*  why-choose */
.why-choose{
    padding: 60px 0px;
}
.why-choose .heading{
    font-size: 54px;
    text-align: center;
    color: var(--purple);
}
.why-choose .heading span{
    /* background: var(--purple); */
    color: #fff;
    padding: 2px 24px;
    border-radius: 50%;
    background: linear-gradient(0deg, #bd5dff, #500e7f);
}
.why-choose .card{
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0px 3px 10px 2px #820ed175;
}
.why-choose .card img{
    height: 280px;
}
.why-choose .card .card-title{
    font-size: 22px;
    color: var(--purple);
    font-weight: 600;
}
/* CTA Section */
.cta-sec {
  text-align: center;
  padding: 40px 20px;
}

.cta-sec h2 {
  font-size: 34px;
  color: #fff;
}
.cta-sec .contact-info{
    display: flex;
    justify-content: space-around;
    background: var(--violet);
    background: linear-gradient(92deg, #70429c, #b39ac4);
    padding: 30px 0px;
    border-radius: 12px;
}
/* Button Style */
.call-btn {
  position: relative;
  display: inline-block;
  padding: 15px 20px;
  background: #400767;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  z-index: 1;
  overflow: visible; /* allow waves outside */
}
a.call-btn,a.call-btn:hover{
    color: #fff !important;
}

/* Ripple Waves */
.call-btn .wave {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  background: rgba(128, 0, 255, 0.3); /* violet wave */
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  z-index: -1;
  animation: rippleOutside 3s infinite;
}

/* Delay each wave for effect */
.call-btn .wave:nth-child(2) {
  animation-delay: 1s;
}
.call-btn .wave:nth-child(3) {
  animation-delay: 2s;
}

@keyframes rippleOutside {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.6;
  }
  70% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0.2;
  }
  100% {
    transform: translate(-50%, -50%) scale(3.5);
    opacity: 0;
  }
}

/*  product plan */
/* Section */
.plans-sec {
  padding: 60px 0;
 background: #e7b4fd12;
}

.plans-sec .section-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--deep-purple);
  margin-bottom: 40px;
}

/* Plans Grid */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card Style */
.plan-card {
  background: var(--white);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.15);
}

/* Highlighted Card */
.plan-card.highlight {
  border: 3px solid var(--magenta);
}

.plan-card.highlight .badge {
  position: absolute;
  top: -15px;
  right: 15px;
  background: var(--magenta);
  color: var(--white);
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Icons */
.plan-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: var(--purple);
}

/* Titles */
.plan-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--deep-purple);
}

.plan-subtitle {
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 20px;
}

/* Features List */
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.plan-features li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  color: var(--black);
}

.plan-features li::before {
  content: "✔";
  position: absolute;
  left: -2px;
  color: var(--text-secondary);
  font-weight: 600;
  margin-right: 5px;
}

.next-product-invite {
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* background: linear-gradient(135deg, var(--violet), var(--deep-purple)); */
  background: linear-gradient(135deg, #6b4391, #734493);;
  position: relative;
  overflow: hidden;
}

.invite-content {
  color: var(--white);
  z-index: 1;
}

.next-product-invite::before {
  content: "";
  position: absolute;
  width: 250%;
  height: 250%;
  /* background: radial-gradient(circle, var(--magenta) 10%, transparent 70%); */
      background: linear-gradient(135deg, #51155b, #5b1588e3);
  animation: pulse-bg 6s infinite linear;
  top: -75%;
  left: -75%;
  z-index: 0;
  opacity: 0.15;
}

@keyframes pulse-bg {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}

.btn-invite {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 30px;
  background: var(--white);
  color: var(--violet);
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-invite:hover {
  background: var(--lavender);
  color: var(--deep-purple);
  transform: translateY(-3px);
}
/* =======================
   MOBILE RESPONSIVENESS
   ======================= */
@media (max-width: 992px) {
  /* HERO SECTION */
  .hero-sec {
    padding: 80px 20px;
    text-align: center;
  }
  .hero-sec .content h1 {
    font-size: 54px;
  }
  .hero-sec .content p {
    font-size: 28px;
  }
  .hero-sec img {
    width: 90%;
    margin-top: 20px;
  }

  /* ABOUT PRODUCT */
  .about-product {
    padding: 40px 20px;
    text-align: center;
  }
  .about-product .content h2 {
    font-size: 34px;
  }
  .about-product .content p {
    font-size: 16px;
  }
  .about-product img {
    margin-bottom: 20px;
    width: 100%;
  }

  /* BENEFITS SECTION */
  .benefits-sec {
    padding: 40px 15px;
  }
  .benefits-sec .heading {
    font-size: 32px;
  }
  .benefits-sec .benefits {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px;
  }
  .benefits-sec .benefits .benefit {
    border-right: none;
    border-bottom: 1px solid #ffffff55;
    padding-bottom: 20px;
  }
  .benefits-sec .benefits .benefit:last-child {
    border-bottom: none;
  }
  .benefits-sec .benefits .benefit img {
    width: 120px;
  }

  /* WHY CHOOSE */
  .why-choose {
    padding: 40px 20px;
  }
  .why-choose .heading {
    font-size: 36px;
  }
  .why-choose .card img {
    height: auto;
  }

  /* CTA SECTION */
  .cta-sec {
    padding: 30px 15px;
  }
  .cta-sec h2 {
    font-size: 22px;
    text-align: center;
  }
  .cta-sec .contact-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    gap: 15px;
  }
  .call-btn {
    padding: 12px 25px;
    font-size: 16px;
  }

  /* PLANS SECTION */
  .plans-sec {
    padding: 40px 20px;
  }
  .plans-sec .section-title {
    font-size: 30px;
  }
  .plans {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .plan-card {
    padding: 25px 15px;
  }
  .plan-title {
    font-size: 22px;
  }
  .plan-subtitle {
    font-size: 15px;
  }

  /* NEXT PRODUCT INVITE */
  .next-product-invite {
    padding: 50px 20px;
  }
  .invite-content h3 {
    font-size: 24px;
  }
  .btn-invite {
    padding: 10px 25px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .hero-sec .content h1 {
    font-size: 42px;
  }
  .hero-sec .content p {
    font-size: 22px;
  }
  .about-product .content h2 {
    font-size: 28px;
  }
  .benefits-sec .heading,
  .why-choose .heading {
    font-size: 28px;
  }
  .cta-sec h2 {
    font-size: 20px;
  }
}
