/* ==========================================================================
   footer-v2.css — New editorial footer design
   ========================================================================== */

.fv2-footer {
    position: relative;
    background: #05080f;
    overflow: hidden;
}

/* ── Subtle dot-grid texture ── */
.fv2-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(114, 127, 222, 0.1) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

/* ── Radial glow — bottom left ── */
.fv2-footer::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(114, 127, 222, 0.1) 0%, transparent 65%);
    pointer-events: none;
}

.fv2-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 60px 0;
}


/* ── Top: brand statement + CTA ── */
.fv2-brand {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 56px;
}

.fv2-tagline {
    font-size: clamp(2.6rem, 5vw, 5.2rem);
    font-weight: 900;
    line-height: 1.05;
    color: #fff;
    letter-spacing: -1px;
}

.fv2-tagline em {
    font-style: italic;
    background: linear-gradient(90deg, #a78bfa, #727fde, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fv2-start-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 1px solid rgba(114, 127, 222, 0.45);
    border-radius: 50px;
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
    white-space: nowrap;
    align-self: center;
}

.fv2-start-btn:hover {
    background: rgba(114, 127, 222, 0.12);
    border-color: #727fde;
    color: #a78bfa;
}

.fv2-start-btn i {
    transition: transform 0.25s ease;
}

.fv2-start-btn:hover i {
    transform: translateX(4px);
}


/* ── Divider ── */
.fv2-rule {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0;
}


/* ── Middle: logo / links / social ── */
.fv2-mid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 36px 0;
    gap: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fv2-logo-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.fv2-logo-block img {
    height: 22px;
    width: auto;
    opacity: 0.9;
}

.fv2-location {
    font-size: 0.65rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.3);
}

.fv2-nav {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.fv2-nav a {
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.5);
    text-decoration: none;
    transition: color 0.25s ease;
}

.fv2-nav a:hover {
    color: #e2e8f0;
}

.fv2-social-row {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

.fv2-social-row a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(226, 232, 240, 0.45);
    font-size: 0.85rem;
    text-decoration: none;
    transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.fv2-social-row a:hover {
    border-color: #727fde;
    color: #727fde;
    background: rgba(114, 127, 222, 0.1);
}


/* ── Bottom: copyright bar ── */
.fv2-copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 28px;
    gap: 1rem;
    flex-wrap: wrap;
}

.fv2-copyright span {
    font-size: 0.7rem;
    color: rgba(226, 232, 240, 0.22);
    letter-spacing: 0.5px;
}

.fv2-copyright a {
    color: rgba(226, 232, 240, 0.22);
    text-decoration: none;
    transition: color 0.25s ease;
}

.fv2-copyright a:hover {
    color: rgba(226, 232, 240, 0.6);
}


/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .fv2-inner {
        padding: 64px 40px 0;
    }
}

@media (max-width: 768px) {
    .fv2-brand {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-bottom: 40px;
    }

    .fv2-tagline {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .fv2-mid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .fv2-logo-block {
        align-items: center;
    }

    .fv2-nav {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .fv2-social-row {
        justify-content: center;
    }

    .fv2-copyright {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .fv2-inner {
        padding: 48px 24px 0;
    }

    .fv2-tagline {
        font-size: clamp(1.7rem, 7vw, 2.2rem);
        letter-spacing: -0.5px;
    }

    .fv2-nav {
        gap: 16px;
    }
}
