/**
 * Support Page Custom Styles
 */

/* === Page Header === */
.support-header-section {
    padding: 80px 0 60px;
    text-align: center;
}

.support-page-title {
    font-size: 48px;
    font-weight: 600;
    color: var(--bringer-s-heading, #F5F7FA);
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.support-page-subtitle {
    font-size: 18px;
    color: var(--bringer-s-text, #C5C7CE);
    margin: 0;
    line-height: 1.6;
}

/* === Support Contact Cards === */
.support-contact-section {
    padding: 0 0 80px;
}

.support-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.support-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.support-card-icon {
    width: 80px;
    height: 80px;
    background: var(--bringer-s-accent, #6366F1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
}

.support-card-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    border-radius: inherit;
    opacity: 0.2;
    filter: blur(16px);
}

.support-card-icon i {
    width: 40px;
    height: 40px;
    background: var(--bringer-s-heading, #F5F7FA);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.support-card-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--bringer-s-heading, #F5F7FA);
    margin: 0 0 12px 0;
}

.support-card-text {
    font-size: 15px;
    color: var(--bringer-s-text, #C5C7CE);
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.support-card-link {
    font-size: 16px;
    color: var(--bringer-s-accent, #6366F1);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 8px;
}

.support-card-link:hover {
    color: var(--bringer-s-heading, #F5F7FA);
}

/* === Section Titles === */
.section-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--bringer-s-heading, #F5F7FA);
    margin: 0 0 16px 0;
}

.section-subtitle {
    font-size: 16px;
    color: var(--bringer-s-text, #C5C7CE);
    margin: 0 0 60px 0;
}

/* === Knowledge Base Section === */
.support-kb-section {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.kb-category-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.kb-category-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
}

.kb-category-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: var(--bringer-s-accent, #6366F1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kb-category-icon i {
    width: 32px;
    height: 32px;
    background: var(--bringer-s-heading, #F5F7FA);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.kb-category-content {
    flex: 1;
}

.kb-category-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--bringer-s-heading, #F5F7FA);
    margin: 0 0 16px 0;
}

.kb-article-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kb-article-list li {
    margin-bottom: 12px;
}

.kb-article-list li:last-child {
    margin-bottom: 0;
}

.kb-article-list a {
    font-size: 15px;
    color: var(--bringer-s-text, #C5C7CE);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.kb-article-list a:hover {
    color: var(--bringer-s-accent, #6366F1);
}

.kb-article-list a::before {
    content: '→';
    margin-right: 8px;
    opacity: 0.5;
}

/* === Downloads Section === */
.support-downloads-section {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.download-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.download-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.download-card-icon {
    width: 80px;
    height: 80px;
    background: var(--bringer-s-accent, #6366F1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.download-card-icon i {
    width: 40px;
    height: 40px;
    background: var(--bringer-s-heading, #F5F7FA);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.download-card-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--bringer-s-heading, #F5F7FA);
    margin: 0 0 12px 0;
}

.download-card-text {
    font-size: 15px;
    color: var(--bringer-s-text, #C5C7CE);
    margin: 0 0 24px 0;
}

/* === Support Hours === */
.support-hours-section {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.support-hours-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
}

.support-hours-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--bringer-s-heading, #F5F7FA);
    margin: 0 0 32px 0;
}

.support-hours-content {
    margin-bottom: 24px;
}

.support-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.support-hours-item:last-child {
    border-bottom: none;
}

.support-hours-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--bringer-s-heading, #F5F7FA);
}

.support-hours-time {
    font-size: 16px;
    color: var(--bringer-s-text, #C5C7CE);
}

.support-hours-note {
    font-size: 14px;
    color: var(--bringer-s-text, #C5C7CE);
    margin: 0;
    opacity: 0.8;
}

/* === Warranty Section === */
.support-warranty-section {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.warranty-info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
    height: 100%;
}

.warranty-info-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--bringer-s-heading, #F5F7FA);
    margin: 0 0 20px 0;
}

.warranty-info-card p {
    font-size: 15px;
    color: var(--bringer-s-text, #C5C7CE);
    line-height: 1.8;
    margin-bottom: 16px;
}

.warranty-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.warranty-list li {
    font-size: 15px;
    color: var(--bringer-s-text, #C5C7CE);
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.warranty-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--bringer-s-accent, #6366F1);
    font-weight: bold;
}

.rma-steps {
    list-style: none;
    counter-reset: rma-counter;
    padding: 0;
    margin: 16px 0;
}

.rma-steps li {
    font-size: 15px;
    color: var(--bringer-s-text, #C5C7CE);
    padding-left: 36px;
    position: relative;
    margin-bottom: 12px;
    counter-increment: rma-counter;
}

.rma-steps li::before {
    content: counter(rma-counter);
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background: var(--bringer-s-accent, #6366F1);
    color: var(--bringer-s-heading, #F5F7FA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

/* === Custom Icon Masks === */
.support-icon-email {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E");
}

.support-icon-phone {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72 12.84 12.84 0 00.7 2.81 2 2 0 01-.45 2.11L8.09 9.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45 12.84 12.84 0 002.81.7A2 2 0 0122 16.92z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72 12.84 12.84 0 00.7 2.81 2 2 0 01-.45 2.11L8.09 9.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45 12.84 12.84 0 002.81.7A2 2 0 0122 16.92z'/%3E%3C/svg%3E");
}

.support-icon-chat {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M21 15a2 2 0 01-2 2H7l-4 4V5a2 2 0 012-2h14a2 2 0 012 2z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M21 15a2 2 0 01-2 2H7l-4 4V5a2 2 0 012-2h14a2 2 0 012 2z'/%3E%3C/svg%3E");
}

.kb-icon-start {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpolygon points='5 3 19 12 5 21 5 3'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpolygon points='5 3 19 12 5 21 5 3'/%3E%3C/svg%3E");
}

.kb-icon-hardware {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Crect x='2' y='7' width='20' height='14' rx='2'/%3E%3Cpath d='M16 21V5a2 2 0 00-2-2h-4a2 2 0 00-2 2v16'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Crect x='2' y='7' width='20' height='14' rx='2'/%3E%3Cpath d='M16 21V5a2 2 0 00-2-2h-4a2 2 0 00-2 2v16'/%3E%3C/svg%3E");
}

.kb-icon-software {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpolyline points='16 18 22 12 16 6'/%3E%3Cpolyline points='8 6 2 12 8 18'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpolyline points='16 18 22 12 16 6'/%3E%3Cpolyline points='8 6 2 12 8 18'/%3E%3C/svg%3E");
}

.kb-icon-security {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E");
}

.kb-icon-management {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M12.22 2h-.44a2 2 0 00-2 2v.18a2 2 0 01-1 1.73l-.43.25a2 2 0 01-2 0l-.15-.08a2 2 0 00-2.73.73l-.22.38a2 2 0 00.73 2.73l.15.1a2 2 0 011 1.72v.51a2 2 0 01-1 1.74l-.15.09a2 2 0 00-.73 2.73l.22.38a2 2 0 002.73.73l.15-.08a2 2 0 012 0l.43.25a2 2 0 011 1.73V20a2 2 0 002 2h.44a2 2 0 002-2v-.18a2 2 0 011-1.73l.43-.25a2 2 0 012 0l.15.08a2 2 0 002.73-.73l.22-.39a2 2 0 00-.73-2.73l-.15-.08a2 2 0 01-1-1.74v-.5a2 2 0 011-1.74l.15-.09a2 2 0 00.73-2.73l-.22-.38a2 2 0 00-2.73-.73l-.15.08a2 2 0 01-2 0l-.43-.25a2 2 0 01-1-1.73V4a2 2 0 00-2-2z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M12.22 2h-.44a2 2 0 00-2 2v.18a2 2 0 01-1 1.73l-.43.25a2 2 0 01-2 0l-.15-.08a2 2 0 00-2.73.73l-.22.38a2 2 0 00.73 2.73l.15.1a2 2 0 011 1.72v.51a2 2 0 01-1 1.74l-.15.09a2 2 0 00-.73 2.73l.22.38a2 2 0 002.73.73l.15-.08a2 2 0 012 0l.43.25a2 2 0 011 1.73V20a2 2 0 002 2h.44a2 2 0 002-2v-.18a2 2 0 011-1.73l.43-.25a2 2 0 012 0l.15.08a2 2 0 002.73-.73l.22-.39a2 2 0 00-.73-2.73l-.15-.08a2 2 0 01-1-1.74v-.5a2 2 0 011-1.74l.15-.09a2 2 0 00.73-2.73l-.22-.38a2 2 0 00-2.73-.73l-.15.08a2 2 0 01-2 0l-.43-.25a2 2 0 01-1-1.73V4a2 2 0 00-2-2z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
}

.kb-icon-troubleshoot {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M14.7 6.3a1 1 0 000 1.4l1.6 1.6a1 1 0 001.4 0l3.77-3.77a6 6 0 01-7.94 7.94l-6.91 6.91a2.12 2.12 0 01-3-3l6.91-6.91a6 6 0 017.94-7.94l-3.76 3.76z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M14.7 6.3a1 1 0 000 1.4l1.6 1.6a1 1 0 001.4 0l3.77-3.77a6 6 0 01-7.94 7.94l-6.91 6.91a2.12 2.12 0 01-3-3l6.91-6.91a6 6 0 017.94-7.94l-3.76 3.76z'/%3E%3C/svg%3E");
}

.download-icon-driver {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4M7 10l5 5 5-5M12 15V3'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4M7 10l5 5 5-5M12 15V3'/%3E%3C/svg%3E");
}

.download-icon-software {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Cpath d='M9 9h6v6H9z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Cpath d='M9 9h6v6H9z'/%3E%3C/svg%3E");
}

.download-icon-docs {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3Cline x1='16' y1='13' x2='8' y2='13'/%3E%3Cline x1='16' y1='17' x2='8' y2='17'/%3E%3Cpolyline points='10 9 9 9 8 9'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3Cline x1='16' y1='13' x2='8' y2='13'/%3E%3Cline x1='16' y1='17' x2='8' y2='17'/%3E%3Cpolyline points='10 9 9 9 8 9'/%3E%3C/svg%3E");
}

/* === Responsive Design === */
@media (max-width: 1024px) {
    .support-page-title {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .support-header-section {
        padding: 60px 0 40px;
    }
    
    .support-page-title {
        font-size: 32px;
    }
    
    .support-contact-section,
    .support-kb-section,
    .support-downloads-section,
    .support-hours-section,
    .support-warranty-section {
        padding: 60px 0;
    }
    
    .kb-category-card {
        flex-direction: column;
        gap: 20px;
        padding: 24px;
    }
    
    .support-hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .support-hours-card {
        padding: 32px 24px;
    }
    
    .warranty-info-card {
        padding: 32px 24px;
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .support-page-title {
        font-size: 28px;
    }
    
    .support-card,
    .download-card {
        padding: 32px 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
}

/* === Utilities === */
.align-center {
    text-align: center;
}
