/* Site footer — richer Instagram-accented composition */

.site-footer {
    position: relative;
    margin-top: 80px !important;
    padding: 28px 0 0;
    overflow: hidden;
    color: #17151a;
    background:
        radial-gradient(ellipse 55% 50% at 12% 8%, rgba(245, 133, 41, 0.12), transparent 62%),
        radial-gradient(ellipse 48% 46% at 88% 18%, rgba(221, 42, 123, 0.1), transparent 60%),
        radial-gradient(ellipse 42% 40% at 50% 100%, rgba(129, 52, 175, 0.08), transparent 58%),
        linear-gradient(180deg, #fff9fb 0%, #fcf8f9 42%, #f7f2f6 100%);
    border-top: 1px solid rgba(221, 42, 123, 0.1);
}

.site-footer-stage {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.site-footer-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(64px);
    opacity: 0.55;
}

.site-footer-orb--a {
    width: min(480px, 58vw);
    height: min(480px, 58vw);
    left: -10%;
    top: 8%;
    background: rgba(245, 133, 41, 0.18);
    animation: site-footer-drift-a 14s ease-in-out infinite alternate;
}

.site-footer-orb--b {
    width: min(420px, 50vw);
    height: min(420px, 50vw);
    right: -8%;
    top: 22%;
    background: rgba(221, 42, 123, 0.16);
    animation: site-footer-drift-b 16s ease-in-out infinite alternate;
}

.site-footer-orb--c {
    width: min(360px, 46vw);
    height: min(360px, 46vw);
    left: 35%;
    bottom: -18%;
    background: rgba(129, 52, 175, 0.12);
    animation: site-footer-drift-c 18s ease-in-out infinite alternate;
}

.site-footer-grid {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        linear-gradient(rgba(23, 21, 26, 0.95) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 21, 26, 0.95) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
}

.site-footer-shine {
    position: absolute;
    left: 10%;
    right: 10%;
    top: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(245, 133, 41, 0.45) 25%,
        rgba(221, 42, 123, 0.65) 50%,
        rgba(129, 52, 175, 0.4) 75%,
        transparent 100%
    );
}

.site-footer-inner {
    position: relative;
    z-index: 1;
    padding-top: 36px;
    padding-bottom: 8px;
}

/* Trust row */
.site-footer-trust {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
    margin: 0 0 26px;
    padding: 0;
}

.site-footer-trust li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 650;
    color: #5f5864;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(23, 21, 26, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.site-footer-trust-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f58529, #dd2a7b);
    box-shadow: 0 0 0 3px rgba(221, 42, 123, 0.12);
}

/* Main glass panel */
.site-footer-panel {
    position: relative;
    margin-bottom: 8px;
    padding: 32px 30px 28px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow:
        0 18px 44px rgba(40, 16, 40, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.site-footer-grid-main {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.9fr);
    gap: 40px 48px;
}

.site-footer-brand-link {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    text-decoration: none;
}

.site-footer-brand-logo {
    display: block;
    width: auto;
    height: 44px;
    max-width: 170px;
    object-fit: contain;
}

.site-footer-brand-text {
    max-width: 34ch;
    margin: 0 0 18px;
    font-size: 14.5px;
    line-height: 1.65;
    color: #6b6470;
}

.site-footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer-contact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    max-width: 100%;
    padding: 0;
    border-radius: 0;
    text-decoration: none;
    color: inherit;
    background: transparent;
    border: 0;
    box-shadow: none;
    transition: transform 0.2s ease, color 0.2s ease;
}

.site-footer-contact:hover {
    transform: translateY(-1px);
    color: inherit;
}

.site-footer-contact:hover .site-footer-contact-value {
    color: #dd2a7b;
}

.site-footer-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    border-radius: 0;
    background: transparent;
    border: 0;
}

.site-footer-contact-icon--wa {
    background: transparent;
    border: 0;
}

.site-footer-contact-icon img {
    width: 18px;
    height: 18px;
    display: block;
}

.site-footer-contact-copy {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.site-footer-contact-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #8a8490;
}

.site-footer-contact-value {
    font-size: 14px;
    font-weight: 700;
    color: #17151a;
    line-height: 1.3;
    word-break: break-word;
}

.site-footer-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 20px;
}

.site-footer-col-title {
    position: relative;
    display: inline-block;
    margin: 0 0 16px;
    padding-bottom: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #17151a;
}

.site-footer-col-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f58529, #dd2a7b, #8134af);
}

.site-footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer-list a {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: #6b6470;
    text-decoration: none;
    transition: color 0.18s ease, transform 0.18s ease;
}

.site-footer-list a:hover {
    color: #dd2a7b;
    transform: translateX(3px);
}

.site-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px 24px;
    flex-wrap: wrap;
    padding: 22px 4px 28px;
}

.site-footer-copy {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    color: #8a8490;
}

.site-footer-copy strong {
    font-weight: 750;
    color: #4f4954;
}

.site-footer-payments-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.site-footer-payments-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #9a94a0;
}

.site-footer-payments {
    display: block;
    max-width: min(300px, 100%);
    height: auto;
    opacity: 0.95;
}

@keyframes site-footer-drift-a {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(4%, 6%, 0); }
}

@keyframes site-footer-drift-b {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-5%, 4%, 0); }
}

@keyframes site-footer-drift-c {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(3%, -5%, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .site-footer-orb {
        animation: none !important;
    }
}

@media (max-width: 991px) {
    .site-footer {
        margin-top: 64px !important;
    }

    .site-footer-grid-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .site-footer-panel {
        padding: 26px 20px 22px;
        border-radius: 24px;
    }

    .site-footer-nav {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .site-footer-contacts,
    .site-footer-contact {
        width: 100%;
    }

    .site-footer-nav {
        grid-template-columns: 1fr 1fr;
        gap: 26px 16px;
    }

    .site-footer-col:last-child {
        grid-column: 1 / -1;
    }

    .site-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 24px;
    }

    .site-footer-trust {
        gap: 8px;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .site-footer-nav {
        grid-template-columns: 1fr;
    }

    .site-footer-col:last-child {
        grid-column: auto;
    }
}
