body.has-floating-nav #wrapper {
    padding-top: 102px;
    position: relative;
}

body.has-floating-nav #wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 136px;
    background: var(--navy);
    z-index: 0;
}

body.has-floating-nav #container {
    position: relative;
    z-index: 1;
}

body.has-floating-nav .breadcrumb,
body.has-floating-nav .breadcrumbs,
body.has-floating-nav .blog-breadcrumbs {
    margin-top: 0;
    padding-top: 0;
}

.dc-site-header {
    position: relative;
    z-index: 1000;
}

.dc-site-nav {
    position: fixed;
    top: 34px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    pointer-events: none;
}

.dc-nav-capsule {
    max-width: none;
    width: 100%;
    margin: 0 auto;
    min-height: 88px;
    background: linear-gradient(135deg, rgba(247, 245, 240, 0.72) 0%, rgba(255, 255, 255, 0.62) 46%, rgba(231, 226, 216, 0.66) 100%);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    box-shadow: 0 16px 40px rgba(9, 22, 38, 0.16), 0 1px 0 rgba(255, 255, 255, 0.55) inset;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 0 16px 0 28px;
    pointer-events: all;
    transition: border-radius 0.2s ease, border-color 0.2s ease;
    position: relative;
    overflow: visible;
}

.dc-nav-capsule::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(112deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.08) 34%, rgba(255, 255, 255, 0) 52%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 58%);
    pointer-events: none;
}

.dc-site-nav.is-mega-open .dc-nav-capsule {
    border-radius: 30px 30px 0 0;
    border-bottom-color: transparent;
}

.dc-nav-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    width: 250px;
    height: 56px;
    overflow: hidden;
}

.dc-nav-logo-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 46.5%;
    transform: scale(1.06);
}

.dc-nav-links {
    list-style: none;
    display: flex;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0;
    height: 100%;
    position: static;
}

.dc-nav-item {
    position: static;
    display: flex;
    align-items: stretch;
}

.dc-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 100%;
    min-height: 88px;
    padding: 0 16px;
    background: none;
    border: 0;
    color: rgba(15, 45, 82, 0.78);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.16s ease;
    white-space: nowrap;
}

.dc-nav-item.is-current > .dc-nav-link,
.dc-nav-item.is-open > .dc-nav-link,
.dc-nav-link:hover,
.dc-nav-link:focus-visible {
    color: var(--navy);
}

.dc-nav-item.is-current > .dc-nav-link {
    position: relative;
}

.dc-nav-item.is-current > .dc-nav-link::after {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: linear-gradient(90deg, rgba(200, 164, 90, 0), rgba(200, 164, 90, 1), rgba(200, 164, 90, 0));
}

.dc-chevron {
    width: 10px;
    height: 10px;
    opacity: 0.62;
    transition: transform 0.2s ease, opacity 0.2s ease;
    flex-shrink: 0;
}

.dc-nav-item.is-open .dc-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

.dc-nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.dc-btn-book,
.dc-btn-book-drawer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--navy);
    text-decoration: none;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    border-radius: 12px;
    transition: background 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
    box-shadow: 0 4px 18px rgba(200, 164, 90, 0.22);
}

.dc-btn-book {
    min-height: 58px;
    padding: 0 26px;
    font-size: 14px;
}

.dc-btn-book:hover,
.dc-btn-book-drawer:hover {
    background: #d4b36a;
    transform: translateY(-1px);
}

.dc-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    padding: 10px;
    cursor: pointer;
}

.dc-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.dc-hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.dc-hamburger.is-open span:nth-child(2) {
    opacity: 0;
}

.dc-hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.dc-mega-menu {
    position: absolute;
    top: 100%;
    left: -1px;
    right: -1px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    background: rgba(246, 243, 236, 0.92);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-top: 0;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 24px 48px rgba(15, 45, 82, 0.12);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    pointer-events: none;
    z-index: 999;
    overflow: hidden;
}

.dc-nav-item.is-open .dc-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dc-mega-inner {
    width: 100%;
    padding: 0 28px 0 28px;
    margin: 0 auto;
}

.dc-services-grid,
.dc-cases-grid,
.dc-industries-wrap,
.dc-resources-grid,
.dc-mega-footer {
    width: 100%;
}

.dc-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) 220px;
    padding-top: 34px;
    align-items: start;
}

.dc-case-card {
    padding: 0 24px 34px 0;
    border-right: 1px solid rgba(15, 45, 82, 0.08);
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.dc-case-card:nth-child(2),
.dc-case-card:nth-child(3) {
    padding: 0 24px 34px 24px;
}

.dc-case-tag {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(200, 164, 90, 0.12);
    color: rgba(200, 164, 90, 0.95);
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.dc-case-metric {
    color: var(--gold);
    font-family: var(--font-head);
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
}

.dc-case-label {
    color: rgba(15, 45, 82, 0.5);
    font-size: 12px;
}

.dc-case-title {
    color: var(--navy);
    text-decoration: none;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    transition: color 0.16s ease;
}

.dc-case-title:hover {
    color: var(--gold);
}

.dc-case-link,
.dc-cases-side-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    text-decoration: none;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    transition: gap 0.16s ease;
}

.dc-case-link::after,
.dc-cases-side-link::after {
    content: "+";
}

.dc-case-link:hover,
.dc-cases-side-link:hover {
    gap: 10px;
}

.dc-cases-side {
    padding-left: 24px;
    padding-bottom: 34px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

.dc-cases-side-eyebrow {
    color: rgba(15, 45, 82, 0.34);
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.dc-cases-side-count {
    color: var(--navy);
    font-family: var(--font-head);
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.dc-cases-side-label {
    margin: 0;
    color: rgba(15, 45, 82, 0.6);
    font-size: 13px;
    line-height: 1.6;
}

body.has-floating-nav .container {
    padding-left: 48px;
    padding-right: 48px;
}

.dc-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding-top: 34px;
}

.dc-service-card {
    padding: 0 28px 34px 0;
    border-right: 1px solid rgba(15, 45, 82, 0.08);
}

.dc-service-card:nth-child(2) {
    padding: 0 28px 34px 28px;
}

.dc-service-card:last-child {
    border-right: 0;
    padding: 0 0 34px 28px;
}

.dc-service-step,
.dc-industry-panel-eyebrow,
.dc-drawer-sub-title,
.dc-mega-footer-link,
.dc-industry-panel-cta {
    font-family: var(--font-head);
}

.dc-service-step {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(200, 164, 90, 0.92);
    margin-bottom: 10px;
}

.dc-service-title {
    display: block;
    color: var(--navy);
    text-decoration: none;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 8px;
    transition: color 0.16s ease;
}

.dc-service-title:hover {
    color: var(--gold);
}

.dc-service-desc {
    margin: 0 0 14px;
    color: rgba(15, 45, 82, 0.62);
    font-size: 12.75px;
    line-height: 1.7;
}

.dc-service-link,
.dc-industry-panel-cta,
.dc-mega-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    transition: gap 0.16s ease;
}

.dc-service-link::after,
.dc-industry-panel-cta::after,
.dc-mega-footer-link::after {
    content: "+";
}

.dc-service-link:hover,
.dc-industry-panel-cta:hover,
.dc-mega-footer-link:hover {
    gap: 10px;
}

.dc-service-view-all,
.dc-industry-view-all {
    display: block;
    text-align: center;
    padding: 10px 0 20px;
    color: var(--gold);
    text-decoration: none;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    transition: color 0.16s ease;
}

.dc-service-view-all:hover,
.dc-industry-view-all:hover {
    color: var(--navy);
}

.dc-resources-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 34px;
}

.dc-resource-card {
    padding: 0 28px 34px 0;
    border-right: 1px solid rgba(15, 45, 82, 0.08);
}

.dc-resource-card:nth-child(2),
.dc-resource-card:nth-child(4) {
    padding: 0 0 34px 28px;
}

.dc-resource-card:nth-child(2) {
    border-right: 0;
}

.dc-resource-card:nth-child(3) {
    border-top: 1px solid rgba(15, 45, 82, 0.08);
    padding-top: 34px;
}

.dc-resource-card:nth-child(4) {
    border-top: 1px solid rgba(15, 45, 82, 0.08);
    border-right: 0;
    padding-top: 34px;
}

.dc-resource-title {
    display: block;
    color: var(--navy);
    text-decoration: none;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 8px;
    transition: color 0.16s ease;
}

.dc-resource-title:hover {
    color: var(--gold);
}

.dc-resource-desc {
    margin: 0 0 14px;
    color: rgba(15, 45, 82, 0.62);
    font-size: 12.75px;
    line-height: 1.7;
}

.dc-resource-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--gold);
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    transition: gap 0.16s ease;
}

.dc-resource-link::after {
    content: "+";
}

.dc-resource-link:hover {
    gap: 10px;
}

.dc-industries-wrap {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    min-height: 390px;
}

.dc-industry-rail {
    border-right: 1px solid rgba(15, 45, 82, 0.08);
    padding: 28px 0;
}

.dc-industry-tab {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    background: none;
    border: 0;
    padding: 14px 22px;
    text-align: left;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    cursor: pointer;
    transition: background 0.16s ease;
}

.dc-industry-tab:hover,
.dc-industry-tab.is-active {
    background: rgba(15, 45, 82, 0.05);
}

.dc-industry-tab-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(15, 45, 82, 0.22);
    transition: background 0.16s ease, box-shadow 0.16s ease;
    flex-shrink: 0;
}

.dc-industry-tab.is-active .dc-industry-tab-dot {
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(200, 164, 90, 0.18);
}

.dc-industry-tab-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.dc-industry-tab-name {
    color: rgba(15, 45, 82, 0.82);
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.dc-industry-tab-count {
    color: rgba(15, 45, 82, 0.42);
    font-size: 11px;
    font-weight: 500;
}

.dc-industry-tab.is-active .dc-industry-tab-name {
    color: var(--navy);
}

.dc-industry-tab.is-active .dc-industry-tab-count {
    color: rgba(200, 164, 90, 0.76);
}

.dc-industry-tab-arrow {
    margin-left: auto;
    color: rgba(15, 45, 82, 0.24);
    font-size: 16px;
    line-height: 1;
    transition: color 0.16s ease, transform 0.16s ease;
}

.dc-industry-tab.is-active .dc-industry-tab-arrow {
    color: var(--gold);
    transform: translateX(3px);
}

.dc-industry-panels {
    padding: 30px 28px 30px 34px;
}

.dc-industry-panel {
    display: none;
    animation: dcFadeIn 0.18s ease;
}

.dc-industry-panel.is-active {
    display: block;
}

@keyframes dcFadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dc-industry-panel-header {
    margin-bottom: 18px;
    max-width: 680px;
}

.dc-industry-panel-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(200, 164, 90, 0.96);
    margin-bottom: 6px;
}

.dc-industry-panel-title {
    margin: 0 0 6px;
    color: var(--navy);
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.dc-industry-panel-desc {
    margin: 0;
    color: rgba(15, 45, 82, 0.62);
    font-size: 12.75px;
    line-height: 1.65;
}

.dc-industry-sublinks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 20px;
}

.dc-industry-sublink {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.14s ease, transform 0.14s ease;
}

.dc-industry-sublink:hover {
    background: rgba(15, 45, 82, 0.05);
    transform: translateX(2px);
}

.dc-industry-sublink-badge {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: rgba(200, 164, 90, 0.12);
    border: 1px solid rgba(200, 164, 90, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.dc-industry-sublink-text {
    color: rgba(15, 45, 82, 0.72);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.14s ease;
}

.dc-industry-sublink:hover .dc-industry-sublink-text {
    color: var(--navy);
}

.dc-industry-panel-cta {
    margin-top: 18px;
}

.dc-mega-footer {
    border-top: 1px solid rgba(15, 45, 82, 0.08);
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.dc-mega-footer-text {
    color: rgba(15, 45, 82, 0.52);
    font-size: 13px;
}

.dc-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.dc-nav-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.dc-mobile-drawer {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: min(100%, 380px);
    height: 100vh;
    background: rgba(10, 25, 45, 0.98);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    overflow-y: auto;
}

.dc-mobile-drawer.is-open {
    transform: translateX(0);
}

.dc-drawer-inner {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding: 24px 24px 42px;
}

.dc-drawer-close-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.dc-drawer-logo {
    display: inline-flex;
    align-items: center;
}

.dc-drawer-logo-image {
    display: block;
    width: auto;
    height: 34px;
}

.dc-drawer-close {
    background: none;
    border: 0;
    color: rgba(255, 255, 255, 0.54);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.16s ease;
}

.dc-drawer-close:hover {
    color: var(--white);
}

.dc-drawer-link,
.dc-drawer-acc-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 0;
    background: none;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.76);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font-body);
    text-align: left;
}

.dc-drawer-acc-btn {
    cursor: pointer;
}

.dc-drawer-link:hover,
.dc-drawer-acc-btn:hover {
    color: var(--white);
}

.dc-acc-icon {
    color: var(--gold);
    font-size: 20px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.dc-drawer-acc-btn.is-open .dc-acc-icon {
    transform: rotate(45deg);
}

.dc-drawer-acc-content {
    display: none;
    padding: 8px 0 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.dc-drawer-acc-content.is-open {
    display: block;
}

.dc-drawer-sub-title {
    display: block;
    padding: 12px 0 4px;
    color: rgba(200, 164, 90, 0.78);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.dc-drawer-sub-link {
    display: block;
    padding: 7px 0;
    color: rgba(255, 255, 255, 0.56);
    text-decoration: none;
    font-size: 13.5px;
    transition: color 0.16s ease;
}

.dc-drawer-sub-link:hover {
    color: var(--white);
}

.dc-drawer-cta {
    margin-top: auto;
    padding-top: 28px;
}

.dc-btn-book-drawer {
    min-height: 52px;
    padding: 0 22px;
}

body.dc-nav-locked {
    overflow: hidden;
}

@media (max-width: 1100px) {
    body.has-floating-nav #wrapper {
        padding-top: 98px;
    }

    body.has-floating-nav #wrapper::before {
        height: 120px;
    }

    .dc-nav-links,
    .dc-btn-book {
        display: none;
    }

    .dc-hamburger {
        display: flex;
    }

    .dc-mobile-drawer {
        display: block;
    }

    .dc-nav-logo-image {
        transform: scale(1.04);
    }

    .dc-nav-logo {
        width: 224px;
        height: 50px;
    }
}

@media (max-width: 767px) {
    body.has-floating-nav #wrapper {
        padding-top: 92px;
    }

    body.has-floating-nav #wrapper::before {
        height: 106px;
    }

    .dc-site-nav {
        top: 24px;
        padding: 0 14px;
    }

    .dc-nav-capsule {
        min-height: 80px;
        padding: 0 10px 0 18px;
        border-radius: 24px;
    }

    .dc-nav-logo-image {
        transform: scale(1.02);
    }

    .dc-nav-logo {
        width: 188px;
        height: 42px;
    }

    body.has-floating-nav .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .dc-drawer-inner {
        padding-left: 18px;
        padding-right: 18px;
    }
}
