
        .pricing-feature-row {
            display: flex;       /* aligne horizontalement image + texte */
            align-items: center; /* centre verticalement */
            gap: 5px;            /* espace entre l'image et le texte */
            margin-bottom: 8px;  /* espace entre les lignes */
            font-weight: bold;   /* texte en gras */
        }

        .pricing-row {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            gap: 40px;
            flex-wrap: wrap;
        }
        .price {
        font-size: 2.5rem;  /* prix plus grand */
        font-weight: 700;   /* gras */
        }
        .pricing-card {
            border: 1px solid #ccc;
            background-color: white;
            width: 342px;
            height: 460px;
            border-radius: 20px;
            transition: all 0.8s cubic-bezier(.77,0,.18,1);
        }
        .pricing-card h3 {
            font-size: 1rem;
            margin: 16px 0;
            color: #111;
            font-weight: 200;
        }
        .pricing-card ul {
            list-style: none;
            padding: 0;
            margin: 1px 0;
            text-align: left;
            color: #555;
            font-weight: 200;
        }
        .pricing-card::before {
        content: '';
        position: absolute;
        top: -2px; left: -2px; right: -2px; bottom: -2px;
        border-radius: 22px; /* border radius + 2px pour éviter le masque */
        padding: 2px; /* largeur de la bordure */
        background: linear-gradient(90deg, #070580, #387ff9, #7faed0, #0846e2);
        background-size: 400% 400%;
        -webkit-mask: 
            linear-gradient(#fff 0 0) content-box, 
            linear-gradient(#fff 0 0);
        -webkit-mask-composite: destination-out;
        mask-composite: exclude;
        z-index: -1;
        animation: gradientBorder 6s linear infinite;
        }

        @keyframes gradientBorder {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
        }
        
        .tabs-menu {
            display: inline-flex;
            background: #f0f0f0;
            border-radius: 9999px;
            padding: 4px;
            margin: 0 auto 2em auto;
        }

.tab-link {
  text-decoration: none;
  color: #555;
  padding: 8px 20px;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.tab-link.active {
  background: white;
  color: #111;
  font-weight: 600;
}
        @media (max-width: 900px) {
            .pricing-container {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }
            .pricing-container > div:last-child {
                flex-direction: column;
                gap: 20px;
                align-items: center;
            }
        }
        @media (max-width: 600px) {
            .pricing-card {
                width: 90vw !important;
            }
        }

.nav-currency {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 20px;  /* espace par rapport aux autres items */
    font-weight: 300;
    font-size: 0.8rem;
}
.nav-currency span {
    color: black; /* ou la couleur de ta navbar */
}

/* Switch modern iOS-style */
.switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}
.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0;
    right: 0; bottom: 0;
    background-color: #870f0f;
    transition: .4s;
    border-radius: 28px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 22px;
    transition: .4s;
}
input:checked + .slider {
    background-color: #0a3893;
}
input:checked + .slider:before {
    transform: translateX(24px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(90deg, #a259ff, #7fdfff);
    color: white;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    letter-spacing: 0.4px;
    animation: badgeFloat 3s ease-in-out infinite;
}

.promo-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: black;
    color: white;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    letter-spacing: 0.4px;
    animation: badgeFloat 3s ease-in-out infinite;
}

/* légère animation respirante */
@keyframes badgeFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
    100% { transform: translateY(0); }
}