:root {
    --sd-blue-light: #1e88e5; /* Le bleu clair de ton logo/header */
    --sd-blue-dark: #0d47a1;  /* Le bleu sombre du fond */
    --sd-green: #2ecc71;      /* Le vert "Request Demo" du screenshot 3 */
    --sd-text: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.08);
}

.pricing-page {
    background: linear-gradient(180deg, var(--sd-blue-light) 0%, var(--sd-blue-dark) 40%);
    color: var(--sd-text);
    padding: 80px 20px;
    font-family: 'Arial', sans-serif;
}

.pricing-header { text-align: center; margin-bottom: 60px; }
.pricing-header h1 { font-size: 3rem; margin-bottom: 10px; }

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 100px;
}

/* Style des Cartes */
.plan-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 40px 30px;
    /*width: 32%;*/
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.plan-card.featured {
    border: 2px solid var(--sd-green);
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.12);
    position: relative;
}

.popular-tag {
    position: absolute;
    top: -15px;
    background: var(--sd-green);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
    left: 50%;
    transform: translateX(-50%);
}

.plan-name { font-size: 1.2rem; font-weight: bold; opacity: 0.9; }

/* Section du prix */
.price-section {
    margin: 10px 0 25px 0; /* Espace autour du bloc prix */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plan-price {
    font-size: 2.5rem; /* Taille massive pour le chiffre */
    /*font-weight: 800;  /* Graisse ultra-épaisse */
    color: #ffffff;
    line-height: 1;    /* Réduit l'espace vertical inutile */
    letter-spacing: -2px; /* Rapproche les chiffres pour un look moderne */
    margin-bottom: 5px;
}

/* Style pour le "/mo" ou "/month" */
.plan-price span, .plan-price .period {
    font-size: 2.2rem;       /* Plus petit pour ne pas distraire du chiffre */
    color: #ffffff;/*rgba(255, 255, 255, 0.5); /* Plus discret */

    font-weight: 400;
    letter-spacing: 0;
    margin-left: 7px;       /* Colle légèrement au chiffre */
}

.plan-description { font-size: 0.9rem; margin-bottom: 30px; height: 40px; }

.plan-features {
    text-align: left;
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.plan-features li::before {
    content: "✔";
    color: var(--sd-green);
    margin-right: 10px;
}

/* Boutons style SDepend */
.btn-trial {
    background: transparent;
    border: 2px solid var(--sd-green);
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-trial.highlight {
    background: var(--sd-green);
    color: #fff;
}

.btn-trial:hover {
    background: var(--sd-green);
    color: #fff;
    box-shadow: 0 0 15px rgba(46, 204, 113, 0.4);
}

/* Tableau Comparatif */
.comparison-section { max-width: 1000px; margin: 0 auto; }
.table-scroll { overflow-x: auto; background: rgba(0,0,0,0.2); border-radius: 10px; }

table { width: 100%; border-collapse: collapse; min-width: 600px; }
th, td { padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); text-align: center; }
th { text-transform: uppercase; font-size: 0.8rem; }
td:first-child { text-align: left; font-weight: bold; }

@media (max-width: 768px) {
    .pricing-container { flex-direction: column; align-items: center; }
    .plan-card.featured { transform: scale(1); }
}


:root {
    --sd-green: #2ecc71;
    --sd-blue-dark: #051025;
    --card-bg: rgba(255, 255, 255, 0.08);
}

/* Badge du Planning plus élégant */
.plan-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 20px;
    border-radius: 50px;
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Dropdown style Aikido */
.user-dropdown {
    font-size: 1.1rem;      /* Augmenté pour équilibrer avec le gros prix */
    padding: 8px 15px;
    font-weight: 700;
    border-radius: 8px;
    background: #1a2a4a;
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

/* Tooltip System */
.user-selector-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.tooltip-icon {
    cursor: pointer;
    position: relative;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.tooltip-text {
    visibility: hidden;
    width: 260px; /* Un peu plus large pour le texte long */
    background-color: #1a1f2e; /* Bleu très foncé presque noir */
    color: #ffffff;
    text-align: left; /* Alignement à gauche pour la lecture */
    border-radius: 8px;
    padding: 12px 16px;
    position: absolute;
    z-index: 100;
    bottom: 140%; /* Un peu plus haut que l'icône */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Animation fluide */
    font-size: 13px;
    line-height: 1.5;
    font-weight: normal;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3); /* Ombre portée profonde */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Bordure fine subtile */
    pointer-events: none; /* Évite de bloquer le clic */
}
/* Positionnement du wrapper pour que le tooltip soit relatif à l'icône */
.tooltip-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    cursor: pointer;
}

/* Affichage au survol du wrapper */
.tooltip-wrapper:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}
/* Petit triangle sous le tooltip */
.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%; /* Sort en bas du tooltip */
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: #1a1f2e transparent transparent transparent;
}

/* Séparateur & Total Fee */
.plan-separator {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    margin: 20px 0;
}

.total-fee {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    /*margin-bottom: 20px;*/
    margin-top: 7px;
    margin-right: 10%
}



/* Optimisation de la Listbox juste en dessous */
.user-selector-container {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tooltip-svg {
    width: 18px;  /* Taille équilibrée */
    height: 18px;
    color: rgba(255, 255, 255, 0.4); /* Couleur discrète par défaut */
    transition: color 0.3s ease;
}

.tooltip-wrapper:hover .tooltip-svg {
    color: var(--sd-green); /* Change en vert au survol comme sur SDepend */
}
/* Cache le symbole € et le /mo quand c'est un prix personnalisé */
.plan-price.is-custom {
    font-size: 3rem; /* On réduit un peu la taille pour que "Custom" tienne bien */
    letter-spacing: 0;
}

.plan-price.is-custom::before {
    content: ""; /* Supprime le symbole monétaire si tu l'avais mis en CSS */
}

.plan-price.is-custom span:not(#price-basic):not(#price-pro):not(#price-ent) {
    display: none; /* Cache le "/mo" */
}


.saas-button-disabled {
    pointer-events: none; /* Bloque le clic */
    cursor: not-allowed;  /* Affiche le curseur "interdit" */
    /*filter: grayscale(1); /* Rend le bouton gris */
    opacity: 0.6;         /* Le rend un peu transparent */
}