/* Download Grid System - New Design */
.download-grid-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.download-card-row {
    background-color: var(--visanet-white, #ffffff);
    border: 1px solid var(--visanet-border-color, #dddddd);
    border-radius: 100px;
    padding: 30px 60px;
    display: grid;
    grid-template-columns: 280px 1fr 200px;
    align-items: center;
    gap: 40px;
    transition: all 0.3s ease;
}

.download-card-row:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: var(--visanet-base, #e50c37);
}

/* Left Column: Icon + Title */
.download-col-left {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    padding-right: 30px;
}

.download-col-left::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background-color: #e5e7eb;
}

.platform-icon {
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.platform-icon i {
    font-size: 60px;
    color: #333;
    transition: color 0.3s ease;
}

.download-card-row:hover .platform-icon i {
    color: var(--visanet-base, #e50c37);
}

.platform-name {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
}

/* Center Column: Features */
.download-col-center {
    display: flex;
    align-items: center;
}

.platform-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 30px;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.platform-features li {
    font-size: 15px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.platform-features li i {
    color: var(--visanet-black3, #1d253a);
    font-size: 14px;
}

.download-card-row:hover .platform-features li i {
    color: var(--visanet-base, #e50c37);
}

/* Right Column: Button */
.download-col-right {
    display: flex;
    justify-content: flex-end;
}

.download-action-btn {
    min-width: 180px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 25px;
}

.download-action-btn .visanet-btn__icon-box {
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
}

.download-action-btn:hover .visanet-btn__icon-box {
    width: calc(100% - 12px);
}

/* Responsive */
@media (max-width: 1199px) {
    .download-card-row {
        grid-template-columns: 240px 1fr 180px;
        padding: 25px 40px;
        gap: 20px;
    }
    
    .platform-name {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .download-card-row {
        grid-template-columns: 1fr;
        border-radius: 24px;
        padding: 40px;
        text-align: center;
        gap: 30px;
    }

    .download-col-left {
        flex-direction: column;
        justify-content: center;
        padding-right: 0;
        border-bottom: 1px solid #eee;
        padding-bottom: 25px;
    }

    .download-col-left::after {
        display: none;
    }

    .platform-features {
        text-align: left;
        justify-content: center;
    }

    .download-col-right {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .platform-features {
        grid-template-columns: 1fr;
    }
}