.pricing-cards {
  display: flex;
  align-items: stretch;
  gap: 25px;
  margin-bottom: 30px;
}
.pricing-cards .pricing-card {
  flex: 1;
  position: relative;
  background: #fff;
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 8px 30px rgba(1, 70, 114, 0.08);
  border: 1px solid #e5edf0;
  display: flex;
  flex-direction: column;
}
.pricing-cards .pricing-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  font-size: 26px;
  color: #fff;
  margin-bottom: 15px;
}
.pricing-cards .pricing-card .title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #014672;
  margin-bottom: 20px;
  line-height: 1.3;
}
.pricing-cards .pricing-card .price {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.1;
}
.pricing-cards .pricing-card .price-period {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 15px;
  min-height: 1.2em;
}
.pricing-cards .pricing-card .desc {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 20px;
}
.pricing-cards .pricing-card .features {
  flex: 1;
  margin-bottom: 25px;
}
.pricing-cards .pricing-card .features .feature {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: #333;
}
.pricing-cards .pricing-card .features .feature .material-symbols-outlined {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 13px;
  color: #fff;
}
.pricing-cards .pricing-card .cta {
  text-align: center;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
}
.pricing-cards .pricing-card.free {
  background-color: #f4faf6;
}
.pricing-cards .pricing-card.free .icon {
  background-color: #1a9c4c;
}
.pricing-cards .pricing-card.free .price {
  color: #1a9c4c;
}
.pricing-cards .pricing-card.free .features .material-symbols-outlined {
  background-color: #1a9c4c;
}
.pricing-cards .pricing-card.free .cta {
  background-color: #1a9c4c;
}
.pricing-cards .pricing-card.recommended {
  border: 2px solid #014672;
}
.pricing-cards .pricing-card.recommended .badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #014672;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-cards .pricing-card.recommended .icon {
  background-color: #014672;
}
.pricing-cards .pricing-card.recommended .price {
  color: #014672;
}
.pricing-cards .pricing-card.recommended .features .material-symbols-outlined {
  background-color: #014672;
}
.pricing-cards .pricing-card.recommended .cta {
  background-color: #014672;
}
.pricing-cards .pricing-card.premium {
  background-color: #f8f5fb;
}
.pricing-cards .pricing-card.premium .icon {
  background-color: #6b3fa0;
}
.pricing-cards .pricing-card.premium .price {
  color: #6b3fa0;
}
.pricing-cards .pricing-card.premium .features .material-symbols-outlined {
  background-color: #6b3fa0;
}
.pricing-cards .pricing-card.premium .cta {
  background-color: #6b3fa0;
}
@media screen and (max-width: 900px) {
  .pricing-cards {
    flex-direction: column;
  }
  .pricing-cards .pricing-card.recommended {
    order: -1;
  }
}

.trial-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  background: #fff;
  border: 1px solid #e5edf0;
  border-radius: 15px;
  padding: 25px 30px;
}
.trial-banner .trial-left {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex: 1;
}
.trial-banner .trial-left .material-symbols-outlined {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #014672;
  color: #fff;
  font-size: 26px;
}
.trial-banner .trial-left .title {
  font-weight: 700;
  color: #014672;
  margin-bottom: 6px;
  line-height: 1.3;
}
.trial-banner .trial-left .desc {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.5;
}
.trial-banner .trial-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.trial-banner .trial-right .trial-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #333;
  white-space: nowrap;
}
.trial-banner .trial-right .trial-feature .material-symbols-outlined {
  color: #014672;
  font-size: 20px;
}
@media screen and (max-width: 900px) {
  .trial-banner {
    flex-direction: column;
    align-items: stretch;
  }
  .trial-banner .trial-right {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px 25px;
  }
}
@media screen and (max-width: 480px) {
  .trial-banner .trial-feature {
    white-space: normal;
  }
}

/*# sourceMappingURL=tarifs.css.map */
