@font-face {
    font-family: "Mark Pro";
    src: url("../fonts/mark-pro-book.otf") format("opentype");
    font-style: normal;
    font-weight: 300;
    font-display: swap;
}

/* Homepage narrative bands */
.home-band-inner {
    width: min(100% - 44px, 1240px);
    margin: 0 auto;
}

.home-services-band,
.home-quality-band {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: #071f43;
}

.home-services-band::before,
.home-quality-band::before {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(112deg, transparent 0 64%, rgba(24, 167, 186, 0.12) 64% 100%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 124px);
}

.home-services-band .home-band-inner,
.home-quality-band .home-band-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
    gap: 86px;
    align-items: center;
    padding: 104px 0;
}

.home-services-copy h2,
.home-quality-copy h2,
.home-companies-band h2,
.home-global-copy h2 {
    margin-bottom: 22px;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.02;
    text-wrap: balance;
}

.home-services-copy .eyebrow,
.home-quality-copy .eyebrow {
    color: #dff8ff;
}

.home-services-copy p,
.home-quality-copy p {
    max-width: 520px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.75;
}

.btn.home-dark-button {
    gap: 14px;
    margin-top: 32px;
    color: var(--navy);
    background: #fff;
    box-shadow: none;
}

.btn.home-dark-button span {
    font-size: 17px;
    font-weight: 400;
}

.home-service-steps {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.home-service-step {
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr) 34px;
    gap: 22px;
    min-height: 126px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.home-service-step > span {
    color: var(--cyan);
    font-size: 12px;
    font-weight: 800;
}

.home-service-step h3 {
    margin-bottom: 7px;
    color: #fff;
    font-size: 23px;
}

.home-service-step p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 13px;
    line-height: 1.55;
}

.home-service-step b {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.home-service-step:hover b {
    color: var(--navy);
    background: #fff;
    transform: translateX(4px);
}

.home-companies-band,
.home-global-band {
    background: #fff;
}

.home-companies-band .home-band-inner {
    padding: 104px 0;
}

.home-band-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.7fr);
    gap: 72px;
    align-items: end;
    margin-bottom: 56px;
}

.home-band-heading h2 {
    max-width: 700px;
    margin-bottom: 0;
    color: var(--navy);
}

.home-band-heading p,
.home-global-copy > p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.home-text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.home-text-link span {
    font-size: 18px;
    font-weight: 400;
    transition: transform 0.25s ease;
}

.home-text-link:hover span {
    transform: translateX(4px);
}

.home-brand-rail {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.home-brand-item {
    position: relative;
    display: grid;
    min-width: 0;
    min-height: 190px;
    place-items: center;
    padding: 34px 18px;
    border-right: 1px solid var(--line);
    background: #fff;
    text-decoration: none;
    transition: background 0.25s ease;
}

.home-brand-item:last-child {
    border-right: 0;
}

.home-brand-item > span {
    position: absolute;
    top: 15px;
    left: 15px;
    color: rgba(6, 38, 93, 0.32);
    font-size: 9px;
    font-weight: 800;
}

.home-brand-item img {
    width: min(100%, 150px);
    height: 112px;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(.2,.8,.2,1);
}

.home-brand-item:hover {
    background: #f4f8fc;
}

.home-brand-item:hover img {
    transform: scale(1.08);
}

.home-quality-band {
    background: #0b3f73;
}

.home-certificate-rail {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.home-certificate-item {
    display: grid;
    min-width: 0;
    min-height: 150px;
    place-items: center;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 8px;
    background: #fff;
}

.home-certificate-item img {
    width: 100%;
    height: 138px;
    object-fit: contain;
}

.home-global-band {
    background: #eef4f9;
}

.home-global-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
    gap: 78px;
    align-items: center;
    padding: 104px 0;
}

.home-global-image {
    position: relative;
    min-height: 560px;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: var(--navy);
}

.home-global-image::after {
    position: absolute;
    inset: 45% 0 0;
    content: "";
    background: linear-gradient(0deg, rgba(3, 20, 46, 0.76), transparent);
}

.home-global-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(.2,.8,.2,1);
}

.home-global-image:hover img {
    transform: scale(1.035);
}

.home-global-image figcaption {
    position: absolute;
    z-index: 1;
    right: 24px;
    bottom: 24px;
    display: flex;
    min-height: 66px;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    color: #fff;
    background: rgba(6, 38, 93, 0.86);
    backdrop-filter: blur(10px);
}

.home-global-image figcaption strong {
    font-size: 27px;
}

.home-global-image figcaption span {
    max-width: 92px;
    font-size: 9px;
    font-weight: 700;
    line-height: 1.25;
}

.home-global-copy h2 {
    max-width: 560px;
    color: var(--navy);
}

.home-global-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 34px 0 10px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.home-global-facts span {
    display: flex;
    min-width: 0;
    min-height: 112px;
    flex-direction: column;
    justify-content: center;
    gap: 9px;
    padding: 18px;
    border-right: 1px solid var(--line);
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    line-height: 1.3;
}

.home-global-facts span:last-child {
    border-right: 0;
}

.home-global-facts strong {
    color: var(--navy);
    font-size: 28px;
    line-height: 1;
}

@media (max-width: 1040px) {
    .home-services-band .home-band-inner,
    .home-quality-band .home-band-inner,
    .home-global-grid {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .home-band-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .home-band-heading p {
        max-width: 680px;
    }

    .home-brand-rail {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-brand-item:nth-child(3) {
        border-right: 0;
    }

    .home-brand-item:nth-child(-n + 3) {
        border-bottom: 1px solid var(--line);
    }

    .home-global-image {
        min-height: 520px;
    }

}

@media (max-width: 640px) {
    .home-band-inner {
        width: min(100% - 20px, 370px);
    }

    .home-services-band .home-band-inner,
    .home-quality-band .home-band-inner,
    .home-companies-band .home-band-inner,
    .home-global-grid {
        padding: 64px 0;
    }

    .home-services-copy h2,
    .home-quality-copy h2,
    .home-companies-band h2,
    .home-global-copy h2 {
        font-size: 34px;
    }

    .home-services-copy p,
    .home-quality-copy p,
    .home-band-heading p,
    .home-global-copy > p {
        font-size: 13px;
    }

    .home-service-step {
        grid-template-columns: 38px minmax(0, 1fr) 28px;
        gap: 10px;
        min-height: 112px;
    }

    .home-service-step h3 {
        font-size: 19px;
    }

    .home-service-step p {
        font-size: 10px;
    }

    .home-service-step b {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .home-band-heading {
        margin-bottom: 34px;
    }

    .home-brand-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-brand-item,
    .home-brand-item:nth-child(3) {
        min-height: 156px;
        padding: 28px 10px 18px;
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .home-brand-item:nth-child(even) {
        border-right: 0;
    }

    .home-brand-item:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .home-brand-item img {
        width: min(100%, 132px);
        height: 102px;
    }

    .home-certificate-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .home-certificate-item {
        min-height: 112px;
        padding: 4px 6px;
    }

    .home-certificate-item img {
        height: 104px;
    }

    .home-global-image {
        min-height: 380px;
    }

    .home-global-image figcaption {
        right: 14px;
        bottom: 14px;
        min-height: 56px;
        padding: 8px 14px;
    }

    .home-global-image figcaption strong {
        font-size: 22px;
    }

    .home-global-facts span {
        min-height: 98px;
        padding: 12px 8px;
        font-size: 7px;
    }

    .home-global-facts strong {
        font-size: 23px;
    }

}

@font-face {
    font-family: "Mark Pro";
    src: url("../fonts/mark-pro-regular.otf") format("opentype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Mark Pro";
    src: url("../fonts/mark-pro-medium.otf") format("opentype");
    font-style: normal;
    font-weight: 500 600;
    font-display: swap;
}

@font-face {
    font-family: "Mark Pro";
    src: url("../fonts/mark-pro-bold.otf") format("opentype");
    font-style: normal;
    font-weight: 700 900;
    font-display: swap;
}

:root {
    --navy: #06265d;
    --navy-2: #0c3b78;
    --blue: #0878d8;
    --cyan: #18a7ba;
    --gold: #c9a044;
    --ink: #0d1d34;
    --muted: #617086;
    --line: rgba(6, 38, 93, 0.13);
    --paper: #f5f8fc;
    --card: #ffffff;
    --shadow: 0 24px 60px rgba(6, 38, 93, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    font-family: "Mark Pro", Arial, Helvetica, sans-serif;
    background:
        linear-gradient(115deg, rgba(6, 38, 93, 0.06) 0 22%, transparent 22% 100%),
        linear-gradient(180deg, #ffffff 0%, #edf3f9 52%, #dfe8f1 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        repeating-linear-gradient(90deg, rgba(6, 38, 93, 0.035) 0 1px, transparent 1px 96px),
        repeating-linear-gradient(0deg, rgba(6, 38, 93, 0.028) 0 1px, transparent 1px 96px);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(6, 38, 93, 0.9);
    backdrop-filter: blur(16px);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100% - 32px, 1240px);
    margin: 0 auto;
    min-height: 76px;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    color: #fff;
    text-decoration: none;
}

.brand img {
    width: 184px;
    height: 46px;
    object-fit: contain;
    object-position: left center;
    filter: brightness(0) invert(1);
}

.brand-logo-mobile {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.nav-links a,
.lang-switch a {
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 12px;
    border-radius: 999px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active,
.lang-switch a:hover,
.lang-switch a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-switch {
    display: flex;
    gap: 4px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
    border-radius: 99px;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 670px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(3, 26, 66, 0.98), rgba(8, 71, 126, 0.92) 54%, rgba(24, 167, 186, 0.82)),
        url("../img/catalog/summary.jpg") center / cover;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(125deg, transparent 0 48%, rgba(255, 255, 255, 0.12) 48% 49%, transparent 49% 100%),
        linear-gradient(35deg, transparent 0 60%, rgba(201, 160, 68, 0.32) 60% 61%, transparent 61% 100%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.8fr);
    align-items: center;
    gap: 42px;
    width: min(100% - 44px, 1240px);
    margin: 0 auto;
    padding: 88px 0 118px;
}

.hero-grid > *,
.page-hero-inner > * {
    min-width: 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #075284;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 38px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), var(--cyan));
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-kicker::before {
    content: "";
    width: 38px;
    height: 2px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), var(--cyan));
}

.hero .eyebrow,
.hero-slider .eyebrow {
    color: #dff8ff;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 760px;
    margin-bottom: 22px;
    font-size: clamp(46px, 6vw, 86px);
    line-height: 0.95;
    letter-spacing: 0;
}

.hero p {
    max-width: 740px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    line-height: 1.7;
}

.hero-card {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px);
}

.hero-card img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 34px;
}

.stat {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
}

.stat strong {
    display: block;
    color: #fff;
    font-size: 28px;
    line-height: 1;
}

.stat span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 12px;
    font-weight: 700;
}

.hero-slider {
    position: relative;
    min-height: clamp(590px, calc(100svh - 112px), 720px);
    overflow: hidden;
    color: #fff;
    background: #061b38;
    isolation: isolate;
}

.hero-slides,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 1s, opacity 0.9s ease;
}

.hero-slide.is-active {
    visibility: visible;
    z-index: 1;
    opacity: 1;
    transition-delay: 0s;
}

.hero-slide-image {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.86) contrast(1.05);
    transform: scale(1.035);
    transition: transform 7s cubic-bezier(.2,.72,.2,1);
}

.hero-slide.is-active .hero-slide-image {
    transform: scale(1);
}

.hero-slide-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 19, 43, 0.96) 0%, rgba(4, 28, 60, 0.86) 38%, rgba(5, 34, 67, 0.42) 66%, rgba(5, 24, 47, 0.12) 100%),
        linear-gradient(0deg, rgba(3, 18, 38, 0.68), transparent 45%);
}

.hero-slide-inner {
    position: absolute;
    inset: 0;
    display: flex;
    width: min(100% - 44px, 1240px);
    align-items: center;
    margin: 0 auto;
    padding: 54px 0 168px;
}

.hero-slide-copy {
    width: min(690px, 64%);
}

.hero-slide-copy h1 {
    max-width: 680px;
    margin-bottom: 22px;
    font-size: clamp(48px, 5.4vw, 76px);
    line-height: 0.98;
    text-wrap: balance;
}

.hero-slide-copy p {
    max-width: 660px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.65;
}

.hero-slide-copy > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.8s cubic-bezier(.2,.8,.2,1);
}

.hero-slide.is-active .hero-slide-copy > * {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide.is-active .hero-slide-copy h1 {
    transition-delay: 0.1s;
}

.hero-slide.is-active .hero-slide-copy p {
    transition-delay: 0.18s;
}

.hero-slide.is-active .hero-slide-copy .cta-row {
    transition-delay: 0.26s;
}

.hero-slider-bottom {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    width: min(100% - 44px, 1240px);
    min-height: 112px;
    align-items: stretch;
    gap: 30px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-slider .hero-stats {
    display: grid;
    max-width: 650px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: 0;
}

.hero-slider .stat {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-content: center;
    align-items: center;
    gap: 5px 12px;
    padding: 20px 24px 20px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.hero-slider .stat + .stat {
    padding-left: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-slider .stat strong {
    grid-row: 1 / 3;
    font-size: 29px;
}

.hero-slider .stat span {
    margin: 0;
    font-size: 10px;
    line-height: 1.35;
}

.hero-slider-controls,
.hero-dots {
    display: flex;
    align-items: center;
}

.hero-slider-controls {
    gap: 10px;
}

.hero-dots {
    gap: 8px;
}

.hero-arrow,
.hero-dot {
    border: 0;
    color: #fff;
    background: transparent;
    font: inherit;
    cursor: pointer;
}

.hero-arrow {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 50%;
    font-size: 18px;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.14);
    outline: none;
    transform: translateY(-2px);
}

.hero-dot {
    display: grid;
    width: 48px;
    gap: 8px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 9px;
    font-weight: 700;
    text-align: left;
}

.hero-dot i {
    display: block;
    width: 100%;
    height: 2px;
    overflow: hidden;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.24);
}

.hero-dot i::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left;
}

.hero-dot.is-active {
    color: #fff;
}

.hero-dot.is-active i::after {
    animation: sliderProgress 7s linear forwards;
}

.hero-slider.is-paused .hero-dot.is-active i::after {
    animation-play-state: paused;
}

@keyframes sliderProgress {
    to { transform: scaleX(1); }
}

@media (min-width: 1041px) {
    .hero-slider {
        height: calc(100vh - 76px);
        height: calc(100svh - 76px);
        min-height: 640px;
        max-height: none;
    }
}

.companies-hero {
    position: relative;
    height: 430px;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(115deg, #06265d 0%, #0a4d7d 58%, #168fa5 100%);
}

.companies-hero::after {
    content: none;
}

.companies-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    width: min(100% - 44px, 1240px);
    margin: 0 auto;
    padding: 48px 0;
}

.companies-hero h1 {
    margin-bottom: 20px;
    font-size: clamp(46px, 6vw, 86px);
    line-height: 1;
    text-transform: none;
}

.companies-hero p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 19px;
    line-height: 1.6;
}

.companies-section {
    padding-top: 54px;
}

.companies-intro {
    display: grid;
    grid-template-columns: minmax(0, 760px) auto;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 44px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--line);
}

.companies-intro p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.companies-intro strong {
    color: var(--navy);
    font-size: 72px;
    line-height: 0.8;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--line);
}

.company-card {
    position: relative;
    display: grid;
    min-height: 250px;
    grid-template-columns: minmax(170px, 0.8fr) minmax(180px, 1fr);
    grid-template-rows: 1fr auto;
    gap: 20px 30px;
    padding: 34px;
    background: #fff;
    transition: background 0.3s ease;
}

.company-card:hover {
    background: #f7fbff;
}

.company-index {
    position: absolute;
    top: 18px;
    right: 20px;
    color: rgba(6, 38, 93, 0.3);
    font-size: 10px;
    font-weight: 700;
}

.company-logo-wrap {
    display: grid;
    min-width: 0;
    grid-row: 1 / 3;
    place-items: center;
    padding: 12px;
}

.company-logo-wrap img {
    width: min(100%, 220px);
    max-height: 120px;
    object-fit: contain;
    transition: transform 0.35s cubic-bezier(.2,.8,.2,1);
}

.company-card:hover .company-logo-wrap img {
    transform: scale(1.06);
}

.company-card-copy {
    align-self: end;
    min-width: 0;
}

.company-card h3 {
    margin-bottom: 8px;
    color: var(--navy);
    font-size: 20px;
}

.company-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.company-card > a {
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
}

.company-card > a b {
    font-size: 18px;
    font-weight: 400;
    transition: transform 0.25s ease;
}

.company-card > a:hover b {
    transform: translate(3px, -3px);
}

.companies-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section {
    width: min(100% - 44px, 1240px);
    margin: 0 auto;
    padding: 74px 0;
}

.section.tight {
    padding-top: 38px;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 26px;
    margin-bottom: 28px;
}

.section-head h2 {
    margin-bottom: 0;
    color: var(--navy);
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1;
}

.section-head p {
    max-width: 560px;
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.7;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    box-shadow: 0 14px 28px rgba(6, 38, 93, 0.22);
    transition: transform 0.28s cubic-bezier(.2,.8,.2,1), box-shadow 0.28s ease, background 0.28s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 36px rgba(6, 38, 93, 0.28);
}

.btn.secondary {
    color: var(--navy);
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: none;
}

.sector-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.sector-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 300px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 22px;
    color: #fff;
    text-decoration: none;
    background: var(--navy);
    box-shadow: 0 16px 36px rgba(6, 38, 93, 0.12);
    isolation: isolate;
    transform: translateY(0);
    transition: transform 0.34s cubic-bezier(.2,.8,.2,1), box-shadow 0.34s ease;
}

.sector-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(6, 38, 93, 0.28), rgba(6, 38, 93, 0.92));
}

.sector-card img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.7s cubic-bezier(.2,.8,.2,1);
}

.sector-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.sector-card:hover img {
    transform: scale(1.12);
}

.sector-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: end;
    padding: 22px;
}

.sector-number {
    position: absolute;
    top: 18px;
    left: 18px;
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--navy);
    font-weight: 900;
    background: #fff;
}

.sector-card h3 {
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 1.05;
}

.sector-card p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    line-height: 1.55;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 34px;
    align-items: center;
}

.panel {
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 44px rgba(6, 38, 93, 0.1);
}

.panel h2,
.panel h3 {
    color: var(--navy);
}

.panel p,
.panel li {
    color: var(--muted);
    line-height: 1.75;
}

.image-panel {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.image-panel img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.about-showcase {
    position: relative;
    min-height: 440px;
    margin: 0;
    overflow: hidden;
    isolation: isolate;
    border-radius: 24px;
    background: var(--navy);
    box-shadow: var(--shadow);
}

.about-showcase::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: '';
    background: linear-gradient(180deg, rgba(3, 20, 46, 0.02) 34%, rgba(3, 20, 46, 0.9) 100%);
    pointer-events: none;
}

.about-showcase > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.about-showcase:hover > img {
    transform: scale(1.035);
}

.about-showcase-kicker {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 15px;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 999px;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 24px rgba(3, 20, 46, 0.12);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.about-showcase figcaption {
    position: absolute;
    right: 210px;
    bottom: 26px;
    left: 26px;
    z-index: 2;
    color: #fff;
}

.about-showcase figcaption small {
    display: block;
    margin-bottom: 7px;
    color: var(--cyan);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.about-showcase figcaption strong {
    display: block;
    max-width: 390px;
    font-size: clamp(21px, 2vw, 29px);
    line-height: 1.08;
}

.about-showcase-metrics {
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    display: grid;
    gap: 8px;
}

.about-showcase-metrics span {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    width: 168px;
    min-height: 48px;
    padding: 7px 13px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    color: #fff;
    background: rgba(6, 38, 93, 0.84);
    box-shadow: 0 10px 26px rgba(3, 20, 46, 0.18);
    backdrop-filter: blur(10px);
}

.about-showcase-metrics strong {
    font-size: 20px;
}

.about-showcase-metrics small {
    font-size: 9px;
    font-weight: 600;
    line-height: 1.2;
}

.service-grid,
.brand-grid,
.detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-card,
.brand-card,
.detail-card,
.contact-card {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 34px rgba(6, 38, 93, 0.1);
    transition: transform 0.28s cubic-bezier(.2,.8,.2,1), box-shadow 0.28s ease;
}

.service-card::before,
.brand-card::before,
.detail-card::before,
.contact-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--blue), var(--cyan), var(--gold));
}

.service-card:hover,
.brand-card:hover,
.detail-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.service-card h3,
.brand-card h3,
.detail-card h3 {
    color: var(--navy);
    font-size: 21px;
}

.service-card p,
.brand-card p,
.detail-card p {
    color: var(--muted);
    line-height: 1.7;
}

.services-overview {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    gap: 76px;
    align-items: center;
}

.services-overview-copy h2 {
    max-width: 700px;
    margin: 18px 0 20px;
    color: var(--navy);
    font-size: clamp(34px, 4.2vw, 58px);
    line-height: 1.02;
}

.services-overview-copy p {
    max-width: 680px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.services-overview-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.services-overview-facts div {
    min-height: 138px;
    padding: 24px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.services-overview-facts strong,
.services-overview-facts span {
    display: block;
}

.services-overview-facts strong {
    margin-bottom: 12px;
    color: var(--blue);
    font-size: 32px;
    line-height: 1;
}

.services-overview-facts span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
}

.services-domains-section {
    border-top: 1px solid rgba(6, 38, 93, 0.08);
    border-bottom: 1px solid rgba(6, 38, 93, 0.08);
    background: rgba(255, 255, 255, 0.56);
}

.service-domain {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 68px;
    align-items: center;
    padding: 54px 0;
    border-top: 1px solid var(--line);
}

.service-domain:first-child {
    border-top: 0;
}

.service-domain.is-reverse .service-domain-media {
    order: 2;
}

.service-domain.is-reverse .service-domain-copy {
    order: 1;
}

.service-domain-media {
    position: relative;
    min-height: 440px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--navy);
    box-shadow: 0 20px 48px rgba(6, 38, 93, 0.16);
}

.service-domain-media::after {
    position: absolute;
    inset: 0;
    content: '';
    background: linear-gradient(180deg, transparent 54%, rgba(3, 20, 46, 0.55));
    pointer-events: none;
}

.service-domain-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-domain:hover .service-domain-media img {
    transform: scale(1.035);
}

.service-domain-media > span {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 50%;
    color: #fff;
    background: rgba(6, 38, 93, 0.74);
    font-size: 14px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.service-domain-copy h2 {
    margin: 14px 0 16px;
    color: var(--navy);
    font-size: clamp(30px, 3.5vw, 46px);
    line-height: 1.04;
}

.service-domain-intro {
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.service-domain-copy h3 {
    margin: 22px 0 11px;
    color: var(--navy);
    font-size: 12px;
    text-transform: uppercase;
}

.service-tags,
.service-capabilities {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tags li {
    padding: 9px 13px;
    border: 1px solid rgba(7, 87, 167, 0.16);
    border-radius: 999px;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.84);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.25;
}

.service-capabilities {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 18px;
}

.service-capabilities li {
    position: relative;
    padding-left: 18px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
}

.service-capabilities li::before {
    position: absolute;
    top: 6px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
    content: '';
}

.service-domain-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
}

.service-domain-link span {
    font-size: 18px;
    transition: transform 0.25s ease;
}

.service-domain-link:hover span {
    transform: translateX(5px);
}

.services-process {
    color: #fff;
    background: var(--navy);
}

.services-process-inner {
    width: min(100% - 44px, 1240px);
    margin: 0 auto;
    padding: 84px 0;
}

.services-process-head {
    display: grid;
    grid-template-columns: 0.65fr 1.1fr 0.9fr;
    gap: 44px;
    align-items: end;
    margin-bottom: 56px;
}

.services-process-head .eyebrow {
    color: var(--cyan);
}

.services-process-head h2,
.services-process-head p {
    margin: 0;
}

.services-process-head h2 {
    color: #fff;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.03;
}

.services-process-head p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.services-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.services-process-grid article {
    min-height: 250px;
    padding: 28px 24px 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.services-process-grid article:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.services-process-grid span {
    color: var(--cyan);
    font-size: 12px;
    font-weight: 800;
}

.services-process-grid h3 {
    margin: 58px 0 14px;
    color: #fff;
    font-size: 24px;
}

.services-process-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.65;
}

.services-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.services-cta h2 {
    margin: 12px 0 10px;
    color: var(--navy);
    font-size: clamp(30px, 3.6vw, 46px);
}

.services-cta p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.services-cta .btn {
    flex: 0 0 auto;
}

.certificates-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
    gap: 72px;
    align-items: center;
}

.certificates-intro-copy h2 {
    max-width: 700px;
    margin: 18px 0 20px;
    color: var(--navy);
    font-size: clamp(34px, 4.2vw, 58px);
    line-height: 1.02;
}

.certificates-intro-copy p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.certificates-facts {
    border-top: 1px solid var(--line);
}

.certificates-facts div {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: center;
    min-height: 86px;
    border-bottom: 1px solid var(--line);
}

.certificates-facts strong {
    color: var(--blue);
    font-size: 30px;
}

.certificates-facts span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.certificates-section {
    border-top: 1px solid rgba(6, 38, 93, 0.08);
    border-bottom: 1px solid rgba(6, 38, 93, 0.08);
    background: rgba(255, 255, 255, 0.58);
}

.certificate-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.certificate-card {
    position: relative;
    display: grid;
    grid-template-rows: 180px auto;
    min-height: 340px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.certificate-card:hover {
    border-color: rgba(6, 38, 93, 0.22);
    box-shadow: 0 22px 48px rgba(6, 38, 93, 0.12);
}

.certificate-index {
    position: absolute;
    top: 14px;
    right: 16px;
    z-index: 1;
    color: rgba(6, 38, 93, 0.35);
    font-size: 10px;
    font-weight: 800;
}

.certificate-logo {
    display: grid;
    min-width: 0;
    place-items: center;
    padding: 24px 28px;
    border-bottom: 1px solid var(--line);
}

.certificate-logo img {
    width: 100%;
    height: 126px;
    object-fit: contain;
    transition: transform 0.35s cubic-bezier(.2,.8,.2,1);
}

.certificate-card:hover .certificate-logo img {
    transform: scale(1.035);
}

.certificate-copy {
    position: relative;
    z-index: 1;
    align-self: stretch;
    min-width: 0;
    padding: 24px;
    transform: none;
    text-align: left;
}

.certificate-card h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 18px;
    line-height: 1.25;
}

.certificate-card p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

.certificate-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 54px;
}

.certificate-note h2 {
    margin: 12px 0 10px;
    color: var(--navy);
    font-size: clamp(28px, 3.5vw, 44px);
}

.certificate-note p {
    max-width: 780px;
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.certificate-note .cta-row {
    flex: 0 0 auto;
    margin: 0;
}

.brand-card img {
    width: 170px;
    height: 82px;
    object-fit: contain;
    margin-bottom: 18px;
}

.page-hero {
    position: relative;
    height: 430px;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(3, 26, 66, 0.98), rgba(8, 71, 126, 0.9), rgba(24, 167, 186, 0.78)),
        var(--hero-image, url("../img/catalog/sectors.jpg")) center / cover;
}

.page-hero-inner {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    width: min(100% - 44px, 1240px);
    margin: 0 auto;
    padding: 48px 0;
}

.page-hero h1 {
    max-width: 850px;
}

.page-hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    line-height: 1.7;
}

.split-list {
    columns: 2;
    column-gap: 30px;
    padding-left: 18px;
}

.feature-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: -38px;
}

.feature {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 34px rgba(6, 38, 93, 0.11);
}

.feature strong {
    display: block;
    color: var(--navy);
    font-size: 24px;
}

.feature span {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

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

.gallery figure {
    margin: 0;
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(6, 38, 93, 0.12);
}

.gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.gallery figcaption {
    padding: 14px 16px 18px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(290px, 0.72fr) minmax(0, 1.28fr);
    gap: 28px;
    align-items: start;
}

.contact-hero {
    background: linear-gradient(115deg, #06265d 0%, #0a4d7d 58%, #168fa5 100%);
}

.contact-info {
    padding: 34px;
    border-radius: 8px;
}

.contact-info h2 {
    margin: 16px 0 14px;
    color: var(--navy);
    font-size: 30px;
    line-height: 1.1;
}

.contact-info > p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}

.contact-card a {
    color: var(--blue);
    font-weight: 800;
    text-decoration: none;
}

.contact-list {
    display: grid;
    gap: 0;
    margin-top: 30px;
    border-top: 1px solid rgba(6, 38, 93, 0.12);
}

.contact-list p {
    display: grid;
    gap: 5px;
    margin: 0;
    padding: 16px 0;
    border-bottom: 1px solid rgba(6, 38, 93, 0.12);
}

.contact-list strong {
    color: var(--muted);
    font-size: 9px;
    text-transform: uppercase;
}

.contact-list a,
.contact-list span {
    overflow-wrap: anywhere;
    color: var(--navy);
    font-size: 13px;
}

.contact-form {
    padding: 38px;
    border: 1px solid rgba(6, 38, 93, 0.12);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(6, 38, 93, 0.11);
}

.contact-form-head h2 {
    margin: 14px 0 12px;
    color: var(--navy);
    font-size: 34px;
    line-height: 1.08;
}

.contact-form-head p {
    max-width: 650px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form label > span {
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
}

.contact-field-wide {
    grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(6, 38, 93, 0.18);
    border-radius: 8px;
    color: var(--navy);
    background: #f8fbfe;
    font: inherit;
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input,
.contact-form select {
    min-height: 48px;
    padding: 0 14px;
}

.contact-form textarea {
    min-height: 144px;
    padding: 13px 14px;
    line-height: 1.55;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--blue);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(20, 137, 196, 0.12);
}

.contact-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 24px;
}

.contact-form-footer p {
    max-width: 430px;
    margin: 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.55;
}

.contact-form-footer .btn {
    flex: 0 0 auto;
    min-width: 150px;
}

.contact-form-status {
    min-height: 20px;
    margin: 14px 0 0;
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
}

.contact-form-status.is-error {
    color: #a83535;
}

.contact-trap {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.site-footer {
    margin-top: 50px;
    color: rgba(255, 255, 255, 0.72);
    background:
        linear-gradient(110deg, rgba(16, 133, 174, 0.12), transparent 42%),
        #031a3f;
}

.footer-network {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    width: min(100% - 44px, 1240px);
    margin: 0 auto;
    padding: 48px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-network > div {
    max-width: 760px;
}

.footer-network > div > span {
    color: var(--cyan);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.footer-network h2 {
    margin: 10px 0 0;
    color: #fff;
    font-size: clamp(28px, 3.1vw, 42px);
    line-height: 1.08;
}

.footer-network > a {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-width: 210px;
    min-height: 52px;
    padding: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.footer-network > a:hover {
    border-color: var(--cyan);
    background: rgba(24, 167, 186, 0.18);
    transform: translateY(-2px);
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(260px, 1.55fr) minmax(105px, 0.62fr) minmax(190px, 1fr) minmax(120px, 0.7fr) minmax(220px, 1.05fr);
    gap: 34px;
    width: min(100% - 44px, 1240px);
    margin: 0 auto;
    padding: 54px 0 48px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
}

.footer-brand img {
    width: 232px;
    height: 56px;
    object-fit: contain;
    object-position: left center;
    filter: brightness(0) invert(1);
}

.footer-summary p {
    max-width: 340px;
    margin: 24px 0 22px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.75;
}

.footer-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.footer-proof span {
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.05);
    font-size: 9px;
    font-weight: 700;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.footer-column h2 {
    margin: 4px 0 13px;
    color: var(--cyan);
    font-size: 11px;
    text-transform: uppercase;
}

.footer-column a,
.footer-column p {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 12px;
    line-height: 1.6;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #fff;
}

.footer-column a::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 1px;
    margin-right: 8px;
    vertical-align: middle;
    background: rgba(255, 255, 255, 0.36);
    transition: width 0.2s ease, background 0.2s ease;
}

.footer-column a:hover::before {
    width: 12px;
    background: var(--cyan);
}

.footer-contact p {
    margin: 0 0 4px;
}

.footer-contact .footer-contact-link {
    color: #fff;
    font-weight: 700;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    width: min(100% - 44px, 1240px);
    margin: 0 auto;
    padding: 22px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom > div {
    max-width: 980px;
}

.footer-bottom strong {
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 10px;
}

.footer-bottom p {
    max-width: 960px;
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    line-height: 1.6;
}

.footer-bottom button {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.04);
    font: inherit;
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
}

.cookie-consent {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 60;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    width: min(calc(100% - 44px), 760px);
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    color: #fff;
    background: rgba(3, 26, 63, 0.97);
    box-shadow: 0 24px 70px rgba(3, 20, 46, 0.34);
    backdrop-filter: blur(16px);
}

.cookie-consent[hidden] {
    display: none;
}

.cookie-consent-copy > span {
    color: var(--cyan);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.cookie-consent h2 {
    margin: 7px 0 8px;
    color: #fff;
    font-size: 20px;
}

.cookie-consent p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
    line-height: 1.6;
}

.cookie-consent-actions {
    display: flex;
    align-items: end;
    gap: 8px;
}

.cookie-consent-actions button {
    min-height: 40px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    color: #fff;
    background: transparent;
    font: inherit;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
}

.cookie-consent-actions .cookie-accept {
    border-color: var(--cyan);
    color: var(--navy);
    background: var(--cyan);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.8,.2,1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.catalogue-main {
    min-height: 0;
    padding: 38px 0 72px;
    background: linear-gradient(180deg, #fff 0%, #e6eef7 100%);
}

.catalogue-hero {
    background: linear-gradient(115deg, #06265d 0%, #0a4d7d 58%, #168fa5 100%);
}

.catalogue-hero h1 {
    margin-bottom: 20px;
    font-size: clamp(46px, 6vw, 86px);
    line-height: 1;
}

.catalogue-hero p span {
    margin: 0 7px;
    color: var(--cyan);
}

.catalogue-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 32px;
    width: min(100% - 40px, 1240px);
    margin: 0 auto 26px;
}

.catalogue-heading .hero-kicker {
    color: #075284;
}

.catalogue-heading h1 {
    max-width: 900px;
    margin: 10px 0 0;
    color: var(--navy);
    font-size: clamp(38px, 4.2vw, 58px);
    line-height: 1.02;
    text-wrap: balance;
}

.catalogue-meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding-bottom: 4px;
}

.catalogue-meta span {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    padding: 8px 15px;
    border: 1px solid rgba(6, 38, 93, 0.14);
    border-radius: 999px;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 8px 22px rgba(6, 38, 93, 0.07);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.catalogue-meta .catalogue-page-badge {
    border-color: var(--navy);
    color: #fff;
    background: var(--navy);
}

.catalogue-reader {
    width: min(100% - 32px, 1480px);
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: #111a28;
    box-shadow: 0 34px 80px rgba(6, 38, 93, 0.24);
}

.catalogue-stage {
    position: relative;
    display: grid;
    min-height: clamp(320px, 49vw, 710px);
    place-items: center;
    overflow: hidden;
    padding: 34px 18px;
    perspective: 2600px;
    background-color: #152235;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
    background-size: 48px 48px;
}

.catalogue-stage::after {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 5%;
    height: 18%;
    pointer-events: none;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.42), transparent 68%);
    filter: blur(13px);
    transform: rotateX(68deg);
}

.catalogue-loading {
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: #fff;
    background: rgba(6, 38, 93, 0.88);
    font-size: 13px;
    font-weight: 800;
    transform: translate(-50%, -50%);
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.catalogue-reader.is-ready .catalogue-loading {
    visibility: hidden;
    opacity: 0;
}

.catalogue-book {
    position: relative;
    z-index: 2;
    opacity: 0;
    filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.42));
    transform: translateY(10px) rotateX(1.5deg);
    transform-origin: center bottom;
    transition: opacity 0.45s ease, transform 0.75s cubic-bezier(.2,.8,.2,1), filter 0.35s ease;
}

.catalogue-reader.is-ready .catalogue-book {
    opacity: 1;
    transform: translateY(0) rotateX(1.5deg);
}

.catalogue-reader.is-cover.is-landscape .catalogue-book {
    transform: translateX(-25%) translateY(0) rotateX(1.5deg);
}

.catalogue-reader.is-back-cover.is-landscape .catalogue-book {
    transform: translateX(25%) translateY(0) rotateX(1.5deg);
}

.catalogue-reader.is-opening-cover .catalogue-book {
    filter: drop-shadow(0 29px 36px rgba(0, 0, 0, 0.5));
}

.catalogue-reader.is-turning .catalogue-book {
    filter: drop-shadow(0 30px 38px rgba(0, 0, 0, 0.54));
}

.book-page {
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: inset 0 0 18px rgba(6, 22, 46, 0.1);
}

.book-page::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 0 8px rgba(8, 23, 47, 0.13);
}

.book-page[data-density="hard"] {
    background: #06265d;
}

.book-page img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
    user-select: none;
    -webkit-user-drag: none;
}

.catalogue-toolbar {
    position: relative;
    z-index: 5;
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #0d1725;
}

.catalogue-tool {
    display: inline-grid;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
    font: inherit;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.catalogue-tool:hover,
.catalogue-tool:focus-visible {
    border-color: rgba(201, 160, 68, 0.8);
    color: #fff;
    background: #b4882e;
    outline: none;
    transform: translateY(-2px);
}

.catalogue-tool:disabled {
    opacity: 0.32;
    cursor: default;
    transform: none;
}

.catalogue-counter {
    display: inline-flex;
    min-width: 92px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    font-size: 13px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.counter-divider {
    color: rgba(255, 255, 255, 0.45);
}

.catalogue-toolbar-separator {
    width: 1px;
    height: 30px;
    margin: 0 4px;
    background: rgba(255, 255, 255, 0.14);
}

.catalogue-pdf {
    width: 58px;
    border-radius: 999px;
    color: #0d1725;
    background: #f3cc75;
    font-size: 12px;
}

.catalogue-fullscreen {
    font-size: 22px;
}

.catalogue-reader:fullscreen {
    display: grid;
    width: 100vw;
    height: 100vh;
    grid-template-rows: minmax(0, 1fr) auto;
    border: 0;
    border-radius: 0;
    background: #111a28;
}

.catalogue-reader:fullscreen .catalogue-stage {
    min-height: 0;
    padding: 24px;
}

.catalogue-reader:fullscreen .catalogue-toolbar {
    min-height: 68px;
}

@media (max-width: 1080px) {
    .sector-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .service-grid,
    .brand-grid,
    .detail-grid,
    .gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-overview {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .certificates-intro {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .certificate-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-domain {
        gap: 38px;
    }

    .services-process-head {
        grid-template-columns: 1fr 1.5fr;
    }

    .services-process-head p {
        grid-column: 2;
    }

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

    .footer-summary {
        grid-column: 1 / -1;
        padding-bottom: 28px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .footer-summary p {
        max-width: 620px;
    }
}

@media (max-width: 1040px) {
    .menu-toggle {
        display: inline-block;
    }

    .nav {
        min-height: 68px;
    }

    .nav-links {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 76px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border-radius: 18px;
        background: rgba(6, 38, 93, 0.96);
        box-shadow: var(--shadow);
    }

    .nav-links.open {
        display: flex;
    }

    .hero-grid,
    .content-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .service-domain,
    .services-process-head {
        grid-template-columns: 1fr;
    }

    .service-domain.is-reverse .service-domain-media,
    .service-domain.is-reverse .service-domain-copy {
        order: initial;
    }

    .services-process-head p {
        grid-column: auto;
    }

    .services-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-process-grid article:nth-child(3) {
        border-top: 1px solid rgba(255, 255, 255, 0.18);
    }

    .services-process-grid article:last-child {
        border-top: 1px solid rgba(255, 255, 255, 0.18);
    }

    .certificate-note {
        display: block;
    }

    .certificate-note .cta-row {
        margin-top: 26px;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        padding: 64px 0 90px;
    }

    .hero-card {
        max-width: 560px;
    }

    .section-head {
        display: block;
    }

    .section-head p {
        margin-top: 16px;
    }

    .feature-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-slide-inner {
        padding-bottom: 178px;
    }

    .hero-slide-copy {
        width: min(720px, 78%);
    }

    .hero-slider-bottom {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-slider-controls {
        position: absolute;
        right: 0;
        bottom: 35px;
    }

    .hero-slider .hero-stats {
        max-width: calc(100% - 290px);
    }

    .catalogue-main {
        padding-top: 40px;
    }

    .catalogue-heading {
        display: block;
    }

    .catalogue-meta {
        justify-content: flex-start;
        margin-top: 18px;
        padding-bottom: 0;
    }

    .catalogue-stage {
        min-height: clamp(280px, 63vw, 520px);
        padding: 24px 10px;
    }
}

@media (max-width: 640px) {
    .nav {
        width: min(100% - 20px, 1240px);
        gap: 8px;
    }

    .brand {
        margin-left: 8px;
    }

    .brand img {
        width: 88px;
        height: 58px;
        padding: 0;
        border-radius: 0;
        background: transparent;
        filter: brightness(0) invert(1);
    }

    .brand-logo-desktop {
        display: none;
    }

    .brand .brand-logo-mobile {
        display: block;
        transform: scale(1.55);
        transform-origin: left center;
    }

    .brand span {
        display: none;
    }

    .nav-actions {
        gap: 6px;
    }

    .lang-switch a {
        padding: 8px 9px;
        font-size: 12px;
    }

    .hero-grid,
    .hero-slide-inner,
    .hero-slider-bottom,
    .section,
    .page-hero-inner,
    .footer-inner,
    .catalogue-heading,
    .companies-hero-inner {
        width: min(100% - 20px, 370px);
        margin-left: auto;
        margin-right: auto;
    }

    h1 {
        max-width: 100%;
        font-size: clamp(32px, 9.4vw, 42px);
        line-height: 1.02;
        overflow-wrap: anywhere;
        text-wrap: balance;
    }

    .hero p,
    .page-hero p {
        max-width: 100%;
        font-size: 16px;
        overflow-wrap: anywhere;
    }

    .hero-slider {
        height: calc(100vh - 68px);
        height: calc(100svh - 68px);
        min-height: 640px;
    }

    .hero-slide-image {
        object-position: 62% center;
    }

    .hero-slide-shade {
        background: linear-gradient(90deg, rgba(3, 20, 46, 0.94), rgba(3, 27, 58, 0.7)), linear-gradient(0deg, rgba(3, 18, 38, 0.8), transparent 56%);
    }

    .hero-slide-inner {
        align-items: flex-start;
        padding-top: 50px;
        padding-bottom: 206px;
    }

    .hero-slide-copy {
        width: 100%;
    }

    .hero-slide-copy h1 {
        font-size: clamp(36px, 10.4vw, 44px);
        line-height: 1;
    }

    .hero-slide-copy p {
        max-width: 340px;
        font-size: 14px;
        line-height: 1.55;
    }

    .hero-slider-bottom {
        min-height: 178px;
        padding-top: 12px;
    }

    .hero-slider .hero-stats {
        max-width: 100%;
        align-self: start;
    }

    .hero-slider .stat {
        display: block;
        padding: 14px 8px 14px 0;
    }

    .hero-slider .stat + .stat {
        padding-left: 12px;
    }

    .hero-slider .stat strong {
        font-size: 21px;
    }

    .hero-slider .stat span {
        margin-top: 6px;
        font-size: 8px;
    }

    .hero-slider-controls {
        right: auto;
        bottom: 17px;
        left: 0;
        width: 100%;
        justify-content: space-between;
    }

    .hero-dot {
        width: 42px;
    }

    .hero-arrow {
        width: 38px;
        height: 38px;
    }

    .hero-card {
        padding: 12px;
        border-radius: 18px;
    }

    .hero-card img {
        border-radius: 14px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .companies-hero {
        min-height: 430px;
    }

    .companies-hero-inner {
        padding: 48px 0;
    }

    .companies-hero h1 {
        font-size: clamp(40px, 12vw, 52px);
    }

    .companies-hero p {
        font-size: 15px;
    }

    .companies-section {
        padding-top: 38px;
    }

    .companies-intro {
        grid-template-columns: 1fr auto;
        gap: 16px;
        margin-bottom: 28px;
        padding-bottom: 22px;
    }

    .companies-intro p {
        font-size: 13px;
    }

    .companies-intro strong {
        font-size: 48px;
    }

    .companies-grid,
    .companies-preview {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .company-card {
        min-height: 276px;
        grid-template-columns: 1fr;
        grid-template-rows: 132px auto auto;
        gap: 12px;
        padding: 20px 12px;
    }

    .company-logo-wrap {
        grid-row: auto;
        min-height: 132px;
        padding: 0;
    }

    .company-logo-wrap img {
        width: min(100%, 142px);
        height: 124px;
        max-height: none;
    }

    .company-card h3 {
        margin-bottom: 5px;
        font-size: 14px;
        overflow-wrap: anywhere;
    }

    .company-card p {
        font-size: 9px;
    }

    .company-card > a {
        align-self: end;
        gap: 5px;
        font-size: 8px;
    }

    .company-card > a b {
        font-size: 14px;
    }

    .feature-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .sector-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .sector-card {
        min-height: 236px;
        border-radius: 18px;
    }

    .sector-card-content {
        padding: 15px;
    }

    .sector-number {
        top: 12px;
        left: 12px;
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .sector-card h3 {
        font-size: 16px;
    }

    .sector-card p {
        font-size: 11px;
    }

    .service-grid,
    .brand-grid,
    .detail-grid,
    .gallery {
        grid-template-columns: 1fr;
    }

    .services-page-hero {
        min-height: 430px;
    }

    .certificates-hero {
        min-height: 430px;
    }

    .certificates-intro {
        gap: 30px;
    }

    .certificates-intro-copy h2 {
        font-size: 34px;
    }

    .certificates-intro-copy p {
        font-size: 14px;
    }

    .certificates-facts div {
        grid-template-columns: 70px minmax(0, 1fr);
        min-height: 72px;
    }

    .certificates-facts strong {
        font-size: 25px;
    }

    .certificates-facts span {
        font-size: 9px;
    }

    .certificate-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .certificate-card {
        grid-template-rows: 126px auto;
        min-height: 278px;
    }

    .certificate-logo {
        padding: 18px 12px;
    }

    .certificate-logo img {
        height: 92px;
    }

    .certificate-copy {
        padding: 16px 12px;
    }

    .certificate-card h3 {
        font-size: 13px;
        overflow-wrap: anywhere;
    }

    .certificate-card p {
        font-size: 9px;
        line-height: 1.55;
    }

    .certificate-note .cta-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .services-overview {
        gap: 32px;
    }

    .services-overview-copy h2 {
        font-size: 34px;
    }

    .services-overview-copy p {
        font-size: 14px;
    }

    .services-overview-facts div {
        min-height: 112px;
        padding: 18px 14px;
    }

    .services-overview-facts strong {
        font-size: 25px;
    }

    .services-overview-facts span {
        font-size: 9px;
    }

    .service-domain {
        gap: 26px;
        padding: 38px 0;
    }

    .service-domain-media {
        min-height: 290px;
    }

    .service-domain-copy h2 {
        font-size: 30px;
    }

    .service-domain-intro {
        font-size: 13px;
    }

    .service-capabilities {
        grid-template-columns: 1fr;
    }

    .services-process-inner {
        width: min(100% - 20px, 370px);
        padding: 58px 0;
    }

    .services-process-head {
        gap: 18px;
        margin-bottom: 34px;
    }

    .services-process-head h2 {
        font-size: 34px;
    }

    .services-process-head p {
        font-size: 13px;
    }

    .services-process-grid article {
        min-height: 210px;
        padding: 20px 14px;
    }

    .services-process-grid h3 {
        margin-top: 38px;
        font-size: 19px;
    }

    .services-process-grid p {
        font-size: 10px;
    }

    .services-cta {
        display: block;
    }

    .services-cta .btn {
        margin-top: 24px;
    }

    .panel,
    .service-card,
    .brand-card,
    .detail-card,
    .contact-card {
        padding: 22px;
        border-radius: 18px;
    }

    .contact-info,
    .contact-form {
        padding: 22px;
        border-radius: 8px;
    }

    .contact-info h2,
    .contact-form-head h2 {
        font-size: 27px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 24px;
    }

    .contact-field-wide {
        grid-column: auto;
    }

    .contact-form-footer {
        display: block;
    }

    .contact-form-footer .btn {
        width: 100%;
        margin-top: 18px;
    }

    .about-showcase {
        min-height: 360px;
        border-radius: 18px;
    }

    .about-showcase-kicker {
        top: 16px;
        left: 16px;
    }

    .about-showcase figcaption {
        right: 16px;
        bottom: 88px;
        left: 16px;
    }

    .about-showcase figcaption strong {
        max-width: 300px;
        font-size: 22px;
    }

    .about-showcase-metrics {
        right: 16px;
        bottom: 16px;
        left: 16px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-showcase-metrics span {
        width: auto;
        min-width: 0;
        padding: 7px 10px;
    }

    .about-showcase-metrics strong {
        font-size: 18px;
    }

    .about-showcase-metrics small {
        font-size: 8px;
    }

    .split-list {
        columns: 1;
    }

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

    .footer-network,
    .footer-main,
    .footer-bottom {
        width: min(100% - 32px, 520px);
    }

    .footer-network {
        display: none;
    }

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 18px;
        padding: 34px 0 28px;
    }

    .footer-summary {
        grid-column: 1 / -1;
        padding-bottom: 24px;
    }

    .footer-brand img {
        width: 188px;
        height: 46px;
    }

    .footer-summary p {
        margin: 16px 0 0;
        font-size: 11px;
        line-height: 1.6;
    }

    .footer-proof,
    .footer-sectors {
        display: none;
    }

    .footer-column {
        gap: 7px;
    }

    .footer-column h2 {
        margin-bottom: 8px;
        font-size: 10px;
    }

    .footer-column a,
    .footer-column p {
        font-size: 10px;
        line-height: 1.5;
    }

    .footer-contact {
        grid-column: 1 / -1;
        padding-top: 22px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .footer-bottom {
        display: block;
        padding: 18px 0 22px;
    }

    .footer-bottom button {
        min-height: 34px;
        margin-top: 10px;
    }

    .cookie-consent {
        right: 10px;
        bottom: 10px;
        grid-template-columns: 1fr;
        gap: 18px;
        width: calc(100% - 20px);
        padding: 20px;
    }

    .cookie-consent-actions {
        align-items: stretch;
    }

    .cookie-consent-actions button {
        flex: 1 1 0;
        white-space: normal;
    }

    .catalogue-main {
        padding: 30px 0 40px;
    }

    .catalogue-heading {
        margin-bottom: 20px;
    }

    .catalogue-heading h1 {
        margin-top: 8px;
        font-size: clamp(32px, 9.4vw, 42px);
    }

    .catalogue-meta {
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 14px;
    }

    .catalogue-meta span {
        min-height: 34px;
        padding: 7px 11px;
        font-size: 10px;
    }

    .catalogue-reader {
        width: calc(100% - 12px);
        border-radius: 6px;
    }

    .catalogue-stage {
        min-height: clamp(240px, 71vw, 360px);
        padding: 14px 4px;
    }

    .catalogue-toolbar {
        min-height: 62px;
        gap: 4px;
        padding: 10px 5px;
    }

    .catalogue-tool {
        width: 38px;
        height: 38px;
        font-size: 21px;
    }

    .catalogue-counter {
        min-width: 68px;
        height: 38px;
        gap: 4px;
        padding: 0 9px;
        font-size: 11px;
    }

    .catalogue-toolbar-separator {
        display: none;
    }

    .catalogue-pdf {
        width: 48px;
        font-size: 10px;
    }

    .catalogue-fullscreen {
        font-size: 19px;
    }
}
