.glass-effect {
    background: rgba(20, 83, 45, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(167, 243, 208, 0.1);
}

.plan-card {
    background: rgba(5, 46, 22, 0.6);
    border: 1px solid rgba(167, 243, 208, 0.1);
    transition: all 0.3s;
}

.plan-card:hover {
    border-color: rgba(167, 243, 208, 0.3);
    transform: translateY(-4px);
}

.plan-recommande {
    border-color: rgba(167, 243, 208, 0.4) !important;
    background: rgba(5, 46, 22, 0.85) !important;
}

.badge-recommande {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #a7f3d0;
    color: #052e16;
    padding: 3px 16px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.badge-plan {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
}

.badge-free    { background: rgba(167,243,208,0.1); color:#a7f3d0; border:1px solid rgba(167,243,208,0.3); }
.badge-pro     { background: rgba(96,165,250,0.1);  color:#93c5fd; border:1px solid rgba(96,165,250,0.3);  }
.badge-premium { background: rgba(251,191,36,0.1);  color:#fbbf24; border:1px solid rgba(251,191,36,0.3);  }

.btn-plan-free {
    background: transparent;
    border: 1px solid rgba(167, 243, 208, 0.4);
    color: #a7f3d0;
}
.btn-plan-free:hover { background: rgba(167, 243, 208, 0.1); }

.btn-plan-pro {
    background: rgba(167, 243, 208, 0.12);
    border: 1px solid rgba(167, 243, 208, 0.3);
    color: #a7f3d0;
}
.btn-plan-pro:hover { background: rgba(167, 243, 208, 0.25); }

.btn-plan-recommande {
    background: #a7f3d0;
    color: #052e16;
    border: none;
}
.btn-plan-recommande:hover { background: #fff; }

.info-banner {
    background: rgba(96, 165, 250, 0.06);
    border: 1px solid rgba(96, 165, 250, 0.15);
}

.faq-section {
    background: rgba(5, 46, 22, 0.5);
    border: 1px solid rgba(167, 243, 208, 0.1);
}

.modal-bg {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(4px);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-bg.active { display: flex; }

.modal-content {
    background: #0f2318;
    border: 1px solid rgba(167, 243, 208, 0.2);
}

.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #052e16;
    border: 1px solid rgba(167, 243, 208, 0.3);
    color: #a7f3d0;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    z-index: 200;
    opacity: 0;
    transition: all 0.3s;
}

.toast.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.nav-glass {
    background: rgba(20, 83, 45, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(167, 243, 208, 0.1);
}
.avatar-circle {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(167, 243, 208, 0.15);
    border: 2px solid rgba(167, 243, 208, 0.4);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; flex-shrink: 0; transition: border-color 0.3s;
}
.avatar-circle:hover { border-color: #a7f3d0; }
.avatar-initials { font-size: 12px; font-weight: 700; color: #a7f3d0; line-height: 1; }
