@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --blue: #0960ed;
    --navy: #062b66;
    --ink: #080f1d;
    --muted: #556173;
    --line: #e6edf7;
    --pale: #f2f7ff
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Inter, Arial, sans-serif;
    font-size: 11px;
    background: #fff;
    zoom: 1.2;
}

.page-container {
    width: min(1120px, calc(100% - 48px));
    margin: auto
}

.topbar {
    height: 28px;
    background: #f2f6fc;
    color: #435066;
    font-size: 9px
}

.topbar .page-container {
    height: 100%
}

.toplinks {
    display: flex;
    gap: 35px
}

.toplinks i {
    margin-right: 5px;
    color: #27446c
}

.navbar {
    height: 72px;
    padding: 0;
    background: #fff;
    border-bottom: 1px solid #f4f6fa
}

.brand {
    width: 90px;
    text-decoration: none;
    color: #111;
    display: flex;
    flex-direction: column;
    line-height: 1
}

.brand>span {
    font-size: 34px;
    line-height: 28px;
    font-weight: 800;
    letter-spacing: -5px;
    color: #0e57d9
}

.brand small {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-top: 5px
}

.brand small span {
    color: #657184
}

.navbar-nav {
    display: flex;
    gap: 26px;
    align-items: center
}

.navbar-nav li {
    list-style: none
}

.navbar-nav a {
    color: #111;
    text-decoration: none;
    font-size: 10px;
    font-weight: 500;
    white-space: nowrap;
    padding: 8px 0
}

.navbar-nav a.active {
    color: var(--blue);
    background: #edf4ff;
    padding: 9px 16px;
    border-radius: 20px
}

.services-dropdown {
    display: none
}

@media(min-width:1200px) {
    .navbar-nav .services-menu {
        position: relative
    }

    .services-dropdown {
        display: block;
        position: absolute;
        z-index: 1000;
        top: calc(100% + 16px);
        left: 50%;
        width: 242px;
        margin: 0;
        padding: 8px 0;
        background: #fff;
        border: 1px solid #e4eaf2;
        border-radius: 5px;
        box-shadow: 0 18px 45px rgba(14, 35, 70, .16);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translate(-50%, 10px) scale(.98);
        transform-origin: top center;
        transition: opacity .28s ease, transform .36s cubic-bezier(.2, .8, .2, 1), visibility 0s linear .36s
    }

    .services-dropdown::before {
        content: "";
        position: absolute;
        right: 0;
        bottom: 100%;
        left: 0;
        height: 18px
    }

    .navbar-nav .services-dropdown a {
        display: block;
        padding: 11px 26px;
        font-size: 12px;
        font-weight: 500;
        line-height: 1.45;
        white-space: normal;
        transition: color .2s ease, background-color .2s ease, padding-left .25s ease
    }

    .navbar-nav .services-dropdown a:hover,
    .navbar-nav .services-dropdown a:focus-visible {
        color: var(--blue);
        background: #f4f8ff;
        padding-left: 30px
    }

    .services-menu:hover .services-dropdown,
    .services-menu:focus-within .services-dropdown {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate(-50%, 0) scale(1);
        transition-delay: 0s
    }
}

/* Shared mobile responsiveness */
@media(max-width:1199.98px) {
    html, body { max-width: 100%; overflow-x: hidden }
    img, svg, video, iframe { max-width: 100%; height: auto }
    .navbar { position: relative; z-index: 1050; height: auto; min-height: 72px; padding: 10px 0 }
    .navbar .page-container { width: calc(100% - 32px) !important; flex-wrap: wrap }
    .navbar .brand { width: 92px }
    .navbar .brand img { width: 100%; height: auto }
    .navbar-toggler { width: 44px; height: 42px; padding: 7px; border: 1px solid #dce5f1; border-radius: 8px; box-shadow: none !important }
    .navbar-collapse { flex-basis: 100%; width: 100%; max-height: calc(100vh - 105px); padding: 14px 0 8px; overflow-y: auto; background: #fff }
    .navbar-nav { width: 100%; gap: 0; align-items: stretch; margin: 0 !important }
    .navbar-nav>li { width: 100%; border-bottom: 1px solid #edf1f6 }
    .navbar-nav>li>a { display: flex; min-height: 46px; padding: 12px 4px; align-items: center; justify-content: space-between; font-size: 14px; white-space: normal }
    .navbar-nav a.active { padding: 12px; border-radius: 7px }
    .services-menu>a i { transition: transform .2s ease }
    .services-menu.submenu-open>a i { transform: rotate(45deg) }
    .services-dropdown { display: none; position: static; width: 100%; margin: 0 0 10px; padding: 5px 0 7px 14px; background: #f6f9fd; border-left: 3px solid var(--blue) }
    .services-menu.submenu-open>.services-dropdown { display: block }
    .navbar-nav .services-dropdown a { display: block; padding: 9px 12px; color: #294767; font-size: 13px; line-height: 1.4; white-space: normal }
    .nav-cta { width: 100%; margin-top: 14px; text-align: center }
}

@media(max-width:767.98px) {
    body { zoom: 1; font-size: 14px }
    .page-container, .navbar .page-container, .topbar .page-container, main .page-container, footer .page-container { width: calc(100% - 28px) !important }
    .topbar { height: auto; min-height: 32px; padding: 7px 0; font-size: 10px }
    .topbar .page-container { justify-content: center !important; text-align: center }
    .topbar .toplinks { display: none }
    h1 { overflow-wrap: anywhere }
    h2 { font-size: clamp(26px, 8vw, 34px) }
    p { overflow-wrap: break-word }
    input, select, textarea, button { max-width: 100% }
    input, select, textarea { font-size: 16px !important }
    .hero-copy { padding-right: 0 }
    .hero h1 { font-size: clamp(32px, 10vw, 42px); line-height: 1.12 }
    .hero-ctas, .cta-actions { width: 100%; flex-direction: column; align-items: stretch }
    .hero-ctas .btn, .cta-actions .btn { width: 100%; margin: 0 }
    .service-grid, .category-grid, .blog-grid, .values-grid, .delivery-panels, .procurement-faq-grid { grid-template-columns: 1fr !important }
    .why-grid, .industry-row, .delivery-steps, .delivery-industries, .procurement-industries-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important }
    .metrics-bar { grid-template-columns: repeat(2, minmax(0, 1fr)) }
    .testimonial-track article { flex: 0 0 100%; min-width: 100% }
    .insights>.page-container>.d-flex { gap: 14px; align-items: flex-start !important; flex-direction: column }
    .cta-panel { width: 100%; padding: 26px 20px; text-align: center }
    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 20px }
    .footer-grid>div:first-child { grid-column: 1/-1 }
    .footer-grid p, .footer-grid a { font-size: 12px }
    .footer-grid b { font-size: 13px }
    .copyright { align-items: center; flex-direction: column; font-size: 11px; text-align: center }
}

@media(max-width:479.98px) {
    .why-grid, .industry-row, .delivery-steps, .delivery-industries, .procurement-industries-grid, .metrics-bar, .footer-grid { grid-template-columns: 1fr !important }
    .footer-grid>div:first-child { grid-column: auto }
}

@media(prefers-reduced-motion:reduce) {
    .services-dropdown,
    .navbar-nav .services-dropdown a {
        transition-duration: .01ms !important
    }
}

.nav-cta {
    min-width: 104px
}

.btn {
    border-radius: 3px;
    padding: 12px 22px;
    font-size: 10px;
    font-weight: 600
}

.btn-primary {
    background: #0861e9;
    border-color: #0861e9;
    box-shadow: 0 5px 14px rgba(9, 96, 237, .16)
}

.btn-outline-primary {
    border-color: #0861e9;
    color: #0757d8;
    background: #fff
}

.hero {
    min-height: 420px;
    padding: 48px 0;
    background: linear-gradient(180deg, #f3f8ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.eyebrow {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 800;
    color: #0b63e6;
    margin-bottom: 18px;
}

.section-label {
    font-size: 8px;
    letter-spacing: 1.2px;
    font-weight: 700;
    color: #1764db;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.03;
    letter-spacing: -1.6px;
    font-weight: 900;
    margin: 6px 0 18px;
    color: #071226;
}

.hero h1 .accent {
    color: #0b63e6;
    display: inline-block;
}

.hero-copy>p {
    font-size: 14px;
    line-height: 1.9;
    color: #394958;
    max-width: 520px;
    margin-bottom: 26px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 22px 0 25px
}

.hero-stats div {
    display: flex;
    flex-direction: column
}

.hero-stats i {
    font-size: 20px;
    color: var(--blue);
    margin-bottom: 6px
}

.hero-stats b {
    font-size: 11px
}

.hero-stats small {
    font-size: 8px;
    margin-top: 3px
}

.hero-art {
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-art img {
    width: 100%;
    max-width: 650px;
    height: auto;
    object-fit: contain;
}
.hero-copy {
    padding: 28px 36px 28px 0;
}

.hero-ctas .btn {
    border-radius: 8px;
    padding: 12px 22px;
    font-weight: 700;
    font-size: 14px;
}

.btn-hero-primary {
    background: linear-gradient(180deg, #0b63e6 0%, #0850c8 100%);
    color: #fff;
    border: none;
    box-shadow: 0 8px 20px rgba(11,99,230,0.18);
}

.btn-hero-secondary {
    background: #fff;
    color: #0b63e6;
    border: 2px solid rgba(11,99,230,0.18);
}

@media (max-width: 992px) {
    .hero h1 { font-size: 36px; }
    .hero-art { height: 300px; background-position: center 40%; }
}

/* .logos {
    padding: 2px 0 34px
} */

.section-label {
    text-align: center
}

.logos {
    padding: 28px 0 50px;
}

.logo-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 42px;
    margin-top: 26px;
}

.logo-row img {
    display: block;
    height: 32px;
    width: auto;
    object-fit: contain;
    opacity: .85;
    transition: .3s;
}

.logo-row img:hover {
    opacity: 1;
}

/* 
.logo-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #70809a;
    font-size: 20px;
    margin-top: 18px
}

.logo-row .hp {
    border: 2px solid #70809a;
    border-radius: 50%;
    font-weight: 700;
    font-style: italic;
    padding: 2px 4px;
    font-size: 14px
}

.cisco {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 12px;
    letter-spacing: 4px
}

.cisco b {
    letter-spacing: 1px
}

.aws {
    font-size: 24px
} */

.section-space {
    padding: 33px 0
}

.section-space-sm {
    padding: 14px 0 19px
}

.services-layout {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 30px
}

.intro {
    padding: 15px 5px
}

.intro .eyebrow {
    margin-bottom: 16px
}

.intro h2,
.why h2,
.industries h2,
.testimonials h2,
.insights h2 {
    font-size: 22px;
    line-height: 1.15;
    font-weight: 750;
    margin: 0 0 20px
}

.intro p {
    color: #596579;
    font-size: 10px;
    line-height: 1.8;
    margin: 0 0 28px;
    max-width: 235px
}

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

.service-card,
.category-card,
.testimonial-grid article {
    border: 1px solid #edf1f7;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(15, 42, 85, .08)
}

.service-card {
    height: 181px;
    padding: 18px 20px
}

.service-card>i {
    display: grid;
    place-items: center;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: #eef5ff;
    color: #0861ed;
    font-size: 21px;
    margin-bottom: 13px
}

.service-card h3 {
    font-size: 12px;
    font-weight: 650;
    margin-bottom: 10px
}

.service-card p {
    font-size: 8.5px;
    line-height: 1.7;
    color: #5d6675;
    min-height: 53px;
    margin: 0
}

.service-card a,
.category-card>a,
.insights a {
    font-size: 8px;
    text-decoration: none;
    font-weight: 600;
    color: #0960ed
}

.why {
    padding: 5px 0
}

.why-panel,
.metrics-bar {
    background: linear-gradient(115deg, #073572, #031f4d);
    border-radius: 9px;
    color: #fff
}

.why-panel {
    padding: 24px 25px 26px;
    text-align: center
}

.section-label.light {
    color: #b6ccef
}

.why h2 {
    font-size: 20px;
    margin: 8px 0 23px
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr)
}

/* Who We Are section */
.who {
    padding: 56px 0;
    background: #fff;
}
.who-media img {
    width: 100%;
    border-radius: 12px;
    display: block;
    box-shadow: 0 18px 40px rgba(15, 42, 85, .08);
}
.who-copy .eyebrow {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 800;
    color: #0b63e6;
    margin-bottom: 10px;
}
.who-copy h2 {
    font-size: 32px;
    line-height: 1.03;
    font-weight: 800;
    color: #071226;
    margin: 0 0 10px;
}
.heading-underline {
    width: 48px;
    height: 4px;
    background: #0b63e6;
    border-radius: 2px;
    margin: 8px 0 18px;
}
.who-copy p {
    font-size: 14px;
    line-height: 1.9;
    color: #596579;
    margin-bottom: 12px;
}
.who-copy p.lead {
    font-weight: 600;
    color: #313a46;
}

@media (max-width: 768px) {
    .who { padding: 32px 0; }
    .who-copy h2 { font-size: 26px; }
    .heading-underline { margin-bottom: 12px; }
}

/* GLOBAL REACH */
.reach {
    padding: 40px 0 19px;
}
.reach-panel {
    position: relative;
    min-height: 252px;
    overflow: hidden;
    border: 1px solid rgba(103, 157, 222, .48);
    border-radius: 11px;
    background: #031a35;
    box-shadow: 0 4px 10px rgba(1, 18, 40, .18);
}
.reach-map {
    position: absolute;
    inset: 0 0 0 34%;
    background: url('../images/global-reach-map.png') center / cover no-repeat;
    opacity: .91;
}
.reach-map::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #031a35 0%, rgba(3, 26, 53, .88) 9%, transparent 34%);
}
.reach-left {
    position: relative;
    z-index: 2;
    width: 49%;
    padding: 29px 0 25px 37px;
    color: #fff;
}
.reach-left .eyebrow {
    margin: 0 0 13px;
    color: #75a9f6;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-align: left;
}
.reach-left h3 {
    margin: 0 0 28px;
    color: #fff;
    font-size: 27px;
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .35);
}
.reach-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 500px;
}
.reach-stats .stat {
    position: relative;
    min-width: 0;
    padding: 0 14px;
}
.reach-stats .stat:first-child { padding-left: 0; }
.reach-stats .stat:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 3px;
    right: 0;
    width: 1px;
    height: 32px;
    background: rgba(124, 167, 222, .22);
}
.reach-stats .stat-head {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}
.reach-stats .icon {
    display: grid;
    flex: 0 0 31px;
    width: 31px;
    height: 31px;
    place-items: center;
    border: 2px solid #1268e8;
    border-radius: 50%;
    color: #70aaff;
    font-size: 18px;
    filter: drop-shadow(0 0 5px rgba(20, 107, 255, .45));
}
.reach-stats .num {
    color: #fff;
    font-size: 21px;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .55);
}
.reach-stats .num.highlight { color: #f5d45b; }
.reach-stats .label {
    margin: 10px 0 0 42px;
    color: rgba(255, 255, 255, .82);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.55;
}

@media (max-width: 992px) {
    .reach-panel { min-height: 410px; }
    .reach-map { inset: 0; opacity: .42; }
    .reach-map::before { background: linear-gradient(90deg, #031a35 0%, rgba(3,26,53,.83) 60%, rgba(3,26,53,.2)); }
    .reach-left { width: 100%; padding: 34px; }
    .reach-stats { width: min(100%, 560px); }
}

@media (max-width: 650px) {
    .reach-panel { min-height: 535px; }
    .reach-left { padding: 28px 22px; }
    .reach-left h3 { font-size: 25px; }
    .reach-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 0; }
    .reach-stats .stat:nth-child(2)::after { display: none; }
    .reach-stats .label { margin-left: 41px; }
}

/* OUR STORY */
.our-story {
    padding: 4px 0 18px;
    background: #fff;
    text-align: center;
}
.story-eyebrow {
    margin-bottom: 9px;
    color: #1265e9;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .75px;
    line-height: 1;
}
.our-story h2 {
    margin: 0;
    color: #081124;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.2px;
}
.story-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 28px;
    width: min(1000px, 100%);
    margin: 22px auto 0;
}
.story-steps::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 24px;
    left: 10%;
    right: 10%;
    border-top: 2px dotted #abc7f4;
}
.story-step {
    position: relative;
    z-index: 1;
    margin: 0;
}
.story-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    place-items: center;
    border: 1px solid #d4deed;
    border-radius: 50%;
    background: #fff;
    color: #1765df;
    font-size: 24px;
    box-shadow: 0 2px 6px rgba(19, 69, 141, .08);
}
.story-step h3 {
    margin: 0 0 9px;
    color: #071024;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
}
.story-step p {
    margin: 0;
    color: #1c2a43;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.65;
}

@media (max-width: 767px) {
    .our-story { padding-bottom: 28px; }
    .our-story h2 { font-size: 21px; }
    .story-steps {
        grid-template-columns: 1fr;
        column-gap: 0;
        gap: 25px;
        width: 100%;
        margin-top: 22px;
    }
    .story-steps::before {
        top: 24px;
        bottom: 24px;
        left: 50%;
        right: auto;
        border-top: 0;
        border-left: 2px dotted #abc7f4;
    }
    .story-step {
        width: min(280px, 100%);
        margin: auto;
        padding: 0 12px 10px;
        background: #fff;
    }
}

/* OUR CORE VALUES */
.core-values {
    padding: 0 0 55px;
    background: #fff;
}
.core-values h2 {
    margin: 0 0 10px;
    color: #1765df;
    font-size: 9px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .65px;
    text-align: center;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.value-card {
    display: flex;
    align-items: flex-start;
    min-height: 126px;
    padding: 22px 24px;
    border: 1px solid #edf1f7;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(15, 42, 85, .08);
}
.value-icon {
    display: grid;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    margin-right: 24px;
    place-items: center;
    border: 3px solid #d7e6ff;
    border-radius: 50%;
    background: #1261dd;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 3px 9px rgba(18, 97, 221, .24);
}
.value-copy h3 {
    margin: 2px 0 7px;
    color: #0a1428;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
}
.value-copy p {
    margin: 0;
    color: #17243a;
    font-size: 9px;
    font-weight: 500;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .values-grid { gap: 12px; }
    .value-card { padding: 20px 16px; }
    .value-icon { margin-right: 15px; }
}

@media (max-width: 767px) {
    .core-values { padding-bottom: 40px; }
    .core-values h2 { font-size: 10px; margin-bottom: 15px; }
    .values-grid { grid-template-columns: 1fr; gap: 14px; }
    .value-card { min-height: 126px; }
}

/* HOW WE DELIVER */
.delivery {
    padding: 4px 0 55px;
    background: #fff;
    text-align: center;
}
.delivery-eyebrow {
    margin-bottom: 8px;
    color: #1765df;
    font-size: 9px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .7px;
}
.delivery > .page-container > h2 {
    margin: 0;
    color: #071024;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.2px;
}
.delivery-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    width: min(1040px, 100%);
    margin: 16px auto 22px;
}
.delivery-steps::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 25px;
    left: 8.33%;
    right: 8.33%;
    border-top: 2px dotted #abc7f4;
}
.delivery-step {
    position: relative;
    z-index: 1;
}
.delivery-icon {
    display: grid;
    width: 50px;
    height: 50px;
    margin: 0 auto 9px;
    place-items: center;
    border: 1px solid #d5dfed;
    border-radius: 50%;
    background: #fff;
    color: #1765df;
    font-size: 23px;
    box-shadow: 0 2px 6px rgba(19, 69, 141, .08);
}
.delivery-step h3 {
    margin: 0 0 8px;
    color: #071024;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
}
.delivery-step p {
    margin: 0;
    color: #1b2941;
    font-size: 9px;
    font-weight: 500;
    line-height: 1.65;
}
.delivery-panels {
    display: grid;
    grid-template-columns: 265px minmax(0, 1fr) 295px;
    gap: 14px;
    text-align: left;
}
.delivery-panel {
    min-height: 276px;
    padding: 19px 24px;
    border: 1px solid #edf1f7;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(15, 42, 85, .07);
}
.delivery-panel > h3 {
    margin: 0 0 19px;
    color: #1765df;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .55px;
}
.expertise-panel ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.expertise-panel li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #0d192d;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
}
.expertise-panel li i {
    width: 20px;
    color: #1765df;
    font-size: 18px;
    text-align: center;
}
.industries-panel { text-align: center; }
.delivery-industries {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 13px 10px;
}
.delivery-industries > div {
    display: flex;
    min-height: 99px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 1px solid #edf1f7;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 3px 12px rgba(15, 42, 85, .045);
}
.delivery-industries i {
    color: #1765df;
    font-size: 29px;
    line-height: 1;
}
.delivery-industries span {
    color: #0c172b;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
}
.ecosystem-panel > h3 { text-align: center; }
.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 19px 18px;
}
.ecosystem-grid > img {
    display: block;
    width: 100%;
    height: 29px;
    object-fit: contain;
}
.text-logo {
    display: flex;
    min-height: 29px;
    align-items: center;
    justify-content: center;
    color: #172033;
    font-weight: 700;
}
.google-logo { gap: 5px; font-size: 11px; }
.google-logo i { color: #2e8cff; font-size: 18px; }
.fortinet-logo { color: #333747; font-size: 13px; letter-spacing: .4px; }
.hpe-logo { align-items: flex-start; gap: 6px; font-size: 8px; line-height: 1.05; }
.hpe-logo i { display: block; width: 25px; height: 8px; border: 2px solid #08a979; }

@media (max-width: 991px) {
    .delivery-steps { grid-template-columns: repeat(3, 1fr); gap: 28px 0; }
    .delivery-steps::before { display: none; }
    .delivery-panels { grid-template-columns: 1fr; }
    .delivery-panel { min-height: auto; }
    .delivery-industries > div { min-height: 110px; }
    .ecosystem-grid { width: min(500px, 100%); margin: auto; }
}

@media (max-width: 600px) {
    .delivery > .page-container > h2 { font-size: 20px; }
    .delivery-steps { grid-template-columns: repeat(2, 1fr); }
    .delivery-industries { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .delivery-industries > div:last-child { grid-column: 1 / -1; }
}

/* WHY BUSINESSES CHOOSE TECHIFYCARE */
.business-choice {
    padding: 0 0 58px;
    background: #fff;
}
.choice-layout {
    display: grid;
    grid-template-columns: 46% 1fr;
    align-items: center;
    gap: 46px;
}
.choice-media img {
    display: block;
    width: 100%;
    height: 244px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(8, 31, 67, .13);
}
.choice-content h2 {
    margin: 0 0 19px;
    color: #1262db;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .45px;
}
.choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 42px;
}
.choice-item {
    display: flex;
    min-width: 0;
    align-items: flex-start;
    gap: 17px;
}
.choice-icon {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 2px solid #d6e5ff;
    border-radius: 50%;
    background: #1261dd;
    color: #fff;
    font-size: 21px;
    box-shadow: 0 3px 8px rgba(18, 97, 221, .18);
}
.choice-item h3 {
    margin: 1px 0 5px;
    color: #0a1427;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
}
.choice-item p {
    margin: 0;
    color: #17243a;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.55;
}

@media (max-width: 991px) {
    .choice-layout { grid-template-columns: 1fr; gap: 30px; }
    .choice-media img { height: auto; aspect-ratio: 2.1 / 1; }
    .choice-content h2 { text-align: center; }
}

@media (max-width: 600px) {
    .business-choice { padding-bottom: 42px; }
    .choice-grid { grid-template-columns: 1fr; gap: 20px; }
    .choice-item { width: min(320px, 100%); margin: auto; }
}

.why-grid>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px dotted rgba(255, 255, 255, .45)
}

.why-grid>div:last-child {
    border: 0
}

.why-grid i {
    font-size: 34px;
    color: #1674ff;
    margin-bottom: 10px
}

.why-grid b {
    font-size: 10px;
    margin-bottom: 8px
}

.why-grid small {
    font-size: 8px;
    line-height: 1.65;
    color: #dce7f6
}

.categories {
    padding: 10px 0
}

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

.category-card {
    min-height: 265px;
    padding: 17px 20px;
    display: flex;
    flex-direction: column
}

.category-card .eyebrow {
    font-size: 7px;
    margin-bottom: 12px
}

.cat-item {
    display: flex;
    gap: 13px;
    margin-bottom: 10px
}

.cat-item>i {
    flex: 0 0 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #eff5ff;
    color: #1268ef;
    font-size: 18px
}

.cat-item span {
    display: flex;
    flex-direction: column
}

.cat-item b {
    font-size: 10px;
    margin-bottom: 3px
}

.cat-item small {
    font-size: 8px;
    color: #546075;
    line-height: 1.4
}

.category-card>a {
    margin-top: auto
}

.industries h2 {
    font-size: 19px;
    margin: 8px 0 17px
}

.industry-row {
    display: grid;
    grid-template-columns: repeat(8, 1fr)
}

.industry-row div {
    border-right: 1px solid #dfe7f2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px
}

.industry-row div:last-child {
    border: 0
}

.industry-row i {
    font-size: 22px;
    color: #55759e
}

.industry-row small {
    font-size: 8px;
    color: #425067
}

.metrics {
    padding: 0 0 25px
}

.metrics-bar {
    min-height: 88px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    padding: 15px 25px
}

.metrics-bar>div {
    display: flex;
    align-items: center;
    gap: 16px;
    border-right: 1px dotted rgba(255, 255, 255, .45);
    padding-left: 4px
}

.metrics-bar>div:last-child {
    border: 0
}

.metrics-bar i {
    font-size: 23px;
    color: #1780ff;
    border: 1px solid rgba(39, 125, 255, .35);
    background: rgba(22, 95, 192, .2);
    width: 43px;
    height: 43px;
    border-radius: 50%;
    display: grid;
    place-items: center
}

.metrics-bar span {
    display: flex;
    flex-direction: column
}

.metrics-bar b {
    font-size: 18px
}

.metrics-bar small {
    font-size: 8px;
    line-height: 1.7
}

.testimonials {
    padding-top: 5px
}

.testimonials h2 {
    font-size: 20px;
    margin: 8px 0 17px
}

.testimonial-carousel {
    overflow: hidden
}

.testimonial-grid {
    overflow: hidden;
    text-align: left
}

.testimonial-track {
    display: flex;
    gap: 18px;
    transition: transform .55s ease
}

.testimonial-track article {
    flex: 0 0 calc((100% - 36px) / 3);
    height: 144px;
    padding: 15px 17px
}

.quote {
    color: #1766e2;
    font-size: 13px
}

.quote span {
    color: #f9aa19;
    margin-left: 9px;
    font-size: 10px;
    letter-spacing: 2px
}

.testimonial-grid p {
    font-size: 8.5px;
    color: #4e5968;
    line-height: 1.6;
    height: 53px;
    margin: 9px 0 2px
}

.person {
    display: flex;
    align-items: center;
    gap: 9px
}

.avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    font-weight: 700;
    background: #714834
}

.a2 {
    background: #75504a
}

.a3 {
    background: #2f5360
}

.person span {
    display: flex;
    flex-direction: column
}

.person b {
    font-size: 8px
}

.person small {
    font-size: 7px;
    margin-top: 2px
}

.carousel-indicators {
    position: static;
    margin: 12px 0 0;
    gap: 6px
}

.carousel-indicators [data-bs-target] {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #cddcf5;
    border: 0;
    margin: 0 opacity: 1
}

.carousel-indicators .active {
    width: 16px;
    border-radius: 999px;
    background: #0960ed
}

.insights {
    padding-bottom: 23px
}

.insights h2 {
    font-size: 19px;
    margin: 7px 0 11px
}

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

.blog-card {
    position: relative;
    height: 145px;
    padding: 17px;
    border-radius: 7px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.blog-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg,
            rgba(0, 21, 48, .95),
            rgba(0, 37, 86, .12));
    z-index: 1;
}

.blog-content {
    position: relative;
    z-index: 2;
}

.blog-card {
    --img: none;

    background-image:
        linear-gradient(0deg,
            rgba(0, 21, 48, .95),
            rgba(0, 37, 86, .12)),
        var(--img);

    background-size: cover;
    background-position: center;
    transition: background-size .4s ease;
}

.blog-card:hover {
    background-size: 110%, 110%;
}

.blog1 {
    background-size: 864px 1821px;
    background-position: -57px -1465px
}

.blog2 {
    background-size: 864px 1821px;
    background-position: -306px -1465px
}

.blog3 {
    background-size: 864px 1821px;
    background-position: -555px -1465px
}

.blog-card span {
    align-self: flex-start;
    background: #1460cb;
    border-radius: 2px;
    padding: 4px 7px;
    font-size: 7px;
    margin-bottom: 8px
}

.blog-card h3 {
    font-size: 11px;
    line-height: 1.45;
    margin: 0 0 7px
}

.blog-card a {
    color: #fff
}

.cta-panel {
    height: 86px;
    border-radius: 8px 8px 0 0;
    background: linear-gradient(105deg, #0965ec, #004bcb);
    color: #fff;
    display: flex;
    align-items: center;
    padding: 14px 30px;
    gap: 28px
}

.brand.inverse>span,
.brand.inverse small {
    color: #fff
}

.cta-copy {
    flex: 1
}

.cta-copy h2 {
    font-size: 20px;
    margin: 0 0 5px
}

.cta-copy p {
    font-size: 8px;
    line-height: 1.4;
    margin: 0
}

.cta-actions {
    display: flex;
    gap: 12px
}

.cta-actions .btn {
    min-width: 140px
}

.cta-actions .btn-outline-light {
    min-width: 105px
}

footer {
    background: #03254b;
    color: #fff;
    padding: 16px 0 8px
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr repeat(4, 1fr);
    gap: 35px
}

.small-brand {
    width: auto
}

.small-brand>span {
    font-size: 25px
}

.footer-grid p {
    font-size: 7px;
    color: #b6c4d7;
    line-height: 1.55;
    margin-top: 8px
}

.social {
    display: flex;
    gap: 10px;
    color: #bac8d9
}

.footer-grid>div:not(:first-child) {
    display: flex;
    flex-direction: column
}

.footer-grid b {
    font-size: 8px;
    margin-bottom: 7px
}

.footer-grid a {
    font-size: 7px;
    color: #fff;
    margin-bottom: 5px;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease
}

.footer-grid a:visited {
    color: #fff;
    text-decoration: none
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
    color: #8fc0ff;
    text-decoration: none;
    transform: translateX(3px)
}

.footer-grid ul,
.footer-grid li {
    margin: 0;
    padding: 0;
    list-style: none
}

.footer-grid li a {
    display: inline-block
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 12px;
    padding-top: 7px;
    display: flex;
    justify-content: space-between;
    font-size: 6px;
    color: #9fb0c4
}

.copyright i {
    color: #f34a67
}

@media(max-width:1199px) {
    .navbar {
        height: auto;
        min-height: 66px
    }

    .navbar-collapse {
        padding: 15px 0
    }

    .navbar-nav {
        align-items: flex-start;
        gap: 8px
    }

    .nav-cta {
        display: inline-block;
        margin-top: 10px
    }

    .hero-art {
        opacity: .85
    }

    .page-container {
        width: min(960px, calc(100% - 36px))
    }
}

@media(max-width:991px) {
    body {
        font-size: 12px
    }

    .toplinks span:nth-child(-n+2) {
        display: none
    }

    .hero {
        height: auto;
        padding: 45px 0
    }

    .hero-copy {
        position: relative;
        z-index: 1
    }

    .hero-art {
        height: 300px;
        /* background-position: -300px -94px */
    }

    .services-layout {
        grid-template-columns: 1fr
    }

    .intro {
        text-align: center
    }

    .intro p {
        margin-left: auto;
        margin-right: auto
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 22px
    }

    .why-grid>div {
        border: 0
    }

    .category-grid {
        grid-template-columns: 1fr
    }

    .category-card {
        min-height: auto
    }

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

    .metrics-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px
    }

    .metrics-bar>div {
        border: 0
    }

    .blog1,
    .blog2,
    .blog3 {
        background-size: 864px 1821px
    }

    .cta-panel {
        height: auto;
        flex-wrap: wrap
    }

    .footer-grid {
        grid-template-columns: 2fr repeat(2, 1fr)
    }
}

@media(max-width:767px) {
    .page-container {
        width: calc(100% - 28px)
    }

    .topbar {
        height: 33px
    }

    .toplinks span {
        display: none
    }

    .hero h1 {
        font-size: 36px
    }

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

    .hero-art {
        height: 245px;
        /* background-position: -405px -100px */
    }

    .logo-row {
        flex-wrap: wrap;
        gap: 23px;
        justify-content: center
    }

    .services-layout {
        display: block
    }

    .service-grid,
    .testimonial-grid,
    .blog-grid {
        grid-template-columns: 1fr
    }

    .service-card {
        height: auto
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .category-grid {
        grid-template-columns: 1fr
    }

    .metrics-bar {
        grid-template-columns: 1fr
    }

    .industry-row {
        grid-template-columns: repeat(2, 1fr)
    }

    .testimonial-grid article {
        height: auto
    }

    .testimonial-grid p {
        height: auto
    }

    .blog-card {
        height: 160px
    }

    .cta-panel {
        justify-content: center;
        text-align: center
    }

    .cta-copy {
        flex-basis: 100%;
        order: -1
    }

    .cta-actions {
        flex-wrap: wrap;
        justify-content: center
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid>div:first-child {
        grid-column: 1/-1
    }

    .copyright {
        gap: 10px;
        flex-direction: column
    }
}

@media(max-width:420px) {
    .hero h1 {
        font-size: 31px
    }

    .hero .btn {
        padding: 11px 13px
    }

    .hero-art {
        /* background-position: -445px -100px */
    }

    .why-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-grid>div:first-child {
        grid-column: auto
    }
}

.navbar .page-container {
    width: min(1120px, calc(100% - 48px)) !important
}

.hero-art {
    position: relative;
    /* background-position: -415px -94px */
}

.hero-art:after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 52px;
    background: linear-gradient(transparent, #fff 82%)
}

/* Enterprise procurement */
.procurement-section {
    padding: 30px 0 38px;
    background: #fff;
}

.procurement-layout {
    display: grid;
    grid-template-columns: 1fr 1.14fr;
    align-items: center;
    gap: 64px;
}

.procurement-visual {
    height: auto;
    overflow: hidden;
    border-radius: 11px;
    box-shadow: 0 2px 8px rgba(7, 18, 38, .12);
}

.procurement-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.procurement-copy {
    max-width: 500px;
}

.procurement-label {
    margin-bottom: 9px;
    color: #075de5;
    font-size: 9px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .55px;
}

.procurement-copy h2 {
    margin: 0 0 17px;
    color: #080f1d;
    font-size: 29px;
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -.65px;
}

.procurement-copy p {
    margin: 0 0 14px;
    color: #3e4958;
    font-size: 12px;
    line-height: 1.65;
}

.procurement-benefits {
    display: grid;
    gap: 11px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.procurement-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #192231;
    font-size: 11px;
    font-weight: 500;
}

.procurement-benefits i {
    display: grid;
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #0960ed;
    font-size: 10px;
    line-height: 1;
}

/* Procurement consultation CTA */
.procurement-cta-section {
    padding: 0 0 34px;
    background: #fff;
}

.procurement-cta {
    position: relative;
    display: flex;
    min-height: 126px;
    align-items: center;
    padding: 24px 48px;
    overflow: hidden;
    border-radius: 12px;
    color: #fff;
    background:
        radial-gradient(circle at 14% 20%, rgba(22, 104, 230, .28), transparent 31%),
        linear-gradient(112deg, #031949 0%, #03153d 54%, #061f55 100%);
    box-shadow: 0 7px 18px rgba(3, 20, 57, .14);
}

.procurement-cta::after {
    content: "";
    position: absolute;
    right: -35px;
    bottom: -95px;
    width: 290px;
    height: 190px;
    border: 1px solid rgba(47, 118, 235, .13);
    border-radius: 50%;
    transform: rotate(-12deg);
}

.procurement-cta-icon {
    position: relative;
    z-index: 1;
    display: grid;
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    margin-right: 26px;
    place-items: center;
    border: 1px solid #1670f2;
    border-radius: 50%;
    color: #fff;
    background: rgba(0, 67, 168, .18);
}

.procurement-cta-icon i {
    font-size: 25px;
    line-height: 1;
}

.procurement-cta-copy {
    position: relative;
    z-index: 1;
}

.procurement-cta-copy h2 {
    margin: 0 0 7px;
    color: #fff;
    font-size: 25px;
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -.4px;
}

.procurement-cta-copy p {
    margin: 0;
    color: rgba(255, 255, 255, .92);
    font-size: 11px;
    line-height: 1.4;
    font-weight: 500;
}

.procurement-cta-button {
    position: relative;
    z-index: 1;
    display: inline-flex;
    min-width: 220px;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-left: auto;
    border-radius: 3px;
    color: #fff;
    background: #0861ed;
    box-shadow: 0 6px 14px rgba(0, 67, 190, .28);
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
}

.procurement-cta-button:hover {
    color: #fff;
    background: #0757d8;
}

/* Solutions we source */
.sourced-solutions {
    padding: 0 0 34px;
    background: #fff;
}

.sourced-solutions-heading {
    position: relative;
    margin-bottom: 22px;
    padding-bottom: 11px;
    text-align: center;
}

.sourced-solutions-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 28px;
    height: 2px;
    border-radius: 2px;
    background: #0960ed;
    transform: translateX(-50%);
}

.sourced-solutions-label {
    margin-bottom: 5px;
    color: #0960ed;
    font-size: 9px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .8px;
}

.sourced-solutions-heading h2 {
    margin: 0;
    color: #080f1d;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -.35px;
}

.sourced-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.sourced-solution-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 15px;
    min-height: 104px;
    align-items: start;
    padding: 8px 30px 10px;
}

.sourced-solution-item + .sourced-solution-item {
    border-left: 1px solid #e5ebf4;
}

.sourced-solution-icon {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border-radius: 50%;
    color: #0960ed;
    background: #edf4ff;
}

.sourced-solution-icon i {
    font-size: 23px;
    line-height: 1;
}

.sourced-solution-item h3 {
    margin: 8px 0 8px;
    color: #101827;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 700;
}

.sourced-solution-item p {
    max-width: 215px;
    margin: 0;
    color: #495567;
    font-size: 10px;
    line-height: 1.65;
}

/* Our procurement process */
.procurement-process {
    padding: 0 0 38px;
    background: #fff;
}

.procurement-process-heading {
    margin-bottom: 20px;
    text-align: center;
}

.procurement-process-heading h2 {
    margin: 0;
    color: #10203d;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .65px;
}

.procurement-process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.procurement-process-grid::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 28px;
    right: 9%;
    left: 9%;
    height: 1px;
    background: #b9d4fb;
}

.procurement-step {
    position: relative;
    z-index: 1;
    padding: 0 20px;
    text-align: center;
}

.procurement-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 26px;
    right: -2px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #4c91f2;
}

.procurement-step-icon {
    display: grid;
    width: 56px;
    height: 56px;
    margin: 0 auto 17px;
    place-items: center;
    border-radius: 50%;
    color: #0960ed;
    background: #edf4ff;
}

.procurement-step-icon i {
    font-size: 23px;
    line-height: 1;
}

.procurement-step h3 {
    margin: 0 0 9px;
    color: #111a2a;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 700;
}

.procurement-step p {
    max-width: 155px;
    margin: 0 auto;
    color: #4b5666;
    font-size: 10px;
    line-height: 1.6;
}

/* Why organizations choose us */
.why-procurement {
    padding: 0 0 38px;
    background: #fff;
}

.why-procurement-layout {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    align-items: center;
    gap: 54px;
}

.why-procurement-copy {
    padding-left: 38px;
}

.why-procurement-label {
    margin-bottom: 10px;
    color: #0960ed;
    font-size: 9px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .65px;
}

.why-procurement-copy h2 {
    margin: 0 0 20px;
    color: #080f1d;
    font-size: 28px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -.55px;
}

.why-procurement-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.why-procurement-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #263142;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 500;
}

.why-procurement-list i {
    display: grid;
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #0960ed;
    font-size: 10px;
    line-height: 1;
}

.why-procurement-visual {
    height: auto;
    overflow: hidden;
    border-radius: 10px;
    width: 85%;
    margin: 0 auto;
}

.why-procurement-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Industries we serve */
.procurement-industries {
    padding: 0 0 38px;
    background: #fff;
}

.procurement-industries-heading {
    margin-bottom: 24px;
    text-align: center;
}

.procurement-industries-heading h2 {
    margin: 0;
    color: #0960ed;
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .75px;
}

.procurement-industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: center;
}

.procurement-industry {
    position: relative;
    min-height: 67px;
    text-align: center;
}

.procurement-industry + .procurement-industry::before {
    content: "";
    position: absolute;
    top: 2px;
    bottom: 0;
    left: 0;
    width: 1px;
    background: #d7e0ec;
}

.procurement-industry i {
    display: block;
    height: 34px;
    color: #0960ed;
    font-size: 28px;
    line-height: 1;
}

.procurement-industry h3 {
    margin: 13px 0 0;
    color: #182334;
    font-size: 11px;
    line-height: 1;
    font-weight: 600;
}

/* Frequently asked questions */
.procurement-faq {
    padding: 0 0 38px;
    background: #fff;
}

.procurement-faq-heading {
    margin-bottom: 18px;
    text-align: center;
}

.procurement-faq-heading h2 {
    margin: 0;
    color: #0960ed;
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .75px;
}

.procurement-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 8px;
}

.procurement-faq-column {
    display: grid;
    gap: 6px;
}

.procurement-faq-item {
    overflow: hidden;
    border: 1px solid #d7e0ec;
    border-radius: 3px;
    background: #fff;
}

.procurement-faq-item summary {
    position: relative;
    display: flex;
    min-height: 39px;
    align-items: center;
    padding: 8px 42px 8px 18px;
    color: #172131;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.procurement-faq-item summary::-webkit-details-marker {
    display: none;
}

.procurement-faq-item summary::after {
    content: "\F282";
    position: absolute;
    top: 50%;
    right: 16px;
    color: #263349;
    font-family: "bootstrap-icons";
    font-size: 11px;
    font-weight: 400;
    transform: translateY(-50%);
    transition: transform .2s ease;
}

.procurement-faq-item[open] summary::after {
    transform: translateY(-50%) rotate(180deg);
}

.procurement-faq-item[open] summary {
    border-bottom: 1px solid #e4eaf2;
}

.procurement-faq-item p {
    margin: 0;
    padding: 11px 18px 13px;
    color: #556173;
    font-size: 11px;
    line-height: 1.55;
}

@media(max-width:991px) {
    .procurement-layout {
        gap: 38px;
    }

    .procurement-visual {
        height: 270px;
    }
}

@media(max-width:767px) {
    .procurement-section {
        padding: 42px 0 48px;
    }

    .procurement-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .procurement-visual {
        height: auto;
        aspect-ratio: 1.46 / 1;
    }

    .procurement-copy {
        max-width: none;
    }

    .procurement-copy h2 {
        font-size: 27px;
    }

    .procurement-copy p,
    .procurement-benefits li {
        font-size: 12px;
    }

    .procurement-cta-section {
        padding-bottom: 28px;
    }

    .procurement-cta {
        flex-wrap: wrap;
        padding: 25px 24px;
    }

    .procurement-cta-icon {
        flex-basis: 50px;
        width: 50px;
        height: 50px;
        margin-right: 17px;
    }

    .procurement-cta-copy h2 {
        font-size: 23px;
    }

    .procurement-cta-button {
        width: 100%;
        margin: 22px 0 0;
    }

    .sourced-solutions {
        padding-bottom: 30px;
    }

    .sourced-solutions-grid {
        grid-template-columns: 1fr;
    }

    .sourced-solution-item {
        grid-template-columns: 52px 1fr;
        min-height: 0;
        padding: 20px 10px;
    }

    .sourced-solution-item + .sourced-solution-item {
        border-top: 1px solid #e5ebf4;
        border-left: 0;
    }

    .sourced-solution-icon {
        width: 52px;
        height: 52px;
    }

    .sourced-solution-item h3 {
        font-size: 13px;
    }

    .sourced-solution-item p {
        max-width: none;
        font-size: 11px;
    }

    .procurement-process-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .procurement-process-grid::before {
        top: 26px;
        bottom: 26px;
        left: 36px;
        width: 1px;
        height: auto;
    }

    .procurement-step {
        display: grid;
        grid-template-columns: 52px 1fr;
        column-gap: 18px;
        min-height: 94px;
        padding: 0 8px;
        text-align: left;
    }

    .procurement-step:not(:last-child)::after {
        display: none;
    }

    .procurement-step-icon {
        grid-row: 1 / span 2;
        width: 52px;
        height: 52px;
        margin: 0;
    }

    .procurement-step h3 {
        align-self: end;
        margin-bottom: 5px;
        font-size: 12px;
    }

    .procurement-step p {
        max-width: none;
        margin: 0;
        font-size: 11px;
    }

    .why-procurement-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .why-procurement-copy {
        padding-left: 0;
    }

    .why-procurement-copy h2 {
        font-size: 26px;
    }

    .why-procurement-list li {
        font-size: 11px;
    }

    .why-procurement-visual {
        height: auto;
        aspect-ratio: 2 / 1;
    }

    .procurement-industries-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 24px;
    }

    .procurement-industry:nth-child(4)::before {
        display: none;
    }

    .procurement-industry h3 {
        font-size: 11px;
    }

    .procurement-faq-grid {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 0;
    }

    .procurement-faq-column {
        gap: 6px;
    }

    .procurement-faq-item summary,
    .procurement-faq-item p {
        font-size: 11px;
    }
}

@media(max-width:420px) {
    .procurement-industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .procurement-industry:nth-child(4)::before {
        display: block;
    }

    .procurement-industry:nth-child(odd)::before {
        display: none;
    }
}

@media(max-width:1199px) {
    .navbar .page-container {
        width: min(960px, calc(100% - 36px)) !important
    }
}

@media(max-width:767px) {
    .navbar .page-container {
        width: calc(100% - 28px) !important
    }
}

/* Refined site-wide typography scale */
body {
    font-size: 14px;
    line-height: 1.6
}

.topbar {
    font-size: 11px
}

.navbar-nav {
    gap: 22px
}

.navbar-nav a {
    font-size: 12px;
    line-height: 1.4
}

@media(min-width:1200px) {
    .navbar-nav .services-dropdown a {
        padding-top: 13px;
        padding-bottom: 13px;
        font-size: 12px
    }
}

.btn,
.hero-ctas .btn,
.procurement-cta-button {
    font-size: 14px;
    line-height: 1.35
}

.btn {
    padding: 13px 24px
}

.eyebrow,
.who-copy .eyebrow,
.section-label,
.story-eyebrow,
.core-values h2,
.delivery-eyebrow,
.delivery-industries-heading,
.choice-heading,
.procurement-label,
.sourced-solutions-label,
.procurement-process-heading h2,
.why-procurement-label,
.procurement-industries-heading h2,
.procurement-faq-heading h2 {
    font-size: 12px;
    line-height: 1.3
}

.hero h1 {
    font-size: 54px;
    line-height: 1.06
}

.hero-copy>p {
    font-size: 17px;
    line-height: 1.75
}

.hero-stats b,
.why-grid b,
.cat-item b,
.reach-stats .label {
    font-size: 14px
}

.hero-stats small,
.why-grid small,
.cat-item small,
.industry-row small,
.metrics-bar small {
    font-size: 11px;
    line-height: 1.5
}

.intro h2,
.why h2,
.industries h2,
.testimonials h2,
.insights h2,
.delivery>.page-container>h2,
.sourced-solutions-heading h2 {
    font-size: 27px;
    line-height: 1.2
}

.intro p {
    max-width: 255px;
    font-size: 14px;
    line-height: 1.75
}

.service-card {
    height: 215px;
    padding: 22px
}

.service-card h3,
.value-copy h3,
.story-step h3,
.delivery-step h3,
.choice-copy h3,
.cat-item b,
.blog-card h3,
.sourced-solution-item h3,
.procurement-step h3 {
    font-size: 15px;
    line-height: 1.35
}

.service-card p,
.value-copy p,
.story-step p,
.delivery-step p,
.choice-copy p,
.testimonial-grid p,
.sourced-solution-item p,
.procurement-step p {
    font-size: 13px;
    line-height: 1.65
}

.service-card a,
.category-card>a,
.insights a,
.category-card .eyebrow,
.person small,
.blog-card .tag {
    font-size: 11px;
    line-height: 1.4
}

.who-copy h2 {
    font-size: 38px;
    line-height: 1.1
}

.who-copy p {
    font-size: 16px;
    line-height: 1.75
}

.reach-left h3 {
    font-size: 32px;
    line-height: 1.2
}

.reach-stats .num {
    font-size: 25px
}

.our-story h2 {
    font-size: 29px
}

.value-card {
    min-height: 150px;
    padding: 25px
}

.delivery-step h3,
.choice-copy h3 {
    margin-bottom: 7px
}

.delivery-industries span,
.ecosystem-heading,
.delivery-industries-heading,
.choice-heading {
    font-size: 12px
}

.google-logo {
    font-size: 14px
}

.fortinet-logo {
    font-size: 15px
}

.hpe-logo {
    font-size: 11px
}

.category-card {
    padding: 21px 23px
}

.cat-item small {
    font-size: 12px
}

.metrics-bar b {
    font-size: 22px
}

.quote {
    font-size: 17px
}

.stars {
    font-size: 12px
}

.person b {
    font-size: 13px
}

.blog-card h3 {
    font-size: 15px;
    line-height: 1.45
}

.cta-panel {
    padding-top: 20px;
    padding-bottom: 20px
}

.cta-copy h2,
.procurement-cta-copy h2 {
    font-size: 28px;
    line-height: 1.2
}

.cta-copy p,
.procurement-cta-copy p {
    font-size: 14px;
    line-height: 1.55
}

.footer-grid p,
.footer-grid a {
    font-size: 13px;
    line-height: 1.65
}

.footer-grid b {
    font-size: 13px;
    line-height: 1.4
}

.copyright {
    font-size: 10px;
    line-height: 1.5
}

.procurement-copy h2,
.why-procurement-copy h2 {
    font-size: 34px;
    line-height: 1.2
}

.procurement-copy p {
    font-size: 15px;
    line-height: 1.7
}

.procurement-benefits li,
.why-procurement-list li,
.procurement-industry h3,
.procurement-faq-item summary,
.procurement-faq-item p {
    font-size: 14px;
    line-height: 1.5
}

.procurement-cta {
    min-height: 150px;
    padding-top: 28px;
    padding-bottom: 28px
}

.procurement-cta-button {
    min-height: 46px;
    padding: 12px 20px
}

.procurement-faq-item summary {
    min-height: 48px;
    padding-top: 11px;
    padding-bottom: 11px
}

@media(max-width:1199px) {
    .navbar-nav {
        gap: 10px
    }

    .navbar-nav a {
        font-size: 14px;
        padding: 9px 0
    }
}

@media(max-width:991px) {
    body {
        font-size: 14px
    }

    .hero h1 {
        font-size: 43px
    }
}

@media(max-width:767px) {
    .hero h1 {
        font-size: 39px
    }

    .who-copy h2,
    .procurement-copy h2,
    .why-procurement-copy h2 {
        font-size: 31px
    }

    .service-card {
        height: auto;
        min-height: 210px
    }

    .value-card {
        min-height: 145px
    }

    .cta-copy h2,
    .procurement-cta-copy h2 {
        font-size: 25px
    }
}

@media(max-width:420px) {
    .hero h1 {
        font-size: 35px
    }

    .btn,
    .hero-ctas .btn,
    .procurement-cta-button {
        font-size: 13px
    }
}

/* Spacing rhythm aligned with the refined typography */
.topbar {
    height: 34px
}

.navbar {
    height: 84px
}

.navbar-nav a {
    padding-top: 10px;
    padding-bottom: 10px
}

.nav-cta {
    min-width: 116px
}

.hero {
    min-height: 500px;
    padding: 64px 0 68px;
    margin-bottom: 16px
}

.hero-copy {
    padding: 34px 42px 34px 0
}

.hero h1 {
    margin: 10px 0 24px
}

.hero-copy>p {
    margin-bottom: 30px
}

.hero-stats {
    gap: 22px;
    margin: 28px 0 32px
}

.hero-stats i {
    margin-bottom: 9px
}

.hero-stats small {
    margin-top: 5px
}

.hero-ctas,
.cta-actions {
    gap: 15px
}

.logos {
    padding: 42px 0 60px
}

.logo-row {
    margin-top: 30px
}

.section-space {
    padding: 56px 0
}

.section-space-sm {
    padding: 36px 0 42px
}

.services-layout {
    gap: 38px
}

.intro {
    padding: 20px 8px
}

.intro .eyebrow,
.who-copy .eyebrow {
    margin-bottom: 14px
}

.intro h2,
.why h2,
.industries h2,
.testimonials h2,
.insights h2,
.delivery>.page-container>h2 {
    margin-top: 10px;
    margin-bottom: 26px
}

.intro p {
    margin-bottom: 32px
}

.service-grid,
.category-grid {
    gap: 16px
}

.service-card>i {
    margin-bottom: 17px
}

.service-card h3 {
    margin-bottom: 12px
}

.why {
    padding: 24px 0 36px
}

.why-panel {
    padding: 34px 32px 38px
}

.why-grid {
    column-gap: 16px
}

.why-grid i {
    margin-bottom: 13px
}

.why-grid b {
    margin-bottom: 9px
}

.who {
    padding: 72px 0
}

.who-copy h2 {
    margin-bottom: 16px
}

.heading-underline {
    margin: 11px 0 23px
}

.who-copy p {
    margin-bottom: 17px
}

.reach {
    padding: 58px 0 52px
}

.reach-left {
    padding: 38px 0 34px 42px
}

.reach-left h3 {
    margin-bottom: 34px
}

.reach-stats .label {
    margin-top: 12px
}

.our-story {
    padding: 30px 0 62px
}

.story-steps {
    margin-top: 30px
}

.story-icon {
    margin-bottom: 16px
}

.story-step h3 {
    margin-bottom: 11px
}

.core-values {
    padding: 20px 0 70px
}

.core-values h2 {
    margin-bottom: 18px
}

.values-grid {
    gap: 22px
}

.value-icon {
    margin-right: 22px
}

.value-copy h3 {
    margin-bottom: 10px
}

.delivery {
    padding: 26px 0 70px
}

.delivery-eyebrow {
    margin-bottom: 12px
}

.delivery-steps {
    margin-top: 26px;
    margin-bottom: 34px
}

.delivery-icon {
    margin-bottom: 14px
}

.delivery-step h3 {
    margin-bottom: 10px
}

.delivery-panels {
    gap: 22px
}

.delivery-panel {
    padding: 26px 28px
}

.delivery-panel>h3,
.choice-content h2 {
    margin-bottom: 24px
}

.choice-layout {
    gap: 52px
}

.choice-grid {
    gap: 20px
}

.choice-item {
    padding: 6px 0
}

.choice-icon {
    margin-right: 18px
}

.categories {
    padding: 36px 0 60px
}

.category-card {
    min-height: 330px
}

.category-card .eyebrow {
    margin-bottom: 17px
}

.cat-item {
    gap: 15px;
    margin-bottom: 15px
}

.cat-item b {
    margin-bottom: 5px
}

.industry-row div {
    gap: 10px;
    padding: 6px 4px
}

.metrics {
    padding: 0 0 56px
}

.metrics-bar {
    min-height: 116px;
    padding: 22px 28px
}

.metrics-bar>div {
    gap: 18px;
    padding-left: 10px
}

.testimonials {
    padding: 34px 0 62px
}

.testimonial-track {
    gap: 22px
}

.testimonial-track article {
    flex-basis: calc((100% - 44px) / 3);
    height: 210px;
    padding: 22px
}

.testimonial-grid p {
    height: auto;
    margin: 14px 0 12px
}

.person {
    gap: 11px
}

.person small {
    margin-top: 4px
}

.carousel-indicators {
    margin-top: 20px
}

.insights {
    padding: 28px 0 62px
}

.blog-grid {
    gap: 22px
}

.blog-card {
    height: 190px;
    padding: 22px
}

.blog-card span {
    margin-bottom: 11px
}

.blog-card h3 {
    margin-bottom: 10px
}

.cta-panel {
    height: auto;
    min-height: 132px;
    padding: 24px 34px;
    gap: 34px
}

.cta-copy h2 {
    margin-bottom: 9px
}

.cta-actions .btn {
    min-width: 155px;
    padding: 14px 24px
}

footer {
    padding: 44px 0 24px
}

.footer-grid {
    gap: 42px
}

.footer-grid p {
    margin-top: 13px;
    margin-bottom: 18px
}

.social {
    gap: 14px
}

.footer-grid b {
    margin-bottom: 13px
}

.footer-grid a {
    margin-bottom: 9px
}

.copyright {
    margin-top: 28px;
    padding-top: 16px
}

.procurement-section {
    padding: 64px 0
}

.procurement-layout {
    gap: 72px
}

.procurement-label,
.sourced-solutions-label,
.why-procurement-label {
    margin-bottom: 13px
}

.procurement-copy h2,
.why-procurement-copy h2 {
    margin-bottom: 24px
}

.procurement-copy p {
    margin-bottom: 18px
}

.procurement-benefits {
    gap: 14px;
    margin-top: 28px
}

.procurement-cta-section,
.sourced-solutions,
.procurement-process,
.why-procurement,
.procurement-industries,
.procurement-faq {
    padding-bottom: 64px
}

.procurement-cta {
    padding-right: 52px;
    padding-left: 52px
}

.procurement-cta-icon {
    margin-right: 30px
}

.procurement-cta-copy h2 {
    margin-bottom: 10px
}

.procurement-cta-button {
    margin-left: 36px
}

.sourced-solutions-heading,
.procurement-process-heading,
.procurement-industries-heading,
.procurement-faq-heading {
    margin-bottom: 30px
}

.sourced-solutions-heading {
    padding-bottom: 15px
}

.sourced-solution-item {
    gap: 18px;
    min-height: 132px;
    padding: 14px 32px 16px
}

.sourced-solution-item h3 {
    margin: 8px 0 10px
}

.procurement-step {
    padding: 0 24px
}

.procurement-step-icon {
    margin-bottom: 20px
}

.procurement-step h3 {
    margin-bottom: 11px
}

.why-procurement-layout {
    gap: 64px
}

.why-procurement-list {
    gap: 14px
}

.procurement-industries-grid {
    row-gap: 22px
}

.procurement-industry {
    padding: 8px 6px
}

.procurement-industry h3 {
    margin-top: 16px
}

.procurement-faq-grid {
    gap: 24px
}

.procurement-faq-column {
    gap: 10px
}

.procurement-faq-item p {
    padding: 15px 20px 18px
}

@media(max-width:1199px) {
    .navbar {
        min-height: 76px
    }

    .navbar-collapse {
        padding: 20px 0 22px
    }
}

@media(max-width:991px) {
    .section-space {
        padding: 48px 0
    }

    .hero {
        padding: 54px 0 58px
    }

    .testimonial-track article {
        height: 220px
    }
}

@media(max-width:767px) {
    .hero {
        padding: 44px 0 50px
    }

    .hero-copy {
        padding: 24px 0 30px
    }

    .section-space,
    .who,
    .reach,
    .our-story,
    .core-values,
    .delivery,
    .categories,
    .testimonials,
    .insights,
    .procurement-section {
        padding-top: 42px;
        padding-bottom: 48px
    }

    .services-layout,
    .procurement-layout,
    .why-procurement-layout {
        gap: 32px
    }

    .testimonial-track article {
        height: auto;
        min-height: 210px
    }

    .cta-panel {
        padding: 28px 24px
    }

    footer {
        padding: 38px 0 22px
    }

    .footer-grid {
        gap: 30px 24px
    }

    .procurement-cta {
        padding: 28px 24px
    }

    .procurement-cta-button {
        margin-left: 0
    }
}

/* Consistent wider container across header, page content, and footer */
@media(min-width:1200px) {
    .topbar .page-container,
    .navbar .page-container,
    main .page-container,
    footer .page-container {
        width: min(1280px, calc(100% - 48px)) !important
    }
}
