/* pricing.css */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f3f8fc;
  margin: 0;
  padding: 0;
  color: #002f5c;
}

main {
  min-height: 60vh;
}

.pricing-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pricing-section {
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #002f5c;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 3rem;
}

.pricing-intro {
  background-color: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  max-width: 1000px;
  margin: 0 auto 3rem auto;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  text-align: center;
}

.pricing-intro h2 {
  color: #002f5c;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.pricing-intro p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-grid {
  margin-top: 2rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.price-card {
  background-color: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  margin-bottom: 2rem;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.price-card h3 {
  font-size: 1.3rem;
  color: #004b91;
  margin-bottom: 0.75rem;
}

.price-card p {
  font-size: 1rem;
  color: #444;
  margin: 0.5rem 0;
  line-height: 1.4;
}

.price-card em {
  display: block;
  font-style: normal;
  font-weight: 500;
  color: #555;
  font-size: 0.95rem;
  margin-top: 0.25rem;
}

.price-card .price {
  font-size: 1.5rem;
  font-weight: 600;
  color: #002f5c;
  margin-top: 1rem;
}

/* WHY US SECTION */
.why-us-section {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.why-us-section h2 {
  font-size: 28px;
  color: #002f5c;
  margin-bottom: 40px;
}

.why-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  justify-items: center;
}

.why-card {
  background-color: #f3f8fc;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.why-card h3 {
  color: #004b91;
  margin-bottom: 12px;
  font-size: 18px;
}

.why-card p {
  color: #333;
  font-size: 15px;
}

/* FINAL CTA */
.final-cta {
  margin-top: 60px;
  margin-bottom: 80px;
  text-align: center;
}

.final-cta .cta-subtext {
  font-size: 14px;
  color: #002f5c;
  margin-bottom: 12px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.final-cta .cta-button {
  margin-top: 20px;
  background-color: #25D366;
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.final-cta .cta-button:hover {
  background-color: #1ebe5d;
}

.final-cta-card {
  display: inline-block;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 12px 40px rgba(0, 47, 92, 0.13), 0 2px 8px rgba(0,0,0,0.06);
  padding: 56px 48px 48px 48px;
  max-width: 540px;
  min-width: 320px;
  margin: 0 auto;
  transition: box-shadow 0.2s;
}

.final-cta-card .cta-subtext {
  font-size: 1.32rem;
  color: #002f5c;
  margin-bottom: 48px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.final-cta-card .cta-button {
  margin-top: 0;
  background: linear-gradient(90deg, #25D366 0%, #1ebe5d 100%);
  color: #fff;
  padding: 22px 54px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1.35rem;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.18);
  border: none;
  outline: none;
  transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
  position: relative;
  z-index: 1;
  letter-spacing: 0.01em;
}

.final-cta-card .cta-button:hover {
  background: linear-gradient(90deg, #1ebe5d 0%, #25D366 100%);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.25);
  transform: translateY(-2px) scale(1.045);
}

.flashing {
  animation: flash-glow 1.2s infinite alternate;
}

@keyframes flash-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5), 0 4px 18px rgba(37, 211, 102, 0.18);
    filter: brightness(1.05);
  }
  100% {
    box-shadow: 0 0 32px 12px rgba(37, 211, 102, 0.18), 0 8px 32px rgba(37, 211, 102, 0.22);
    filter: brightness(1.19);
  }
}

/* COLLABORATORS */
.collaborators-section {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 2rem;
  font-family: 'Poppins', sans-serif;
}

.collaborators-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #002f5c;
}

.collaborator {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 2rem;
}

.collaborator img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid #ccc;
}

.collab-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #002f5c;
}

.collab-info p {
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
}

/* FOUNDER */
.founder-section {
  padding: 60px 20px;
  background: #f9fbfd;
  text-align: center;
}

.founder-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #002f5c;
}

.founder-profile {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  gap: 30px;
}

.founder-profile img {
  width: 200px;
  height: 200px;
  border-radius: 100px;
  object-fit: cover;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.founder-profile .collab-info {
  max-width: 600px;
  text-align: left;
}

.founder-profile .collab-info h3 {
  font-size: 1.5rem;
  color: #002f5c;
  margin-bottom: 10px;
}

.founder-profile .collab-info p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
  .pricing-section {
    padding: 2rem 1rem;
  }

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

  .price-card {
    padding: 1.5rem 1.2rem;
    border-radius: 12px;
  }

  .price-card h3 {
    font-size: 1.2rem;
  }

  .price-card p {
    font-size: 0.95rem;
  }

  .price-card em {
    font-size: 0.9rem;
  }

  .price-card .price {
    font-size: 1.3rem;
    margin-top: 0.75rem;
  }

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

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

  .collaborator {
    flex-direction: column;
    align-items: flex-start;
  }

  .collaborator img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .collab-info h3 {
    margin-top: 1rem;
  }

  .collab-info {
    text-align: center;
  }

  .founder-profile {
    flex-direction: column;
    align-items: center;
  }

  .founder-profile img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .founder-profile .collab-info {
    text-align: center;
  }
}

@media screen and (max-width: 600px) {
  .final-cta-card {
    padding: 28px 8px 24px 8px;
    max-width: 98vw;
    min-width: unset;
  }
  .final-cta-card .cta-button {
    font-size: 1.05rem;
    padding: 13px 18px;
  }
  .final-cta-card .cta-subtext {
    font-size: 1.05rem;
    margin-bottom: 32px;
  }
}
