.badge {
    font-size: 12px !important;
}

.card .card-body {
    padding: 10px;
}

.price-monthly {
    font-size: 1.5em !important;
}

.pricing-list li h6 {
    font-size: 0.85em;
}

/* ================================================ */

.sys-download-container {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
    padding-bottom: 0px;
    background: transparent;
    min-height: 500px;
}

.sys-download-header {
    margin-bottom: 60px;
}

.sys-download-title {
    font-size: 1.5rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.sys-download-subtitle {
    font-size: 1rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.sys-platforms-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.sys-platform-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 280px;
}

.sys-platform-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 60px;
    color: #495057;
}

.sys-platform-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.sys-platform-desc {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 25px;
}

.sys-download-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: center;
}

.sys-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: #007acc;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    cursor: pointer;
    min-width: 200px;
    min-height: 44px;
}

.sys-download-btn:hover {
    background: #005a9e;
    transform: translateY(-1px);
}

.sys-btn-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sys-btn-icon {
    font-size: 16px;
}

.sys-btn-text {
    font-size: 14px;
    font-weight: 500;
}

.sys-additional-info {
    background: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    border: 1px solid #e1e5e9;
}

.sys-info-title {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.sys-info-desc {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.sys-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: left;
}

.sys-info-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #007acc;
}

.sys-info-item-title {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.sys-info-item-desc {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .sys-download-title {
        font-size: 2.8rem;
    }

    .sys-platforms-grid {
        flex-direction: column;
        gap: 50px;
        align-items: center;
    }

    .sys-platform-section {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }

    .sys-download-container {
        padding: 30px 15px;
    }

    .sys-additional-info {
        padding: 25px;
    }

    .sys-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 1000px) and (min-width: 769px) {
    .sys-platforms-grid {
        gap: 50px;
    }
}