/* ============================================
   COMPANY PREMIUM STYLES - Fiduflex
   Design inspire: FreshBooks, QuickBooks, Stripe
   IMPORTANT: Utilise des valeurs directes (pas de var())
   ============================================ */

/* ============================================
   PAGE HEADER PREMIUM
   ============================================ */
.page-header-premium {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.page-header-premium__left {
    flex: 1;
}

.page-header-premium__right {
    flex-shrink: 0;
}

/* Breadcrumb */
.breadcrumb-premium {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.breadcrumb-premium__item {
    font-size: 0.8125rem;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-premium__item:hover {
    color: #7c3aed;
}

.breadcrumb-premium__item--current {
    color: #111827;
    font-weight: 500;
}

.breadcrumb-premium__separator {
    width: 1rem;
    height: 1rem;
    color: #d1d5db;
}

/* Title */
.page-title-premium {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.page-subtitle-premium {
    font-size: 0.9375rem;
    color: #6b7280;
    margin: 0.375rem 0 0;
}

/* CTA Button */
.btn-premium-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
    text-decoration: none;
}

.btn-premium-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.4);
    color: #ffffff;
}

.btn-premium-primary svg {
    width: 1.125rem;
    height: 1.125rem;
}

/* ============================================
   KPI CARDS PREMIUM
   ============================================ */
.kpi-grid-premium {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .kpi-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .kpi-grid-premium {
        grid-template-columns: repeat(4, 1fr);
    }
}

.kpi-card-premium {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.kpi-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.kpi-card-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #ddd6fe;
}

.kpi-card-premium:hover::before {
    transform: scaleX(1);
}

/* KPI Icon */
.kpi-icon-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.kpi-icon-premium svg {
    width: 1.5rem;
    height: 1.5rem;
}

.kpi-icon-premium--purple {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    color: #7c3aed;
}

.kpi-icon-premium--green {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #059669;
}

.kpi-icon-premium--yellow {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #d97706;
}

.kpi-icon-premium--blue {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #2563eb;
}

.kpi-icon-premium--red {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #dc2626;
}

/* KPI Content */
.kpi-content-premium {
    flex: 1;
    min-width: 0;
}

.kpi-label-premium {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.kpi-value-row-premium {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.kpi-value-premium {
    font-size: 1.625rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}

/* Trend Badge */
.kpi-trend-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
}

.kpi-trend-premium--up {
    background: #d1fae5;
    color: #059669;
}

.kpi-trend-premium--down {
    background: #fee2e2;
    color: #dc2626;
}

.kpi-trend-premium--neutral {
    background: #f3f4f6;
    color: #6b7280;
}

/* KPI Badge (positioned) */
.kpi-badge-premium {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 9999px;
}

.kpi-badge-premium--success {
    background: #d1fae5;
    color: #059669;
}

.kpi-badge-premium--warning {
    background: #fef3c7;
    color: #d97706;
}

.kpi-badge-premium--info {
    background: #dbeafe;
    color: #2563eb;
}

.kpi-pulse-premium {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: kpi-pulse-anim 2s infinite;
}

@keyframes kpi-pulse-anim {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* KPI Link Arrow */
.kpi-link-premium {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #9ca3af;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.kpi-link-premium svg {
    width: 16px;
    height: 16px;
}

.kpi-card-premium:hover .kpi-link-premium {
    color: #7c3aed;
    background: #f3f4f6;
}

/* ============================================
   TOOLBAR / SEARCH BAR PREMIUM
   ============================================ */
.toolbar-premium {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .toolbar-premium {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* Search Box */
.search-box-premium {
    position: relative;
    flex: 1;
    max-width: 28rem;
}

.search-box-premium__icon {
    position: absolute;
    left: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.125rem;
    height: 1.125rem;
    color: #9ca3af;
    pointer-events: none;
}

.search-box-premium__input {
    width: 100%;
    padding: 0.625rem 1rem 0.625rem 2.625rem;
    background: #f3f4f6;
    border: 1px solid transparent;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: #111827;
    transition: all 0.2s ease;
}

.search-box-premium__input:focus {
    background: #ffffff;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
    outline: none;
}

.search-box-premium__input::placeholder {
    color: #9ca3af;
}

/* Toolbar Actions */
.toolbar-actions-premium {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Filter Group */
.filter-group-premium {
    display: flex;
    background: #f3f4f6;
    border-radius: 0.5rem;
    padding: 0.25rem;
}

.filter-btn-premium {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #6b7280;
    background: transparent;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.filter-btn-premium:hover {
    color: #111827;
}

.filter-btn-premium.active {
    background: #ffffff;
    color: #7c3aed;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* View Toggle */
.view-toggle-premium {
    display: flex;
    background: #f3f4f6;
    border-radius: 0.5rem;
    padding: 0.25rem;
}

.view-toggle-premium__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    background: transparent;
    border: none;
    border-radius: 0.5rem;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.2s ease;
}

.view-toggle-premium__btn:hover {
    color: #6b7280;
}

.view-toggle-premium__btn.active {
    background: #ffffff;
    color: #7c3aed;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.view-toggle-premium__btn svg {
    width: 1.125rem;
    height: 1.125rem;
}

/* ============================================
   COMPANY CARDS PREMIUM
   ============================================ */
.companies-grid-premium {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .companies-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1280px) {
    .companies-grid-premium {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Company Card */
.company-card-premium {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.company-card-premium:hover {
    border-color: #c4b5fd;
    box-shadow: 0 12px 28px rgba(124, 58, 237, 0.12);
    transform: translateY(-6px);
}

/* Card Header */
.company-card-premium__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    position: relative;
}

/* Pattern overlay */
.company-card-premium__header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Status Badge */
.company-card-premium__status {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    border-radius: 9999px;
    position: relative;
    z-index: 1;
}

.company-card-premium__status--active {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    backdrop-filter: blur(4px);
}

.company-card-premium__status--inactive {
    background: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.company-card-premium__status-dot {
    width: 0.375rem;
    height: 0.375rem;
    background: currentColor;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Menu Button */
.company-card-premium__menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 0.5rem;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.2s ease;
    position: relative;
    z-index: 1;
}

.company-card-premium__menu:hover {
    background: rgba(255, 255, 255, 0.25);
}

.company-card-premium__menu svg {
    width: 1.125rem;
    height: 1.125rem;
}

/* Card Body */
.company-card-premium__body {
    padding: 1.5rem 1.25rem 1.25rem;
    text-align: center;
    flex: 1;
}

/* Avatar */
.company-card-premium__avatar {
    position: relative;
    width: 4.5rem;
    height: 4.5rem;
    margin: -3rem auto 1rem;
    background: #ffffff;
    border: 4px solid #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-card-premium__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-card-premium__initials {
    font-size: 1.5rem;
    font-weight: 700;
    color: #7c3aed;
    background: #ede9fe;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Company Name */
.company-card-premium__name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.75rem;
    line-height: 1.3;
}

/* Info Items */
.company-card-premium__info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.company-card-premium__info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: #6b7280;
}

.company-card-premium__info-item svg {
    width: 1rem;
    height: 1rem;
    color: #9ca3af;
    flex-shrink: 0;
}

/* Card Footer */
.company-card-premium__footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #f3f4f6;
    background: #f9fafb;
}

.company-card-premium__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0.75rem;
    position: relative;
}

.company-card-premium__stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 2rem;
    width: 1px;
    background: #e5e7eb;
}

.company-card-premium__stat-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
}

.company-card-premium__stat-label {
    font-size: 0.6875rem;
    font-weight: 500;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.125rem;
}

/* Card Actions */
.company-card-premium__actions {
    padding: 1rem 1.25rem;
    border-top: 1px solid #f3f4f6;
}

.company-card-premium__action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.625rem 1rem;
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.25);
}

.company-card-premium__action-btn:hover {
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.35);
    transform: translateY(-1px);
    color: #ffffff;
}

/* ============================================
   DROPDOWN MENU PREMIUM
   ============================================ */
.dropdown-menu-premium {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 0.5rem;
    min-width: 12rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.5rem);
    transition: all 0.2s ease;
}

.dropdown-menu-premium:not(.hidden) {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-premium__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    color: #374151;
    text-decoration: none;
    transition: all 0.15s ease;
}

.dropdown-menu-premium__item:first-child {
    border-radius: 0.5rem 0.5rem 0 0;
}

.dropdown-menu-premium__item:last-child {
    border-radius: 0 0 12px 12px;
}

.dropdown-menu-premium__item:hover {
    background: #f9fafb;
    color: #7c3aed;
}

.dropdown-menu-premium__item svg {
    width: 1rem;
    height: 1rem;
    color: #9ca3af;
}

.dropdown-menu-premium__item:hover svg {
    color: #7c3aed;
}

.dropdown-menu-premium__divider {
    height: 1px;
    background: #f3f4f6;
    margin: 0.25rem 0;
}

/* ============================================
   EMPTY STATE PREMIUM
   ============================================ */
.empty-state-premium {
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border: 2px dashed #d1d5db;
    border-radius: 0.5rem;
    position: relative;
    overflow: hidden;
}

.empty-state-premium::before,
.empty-state-premium::after {
    content: '';
    position: absolute;
    width: 12rem;
    height: 12rem;
    background: #ede9fe;
    border-radius: 50%;
    filter: blur(3rem);
    opacity: 0.2;
}

.empty-state-premium::before {
    top: -6rem;
    right: -6rem;
}

.empty-state-premium::after {
    bottom: -6rem;
    left: -6rem;
}

.empty-state-premium__content {
    position: relative;
    z-index: 1;
}

.empty-state-premium__icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
}

.empty-state-premium__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.5rem;
}

.empty-state-premium__description {
    font-size: 0.9375rem;
    color: #6b7280;
    margin: 0 0 1.5rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   LOAD MORE BUTTON
   ============================================ */
.load-more-btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    color: #374151;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.load-more-btn-premium:hover {
    border-color: #a78bfa;
    color: #7c3aed;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.load-more-btn-premium svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.company-card-premium {
    animation: fadeInUp 0.4s ease-out both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation */
.companies-grid-premium > *:nth-child(1) { animation-delay: 0ms; }
.companies-grid-premium > *:nth-child(2) { animation-delay: 50ms; }
.companies-grid-premium > *:nth-child(3) { animation-delay: 100ms; }
.companies-grid-premium > *:nth-child(4) { animation-delay: 150ms; }
.companies-grid-premium > *:nth-child(5) { animation-delay: 200ms; }
.companies-grid-premium > *:nth-child(6) { animation-delay: 250ms; }
.companies-grid-premium > *:nth-child(7) { animation-delay: 300ms; }
.companies-grid-premium > *:nth-child(8) { animation-delay: 350ms; }

/* KPI animation */
.kpi-card-premium {
    animation: fadeInUp 0.3s ease-out both;
}

.kpi-grid-premium > *:nth-child(1) { animation-delay: 0ms; }
.kpi-grid-premium > *:nth-child(2) { animation-delay: 75ms; }
.kpi-grid-premium > *:nth-child(3) { animation-delay: 150ms; }
.kpi-grid-premium > *:nth-child(4) { animation-delay: 225ms; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 640px) {
    .page-header-premium {
        flex-direction: column;
        gap: 1rem;
    }

    .page-header-premium__right {
        width: 100%;
    }

    .btn-premium-primary {
        width: 100%;
        justify-content: center;
    }

    .kpi-card-premium {
        padding: 1rem;
    }

    .kpi-value-premium {
        font-size: 1.375rem;
    }

    .company-card-premium__name {
        font-size: 1rem;
    }

    .company-card-premium__stat {
        padding: 0.75rem 0.5rem;
    }

    .company-card-premium__stat-value {
        font-size: 1rem;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .kpi-card-premium,
    .company-card-premium,
    .btn-premium-primary,
    .filter-btn-premium,
    .search-box-premium__input,
    .dropdown-menu-premium {
        transition: none;
        animation: none;
    }

    .kpi-card-premium:hover,
    .company-card-premium:hover {
        transform: none;
    }

    .company-card-premium__status-dot {
        animation: none;
    }
}

/* ============================================
   DARK MODE (si necessaire)
   ============================================ */
.dark .kpi-card-premium {
    background: #1f2937;
    border-color: #374151;
}

.dark .kpi-card-premium:hover {
    border-color: #7c3aed;
}

.dark .kpi-value-premium {
    color: #f9fafb;
}

.dark .kpi-label-premium {
    color: #9ca3af;
}

.dark .company-card-premium {
    background: #1f2937;
    border-color: #374151;
}

.dark .company-card-premium:hover {
    border-color: #7c3aed;
}

.dark .company-card-premium__name {
    color: #f9fafb;
}

.dark .company-card-premium__footer {
    background: #111827;
    border-color: #374151;
}

.dark .company-card-premium__stat-value {
    color: #f9fafb;
}

.dark .toolbar-premium {
    background: #1f2937;
    border-color: #374151;
}

.dark .search-box-premium__input {
    background: #374151;
    color: #f9fafb;
}

.dark .filter-group-premium {
    background: #374151;
}

.dark .filter-btn-premium {
    color: #9ca3af;
}

.dark .filter-btn-premium.active {
    background: #1f2937;
    color: #a78bfa;
}
