        :root {
            --navy:        #1B365D;
            --navy-dark:   #122447;
            --navy-light:  #254680;
            --gold:        #B8860B;
            --gold-light:  #D4A017;
            --white:       #FFFFFF;
            --off-white:   #F8F8F6;
            --gray-light:  #F2F4F7;
            --gray-border: #E0E4EA;
            --text-dark:   #1A1A2E;
            --text-body:   #374151;
            --text-muted:  #6B7280;
        }

        *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
        html { scroll-behavior:smooth; }
        body {
            font-family: 'Source Sans 3', sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: var(--text-body);
            background: var(--white);
        }
        img { max-width: 100%; display: block; }

        /* Skip-link for keyboard/screen-reader users (WCAG 2.1) */
        .skip-link {
            position: absolute;
            top: -100px;
            left: 0;
            background: var(--navy);
            color: var(--white);
            padding: 12px 20px;
            font-family: 'Oswald', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            text-decoration: none;
            z-index: 10000;
            transition: top 0.2s ease;
        }
        .skip-link:focus {
            top: 0;
            outline: 3px solid var(--gold);
            outline-offset: -3px;
        }

        h1,h2,h3,h4 {
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
            letter-spacing: 0.02em;
            color: var(--navy);
            line-height: 1.18;
        }
        h1 { font-size: clamp(2rem, 4.5vw, 3.6rem); }
        h2 { font-size: clamp(1.5rem, 2.5vw, 2.25rem); }
        h3 { font-size: 1.15rem; }
        p  { margin-bottom: 1rem; }
        p:last-child { margin-bottom: 0; }

        .section-label {
            font-family: 'Oswald', sans-serif;
            font-size: 0.72rem;
            font-weight: 500;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--gold);
            display: block;
            margin-bottom: 10px;
        }

        .btn-primary {
            display: inline-block;
            background: var(--gold);
            color: var(--white);
            font-family: 'Oswald', sans-serif;
            font-size: 0.95rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 13px 36px;
            border: none;
            cursor: pointer;
            text-decoration: none;
            transition: background 0.2s ease, transform 0.15s ease;
        }
        .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

        .btn-secondary {
            display: inline-block;
            background: transparent;
            color: var(--navy);
            font-family: 'Oswald', sans-serif;
            font-size: 0.95rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 11px 34px;
            border: 2px solid var(--navy);
            cursor: pointer;
            text-decoration: none;
            transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
        }
        .btn-secondary:hover { background: var(--navy); color: var(--white); transform: translateY(-1px); }

        /* Inverse: btn-secondary on dark backgrounds (e.g. .page-cta) */
        .page-cta .btn-secondary {
            color: var(--white);
            border-color: rgba(255,255,255,0.7);
        }
        .page-cta .btn-secondary:hover {
            background: var(--white);
            color: var(--navy);
            border-color: var(--white);
        }

        .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
        section    { padding: 84px 0; }

        /* NAVIGATION */
        nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            background: var(--navy-dark);
            border-bottom: 1px solid rgba(255,255,255,0.07);
            transition: box-shadow 0.3s;
        }
        nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.3); }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 76px;
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .nav-logo {
            text-decoration: none;
            line-height: 1.1;
        }
        .nav-logo-main {
            font-family: 'Oswald', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: 0.07em;
            color: var(--white);
            text-transform: uppercase;
            display: block;
        }
        .nav-logo-sub {
            font-size: 0.65rem;
            font-weight: 400;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.42);
            display: block;
        }

        .nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
        .nav-links > li { position: relative; }
        .nav-links > li > a {
            font-size: 0.82rem;
            font-weight: 600;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.75);
            text-decoration: none;
            padding: 8px 14px;
            display: block;
            transition: color 0.2s;
        }
        .nav-links > li > a:hover { color: var(--white); }

        .dropdown-menu {
            position: absolute;
            top: 100%; left: 0;
            background: var(--navy-dark);
            border: 1px solid rgba(255,255,255,0.1);
            border-top: 2px solid var(--gold);
            min-width: 250px;
            list-style: none;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-6px);
            transition: all 0.2s ease;
        }
        .nav-links > li:hover .dropdown-menu {
            opacity: 1; visibility: visible; transform: translateY(0);
        }
        .dropdown-menu a {
            display: block;
            padding: 12px 18px;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.72);
            text-decoration: none;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            transition: all 0.15s;
        }
        .dropdown-menu a:hover {
            color: var(--white);
            background: rgba(255,255,255,0.05);
            padding-left: 24px;
        }

        .nav-cta {
            background: var(--gold) !important;
            color: var(--white) !important;
            padding: 10px 20px !important;
            font-weight: 700 !important;
            margin-left: 8px;
        }
        .nav-cta:hover { background: var(--gold-light) !important; color: var(--white) !important; }

        /* HERO */
        .hero {
            padding-top: 76px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            background-color: var(--navy-dark);
            background-image:
                linear-gradient(160deg, rgba(18,36,71,0.93) 0%, rgba(27,54,93,0.85) 60%, rgba(18,36,71,0.92) 100%),
                url('images/corridor-night.png');
            background-size: cover;
            background-position: center 40%;
            position: relative;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(to right, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
        }

        .hero-content {
            flex: 1;
            display: flex;
            align-items: center;
            padding: 72px 0 64px;
        }

        .hero-inner { max-width: 740px; }

        .hero-eyebrow {
            font-family: 'Oswald', sans-serif;
            font-size: 0.72rem;
            letter-spacing: 0.32em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 20px;
            display: block;
        }

        .hero h1 { color: var(--white); font-weight: 700; margin-bottom: 24px; }
        .hero h1 em { font-style: normal; color: var(--gold); }

        .hero-sub {
            font-size: 1.125rem;
            color: rgba(255,255,255,0.82);
            max-width: 620px;
            margin-bottom: 40px;
            font-weight: 300;
            line-height: 1.75;
        }

        /* Cert bar - checkmark style */
        .cert-bar {
            background: rgba(0,0,0,0.32);
            backdrop-filter: blur(6px);
            border-top: 1px solid rgba(255,255,255,0.08);
        }
        .cert-bar-inner {
            max-width: 1140px;
            margin: 0 auto;
            padding: 16px 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 32px;
            flex-wrap: wrap;
            row-gap: 10px;
        }
        .cert-item {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            font-family: 'Oswald', sans-serif;
            font-size: 0.78rem;
            font-weight: 500;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.88);
        }
        .cert-check {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 18px;
            height: 18px;
            color: var(--gold);
            flex-shrink: 0;
        }
        .cert-check svg { width: 100%; height: 100%; }

        /* WHO WE SERVE */
        .who-we-serve { background: var(--gray-light); }
        .section-header { margin-bottom: 48px; }
        .section-header h2 { margin-bottom: 0; }

        .serve-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: var(--gray-border);
            border: 1px solid var(--gray-border);
        }
        .serve-card {
            background: var(--white);
            padding: 44px 32px;
            position: relative;
            overflow: hidden;
            transition: box-shadow 0.25s;
            text-align: left;
        }
        .serve-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 3px; height: 0;
            background: var(--gold);
            transition: height 0.35s ease;
        }
        .serve-card:hover::before { height: 100%; }

        .serve-icon-wrap {
            width: 64px;
            height: 64px;
            margin-bottom: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--navy);
            transition: color 0.25s ease;
        }
        .serve-icon-wrap svg { width: 100%; height: 100%; }
        .serve-card:hover .serve-icon-wrap { color: var(--gold); }

        .serve-card h3 { margin-bottom: 12px; color: var(--navy); }
        .serve-card p  { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.68; }

        /* HOW TO WORK WITH US */
        .how-it-works {
            background: var(--gray-light);
            padding: 88px 0;
            border-top: 1px solid var(--gray-border);
            border-bottom: 1px solid var(--gray-border);
        }
        .how-it-works .section-header {
            text-align: center;
            margin-bottom: 48px;
        }
        .how-it-works .section-header .section-label {
            display: block;
            margin-bottom: 12px;
        }
        .how-it-works .section-header h2 {
            margin-bottom: 14px;
        }
        .how-it-works .section-intro {
            color: var(--text-muted);
            font-size: 1.04rem;
            max-width: 680px;
            margin: 0 auto;
            line-height: 1.65;
        }
        .howto-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            max-width: 1140px;
            margin: 0 auto;
        }
        .howto-card {
            background: var(--white);
            padding: 30px 26px 32px;
            border-top: 3px solid var(--gold);
            box-shadow: 0 4px 16px rgba(27,54,93,0.05);
            position: relative;
            transition: transform 200ms ease, box-shadow 200ms ease;
        }
        .howto-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(18,36,71,0.10);
        }
        .howto-num {
            font-family: 'Oswald', sans-serif;
            font-size: 2.1rem;
            font-weight: 600;
            color: var(--gold);
            line-height: 1;
            letter-spacing: 0.02em;
            margin-bottom: 14px;
        }
        .howto-card h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.05rem;
            color: var(--navy);
            margin: 0 0 12px;
            line-height: 1.25;
            letter-spacing: 0.02em;
        }
        .howto-card p {
            font-size: 0.92rem;
            line-height: 1.65;
            color: var(--text-body);
            margin: 0;
        }
        .howto-cta {
            text-align: center;
            margin-top: 48px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 28px;
            flex-wrap: wrap;
        }
        @media (max-width: 980px) {
            .howto-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 540px) {
            .howto-grid { grid-template-columns: 1fr; }
            .how-it-works { padding: 64px 0; }
        }

        /* SUPPLY CATEGORIES */
        .supply-categories { background: var(--white); }

        .cat-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 48px;
        }
        .cat-card {
            border: 1px solid var(--gray-border);
            overflow: hidden;
            transition: box-shadow 0.25s, transform 0.25s;
            display: flex;
            flex-direction: column;
        }
        .cat-card:hover {
            box-shadow: 0 16px 48px rgba(27,54,93,0.13);
            transform: translateY(-5px);
        }
        .cat-img {
            height: 220px;
            background-size: cover;
            background-position: center;
            background-color: var(--navy-light);
        }
        .cat-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
        .cat-body h3 { margin-bottom: 10px; }
        .cat-body p  { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 22px; line-height: 1.65; flex: 1; }
        .cat-body .btn-primary { align-self: flex-start; }

        /* SOURCING */
        .sourcing { background: var(--off-white); }
        .sourcing-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 72px;
            align-items: center;
        }
        .sourcing-img-wrap { position: relative; }
        .sourcing-img {
            height: 420px;
            background-image: url('images/cat-medical.png');
            background-size: cover;
            background-position: center;
        }
        .sourcing-img-wrap::after {
            content: '';
            position: absolute;
            inset: 0;
            border: 3px solid var(--gold);
            transform: translate(14px, 14px);
            z-index: -1;
        }
        .sourcing-text h2 { margin-bottom: 20px; }
        .sourcing-text p  { color: var(--text-muted); font-size: 1.0625rem; line-height: 1.8; }

        /* WHY WORK WITH US */
        .why-us { background: var(--navy); }
        .why-us .section-label { color: rgba(184,134,11,0.85); }
        .why-us h2 { color: var(--white); margin-bottom: 52px; }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }
        .why-item {
            padding: 36px 28px;
            border: 1px solid rgba(255,255,255,0.09);
            position: relative;
            overflow: hidden;
            transition: border-color 0.25s;
        }
        .why-item::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 3px;
            background: var(--gold);
            transform: scaleX(0);
            transition: transform 0.3s ease;
            transform-origin: left;
        }
        .why-item:hover { border-color: rgba(255,255,255,0.22); }
        .why-item:hover::after { transform: scaleX(1); }

        .why-number {
            font-family: 'Oswald', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: rgba(255,255,255,0.05);
            line-height: 1;
            margin-bottom: -6px;
        }
        .why-item h3 {
            color: var(--gold);
            font-size: 1.05rem;
            margin-bottom: 14px;
            font-weight: 600;
            letter-spacing: 0.04em;
        }
        .why-item p { color: rgba(255,255,255,0.7); font-size: 0.9375rem; line-height: 1.72; }

        /* FOUNDER */
        .founder { background: var(--white); }
        .founder-inner {
            display: grid;
            grid-template-columns: 360px 1fr;
            gap: 80px;
            align-items: center;
        }
        .founder-img-wrap { position: relative; }
        .founder-img-wrap::before {
            content: '';
            position: absolute;
            top: -14px; left: -14px;
            width: 72px; height: 72px;
            border-top: 3px solid var(--gold);
            border-left: 3px solid var(--gold);
        }
        .founder-img-wrap::after {
            content: '';
            position: absolute;
            bottom: -14px; right: -14px;
            width: 72px; height: 72px;
            border-bottom: 3px solid var(--navy);
            border-right: 3px solid var(--navy);
        }
        .founder-photo {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            display: block;
        }

        .founder-text h2 { margin-bottom: 22px; }
        .founder-text p  { font-size: 1.0625rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; }

        .read-story-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'Oswald', sans-serif;
            font-size: 0.875rem;
            font-weight: 500;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--gold);
            text-decoration: none;
            transition: gap 0.2s;
        }
        .read-story-link:hover { gap: 14px; }

        .founder-meta {
            margin-top: 28px;
            padding-top: 24px;
            border-top: 1px solid var(--gray-border);
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .founder-badge {
            font-family: 'Oswald', sans-serif;
            font-size: 0.68rem;
            letter-spacing: 0.1em;
            font-weight: 500;
            text-transform: uppercase;
            color: var(--navy);
            border: 1px solid var(--navy);
            padding: 4px 11px;
        }

        /* REQUEST A QUOTE */
        .quote-section { background: var(--gray-light); }
        .quote-inner {
            display: grid;
            grid-template-columns: 1fr 500px;
            gap: 80px;
            align-items: start;
        }
        .quote-left h2 { margin-bottom: 18px; }
        .quote-left p  { color: var(--text-muted); font-size: 1.0625rem; line-height: 1.78; margin-bottom: 32px; }

        .contact-detail {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.9375rem;
            color: var(--text-body);
        }
        .contact-detail a {
            color: var(--navy);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s;
        }
        .contact-detail a:hover { color: var(--gold); }

        .quote-form {
            background: var(--white);
            padding: 40px;
            border-top: 4px solid var(--gold);
            box-shadow: 0 4px 40px rgba(27,54,93,0.09);
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        .form-group { margin-bottom: 16px; }
        .form-group label {
            display: block;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            color: var(--navy);
            margin-bottom: 6px;
        }
        .form-group label .opt {
            font-weight: 400;
            color: var(--text-muted);
            text-transform: none;
            letter-spacing: 0;
            font-size: 0.78rem;
        }
        .form-group input:not([type="radio"]):not([type="checkbox"]),
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 11px 14px;
            border: 1px solid var(--gray-border);
            background: var(--white);
            font-family: 'Source Sans 3', sans-serif;
            font-size: 0.9375rem;
            color: var(--text-dark);
            outline: none;
            transition: border-color 0.2s;
            -webkit-appearance: none;
        }
        .form-group input:not([type="radio"]):not([type="checkbox"]):focus,
        .form-group textarea:focus,
        .form-group select:focus { border-color: var(--navy); }
        .form-group textarea { resize: vertical; min-height: 100px; }
        .form-group select {
            -moz-appearance: none;
            appearance: none;
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B365D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
            background-repeat: no-repeat;
            background-position: right 14px center;
            background-size: 16px;
            padding-right: 40px;
            cursor: pointer;
        }

        .req { color: var(--gold); }

        .form-submit {
            width: 100%;
            background: var(--gold);
            color: var(--white);
            font-family: 'Oswald', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            padding: 15px;
            border: none;
            cursor: pointer;
            transition: background 0.2s;
            margin-top: 8px;
        }
        .form-submit:hover { background: var(--gold-light); }

        .form-privacy-note {
            font-size: 0.82rem;
            color: var(--text-muted);
            margin-top: 14px;
            line-height: 1.55;
            font-style: italic;
        }

        /* FOOTER */
        footer { background: var(--navy-dark); padding: 56px 0 28px; }
        .footer-inner { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

        .footer-top {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr;
            gap: 56px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            margin-bottom: 28px;
        }
        .footer-logo { height: 60px; width: auto; margin-bottom: 18px; }
        .footer-brand p {
            font-size: 0.875rem;
            color: rgba(255,255,255,0.45);
            line-height: 1.68;
            margin-bottom: 18px;
        }
        .footer-cert-row {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            row-gap: 8px;
        }
        .footer-cert {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-family: 'Oswald', sans-serif;
            font-size: 0.7rem;
            letter-spacing: 0.12em;
            font-weight: 500;
            text-transform: uppercase;
            color: rgba(255,255,255,0.6);
        }
        .footer-cert svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

        .footer-nav-heading {
            font-family: 'Oswald', sans-serif;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.3);
            margin-bottom: 16px;
        }
        .footer-nav-list { list-style: none; }
        .footer-nav-list li { margin-bottom: 9px; }
        .footer-nav-list a {
            font-size: 0.875rem;
            color: rgba(255,255,255,0.58);
            text-decoration: none;
            transition: color 0.2s;
        }
        .footer-nav-list a:hover { color: var(--white); }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.8rem;
            color: rgba(255,255,255,0.28);
        }

        /* ANIMATIONS */
        @keyframes fadeUp {
            from { opacity:0; transform:translateY(20px); }
            to   { opacity:1; transform:translateY(0); }
        }
        .hero-eyebrow  { animation: fadeUp 0.6s 0.0s ease both; }
        .hero h1       { animation: fadeUp 0.6s 0.1s ease both; }
        .hero-sub      { animation: fadeUp 0.6s 0.2s ease both; }
        .hero .btn-primary { animation: fadeUp 0.6s 0.3s ease both; }
        .cert-bar-inner { animation: fadeUp 0.6s 0.45s ease both; }

        /* RESPONSIVE */
        @media (max-width: 960px) {
            .nav-logo img { height: 44px; }
            .serve-grid,
            .cat-grid,
            .why-grid { grid-template-columns: 1fr; }

            .sourcing-inner,
            .founder-inner,
            .quote-inner,
            .footer-top { grid-template-columns: 1fr; gap: 40px; }

            .sourcing-img-wrap::after,
            .founder-img-wrap::before,
            .founder-img-wrap::after { display: none; }

            .form-row { grid-template-columns: 1fr; }
            .nav-links { display: none; }
            .quote-inner { grid-template-columns: 1fr; }
            .cert-bar-inner { gap: 18px; }
        }
        @media (max-width: 600px) {
            section { padding: 56px 0; }
            .hero-content { padding: 48px 0 36px; }
            .quote-form { padding: 28px 20px; }
        }

/* ═══════════════════════════════════════════════ PRODUCT SUBPAGES */

/* Page hero - smaller than homepage hero, used for all subpages */
.page-hero {
    padding: 76px 0 0;
    background-color: var(--navy-dark);
    position: relative;
}
.page-hero-banner {
    min-height: 360px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 0;
}
.page-hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(18,36,71,0.92) 0%, rgba(27,54,93,0.78) 60%, rgba(18,36,71,0.7) 100%);
}
.page-hero-banner::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}
.page-hero-banner .container { position: relative; z-index: 1; }

.page-hero-eyebrow {
    font-family: 'Oswald', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: block;
}
.page-hero-banner h1 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 12px;
    font-size: clamp(1.85rem, 4vw, 3rem);
}
.page-hero-banner p {
    color: rgba(255,255,255,0.78);
    font-size: 1.05rem;
    max-width: 640px;
    line-height: 1.7;
    font-weight: 300;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 18px;
}
.breadcrumb a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }

/* Page intro section */
.page-intro {
    background: var(--white);
    padding: 72px 0 48px;
}
.page-intro p {
    font-size: 1.125rem;
    color: var(--text-body);
    line-height: 1.8;
    max-width: 880px;
}

/* Products We Supply - 4-subcategory grid (Medical page) */
.products-section { background: var(--gray-light); }

.products-grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.products-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    padding: 32px 30px;
    transition: box-shadow 0.25s, border-color 0.25s;
    position: relative;
}
.products-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 0;
    background: var(--gold);
    transition: height 0.3s ease;
}
.products-card:hover {
    box-shadow: 0 12px 36px rgba(27,54,93,0.10);
    border-color: var(--gray-border);
}
.products-card:hover::before { height: 100%; }

.products-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--navy);
    color: var(--gold);
    margin-bottom: 18px;
}
.products-card-icon svg { width: 22px; height: 22px; }

.products-card h3 {
    margin-bottom: 16px;
    font-size: 1.1rem;
    color: var(--navy);
    border-bottom: 1px solid var(--gray-border);
    padding-bottom: 12px;
}
.products-card ul {
    list-style: none;
    padding: 0;
}
.products-card ul li {
    font-size: 0.9375rem;
    color: var(--text-body);
    padding: 6px 0 6px 22px;
    position: relative;
    line-height: 1.5;
}
.products-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
}

/* Products We Supply - single 2-column list (First Aid + MRO) */
.products-list-section { background: var(--gray-light); }

.products-list-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 40px;
    margin-top: 40px;
    background: var(--white);
    padding: 40px 44px;
    border-top: 4px solid var(--gold);
    box-shadow: 0 4px 32px rgba(27,54,93,0.08);
}
.products-list-2col li {
    list-style: none;
    font-size: 0.9875rem;
    color: var(--text-body);
    padding: 8px 0 8px 30px;
    position: relative;
    line-height: 1.5;
}
.products-list-2col li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'><path d='M4 10.5l4 4 8-9' stroke='%23B8860B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-size: contain;
}

/* Who We Serve text section */
.who-text-section {
    background: var(--white);
    padding: 84px 0;
}
.who-text-inner { max-width: 880px; }
.who-text-inner p {
    font-size: 1.0625rem;
    color: var(--text-body);
    line-height: 1.85;
}

/* Page CTA - smaller request quote section for subpages */
.page-cta {
    background: var(--navy);
    padding: 64px 0;
    text-align: center;
}
.page-cta h2 {
    color: var(--white);
    margin-bottom: 14px;
}
.page-cta p {
    color: rgba(255,255,255,0.75);
    font-size: 1.0625rem;
    max-width: 580px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

/* Responsive for subpages */
@media (max-width: 800px) {
    .products-grid-4 { grid-template-columns: 1fr; }
    .products-list-2col { grid-template-columns: 1fr; padding: 30px 24px; }
    .page-hero-banner { min-height: 280px; padding: 60px 0; }
}

/* ═══════════════════════════════════════════════ MOBILE NAV (HAMBURGER) */

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--white);
}
.mobile-toggle svg { width: 26px; height: 26px; }

@media (max-width: 960px) {
    .mobile-toggle { display: flex; align-items: center; justify-content: center; }

    .nav-links {
        display: flex;
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--navy-dark);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 24px 0;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }
    .nav-links.open { transform: translateX(0); }
    .nav-links > li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .nav-links > li > a {
        padding: 18px 28px;
        font-size: 0.95rem;
        letter-spacing: 0.1em;
    }

    /* Mobile dropdowns: render inline, not floating */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0,0,0,0.25);
        border: none;
        border-top: 1px solid rgba(255,255,255,0.07);
        min-width: auto;
    }
    .dropdown-menu a { padding: 14px 44px; font-size: 0.85rem; border-bottom: none; }

    .nav-cta {
        margin: 14px 28px 0;
        text-align: center;
        padding: 14px 20px !important;
    }
}

/* ═══════════════════════════════════════════════ TOP BAR (PHONE + EMAIL ABOVE NAV) */

.top-bar {
    background: var(--navy-dark);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1001;
    height: 36px;
}
.top-bar-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}
.top-bar a, .top-bar span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}
.top-bar a:hover { color: var(--gold); }
.top-bar svg { width: 13px; height: 13px; }

/* When top bar is present, push nav and hero down */
body.has-top-bar nav { top: 36px; }
body.has-top-bar .hero { padding-top: calc(76px + 36px); }
body.has-top-bar .page-hero { padding-top: calc(76px + 36px); }
body.has-top-bar .nav-links { top: calc(76px + 36px); }

@media (max-width: 700px) {
    .top-bar-inner { justify-content: center; gap: 16px; padding: 0 12px; }
    .top-bar a, .top-bar span { font-size: 0.72rem; }
    .top-bar-email { display: none; }
}


/* ═══════════════════════════════════════════════ HERO SECONDARY LINK */

.hero-secondary-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 28px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.2s, color 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 4px;
}
.hero-secondary-link:hover {
    color: var(--white);
    gap: 14px;
    border-bottom-color: var(--gold);
}

@media (max-width: 600px) {
    .hero-secondary-link { display: flex; margin-left: 0; margin-top: 18px; }
}


/* ═══════════════════════════════════════════════ TRUST STAT ROW */

.trust-bar {
    background: var(--white);
    padding: 56px 0;
    border-bottom: 1px solid var(--gray-border);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.trust-item {
    padding: 0 12px;
    border-right: 1px solid var(--gray-border);
}
.trust-item:last-child { border-right: none; }

.trust-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}
.trust-number .accent { color: var(--gold); }

.trust-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    line-height: 1.4;
}

@media (max-width: 800px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
    .trust-item:nth-child(2) { border-right: none; }
    .trust-number { font-size: 2rem; }
}


/* ═══════════════════════════════════════════════ NAV PHONE + MOBILE MENU */

.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    padding: 8px 14px;
    margin-right: 4px;
    transition: color 0.2s;
}
.nav-phone:hover { color: var(--gold); }
.nav-phone svg { width: 14px; height: 14px; }

/* Mobile hamburger button - hidden on desktop */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: var(--white);
    z-index: 1200;
    position: relative;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    margin: 5px 0;
    transition: transform 0.3s, opacity 0.2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ═══════════════════════════════════════════════ TRUST STAT ROW */

.trust-bar {
    background: var(--navy-dark);
    padding: 36px 0;
    border-top: 3px solid var(--gold);
}
.trust-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
.trust-stat {
    border-right: 1px solid rgba(255,255,255,0.1);
    padding: 0 12px;
}
.trust-stat:last-child { border-right: none; }

.trust-stat-num {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.1;
    margin-bottom: 4px;
    display: block;
}
.trust-stat-label {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}


/* ═══════════════════════════════════════════════ HERO SECONDARY LINK */

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}
.hero-secondary-link {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 4px;
    transition: color 0.2s, border-color 0.2s;
}
.hero-secondary-link:hover {
    color: var(--gold);
    border-color: var(--gold);
}


/* ═══════════════════════════════════════════════ FAQ (using <details>) */

.faq-section {
    background: var(--white);
}
.faq-grid {
    max-width: 880px;
    margin: 40px auto 0;
}
.faq-item {
    border-bottom: 1px solid var(--gray-border);
    background: var(--white);
}
.faq-item:first-child { border-top: 1px solid var(--gray-border); }

.faq-question {
    cursor: pointer;
    padding: 18px 0;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    list-style: none;
    transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; content: ''; }

.faq-question::after {
    content: '+';
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 300;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.2s;
}
.faq-item[open] .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 0 22px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.72;
    max-width: 760px;
}
.faq-answer p { margin-bottom: 0.6em; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer strong { color: var(--navy); font-weight: 600; }
.faq-answer a { color: var(--gold); text-decoration: underline; }


/* ═══════════════════════════════════════════════ READ STORY LINK */

.read-story-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    padding: 0;
    border: none;
    transition: gap 0.2s, color 0.2s;
}
.read-story-link::after {
    content: '→';
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.1rem;
    transition: transform 0.2s;
}
.read-story-link:hover {
    color: var(--gold-light);
    gap: 14px;
}
.read-story-link:hover::after { transform: translateX(2px); }


/* ═══════════════════════════════════════════════ FOOTER PHONE */

.footer-contact-list {
    list-style: none;
    margin-top: 4px;
}
.footer-contact-list li {
    margin-bottom: 8px;
}
.footer-contact-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-contact-list a:hover { color: var(--white); }
.footer-contact-list svg {
    width: 14px;
    height: 14px;
    color: var(--gold);
    flex-shrink: 0;
}


/* ═══════════════════════════════════════════════ MOBILE NAV OVERRIDES */

@media (max-width: 960px) {
    .nav-toggle { display: block; }
    .nav-phone { display: none; }

    .nav-links {
        display: flex !important;
        position: fixed;
        top: 0;
        right: 0;
        width: 100vw;
        max-width: 100vw;
        height: 100vh;
        background: var(--navy-dark);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 96px 32px 48px;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity 0.25s ease, transform 0.3s ease, visibility 0.25s;
        overflow-y: auto;
    }
    .nav-links.mobile-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links > li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .nav-links > li > a {
        padding: 16px 0;
        font-size: 0.95rem;
    }
    .nav-links > li > a:hover { color: var(--gold); }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0,0,0,0.2);
        border: none;
        border-top: 1px solid rgba(255,255,255,0.05);
        margin: 0 -24px;
        padding: 0;
    }
    .dropdown-menu a {
        padding: 12px 36px;
        font-size: 0.85rem;
    }
    .dropdown-menu a:hover { padding-left: 44px; }

    .nav-cta {
        margin-top: 18px;
        margin-left: 0 !important;
        text-align: center;
    }

    .trust-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .trust-stat:nth-child(2) { border-right: none; }
    .trust-stat { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 18px; }
    .trust-stat:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; padding-top: 18px; }

    .hero-actions { gap: 20px; }
}

@media (max-width: 600px) {
    .trust-bar-inner { grid-template-columns: 1fr; }
    .trust-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 14px 0; }
    .trust-stat:last-child { border-bottom: none; }

    .faq-question { font-size: 0.95rem; padding: 20px 0; gap: 16px; }
}

/* Body scroll lock when mobile nav open */
body.nav-open { overflow: hidden; }


/* ═══════════════════════════════════════════════ VENDOR STATS BAR */

.vendor-stats {
    background: var(--navy);
    padding: 56px 0;
    border-bottom: 3px solid var(--gold);
}
.vendor-stats-header {
    text-align: center;
    margin-bottom: 36px;
}
.vendor-stats-header .section-label { color: var(--gold); }
.vendor-stats-header h3 {
    color: var(--white);
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}
.vendor-stats-header p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.65;
}

.vendor-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.vendor-stat {
    padding: 0 16px;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.vendor-stat:last-child { border-right: none; }

.vendor-stat-num {
    font-family: 'Oswald', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}
.vendor-stat-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    display: block;
    margin-bottom: 6px;
}
.vendor-stat-detail {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.45;
}
.vendor-stats-source {
    text-align: center;
    margin-top: 28px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.04em;
}


/* ═══════════════════════════════════════════════ SOURCING & FULFILLMENT STANDARDS */

.standards-list {
    list-style: none;
    padding: 0;
    margin: 48px 0 0;
    display: grid;
    gap: 18px;
    max-width: 920px;
}
.standards-list li {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 22px;
    align-items: start;
    background: var(--gray-light);
    padding: 26px 30px;
    border-left: 3px solid var(--gold);
}
.standards-icon {
    width: 44px;
    height: 44px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.standards-icon svg { width: 22px; height: 22px; }
.standards-list li h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.08rem;
    color: var(--navy);
    margin: 0 0 6px;
    letter-spacing: 0.02em;
    line-height: 1.3;
}
.standards-list li p {
    font-size: 0.96rem;
    line-height: 1.65;
    color: var(--text-body);
    margin: 0;
}
@media (max-width: 600px) {
    .standards-list li { grid-template-columns: 1fr; gap: 14px; padding: 22px 20px; }
}


/* ═══════════════════════════════════════════════ VALUE PROP CARDS */

.value-prop-section { background: var(--gray-light); }

.value-prop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.value-prop-card {
    background: var(--white);
    padding: 36px 32px;
    border-left: 3px solid var(--gold);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
}
.value-prop-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(27,54,93,0.10);
}
.value-prop-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: var(--gold);
    margin-bottom: 20px;
}
.value-prop-icon svg { width: 24px; height: 24px; }

.value-prop-card h3 {
    color: var(--navy);
    margin-bottom: 12px;
    font-size: 1.15rem;
    letter-spacing: 0.02em;
}
.value-prop-card p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.7;
}


/* ═══════════════════════════════════════════════ WHAT WE'RE LOOKING FOR */

.categories-section { background: var(--gray-light); }

.categories-list {
    margin-top: 40px;
    display: grid;
    gap: 14px;
}
.category-row {
    background: var(--white);
    padding: 26px 32px;
    border-left: 3px solid transparent;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 24px;
    align-items: start;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.category-row:hover {
    border-left-color: var(--gold);
    box-shadow: 0 4px 16px rgba(27,54,93,0.06);
}
.category-num {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    padding-top: 4px;
}
.category-row h4 {
    font-family: 'Oswald', sans-serif;
    color: var(--navy);
    font-size: 1.05rem;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}
.category-row p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}


/* ═══════════════════════════════════════════════ HOW IT WORKS - PROCESS */

.process-section { background: var(--white); }

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 56px;
    position: relative;
}
.process-grid::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(to right, var(--gold) 0%, var(--gold) 100%);
    opacity: 0.4;
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 8px;
}
.process-num {
    width: 46px;
    height: 46px;
    margin: 0 auto 22px;
    background: var(--navy);
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--gold);
    letter-spacing: 0.04em;
}
.process-step h4 {
    font-family: 'Oswald', sans-serif;
    color: var(--navy);
    font-size: 1rem;
    margin-bottom: 10px;
    letter-spacing: 0.04em;
}
.process-step p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.65;
    max-width: 220px;
    margin: 0 auto;
}


/* ═══════════════════════════════════════════════ VENDOR FORM */

.vendor-form-section { background: var(--gray-light); }

.vendor-form-wrap {
    max-width: 760px;
    margin: 48px auto 0;
    background: var(--white);
    padding: 48px;
    border-top: 4px solid var(--gold);
    box-shadow: 0 4px 40px rgba(27,54,93,0.09);
}
.vendor-form-intro {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 36px;
    font-size: 1rem;
    line-height: 1.65;
}

.radio-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.radio-group label {
    flex: 1;
    min-width: 140px;
    padding: 12px 16px;
    border: 1px solid var(--gray-border);
    cursor: pointer;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--text-body);
    text-transform: none;
    letter-spacing: 0;
    transition: border-color 0.2s, background 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}
.radio-group label:hover { border-color: var(--navy); }
.radio-group input[type="radio"] {
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: var(--gold);
    cursor: pointer;
}
.radio-group input[type="radio"]:checked + span { font-weight: 600; color: var(--navy); }

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.checkbox-group label {
    padding: 11px 14px;
    border: 1px solid var(--gray-border);
    cursor: pointer;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-body);
    text-transform: none;
    letter-spacing: 0;
    transition: border-color 0.2s, background 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}
.checkbox-group label:hover { border-color: var(--navy); }
.checkbox-group input[type="checkbox"] {
    width: 14px;
    height: 14px;
    margin: 0;
    accent-color: var(--gold);
    cursor: pointer;
    flex-shrink: 0;
}

.vendor-form-alt {
    text-align: center;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--gray-border);
    color: var(--text-muted);
    font-size: 0.95rem;
}
.vendor-form-alt a {
    color: var(--navy);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.vendor-form-alt a:hover { color: var(--gold); }


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

@media (max-width: 800px) {
    .vendor-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
    .vendor-stat:nth-child(2) { border-right: none; }
    .vendor-stat { border-right: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; }
    .vendor-stat:nth-last-child(-n+2) { padding-bottom: 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }

    .value-prop-grid { grid-template-columns: 1fr; gap: 20px; }

    .process-grid { grid-template-columns: 1fr; gap: 32px; }
    .process-grid::before { display: none; }
    .process-step { display: grid; grid-template-columns: 60px 1fr; text-align: left; gap: 20px; align-items: start; }
    .process-num { margin: 0; }
    .process-step h4, .process-step p { max-width: none; margin-left: 0; }
    .process-step h4 { margin-top: 8px; }

    .checkbox-group { grid-template-columns: 1fr; }

    .vendor-form-wrap { padding: 32px 24px; }
}

@media (max-width: 500px) {
    .vendor-stats-grid { grid-template-columns: 1fr; }
    .vendor-stat { border-right: none !important; border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 0 !important; }
    .vendor-stat:first-child { border-top: none; }
    .vendor-stat-num { font-size: 2.25rem; }

    .category-row { grid-template-columns: 1fr; gap: 8px; padding: 22px 24px; }
}


/* ═══════════════════════════════════════════════ CAPABILITY OVERVIEW CARD */

.capability-overview {
    background: var(--white);
    border-left: 4px solid var(--navy);
    padding: 36px 40px;
    margin-top: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(27,54,93,0.10);
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}
.capability-overview-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 6px;
}
.capability-overview-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 4px;
    line-height: 1.2;
}
.capability-overview-cert-line {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}

.capability-data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--gray-border);
    border-left: 1px solid var(--gray-border);
}
.capability-data-cell {
    padding: 16px 20px;
    border-right: 1px solid var(--gray-border);
    border-bottom: 1px solid var(--gray-border);
}
.capability-data-cell .label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
}
.capability-data-cell .value {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    word-break: break-word;
}
.capability-data-cell .value a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.2s;
}
.capability-data-cell .value a:hover { color: var(--gold); }

.capability-cta-row {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--navy);
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 28px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}
.btn-download:hover { background: var(--navy-light); transform: translateY(-1px); }
.btn-download svg { width: 18px; height: 18px; }


/* ═══════════════════════════════════════════════ DATA TABLES */

.data-table-wrap {
    margin-top: 32px;
    overflow-x: auto;
    border: 1px solid var(--gray-border);
}
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.9375rem;
}
.data-table thead {
    background: var(--navy);
}
.data-table th {
    text-align: left;
    padding: 14px 18px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
}
.data-table tbody tr {
    border-top: 1px solid var(--gray-border);
    transition: background 0.15s;
}
.data-table tbody tr:hover { background: var(--gray-light); }
.data-table tbody tr:nth-child(even) { background: rgba(242, 244, 247, 0.5); }
.data-table tbody tr:nth-child(even):hover { background: var(--gray-light); }
.data-table td {
    padding: 13px 18px;
    color: var(--text-body);
    line-height: 1.45;
    vertical-align: top;
}
.data-table td.code {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: var(--navy);
    font-size: 0.95rem;
    white-space: nowrap;
}
.data-table .primary-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 2px 8px;
    margin-left: 8px;
    vertical-align: middle;
}


/* ═══════════════════════════════════════════════ CERT BADGES (CAPABILITIES PAGE) */

.cert-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    align-items: center;
    justify-content: center;
    background: var(--off-white);
    padding: 32px 24px;
    margin-top: 32px;
    border: 1px solid var(--gray-border);
}
.cert-badge-row img {
    height: 90px;
    width: auto;
    display: block;
    transition: transform 0.2s;
}
.cert-badge-row img:hover { transform: translateY(-3px); }


/* ═══════════════════════════════════════════════ FORMAL STATEMENT BLOCK */

.statement-block {
    background: var(--off-white);
    border-left: 3px solid var(--gold);
    padding: 28px 32px;
    margin-top: 32px;
}
.statement-block p {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.75;
    margin: 0;
}


/* ═══════════════════════════════════════════════ POC CARD */

.poc-card {
    background: var(--navy);
    color: var(--white);
    padding: 36px 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    margin-top: 32px;
}
.poc-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 4px;
}
.poc-title {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 14px;
}
.poc-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
    font-size: 0.95rem;
}
.poc-contact a {
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}
.poc-contact a:hover { color: var(--gold); }
.poc-contact svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }


/* ═══════════════════════════════════════════════ COMPETENCIES LIST */

.competencies-list {
    margin-top: 32px;
    list-style: none;
    padding: 0;
    display: grid;
    gap: 12px;
}
.competencies-list li {
    background: var(--white);
    padding: 20px 28px 20px 56px;
    border-left: 3px solid var(--gold);
    position: relative;
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.6;
    box-shadow: 0 2px 8px rgba(27,54,93,0.04);
}
.competencies-list li::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 28px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'><path d='M4 10.5l4 4 8-9' stroke='%23B8860B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-size: contain;
}


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

@media (max-width: 800px) {
    .capability-overview { padding: 28px 24px; margin-top: 0; }
    .capability-data-grid { grid-template-columns: 1fr; }

    .poc-card { grid-template-columns: 1fr; padding: 28px 24px; }

    .data-table { font-size: 0.875rem; }
    .data-table th, .data-table td { padding: 11px 14px; }

    .cert-badge-row { gap: 20px; padding: 24px 16px; }
    .cert-badge-row img { height: 64px; }
}

@media (max-width: 500px) {
    .cert-badge-row img { height: 52px; }
    .competencies-list li { padding: 18px 22px 18px 50px; }
    .competencies-list li::before { left: 20px; top: 22px; }
}


/* ═══════════════════════════════════════════════ CAPABILITY OVERVIEW CERT BADGES */

.capability-cert-badges {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 26px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--gray-border);
}
.capability-cert-badges img {
    height: 56px;
    width: auto;
    display: block;
    transition: transform 0.2s;
}
.capability-cert-badges img:hover { transform: translateY(-2px); }
.capability-cert-badges .cert-text-only {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 8px 14px;
    border: 1px solid var(--navy);
    background: var(--white);
}
.capability-cert-badges .cert-text-only svg {
    width: 14px;
    height: 14px;
    color: var(--gold);
}

@media (max-width: 600px) {
    .capability-cert-badges img { height: 44px; }
    .capability-cert-badges { gap: 12px; }
}


/* ═══════════════════════════════════════════════ CAPABILITY NARRATIVE */

.narrative-statement {
    max-width: 880px;
    margin-top: 28px;
    font-size: 1.15rem;
    line-height: 1.78;
    color: var(--text-body);
    font-weight: 400;
    border-left: 3px solid var(--gold);
    padding-left: 32px;
}

@media (max-width: 600px) {
    .narrative-statement {
        font-size: 1.0625rem;
        padding-left: 22px;
    }
}
