:root {
    --color-green-light: #0a7734;
    --color-green-dark: #085c28;
    
    /* Variantes dorées */
    --color-gold-light: #F5D021;
    --color-gold-dark: #DAA520;

    --color-red: #FF0000;
    --color-red-rgb: 255, 0, 0;
    --color-gold: #FFD700;
    --color-gold-rgb: 255, 215, 0;
    --color-green: #0a7734;
    --color-green-rgb: 10, 119, 52;
    --color-white: #FFFFFF;
    --color-black: #0A0A0A;
    --color-gray: #6B7280;
    
    --gradient-red: linear-gradient(135deg, #FF0000, #CC0000);
    --gradient-gold: linear-gradient(135deg, #FFD700, #DAA520);
    --gradient-green: linear-gradient(135deg, #0a7734, #085c28);
    --gradient-dark: linear-gradient(135deg, #1a1a2e, #16213e);
    
    --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow-red: 0 0 30px rgba(255, 0, 0, 0.3);
    --shadow-glow-gold: 0 0 30px rgba(255, 215, 0, 0.3);
}

/* ============================================
   CALL TO ACTION - COMPOSANT GLASSMORPHIQUE
   ============================================ */

.cta-glassmorphic {
    position: relative;
    margin: 3rem 0;
    padding: 0 1rem;
    overflow: hidden;
}

.cta-glassmorphic__container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    /* background: rgba(255, 253, 238, 0.45); */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 48px;
    padding: 2rem 1.3rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 25px 50px -12px rgba(255, 0, 0, 0.15);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-glassmorphic__container:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -15px rgba(255, 0, 0, 0.2);
}

/* Effet de brillance */
.cta-glassmorphic__shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(255, 255, 0, 0.08), transparent 60%);
    pointer-events: none;
    animation: shineRotate 20s linear infinite;
}

@keyframes shineRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Badge */
.cta-glassmorphic__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 0, 0, 0.15);
    backdrop-filter: blur(4px);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 0, 0, 0.25);
}

.cta-glassmorphic__badge i {
    font-size: 0.8rem;
    color: var(--color-red);
}

.cta-glassmorphic__badge span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-red);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Titre */
.cta-glassmorphic__title {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 800;
    color: #1a2c3e;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-title-highlight {
    background: linear-gradient(135deg, var(--color-green-light), var(--color-green-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

/* Description */
.cta-glassmorphic__description {
    font-size: 1rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

/* Avantages */
.cta-glassmorphic__features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(10, 119, 52, 0.2);
}

.feature-icon {
    width: 28px;
    height: 28px;
    background: rgba(10, 119, 52, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 0.8rem;
    color: var(--color-gold);
}

.feature-item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: #1a2c3e;
}

/* Boutons d'action */
.cta-glassmorphic__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.cta-btn-primary {
    background: linear-gradient(135deg, var(--color-green-light), var(--color-green-dark));
    color: white;
    box-shadow: 0 5px 15px rgba(10, 119, 52, 0.3);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(10, 119, 52, 0.4);
    color: white;
}

.cta-btn-primary i:last-child {
    transition: transform 0.3s ease;
}

.cta-btn-primary:hover i:last-child {
    transform: translateX(4px);
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    color: var(--color-green-light);
    border: 1px solid rgba(10, 119, 52, 0.2);
}

.cta-btn-secondary:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--color-green-light);
}

/* Note */
.cta-glassmorphic__note {
    font-size: 0.75rem;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.cta-glassmorphic__note i {
    color: var(--color-green-light);
}

/* ============================================ */
/* VARIANTE PLUS COMPACTE POUR SIDEBAR/FOOTER */
/* ============================================ */

.cta-glassmorphic--compact {
    margin: 2rem 0;
}

.cta-glassmorphic--compact .cta-glassmorphic__container {
    padding: 2rem 1.5rem;
}

.cta-glassmorphic--compact .cta-glassmorphic__features {
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cta-glassmorphic--compact .feature-item {
    padding: 0.4rem 1rem;
}

.cta-glassmorphic--compact .cta-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
}

/* ============================================ */
/* RESPONSIVE */
/* ============================================ */

@media (max-width: 768px) {
    .cta-glassmorphic__container {
        padding: 2rem 1.5rem;
    }

    .cta-glassmorphic__features {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .feature-item {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .cta-glassmorphic__actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta-glassmorphic__title {
        font-size: 1.3rem;
    }

    .cta-glassmorphic__description {
        font-size: 0.9rem;
    }

    .cta-glassmorphic__badge span {
        font-size: 0.7rem;
    }
}