.home-sss-section {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 72px 0 92px;
    background: #fcf8f9;
    color: #1c1b1c;
}

.home-sss-head {
    text-align: center;
    max-width: 768px;
    margin: 0 auto 56px;
    padding: 0 24px;
}


.home-sss-title {
    font-size: clamp(1.75rem, 4vw, 2.375rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #000;
    margin-bottom: 20px;
}

.home-sss-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #68687a;
    margin: 0;
}

.home-sss-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 56px;
}

.home-sss-category {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #e8e8ef;
    background: #fff;
    box-shadow: 0 4px 24px -6px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.home-sss-category:hover {
    transform: translateY(-4px);
    background: #f7f7fa;
}

.home-sss-category.active {
    background: var(--home-primary-soft);
    border: 2px solid var(--home-primary);
    box-shadow: 0 4px 24px -6px var(--home-primary-shadow);
}

.home-sss-category-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    background: var(--home-primary);
    padding: 4px 8px;
    border-radius: 999px;
    display: none;
}

.home-sss-category.active .home-sss-category-badge {
    display: inline-block;
}

.home-sss-category-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #f7f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c7c5d2;
    margin-bottom: 20px;
    box-shadow: 0 4px 24px -6px rgba(0, 0, 0, 0.05);
    transition: color 0.2s ease;
}

.home-sss-category.active .home-sss-category-icon {
    background: #fff;
    color: var(--home-primary);
}

.home-sss-category:hover .home-sss-category-icon {
    color: var(--home-primary);
}

.home-sss-category-title {
    font-size: 24px;
    font-weight: 750;
    line-height: 1.25;
    color: #000;
    margin-bottom: 6px;
    transition: color 0.2s ease;
}

.home-sss-category:hover .home-sss-category-title,
.home-sss-category.active .home-sss-category-title {
    color: var(--home-primary);
}

.home-sss-category-text {
    font-size: 14px;
    line-height: 1.45;
    font-weight: 500;
    color: #68687a;
    margin: 0;
}

.home-sss-panel {
    background: #f7f7fa;
    border: 1px solid #e8e8ef;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 24px -6px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.home-sss-faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.home-sss-faq-list-title {
    font-size: 24px;
    font-weight: 750;
    line-height: 1.25;
    color: #000;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e8e8ef;
}

.home-sss-faq-item {
    background: #fff;
    border: 1px solid #e8e8ef;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 24px -6px rgba(0, 0, 0, 0.05);
}

.home-sss-faq-question {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 24px;
    font-weight: 750;
    line-height: 1.25;
    color: #000;
    margin: 0 0 12px;
}

.home-sss-faq-question .material-symbols-outlined {
    font-size: 24px;
    color: var(--home-primary);
    flex-shrink: 0;
    line-height: 1;
}

.home-sss-faq-answer {
    font-size: 16px;
    line-height: 1.7;
    color: #68687a;
    margin: 0;
    padding-left: 36px;
}

.home-sss-support {
    display: flex;
    flex-direction: column;
}

.home-sss-support-card {
    position: sticky;
    top: 96px;
    background: #fff;
    border: 1px solid #e8e8ef;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 24px -6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.home-sss-support-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--home-primary-soft);
    color: var(--home-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.home-sss-support-icon .material-symbols-outlined {
    font-size: 32px;
    line-height: 1;
}

.home-sss-support-title {
    font-size: 24px;
    font-weight: 750;
    line-height: 1.25;
    color: #000;
    margin-bottom: 12px;
}

.home-sss-support-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #68687a;
    margin-bottom: 32px;
    flex-grow: 1;
}

.home-sss-support-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.home-sss-support-primary,
.home-sss-support-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.home-sss-support-primary {
    background: var(--home-primary);
    color: #fff !important;
    box-shadow: 0 4px 24px -6px rgba(0, 0, 0, 0.08);
}

.home-sss-support-primary:hover {
    background: var(--home-primary-hover);
    color: #fff !important;
}

.home-sss-support-secondary {
    background: #f7f7fa;
    color: #000 !important;
    border: 1px solid #e8e8ef;
}

.home-sss-support-secondary:hover {
    background: #ebe7e8;
    color: #000 !important;
}

.home-sss-section .material-symbols-outlined.is-filled {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.home-sss-empty {
    font-size: 15px;
    color: #68687a;
    margin: 0;
}

@media (min-width: 768px) {
    .home-sss-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .home-sss-section {
        padding: 92px 0;
    }

    .home-sss-categories {
        grid-template-columns: repeat(4, 1fr);
    }

    .home-sss-panel {
        grid-template-columns: 2fr 1fr;
        gap: 56px;
        padding: 40px;
    }
}

@media (max-width: 767px) {
    .home-sss-section {
        padding: 48px 0 64px;
    }

    .home-sss-category {
        padding: 24px;
    }

    .home-sss-panel {
        padding: 24px;
    }

    .home-sss-faq-question {
        font-size: 20px;
    }

    .home-sss-support-card {
        position: static;
    }
}
