.project-downloads {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(247, 250, 252, 0.85) 0%, #ffffff 100%);
}

.project-downloads__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.project-downloads__header {
    text-align: center;
    margin-bottom: 3rem;
}

.project-downloads__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    border-radius: 9999px;
    background: rgba(125, 179, 19, 0.12);
    color: #5a8a0f;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.project-downloads__header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.2rem, 3vw, 3rem);
    color: #1f2937;
    margin-top: 1.2rem;
    margin-bottom: 1rem;
}

.project-downloads__header p {
    max-width: 600px;
    margin: 0 auto;
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.7;
}

.downloads-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.project-downloads__group {
    margin-bottom: 3rem;
}

.project-downloads__group:last-child {
    margin-bottom: 0;
}

.project-downloads__group h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.download-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.download-card::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(125, 179, 19, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.download-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.download-card:hover::after {
    opacity: 1;
}

.download-card__icon {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #7db313, #5a8a0f);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(93, 139, 10, 0.35);
}

.download-card__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #111827;
}

.download-card__description {
    color: #4b5563;
    font-size: 0.98rem;
    line-height: 1.6;
}

.download-card__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
}

.download-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.download-card__cta {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.4rem;
    border-radius: 9999px;
    background: linear-gradient(var(--glass-angle, 135deg), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2)) !important;
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, var(--glass-highlight, 0.15));
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.3s ease, color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.download-card__cta::before {
    content: '';
    position: absolute;
    top: var(--glass-shine-y, 50%);
    left: var(--glass-shine-x, 50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.15) 30%, transparent 70%);
    pointer-events: none;
    transition: top 0.2s ease, left 0.2s ease, opacity 0.2s ease;
    transform: translate(-50%, -50%);
    opacity: var(--glass-shine-opacity, 0.6);
    border-radius: 50%;
}

.download-card__cta:hover {
    background: linear-gradient(var(--glass-angle, 135deg), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3)) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(125, 179, 19, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: rgba(125, 179, 19, 1) !important;
}

.download-card__cta i {
    font-size: 1rem;
    color: #7db313 !important;
}

.download-card__empty {
    color: #6b7280;
    font-size: 1rem;
    text-align: center;
    padding: 3rem 1.5rem;
    border: 1px dashed rgba(107, 114, 128, 0.4);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .project-downloads {
        padding: 4.5rem 0;
    }

    .download-card {
        padding: 1.5rem;
    }

    .download-card__title {
        font-size: 1.1rem;
    }
}
