/*
Theme Name: BNK Wireless
Theme URI: https://bnkwireless.com
Author: BNK Wireless
Author URI: https://bnkwireless.com
Description: Official BNK Wireless Distribution homepage theme — Powering Dealers, Connecting Communities.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bnk-wireless
Tags: business, custom-colors, custom-logo, full-width-template
*/

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}



       :root {
            --bg-deep: #000b20;
            --bg-mid: #06122e;
            --bg-card: rgba(255, 255, 255, 0.04);
            --purple: #7444a0;
            --purple-light: #9d66c4;
            --green: #21864a;
            --green-light: #2db360;
            --blue-nav: #534084;
            --cyan: #00d4ff;
            --text-primary: #eef2ff;
            --text-muted: #8899bb;
            --border: rgba(255, 255, 255, 0.07);
            --border-purple: rgba(116, 68, 160, 0.35);
            --glow-purple: rgba(116, 68, 160, 0.22);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: var(--bg-deep);
            color: var(--text-primary);
            font-family: 'DM Sans', sans-serif;
            overflow-x: hidden;
        }

        /* ── BACKGROUND ── */
        .bg-layer {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            background:
                radial-gradient(ellipse 70% 50% at 70% 15%, rgba(116, 68, 160, 0.14) 0%, transparent 60%),
                radial-gradient(ellipse 50% 40% at 15% 75%, rgba(33, 134, 74, 0.08) 0%, transparent 55%),
                radial-gradient(ellipse 40% 35% at 85% 75%, rgba(83, 64, 132, 0.10) 0%, transparent 55%);
        }

        .grid-overlay {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            opacity: 0.018;
            background-image:
                linear-gradient(rgba(150, 120, 200, 1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(150, 120, 200, 1) 1px, transparent 1px);
            background-size: 60px 60px;
        }



        /* ── HERO ── */
        .hero {
            position: relative;
            z-index: 1;
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            padding: 96px 60px 60px;
            gap: 32px;
            /* Hero section background matches image bg exactly */
            background:
                radial-gradient(ellipse 90% 70% at 75% 50%, #091835 0%, #000b20 55%, #000b20 100%);
        }

        .hero-left {
            max-width: 560px;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 7px 16px;
            border-radius: 100px;
            border: 1px solid var(--border-purple);
            background: rgba(116, 68, 160, 0.1);
            font-size: 10.5px;
            font-weight: 700;
            letter-spacing: 0.1em;
            color: var(--purple-light);
            text-transform: uppercase;
            margin-bottom: 26px;
        }

        .badge::before {
            content: '';
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--green-light);
            box-shadow: 0 0 8px var(--green-light);
            animation: pulse 2.2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: .4;
                transform: scale(1.4);
            }
        }

        .hero-title {
            font-family: 'Syne', sans-serif;
            font-size: clamp(34px, 4.6vw, 62px);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .hero-title .gradient-text {
            background: linear-gradient(135deg, var(--purple-light), var(--cyan) 60%, var(--green-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-desc {
            color: var(--text-muted);
            font-size: 15.5px;
            line-height: 1.72;
            max-width: 420px;
            margin-bottom: 34px;
        }

        .hero-btns {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 52px;
        }

        .btn-outline {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 11px 20px;
            border-radius: 8px;
            font-size: 13.5px;
            font-weight: 500;
            border: 1px solid var(--border);
            background: transparent;
            color: var(--text-primary);
            cursor: pointer;
            text-decoration: none;
            transition: border-color 0.2s, background 0.2s;
        }

        .btn-outline:hover {
            border-color: var(--border-purple);
            background: rgba(116, 68, 160, 0.08);
        }

        .hero-features {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }

        .feat-item {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .feat-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(116, 68, 160, 0.12);
            border: 1px solid var(--border-purple);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
            margin-bottom: 2px;
        }

        .feat-label {
            font-size: 12.5px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .feat-sub {
            font-size: 11px;
            color: var(--text-muted);
        }

        /* ── HERO RIGHT — image container ── */
        .hero-right {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .hero-img {
            width: 100%;
            max-width: 95%;
            object-fit: contain;
            filter: drop-shadow(0 0 40px rgba(116, 68, 160, 0.25));
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-12px);
            }
        }

        /* ── STATS BAR ── */
        .stats-bar {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            border-top: 1px solid var(--border);
            background: rgba(6, 18, 46, 0.6);
            backdrop-filter: blur(10px);
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 28px 36px;
            border-right: 1px solid var(--border);
            transition: background 0.3s;
        }

        .stat-item:hover {
            background: rgba(116, 68, 160, 0.06);
        }

        .stat-item:last-child {
            border-right: none;
        }

        .stat-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            flex-shrink: 0;
            background: rgba(116, 68, 160, 0.12);
            border: 1px solid var(--border-purple);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
        }

        .stat-num {
            font-family: 'Syne', sans-serif;
            font-size: 26px;
            font-weight: 800;
            line-height: 1;
            background: linear-gradient(135deg, #fff, var(--purple-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 4px;
        }

        /* ── MOBILE MENU ── */
        .mobile-menu {
            display: none;
            flex-direction: column;
            position: fixed;
            top: 68px;
            left: 0;
            right: 0;
            background: rgba(0, 11, 32, 0.98);
            backdrop-filter: blur(22px);
            border-bottom: 1px solid var(--border);
            z-index: 99;
            padding: 20px 30px 28px;
        }

        .mobile-menu.open {
            display: flex;
        }

        .mobile-menu a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 16px;
            padding: 13px 0;
            border-bottom: 1px solid var(--border);
            font-weight: 500;
            transition: color 0.2s;
        }

        .mobile-menu a:last-of-type {
            border-bottom: none;
        }

        .mobile-menu a:hover {
            color: var(--text-primary);
        }

        .mobile-menu .btn-primary {
            margin-top: 18px;
            justify-content: center;
            border-radius: 8px;
            padding: 13px;
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 1050px) {
            .hero {
                padding: 96px 36px 56px;
            }

            .hero-features {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 860px) {
            .hero {
                grid-template-columns: 1fr;
                padding: 86px 28px 48px;
                text-align: center;
                background: radial-gradient(ellipse 120% 60% at 50% 30%, #091835 0%, #000b20 60%);
            }

            .hero-left {
                max-width: 100%;
            }

            .badge {
                margin: 0 auto 26px;
            }

            .hero-desc {
                margin: 0 auto 34px;
            }

            .hero-btns {
                justify-content: center;
            }

            .feat-item {
                align-items: center;
            }

            .hero-right {
                margin-top: 16px;
            }

            .hero-img {
                max-width: 380px;
            }

            .stats-bar {
                grid-template-columns: repeat(2, 1fr);
            }

            .stat-item:nth-child(2) {
                border-right: none;
            }

            nav {
                padding: 0 24px;
            }

            .nav-links,
            .nav-right {
                display: none;
            }

            .hamburger {
                display: flex;
            }
        }

        @media (max-width: 520px) {
            .hero-features {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero-btns {
                flex-direction: column;
                align-items: stretch;
            }

            .btn-outline,
            .btn-primary {
                justify-content: center;
            }

            .stat-item {
                padding: 18px 16px;
                gap: 10px;
            }

            .stat-icon {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .stat-num {
                font-size: 20px;
            }

            .hero-img {
                max-width: 300px;
            }
        }


/* =============================================
   FOOTER
============================================= */
.bnk-footer {
    background: var(--bnk-dark);
    color: #fff;
    padding: 56px 0 24px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo-mark {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 28px;
    color: var(--bnk-red);
    letter-spacing: -1px;
    line-height: 1;
}

.footer-brand .logo-sub {
    font-size: 9px;
    letter-spacing: 2px;
    color: #6B7280;
    text-transform: uppercase;
    margin-top: 4px;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.7;
    max-width: 240px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #F9FAFB;
    letter-spacing: 0.5px;
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 10px;
    transition: color 0.2s;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 10px;
}

.contact-item svg {
    width: 15px;
    height: 15px;
    stroke: var(--bnk-white);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 12px;
    color: #4B5563;
}

.footer-tagline {
    font-size: 12px;
    color: var(--bnk-white);
}

.custom-logo-link img {
    max-width: 70%;
    height: auto;
    display: block;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 900px) {
    .bnk-hero .container { grid-template-columns: 1fr; }
    .hero-card { display: none; }
    .steps-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .container { padding: 0 20px; }
    h1, .hero-content h1 { font-size: 32px; }
    .section-heading { font-size: 26px; }
    .nav-menu { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: #fff; padding: 20px; border-bottom: 1px solid var(--bnk-border); gap: 16px; }
    .nav-menu.open { display: flex; }
    .nav-toggle { display: flex; }
    .benefits-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .partners-logos { gap: 12px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
