.main-cta-button {
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 0.9em;
    font-family: 'BOLD';
    transition: all 0.2s;
}

.main-cta-button a {
    padding: 0.4em 1.5em;
    color: inherit;
    margin-right: 1em;
    border-radius: 0.3em;
    white-space: nowrap;
    text-decoration: none;
    text-transform: uppercase;
    background-color: var(--color-primary);
    text-shadow: 0 0.3em 0.5em rgba(0, 0, 0, 0.2);
    border-bottom: 0.2em solid rgba(255, 255, 255, 0.0);
}

.main-cta-button a:hover {
    background-color: color-mix(in oklab, var(--color-primary), white 10%);
    border-bottom: 0.2em solid rgba(255, 255, 255, 0.5);
    transition: all 0.2s;
    box-shadow: 0 0 0.8em rgba(34, 197, 94, 0.4);
    color: white;
}

.cta-secondary {
    display: inline-block;
    padding: 0.6em 2em;
    color: rgba(0, 0, 0, 0.7);
    font-family: 'REGU';
    font-size: 0.9em;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3em;
    transition: all 0.2s;
}

.cta-secondary:hover {
    border-color: var(--color-primary);
    background-color: rgba(34, 197, 94, 0.08);
    color: rgba(0, 0, 0, 0.9);
}

/* Dual download CTA */
.download-ctas {
    display: flex;
    gap: 1em;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5em;
}

.download-cta,
.download-cta:link,
.download-cta:visited {
    display: flex;
    align-items: center;
    gap: 0.6em;
    padding: 0.6em 1.6em;
    border-radius: 0.4em;
    font-family: 'BOLD';
    font-size: 0.9em;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.2s;
    white-space: nowrap;
    color: #fff !important;
    background-color: var(--color-primary);
    text-shadow: 0 0.2em 0.4em rgba(0, 0, 0, 0.15);
    border-bottom: 0.2em solid rgba(255, 255, 255, 0.0);
}

.download-cta:hover {
    background-color: color-mix(in oklab, var(--color-primary), white 10%);
    border-bottom-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0.8em rgba(123, 216, 63, 0.4);
    color: #fff !important;
}

.download-cta .cta-icon {
    font-size: 1.3em;
    line-height: 1;
}

.download-cta .cta-label small {
    display: block;
    font-family: 'REGU';
    font-size: 0.7em;
    text-transform: none;
    opacity: 0.8;
    margin-top: 0.1em;
}
