.tfc-ss-premium-features {
    padding: 64px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    color: #2d2d2d;
    position: relative;
    overflow: hidden;
}

.tfc-ss-premium-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}

.tfc-ss-premium-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.tfc-ss-features-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: .5rem;
    color: #1a1a1a;
}

.tfc-ss-features-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666666;
    position: relative;
    padding-bottom: 1rem;
}

.tfc-ss-features-subtitle::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, #ffb800 0%, rgba(255, 184, 0, 0) 100%);
}

.tfc-ss-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.tfc-ss-premium-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.tfc-ss-premium-card {
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tfc-ss-premium-card-inner {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.tfc-ss-premium-card:hover .tfc-ss-premium-card-inner {
    background: #ffffff;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 184, 0, 0.15);
    border-color: rgba(255, 184, 0, 0.3);
}

.tfc-ss-premium-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, rgba(255, 215, 0, 0.15));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tfc-ss-premium-card:hover .tfc-ss-premium-card-inner::before {
    opacity: 1;
}

.tfc-ss-premium-icon-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.tfc-ss-premium-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.tfc-ss-premium-svg {
    width: 40px;
    height: 40px;
}

.tfc-ss-premium-number {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 215, 0, 0.15);
    line-height: 1;
}

.tfc-ss-premium-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2d2d2d;
}

.tfc-ss-premium-feature-highlight {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.tfc-ss-premium-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.tfc-ss-premium-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #666666;
    line-height: 1.5;
}

.tfc-ss-premium-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffd700;
}

.tfc-ss-premium-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.tfc-ss-premium-svg path,
.tfc-ss-premium-svg line,
.tfc-ss-premium-svg circle {
    stroke: #ffd700;
}


/* Responsiveness */
@media (max-width: 1200px) {
    .tfc-ss-premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tfc-ss-premium-container {
        padding: 0 16px;
    }

    .tfc-ss-features-title {
        font-size: 2rem;
    }

    .tfc-ss-features-subtitle {
        font-size: 1.1rem;
    }

    .tfc-ss-premium-grid {
        grid-template-columns: 1fr;
    }

    .tfc-ss-premium-card-inner {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .tfc-ss-premium-features {
        padding: 48px 0;
    }

    .tfc-ss-features-title {
        font-size: 1.75rem;
    }

    .tfc-ss-features-subtitle {
        font-size: 1rem;
    }

    .tfc-ss-premium-content h3 {
        font-size: 1.5rem;
    }
}



/* custom Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}