/* ============================================
   VX FOOTER — Studio Dark Style
   ============================================ */

.vx-footer {
    background: #0d0d0d;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    position: relative;
    overflow: hidden;
}

/* ── Container ── */
.vx-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ── Inner (main body) ── */
.vx-footer-inner {
    padding: 72px 0 60px;
}

.vx-footer-inner .vx-footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* ── CTA Left ── */
.vx-footer-cta {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.vx-footer-headline {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
}

.vx-footer-dot {
    color: #e63329;
}

/* CTA Button */
.vx-footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    width: fit-content;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.vx-footer-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
}

.vx-footer-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #e63329;
    border-radius: 50%;
    font-size: 16px;
    line-height: 1;
    color: #fff;
    font-weight: 400;
}

/* ── Info Grid Right ── */
.vx-footer-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
}

.vx-footer-col h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 12px 0;
}

.vx-footer-col p,
.vx-footer-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    line-height: 1.7;
    transition: color 0.2s;
}

.vx-footer-col a:hover {
    color: #ffffff;
}

.vx-footer-col--right {
    text-align: right;
}

/* Social list */
.vx-footer-social {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vx-footer-social li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

.vx-social-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #e63329;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Nav links */
.vx-footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
}

.vx-footer-nav li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.vx-footer-nav a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s;
}

.vx-footer-nav a:hover {
    color: #ffffff;
}

/* ── Divider ── */
.vx-footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 40px;
}

/* ── Bottom Bar ── */
.vx-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.vx-footer-bottom strong {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

/* ── Watermark ── */
.vx-footer-watermark {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(80px, 14vw, 220px);
    color: rgba(255, 255, 255, 0.04);
    letter-spacing: 0.05em;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    line-height: 1;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .vx-footer-inner .vx-footer-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .vx-footer-headline {
        font-size: 2.4rem;
    }
}

@media (max-width: 700px) {
    .vx-footer-inner {
        padding: 52px 0 40px;
    }

    .vx-footer-container {
        padding: 0 24px;
    }

    .vx-footer-info {
        grid-template-columns: 1fr 1fr;
        gap: 28px 16px;
    }

    .vx-footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 20px 24px;
    }

    .vx-footer-divider {
        margin: 0 24px;
    }

    .vx-footer-headline {
        font-size: 2rem;
    }

    .vx-footer-watermark {
        font-size: 18vw;
    }
}