.download-tools-page {
    background:
        radial-gradient(circle at top left, hsl(var(--base) / 0.12), transparent 42%),
        radial-gradient(circle at bottom right, hsl(var(--primary) / 0.08), transparent 35%),
        linear-gradient(180deg, #fff 0%, #f7f7f8 100%);
}

.download-tools-hero {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.download-tools-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 6px 14px;
    border-radius: 999px;
    background: hsl(var(--base) / 0.1);
    color: hsl(var(--base));
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.download-tools-hero__title {
    margin-bottom: 12px;
    color: hsl(var(--heading));
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
}

.download-tools-hero__subtitle {
    margin: 0 auto;
    max-width: 560px;
    color: hsl(var(--body-color));
    font-size: 1rem;
    line-height: 1.7;
}

.download-tools-section {
    margin-bottom: 40px;
}

.download-tools-section:last-of-type {
    margin-bottom: 0;
}

.download-tools-section__header {
    margin-bottom: 20px;
}

.download-tools-section__title {
    margin-bottom: 6px;
    color: hsl(var(--heading));
    font-size: 1.35rem;
    font-weight: 700;
}

.download-tools-section__desc {
    margin: 0;
    color: hsl(var(--body-color));
    font-size: 0.95rem;
}

.download-tool-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    border: 1px solid hsl(var(--border));
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px hsl(var(--dark) / 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.download-tool-card:hover {
    transform: translateY(-4px);
    border-color: hsl(var(--base) / 0.35);
    box-shadow: 0 16px 36px hsl(var(--dark) / 0.08);
}

.download-tool-card__icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, hsl(var(--base) / 0.16), hsl(var(--base) / 0.05));
    color: hsl(var(--base));
    font-size: 28px;
}

.download-tool-card__platform {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    margin-bottom: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    background: hsl(var(--dark) / 0.05);
    color: hsl(var(--heading));
    font-size: 12px;
    font-weight: 600;
}

.download-tool-card__name {
    margin-bottom: 8px;
    color: hsl(var(--heading));
    font-size: 1.15rem;
    font-weight: 700;
}

.download-tool-card__desc {
    flex: 1;
    margin-bottom: 22px;
    color: hsl(var(--body-color));
    font-size: 0.92rem;
    line-height: 1.6;
}

.download-tool-card__btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
}

.download-tool-card__btn.is-disabled,
.download-tool-card__btn:disabled {
    cursor: not-allowed;
    opacity: 0.65;
    pointer-events: none;
}

.download-tools-note {
    margin-top: 36px;
    padding: 16px 18px;
    border-radius: 12px;
    background: hsl(var(--base) / 0.08);
    color: hsl(var(--heading));
    font-size: 0.9rem;
    text-align: center;
}

@media (max-width: 575px) {
    .download-tool-card {
        padding: 22px 18px;
    }
}
