/* ── Ecosystem Top Bar ──────────────────────────────────────── */
.eco-topbar {
    background: #070b16;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    font-size: .78rem;
    padding: 6px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
}

.eco-topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.eco-links {
    display: flex;
    gap: 16px;
}

.eco-links a,
.eco-wa {
    color: #94a3b8;
    text-decoration: none;
    transition: color .2s;
    font-size: .78rem;
}

.eco-links a:hover,
.eco-wa:hover {
    color: #fff;
}

.eco-wa {
    color: #22c55e;
    font-weight: 600;
}

.eco-wa:hover {
    color: #4ade80;
}

/* ── Shared Nav (used by _eco_header.php) ───────────────────── */
.nav {
    position: fixed;
    top: 28px;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    backdrop-filter: blur(20px);
    background: rgba(10, 15, 30, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
}

.logo span {
    background: linear-gradient(135deg, var(--primary, #3b82f6), #818cf8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-nav {
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: .9rem;
    border: none;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
}

.btn-login {
    background: transparent;
    color: #94a3b8;
    border: 1px solid rgba(255, 255, 255, .08);
}

.btn-login:hover {
    color: #fff;
    border-color: #fff;
}

.btn-cta {
    background: var(--primary, #3b82f6);
    color: #fff;
}

.btn-cta:hover {
    filter: brightness(1.15);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, .3);
}

.hero {
    padding-top: 140px !important;
}

/* ── Ecosystem Footer ──────────────────────────────────────── */
.eco-footer {
    background: #070b16;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 60px 24px 0;
    color: #94a3b8;
    font-size: .9rem;
}

.eco-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.eco-footer-brand p {
    color: #64748b;
    line-height: 1.7;
    font-size: .85rem;
    max-width: 320px;
}

.eco-footer-col h4 {
    color: #e2e8f0;
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.eco-footer-col a,
.eco-footer-col span {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    padding: 4px 0;
    font-size: .85rem;
    transition: color .2s;
}

.eco-footer-col a:hover {
    color: #fff;
}

.eco-footer-col i {
    margin-right: 6px;
}

.eco-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    margin-top: 40px;
    padding: 20px 0;
    text-align: center;
    font-size: .8rem;
}

.eco-footer-bottom a {
    color: var(--primary);
    text-decoration: none;
}

@media (max-width: 768px) {
    .eco-topbar {
        display: none;
    }

    .nav {
        top: 0 !important;
    }

    .hero {
        padding-top: 120px !important;
    }

    .eco-hide-mobile {
        display: none !important;
    }

    .eco-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .eco-footer-inner {
        grid-template-columns: 1fr;
    }
}