.tabs-container {
    margin-top: clamp(24px, 5vw, 40px);
    animation: fadeIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.4s both;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(12px, 3vw, 20px);
    margin-bottom: clamp(24px, 5vw, 40px);
    border-bottom: 1px solid rgba(163, 220, 217, 0.2);
    padding-bottom: 20px;
}

.tab-btn {
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 8px 8px 0 0;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-cyan);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tab-btn:hover {
    color: var(--color-white);
    background: rgba(163, 220, 217, 0.05);
}

.tab-btn.active {
    color: var(--color-cyan);
    background: rgba(163, 220, 217, 0.1);
    filter: drop-shadow(0 0 8px rgba(163, 220, 217, 0.4));
}

.tab-btn.active::after {
    transform: scaleX(1);
    background: linear-gradient(90deg, var(--color-blue), var(--color-cyan));
}

.tab-content {
    display: none;
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(10, 10, 10, 0.5);
    padding: clamp(24px, 4vw, 40px);
    border-radius: 16px;
    border: 1px solid rgba(163, 220, 217, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), inset 0 0 15px rgba(0, 0, 0, 0.3);
}

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

.tab-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--color-white), var(--color-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tab-description {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.tab-description p { margin-bottom: 1.2em; }
.tab-description p:last-child { margin-bottom: 0; }
.tab-description ul { list-style: none; padding-left: 0; margin-bottom: 1.2em; }
.tab-description li { position: relative; padding: 10px 10px 10px 35px; margin-bottom: 10px; border-radius: 8px; transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.tab-description li:hover { background: rgba(255, 255, 255, 0.05); transform: translateX(5px); }
.tab-description li::before { content: '→'; position: absolute; left: 10px; top: 50%; transform: translateY(-50%); color: var(--color-cyan); font-weight: 700; }
.tab-description strong { color: var(--color-white); font-weight: 600; }