/* =========================
   PRICING SECTION
========================= */

.pricing-section {
  padding: 80px 0;
  background: #ffffff;
}

.pricing-container {
  width: 92%;
  max-width: 1100px;
  margin: auto;
}

/* HEADER */

.pricing-header {
  text-align: center;
  margin-bottom: 50px;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.pricing-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-dark);
}

.pricing-subtitle {
  margin-top: 15px;
  color: #3f5248;
}

/* TOGGLE */

.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 50px;
}

.toggle-btn {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
  font-weight: 500;
}

.toggle-btn.active {
  background: var(--green-dark);
  color: white;
  border-color: var(--green-dark);
}

/* GRID */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

/* CARD */

.pricing-card {
  background: white;
  padding: 35px;
  border-radius: 18px;
  border: 1px solid rgba(0,95,46,0.15);
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,95,46,0.08);
}

.pricing-card.featured {
  border: 2px solid var(--green-dark);
  transform: scale(1.02);
}

/* Featured badge */

.pricing-badge-top {
  position: absolute;
  margin-top: -50px;
  background: var(--green-dark);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  align-self: center;
}

/* Price */

.pricing-price {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 10px 0;
  color: var(--text-dark);
}

.pricing-users {
  font-size: 0.9rem;
  color: #4d5c55;
  margin-bottom: 20px;
}

/* List */

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.pricing-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.pricing-card li i {
  color: var(--green-dark);
}

/* Contact */

.pricing-contact {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
}

.pricing-contact a {
  color: var(--green-dark);
  font-weight: 600;
}

/* Boutons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 12px 24px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;

  width: 100%;
}
.btn-outline {
  border: 2px solid var(--green-dark);
  color: var(--green-dark);
  background: white;
}

.btn-outline:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(89,174,52,0.25);
}



/* Responsive */

@media (min-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
