   
        * { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --navy: #1e3a5f;
            --navy-dark: #132740;
            --navy-mid: #2a4f7c;
            --steel: #3a6186;
            --sky: #6da0c4;
            --ice: #d6e8f5;
            --ice-light: #eef5fb;
            --gold: #c49a5a;
            --gold-light: #e8c98a;
            --white: #ffffff;
            --off-white: #f7f9fc;
            --text-dark: #1a2a3a;
            --text-mid: #3d5166;
            --text-light: #6b8099;
            --border: #d0dce8;
            --nutra-green: #2d5f4d;
            --nutra-light: #e8f3ee;
            --chem-amber: #7a4f1e;
            --chem-light: #f5ebe0;
            --both-purple: #3d3580;
            --both-light: #eceafe;
            --pharma-blue: #1a5276;
            --pharma-light: #d6eaf8;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Barlow', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background: var(--white);
        }

        /* ─── HEADER ─── */
        header {
            background: rgba(255,255,255,0.96);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            box-shadow: 0 1px 6px rgba(0,0,0,0.04);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 96px;
        }

        .logo-lockup {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo-text span { color: var(--gold); }

        .main-logo {
            height: 160px;
            width: auto;
            max-width: 320px;
            object-fit: contain;
            display: block;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 0;
            list-style: none;
        }

        .nav-links > li { position: relative; }

        .nav-links a {
            display: block;
            padding: 8px 16px;
            text-decoration: none;
            color: var(--text-mid);
            font-weight: 500;
            font-size: 15px;
            transition: color 0.2s;
            white-space: nowrap;
        }

        .nav-links a:hover { color: var(--navy); }

        .nav-links .has-dropdown > a::after {
            content: ' ▾';
            font-size: 11px;
            opacity: 0.6;
        }



        .dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 8px;
            box-shadow: 0 8px 24px rgba(30,58,95,0.12);
            min-width: 220px;
            padding: 8px 0;
            z-index: 100;
        }

        .has-dropdown:hover .dropdown { display: block; }

        .dropdown a {
            padding: 10px 20px;
            font-size: 14px;
            color: var(--text-mid);
            border-bottom: none;
        }

        .dropdown a:hover { background: var(--ice-light); color: var(--navy); }

        .nav-cta {
            background: var(--navy);
            color: var(--white) !important;
            padding: 10px 22px !important;
            border-radius: 4px;
            font-weight: 600 !important;
            font-size: 14px !important;
            margin-left: 12px;
            transition: background 0.2s, box-shadow 0.2s !important;
            letter-spacing: 0.2px;
        }

        .nav-cta:hover { background: var(--navy-dark) !important; color: var(--white) !important; box-shadow: 0 4px 12px rgba(30,58,95,0.3) !important; }

        /* ─── BUTTONS ─── */
        .btn {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 4px;
            font-family: 'Barlow', sans-serif;
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 0.3px;
            text-decoration: none;
            cursor: pointer;
            border: none;
            transition: all 0.2s;
        }

        .btn-primary {
            background: var(--gold);
            color: var(--navy-dark);
            box-shadow: 0 2px 8px rgba(196,154,90,0.35);
        }

        .btn-primary:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
            box-shadow: 0 5px 16px rgba(196,154,90,0.45);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255,255,255,0.6);
        }

        .btn-secondary:hover {
            background: rgba(255,255,255,0.12);
            border-color: var(--white);
            transform: translateY(-2px);
        }

        .btn-gold {
            background: var(--gold);
            color: var(--navy-dark);
            box-shadow: 0 2px 8px rgba(196,154,90,0.35);
        }

        .btn-gold:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
            box-shadow: 0 5px 16px rgba(196,154,90,0.45);
        }

        .btn-navy {
            background: var(--navy);
            color: var(--white);
            box-shadow: 0 2px 8px rgba(30,58,95,0.25);
        }

        .btn-navy:hover {
            background: var(--navy-dark);
            transform: translateY(-2px);
            box-shadow: 0 5px 16px rgba(30,58,95,0.35);
        }

        .btn-outline-white {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255,255,255,0.6);
        }

        .btn-outline-white:hover {
            background: rgba(255,255,255,0.12);
            border-color: var(--white);
            transform: translateY(-2px);
        }

        .mobile-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 24px;
            color: var(--navy);
        }

        /* ─── HERO ─── */
.hero {
    background:
         linear-gradient(
            135deg,
            rgba(14,40,65,0.82),
            rgba(30,58,85,0.72)
        ),
        url('./Images/pathway2product-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 110px 36px 100px;
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.hero-eyebrow {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 68px;
    line-height: 1;
    letter-spacing: 0.5px;
    max-width: 760px;
    margin-bottom: 28px;
}

.hero-sub {
    font-size: 20px;
    line-height: 1.7;
    max-width: 700px;
    color: rgba(255,255,255,0.82);
}

.hero-sectors {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 34px 0;
}

.hero-sectors span {
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 16px;
    font-size: 13px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background: rgba(255,255,255,0.05);
}

.pathway-diagram {
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 10px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(8px);
}

.pathway-diagram-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.pathway-diagram div {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: var(--gold-light);
    line-height: 1.7;
}

.pathway-diagram div:last-child {
    border-bottom: none;
}
        /* ─── TRUST BAR ─── */
        .trust-bar {
            background: var(--ice-light);
            border-bottom: 1px solid var(--border);
            padding: 24px;
        }

        .trust-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
        }

        .trust-item { text-align: center; }
        .trust-num { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 700; color: var(--navy); display: block; }
        .trust-lbl { font-size: 12px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; }

        /* ─── GENERIC SECTION ─── */
        .section { padding: 72px 24px; }
        .section.alt { background: var(--off-white); }
        .section.dark { background: var(--navy); color: var(--white); }

        .section-inner { max-width: 1200px; margin: 0 auto; }

        .section-header { text-align: center; margin-bottom: 48px; }
        .section-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
        .section-header h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 700; color: var(--navy); margin-bottom: 12px; letter-spacing: 0.3px; }
        .section.dark .section-header h2 { color: var(--white); }
        .section-header p { font-size: 17px; color: var(--text-light); max-width: 640px; margin: 0 auto; }
        .section.dark .section-header p { color: rgba(255,255,255,0.75); }

        /* ─── SERVICES ─── */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .service-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 28px;
            transition: box-shadow 0.2s, transform 0.2s;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--navy), var(--sky));
        }

        .service-card:hover { box-shadow: 0 8px 24px rgba(30,58,95,0.12); transform: translateY(-3px); }

        .service-card h3 { color: var(--navy); font-size: 17px; font-weight: 600; margin-bottom: 10px; }
        .service-card p { color: var(--text-light); font-size: 14px; line-height: 1.75; }

        .service-badge {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 20px;
            margin-top: 12px;
            letter-spacing: 0.3px;
        }

        .badge-nutra { background: var(--nutra-light); color: var(--nutra-green); }
        .badge-chem { background: var(--chem-light); color: var(--chem-amber); }
        .badge-both { background: var(--both-light); color: var(--both-purple); }

        /* ─── HOW IT WORKS ─── */
        .phases { display: flex; flex-direction: column; gap: 0; }

        .phase {
            display: grid;
            grid-template-columns: 80px 1fr;
            gap: 0;
            position: relative;
        }

        .phase-left {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .phase-num {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--navy);
            color: var(--white);
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 22px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
        }

        .phase-line {
            width: 2px;
            flex: 1;
            background: var(--border);
            margin: 4px 0;
        }

        .phase:last-child .phase-line { display: none; }

        .phase-content {
            padding: 0 0 40px 24px;
        }

        .phase-label {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 6px;
        }

        .phase-content h3 {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 10px;
        }

        .phase-content p { color: var(--text-light); line-height: 1.75; margin-bottom: 12px; }

        .phase-deliverable {
            background: var(--ice-light);
            border: 1px solid var(--border);
            border-radius: 6px;
            padding: 10px 16px;
            font-size: 13px;
            color: var(--text-mid);
        }

        .phase-deliverable strong { color: var(--navy); }

        .differentiators {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-top: 48px;
        }

        .diff-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 24px;
            text-align: center;
        }

        .diff-icon { font-size: 28px; margin-bottom: 12px; }
        .diff-card h4 { color: var(--navy); font-size: 15px; font-weight: 600; margin-bottom: 8px; }
        .diff-card p { color: var(--text-light); font-size: 13px; line-height: 1.65; }

        /* ─── VERTICALS / WHO WE SERVE ─── */
        .verticals-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .vertical-card {
            border-radius: 10px;
            padding: 28px 30px;
            border: 1px solid var(--border);
            border-top-width: 4px;
        }

        /* Nutraceuticals — forest green */
        .vertical-card.nutra {
            background: var(--nutra-light);
            border-color: rgba(45,95,77,0.2);
            border-top-color: var(--nutra-green);
        }

        /* Specialty Chemicals — steel blue */
        .vertical-card.chem {
            background: #edf3f8;
            border-color: rgba(58,97,134,0.2);
            border-top-color: var(--steel);
        }

        /* Small-Molecule Pharma — deep pharma blue */
        .vertical-card.pharma {
            background: #e8eef5;
            border-color: rgba(26,58,95,0.2);
            border-top-color: var(--navy-mid);
        }

        /* Emerging Biotech — teal/purple */
        .vertical-card.biotech {
            background: #f0eef8;
            border-color: rgba(61,53,128,0.2);
            border-top-color: var(--both-purple);
        }

        .vertical-card h3 {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .vertical-card.nutra h3 { color: var(--nutra-green); }
        .vertical-card.chem h3 { color: var(--steel); }
        .vertical-card.pharma h3 { color: var(--navy-mid); }
        .vertical-card.biotech h3 { color: var(--both-purple); }

        .vertical-card p {
            font-size: 13.5px;
            color: var(--text-mid);
            line-height: 1.75;
            margin-bottom: 14px;
        }

        .vertical-services { list-style: none; }

        .vertical-services li {
            font-size: 13.5px;
            color: var(--text-dark);
            padding: 5px 0 5px 18px;
            position: relative;
            border-bottom: 1px solid rgba(0,0,0,0.06);
            line-height: 1.45;
        }

        .vertical-services li:last-child { border-bottom: none; }

        .vertical-card.nutra .vertical-services li::before { content: '→'; position: absolute; left: 0; color: var(--nutra-green); font-weight: 700; font-size: 12px; top: 6px; }
        .vertical-card.chem .vertical-services li::before  { content: '→'; position: absolute; left: 0; color: var(--steel); font-weight: 700; font-size: 12px; top: 6px; }
        .vertical-card.pharma .vertical-services li::before { content: '→'; position: absolute; left: 0; color: var(--navy-mid); font-weight: 700; font-size: 12px; top: 6px; }
        .vertical-card.biotech .vertical-services li::before { content: '→'; position: absolute; left: 0; color: var(--both-purple); font-weight: 700; font-size: 12px; top: 6px; }

        /* ─── OUTCOMES ─── */
        .outcomes-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            align-items: stretch;
        }

        .outcome-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-left: 4px solid var(--gold);
            border-radius: 0 8px 8px 0;
            padding: 24px 22px;
            display: flex;
            flex-direction: column;
            min-height: 140px;
        }

        .outcome-num {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 30px;
            font-weight: 700;
            color: var(--navy);
            display: block;
            margin-bottom: 10px;
            line-height: 1;
            min-height: 36px;
        }

        .outcome-card p {
            font-size: 13.5px;
            color: var(--text-light);
            line-height: 1.65;
            flex: 1;
        }

        /* ─── RESOURCES ─── */
        .resources-tabs {
            display: flex;
            gap: 8px;
            margin-bottom: 32px;
            border-bottom: 2px solid var(--border);
            padding-bottom: 0;
        }

        .rtab {
            padding: 10px 24px;
            border: none;
            background: none;
            font-family: 'Barlow', sans-serif;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-light);
            cursor: pointer;
            border-bottom: 3px solid transparent;
            margin-bottom: -2px;
            transition: color 0.2s;
        }

        .rtab.active { color: var(--navy); border-bottom-color: var(--navy); }
        .rtab:hover { color: var(--navy); }

        .resource-panel { display: none; }
        .resource-panel.active { display: block; }

        .resource-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .resource-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 10px;
            overflow: hidden;
            transition: box-shadow 0.2s, transform 0.2s;
        }

        .resource-card:hover { box-shadow: 0 8px 24px rgba(30,58,95,0.1); transform: translateY(-2px); }

        .resource-card-top {
            padding: 24px 24px 16px;
            border-bottom: 1px solid var(--border);
        }

        .resource-tag {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 8px;
            display: block;
        }

        .tag-ti { color: var(--steel); }
        .tag-fn { color: var(--nutra-green); }

        .resource-card h3 { font-size: 16px; font-weight: 600; color: var(--navy); line-height: 1.4; margin-bottom: 8px; }
        .resource-card p { font-size: 13px; color: var(--text-light); line-height: 1.65; }

        .resource-card-bottom {
            padding: 14px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .resource-meta { font-size: 12px; color: var(--text-light); }
        .resource-link { font-size: 13px; font-weight: 600; color: var(--navy); text-decoration: none; }
        .resource-link:hover { color: var(--steel); }

        .vertical-dot {
            width: 8px; height: 8px; border-radius: 50%;
            display: inline-block; margin-right: 6px;
        }
        .dot-nutra { background: var(--nutra-green); }
        .dot-chem { background: var(--chem-amber); }
        .dot-both { background: var(--both-purple); }

        .resources-cta {
            text-align: center;
            margin-top: 32px;
            padding: 32px;
            background: var(--ice-light);
            border-radius: 10px;
            border: 1px solid var(--border);
        }

        .resources-cta h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; color: var(--navy); margin-bottom: 8px; }
        .resources-cta p { font-size: 14px; color: var(--text-light); margin-bottom: 16px; }

        /* ─── INDUSTRIES ─── */
        .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
        }

        .industry-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 28px;
            text-align: center;
        }

        .industry-icon { font-size: 36px; margin-bottom: 14px; }
        .industry-card h3 { color: var(--navy); font-size: 16px; font-weight: 600; margin-bottom: 12px; }
        .industry-card ul { list-style: none; color: var(--text-light); font-size: 13.5px; line-height: 2; }

        /* ─── CTA BAND ─── */
        .cta-band {
            background: linear-gradient(135deg, var(--navy-dark), var(--navy));
            color: var(--white);
            padding: 64px 24px;
            text-align: center;
        }

        .cta-band h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 38px; font-weight: 700; margin-bottom: 12px; }
        .cta-band h2 span { color: var(--gold-light); }
        .cta-band p { font-size: 17px; opacity: 0.85; margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }

        /* ─── CONTACT ─── */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            gap: 40px;
            align-items: start;
        }

        .contact-info h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; color: var(--navy); margin-bottom: 24px; }

        .contact-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
        .contact-icon { font-size: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
        .contact-item h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
        .contact-item a, .contact-item p { font-size: 14px; color: var(--text-light); text-decoration: none; }
        .contact-item a:hover { color: var(--navy); }

        .contact-form-wrap {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 32px;
            box-shadow: 0 4px 20px rgba(30,58,95,0.08);
        }

        .contact-form-wrap h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; color: var(--navy); margin-bottom: 24px; }

        .form-group { margin-bottom: 18px; }
        .form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-mid); margin-bottom: 6px; }
        .form-group input, .form-group select, .form-group textarea {
            width: 100%;
            padding: 10px 14px;
            border: 1px solid var(--border);
            border-radius: 6px;
            font-size: 14px;
            font-family: 'Barlow', sans-serif;
            color: var(--text-dark);
            background: var(--white);
            transition: border-color 0.2s;
        }
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            outline: none;
            border-color: var(--navy);
        }
        .form-group textarea { resize: vertical; min-height: 110px; }

        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

        /* ─── FOOTER ─── */
        footer {
            background: var(--navy-dark);
            color: rgba(255,255,255,0.7);
            padding: 40px 24px 24px;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 40px;
            margin-bottom: 32px;
            flex-wrap: wrap;
        }

        .footer-brand .logo-text { color: var(--white); }
        .footer-brand p { font-size: 13px; margin-top: 10px; max-width: 280px; line-height: 1.65; }

        .footer-logo-img {
            height: 52px;
            width: auto;
            filter: brightness(0) invert(1);
            opacity: 0.82;
        }

        .shows-box {
            margin-top: 28px;
            padding: 18px 20px;
            background: var(--ice-light);
            border-radius: 8px;
            border: 1px solid var(--border);
        }

        .shows-box h4 {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--navy);
            margin-bottom: 10px;
        }

        .shows-box p { font-size: 13px; color: var(--text-light); line-height: 1.9; }

        .footer-links h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gold-light); margin-bottom: 12px; }
        .footer-links ul { list-style: none; }
        .footer-links li { margin-bottom: 8px; }
        .footer-links a { font-size: 13px; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
        .footer-links a:hover { color: var(--white); }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            flex-wrap: wrap;
            gap: 8px;
        }

        /* ─── RESPONSIVE ─── */
        @media (max-width: 1024px) {
            .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 900px) {
            .hero-inner { grid-template-columns: 1fr; }
            .hero-visual { display: none; }
            .hero h1 { font-size: 44px; }
            .verticals-grid { grid-template-columns: 1fr; }
            .contact-grid { grid-template-columns: 1fr; }
            .form-row { grid-template-columns: 1fr; }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .mobile-btn { display: block; }
            nav { height: 72px; }
            .main-logo { height: 56px; }
            .hero { padding: 56px 24px 64px; }
            .hero h1 { font-size: 34px; }
            .section { padding: 48px 24px; }
            .outcomes-grid { grid-template-columns: 1fr; }
            .verticals-grid { grid-template-columns: 1fr; }
        }

        .challenge-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
            gap: 24px;
        }

        .challenge-card {
            border: 1px solid var(--border);
            padding: 36px;
            background: white;
        }

        .challenge-card h3 {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 28px;
            margin-bottom: 14px;
            color: var(--navy);
        }

        .challenge-card p {
            line-height: 1.8;
            color: var(--text-mid);
        }
        .industry-icon-line {
            width: 42px;
            height: 2px;
            background: var(--steel);
            margin: 0 auto 20px;
        }

        .engagement-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 16px;
        }

        .engagement-card {
            padding: 24px 28px;
            border: 1px solid var(--border);
            border-top: 3px solid var(--sky);
            border-radius: 0 0 8px 8px;
            background: var(--white);
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--navy);
            transition: box-shadow 0.2s, transform 0.2s;
        }

        .engagement-card:hover {
            box-shadow: 0 6px 20px rgba(30,58,95,0.1);
            transform: translateY(-2px);
        }

