.site-footer {
    margin-top: clamp(3rem, 6vw, 5rem);
    background:
        radial-gradient(circle at top left, rgba(255, 215, 0, 0.10), transparent 36%),
        linear-gradient(150deg, rgba(10, 8, 35, 0.96), rgba(24, 18, 58, 0.94), rgba(39, 14, 72, 0.92));
    padding: clamp(2.5rem, 5vw, 4.5rem) 5% clamp(1.5rem, 3vw, 3rem);
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    color: #fff;
    text-align: left;
    font-size: 1rem;
}

.site-footer-shell {
    max-width: 1200px;
    margin: 0 auto;
}

.site-footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

.site-footer-intro {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 215, 0, 0.16);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
    text-align: left;
}

.site-footer-logo-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.35rem;
    background: rgba(255, 255, 255, 0.96);
    width: min(340px, 100%);
    padding: 0.75rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.20);
    text-decoration: none;
}

.site-footer-logo {
    width: 100%;
    height: auto;
    display: block;
}

.site-footer-tagline {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 1.4rem;
    max-width: 58ch;
}

.site-footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.6rem;
}

.site-footer-badge {
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 215, 0, 0.24);
    background: rgba(255, 215, 0, 0.08);
    color: #ffe9b1;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.site-footer-actions {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.site-footer-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.9rem 1.4rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-footer-action:hover {
    transform: translateY(-2px);
}

.site-footer-action-primary {
    background: linear-gradient(90deg, #4da6ff, #0080ff);
    color: #fff;
    box-shadow: 0 14px 32px rgba(0, 128, 255, 0.28);
}

.site-footer-action-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.site-footer-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.site-footer-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 215, 0, 0.12);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(12px);
    text-align: left;
}

.site-footer-card-wide {
    grid-column: 1 / -1;
}

.site-footer-heading {
    font-size: 0.92rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ffea80;
    margin: 0 0 1rem;
}

.site-footer-links,
.site-footer-points {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.site-footer-links a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.site-footer-links a:hover {
    color: #fff4bf;
    transform: translateX(4px);
}

.site-footer-points span {
    position: relative;
    padding-left: 1.05rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
}

.site-footer-points span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #ffd700;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.45);
}

.site-footer-note {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
    margin: 0 0 1.15rem;
    max-width: 52ch;
}

.site-footer-social {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.site-footer-social-link {
    color: #ffffff;
    font-size: 1.6rem;
    transition: all 0.35s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 215, 0, 0.18);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
    text-decoration: none;
}

.site-footer-social-link:hover {
    color: #ffd700;
    transform: translateY(-4px);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.site-footer-bottom {
    margin-top: 2rem;
    padding-top: 1.45rem;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.site-footer-legal {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.74);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.7rem 1rem;
}

.site-footer-legal a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer-legal a:hover {
    color: #ffd700;
}

.site-footer-divider {
    color: rgba(255, 255, 255, 0.32);
}

.site-footer-copy {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.60);
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
    text-align: right;
    align-items: flex-end;
}

@media (max-width: 1024px) {
    .site-footer {
        padding: 3rem 3% 2rem;
    }

    .site-footer-top {
        grid-template-columns: 1fr;
    }

    .site-footer-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer-logo-card {
        width: min(320px, 74vw);
    }

    .site-footer-tagline {
        max-width: none;
    }

    .site-footer-social {
        gap: 0.9rem;
    }

    .site-footer-social-link {
        font-size: 1.5rem;
        width: 58px;
        height: 58px;
    }
}

@media (max-width: 768px) {
    .site-footer-intro,
    .site-footer-card {
        padding: 1.35rem;
        border-radius: 20px;
    }

    .site-footer-columns {
        grid-template-columns: 1fr;
    }

    .site-footer-card-wide {
        grid-column: auto;
    }

    .site-footer-logo-card {
        width: min(285px, 76vw);
    }

    .site-footer-actions {
        flex-direction: column;
    }

    .site-footer-action {
        width: 100%;
    }

    .site-footer-social {
        gap: 1rem;
    }

    .site-footer-social-link {
        font-size: 1.35rem;
        width: 50px;
        height: 50px;
    }

    .site-footer-bottom {
        margin-top: 1.6rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .site-footer-copy {
        text-align: left;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 2.5rem 1rem 1.5rem;
    }

    .site-footer-logo-card {
        width: min(235px, 76vw);
        padding: 0.65rem 0.85rem;
    }

    .site-footer-tagline,
    .site-footer-note {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .site-footer-social {
        gap: 0.85rem;
    }

    .site-footer-social-link {
        font-size: 1.2rem;
        width: 46px;
        height: 46px;
    }

    .site-footer-legal {
        font-size: 0.85rem;
    }

    .site-footer-copy {
        font-size: 0.82rem;
    }
}
