.gradient-background {
  background: linear-gradient(300deg, #00bfff, #ff4c68, #ef8172);
  background-size: 220% 220%;
  animation: gradient-animation 16s ease-in-out infinite;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


.icon-square {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
}

#title {
  color: #ffffff;
}

#features {
  background: linear-gradient(180deg, #c4b8b8 0%, #8da9bb 100%);
}

.feature-card {
  padding: 1.4rem 1.2rem;
  border-radius: 0.95rem;
  background-color: #ffffff;
  border: 1px solid #e5e9f2;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

.feature-content h3 {
  font-size: clamp(1.45rem, 2vw, 1.8rem);
  margin-bottom: 0.4rem;
}

.feature-content p {
  margin-bottom: 0;
  color: #4a5568;
  line-height: 1.55;
}

.profile-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin: 1.25rem 0 0.75rem;
  border: 4px solid #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

#testimonial {
  background: linear-gradient(180deg, #8da9bb 0%, #c2c8cf 100%);
  padding: 3rem 1rem;
}

.testimonial-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
  max-width: 1100px;
  margin: 2.5rem auto;
  padding: 3rem 2rem;
  background: linear-gradient(180deg, #f9fbff 0%, #f2f6fb 100%);
  border-radius: 1rem;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
}

.testimonial-quote {
  width: min(90%, 850px);
  margin: 0;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.45;
  font-weight: 600;
  color: #1f2a44;
  text-wrap: balance;
}

.testimonial-author {
  display: block;
  margin-bottom: 1.75rem;
  color: #866060;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.company-logo {
  height: 40px;
  width: auto;
  padding: 0.6rem 0.9rem;
  border-radius: 0.55rem;
  background-color: #ffffff;
  border: 1px solid #e5e9f2;
  box-shadow: 0 3px 12px rgba(15, 23, 42, 0.08);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(1.8rem, 8.5vw, 2.3rem);
    text-align: center;
  }

  #title .d-grid {
    justify-content: center;
  }

  .feature-card {
    padding: 1.2rem 1rem;
  }

  .feature-content h3 {
    font-size: 1.4rem;
  }

  .testimonial-container {
    margin: 1.5rem 1rem;
    padding: 2rem 1.15rem;
  }

  .testimonial-quote {
    width: 100%;
    line-height: 1.5;
  }

  .profile-img {
    width: 90px;
    height: 90px;
  }

  .company-logo {
    height: 30px;
    padding: 0.55rem 0.75rem;
  }
}

#pricing {
  background: linear-gradient(180deg, #eef3f8 0%, #dfe7ef 100%);
  padding: 4rem 1rem 4.5rem;
}

.pricing-intro {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.pricing-title {
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 700;
  color: #1f2a44;
  margin-bottom: 0.6rem;
}

.pricing-subtitle {
  font-size: 1.05rem;
  color: #5f6b7a;
  margin-bottom: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 1120px;
  margin: 0 auto;
}

.pricing-card {
  height: 100%;
  border: 1px solid #dfe6ef;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  justify-content: center;
  align-items: center;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
}

.pricing-card .card-header {
  background: linear-gradient(135deg, #f7f9fc 0%, #edf2f7 100%);
  text-align: center;
  background-size: cover;
  border: 1px solid #dacfcf;
  color: #213823;
  width: 100%;
}

.pricing-card-title{
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #1f2a44;
}

.pricing-card ul li {
  padding: 0;
  color: #4a5568;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 500;
}


.pricing-btn-primary {
  background: linear-gradient(135deg, #ff4c68 0%, #ff6b7e 100%);
  border-color: #ff4c68;
  color: #ffffff;
}

.pricing-btn-primary:hover {
  background: linear-gradient(135deg, #ef3f5c 0%, #f15b6a 100%);
  color: #ffffff;
}

.pricing-card-featured {
  border: 2px solid #ff4c68;
  transform: translateY(-5px);
}

.pricing-card-featured .card-header {
  background: linear-gradient(135deg, #ff4c68 0%, #ff6b7e 100%);
  color: #ffffff;
}

@media (max-width: 768px) {
  #pricing {
    padding: 3rem 1rem 3.5rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-title {
    font-size: 1.8rem;
  }

  .pricing-subtitle {
    font-size: 1rem;
  }
}