/* --- Global Section Spacing --- */
.section-block {
    margin-bottom: 40px;
    padding: 0 5px;
}

.section-header {
    margin-bottom: 20px;
}

/* --- Download Section Styles --- */
.download-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dl-card {
    background: #141414;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
}

/* Specific Border Colors */
.dl-card.android { border-top: 3px solid var(--primary-green); }
.dl-card.ios { border-top: 3px solid #448aff; }

.dl-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
}

.dl-icon { font-size: 28px; }
.dl-header h3 { font-size: 18px; color: #fff; margin: 0; }

.step-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step-item {
    display: flex;
    gap: 12px;
}

.step-num {
    background: #222;
    color: var(--primary-green);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
    border: 1px solid var(--primary-green);
}

.step-text strong {
    display: block;
    color: var(--accent-yellow);
    font-size: 13px;
    margin-bottom: 3px;
}

.step-text p {
    font-size: 12px;
    color: #999;
    line-height: 1.4;
    margin: 0;
}

.btn-dl {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    margin-top: 20px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
}

.btn-green { background: var(--primary-green); color: #000; }
.btn-outline { background: transparent; border: 1px solid #fff; color: #fff; }

/* --- Why Choose Us Styles --- */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 400px) {
    .features-grid { grid-template-columns: 1fr 1fr; }
}

.feat-card {
    background: #111;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #222;
    transition: transform 0.2s;
}

.feat-card:hover { transform: translateY(-3px); border-color: var(--primary-green); }

.feat-icon { font-size: 24px; margin-bottom: 10px; }

.feat-card h4 {
    font-size: 14px;
    color: #fff;
    margin-bottom: 5px;
}

.feat-card p {
    font-size: 11px;
    color: #888;
    line-height: 1.4;
    margin: 0;
}

/* --- How It Works Styles --- */
.process-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.process-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #111;
    padding: 15px;
    border-radius: 12px;
    border-left: 2px solid var(--accent-yellow);
}

.process-num {
    font-size: 32px;
    font-weight: 900;
    color: #222;
    -webkit-text-stroke: 1px var(--primary-green); /* Outline effect */
    line-height: 1;
}

.process-content h4 {
    font-size: 15px;
    color: #fff;
    margin-bottom: 4px;
}

.process-content p {
    font-size: 12px;
    color: #888;
    margin: 0;
}

.process-content a {
    color: var(--primary-green);
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .section-block {
        margin-bottom: 30px;
        padding: 0;
    }
    
    .dl-card {
        padding: 16px;
    }
    
    .dl-header h3 {
        font-size: 16px;
    }
    
    .dl-icon {
        font-size: 24px;
    }
    
    .step-num {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }
    
    .step-text strong {
        font-size: 12px;
    }
    
    .step-text p {
        font-size: 11px;
    }
    
    .feat-card {
        padding: 12px;
    }
    
    .feat-icon {
        font-size: 20px;
    }
    
    .feat-card h4 {
        font-size: 13px;
    }
    
    .feat-card p {
        font-size: 10px;
    }
    
    .process-item {
        padding: 12px;
    }
    
    .process-num {
        font-size: 28px;
    }
    
    .process-content h4 {
        font-size: 14px;
    }
    
    .process-content p {
        font-size: 11px;
    }
}

