/*
 * Tech-Trezad enterprise interface
 * Mature full-width enterprise system
 */
:root {
    --tt-ink: #14212b;
    --tt-muted: #586672;
    --tt-line: #d9dfe3;
    --tt-soft: #f5f6f6;
    --tt-navy: #122734;
    --tt-cobalt: #35616a;
    --tt-cobalt-dark: #294b52;
    --tt-cobalt-soft: #eaf0f0;
    --tt-lime: #8da79b;
    --tt-footer: #103b35;
    --tt-success: #327252;
    --tt-radius: 6px;
    --tt-shadow: 0 14px 32px rgba(20, 33, 43, .07);
    --tt-font: Inter, "Segoe UI", Arial, sans-serif;
}

html { scroll-padding-top: 92px; }
body, button, input, select, textarea { font-family: var(--tt-font); }
body {
    overflow-x: clip;
    color: var(--tt-ink);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.home-page-2,
[data-bs-theme=dark] body.home-page-2,
body.home-page-2 > .ck-content {
    color: var(--tt-ink);
    background: #fff;
}
body.home-page-2 > .ck-content p { color: var(--tt-muted); }
a, button { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 3px solid rgba(53, 97, 106, .28);
    outline-offset: 3px;
}
.container {
    width: min(100% - clamp(32px, 4vw, 64px), 1520px);
    max-width: none;
}
.enterprise-section { padding: clamp(64px, 6vw, 92px) 0; }
.enterprise-section + .enterprise-section { padding-top: clamp(64px, 6vw, 92px); }
.enterprise-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .7fr);
    gap: 32px;
    align-items: end;
    margin-bottom: clamp(30px, 4vw, 46px);
}
.enterprise-section-heading h2 {
    max-width: 800px;
    margin: 10px 0 0;
    color: var(--tt-ink) !important;
    font-family: var(--tt-font) !important;
    font-size: clamp(2.25rem, 3.5vw, 3.9rem) !important;
    font-weight: 680 !important;
    line-height: 1.08 !important;
    letter-spacing: -.045em;
    text-wrap: balance;
}
.enterprise-section-heading > p {
    max-width: 520px;
    margin: 0;
    color: var(--tt-muted) !important;
    font-size: 1.05rem;
    line-height: 1.7;
}
.enterprise-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--tt-cobalt);
    font-size: .78rem;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.enterprise-section-kicker svg { width: 19px; height: 19px; }

/* Header */
.enterprise-site-header {
    position: sticky;
    top: 0;
    z-index: 1050;
    padding: 0;
    border-bottom: 1px solid var(--tt-line);
    background: rgba(255, 255, 255, .98);
    box-shadow: none;
}
.enterprise-site-header > .container { width: 100%; max-width: none; padding: 0; }
.navbar.navbar-home-2 {
    position: relative !important;
    inset: auto !important;
    border: 0 !important;
    background: transparent !important;
}
.navbar-home-2 > .enterprise-header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin: 0 auto;
    padding: 0 !important;
}
.navbar-home-2 .navbar-brand {
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
    color: var(--tt-ink);
    text-decoration: none;
}
.navbar-home-2 .navbar-brand img {
    width: auto;
    max-width: 42px;
    height: 38px;
    object-fit: contain;
}
.site-name-text {
    color: var(--tt-ink) !important;
    font-size: 1.28rem;
    font-weight: 700;
    letter-spacing: -.025em;
}
.enterprise-brand-accent { color: var(--tt-cobalt); }
.enterprise-desktop-navigation { margin-left: auto; }
.navbar-home-2 .navbar-nav { align-items: center; gap: clamp(22px, 2.2vw, 34px); }
.navbar-home-2 .navbar-nav .nav-link {
    position: relative;
    padding: 28px 0;
    color: #3e4b55;
    font-size: .93rem;
    font-weight: 600;
    text-decoration: none;
}
.navbar-home-2 .navbar-nav .nav-link:hover,
.navbar-home-2 .navbar-nav .nav-link:focus-visible,
.navbar-home-2 .navbar-nav .nav-link.active { color: var(--tt-cobalt); }
.navbar-home-2 .navbar-nav .nav-link.active::after {
    position: absolute;
    right: 0;
    bottom: 19px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--tt-cobalt);
}
.burger-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    margin: 0;
    padding: 0;
    border: 1px solid var(--tt-line) !important;
    border-radius: 4px !important;
    background: #fff !important;
}
.burger-icon span {
    width: 20px !important;
    height: 2px !important;
    margin: 0 !important;
    background: var(--tt-ink) !important;
}
.mobile-header-active {
    width: min(420px, 100%);
    height: 100dvh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1200;
    overflow-y: auto;
    padding: 0;
    color: var(--tt-ink);
    background: #fff !important;
    box-shadow: -24px 0 60px rgba(7, 29, 82, .2);
    transform: translateX(105%);
    visibility: hidden;
    transition: transform .22s ease, visibility .22s ease;
}
.mobile-header-active.sidebar-visible { transform: translateX(0); visibility: visible; }
.body-overlay-1 {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(7, 18, 43, .58);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
}
body.mobile-menu-active { overflow: hidden; }
body.mobile-menu-active .body-overlay-1 { opacity: 1; visibility: visible; }
.show-admin-bar .mobile-header-active { top: 40px; height: calc(100dvh - 40px); }
.mobile-header-wrapper-inner { min-height: 100dvh; padding: 20px; }
.mobile-header-logo {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--tt-line);
}
.mobile-menu-wrap { padding: 18px 0; }
.mobile-menu,
.mobile-menu ul { margin: 0; padding: 0; list-style: none; }
.mobile-menu .nav-item { border-bottom: 1px solid #e6ebf3; }
.mobile-menu .nav-link {
    min-height: 54px;
    display: flex;
    align-items: center;
    color: var(--tt-ink) !important;
    font-size: 1rem;
    font-weight: 650;
    text-decoration: none;
}
/* Hero */
.section-hero-2,
.section-service-2,
.section-projects-2,
.section-skills-2,
.section-delivery-process,
.section-contact-2 {
    position: relative;
    isolation: isolate;
}
.section-hero-2::before,
.section-service-2::before,
.section-projects-2::before,
.section-skills-2::before,
.section-delivery-process::before,
.section-contact-2::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    content: "";
    background-image: image-set(
        url("../images/hero-bg-dark.avif") type("image/avif"),
        url("../images/hero-bg-dark.webp") type("image/webp"),
        url("../images/hero-bg-dark.png") type("image/png")
    );
    background-repeat: repeat;
    background-position: center top;
    background-size: 1920px 540px;
    opacity: .028;
    filter: grayscale(1);
}
.section-hero-2::before {
    background-position: center top;
    opacity: .052;
}
.section-hero-2 > .hero-2,
.section-service-2 > .container,
.section-projects-2 > .container,
.section-skills-2 > .container,
.section-delivery-process > .container,
.section-contact-2 > .container {
    position: relative;
    z-index: 1;
}
.section-hero-2 {
    position: relative;
    isolation: isolate;
    padding: 0;
    border-bottom: 1px solid var(--tt-line);
    background: #f7f9f8;
}
.section-hero-2 > .hero-2 { position: relative; z-index: 1; }
.section-hero-2 > .background { z-index: -1; overflow: hidden; }
.section-hero-2 > .background img { width: 100%; height: 100%; object-fit: cover; opacity: .08; }
.enterprise-hero-panel {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}
.enterprise-hero-copy {
    width: 54%;
    order: 1;
    padding: 40px clamp(44px, 6vw, 96px) clamp(56px, 6vw, 88px) 0;
}
.enterprise-hero-media {
    width: 46%;
    order: 2;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    padding: 4px 0 clamp(42px, 5vw, 70px) clamp(32px, 5vw, 72px);
    border-left: 1px solid var(--tt-line);
    background: rgba(255, 255, 255, .46);
}
.enterprise-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 23px;
    color: var(--tt-cobalt);
    font-size: .75rem;
    font-weight: 750;
    letter-spacing: .075em;
    text-transform: uppercase;
}
.enterprise-hero-eyebrow svg { width: 20px; height: 20px; color: var(--tt-cobalt); }
.section-hero-2 .section-hero-title {
    max-width: 780px;
    margin: 0 !important;
    color: var(--tt-ink) !important;
    font-family: var(--tt-font) !important;
    font-size: clamp(3.4rem, 5.4vw, 6rem) !important;
    font-weight: 670 !important;
    line-height: .98 !important;
    letter-spacing: -.064em;
    text-wrap: balance;
}
.section-hero-2 .section-hero-title span:not(.flicker) {
    display: block;
    color: var(--tt-cobalt) !important;
    background: none !important;
    -webkit-text-fill-color: currentColor !important;
}
.section-hero-2 .section-hero-description {
    max-width: 620px;
    margin: 28px 0 0 !important;
    color: var(--tt-muted) !important;
    font-size: clamp(1.04rem, 1.3vw, 1.18rem);
    line-height: 1.68;
}
.enterprise-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 30px;
}
.enterprise-button {
    min-height: 50px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 !important;
    padding: 0 20px !important;
    border-radius: 8px !important;
    font-size: .9rem;
    font-weight: 760;
    text-decoration: none !important;
}
.enterprise-button-primary {
    border: 1px solid var(--tt-navy) !important;
    color: #fff !important;
    background: var(--tt-navy) !important;
}
.enterprise-button-primary:hover,
.enterprise-button-primary:focus-visible {
    border-color: var(--tt-cobalt) !important;
    color: #fff !important;
    background: var(--tt-cobalt) !important;
}
.enterprise-button-secondary {
    border: 1px solid #aeb8be !important;
    color: var(--tt-ink) !important;
    background: #fff !important;
}
.enterprise-button-secondary:hover,
.enterprise-button-secondary:focus-visible {
    border-color: var(--tt-ink) !important;
    color: var(--tt-ink) !important;
    background: var(--tt-soft) !important;
}
.enterprise-trust-line {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 18px;
    margin-top: 26px;
    padding-top: 20px;
    border-top: 1px solid var(--tt-line);
    color: #40505c;
    font-size: .77rem;
    font-weight: 620;
    line-height: 1.45;
}
.enterprise-trust-line span { display: flex; align-items: flex-start; gap: 6px; }
.enterprise-trust-line i { margin-top: 1px; color: var(--tt-cobalt); font-size: 1rem; }
.enterprise-workspace {
    overflow: hidden;
    border: 1px solid #cbd3d8;
    border-radius: 6px;
    background: #151b21;
    box-shadow: 0 18px 38px rgba(20, 33, 43, .1);
}
.enterprise-workspace-heading {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 17px;
    border-bottom: 1px solid var(--tt-line);
    color: #d8e0e5;
    background: #1c242b;
    font-size: .72rem;
    font-weight: 680;
}
.enterprise-workspace-heading span:last-child {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #8ec9aa;
}
.enterprise-hero-workspace {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center;
}
.enterprise-hero-assurance {
    padding-top: 22px;
}
.enterprise-hero-assurance .enterprise-trust-line {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}
.enterprise-hero-assurance .enterprise-pathfinder-entry { margin-top: 18px; }

/* Pathfinder */
.enterprise-pathfinder-entry { margin-top: 24px; }
.enterprise-pathfinder-trigger {
    width: 100%;
    min-height: 70px;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 20px;
    gap: 12px;
    align-items: center;
    padding: 10px 13px;
    border: 1px solid #b8c2c7;
    border-radius: 4px;
    color: var(--tt-ink);
    background: #f7f8f7;
    text-align: left;
}
.enterprise-pathfinder-trigger:hover,
.enterprise-pathfinder-trigger:focus-visible {
    border-color: var(--tt-cobalt);
    color: var(--tt-ink);
    background: var(--tt-cobalt-soft);
}
.enterprise-pathfinder-trigger-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid #b9cacc;
    border-radius: 3px;
    color: var(--tt-cobalt);
    background: #fff;
}
.enterprise-pathfinder-trigger-icon svg,
.enterprise-pathfinder-trigger > svg { width: 21px; height: 21px; }
.enterprise-pathfinder-trigger small,
.enterprise-pathfinder-trigger strong { display: block; }
.enterprise-pathfinder-trigger small {
    margin-bottom: 3px;
    color: var(--tt-cobalt);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .055em;
    text-transform: uppercase;
}
.enterprise-pathfinder-trigger strong {
    color: var(--tt-ink);
    font-size: .96rem;
    font-weight: 720;
    line-height: 1.35;
}
.enterprise-pathfinder-meta { margin-top: 8px; }
.enterprise-pathfinder-note {
    display: block;
    margin-top: 8px;
    color: #6b7780;
    font-size: .72rem;
    line-height: 1.45;
}
.enterprise-pathfinder {
    width: min(700px, calc(100% - 32px));
    max-height: min(820px, calc(100dvh - 32px));
    padding: 0;
    border: 1px solid #cfd8e8;
    border-radius: 14px;
    color: var(--tt-ink);
    background: #fff;
    box-shadow: 0 30px 90px rgba(7, 29, 82, .3);
}
.enterprise-pathfinder::backdrop { background: rgba(7, 18, 43, .7); }
.enterprise-pathfinder-shell { padding: clamp(20px, 4vw, 34px); }
.enterprise-pathfinder-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}
.enterprise-pathfinder-header span,
.enterprise-pathfinder-result-header span,
.enterprise-pathfinder-result-recommendation > span {
    display: block;
    margin-bottom: 7px;
    color: var(--tt-cobalt);
    font-size: .7rem;
    font-weight: 760;
    letter-spacing: .075em;
    text-transform: uppercase;
}
.enterprise-pathfinder-header h2 {
    max-width: 560px;
    margin: 0;
    color: var(--tt-ink);
    font-family: var(--tt-font);
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    font-weight: 740;
    line-height: 1.15;
    letter-spacing: -.035em;
}
.enterprise-pathfinder-close {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    border: 1px solid var(--tt-line);
    border-radius: 8px;
    color: var(--tt-ink);
    background: #fff;
}
.enterprise-pathfinder-description {
    max-width: 62ch;
    margin: 18px 0;
    color: var(--tt-muted);
    font-size: .98rem;
    line-height: 1.65;
}
.enterprise-pathfinder-progress {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    border-top: 1px solid var(--tt-line);
    border-bottom: 1px solid var(--tt-line);
    color: #6b778b;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .045em;
    text-transform: uppercase;
}
.enterprise-pathfinder-progress span:first-child { color: var(--tt-cobalt); }
.enterprise-pathfinder [data-pathfinder-stage] > h3 {
    margin: 22px 0 13px;
    color: var(--tt-ink);
    font-family: var(--tt-font);
    font-size: 1.1rem;
    font-weight: 720;
}
.enterprise-pathfinder-options { display: grid; gap: 10px; }
.enterprise-pathfinder-options[hidden] { display: none !important; }
.enterprise-pathfinder-options button {
    min-height: 76px;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 20px;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--tt-line);
    border-radius: 9px;
    color: var(--tt-ink);
    background: #fff;
    text-align: left;
}
.enterprise-pathfinder-options button:hover,
.enterprise-pathfinder-options button:focus-visible {
    border-color: #91a9e9;
    background: var(--tt-cobalt-soft);
}
.enterprise-pathfinder-options button > svg:first-child {
    width: 42px;
    height: 42px;
    padding: 9px;
    border-radius: 8px;
    color: var(--tt-cobalt);
    background: var(--tt-cobalt-soft);
}
.enterprise-pathfinder-options strong,
.enterprise-pathfinder-options small {
    display: block;
    font-family: var(--tt-font);
}
.enterprise-pathfinder-options strong {
    color: var(--tt-ink);
    font-size: .94rem;
    font-weight: 720;
}
.enterprise-pathfinder-options small {
    margin-top: 3px;
    color: var(--tt-muted);
    font-size: .82rem;
    line-height: 1.45;
}
.enterprise-pathfinder-back {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 10px;
    border: 0;
    color: var(--tt-cobalt);
    background: transparent;
    font-size: .82rem;
    font-weight: 700;
}
.enterprise-pathfinder-result {
    overflow: hidden;
    border: 1px solid var(--tt-line);
    border-radius: 10px;
    background: #fff;
}
.enterprise-pathfinder-result-header {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 18px;
    border-bottom: 1px solid var(--tt-line);
    background: var(--tt-cobalt-soft);
}
.enterprise-pathfinder-result-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    flex: 0 0 44px;
    border-radius: 8px;
    color: var(--tt-cobalt);
    background: #fff;
}
.enterprise-pathfinder-result-header h3,
.enterprise-pathfinder-result-recommendation h4 {
    margin: 0;
    color: var(--tt-ink);
    font-family: var(--tt-font);
    font-weight: 730;
}
.enterprise-pathfinder-result-recommendation { padding: 18px; }
.enterprise-pathfinder-result-recommendation > p {
    margin: 7px 0 0;
    color: var(--tt-muted);
    line-height: 1.6;
}
.enterprise-pathfinder-result dl {
    margin: 0 18px;
    border-top: 1px solid var(--tt-line);
}
.enterprise-pathfinder-result dl div {
    display: grid;
    grid-template-columns: minmax(125px, .6fr) 1.4fr;
    gap: 16px;
    padding: 11px 0;
    border-bottom: 1px solid var(--tt-line);
}
.enterprise-pathfinder-result dt { color: #6b778b; font-size: .78rem; }
.enterprise-pathfinder-result dd {
    margin: 0;
    color: var(--tt-ink);
    font-size: .85rem;
    font-weight: 650;
}
.enterprise-pathfinder-result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    padding: 18px 18px 9px;
}
.enterprise-pathfinder-apply,
.enterprise-pathfinder-reset {
    min-height: 46px;
    padding: 0 15px;
    border-radius: 8px;
    font-size: .82rem;
    font-weight: 720;
}
.enterprise-pathfinder-apply {
    border: 1px solid var(--tt-cobalt);
    color: #fff;
    background: var(--tt-cobalt);
}
.enterprise-pathfinder-reset {
    border: 1px solid var(--tt-line);
    color: var(--tt-ink);
    background: #fff;
}
.enterprise-pathfinder-result-note {
    margin: 0 !important;
    padding: 0 18px 18px;
    color: #6b778b !important;
    font-size: .78rem !important;
}

/* Proof */
.section-static-1 {
    padding: 0;
    border-block: 1px solid rgba(255, 255, 255, .08);
    background: var(--tt-footer);
}
.enterprise-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    gap: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}
.enterprise-proof-item {
    min-height: 132px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 26px clamp(16px, 2.6vw, 34px);
    border-right: 1px solid rgba(255, 255, 255, .16);
    text-align: center;
    background: transparent;
}
.enterprise-proof-item:last-child { border-right: 0; }
.enterprise-proof-value {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.enterprise-proof-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    border: 1px solid rgba(202, 224, 214, .34);
    border-radius: 4px;
    color: #c7ddd2;
    background: rgba(255, 255, 255, .06);
}
.enterprise-proof-icon svg { width: 23px; height: 23px; }
.enterprise-proof-item strong {
    display: block;
    color: #fff;
    font-size: 2.35rem;
    font-weight: 680;
    line-height: 1;
    letter-spacing: -.045em;
}
.enterprise-proof-item strong span { margin-left: 2px; color: #a8c7b8; }
.enterprise-proof-label {
    display: block;
    color: rgba(255, 255, 255, .76);
    font-size: .82rem;
    font-weight: 640;
    line-height: 1.35;
}

/* Services */
.section-service-2 { background: var(--tt-soft); }
.enterprise-service-grid {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
    margin-top: 0;
    border-top: 1px solid #cdd5d8;
    border-left: 1px solid #cdd5d8;
}
.enterprise-service-card {
    min-height: 238px;
    height: 100%;
    display: block;
    padding: clamp(26px, 2.6vw, 38px);
    border-right: 1px solid #cdd5d8;
    border-bottom: 1px solid #cdd5d8;
    border-radius: 0;
    color: var(--tt-ink);
    background: #fff;
    box-shadow: none;
    text-decoration: none;
    transition: color .2s ease, background .2s ease;
}
.enterprise-service-card:hover,
.enterprise-service-card:focus-within {
    color: var(--tt-ink);
    background: #edf2f0;
    box-shadow: none;
    transform: none;
}
.enterprise-service-summary {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) 32px;
    gap: 18px;
    align-items: center;
    color: var(--tt-ink);
    cursor: default;
    list-style: none;
}
.enterprise-service-summary::-webkit-details-marker { display: none; }
.enterprise-service-summary::marker { content: ""; }
.enterprise-service-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border: 1px solid #c8d5d1;
    border-radius: 2px;
    color: var(--tt-footer);
    background: #f3f6f5;
}
.enterprise-service-icon svg { width: 26px; height: 26px; }
.enterprise-service-summary > strong {
    color: var(--tt-ink);
    font-size: 1.22rem;
    font-weight: 700;
    line-height: 1.35;
}
.enterprise-service-panel {
    margin: 18px 50px 0 72px;
}
.enterprise-service-description {
    display: block;
    color: var(--tt-muted);
    font-size: .92rem;
    line-height: 1.62;
}
.enterprise-service-link {
    width: fit-content;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 18px;
    color: var(--tt-footer);
    font-size: .78rem;
    font-weight: 750;
    letter-spacing: .045em;
    text-decoration: none;
    text-transform: uppercase;
}
.enterprise-service-card:hover .enterprise-service-link,
.enterprise-service-card:focus-within .enterprise-service-link {
    color: var(--tt-cobalt-dark);
}
.enterprise-service-link i { font-size: 1.05rem; }
.enterprise-service-toggle {
    width: 30px;
    height: 30px;
    display: none;
    place-items: center;
    border: 1px solid var(--tt-line);
    border-radius: 50%;
    color: var(--tt-footer);
    background: #fff;
}
.enterprise-service-toggle i {
    font-size: 1.1rem;
    transition: transform .2s ease;
}
@media (min-width: 768px) {
    .enterprise-service-summary { pointer-events: none; }
    .enterprise-service-card:not([open]) > .enterprise-service-panel { display: block; }
}
.enterprise-section-note {
    margin-top: 28px;
    padding: 18px 20px;
    border-left: 3px solid var(--tt-cobalt);
    color: var(--tt-muted);
    background: var(--tt-soft);
    font-size: .93rem;
    line-height: 1.6;
}
.enterprise-section-note p { margin: 0; }
.enterprise-section-note a { color: var(--tt-cobalt) !important; font-weight: 700; }

/* Portfolio */
.section-projects-2 { background: var(--tt-soft); }
.enterprise-portfolio-shell { position: relative; }
.enterprise-carousel { overflow: hidden; }
.enterprise-carousel-track { display: grid; }
.enterprise-carousel-slide {
    min-width: 0;
    grid-area: 1 / 1;
}
.enterprise-carousel-slide[hidden] { display: none !important; }
.enterprise-carousel-slide.is-active .enterprise-portfolio-card {
    animation: enterprise-carousel-enter .42s cubic-bezier(.2, .7, .2, 1) both;
}
@keyframes enterprise-carousel-enter {
    from { opacity: .35; transform: translateX(16px); }
    to { opacity: 1; transform: translateX(0); }
}
.enterprise-portfolio-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    overflow: hidden;
    border: 1px solid #cfd6da;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}
.enterprise-portfolio-media {
    min-width: 0;
    padding: 0;
    background: var(--tt-navy);
}
.enterprise-portfolio-media picture,
.enterprise-portfolio-media img {
    width: 100%;
    height: 100%;
    display: block;
}
.enterprise-portfolio-media img {
    min-height: 470px;
    border-radius: 0;
    object-fit: cover;
    object-position: center;
}
.enterprise-portfolio-content {
    display: flex;
    flex-direction: column;
    padding: clamp(30px, 4vw, 58px);
}
.enterprise-project-number {
    color: var(--tt-cobalt);
    font-size: .72rem;
    font-weight: 760;
    letter-spacing: .075em;
    text-transform: uppercase;
}
.enterprise-portfolio-content h3 {
    margin: 16px 0 0;
    color: var(--tt-ink) !important;
    font-family: var(--tt-font) !important;
    font-size: clamp(2rem, 3.4vw, 3.7rem) !important;
    font-weight: 730 !important;
    line-height: 1.07 !important;
    letter-spacing: -.05em;
}
.enterprise-portfolio-content h3 a { color: inherit; text-decoration: none; }
.enterprise-portfolio-content > p {
    margin: 20px 0 0;
    color: var(--tt-muted) !important;
    font-size: 1rem;
    line-height: 1.7;
}
.enterprise-project-facts {
    margin: 26px 0 0;
    border-top: 1px solid var(--tt-line);
}
.enterprise-project-facts > div {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 18px;
    padding: 13px 0;
    border-bottom: 1px solid var(--tt-line);
}
.enterprise-project-facts dt { color: #68758a; font-size: .78rem; font-weight: 650; }
.enterprise-project-facts dd {
    margin: 0;
    color: var(--tt-ink);
    font-size: .84rem;
    font-weight: 650;
}
.enterprise-project-action {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding: 0 15px;
    border: 1px solid var(--tt-navy);
    border-radius: 3px;
    color: #fff;
    background: var(--tt-navy);
    font-size: .85rem;
    font-weight: 720;
    text-decoration: none;
}
.enterprise-project-action:hover,
.enterprise-project-action:focus-visible { color: #fff; background: var(--tt-cobalt-dark); }
.enterprise-project-action svg { width: 18px; height: 18px; }
.enterprise-portfolio-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 18px;
}
.enterprise-portfolio-controls button {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin: 0;
    border: 1px solid #c7d2e8;
    border-radius: 3px;
    color: var(--tt-cobalt);
    background: #fff;
}
.enterprise-portfolio-controls button:hover,
.enterprise-portfolio-controls button:focus-visible { border-color: var(--tt-cobalt); background: var(--tt-cobalt-soft); }
.enterprise-portfolio-controls button:disabled { cursor: not-allowed; color: #8b98aa; background: #edf1f7; opacity: .72; }
.enterprise-carousel-status {
    min-width: 56px;
    color: #667085;
    font-size: .76rem;
    font-weight: 700;
    text-align: center;
}
.enterprise-portfolio-controls svg { width: 20px; height: 20px; }

/* Technology */
.section-skills-2 { background: #fff; }
.enterprise-technology-panel {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}
.technology-capabilities {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--tt-line);
    border-radius: 0;
    background: var(--tt-line);
}
.technology-capability {
    min-height: 146px;
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 12px;
    padding: 22px;
    background: #fff;
}
.technology-capability > span {
    color: var(--tt-cobalt);
    font-size: .7rem;
    font-weight: 750;
}
.technology-capability h3 {
    margin: 0;
    color: var(--tt-ink) !important;
    font-family: var(--tt-font) !important;
    font-size: 1rem !important;
    font-weight: 720 !important;
    line-height: 1.35 !important;
}
.technology-capability p {
    margin: 8px 0 0;
    color: var(--tt-muted) !important;
    font-size: .84rem;
    line-height: 1.55;
}
.technology-stack {
    overflow: hidden;
    border: 1px solid var(--tt-navy);
    border-radius: 0;
    background: var(--tt-navy);
}
.technology-stack__header {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
    color: #fff;
    font-size: .75rem;
    font-weight: 720;
    letter-spacing: .055em;
    text-transform: uppercase;
}
.technology-stack__header small { color: #cbd8ff; font-size: .68rem; }
.technology-stack__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    padding: 1px;
    background: rgba(255, 255, 255, .2);
}
.technology-chip {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    color: #fff;
    background: var(--tt-navy);
    font-size: .86rem;
    font-weight: 650;
}
.technology-chip svg {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    color: var(--tt-lime) !important;
}

/* Delivery */
.section-delivery-process { background: var(--tt-soft); }
.delivery-process-panel {
    overflow: hidden;
    border: 1px solid #cfd6da !important;
    border-radius: 0 !important;
    background: #fff;
    box-shadow: none;
}
.delivery-process-intro {
    padding: clamp(34px, 5vw, 68px);
    color: #fff;
    background: var(--tt-navy);
}
.delivery-process-intro .d-flex > svg {
    width: 20px;
    height: 20px;
    color: #adc1b8;
}
.delivery-process-intro .text-linear-4 {
    color: #c8d3d8 !important;
    background: none !important;
    -webkit-text-fill-color: currentColor !important;
    font-size: .75rem;
    font-weight: 750;
    letter-spacing: .075em;
    text-transform: uppercase;
}
.delivery-process-intro h2 {
    max-width: 520px;
    margin: 0;
    color: #fff !important;
    font-family: var(--tt-font) !important;
    font-size: clamp(2.35rem, 4vw, 4rem) !important;
    font-weight: 730 !important;
    line-height: 1.05 !important;
    letter-spacing: -.055em;
}
.delivery-process-intro p {
    max-width: 52ch;
    color: #d5dee2 !important;
    font-size: .98rem;
    line-height: 1.7;
}
.delivery-process-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 28px;
}
.enterprise-inline-link {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 15px;
    border: 1px solid #fff;
    border-radius: 3px;
    color: var(--tt-navy);
    background: #fff;
    font-size: .82rem;
    font-weight: 730;
    text-decoration: none;
}
.enterprise-inline-link:hover,
.enterprise-inline-link:focus-visible { color: var(--tt-navy); background: #eef2f2; }
.enterprise-inline-link.is-secondary {
    border-color: rgba(255, 255, 255, .48);
    color: #fff;
    background: transparent;
}
.delivery-process-steps { background: #fff; }
.delivery-process-steps li {
    min-height: 125px;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    align-items: start;
    padding: 28px clamp(24px, 4vw, 48px);
    border-bottom: 1px solid var(--tt-line);
}
.delivery-process-steps li:last-child { border-bottom: 0; }
.delivery-process-steps li > span {
    color: var(--tt-cobalt);
    font-size: .72rem;
    font-weight: 760;
}
.delivery-process-steps h6 {
    margin: 0;
    color: var(--tt-ink) !important;
    font-family: var(--tt-font) !important;
    font-size: 1.04rem !important;
    font-weight: 720 !important;
}
.delivery-process-steps p {
    max-width: 650px;
    margin: 7px 0 0;
    color: var(--tt-muted) !important;
    font-size: .9rem;
    line-height: 1.6;
}

/* Contact */
.section-contact-2 { background: #fff; }
.section-contact-2 > .container > .row {
    overflow: hidden;
    align-items: stretch !important;
    border-top: 1px solid var(--tt-line);
    border-bottom: 1px solid var(--tt-line);
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}
.section-contact-2 > .container > .row > div:first-child {
    padding: clamp(28px, 5vw, 60px);
}
.section-contact-2 > .container > .row > div:last-child {
    padding: clamp(28px, 4vw, 52px) !important;
    color: #fff;
    background: var(--tt-navy);
}
.section-contact-2 h2 {
    color: var(--tt-ink) !important;
    font-family: var(--tt-font) !important;
    font-size: clamp(2.25rem, 4vw, 4rem) !important;
    font-weight: 730 !important;
    line-height: 1.05 !important;
    letter-spacing: -.05em;
}
.enterprise-contact-intro {
    max-width: 680px;
    display: block;
    color: var(--tt-muted) !important;
    font-size: 1.02rem !important;
    line-height: 1.7;
}
.enterprise-contact-assurance {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin: 18px 0 8px;
    color: #334155;
    font-size: .82rem;
    font-weight: 650;
}
.enterprise-contact-assurance span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.enterprise-contact-assurance i { color: var(--tt-success); }
.section-contact-2 .contact-form .form-control,
.section-contact-2 .contact-form .form-select {
    min-height: 50px;
    border: 1px solid #cdd6e5 !important;
    border-radius: 4px !important;
    color: var(--tt-ink) !important;
    background: #fff !important;
    font-size: .94rem;
}
.section-contact-2 .contact-form textarea.form-control { min-height: 150px; }
.section-contact-2 .contact-form .form-control::placeholder {
    color: #7a8799;
    opacity: 1;
}
.section-contact-2 .contact-form label {
    color: var(--tt-ink) !important;
    font-size: .83rem;
    font-weight: 680;
}
.section-contact-2 .enterprise-contact-submit {
    min-height: 50px;
    padding: 0 18px;
    border: 1px solid var(--tt-navy) !important;
    border-radius: 3px !important;
    color: #fff !important;
    background: var(--tt-navy) !important;
    font-size: .88rem;
    font-weight: 740;
}
.section-contact-2 .enterprise-contact-submit:hover,
.section-contact-2 .enterprise-contact-submit:focus-visible {
    color: #fff !important;
    background: var(--tt-cobalt) !important;
}
.enterprise-contact-privacy {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    margin: 13px 0 0;
    color: #6b778b;
    font-size: .78rem;
    line-height: 1.5;
}
.enterprise-next-steps-heading span {
    color: #b9c9cd;
    font-size: .7rem;
    font-weight: 750;
    letter-spacing: .075em;
    text-transform: uppercase;
}
.enterprise-next-steps-heading h4 {
    margin: 9px 0 24px;
    color: #fff !important;
    font-family: var(--tt-font) !important;
    font-size: 1.55rem !important;
    font-weight: 720 !important;
    line-height: 1.25 !important;
}
.enterprise-next-step {
    width: 100%;
    min-height: 78px;
    padding: 10px;
    border-top: 1px solid rgba(255, 255, 255, .2);
}
.enterprise-next-step-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex: 0 0 38px;
    border: 1px solid rgba(199, 221, 213, .48);
    border-radius: 50%;
    color: #c7ddd5;
    background: rgba(255, 255, 255, .06);
}
.enterprise-next-step-icon i { font-size: 1.08rem; line-height: 1; }
.enterprise-next-step span { color: #c5d0d4 !important; font-size: .72rem !important; }
.enterprise-next-step h6 {
    color: #fff !important;
    font-family: var(--tt-font) !important;
    font-size: .92rem !important;
    line-height: 1.45 !important;
}
.rectangle-bg { display: none; }

/* General pages */
.enterprise-page-shell {
    min-height: 70vh;
    padding-top: clamp(54px, 7vw, 92px);
    padding-bottom: clamp(70px, 9vw, 120px);
}
.enterprise-page-heading {
    max-width: 900px;
    margin: 0 auto clamp(38px, 6vw, 72px);
    text-align: center;
}
.enterprise-page-heading > span {
    color: var(--tt-cobalt);
    font-size: .75rem;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.enterprise-page-heading h1 {
    margin: 12px 0 0;
    color: var(--tt-ink) !important;
    font-family: var(--tt-font) !important;
    font-size: clamp(2.7rem, 6vw, 5.6rem) !important;
    font-weight: 740 !important;
    line-height: 1 !important;
    letter-spacing: -.065em;
    text-wrap: balance;
}
.section-footer-2 {
    color: #d5e2de;
    background: var(--tt-footer);
}
.section-footer-2 .container {
    padding-top: clamp(54px, 7vw, 90px);
    padding-bottom: 28px;
    border: 0 !important;
}
.section-footer-2 svg { width: 18px; height: 18px; }
.enterprise-footer-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 40px;
    align-items: end;
    padding-bottom: clamp(44px, 6vw, 72px);
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}
.enterprise-footer-cta > div > span,
.enterprise-footer-column-title {
    display: block;
    color: #a9c3b9;
    font-size: .72rem;
    font-weight: 720;
    letter-spacing: .095em;
    text-transform: uppercase;
}
.enterprise-footer-cta h2 {
    max-width: 830px;
    margin: 12px 0 0;
    color: #fff !important;
    font-family: var(--tt-font) !important;
    font-size: clamp(2.25rem, 4.2vw, 4.4rem) !important;
    font-weight: 650 !important;
    line-height: 1.05 !important;
    letter-spacing: -.052em;
    text-wrap: balance;
}
.enterprise-footer-cta > a {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    border: 1px solid #fff;
    border-radius: 3px;
    color: var(--tt-footer);
    background: #fff;
    font-size: .86rem;
    font-weight: 720;
    text-decoration: none;
}
.enterprise-footer-cta > a:hover,
.enterprise-footer-cta > a:focus-visible {
    color: #fff;
    background: transparent;
}
.enterprise-footer-widgets {
    display: grid;
    grid-template-columns: minmax(320px, 1.1fr) minmax(250px, .75fr) minmax(340px, 1fr);
    column-gap: clamp(28px, 4vw, 64px);
    row-gap: 18px;
    padding-top: clamp(42px, 5vw, 64px);
    text-align: left;
}
.enterprise-footer-brand { grid-column: 1; grid-row: 1; }
.enterprise-footer-brand .main-logo { color: #fff; text-decoration: none; }
.enterprise-footer-brand .site-name-text { color: #fff !important; }
.enterprise-footer-brand p {
    max-width: 440px;
    margin: 22px 0 0;
    color: #c3d3ce;
    font-size: .94rem;
    line-height: 1.7;
}
.enterprise-footer-widgets > .navigation {
    grid-column: 2;
    grid-row: 1;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(100px, 1fr));
    align-content: start;
    align-items: start !important;
    justify-content: stretch !important;
    gap: 12px 24px !important;
    margin: 0 !important;
}
.enterprise-footer-widgets > .navigation .enterprise-footer-column-title { grid-column: 1 / -1; }
.enterprise-footer-widgets > .navigation a {
    color: #e5eeeb;
    font-size: .9rem !important;
    text-decoration: none;
}
.enterprise-footer-widgets > .navigation a:hover,
.enterprise-footer-widgets > .navigation a:focus-visible { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.enterprise-footer-column-title { margin-bottom: 10px; }
.enterprise-footer-contact {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
}
.enterprise-footer-contact-item {
    min-height: 64px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    color: #fff;
    text-decoration: none;
}
.enterprise-footer-contact-item:hover,
.enterprise-footer-contact-item:focus-visible { color: #fff; }
.enterprise-footer-contact-icon {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: #b7cec5;
}
.enterprise-footer-contact-copy,
.enterprise-footer-contact-copy > * { display: block; }
.enterprise-footer-contact-copy small {
    margin-bottom: 3px;
    color: #9fb9b0;
    font-size: .68rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.enterprise-footer-contact-copy > span {
    color: #fff;
    font-size: .88rem;
    line-height: 1.45;
}
.enterprise-footer-social {
    grid-column: 2;
    grid-row: 2;
    display: block;
    margin: 8px 0 0 !important;
}
.enterprise-footer-social > div { display: flex; gap: 9px; }
.enterprise-footer-social .enterprise-social-link {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 3px;
    color: #fff;
}
.enterprise-footer-social .enterprise-social-link:hover,
.enterprise-footer-social .enterprise-social-link:focus-visible { border-color: #fff; background: rgba(255, 255, 255, .08); }
.enterprise-footer-copyright {
    grid-column: 1 / -1;
    grid-row: 3;
    margin: 22px 0 0 !important;
    padding: 22px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .18);
    text-align: left;
}
.enterprise-footer-copyright span {
    padding: 0;
    color: #9fb9b0 !important;
    font-size: .78rem !important;
}
.bb-social-sharing { display: flex; flex-wrap: wrap; gap: 1rem; padding: 1rem 0 0; list-style: none; }
.bb-social-sharing button { all: unset; cursor: pointer; }
.contact-form .contact-form-group { margin-bottom: 0 !important; }
form label.required::after { margin-inline-start: 5px; color: #b42318; content: "*"; }
.offCanvas__info,
.offCanvas__overly,
.btn-scroll-top,
#preloader { display: none !important; }

/* Service detail pages */
.enterprise-service-page {
    padding: clamp(54px, 7vw, 92px) 0 clamp(70px, 9vw, 120px);
    color: var(--tt-ink);
    background: var(--tt-soft);
}
.enterprise-service-page > .container {
    width: min(100% - clamp(32px, 5vw, 80px), 1240px);
}
.enterprise-service-hero { padding-bottom: clamp(30px, 5vw, 54px); }
.enterprise-service-content { margin-top: clamp(28px, 5vw, 56px); }
.enterprise-service-label {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border: 1px solid #bfcae0;
    border-radius: 7px;
    color: var(--tt-cobalt);
    background: #fff;
    font-size: .7rem;
    font-weight: 750;
    letter-spacing: .07em;
}
.enterprise-service-hero h1 {
    max-width: 1040px;
    margin: 18px auto 0;
    color: var(--tt-ink) !important;
    font-family: var(--tt-font) !important;
    font-size: clamp(2.7rem, 5.7vw, 5.5rem) !important;
    font-weight: 740 !important;
    line-height: 1 !important;
    letter-spacing: -.065em;
    text-wrap: balance;
}
.enterprise-service-hero > div > p {
    max-width: 820px;
    margin: 22px auto 0;
    color: var(--tt-muted) !important;
    font-size: 1.05rem !important;
    line-height: 1.7;
}
.enterprise-service-detail {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: 16px;
}
.enterprise-service-detail > section {
    min-width: 0;
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid var(--tt-line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 26px rgba(24, 44, 93, .05);
}
.enterprise-service-detail section > span,
.enterprise-service-section-heading > span {
    display: block;
    margin-bottom: 9px;
    color: var(--tt-cobalt);
    font-size: .7rem;
    font-weight: 750;
    letter-spacing: .07em;
    text-transform: uppercase;
}
.enterprise-service-detail h2 {
    margin: 0;
    color: var(--tt-ink) !important;
    font-family: var(--tt-font) !important;
    font-size: clamp(1.45rem, 2vw, 1.9rem) !important;
    font-weight: 720 !important;
    line-height: 1.25 !important;
}
.enterprise-service-overview > p,
.enterprise-service-section-heading > p {
    margin: 14px 0 0;
    color: var(--tt-muted) !important;
    font-size: .96rem !important;
    line-height: 1.7 !important;
}
.enterprise-service-scope ul,
.enterprise-service-outcomes ul {
    display: grid;
    gap: 10px;
    margin: 16px 0 0;
    padding-left: 19px;
}
.enterprise-service-scope li,
.enterprise-service-outcomes li {
    color: #334155;
    font-size: .9rem;
    line-height: 1.55;
}
.enterprise-service-delivery,
.enterprise-service-outcomes,
.enterprise-service-cta { grid-column: 1 / -1; }
.enterprise-service-section-heading {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(320px, 1.15fr);
    gap: 30px;
    align-items: end;
}
.enterprise-service-section-heading > span { grid-column: 1 / -1; }
.enterprise-service-delivery ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 30px;
    margin: 22px 0 0;
    padding: 0;
    border-top: 1px solid var(--tt-line);
    list-style: none;
}
.enterprise-service-delivery li {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    padding: 18px 0;
    border-bottom: 1px solid var(--tt-line);
}
.enterprise-service-step-number {
    color: var(--tt-cobalt);
    font-size: .72rem;
    font-weight: 750;
}
.enterprise-service-delivery h3 {
    margin: 0 0 5px;
    color: var(--tt-ink) !important;
    font-family: var(--tt-font) !important;
    font-size: .96rem !important;
    font-weight: 720 !important;
}
.enterprise-service-delivery li p {
    margin: 0;
    color: var(--tt-muted) !important;
    font-size: .86rem !important;
    line-height: 1.55 !important;
}
.enterprise-service-outcomes ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 0;
    list-style: none;
}
.enterprise-service-outcomes li {
    padding: 14px;
    border: 1px solid var(--tt-line);
    border-radius: 8px;
    background: var(--tt-soft);
}
.enterprise-service-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border-color: #9eafe0 !important;
    background: var(--tt-cobalt-soft) !important;
}
.enterprise-service-cta > div { max-width: 740px; }
.enterprise-service-cta p {
    margin: 9px 0 0;
    color: var(--tt-muted) !important;
    font-size: .9rem !important;
    line-height: 1.6 !important;
}
.enterprise-service-cta a {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 0 15px;
    border: 1px solid var(--tt-cobalt);
    border-radius: 8px;
    color: #fff !important;
    background: var(--tt-cobalt);
    font-size: .82rem;
    font-weight: 720;
    text-decoration: none;
}
.enterprise-service-share {
    border: 1px solid var(--tt-line);
    border-radius: 10px;
    background: #fff;
}
.enterprise-service-share .bb-social-sharing {
    gap: 8px;
    padding-top: 12px;
}
.enterprise-service-share .bb-social-sharing__item {
    border-color: #a9bbb7;
    background: #fff;
    transition: border-color .2s ease, background-color .2s ease;
}
.enterprise-service-share .bb-social-sharing__item a,
.enterprise-service-share .bb-social-sharing__item button {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--tt-footer) !important;
    background: transparent !important;
}
.enterprise-service-share .bb-social-sharing__item:hover,
.enterprise-service-share .bb-social-sharing__item:focus-within {
    border-color: var(--tt-footer);
    background: var(--tt-footer);
}
.enterprise-service-share .bb-social-sharing__item:hover a,
.enterprise-service-share .bb-social-sharing__item:hover button,
.enterprise-service-share .bb-social-sharing__item:focus-within a,
.enterprise-service-share .bb-social-sharing__item:focus-within button {
    color: #fff !important;
}
.enterprise-service-share .bb-social-sharing__item svg {
    color: currentColor !important;
    stroke: currentColor;
}

@media (max-width: 1199.98px) {
    .section-hero-2 { background: #fff; }
    .enterprise-hero-copy,
    .enterprise-hero-media { width: 100%; }
    .enterprise-hero-copy {
        order: 1;
        padding: 40px 0 42px;
    }
    .enterprise-hero-media {
        order: 2;
        padding: 32px clamp(26px, 5vw, 54px) 42px;
        border-top: 1px solid var(--tt-line);
        border-left: 0;
        background: var(--tt-soft);
    }
    .enterprise-portfolio-card { grid-template-columns: 1fr; }
    .enterprise-portfolio-media img {
        min-height: 360px;
        max-height: 520px;
    }
    .enterprise-project-action { margin-top: 28px; }
}

@media (max-width: 991.98px) {
    .enterprise-site-header {
        min-height: 72px;
        display: flex;
        align-items: center;
    }
    .navbar-home-2 > .enterprise-header-inner { min-height: 72px; }
    .enterprise-section-heading { grid-template-columns: 1fr; gap: 16px; }
    .enterprise-section-heading > p { max-width: 700px; }
    .enterprise-proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .enterprise-proof-item { border-bottom: 1px solid rgba(255, 255, 255, .16); }
    .enterprise-proof-item:nth-child(even) { border-right: 0; }
    .enterprise-proof-item:nth-last-child(-n + 2) { border-bottom: 0; }
    .enterprise-footer-cta {
        grid-template-columns: 1fr;
        align-items: start;
    }
    .enterprise-footer-cta > a { justify-self: start; }
    .enterprise-footer-widgets {
        grid-template-columns: minmax(0, 1.2fr) minmax(170px, .8fr);
        gap: 42px;
    }
    .enterprise-footer-brand { grid-column: 1; grid-row: 1; }
    .enterprise-footer-widgets > .navigation { grid-column: 2; grid-row: 1; }
    .enterprise-footer-contact { grid-column: 1 / -1; grid-row: 2; }
    .enterprise-footer-social { grid-column: 1; grid-row: 3; }
    .enterprise-footer-copyright { grid-row: 4; }
    .delivery-process-intro { min-height: 0; }
    .enterprise-service-detail { grid-template-columns: 1fr; }
    .enterprise-service-delivery,
    .enterprise-service-outcomes,
    .enterprise-service-cta { grid-column: auto; }
    .enterprise-service-section-heading { grid-template-columns: 1fr; gap: 10px; }
    .enterprise-service-section-heading > span { grid-column: auto; }
    .enterprise-service-outcomes ul { grid-template-columns: 1fr; }
    .enterprise-service-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    html { scroll-padding-top: 78px; }
    .section-hero-2::before,
    .section-service-2::before,
    .section-projects-2::before,
    .section-skills-2::before,
    .section-delivery-process::before,
    .section-contact-2::before { opacity: .018; }
    .container,
    .navbar-home-2 > .enterprise-header-inner { width: calc(100% - 32px); }
    .navbar-home-2 .navbar-brand img { max-width: 36px; height: 34px; }
    .site-name-text { font-size: 1.08rem; }
    .section-hero-2 { padding-top: 0; }
    .enterprise-hero-panel { border-radius: 0; }
    .enterprise-hero-copy { padding: 36px 0; }
    .enterprise-hero-eyebrow {
        margin-bottom: 17px;
        font-size: .68rem;
        line-height: 1.45;
    }
    .section-hero-2 .section-hero-title {
        font-size: clamp(2.45rem, 12vw, 3.65rem) !important;
        line-height: 1.01 !important;
        letter-spacing: -.062em;
    }
    .section-hero-2 .section-hero-description {
        margin-top: 21px !important;
        font-size: 1rem;
        line-height: 1.65;
    }
    .enterprise-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 24px;
    }
    .enterprise-button { width: 100%; min-height: 52px; }
    .enterprise-trust-line {
        grid-template-columns: 1fr;
        gap: 7px;
        margin-top: 22px;
        padding-top: 17px;
        font-size: .76rem;
    }
    .enterprise-pathfinder-entry { margin-top: 20px; }
    .enterprise-pathfinder-trigger { min-height: 70px; }
    .enterprise-pathfinder-trigger strong { font-size: .9rem; }
    .enterprise-pathfinder-note { font-size: .7rem; }
    .enterprise-hero-media { padding: 24px 0 32px; }
    .enterprise-workspace-heading {
        min-height: 42px;
        padding: 0 12px;
        font-size: .65rem;
    }
    .enterprise-workspace-heading span:last-child { display: none; }
    .enterprise-proof-item {
        min-height: 116px;
        align-items: center;
        gap: 9px;
        padding: 20px 12px;
        text-align: center;
    }
    .enterprise-proof-value { gap: 11px; }
    .enterprise-proof-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }
    .enterprise-proof-icon svg { width: 20px; height: 20px; }
    .enterprise-proof-item strong { font-size: 2rem; }
    .enterprise-proof-label {
        max-width: 150px;
        font-size: .75rem;
        line-height: 1.35;
    }
    .enterprise-section { padding: 56px 0; }
    .enterprise-section + .enterprise-section { padding-top: 56px; }
    .enterprise-section-heading { margin-bottom: 28px; }
    .enterprise-section-heading h2 {
        font-size: clamp(2.2rem, 10vw, 3rem) !important;
    }
    .enterprise-section-heading > p {
        font-size: .94rem;
        line-height: 1.6;
    }
    .enterprise-service-card {
        min-height: 0;
        padding: 18px 16px;
    }
    .enterprise-service-summary {
        grid-template-columns: 42px minmax(0, 1fr) 30px;
        gap: 13px;
        cursor: pointer;
    }
    .enterprise-service-icon { width: 42px; height: 42px; }
    .enterprise-service-icon svg { width: 22px; height: 22px; }
    .enterprise-service-summary > strong { font-size: 1.02rem; }
    .enterprise-service-panel {
        margin: 14px 0 0 55px;
        padding: 14px 0 2px;
        border-top: 1px solid var(--tt-line);
    }
    .enterprise-service-description {
        font-size: .84rem;
        line-height: 1.5;
    }
    .enterprise-service-link { margin-top: 13px; }
    .enterprise-service-toggle { display: grid; }
    .enterprise-service-card[open] .enterprise-service-toggle i { transform: rotate(45deg); }
    .enterprise-portfolio-media { padding: 0; }
    .enterprise-portfolio-media img {
        min-height: 0;
        aspect-ratio: 3 / 2;
    }
    .enterprise-portfolio-content { padding: 24px 20px; }
    .enterprise-portfolio-content h3 {
        font-size: clamp(2rem, 10vw, 2.85rem) !important;
    }
    .enterprise-project-facts > div { grid-template-columns: 80px 1fr; }
    .enterprise-portfolio-controls { justify-content: flex-start; }
    .enterprise-technology-panel { padding: 0; }
    .technology-capabilities { grid-template-columns: 1fr; }
    .technology-capability { min-height: 0; padding: 18px 16px; }
    .technology-stack__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .technology-chip {
        min-height: 68px;
        padding: 12px;
        font-size: .78rem;
    }
    .technology-chip svg {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
    }
    .delivery-process-intro { padding: 30px 22px; }
    .delivery-process-intro h2 { font-size: 2.55rem !important; }
    .delivery-process-actions {
        display: grid;
        grid-template-columns: 1fr;
    }
    .enterprise-inline-link { width: 100%; min-height: 50px; }
    .delivery-process-steps li {
        min-height: 0;
        grid-template-columns: 36px 1fr;
        padding: 22px 18px;
    }
    .section-contact-2 > .container > .row > div:first-child,
    .section-contact-2 > .container > .row > div:last-child {
        padding: 28px 20px !important;
    }
    .enterprise-contact-assurance {
        display: grid;
        grid-template-columns: 1fr;
    }
    .enterprise-pathfinder {
        width: calc(100% - 16px);
        max-height: calc(100dvh - 16px);
    }
    .enterprise-pathfinder-shell { padding: 18px 14px; }
    .enterprise-pathfinder-header h2 { font-size: 1.55rem; }
    .enterprise-pathfinder-options button {
        grid-template-columns: 40px minmax(0, 1fr) 18px;
        gap: 10px;
        padding: 10px;
    }
    .enterprise-pathfinder-options button > svg:first-child {
        width: 38px;
        height: 38px;
        padding: 8px;
    }
    .enterprise-pathfinder-options strong { font-size: .9rem; }
    .enterprise-pathfinder-options small { font-size: .78rem; }
    .enterprise-pathfinder-result dl div {
        grid-template-columns: 1fr;
        gap: 3px;
    }
    .enterprise-pathfinder-result-actions {
        align-items: stretch;
        flex-direction: column;
    }
    .enterprise-pathfinder-apply,
    .enterprise-pathfinder-reset { width: 100%; }
    .enterprise-page-shell { padding-top: 48px; }
    .enterprise-page-heading { text-align: left; }
    .enterprise-page-heading h1 {
        font-size: clamp(2.5rem, 12vw, 3.65rem) !important;
    }
    .enterprise-service-page > .container { width: calc(100% - 32px); }
    .enterprise-service-hero { text-align: left !important; }
    .enterprise-service-hero h1 {
        font-size: clamp(2.35rem, 11vw, 3.4rem) !important;
    }
    .enterprise-service-delivery ol { grid-template-columns: 1fr; }
    .enterprise-service-cta a { width: 100%; }
    .enterprise-footer-cta h2 { font-size: clamp(2.2rem, 9vw, 3.25rem) !important; }
    .enterprise-footer-widgets {
        grid-template-columns: 1fr;
        gap: 34px;
    }
    .enterprise-footer-brand,
    .enterprise-footer-widgets > .navigation,
    .enterprise-footer-contact,
    .enterprise-footer-social {
        grid-column: 1;
        grid-row: auto;
    }
    .enterprise-footer-widgets > .navigation { display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .enterprise-footer-widgets > .navigation .enterprise-footer-column-title { grid-column: 1 / -1; }
    .enterprise-footer-contact { grid-row: auto; }
    .enterprise-footer-copyright { grid-column: 1; grid-row: auto; margin-top: 4px !important; }
}

@media (max-width: 389.98px) {
    .container,
    .navbar-home-2 > .enterprise-header-inner { width: calc(100% - 24px); }
    .site-name-text { font-size: 1rem; }
    .enterprise-hero-copy { padding-inline: 0; }
    .section-hero-2 .section-hero-title { font-size: 2.35rem !important; }
    .enterprise-proof-item { padding: 18px 10px; }
    .technology-stack__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
    .enterprise-service-card:hover { transform: none; }
}
