/* Features Page Tabs Stylesheet */
.tabs {
    max-width: 100%;
    margin: 20px 0;
    background: linear-gradient(145deg, rgba(15,10,26,0.95), rgba(5,3,10,0.98));
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.12);
    padding: 20px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

/* Hero Section Styles */
.features-hero {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
}

.features-hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: #f5f3ff;
    margin: 0 0 12px 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.features-hero h1 span {
    color: #b26bff;
}

.features-hero .tagline {
    font-size: 18px;
    color: #a39ac6;
    margin-bottom: 20px;
}

.features-hero .badge {
    display: inline-block;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 12px;
    border: 1px solid rgba(178,107,255,0.4);
    color: #f8e9ff;
    background: radial-gradient(circle at top left, rgba(178,107,255,0.2), transparent 55%);
    margin-top: 10px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.stat-pill {
    background: linear-gradient(145deg, rgba(15,10,26,0.95), rgba(5,3,10,0.98));
    border-radius: 14px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.15);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-pill:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.5);
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
    filter: drop-shadow(0 0 8px rgba(178,107,255,0.5));
    transition: transform 0.2s ease;
}

.stat-pill:hover .stat-icon {
    transform: scale(1.1);
}

.stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #a39ac6;
    margin-bottom: 8px;
    font-weight: 600;
}

.stat-value {
    font-weight: 700;
    font-size: 32px;
    color: #b26bff;
    margin: 0;
    text-shadow: 0 0 10px rgba(178,107,255,0.3);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.feature-card {
    background: linear-gradient(145deg, rgba(15,10,26,0.95), rgba(5,3,10,0.98));
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(178,107,255,0.2);
    border-color: rgba(178,107,255,0.3);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #f5f3ff;
    margin: 0 0 10px 0;
}

.feature-text {
    font-size: 14px;
    color: #a39ac6;
    line-height: 1.7;
    margin: 0;
}

.feature-text strong {
    color: #d7c7ff;
    font-weight: 600;
}

.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.tab-link {
    border: none;
    background: transparent;
    color: #a39ac6;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.tab-link:hover {
    background: rgba(178,107,255,0.1);
    color: #d7c7ff;
}

.tab-link.active {
    background: rgba(178,107,255,0.2);
    color: #d7c7ff;
}

.tab-panel {
    display: none;
    font-size: 14px;
    color: #a39ac6;
    line-height: 1.7;
    animation: fadeIn 0.3s ease;
}

.tab-panel.active {
    display: block;
}

.tab-panel h3 {
    font-size: 20px;
    font-weight: 700;
    color: #f5f3ff;
    margin: 0 0 16px 0;
}

.tab-panel p {
    margin: 0 0 12px 0;
    line-height: 1.8;
}

.tab-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tab-panel ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #a39ac6;
}

.tab-panel ul li:last-child {
    border-bottom: none;
}

.tab-panel ul li strong {
    color: #d7c7ff;
    font-weight: 600;
}

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

/* Responsive */
@media (max-width: 768px) {
    .tabs {
        padding: 16px;
    }
    
    .tabs-nav {
        flex-direction: column;
        gap: 6px;
    }
    
    .tab-link {
        width: 100%;
        text-align: center;
    }
}

