/* CVD Infra Projects - Enterprise Homepage Design System */

:root {
    --c-navy: #0B2341;
    --c-steel: #5F6B7A;
    --c-white: #FFFFFF;
    --c-concrete: #F7F8FA;
    --c-gold: #D4AF37;
    --c-charcoal: #1C1C1C;
    --c-border: #E3E8EE;
    --max-w: 1260px;
    --sec-pad: clamp(72px, 8vw, 120px);
    --trans: 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--c-charcoal);
    background: var(--c-white);
    font-family: "Manrope", "Segoe UI", sans-serif;
    line-height: 1.65;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
    letter-spacing: -0.02em;
    color: var(--c-navy);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.cvd-wrap {
    width: min(100% - 48px, var(--max-w));
    margin-inline: auto;
}

.cvd-skip {
    position: absolute;
    left: -9999px;
    top: 0;
}

.cvd-skip:focus {
    left: 16px;
    top: 16px;
    z-index: 10000;
    background: var(--c-gold);
    color: var(--c-charcoal);
    padding: 8px 12px;
}

.cvd-icon {
    stroke-width: 2px;
    --cvd-icon-bg: rgba(11, 35, 65, 0.04);
    --cvd-icon-border: rgba(11, 35, 65, 0.14);
    display: inline-block;
    padding: 6px;
    border: 1px solid var(--cvd-icon-border);
    background: var(--cvd-icon-bg);
    border-radius: 10px;
    box-sizing: content-box;
    vertical-align: middle;
}

.cvd-sec--dark .cvd-icon,
.cvd-trust .cvd-icon,
.cvd-careers-banner .cvd-icon,
.cvd-footer .cvd-icon {
    --cvd-icon-bg: rgba(255, 255, 255, 0.06);
    --cvd-icon-border: rgba(255, 255, 255, 0.18);
}

.cvd-icon+* {
    margin-left: 6px;
}

.cvd-icon--plain {
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 0;
}

.cvd-icon--plain+* {
    margin-left: 0;
}

.cvd-label {
    margin: 0 0 14px;
    color: var(--c-steel);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 11px;
    font-weight: 800;
}

.cvd-label--light {
    color: rgba(255, 255, 255, 0.74);
}

.cvd-lead {
    margin: 0;
    max-width: 52ch;
    color: #3B4858;
    font-size: 16px;
}

.cvd-sec {
    padding: var(--sec-pad) 0;
}

.cvd-sec--alt {
    background: var(--c-concrete);
}

.cvd-sec--dark {
    background: var(--c-navy);
}

.cvd-sec-head {
    margin-bottom: clamp(32px, 5vw, 56px);
}

.cvd-sec-head h2 {
    font-size: clamp(28px, 4.2vw, 42px);
    line-height: 1.1;
    max-width: 20ch;
}

.cvd-sec-head .cvd-lead {
    margin-top: 16px;
}

.cvd-split__content .cvd-lead {
    margin-top: 16px;
}

.cvd-sec--dark .cvd-sec-head h2 {
    color: var(--c-white);
}

.cvd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    height: 50px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: transform 220ms cubic-bezier(0.2, 0.7, 0.2, 1), background 240ms ease, border-color 240ms ease, color 240ms ease, box-shadow 240ms ease;
}

.cvd-btn::before {
    content: "";
    position: absolute;
    top: -140%;
    left: -35%;
    width: 38%;
    height: 380%;
    pointer-events: none;
    opacity: 0;
    transform: rotate(22deg) translate3d(0, 0, 0);
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.5) 48%, transparent 100%);
    transition: opacity 260ms ease;
    z-index: 2;
}

.cvd-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 220ms ease, transform 220ms ease;
    z-index: 1;
}

.cvd-btn:hover {
    transform: translateY(-2px) scale(1.01);
}

.cvd-btn:hover::before {
    opacity: 1;
    animation: cvdBtnSheen 800ms cubic-bezier(0.2, 0.7, 0.2, 1) 1;
}

.cvd-btn:focus-visible {
    outline: 0;
}

.cvd-btn:active {
    transform: translateY(0) scale(0.985);
    transition-duration: 90ms;
}

.cvd-btn:active::after {
    opacity: 1;
    transform: scale(1);
}

.cvd-btn--gold {
    color: #15120b;
    background: linear-gradient(145deg, #e0bf78 0%, #c7973d 52%, #a9751f 100%);
    border-color: rgba(123, 86, 25, 0.5);
    box-shadow: 0 12px 26px rgba(99, 67, 14, 0.3), inset 0 1px 0 rgba(255, 246, 221, 0.44);
}

.cvd-btn--gold:hover {
    background: linear-gradient(145deg, #ebcc8a 0%, #d0a24a 56%, #b4822b 100%);
    box-shadow: 0 18px 36px rgba(96, 64, 12, 0.34), inset 0 1px 0 rgba(255, 249, 232, 0.5);
}

.cvd-btn--gold:focus-visible {
    box-shadow: 0 0 0 4px rgba(199, 151, 61, 0.34), 0 18px 36px rgba(96, 64, 12, 0.34), inset 0 1px 0 rgba(255, 249, 232, 0.5);
}

.cvd-btn--gold::after {
    background: radial-gradient(120% 100% at 50% 110%, rgba(90, 62, 12, 0.24), transparent 62%);
}

.cvd-btn--ghost {
    border-color: rgba(255, 255, 255, 0.62);
    color: var(--c-white);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.cvd-btn--ghost:hover {
    border-color: rgba(255, 255, 255, 0.95);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(10, 34, 64, 0.16));
    box-shadow: 0 14px 30px rgba(4, 17, 32, 0.28);
}

.cvd-btn--ghost:focus-visible {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2), 0 14px 30px rgba(4, 17, 32, 0.28);
}

.cvd-btn--ghost::after {
    background: radial-gradient(130% 120% at 50% 110%, rgba(255, 255, 255, 0.2), transparent 64%);
}

.cvd-btn--line {
    color: var(--c-white);
    border-color: rgba(212, 175, 55, 0.62);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.06), rgba(212, 175, 55, 0.01));
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.18);
}

.cvd-btn--line:hover {
    color: #fff7e1;
    border-color: rgba(224, 191, 120, 0.94);
    background: linear-gradient(135deg, rgba(8, 29, 54, 0.72), rgba(4, 16, 30, 0.64));
    box-shadow: 0 16px 34px rgba(3, 15, 30, 0.38), inset 0 0 0 1px rgba(235, 204, 138, 0.34);
}

.cvd-btn--line:focus-visible {
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.24), 0 16px 34px rgba(3, 15, 30, 0.38), inset 0 0 0 1px rgba(235, 204, 138, 0.34);
}

.cvd-btn--line::after {
    background: radial-gradient(120% 100% at 50% 110%, rgba(212, 175, 55, 0.22), transparent 64%);
}

.cvd-btn--navy {
    background: linear-gradient(145deg, #13345b 0%, #0a2443 52%, #061a33 100%);
    border-color: rgba(2, 17, 36, 0.5);
    color: var(--c-white);
    box-shadow: 0 14px 30px rgba(6, 26, 51, 0.28), inset 0 1px 0 rgba(173, 201, 235, 0.2);
}

.cvd-btn--navy:hover {
    background: linear-gradient(145deg, #1a426f 0%, #0d2f54 55%, #08213f 100%);
    box-shadow: 0 20px 36px rgba(6, 26, 51, 0.34), inset 0 1px 0 rgba(203, 222, 244, 0.28);
}

.cvd-btn--navy:focus-visible {
    box-shadow: 0 0 0 4px rgba(21, 73, 132, 0.26), 0 20px 36px rgba(6, 26, 51, 0.34), inset 0 1px 0 rgba(203, 222, 244, 0.28);
}

.cvd-btn--navy::after {
    background: radial-gradient(130% 120% at 50% 110%, rgba(0, 0, 0, 0.28), transparent 66%);
}

.cvd-btn--sm {
    height: 42px;
    padding: 0 18px;
}

@keyframes cvdBtnSheen {
    from {
        transform: rotate(22deg) translate3d(-210%, 0, 0);
    }

    to {
        transform: rotate(22deg) translate3d(440%, 0, 0);
    }
}

.cvd-preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(4, 17, 32, 0.45);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: opacity 300ms ease, visibility 300ms ease;
}

.cvd-preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.cvd-preloader__inner {
    width: min(100% - 40px, 300px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(7, 23, 41, 0.62);
    border-radius: 16px;
    padding: 22px 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(1, 10, 18, 0.4);
}

.cvd-preloader__pulse {
    position: relative;
    width: 54px;
    height: 54px;
    margin: 0 auto;
}

.cvd-preloader__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border-style: solid;
    animation: cvdSpin 1.3s linear infinite;
}

.cvd-preloader__ring--outer {
    border-width: 3px;
    border-color: rgba(255, 255, 255, 0.2);
    border-top-color: var(--c-gold);
}

.cvd-preloader__ring--inner {
    inset: 9px;
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.24);
    border-right-color: rgba(255, 255, 255, 0.95);
    animation-direction: reverse;
    animation-duration: 1s;
}

.cvd-preloader__label {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cvd-preloader__track {
    width: 180px;
    height: 2px;
    margin: 14px auto 0;
    background: rgba(255, 255, 255, 0.24);
}

.cvd-preloader__fill {
    width: 0;
    height: 100%;
    background: var(--c-gold);
    animation: cvdLoad 2s ease forwards;
}

@keyframes cvdLoad {
    to {
        width: 100%;
    }
}

@keyframes cvdSpin {
    to {
        transform: rotate(360deg);
    }
}

.cvd-topbar {
    height: 44px;
    background: var(--c-navy);
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
}

.cvd-topbar__inner {
    width: min(100% - 48px, var(--max-w));
    height: 100%;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cvd-topbar__left,
.cvd-topbar__right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cvd-topbar a,
.cvd-topbar span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.88);
}

.cvd-topbar .cvd-icon+* {
    margin-left: 0;
}

.cvd-topbar__left>*+*,
.cvd-topbar__right>*+* {
    position: relative;
    padding-left: 14px;
}

.cvd-topbar__left>*+*::before,
.cvd-topbar__right>*+*::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 14px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.18);
}

.cvd-topbar__social {
    display: inline-flex;
    gap: 8px;
}

.cvd-topbar__social a,
.cvd-topbar__link {
    transition: color var(--trans);
}

.cvd-topbar__social a:hover,
.cvd-topbar__link:hover {
    color: var(--c-gold);
}

.cvd-header {
    position: sticky;
    top: 0;
    z-index: 800;
    border-bottom: 1px solid var(--c-border);
    background: var(--c-white);
    backdrop-filter: none;
    box-shadow: none;
    transition: background var(--trans);
}

.cvd-header.is-transparent {
    background: var(--c-white);
    border-bottom-color: var(--c-border);
}

.cvd-header.is-transparent .cvd-nav__list>.menu-item>a,
.cvd-header.is-transparent .cvd-logo__mark,
.cvd-header.is-transparent .cvd-logo__name,
.cvd-header.is-transparent .cvd-logo__sub {
    color: var(--c-charcoal);
    text-shadow: none;
}

.cvd-nav__list>.menu-item>a,
.cvd-nav__list>.menu-item>a.menu-link {
    opacity: 1;
    visibility: visible;
}

.cvd-header__inner {
    width: min(100% - 48px, var(--max-w));
    height: 76px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.cvd-header__logo {
    flex-shrink: 0;
}

.cvd-header__logo a {
    display: flex;
    align-items: center;
}

.cvd-header__logo .custom-logo,
.cvd-preloader__brand .custom-logo,
.cvd-footer__brand .custom-logo,
.cvd-footer__logo .custom-logo {
    width: 90px;
    min-width: 90px;
    max-width: 90px;
    height: auto;
}

.cvd-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cvd-logo__mark {
    font-size: 24px;
    font-weight: 800;
    color: var(--c-navy);
}

.cvd-logo__name {
    display: block;
    color: var(--c-navy);
    font-size: 13px;
}

.cvd-logo__sub {
    display: block;
    color: var(--c-steel);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cvd-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.cvd-nav__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cvd-nav__list>.menu-item>a {
    position: relative;
    display: block;
    padding: 8px 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--c-charcoal);
}

.cvd-nav__list>.menu-item>a::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 3px;
    height: 1px;
    background: var(--c-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--trans);
}

.cvd-nav__list>.menu-item>a:hover::after,
.cvd-nav__list>.menu-item.current-menu-item>a::after {
    transform: scaleX(1);
}

.cvd-nav__list .sub-menu {
    display: none;
}

.cvd-header__end {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cvd-hamburger {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--c-border);
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.cvd-hamburger span {
    width: 100%;
    height: 1.5px;
    background: var(--c-navy);
}

.cvd-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 790;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--trans), visibility var(--trans);
}

.cvd-nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.cvd-hero {
    position: relative;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.cvd-hero__media,
.cvd-hero__grid,
.cvd-hero__overlay {
    position: absolute;
    inset: 0;
}

.cvd-hero__media {
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
}

.cvd-hero__grid {
    opacity: 0.16;
    background-image: linear-gradient(rgba(255, 255, 255, 0.6) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.6) 1px, transparent 1px);
    background-size: 54px 54px;
    animation: cvdGrid 8s linear infinite;
}

@keyframes cvdGrid {
    0% {
        background-position: 0 0, 0 0;
    }

    100% {
        background-position: 54px 54px, 54px 54px;
    }
}

.cvd-hero__overlay {
    background: linear-gradient(108deg, rgba(247, 248, 250, 0.94), rgba(247, 248, 250, 0.82));
}

.cvd-hero__wrap {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 40px;
    padding: clamp(70px, 8vw, 76px) 0 56px;
    text-align: center;
}

.cvd-hero__copy {
    max-width: 980px;
    margin: 0 auto;
}

.cvd-hero__copy .cvd-label--light {
    color: #56697a;
}

.cvd-hero__copy h1 {
    color: var(--c-navy);
    font-size: 58px;
    max-width: 18ch;
    line-height: 1.04;
    margin: 0 auto;
}

.cvd-hero-rotating-word {
    display: inline-block;
    color: var(--c-gold);
    white-space: nowrap;
    vertical-align: baseline;
}

.cvd-hero-rotating-word::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0.88em;
    margin-left: 4px;
    vertical-align: -0.08em;
    border-right: 2px solid rgba(245, 180, 0, 0.95);
    animation: cvdCaretBlink 0.9s step-end infinite;
}

@keyframes cvdCaretBlink {

    0%,
    45% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }
}

.cvd-hero__tagline {
    margin: 18px 0 0;
    color: #2f4359;
    max-width: 54ch;
    margin-inline: auto;
}

.cvd-hero__cta {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.cvd-hero .cvd-btn--ghost {
    border-color: rgba(11, 35, 65, 0.36);
    color: var(--c-navy);
    background: rgba(247, 248, 250, 0.9);
}

.cvd-hero .cvd-btn--ghost:hover {
    border-color: rgba(11, 35, 65, 0.62);
    background: rgba(247, 248, 250, 1);
}

.cvd-hero__metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(160px, 1fr));
    border: 1px solid rgba(11, 35, 65, 0.12);
    background: rgba(247, 248, 250, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 24px rgba(11, 35, 65, 0.07);
    max-width: 860px;
    margin-inline: auto;
    width: 100%;
}

.cvd-hero__metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 4px;
    padding: 26px 20px;
    transition: background var(--trans);
}

.cvd-hero__metric:hover {
    background: rgba(240, 244, 250, 0.9);
}

.cvd-hero__metric+.cvd-hero__metric {
    border-left: 1px solid rgba(11, 35, 65, 0.1);
}

.cvd-hero__metric strong {
    color: var(--c-navy);
    font-size: clamp(22px, 2.4vw, 32px);
    display: block;
    line-height: 1;
    letter-spacing: -0.02em;
}

.cvd-hero__metric span {
    color: #5a6f82;
    font-size: 10px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    margin-top: 4px;
    display: block;
}

.cvd-trust {
    padding: 28px 0;
    background: var(--c-navy);
}

.cvd-trust__headline {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
}

.cvd-marquee {
    overflow: hidden;
}

.cvd-marquee__track {
    display: inline-flex;
    gap: 12px;
    min-width: max-content;
    animation: cvdMarquee 22s linear infinite;
}

@keyframes cvdMarquee {
    to {
        transform: translateX(-50%);
    }
}

.cvd-logo-pill {
    display: inline-flex;
    align-items: center;
    height: 36px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.cvd-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 64px);
    align-items: stretch;
}

.cvd-split__media {
    margin: 0;
    height: 100%;
    overflow: hidden;
    border-radius: 28px;
}

.cvd-split__img,
.cvd-split__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}

.cvd-split__img--fallback {
    background: linear-gradient(135deg, #b8c6d6, #8ea2ba);
}

.cvd-split__img--dark {
    background: linear-gradient(135deg, #0f2f52, #0b2341);
}

.cvd-highlights {
    margin: 28px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.cvd-highlight {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 18px 20px;
    border: none;
    background: transparent;
}

.cvd-highlight .cvd-icon {
    color: var(--c-navy);
    opacity: 0.7;
    flex-shrink: 0;
}

.cvd-highlight .cvd-icon+* {
    margin-left: 0;
}

.cvd-highlight:nth-child(1) {
    border-right: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
    padding-left: 0;
}

.cvd-highlight:nth-child(2) {
    border-bottom: 1px solid var(--c-border);
    padding-right: 0;
}

.cvd-highlight:nth-child(3) {
    border-right: 1px solid var(--c-border);
    padding-left: 0;
}

.cvd-highlight:nth-child(4) {
    border: none;
    padding-right: 0;
}

.cvd-highlight strong {
    display: block;
    font-size: 15px;
    color: var(--c-navy);
}

.cvd-highlight p {
    margin: 4px 0 0;
    font-size: 14px;
    color: var(--c-steel);
}

.cvd-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    gap: 14px;
}

.cvd-service-item {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: 8px;
    padding: 24px;
    min-height: 220px;
    display: grid;
    align-content: start;
    gap: 12px;
    transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
}

.cvd-service-item:hover {
    border-color: #c9d3df;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(11, 35, 65, 0.08);
}

.cvd-service-item h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.22;
    min-height: 2.44em;
}

.cvd-service-item p {
    margin: 0;
    color: var(--c-steel);
    font-size: 14px;
    line-height: 1.6;
}

.cvd-service-item__link {
    margin-top: auto;
    color: var(--c-navy);
}

.cvd-service-item__link:hover {
    color: #072249;
}

.cvd-why-head {
    text-align: center;
}

.cvd-why-head h2,
.cvd-why-head .cvd-label {
    margin-inline: auto;
}

.cvd-why-layout {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) minmax(300px, 520px) minmax(240px, 1fr);
    gap: 28px;
    align-items: center;
}

.cvd-why-col {
    display: grid;
    gap: 14px;
}

.cvd-why-media {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--c-border);
}

.cvd-why-media__img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
}

.cvd-why-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px 0;
    border-bottom: 1px solid var(--c-border);
}

.cvd-why-item .cvd-icon {
    align-self: start;
    margin-top: 1px;
}

.cvd-why-item .cvd-icon+* {
    margin-left: 0;
}

.cvd-why-col--left .cvd-why-item {
    grid-template-columns: 1fr auto;
    text-align: right;
}

.cvd-why-col--left .cvd-why-item .cvd-icon {
    order: 2;
}

.cvd-why-col--left .cvd-why-item>div {
    order: 1;
}

.cvd-why-item strong {
    display: block;
    font-size: 15px;
    color: var(--c-navy);
}

.cvd-why-item p {
    margin: 4px 0 0;
    font-size: 14px;
    color: var(--c-steel);
}

.cvd-projects .cvd-sec-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.cvd-proj-slider {
    overflow: hidden;
}

.cvd-proj-slider .swiper-wrapper {
    align-items: stretch;
}

.cvd-proj-slider .swiper-slide {
    height: auto;
}

.cvd-proj-slider__nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.cvd-proj-slider__prev,
.cvd-proj-slider__next {
    width: 40px;
    height: 40px;
    border: 1px solid var(--c-border);
    background: var(--c-white);
    color: var(--c-navy);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background var(--trans), border-color var(--trans);
    flex-shrink: 0;
}

.cvd-proj-slider__prev:hover,
.cvd-proj-slider__next:hover {
    background: var(--c-navy);
    border-color: var(--c-navy);
    color: var(--c-white);
}

.cvd-proj-slider__pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: #b0bcc8;
    opacity: 1;
    border-radius: 0;
    transition: background var(--trans), width var(--trans);
}

.cvd-proj-slider__pagination .swiper-pagination-bullet-active {
    background: var(--c-navy);
    width: 20px;
}

/* legacy column layout removed — keep for fallback */
.cvd-proj-grid {
    column-count: 2;
    column-gap: 16px;
}

.cvd-proj-item {
    break-inside: avoid;
    margin: 0 0 16px;
    border: 1px solid var(--c-border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--c-white);
}

.cvd-proj-item__thumb {
    position: relative;
    overflow: hidden;
    min-height: 260px;
}

.cvd-proj-item__thumb img,
.cvd-proj-item__fallback {
    width: 100%;
    min-height: 260px;
    object-fit: cover;
    transition: transform 550ms ease;
}

.cvd-proj-item__fallback {
    background: linear-gradient(135deg, #a8b8ca, #899fb7);
}

.cvd-proj-item:hover .cvd-proj-item__thumb img {
    transform: scale(1.06);
}

.cvd-proj-item__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: end;
    justify-content: start;
    padding: 16px;
    background: linear-gradient(180deg, rgba(4, 14, 27, 0.1), rgba(4, 14, 27, 0.76));
    opacity: 0;
    transition: opacity var(--trans);
}

.cvd-proj-item:hover .cvd-proj-item__overlay {
    opacity: 1;
}

.cvd-proj-item__overlay span {
    color: var(--c-white);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.74);
}

.cvd-proj-item__foot {
    padding: 16px;
}

.cvd-proj-item__foot h3 {
    font-size: 22px;
}

.cvd-proj-item__foot ul {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cvd-proj-item__foot li {
    font-size: 12px;
    color: #4c5867;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.cvd-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid transparent;
    background: rgba(7, 23, 41, 0.88);
    color: var(--c-white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cvd-badge--completed {
    background: rgba(17, 93, 56, 0.9);
    border-color: rgba(145, 218, 181, 0.36);
}

.cvd-badge--ongoing,
.cvd-badge--in-progress {
    background: rgba(11, 35, 65, 0.9);
    border-color: rgba(131, 162, 198, 0.4);
}

.cvd-badge--upcoming,
.cvd-badge--planned {
    background: rgba(160, 98, 13, 0.92);
    border-color: rgba(255, 215, 152, 0.4);
}

.cvd-process-track {
    position: relative;
    counter-reset: cvd-process;
    display: grid;
    grid-template-columns: repeat(6, minmax(120px, 1fr));
    gap: 14px;
    padding-top: 0;
}

.cvd-process-track::before {
    content: none;
}

.cvd-step {
    position: relative;
    z-index: 1;
    counter-increment: cvd-process;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-top: 2px solid rgba(255, 184, 0, 0.58);
    padding: 22px 16px 18px;
}

.cvd-step::before {
    content: counter(cvd-process, decimal-leading-zero);
    position: absolute;
    top: 14px;
    right: 14px;
    display: block;
    color: rgb(255 255 255 / 15%);
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    opacity: 0.18;
}

.cvd-step::after {
    content: none;
}

.cvd-step:last-child::after {
    content: none;
}

.cvd-step .cvd-icon {
    color: var(--c-gold);
}

.cvd-step h3 {
    margin: 16px 0 0;
    min-height: 1.35em;
    line-height: 1.25;
    color: var(--c-white);
    font-size: 18px;
}

.cvd-step p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    line-height: 1.55;
}

.cvd-process .cvd-sec-head h2 {
    font-size: 42px;
}

.cvd-industry-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.cvd-ind-tile {
    position: relative;
    border: 1px solid var(--c-border);
    background: var(--c-white);
    min-height: auto;
    padding: 14px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    text-align: left;
    overflow: visible;
    transition: border-color var(--trans), box-shadow var(--trans), transform var(--trans);
}

.cvd-ind-tile:hover {
    border-color: #c9d3df;
    box-shadow: 0 10px 24px rgba(11, 35, 65, 0.08);
    transform: translateY(-1px);
}

.cvd-ind-tile__icon {
    flex-shrink: 0;
}

.cvd-ind-tile h3 {
    margin: 0;
    font-size: 15px;
    color: var(--c-navy);
}

.cvd-ind-tile__desc {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 12px);
    transform: translateX(-50%) translateY(6px);
    width: min(240px, calc(100vw - 32px));
    margin: 0;
    padding: 10px 12px;
    background: rgba(7, 23, 41, 0.96);
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    line-height: 1.45;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-shadow: 0 14px 28px rgba(11, 35, 65, 0.16);
    transition: opacity var(--trans), transform var(--trans), visibility var(--trans);
    z-index: 5;
}

.cvd-ind-tile__desc::after {
    content: "";
    position: absolute;
    left: 50%;
    top: calc(100% - 10px);
    width: 12px;
    height: 12px;
    background: rgba(7, 23, 41, 0.96);
    transform: translateX(-50%) rotate(45deg);
}

.cvd-ind-tile:hover .cvd-ind-tile__desc {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.cvd-numbers {
    padding: 30px 0;
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
    background: var(--c-white);
}

.cvd-numbers__inner {
    display: grid;
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    gap: 12px;
}

.cvd-number {
    text-align: center;
}

.cvd-number strong {
    display: block;
    color: var(--c-navy);
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1;
}

.cvd-number span {
    font-size: 12px;
    color: var(--c-steel);
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.cvd-checklist {
    margin: 22px 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 10px;
}

.cvd-checklist li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #314152;
    font-size: 14px;
}

.cvd-testimonial-slider {
    background: transparent;
    padding-bottom: 34px;
}

.cvd-testimonials .cvd-sec-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.cvd-testimonial-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.cvd-testimonial-prev,
.cvd-testimonial-next {
    width: 40px;
    height: 40px;
    border: 1px solid var(--c-border);
    background: var(--c-white);
    color: var(--c-navy);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background var(--trans), border-color var(--trans), color var(--trans);
}

.cvd-testimonial-prev:hover,
.cvd-testimonial-next:hover {
    background: var(--c-navy);
    border-color: var(--c-navy);
    color: var(--c-white);
}

.cvd-testimonial-slider .swiper-slide {
    height: auto;
}

.cvd-quote {
    height: 100%;
    padding: clamp(20px, 3vw, 28px);
    display: grid;
    gap: 16px;
    border: 1px solid var(--c-border);
    border-radius: 8px;
    background: var(--c-white);
    position: relative;
}

.cvd-quote__head {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    order: 2;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--c-border);
}

.cvd-quote__person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cvd-quote__photo {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b2c2d4, #93a8bf);
    flex-shrink: 0;
}

.cvd-quote__meta strong {
    display: block;
    color: var(--c-navy);
    font-size: 14px;
    line-height: 1.2;
}

.cvd-quote__meta span {
    display: block;
    margin-top: 4px;
    color: var(--c-steel);
    font-size: 12px;
}

.cvd-quote__content p {
    margin: 0;
    color: var(--c-charcoal);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(18px, 1.8vw, 24px);
    line-height: 1.4;
}

.cvd-quote__content {
    order: 1;
}

.cvd-quote__logo {
    width: auto;
    height: auto;
    display: block;
    color: transparent;
    font-weight: 800;
    position: absolute;
    top: 14px;
    right: 8px;
    pointer-events: none;
}

.cvd-quote__logo::before {
    content: "\201D";
    color: rgb(11 35 65 / 18%);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 50px;
    line-height: 1;
    transform: translateY(3px);
}


.cvd-certs {
    padding-top: 24px;
    padding-bottom: 24px;
}

.cvd-cert-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.cvd-cert-grid span {
    min-height: 44px;
    border: 1px solid var(--c-border);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    background: #f7f8fa;
    color: var(--c-navy);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cvd-cert-grid span .cvd-icon {
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 0;
}

.cvd-cert-grid span em {
    font-style: normal;
}

.cvd-careers-banner {
    padding: 40px 0;
    background: linear-gradient(120deg, #0b2341, #173b63);
}

.cvd-careers-banner__inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 20px;
    align-items: center;
}

.cvd-careers-banner__image {
    min-height: 180px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.cvd-careers-banner__copy h2 {
    color: var(--c-white);
    font-size: clamp(30px, 4vw, 48px);
}

.cvd-careers-banner__copy p {
    margin: 10px 0 20px;
    color: rgba(255, 255, 255, 0.84);
}

.cvd-faq-list {
    border-top: 1px solid var(--c-border);
}

.cvd-faq-item {
    border-bottom: 1px solid var(--c-border);
}

.cvd-faq-item__q {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--c-navy);
    font-size: 16px;
    font-weight: 700;
    text-align: left;
}

.cvd-faq-item__a p {
    margin: 0 0 16px;
    color: var(--c-steel);
    font-size: 14px;
}

.cvd-faq-item--open .cvd-faq-plus {
    transform: rotate(45deg);
}

.cvd-contact {
    background: #f7f8fa;
}

.cvd-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cvd-contact__info,
.cvd-contact__form {
    border: 1px solid var(--c-border);
    padding: 24px;
    background: #fbfcfe;
}

.cvd-contact-list {
    margin: 18px 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 9px;
}

.cvd-contact-list li {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    color: #334356;
}

.cvd-contact-list span {
    display: block;
    min-width: 0;
    line-height: 1.5;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.cvd-contact-list .cvd-icon {
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 0;
}

.cvd-contact-list .cvd-icon+* {
    margin-left: 0;
}

.cvd-contact-map {
    margin-top: 16px;
    border: 1px solid var(--c-border);
}

.cvd-form {
    display: grid;
    gap: 12px;
}

.cvd-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.cvd-form label span {
    display: block;
    margin-bottom: 6px;
    color: #364454;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.cvd-form input,
.cvd-form textarea,
.cvd-nl-form input {
    width: 100%;
    border: 1px solid #cfd9e4;
    background: var(--c-white);
    padding: 12px;
    font-family: inherit;
    font-size: 14px;
}

.cvd-form input:focus,
.cvd-form textarea:focus,
.cvd-nl-form input:focus {
    outline: none;
    border-color: var(--c-navy);
    box-shadow: 0 0 0 3px rgba(11, 35, 65, 0.12);
}

.cvd-form__response,
.cvd-nl-form__msg {
    margin: 6px 0 0;
    font-size: 13px;
    color: var(--c-steel);
}

.cvd-home-cta {
    position: relative;
    overflow: hidden;
}

.cvd-home-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(245, 180, 0, 0.18), transparent 42%),
        radial-gradient(circle at 88% 75%, rgba(255, 255, 255, 0.12), transparent 40%);
    pointer-events: none;
}

.cvd-home-cta .cvd-wrap {
    position: relative;
    z-index: 1;
}

.cvd-home-cta__panel {
    width: min(100%, 860px);
    margin: 0 auto;
    text-align: center;
    display: grid;
    gap: 16px;
    padding: 10px 0;
}

.cvd-home-cta__panel h2 {
    margin: 0;
    color: var(--c-white);
    font-size: clamp(32px, 4.4vw, 52px);
    line-height: 1.08;
}

.cvd-home-cta__panel p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.7;
}

.cvd-home-cta__actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.cvd-footer {
    background: #071729;
    color: rgba(255, 255, 255, 0.82);
}

.cvd-footer__newsletter {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 26px 0;
}

.cvd-footer__newsletter h3 {
    color: var(--c-white);
    font-size: 24px;
}

.cvd-footer__newsletter p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.cvd-footer__newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: center;
}

.cvd-nl-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
}

.cvd-footer__newsletter .cvd-nl-form input {
    height: 50px;
    padding: 0 16px;
    border-radius: 8px;
    border-color: rgba(180, 194, 210, 0.62);
    background: rgba(255, 255, 255, 0.98);
    color: #102238;
}

.cvd-footer__newsletter .cvd-nl-form input::placeholder {
    color: #617084;
}

.cvd-footer__newsletter .cvd-nl-form input:focus {
    border-color: rgba(212, 175, 55, 0.92);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.cvd-footer__newsletter .cvd-nl-form .cvd-btn {
    height: 50px;
    min-width: 138px;
    border-radius: 8px;
    padding: 0 22px;
    white-space: nowrap;
}

.cvd-footer__newsletter .cvd-nl-form__msg {
    grid-column: 1 / -1;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.78);
}

.cvd-footer__main {
    padding: 44px 0;
}

.cvd-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 26px;
    align-items: start;
}

.cvd-footer__col {
    align-self: start;
    min-width: 0;
}

.cvd-logo--footer .cvd-logo__mark,
.cvd-logo--footer .cvd-logo__name,
.cvd-logo--footer .cvd-logo__sub {
    color: var(--c-white);
}

.cvd-footer__brand p {
    margin: 12px 0 0;
    max-width: 34ch;
}

.cvd-footer__col h4 {
    color: var(--c-white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    margin-bottom: 12px;
}

.cvd-footer__links,
.cvd-footer__contact {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.cvd-footer__links a {
    color: rgba(255, 255, 255, 0.76);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cvd-footer__links a::before {
    content: "\203A";
    font-size: 12px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.62);
    transform: translateY(-1px);
}

.cvd-footer__contact li {
    color: rgba(255, 255, 255, 0.76);
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
}

.cvd-footer__contact span {
    display: block;
    min-width: 0;
    line-height: 1.5;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.cvd-footer__contact .cvd-icon {
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 0;
}

.cvd-footer__contact .cvd-icon+* {
    margin-left: 0;
}

.cvd-footer__social {
    display: inline-flex;
    gap: 8px;
    margin-top: 14px;
}

.cvd-footer__social .cvd-icon {
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 0;
}

.cvd-footer__social a {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.8);
}

.cvd-footer__social a:hover {
    color: var(--c-gold);
    border-color: rgba(245, 180, 0, 0.6);
}

.cvd-footer__cert-title {
    margin-top: 0;
}

.cvd-footer__certs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cvd-footer__certs span {
    border: 1px solid rgb(255 255 255 / 4%);
    padding: 4px 10px;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgb(255 255 255 / 6%);
    font-size: 11px;
    color: #fff;
}

.cvd-footer__certs span em {
    font-style: normal;
}

.cvd-footer__certs .cvd-icon {
    color: #fff;
}

.cvd-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 12px 0;
}

.cvd-footer__bottom p {
    margin: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
}

/* Inner Page Consistency Layer */
body:not(.home) .container {
    width: min(100% - 48px, var(--max-w));
    margin-inline: auto;
}

body:not(.home) .section {
    padding: var(--sec-pad) 0;
}

body:not(.home) .bg-white {
    background: var(--c-white);
}

body:not(.home) .bg-gray {
    background: var(--c-concrete);
}

body:not(.home) .bg-navy {
    background: var(--c-navy);
    color: rgba(255, 255, 255, 0.9);
}

body:not(.home) .section-label {
    margin: 0 0 14px;
    color: var(--c-steel);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 11px;
    font-weight: 800;
}

body:not(.home) .section-title {
    color: var(--c-navy);
    font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
    font-size: clamp(28px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
}

body:not(.home) .section-subtitle {
    margin: 14px 0 0;
    color: #3B4858;
    max-width: 58ch;
}

body:not(.home) .section-header {
    margin-bottom: clamp(28px, 4vw, 52px);
}

body:not(.home) .page-hero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

body:not(.home) .page-hero--compact {
    min-height: 320px;
}

body:not(.home) .page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(108deg, rgba(247, 248, 250, 0.94), rgba(247, 248, 250, 0.82));
}

body:not(.home) .page-hero-content {
    position: relative;
    z-index: 2;
    padding: 110px 0 56px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

body:not(.home) .page-hero-content h1 {
    color: var(--c-navy);
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.06;
    margin: 0;
}

body:not(.home) .page-hero-content p {
    margin: 12px 0 0;
    color: #2f4359;
}

body:not(.home) .breadcrumb {
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #526678;
    font-size: 12px;
    justify-content: center;
}

body:not(.home) .breadcrumb a {
    color: #1f3348;
}

body:not(.home) .breadcrumb a:hover {
    color: var(--c-gold);
}

body:not(.home) .about-intro-grid,
body:not(.home) .mv-grid,
body:not(.home) .contact-main-grid,
body:not(.home) .quote-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 18px;
    align-items: start;
}

body:not(.home) .stats-grid,
body:not(.home) .team-grid,
body:not(.home) .partners-logos,
body:not(.home) .services-detail-grid,
body:not(.home) .projects-isotope-grid,
body:not(.home) .contact-info-grid,
body:not(.home) .careers-benefits-grid,
body:not(.home) .jobs-grid,
body:not(.home) .gallery-isotope-grid,
body:not(.home) .video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    gap: 14px;
}

body:not(.home) .project-card,
body:not(.home) .service-detail-card,
body:not(.home) .contact-info-card,
body:not(.home) .careers-benefit-card,
body:not(.home) .job-card,
body:not(.home) .mv-card,
body:not(.home) .team-card,
body:not(.home) .quote-info-card,
body:not(.home) .quote-contact-card,
body:not(.home) .quote-features-card,
body:not(.home) .gallery-item,
body:not(.home) .video-card,
body:not(.home) .partner-logo-item,
body:not(.home) .stat-item {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: 8px;
    padding: 20px;
}

body:not(.home) .project-card:hover,
body:not(.home) .service-detail-card:hover,
body:not(.home) .contact-info-card:hover,
body:not(.home) .careers-benefit-card:hover,
body:not(.home) .job-card:hover,
body:not(.home) .mv-card:hover,
body:not(.home) .team-card:hover,
body:not(.home) .gallery-item:hover,
body:not(.home) .video-card:hover,
body:not(.home) .partner-logo-item:hover,
body:not(.home) .stat-item:hover {
    border-color: #c9d3df;
    box-shadow: 0 16px 34px rgba(11, 35, 65, 0.08);
    transform: translateY(-2px);
}

body:not(.home) .project-card,
body:not(.home) .service-detail-card,
body:not(.home) .contact-info-card,
body:not(.home) .careers-benefit-card,
body:not(.home) .job-card,
body:not(.home) .mv-card,
body:not(.home) .team-card,
body:not(.home) .gallery-item,
body:not(.home) .video-card,
body:not(.home) .partner-logo-item,
body:not(.home) .stat-item {
    transition: border-color var(--trans), box-shadow var(--trans), transform var(--trans);
}

body:not(.home) .filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

body:not(.home) .filter-btn,
body:not(.home) .service-tab-btn {
    border: 1px solid var(--c-border);
    background: var(--c-white);
    color: var(--c-navy);
    padding: 10px 14px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

body:not(.home) .filter-btn.active,
body:not(.home) .filter-btn:hover,
body:not(.home) .service-tab-btn:hover {
    border-color: var(--c-gold);
    color: var(--c-navy);
}

body:not(.home) .form-grid,
body:not(.home) .form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 12px;
}

body:not(.home) .form-group {
    margin-bottom: 12px;
}

body:not(.home) .form-label {
    display: block;
    margin-bottom: 6px;
    color: #364454;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

body:not(.home) .form-input,
body:not(.home) .form-textarea,
body:not(.home) .form-select,
body:not(.home) .form-file-input,
body:not(.home) .cvd-form input,
body:not(.home) .cvd-form textarea,
body:not(.home) .cvd-form select {
    width: 100%;
    border: 1px solid #cfd9e4;
    background: var(--c-white);
    padding: 12px;
    font-size: 14px;
    font-family: inherit;
}

body:not(.home) .form-input:focus,
body:not(.home) .form-textarea:focus,
body:not(.home) .form-select:focus,
body:not(.home) .cvd-form input:focus,
body:not(.home) .cvd-form textarea:focus,
body:not(.home) .cvd-form select:focus {
    outline: none;
    border-color: var(--c-navy);
    box-shadow: 0 0 0 3px rgba(11, 35, 65, 0.12);
}

body:not(.home) .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 50px;
    padding: 0 22px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: transform var(--trans), background var(--trans), border-color var(--trans), color var(--trans);
}

body:not(.home) .btn:hover {
    transform: translateY(-1px);
}

body:not(.home) .btn-navy {
    background: var(--c-navy);
    border-color: var(--c-navy);
    color: var(--c-white);
}

body:not(.home) .btn-gold {
    background: var(--c-gold);
    border-color: var(--c-gold);
    color: var(--c-charcoal);
}

body:not(.home) .btn-outline-white {
    border-color: rgba(255, 255, 255, 0.72);
    color: var(--c-white);
    background: transparent;
}

body:not(.home) .entry-content {
    color: #2d3948;
}

body:not(.home) .entry-content h2,
body:not(.home) .entry-content h3 {
    color: var(--c-navy);
}

body:not(.home) .entry-content p,
body:not(.home) .entry-content li {
    color: #3B4858;
}

/* Section Personality Layer */
body:not(.home) .about-who-section .about-intro-badge {
    background: linear-gradient(145deg, #0a2647, #12345a);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 20px;
}

body:not(.home) .about-who-section .section-title,
body:not(.home) .careers-why-section .section-title,
body:not(.home) .contact-main-section .section-title,
body:not(.home) .quote-section .section-title {
    position: relative;
    padding-left: 20px;
}

body:not(.home) .about-who-section .section-title::before,
body:not(.home) .careers-why-section .section-title::before,
body:not(.home) .contact-main-section .section-title::before,
body:not(.home) .quote-section .section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: calc(100% - 14px);
    background: linear-gradient(180deg, var(--c-gold), #b8941f);
}

body:not(.home) .mv-section {
    position: relative;
    overflow: hidden;
}

body:not(.home) .mv-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 0%, rgba(245, 180, 0, 0.12), transparent 42%);
    pointer-events: none;
}

body:not(.home) .mv-card {
    border-left: 4px solid transparent;
}

body:not(.home) .mv-card--featured {
    border-left-color: var(--c-gold);
    background: linear-gradient(180deg, #ffffff, #f8fbff);
}

body:not(.home) .stats-section .stat-item {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.22);
    color: var(--c-white);
}

body:not(.home) .stats-section .stat-item * {
    color: inherit;
}

body:not(.home) .team-card {
    overflow: hidden;
}

body:not(.home) .team-card-image {
    margin: -20px -20px 14px;
    background: linear-gradient(150deg, #f6f9fd, #e9f0f8);
    border-bottom: 1px solid var(--c-border);
}

body:not(.home) .partners-section .partner-logo-item {
    min-height: 100px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #ffffff, #f6f9fc);
}

body:not(.home) .services-detail-section {
    position: relative;
}

body:not(.home) .services-detail-section:nth-of-type(even) {
    background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
}

body:not(.home) .service-section-icon {
    width: 52px;
    height: 52px;
    display: inline-grid;
    place-items: center;
    border: 1px solid #d2dbe7;
    background: #fff;
    margin-bottom: 10px;
}

body:not(.home) .service-detail-card {
    border-top: 3px solid transparent;
}

body:not(.home) .service-detail-card:hover {
    border-top-color: var(--c-gold);
}

body:not(.home) .projects-filter-section,
body:not(.home) .gallery-filter-section {
    border-bottom: 1px solid #e4eaf1;
}

body:not(.home) .project-card-image,
body:not(.home) .gallery-item .gallery-thumb {
    overflow: hidden;
    background: #eef3f9;
}

body:not(.home) .project-card-image img,
body:not(.home) .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--trans);
}

body:not(.home) .project-card:hover .project-card-image img,
body:not(.home) .gallery-item:hover img {
    transform: scale(1.04);
}

body:not(.home) .project-card .project-card-badge {
    background: rgba(7, 23, 41, 0.86);
    color: var(--c-white);
    border: 1px solid rgba(255, 255, 255, 0.24);
    padding: 6px 10px;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

body:not(.home) .contact-info-card {
    border-left: 4px solid #d6e0ec;
}

body:not(.home) .contact-info-card:hover {
    border-left-color: var(--c-gold);
}

body:not(.home) .quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 12px;
}

body:not(.home) .quote-info-card,
body:not(.home) .quote-contact-card,
body:not(.home) .quote-features-card {
    background: linear-gradient(180deg, #ffffff, #f7faff);
}

body:not(.home) .quote-features-card ul {
    margin: 0;
    padding-left: 16px;
    display: grid;
    gap: 8px;
}

body:not(.home) .careers-benefit-card {
    border-top: 4px solid #d8e1ec;
}

body:not(.home) .careers-benefit-card:hover {
    border-top-color: var(--c-gold);
}

body:not(.home) .job-card {
    position: relative;
    padding-top: 24px;
}

body:not(.home) .job-card::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    width: 42px;
    height: 3px;
    background: var(--c-gold);
}

body:not(.home) .video-card {
    overflow: hidden;
}

body:not(.home) .video-card iframe,
body:not(.home) .video-card video {
    width: 100%;
    display: block;
}

@media (max-width: 1100px) {

    .cvd-topbar__locations,
    .cvd-topbar__link:last-child {
        display: none;
    }

    .cvd-service-grid {
        grid-template-columns: repeat(2, minmax(180px, 1fr));
    }

    .cvd-industry-grid {
        grid-template-columns: repeat(4, minmax(130px, 1fr));
    }

    .cvd-process-track {
        grid-template-columns: repeat(3, minmax(150px, 1fr));
    }

    .cvd-footer__grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }

    body:not(.home) .stats-grid,
    body:not(.home) .team-grid,
    body:not(.home) .partners-logos,
    body:not(.home) .services-detail-grid,
    body:not(.home) .projects-isotope-grid,
    body:not(.home) .contact-info-grid,
    body:not(.home) .careers-benefits-grid,
    body:not(.home) .jobs-grid,
    body:not(.home) .gallery-isotope-grid,
    body:not(.home) .video-grid {
        grid-template-columns: repeat(2, minmax(180px, 1fr));
    }

    .cvd-why-layout {
        grid-template-columns: minmax(220px, 1fr) minmax(260px, 420px) minmax(220px, 1fr);
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .cvd-header__inner {
        width: min(100% - 28px, var(--max-w));
        gap: 10px;
    }

    .cvd-nav {
        position: fixed;
        top: 120px;
        right: 14px;
        width: min(300px, calc(100vw - 28px));
        background: var(--c-white);
        border: 1px solid var(--c-border);
        padding: 14px;
        transform: translateY(-14px);
        opacity: 0;
        visibility: hidden;
        z-index: 801;
        transition: transform var(--trans), opacity var(--trans), visibility var(--trans);
    }

    .cvd-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .cvd-nav__list {
        flex-direction: column;
        align-items: stretch;
    }

    .cvd-nav__list>.menu-item>a {
        color: var(--c-charcoal) !important;
        padding: 10px 8px;
    }

    .cvd-hamburger {
        display: flex;
    }

    .cvd-header__end .cvd-btn {
        display: none;
    }

    body:not(.home) .about-intro-grid,
    body:not(.home) .mv-grid,
    body:not(.home) .contact-main-grid,
    body:not(.home) .quote-grid,
    body:not(.home) .form-grid,
    body:not(.home) .form-grid-2 {
        grid-template-columns: 1fr;
    }

    .cvd-hero {
        min-height: 640px;
    }

    .cvd-hero__metrics {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
    }

    .cvd-hero__metric:nth-child(3) {
        border-left: 0;
    }

    .cvd-split,
    .cvd-contact-grid,
    .cvd-careers-banner__inner,
    .cvd-footer__newsletter-inner {
        grid-template-columns: 1fr;
    }

    .cvd-proj-grid {
        column-count: 1;
    }

    .cvd-testimonials .cvd-sec-head {
        align-items: flex-start;
    }

    .cvd-why-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cvd-why-media {
        order: 1;
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }

    .cvd-why-col {
        max-width: 760px;
        width: 100%;
        margin: 0 auto;
    }

    .cvd-why-col--left {
        order: 2;
    }

    .cvd-why-col--right {
        order: 3;
    }

    .cvd-why-col--left .cvd-why-item,
    .cvd-why-col--right .cvd-why-item {
        grid-template-columns: auto 1fr;
        text-align: left;
    }

    .cvd-why-col--left .cvd-why-item .cvd-icon,
    .cvd-why-col--left .cvd-why-item>div {
        order: initial;
    }

    .cvd-quote {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .cvd-form__grid {
        grid-template-columns: 1fr;
    }

    .cvd-nl-form {
        grid-template-columns: 1fr;
    }

    .cvd-footer__newsletter .cvd-nl-form .cvd-btn {
        width: 100%;
    }
}

@media (max-width: 680px) {

    .cvd-wrap,
    .cvd-topbar__inner {
        width: min(100% - 24px, var(--max-w));
    }

    .cvd-topbar {
        height: auto;
        padding: 8px 0;
    }

    .cvd-topbar__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .cvd-topbar__right {
        flex-wrap: wrap;
    }

    .cvd-topbar__left>*+*,
    .cvd-topbar__right>*+* {
        padding-left: 0;
    }

    .cvd-topbar__left>*+*::before,
    .cvd-topbar__right>*+*::before {
        content: none;
    }

    .cvd-hero__wrap {
        padding-top: 40px;
    }

    .cvd-sec {
        padding: clamp(56px, 8vw, 86px) 0;
    }

    .cvd-service-grid,
    .cvd-industry-grid,
    .cvd-cert-grid,
    .cvd-numbers__inner,
    .cvd-process-track,
    .cvd-checklist,
    .cvd-footer__grid {
        grid-template-columns: 1fr;
    }

    body:not(.home) .stats-grid,
    body:not(.home) .team-grid,
    body:not(.home) .partners-logos,
    body:not(.home) .services-detail-grid,
    body:not(.home) .projects-isotope-grid,
    body:not(.home) .contact-info-grid,
    body:not(.home) .careers-benefits-grid,
    body:not(.home) .jobs-grid,
    body:not(.home) .gallery-isotope-grid,
    body:not(.home) .video-grid {
        grid-template-columns: 1fr;
    }

    .cvd-hero__metrics {
        grid-template-columns: 1fr;
    }

    .cvd-testimonials .cvd-sec-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .cvd-home-cta__panel {
        text-align: left;
    }

    .cvd-home-cta__panel h2 {
        font-size: clamp(28px, 8vw, 38px);
    }

    .cvd-home-cta__panel p {
        font-size: 15px;
    }

    .cvd-home-cta__actions {
        justify-content: flex-start;
    }

    .cvd-why-media__img {
        min-height: 340px;
    }

    .cvd-hero__metric+.cvd-hero__metric {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
}