/* Footer - eb.dk inspired */
.sa-footer {
    background: var(--sa-primary);
    color: var(--sa-text-light);
    margin-top: var(--sa-gap-xl);
}

/* Hero section: Large logo + CTA */
.sa-footer__hero {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sa-footer__hero-inner {
    max-width: 910px;
    margin: 0 auto;
    padding: 50px var(--sa-gap);
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Large logo */
.sa-footer__logo-large {
    flex-shrink: 0;
}

.sa-footer__logo-img {
    height: 80px;
    width: auto;
    display: block;
}

/* CTA box */
.sa-footer__cta {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 30px 36px;
    flex: 1;
}

.sa-footer__cta-title {
    font-family: var(--sa-font-headline);
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 16px;
}

.sa-footer__cta-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
}

.sa-footer__cta-features li {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    padding-left: 20px;
    position: relative;
}

.sa-footer__cta-features li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--sa-eksklusiv);
    font-weight: 700;
}

.sa-footer__cta-btn {
    display: inline-block;
    background: var(--sa-accent);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 28px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--sa-accent);
    transition: all 0.2s;
}

.sa-footer__cta-btn:hover {
    background: transparent;
    color: var(--sa-accent);
}

/* Link columns */
.sa-footer__links {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sa-footer__links-inner {
    max-width: 910px;
    margin: 0 auto;
    padding: 36px var(--sa-gap);
    display: flex;
    gap: 30px;
}

.sa-footer__col {
    flex: 1;
    min-width: 0;
}

.sa-footer__col h4 {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    margin-bottom: 12px;
}

.sa-footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sa-footer__col ul li {
    margin-bottom: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.sa-footer__col ul li strong {
    color: rgba(255,255,255,0.7);
    font-weight: 700;
}

.sa-footer__col ul a {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    transition: color 0.15s;
}

.sa-footer__col ul a:hover {
    color: #fff;
}

/* Tip bar - red */
.sa-footer__tip {
    background: #E53935;
}

.sa-footer__tip-inner {
    max-width: 910px;
    margin: 0 auto;
    padding: 16px var(--sa-gap);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sa-footer__tip-title {
    font-family: var(--sa-font-headline);
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sa-footer__tip-actions {
    display: flex;
    gap: 16px;
}

.sa-footer__tip-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.4);
    transition: all 0.15s;
}

.sa-footer__tip-btn:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-color: #fff;
}

.sa-footer__tip-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Responsive footer */
@media (max-width: 1024px) {
    .sa-footer__hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .sa-footer__logo-img {
        height: 60px;
    }

    .sa-footer__links-inner {
        flex-wrap: wrap;
    }

    .sa-footer__col {
        flex: 1 1 calc(33.333% - 20px);
    }

    .sa-footer__cta-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .sa-footer__col {
        flex: 1 1 calc(50% - 15px);
    }

    .sa-footer__tip-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .sa-footer__tip-actions {
        flex-direction: column;
        width: 100%;
    }

    .sa-footer__tip-btn {
        justify-content: center;
    }

    .sa-footer__logo-img {
        height: 48px;
    }
}
