:root {
            --navy: #07111f;
            --navy-2: #0b1b31;
            --blue: #26a8ff;
            --blue-dark: #0878c6;
            --white: #ffffff;
            --muted: #b9c4d0;
            --light: #f4f7fb;
            --dark-text: #172033;
            --border: rgba(255,255,255,0.12);
        }

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

        body {
            font-family: Arial, Helvetica, sans-serif;
            color: var(--dark-text);
            background: var(--white);
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .top-bar {
            background: #050b14;
            color: var(--muted);
            font-size: 0.9rem;
            padding: 10px 6%;
            display: flex;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }

            .top-bar span {
                color: var(--white);
            }

        header {
            background: var(--navy);
            color: var(--white);
            padding: 18px 6%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 10;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .logo {
            font-size: 1.45rem;
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

            .logo span {
                color: var(--blue);
            }

        nav {
            display: flex;
            align-items: center;
            gap: 26px;
            font-size: 0.95rem;
        }

            nav a {
                color: var(--muted);
                font-weight: 600;
            }

                nav a:hover {
                    color: var(--white);
                }

        .nav-button {
            background: var(--blue);
            color: var(--white);
            padding: 11px 18px;
            border-radius: 3px;
            font-weight: 700;
        }

        .hero {
            min-height: 760px;
            background: linear-gradient(90deg, rgba(7,17,31,0.95) 0%, rgba(7,17,31,0.86) 48%, rgba(7,17,31,0.42) 100%), url('../images/organized-rack.png');
            background-size: contain;
            background-position: center;
            color: var(--white);
            display: flex;
            align-items: center;
            padding: 80px 6%;
        }

        .hero-content {
            max-width: 760px;
        }

        .eyebrow {
            color: var(--blue);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 800;
            margin-bottom: 18px;
            font-size: 0.95rem;
        }

        .hero h1 {
            font-size: clamp(2.6rem, 6vw, 5.6rem);
            line-height: 1.02;
            margin-bottom: 26px;
            letter-spacing: -2px;
        }

        .hero p {
            color: var(--muted);
            font-size: 1.2rem;
            max-width: 650px;
            margin-bottom: 34px;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-block;
            padding: 14px 22px;
            font-weight: 800;
            border-radius: 3px;
            transition: 0.2s ease;
        }

        .btn-primary {
            background: var(--blue);
            color: var(--white);
        }

            .btn-primary:hover {
                background: var(--blue-dark);
            }

        .btn-outline {
            border: 1px solid rgba(255,255,255,0.4);
            color: var(--white);
        }

            .btn-outline:hover {
                background: rgba(255,255,255,0.1);
            }

        .feature-strip {
            margin-top: -70px;
            padding: 0 6%;
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        .feature-card {
            background: var(--white);
            padding: 34px;
            box-shadow: 0 18px 45px rgba(4, 16, 32, 0.16);
            border-top: 5px solid var(--blue);
            min-height: 190px;
        }

            .feature-card h3 {
                color: var(--navy);
                margin-bottom: 12px;
                font-size: 1.25rem;
            }

            .feature-card p {
                color: #526173;
            }

        section {
            padding: 90px 6%;
        }

        .section-intro {
            max-width: 850px;
            margin-bottom: 44px;
        }

            .section-intro .eyebrow {
                margin-bottom: 10px;
            }

            .section-intro h2 {
                font-size: clamp(2rem, 4vw, 3.4rem);
                line-height: 1.08;
                color: var(--navy);
                margin-bottom: 18px;
            }

            .section-intro p {
                color: #5d6a7a;
                font-size: 1.1rem;
            }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .service-card {
            background: var(--light);
            padding: 34px;
            border: 1px solid #e5ebf2;
            transition: 0.2s ease;
        }

            .service-card:hover {
                transform: translateY(-4px);
                box-shadow: 0 16px 40px rgba(7, 17, 31, 0.12);
            }

        .service-number {
            color: var(--blue);
            font-weight: 900;
            margin-bottom: 16px;
        }

        .service-card h3 {
            color: var(--navy);
            margin-bottom: 12px;
            font-size: 1.25rem;
        }

        .service-card p {
            color: #5d6a7a;
        }

        .about-band {
            background: var(--navy);
            color: var(--white);
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            gap: 60px;
            align-items: center;
        }

            .about-band h2 {
                font-size: clamp(2rem, 4vw, 3.3rem);
                line-height: 1.1;
                margin-bottom: 20px;
            }

            .about-band p {
                color: var(--muted);
                margin-bottom: 18px;
                font-size: 1.05rem;
            }

        .about-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-top: 26px;
        }

            .about-list div {
                border: 1px solid var(--border);
                padding: 18px;
                background: rgba(255,255,255,0.04);
                color: var(--white);
                font-weight: 700;
            }

        .about-image {
            min-height: 430px;
            background: linear-gradient(rgba(38,168,255,0.08), rgba(38,168,255,0.08)), url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1400&q=80');
            background-size: cover;
            background-position: center;
            border: 1px solid var(--border);
        }

        .markets {
            background: var(--light);
        }

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

        .market-card {
            background: var(--white);
            padding: 28px;
            min-height: 160px;
            border-left: 4px solid var(--blue);
            box-shadow: 0 10px 28px rgba(7,17,31,0.08);
        }

            .market-card h3 {
                color: var(--navy);
                margin-bottom: 10px;
            }

            .market-card p {
                color: #5d6a7a;
                font-size: 0.96rem;
            }

        .cta {
            background: linear-gradient(90deg, rgba(7,17,31,0.96), rgba(7,17,31,0.82)), url('https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&w=1800&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            text-align: center;
        }

            .cta h2 {
                font-size: clamp(2rem, 4vw, 3.4rem);
                margin-bottom: 18px;
            }

            .cta p {
                color: var(--muted);
                max-width: 760px;
                margin: 0 auto 30px;
                font-size: 1.1rem;
            }

        footer {
            background: #050b14;
            color: var(--muted);
            padding: 54px 6% 26px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr;
            gap: 34px;
            margin-bottom: 36px;
        }

        footer h3, footer h4 {
            color: var(--white);
            margin-bottom: 14px;
        }

        footer ul {
            list-style: none;
        }

        footer li {
            margin-bottom: 8px;
        }

        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            font-size: 0.9rem;
        }

        @media (max-width: 950px) {
            header {
                align-items: flex-start;
                gap: 18px;
                flex-direction: column;
            }

            nav {
                flex-wrap: wrap;
                gap: 16px;
            }

            .feature-strip,
            .services-grid,
            .markets-grid,
            .about-band,
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .feature-strip {
                margin-top: 0;
                padding-top: 40px;
            }

            .hero {
                min-height: 640px;
            }
        }


        .modal {
            display: flex;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(4, 12, 22, .75);
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(6px);
        }

        .modal-content {
            position: relative;
            width: 90%;
            max-width: 600px;
            background: #07111f;
            border-top: 6px solid #ff8c00;
            border-radius: 8px;
            padding: 45px;
            color: white;
            box-shadow: 0 25px 60px rgba(0,0,0,.45);
            animation: popup .35s ease;
        }

            .modal-content h2 {
                color: #ff8c00;
                font-size: 2.2rem;
                margin-bottom: 18px;
                text-transform: uppercase;
                letter-spacing: 1px;
            }

            .modal-content p {
                color: #d3dbe7;
                line-height: 1.8;
                margin: 18px 0;
            }

            .modal-content strong {
                color: white;
            }

            .modal-content a {
                color: #39a7ff;
                font-weight: bold;
            }

                .modal-content a:hover {
                    color: white;
                }

        .close {
            position: absolute;
            right: 18px;
            top: 10px;
            font-size: 34px;
            cursor: pointer;
            color: #c7d2de;
            transition: .2s;
        }

            .close:hover {
                color: #ff8c00;
                transform: rotate(90deg);
            }

        @keyframes popup {

            from {
                opacity: 0;
                transform: translateY(-30px) scale(.95);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
