.elh-download-page {
    position: relative;
    z-index: 1;
    padding-bottom: 3.5rem;
}

.elh-download-page__hero {
    padding: 2rem 0 1.5rem;
}

.elh-download-page__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin: 0 0 .65rem;
    padding: .35rem .75rem;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #92400e;
    background: linear-gradient(135deg, #fff7d6 0%, #fde68a 100%);
    border: 1px solid rgba(245, 158, 11, .35);
    border-radius: 999px;
}

.elh-download-page__title {
    margin: 0 0 .85rem;
    max-width: 760px;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--home-text);
    letter-spacing: -.02em;
}

.elh-download-page__highlight {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 45%, #7c3aed 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.elh-download-page__lead {
    margin: 0;
    max-width: 700px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #334155;
}

.elh-download-page__body {
    padding-bottom: 1rem;
}

.elh-download-page__feature {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.35rem 1.4rem;
    border-radius: 20px;
    border: 1px solid rgba(245, 158, 11, .22);
    background: linear-gradient(145deg, rgba(255, 251, 235, .95) 0%, rgba(255, 255, 255, .98) 55%);
    box-shadow: var(--home-shadow);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .75s ease, transform .75s ease;
}

.elh-download-page.is-visible .elh-download-page__feature.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.elh-download-page__feature-copy h2 {
    margin: 0 0 .65rem;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--home-text);
}

.elh-download-page__feature-copy p {
    margin: 0 0 1rem;
    line-height: 1.65;
    color: #475569;
}

.elh-download-page__feature-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: .55rem;
}

.elh-download-page__feature-list li {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-weight: 600;
    color: #1e293b;
}

.elh-download-page__feature-list i {
    color: #d97706;
}

.elh-download-page__feature-visual {
    margin: 0;
    text-align: center;
}

.elh-download-page__feature-visual img {
    max-height: 280px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 28px rgba(15, 23, 42, .12));
}

.elh-download-page__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.25rem;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .75s ease .08s, transform .75s ease .08s;
}

.elh-download-page.is-visible .elh-download-page__grid.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.elh-download-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1.2rem 1.15rem 1rem;
    border-radius: 18px;
    border: 1px solid var(--home-border);
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--home-shadow);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.elh-download-card:hover {
    transform: translateY(-3px);
    border-color: rgba(245, 158, 11, .35);
    box-shadow: 0 16px 36px rgba(15, 23, 42, .1);
}

.elh-download-card--featured {
    border-color: rgba(245, 158, 11, .45);
    background: linear-gradient(180deg, #fffbeb 0%, #ffffff 42%);
}

.elh-download-card__badge {
    position: absolute;
    top: .85rem;
    right: .85rem;
    padding: .2rem .55rem;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #78350f;
    background: linear-gradient(135deg, #fde68a, #fbbf24);
    border-radius: 999px;
}

.elh-download-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    margin-bottom: .85rem;
    border-radius: 12px;
    font-size: 1.1rem;
    color: #b45309;
    background: linear-gradient(135deg, #fff7d6, #fde68a);
}

.elh-download-card__title {
    margin: 0 0 .55rem;
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--home-text);
}

.elh-download-card__desc {
    margin: 0 0 1rem;
    flex: 1 1 auto;
    font-size: .92rem;
    line-height: 1.6;
    color: #64748b;
}

.elh-download-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1rem;
}

.elh-download-card__format,
.elh-download-card__pages {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .25rem .55rem;
    font-size: .75rem;
    font-weight: 700;
    color: #475569;
    background: #f8fafc;
    border-radius: 999px;
}

.elh-download-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding-top: .85rem;
    border-top: 1px solid var(--home-border);
}

.elh-download-card__price {
    font-size: 1.35rem;
    font-weight: 800;
    color: #b45309;
}

.elh-download-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .5rem .85rem;
    font-size: .82rem;
    font-weight: 700;
    color: #78350f;
    text-decoration: none;
    background: linear-gradient(135deg, #fde68a 0%, #fbbf24 100%);
    border: 1px solid rgba(217, 119, 6, .3);
    border-radius: 999px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.elh-download-card__cta:hover,
.elh-download-card__cta:focus {
    color: #78350f;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(245, 158, 11, .28);
}

.elh-download-page__note {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: 1rem 1.1rem;
    border-radius: 14px;
    border: 1px solid rgba(124, 58, 237, .14);
    background: linear-gradient(135deg, rgba(245, 243, 255, .9), rgba(255, 255, 255, .95));
    color: #475569;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .75s ease .14s, transform .75s ease .14s;
}

.elh-download-page.is-visible .elh-download-page__note.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.elh-download-page__note i {
    margin-top: .15rem;
    color: #7c3aed;
}

.elh-download-page__note p {
    margin: 0;
    line-height: 1.65;
}

@media (max-width: 991.98px) {
    .elh-download-page__feature {
        grid-template-columns: 1fr;
    }

    .elh-download-page__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .elh-download-card__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .elh-download-card__cta {
        width: 100%;
    }
}
