:root {
    --msb-dark: #243746;
    --msb-red: #ef0018;
    --msb-red-text: #d60016;
    --msb-ink: #16222c;
    --msb-muted: #66717a;
    --msb-soft: #f4f6f8;
    --msb-line: #e4e8ec;
    --white: #ffffff;
    --shadow: 0 24px 50px rgba(22, 34, 44, 0.16);
    --radius: 12px;
    --font-main: "Geist", Arial, Helvetica, sans-serif;
    --label-size: 12px;
    --hero-title-size: 34px;
    --section-title-size: 36px;
    --section-title-line-height: 1.08;
    --anchor-scroll-offset: 88px;
    --brand-logo-height: 140px;
    --brand-logo-slot-width: 170px;
}

@font-face {
    font-family: "Geist";
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url("../fonts/geist-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: "Geist";
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url("../fonts/geist-latin-ext.woff2") format("woff2");
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--msb-ink);
    background: var(--white);
    font-family: var(--font-main);
    line-height: 1.6;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(1160px, calc(100% - 96px));
    margin: 0 auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.topbar {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--white);
    background: var(--msb-dark);
    font-size: 12px;
    font-weight: 700;
}

.topbar__phones {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.topbar__phones a,
.topbar__email {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: color 260ms ease;
}

.topbar__email {
    opacity: 0.8;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: lowercase;
}

.topbar__icon {
    display: inline-flex;
    width: 16px;
    height: 16px;
    color: var(--msb-red);
    transition: color 260ms ease, transform 260ms ease;
}

.topbar__icon svg {
    width: 16px;
    height: 16px;
}

.topbar a:hover .topbar__icon {
    color: var(--white);
    transform: translateY(-1px);
}

.topbar a:hover,
.nav-links a:hover {
    color: var(--msb-red);
}

.navbar {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 24px;
}

.brand {
    position: relative;
    display: block;
    flex: 0 0 var(--brand-logo-slot-width);
    height: 60px;
}

.brand img {
    position: absolute;
    top: 50%;
    left: 0;
    width: auto;
    height: var(--brand-logo-height);
    max-width: none;
    max-height: none;
    object-fit: contain;
    object-position: left center;
    transform: translateY(-50%);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 38px;
    color: var(--msb-dark);
    font-size: var(--label-size);
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.nav-links a {
    position: relative;
    padding: 10px 0;
    white-space: nowrap;
    transition: color 260ms ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 3px;
    background: var(--msb-red);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 260ms ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--msb-line);
    border-radius: var(--radius);
    background: var(--white);
}

.nav-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--msb-dark);
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 590px;
    padding: 112px 0 170px;
    color: var(--white);
    background: var(--msb-dark);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0 0 0 auto;
    width: 45%;
    background: linear-gradient(120deg, transparent 0%, rgba(40, 34, 48, 0.72) 100%);
    transform: skewX(-10deg) translateX(22%);
}

.hero__texture {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image: url("../../patterns/carbon-fibre.png");
    background-repeat: repeat;
}

.hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 760px) minmax(320px, 430px);
    align-items: center;
    justify-content: space-between;
    gap: 72px;
    width: min(1216px, calc(100% - 96px));
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

.hero__copy > * {
    max-width: 760px;
}

.hero-certification {
    position: relative;
    justify-self: end;
    width: min(100%, 430px);
    padding: 18px;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
        rgba(14, 27, 38, 0.2);
    box-shadow: 0 26px 56px rgba(0, 0, 0, 0.16);
}

.hero-certification::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(239, 0, 24, 0.28), transparent 34%, rgba(255, 255, 255, 0.12));
    opacity: 0.42;
    pointer-events: none;
}

.hero-certification::after {
    content: "";
    position: absolute;
    inset: 18px 12px auto;
    z-index: 0;
    height: 72px;
    border-radius: 999px;
    background: rgba(239, 0, 24, 0.22);
    filter: blur(34px);
    opacity: 0.38;
    pointer-events: none;
}

.hero-certification__label {
    position: relative;
    z-index: 1;
    margin: 0 0 18px;
    color: var(--msb-red);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.26em;
    text-transform: uppercase;
}

.hero-certification__logo {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 164px;
    padding: 24px 28px;
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 250, 0.96));
    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transform: translateY(0);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.hero-certification__logo::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.55), transparent 42%);
    pointer-events: none;
}

.hero-certification:hover .hero-certification__logo {
    transform: translateY(-3px);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.hero-certification__logo img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    max-height: 112px;
    object-fit: contain;
}

.hero-certification__text {
    position: relative;
    z-index: 1;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.55;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 30px;
    color: var(--msb-red-text);
    font-size: var(--label-size);
    font-weight: 900;
    letter-spacing: 0.42em;
    text-transform: uppercase;
}

.eyebrow span {
    width: 28px;
    height: 2px;
    background: currentColor;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.12;
    letter-spacing: 0;
}

h1 {
    max-width: 760px;
    font-size: var(--hero-title-size);
    font-weight: 900;
    text-transform: uppercase;
}

.hero-title-line {
    white-space: nowrap;
}

h1 strong,
h2 strong {
    color: var(--msb-red);
    font-style: italic;
}

h2 {
    max-width: 850px;
    margin-bottom: 24px;
    font-size: var(--section-title-size);
    font-weight: 900;
    line-height: var(--section-title-line-height);
    text-transform: uppercase;
}

h3 {
    font-size: 22px;
    font-weight: 900;
}

.lead,
.section-intro {
    max-width: 650px;
    color: #d0d5da;
    font-size: 18px;
    font-weight: 700;
}

.hero .lead {
    margin-top: 36px;
}

.section-intro {
    color: var(--msb-muted);
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 42px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 32px;
    border: 1px solid transparent;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    color: var(--white);
    background: var(--msb-red);
    box-shadow: 0 16px 32px rgba(239, 0, 24, 0.22);
}

.hero .button--primary::after {
    content: "\203A";
    margin-left: 18px;
    font-size: 18px;
    line-height: 0;
}

.button--primary:hover {
    color: var(--msb-dark);
    background: var(--white);
    border-color: var(--white);
}

.contact-form .button--primary:hover,
.contact-form .button--primary:disabled {
    color: var(--white);
    background: var(--msb-dark);
    border-color: var(--msb-dark);
}

.button:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.button--ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.32);
}

.button--ghost:hover {
    border-color: var(--msb-red);
    background: rgba(255, 255, 255, 0.08);
}

.quick-cards {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    width: min(1216px, calc(100% - 96px));
    margin-top: -82px;
}

.panel {
    min-height: 310px;
    padding: 40px;
    border-radius: 12px;
    border-top: 4px solid var(--msb-red);
    box-shadow: 0 24px 60px rgba(22, 34, 44, 0.18);
}

.panel--white {
    background: var(--white);
}

.panel--soft {
    background: #f3f4f6;
    border-top-color: var(--msb-dark);
}

.panel h2,
.mission-box h3,
.clients-box h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.15;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.panel-title-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.panel-title-icon--red {
    color: var(--msb-red);
}

.panel-title-icon--dark {
    color: var(--msb-dark);
}

.check-list,
.service-card ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.check-list li,
.service-card li {
    position: relative;
    padding-left: 28px;
    margin: 15px 0;
    font-weight: 700;
}

.check-list li::before,
.service-card li::before {
    content: "\2713";
    position: absolute;
    top: 0.38em;
    left: 0;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--msb-red);
    border-radius: 50%;
    color: var(--msb-red);
    font-size: 9px;
    font-weight: 900;
    line-height: 1;
}

.quick-cards .check-list li {
    color: #3f4b58;
    font-size: 14px;
    font-weight: 700;
    font-style: italic;
}

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

.sector-tags span {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid var(--msb-line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 6px 14px rgba(22, 34, 44, 0.08);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

.tag-icon {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
    color: var(--msb-red);
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.section {
    padding: 92px 0;
}

.section[id] {
    scroll-margin-top: var(--anchor-scroll-offset);
}

.section--soft {
    background: var(--msb-soft);
}

.section--dark {
    color: var(--white);
    background: var(--msb-dark);
}

.section--dark .section-intro {
    color: rgba(255, 255, 255, 0.72);
}

.split,
.contact-layout,
.reference-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: 52px;
    align-items: start;
}

.split p,
.mission-box p {
    color: var(--msb-muted);
    font-size: 17px;
}

.feature-list {
    display: grid;
    gap: 14px;
    margin-top: 32px;
}

.feature-list p {
    margin: 0;
    padding: 16px 18px;
    border-left: 4px solid var(--msb-red);
    background: var(--msb-soft);
    font-weight: 800;
}

.mission-box,
.clients-box,
.contact-form {
    padding: 34px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.mission-box {
    border: 1px solid var(--msb-line);
}

.mission-box small {
    display: block;
    margin-top: 24px;
    color: var(--msb-red);
    font-weight: 900;
}

.company-section {
    background: var(--white);
    overflow: hidden;
}

.company-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
    gap: 48px;
    align-items: center;
}

.company-copy h2 {
    max-width: 560px;
    margin-bottom: 28px;
    color: var(--msb-dark);
    font-size: var(--section-title-size);
    line-height: var(--section-title-line-height);
    letter-spacing: 0;
    text-transform: uppercase;
}

.company-copy h2 span,
.company-copy h2 strong {
    display: block;
    white-space: nowrap;
}

.company-cards {
    min-width: 0;
}

.company-copy h2 strong {
    color: var(--msb-red);
    font-style: italic;
}

.company-copy > p:not(.eyebrow) {
    max-width: 570px;
    margin: 0 0 44px;
    color: #4b5563;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.75;
}

.company-eyebrow {
    margin-bottom: 24px;
    color: var(--msb-red-text);
    font-size: var(--label-size);
}

.company-expertise h3 {
    margin: 0 0 20px;
    color: #555f68;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.company-point {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 16px 0;
    cursor: default;
}

.company-check {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: var(--msb-soft);
    color: var(--msb-red);
    flex: 0 0 auto;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.company-point:hover .company-check {
    background: var(--msb-red);
    color: var(--white);
    transform: translateY(-1px);
}

.company-check svg,
.company-card-heading svg,
.company-card-watermark {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.company-check svg {
    width: 18px;
    height: 18px;
}

.company-point span:last-child {
    color: var(--msb-dark);
    font-size: 14px;
    font-weight: 900;
    font-style: italic;
}

.company-cards {
    display: grid;
    gap: 24px;
}

.company-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    padding: 32px;
}

.company-card--mission {
    background: var(--msb-soft);
    border-left: 8px solid var(--msb-red);
    box-shadow: 0 10px 24px rgba(22, 34, 44, 0.08);
}

.company-card--vision {
    color: var(--white);
    background: var(--msb-dark);
    box-shadow: 0 20px 42px rgba(22, 34, 44, 0.22);
}

.company-card-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.company-card-heading svg {
    width: 28px;
    height: 28px;
    color: var(--msb-red);
    flex: 0 0 auto;
}

.company-card h3 {
    color: inherit;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.company-card-label {
    margin: 0 0 16px;
    color: #5f6670;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.company-card ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.company-card li {
    position: relative;
    padding-left: 22px;
    color: var(--msb-dark);
    font-size: 14px;
    font-weight: 900;
}

.company-card li::before {
    content: "";
    position: absolute;
    top: 0.7em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--msb-red);
}

.company-card--vision p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #d1d5db;
    font-size: 18px;
    font-weight: 900;
    font-style: italic;
    line-height: 1.65;
}

.company-card-watermark {
    position: absolute;
    top: 20px;
    right: 16px;
    width: 140px;
    height: 140px;
    color: var(--white);
    opacity: 0.06;
}

.services-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 48px;
    margin-bottom: 54px;
}

.services-heading h2 {
    margin-bottom: 0;
}

.services-heading h2 strong {
    display: inline-block;
}

.services-objective {
    width: min(100%, 380px);
    margin: 0 0 10px;
    padding-left: 24px;
    border-left: 2px solid var(--msb-red);
    color: #6b7280;
    font-size: 16px;
    font-weight: 800;
    font-style: italic;
    line-height: 1.7;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    margin-top: 0;
}

.service-card {
    min-height: 350px;
    padding: 32px;
    border: 1px solid #edf0f3;
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(22, 34, 44, 0.06);
    transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(239, 0, 24, 0.08);
    box-shadow: 0 28px 50px rgba(22, 34, 44, 0.16);
}

.service-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 26px;
    color: var(--msb-red);
    transform-origin: left center;
    transition: transform 300ms ease;
}

.service-icon svg {
    display: block;
}

.service-card:hover .service-icon {
    transform: translateX(-6px) scale(1.1);
}

.service-card h3 {
    margin-bottom: 16px;
    color: var(--msb-dark);
    font-size: 20px;
    line-height: 1.18;
    letter-spacing: 0;
    text-transform: uppercase;
}

.service-card p {
    min-height: 74px;
    margin-bottom: 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.65;
}

.service-card ul {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #f0f2f4;
}

.service-card li {
    margin: 10px 0;
    padding-left: 24px;
    color: var(--msb-dark);
    font-size: 12px;
    font-weight: 900;
    font-style: italic;
    line-height: 1.35;
}

.service-card li::before {
    top: 0.15em;
    width: 14px;
    height: 14px;
    font-size: 8px;
}

.baseline {
    margin: 42px 0 0;
    padding: 22px;
    border-radius: var(--radius);
    color: var(--white);
    background: var(--msb-dark);
    text-align: center;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sectors-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 52px;
    margin-bottom: 64px;
}

.sectors-heading h2 {
    margin-bottom: 0;
}

.sectors-heading h2 strong {
    display: block;
}

.sectors-intro {
    width: min(100%, 390px);
    margin: 0 0 8px;
    padding-left: 24px;
    border-left: 2px solid var(--msb-red);
    color: #6b7280;
    font-size: 16px;
    font-weight: 800;
    font-style: italic;
    line-height: 1.7;
}

.sector-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 24px;
    margin-top: 0;
}

.sector-card {
    position: relative;
    height: 450px;
    min-height: 450px;
    overflow: hidden;
    border-radius: 20px;
    color: var(--white);
    background: var(--msb-dark);
    box-shadow: 0 14px 28px rgba(22, 34, 44, 0.18);
    isolation: isolate;
}

.sector-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(36, 55, 70, 0.55), rgba(36, 55, 70, 0.88));
    transition: background 500ms ease;
}

.sector-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 450px;
    object-fit: cover;
    opacity: 0.78;
    transition: opacity 650ms ease, transform 700ms ease;
}

.sector-card:hover,
.sector-card.is-visible {
    box-shadow: 0 26px 46px rgba(22, 34, 44, 0.24);
}

.sector-card:hover::after,
.sector-card.is-visible::after {
    background: linear-gradient(180deg, rgba(36, 55, 70, 0.48), rgba(36, 55, 70, 0.9));
}

.sector-card:hover img,
.sector-card.is-visible img {
    opacity: 0.55;
    transform: scale(1.04);
}

.sector-card__content {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    display: flex;
    min-height: 255px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 22px 34px;
    transform: translateY(0);
}

.sector-card:hover .sector-card__content,
.sector-card.is-visible .sector-card__content {
    transform: translateY(0);
}

.sector-card__icon {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 8px;
    color: var(--white);
    background: var(--msb-red);
    box-shadow: 0 14px 24px rgba(239, 0, 24, 0.2);
}

.sector-card h3 {
    margin: 0;
    color: var(--white);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.sector-card p {
    max-height: 0;
    margin: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.65;
    opacity: 0;
    transform: translateY(10px);
    transition: max-height 650ms ease, margin-top 650ms ease, opacity 520ms ease 120ms, transform 650ms ease;
}

.sector-card:hover p,
.sector-card.is-visible p {
    max-height: 160px;
    margin-top: 24px;
    opacity: 1;
    transform: translateY(0);
}

.sector-card__bar {
    display: block;
    width: 34px;
    height: 0;
    margin-top: 0;
    background: var(--msb-red);
    opacity: 0;
    transition: width 500ms ease, height 500ms ease, margin-top 500ms ease, opacity 500ms ease;
}

.sector-card:hover .sector-card__bar,
.sector-card.is-visible .sector-card__bar {
    width: 54px;
    height: 4px;
    margin-top: 30px;
    opacity: 1;
}

#references {
    background: var(--white);
}

.references-shell {
    display: block;
}

#references .reference-layout {
    align-items: stretch;
}

.references-copy h2 {
    margin-bottom: 42px;
}

.references-copy h2 span,
.references-copy h2 strong {
    display: block;
}

.reference-list {
    display: grid;
    gap: 22px;
    padding: 0;
    margin-top: 0;
    list-style: none;
}

.reference-list li {
    display: block;
    margin: 0;
}

.reference-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 26px;
    width: 100%;
    min-height: 74px;
    margin: 0;
    padding: 22px 28px 22px 56px;
    overflow: hidden;
    border: 0;
    border-radius: 12px;
    color: var(--msb-dark);
    background: #f7f7f8;
    box-shadow: none;
    text-align: left;
    font-size: 16px;
    font-weight: 900;
    font-style: italic;
    line-height: 1.35;
    cursor: pointer;
    transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease, color 260ms ease;
}

.reference-item::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    height: auto;
    border: 0;
    border-radius: 12px 0 0 12px;
    background: var(--msb-red);
}

.reference-item:hover,
.reference-item:focus-visible,
.reference-item.is-active {
    transform: translateX(8px);
    background: var(--white);
    box-shadow: 0 20px 38px rgba(22, 34, 44, 0.12);
}

.reference-item:focus-visible {
    outline: 3px solid rgba(239, 0, 24, 0.28);
    outline-offset: 4px;
}

.reference-icon {
    display: inline-flex;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    color: var(--msb-red);
    transition: transform 260ms ease;
}

.reference-icon svg {
    display: block;
    width: 24px;
    height: 24px;
}

.reference-item:hover .reference-icon,
.reference-item:focus-visible .reference-icon,
.reference-item.is-active .reference-icon {
    transform: translateX(4px);
}

.reference-preview {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 22px;
    color: var(--white);
    background: var(--msb-dark);
    box-shadow: 0 26px 56px rgba(22, 34, 44, 0.22);
    isolation: isolate;
}

.reference-preview-card {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.012);
    transition: opacity 360ms ease, transform 600ms ease;
}

.reference-preview-card.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.reference-preview-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.reference-preview-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(36, 55, 70, 0.38), rgba(36, 55, 70, 0.88)),
        linear-gradient(90deg, rgba(22, 34, 44, 0.78), rgba(22, 34, 44, 0.24));
}

.reference-preview-card__overlay {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    display: grid;
    justify-items: start;
    gap: 18px;
    padding: 44px;
}

.reference-preview-card h3 {
    max-width: 500px;
    color: var(--white);
    font-size: 28px;
    font-weight: 800;
    font-style: italic;
    line-height: 1.12;
    letter-spacing: 0;
    text-transform: uppercase;
}

.reference-preview-card p {
    max-width: 500px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 700;
    font-style: italic;
    line-height: 1.5;
}

.reference-preview-card__bar {
    width: 84px;
    height: 5px;
    margin-top: 4px;
    background: var(--msb-red);
}

.clients-box {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    padding: 44px;
    border-radius: 22px;
    color: var(--white);
    background: var(--msb-dark);
    box-shadow: 0 26px 56px rgba(22, 34, 44, 0.22);
}

.clients-box--empty {
    display: block;
}

.clients-watermark {
    position: absolute;
    top: 34px;
    right: 28px;
    width: 140px;
    height: 140px;
    color: var(--white);
    opacity: 0.07;
}

.clients-watermark svg {
    width: 100%;
    height: 100%;
}

.clients-kicker {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 24px;
    color: var(--msb-red);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.clients-kicker span {
    width: 18px;
    height: 18px;
}

.clients-kicker svg {
    width: 18px;
    height: 18px;
}

.clients-box h3 {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 34px;
    color: var(--white);
    font-size: 29px;
    line-height: 1.05;
    letter-spacing: 0;
    text-transform: uppercase;
}

.clients-box h3 span,
.clients-box h3 strong {
    display: block;
}

.clients-box h3 strong {
    color: var(--msb-red);
    font-style: italic;
}

.client-logos {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0 0 28px;
}

.client-logo {
    min-height: 118px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    border-radius: var(--radius);
    background: var(--white);
}

.client-logo img {
    max-width: 100%;
    max-height: 78px;
    object-fit: contain;
}

.clients-quote {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.58);
    background: rgba(255, 255, 255, 0.06);
    font-size: 14px;
    font-style: italic;
    font-weight: 600;
    line-height: 1.75;
}

.client-logo-strip {
    width: 100%;
    min-height: 112px;
    margin: 22px auto 0;
    padding: 18px 0;
    overflow: hidden;
    border: 1px solid var(--msb-line);
    border-radius: 22px;
    background: #f7f7f8;
    box-shadow: 0 20px 38px rgba(22, 34, 44, 0.12);
}

.client-logo-strip__track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: clientLogoCarousel 34s linear infinite;
}

.client-logo-strip__item {
    flex: 0 0 144px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 76px;
    margin: 0 8px;
    padding: 12px 18px;
    border-radius: 12px;
    background: var(--white);
}

.client-logo-strip__item img {
    display: block;
    width: 100%;
    max-width: 112px;
    max-height: 64px;
    object-fit: contain;
}

@keyframes clientLogoCarousel {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 58px;
}

.partner-grid article {
    min-height: 220px;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    cursor: default;
    transition: background 500ms ease, border-color 500ms ease, color 500ms ease;
}

.partner-grid article:hover {
    border-color: var(--msb-red);
    background: var(--msb-red);
}

.partner-icon {
    display: inline-flex;
    width: 24px;
    height: 24px;
    margin-bottom: 30px;
    color: var(--msb-red);
    transition: color 500ms ease;
}

.partner-icon svg {
    display: block;
}

.partner-grid article:hover .partner-icon {
    color: var(--white);
}

.partner-grid h3 {
    margin-bottom: 18px;
    color: var(--white);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: 0;
    text-transform: uppercase;
}

.partner-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 13px;
    font-weight: 700;
    font-style: italic;
    line-height: 1.7;
    transition: color 500ms ease;
}

.partner-grid article:hover p {
    color: rgba(255, 255, 255, 0.95);
}

#partenariats {
    background: var(--msb-dark);
}

#partenariats .container {
    max-width: 1280px;
}

#partenariats h2 {
    max-width: 900px;
    color: var(--white);
}

#partenariats h2 strong {
    display: inline;
    color: var(--msb-red);
    font-style: italic;
}

#partenariats .section-intro {
    max-width: 640px;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.75;
}

.contact-layout {
    align-items: start;
}

.contact-form[hidden] {
    display: none !important;
}

.contact-copy h2 span,
.contact-copy h2 strong {
    display: block;
}

.contact-copy h2 {
    max-width: 520px;
    margin-bottom: 46px;
    font-size: var(--section-title-size);
    line-height: var(--section-title-line-height);
    letter-spacing: 0;
}

.contact-copy h2 strong {
    white-space: nowrap;
}

.contact-cards {
    display: grid;
    gap: 34px;
    margin-top: 0;
    max-width: 580px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--msb-dark);
}

.contact-card__icon {
    display: inline-flex;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--msb-red);
    background: #f4f4f5;
    transition: color 300ms ease, background 300ms ease, transform 300ms ease;
}

.contact-card:hover .contact-card__icon {
    color: var(--white);
    background: var(--msb-red);
    transform: translateY(-2px);
}

.contact-card__icon svg {
    width: 22px;
    height: 22px;
}

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

.contact-card__body span {
    color: #9ca3af;
    font-size: 10px;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-card__body strong {
    color: var(--msb-dark);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.2;
}

.contact-card--phone strong {
    font-size: 18px;
    font-weight: 900;
    line-height: 1.2;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1;
}

.contact-card--email strong {
    display: inline-block;
    border-bottom: 3px solid var(--msb-red);
    line-height: 1.05;
    white-space: nowrap;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 20px;
    padding: 42px;
    border-radius: 22px;
    background: #f4f4f5;
    box-shadow: 0 22px 46px rgba(22, 34, 44, 0.12);
}

.contact-location-panel {
    position: relative;
    overflow: hidden;
    height: 400px;
    min-height: 0;
    display: flex;
    align-items: flex-end;
    padding: 22px;
    border-radius: 18px;
    color: var(--white);
    background:
        linear-gradient(160deg, rgba(36, 55, 70, 0.96), rgba(22, 34, 44, 0.92)),
        url("../../images/6.jpg") center / cover;
    box-shadow: 0 24px 50px rgba(22, 34, 44, 0.18);
}

.contact-location-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(239, 0, 24, 0.12), transparent 38%);
    pointer-events: none;
}

.contact-location-panel__map,
.contact-location-panel__content {
    position: relative;
    z-index: 1;
}

.contact-location-panel__map {
    position: absolute;
    top: 10px;
    right: 24px;
    z-index: 1;
    width: min(72%, 340px);
    margin: 0;
    opacity: 0.78;
}

.contact-location-panel__map img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    opacity: 0.9;
    mix-blend-mode: screen;
    filter: saturate(0.75) contrast(1.08);
}

.contact-location-panel__pin {
    position: absolute;
    left: 62%;
    top: 75%;
    width: 14px;
    height: 14px;
    border: 3px solid var(--white);
    border-radius: 999px;
    background: var(--msb-red);
    box-shadow: 0 0 0 10px rgba(239, 0, 24, 0.22), 0 14px 24px rgba(0, 0, 0, 0.28);
}

.contact-location-panel__kicker {
    margin: 0 0 7px;
    color: var(--msb-red);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.contact-location-panel h3 {
    max-width: 360px;
    color: var(--white);
    font-size: 19px;
    line-height: 1.08;
    text-transform: uppercase;
}

.contact-location-panel p:not(.contact-location-panel__kicker) {
    max-width: 390px;
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 750;
    line-height: 1.35;
}

.contact-location-panel__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.contact-location-panel__tags span {
    display: inline-flex;
    padding: 5px 7px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.06);
    font-size: 9px;
    font-weight: 900;
}

.contact-location-panel a {
    display: inline-flex;
    width: fit-content;
    margin-top: 11px;
    color: var(--white);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-bottom: 3px solid var(--msb-red);
}

.contact-form label {
    display: grid;
    gap: 10px;
    color: #6b7280;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.form-full {
    grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 2px solid transparent;
    border-radius: 14px;
    padding: 14px 16px;
    color: var(--msb-ink);
    background: var(--white);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.4;
    transition: border-color 260ms ease, box-shadow 260ms ease;
}

.contact-form select {
    min-height: 54px;
    cursor: pointer;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #8a96a3 50%), linear-gradient(135deg, #8a96a3 50%, transparent 50%);
    background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9ca3af;
    opacity: 1;
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 0;
    border-color: var(--msb-red);
    box-shadow: 0 0 0 1px rgba(239, 0, 24, 0.08);
}

.contact-form textarea {
    min-height: 126px;
    resize: vertical;
}

.contact-form button {
    min-height: 56px;
    justify-content: center;
    gap: 12px;
    border-radius: 14px;
    color: var(--white);
    background: var(--msb-dark);
    box-shadow: 0 12px 24px rgba(22, 34, 44, 0.16);
}

.contact-form button:hover {
    background: var(--msb-red);
}

.contact-form button svg {
    width: 16px;
    height: 16px;
}

.hp-field {
    position: absolute;
    left: -10000px;
}

.form-status {
    grid-column: 1 / -1;
    padding: 14px 16px;
    border-radius: var(--radius);
    font-weight: 800;
}

.form-status.is-success {
    color: #0f5132;
    background: #d1e7dd;
}

.form-status.is-error {
    color: #842029;
    background: #f8d7da;
}

.site-footer {
    color: rgba(255, 255, 255, 0.72);
    background: var(--msb-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(220px, 1.2fr) minmax(130px, 0.75fr) minmax(170px, 0.9fr) minmax(240px, 1.15fr) minmax(190px, 1fr);
    gap: 32px;
    padding: 84px 0 66px;
}

.footer-brand h2 {
    max-width: 260px;
    margin: 0 0 28px;
    color: var(--white);
    font-size: 23px;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: 0;
    text-transform: uppercase;
}

.footer-brand h2 span,
.footer-brand h2 strong {
    display: block;
}

.footer-brand h2 strong {
    color: var(--msb-red);
    font-style: italic;
}

.footer-brand p {
    max-width: 260px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.65;
}

.footer-socials {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.footer-socials a,
.footer-socials__disabled {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    border-radius: 8px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    line-height: 0;
    transition: background 300ms ease, transform 300ms ease;
}

.footer-socials__disabled {
    cursor: not-allowed;
    opacity: 0.38;
}

.footer-socials a:hover {
    background: var(--msb-red);
    transform: translateY(-2px);
}

.footer-socials svg,
.footer-socials__disabled svg {
    display: block;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    transition: transform 300ms ease;
}

.footer-socials a:hover svg {
    transform: scale(1.1);
}

.site-footer h3 {
    margin: 0 0 30px;
    color: var(--msb-red);
    font-size: var(--label-size);
    font-weight: 900;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.site-footer a,
.site-footer p {
    display: block;
    margin: 0;
}

.site-footer .footer-socials a,
.site-footer .footer-socials__disabled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-grid > div:not(.footer-brand) > a,
.footer-grid > div:not(.footer-brand) > p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 14px;
    font-weight: 800;
    transition: color 260ms ease, transform 260ms ease;
}

.footer-grid > div:not(.footer-brand) > a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-zone p {
    max-width: 240px;
}

.footer-direct a,
.footer-direct p {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-direct span {
    display: inline-flex;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    color: var(--msb-red);
}

.footer-direct svg {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 38px 0 42px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.36);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.footer-bottom a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.42);
    font-weight: 900;
    transition: color 260ms ease;
}

.footer-bottom a span {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: var(--msb-red);
    transition: border-color 260ms ease, background 260ms ease, color 260ms ease, transform 260ms ease;
}

.footer-bottom a svg {
    width: 14px;
    height: 14px;
}

.footer-bottom a:hover {
    color: var(--msb-red);
}

.footer-bottom a:hover span {
    border-color: var(--msb-red);
    background: var(--msb-red);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-legal-links {
    display: inline-flex;
    align-items: center;
    gap: 18px;
}

.footer-bottom .footer-legal-links a {
    color: rgba(255, 255, 255, 0.42);
}

.footer-bottom .footer-legal-links a:hover {
    color: var(--msb-red);
}

.seo-page {
    background: var(--white);
}

.seo-hero {
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(36, 55, 70, 0.94), rgba(36, 55, 70, 0.82)),
        url("../../images/2.jpg") center / cover;
}

.seo-hero__inner {
    min-height: 520px;
    display: grid;
    align-content: center;
    padding: 92px 0;
}

.seo-hero h1 {
    max-width: 900px;
    font-size: clamp(38px, 5.4vw, 72px);
    line-height: 1.02;
}

.seo-hero p:not(.eyebrow) {
    max-width: 760px;
    margin: 34px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 20px;
    font-weight: 750;
    line-height: 1.55;
}

.seo-content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 58px;
    align-items: start;
}

.seo-article h2,
.seo-text-grid h2,
.seo-zone-section h2 {
    max-width: 900px;
    color: var(--msb-dark);
}

.seo-article p,
.seo-text-grid p {
    color: #4b5563;
    font-size: 18px;
    font-weight: 650;
    line-height: 1.75;
}

.seo-article p strong {
    color: var(--msb-dark);
    font-weight: 900;
}

.seo-signature {
    margin-top: 36px;
    padding-left: 22px;
    border-left: 4px solid var(--msb-red);
    color: var(--msb-dark) !important;
    font-weight: 900 !important;
    line-height: 1.35 !important;
}

.seo-signature span {
    color: #6b7280;
    font-size: 14px;
    font-style: italic;
}

.seo-keywords-box {
    padding: 30px;
    border-radius: 16px;
    background: #f4f6f8;
    box-shadow: 0 18px 36px rgba(22, 34, 44, 0.1);
}

.seo-keywords-box h3 {
    margin-bottom: 24px;
    color: var(--msb-red);
    font-size: 13px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.seo-keywords-box p {
    margin: 12px 0;
    color: var(--msb-dark);
    font-size: 14px;
    font-weight: 900;
    font-style: italic;
}

.seo-text-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px;
}

.seo-text-grid article {
    padding-left: 26px;
    border-left: 4px solid var(--msb-red);
}

.seo-zone-section .section-intro {
    color: #5f6b76;
}

.legal-page {
    background: var(--white);
}

.legal-hero {
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(36, 55, 70, 0.95), rgba(36, 55, 70, 0.84)),
        url("../../images/5.jpg") center / cover;
}

.legal-hero__inner {
    min-height: 390px;
    display: grid;
    align-content: center;
    padding: 82px 0;
}

.legal-hero h1 {
    max-width: 860px;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.02;
}

.legal-hero p:not(.eyebrow) {
    max-width: 760px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 19px;
    font-weight: 750;
    line-height: 1.55;
}

.legal-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.legal-card {
    padding: 30px;
    border: 1px solid rgba(36, 55, 70, 0.08);
    border-radius: 14px;
    background: #f7f8fa;
}

.legal-card--wide {
    grid-column: 1 / -1;
}

.legal-card h2 {
    margin-bottom: 18px;
    color: var(--msb-dark);
    font-size: 24px;
}

.legal-card p {
    margin: 10px 0 0;
    color: #4b5563;
    font-size: 16px;
    font-weight: 650;
    line-height: 1.65;
}

.legal-card strong {
    color: var(--msb-dark);
    font-weight: 900;
}

.legal-card a {
    color: var(--msb-dark);
    font-weight: 900;
    text-decoration: underline;
    text-decoration-color: var(--msb-red);
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

@media (max-width: 1024px) {
    :root {
        --hero-title-size: 35px;
        --section-title-size: 34px;
        --anchor-scroll-offset: 84px;
        --brand-logo-height: 72px;
        --brand-logo-slot-width: 160px;
    }

    .topbar {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .navbar {
        min-height: 80px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        inset: 118px 0 auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 18px 24px 28px;
        background: var(--white);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12);
    }

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

    .nav-links a {
        padding: 16px 0;
        border-bottom: 1px solid var(--msb-line);
    }

    .hero {
        min-height: 0;
        height: 719px;
        padding-top: 143px;
        padding-bottom: 0;
    }

    .hero__content {
        display: block;
        max-width: 760px;
    }

    .hero-certification {
        display: none;
    }

    h1 {
        max-width: 820px;
        font-size: var(--hero-title-size);
    }

    .hero h1 {
        width: 122%;
        transform: scaleX(0.82);
        transform-origin: left center;
    }

    .hero .eyebrow {
        margin-bottom: 34px;
    }

    .lead {
        max-width: 730px;
        margin-top: 53px;
        color: #aeb7c1;
        font-size: 18px;
        font-weight: 600;
        line-height: 1.78;
    }

    .hero .button {
        min-height: 58px;
    }

    .hero .button--primary {
        min-width: 355px;
    }

    .hero .button--ghost {
        min-width: 220px;
    }

    .panel {
        min-height: 310px;
        padding: 48px;
    }

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

@media (max-width: 760px) {
    :root {
        --hero-title-size: 34px;
        --section-title-size: 30px;
        --anchor-scroll-offset: 72px;
    }

    .container {
        width: min(100% - 32px, 1160px);
    }

    .topbar,
    .topbar__phones {
        justify-content: center;
        text-align: center;
    }

    .topbar__email {
        display: none;
    }

    .navbar {
        padding: 12px 16px;
    }

    .brand {
        height: 56px;
    }

    .nav-links {
        inset: 105px 0 auto;
    }

    .hero {
        height: auto;
        min-height: 0;
        padding: 74px 0 88px;
    }

    .hero__content {
        width: min(100% - 32px, 1160px);
        max-width: none;
    }

    .hero__content > * {
        max-width: 100%;
    }

    .hero__copy > * {
        max-width: 100%;
    }

    .hero .eyebrow {
        gap: 10px;
        margin-bottom: 26px;
        font-size: var(--label-size);
        letter-spacing: 0.3em;
        line-height: 1.4;
    }

    .hero h1 {
        width: auto;
        max-width: 100%;
        transform: none;
        font-size: var(--hero-title-size);
        line-height: 1.08;
    }

    .hero-title-line {
        white-space: normal;
    }

    .hero .lead {
        margin-top: 30px;
        font-size: 20px;
        line-height: 1.65;
    }

    .hero .actions {
        display: grid;
        gap: 18px;
        margin-top: 38px;
    }

    .hero .button,
    .hero .button--primary,
    .hero .button--ghost {
        width: 100%;
        min-width: 0;
        min-height: 58px;
        padding-right: 18px;
        padding-left: 18px;
        text-align: center;
    }

    .quick-cards,
    .split,
    .contact-layout,
    .reference-layout,
    .service-grid,
    .sector-grid,
    .partner-grid,
    .footer-grid,
    .contact-form,
    .seo-content-layout,
    .seo-text-grid {
        grid-template-columns: 1fr;
    }

    body {
        line-height: 1.48;
    }

    h1,
    h2,
    h3 {
        line-height: 1.06;
    }

    h2 {
        margin-bottom: 16px;
    }

    .section {
        padding: 56px 0;
    }

    .eyebrow {
        gap: 9px;
        margin-bottom: 18px;
        line-height: 1.22;
    }

    .section-intro,
    .lead,
    .split p,
    .mission-box p,
    .service-card p,
    .sector-card p,
    .reference-preview-card p,
    .clients-quote,
    .partner-grid p,
    .contact-card strong,
    .contact-card span {
        line-height: 1.45;
    }

    .quick-cards,
    .service-grid,
    .sector-grid,
    .partner-grid,
    .contact-layout,
    .reference-layout,
    .contact-form {
        gap: 22px;
    }

    .panel,
    .company-card,
    .service-card,
    .mission-box,
    .clients-box,
    .contact-form {
        padding: 24px;
    }

    .panel h2,
    .mission-box h3,
    .clients-box h3,
    .company-card-heading,
    .service-card h3,
    .sector-card h3 {
        margin-bottom: 14px;
    }

    .check-list li,
    .service-card li {
        margin: 8px 0;
        line-height: 1.32;
    }

    .service-card ul {
        margin-top: 16px;
        padding-top: 16px;
    }

    .reference-list {
        gap: 14px;
        margin-bottom: 0;
    }

    .reference-item {
        min-height: 66px;
        gap: 18px;
        padding: 18px 22px 18px 44px;
        line-height: 1.22;
    }

    .contact-copy h2 {
        max-width: 100%;
        margin-bottom: 26px;
    }

    .contact-layout > *,
    .contact-copy,
    .contact-cards,
    .contact-card,
    .contact-form {
        min-width: 0;
        width: 100%;
    }

    .contact-location-panel {
        height: auto;
        min-height: 340px;
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
    }

    .contact-location-panel__map {
        position: relative;
        top: auto;
        right: auto;
        width: min(86vw, 260px);
        margin: -4px auto 12px;
    }

    .contact-location-panel h3 {
        font-size: 22px;
    }

    .contact-location-panel p:not(.contact-location-panel__kicker) {
        font-size: 14px;
        line-height: 1.42;
    }

    .contact-copy h2 strong {
        white-space: normal;
    }

    .contact-card__body,
    .contact-card__body strong {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .contact-cards {
        gap: 16px;
        max-width: 100%;
    }

    .contact-card {
        min-height: 68px;
        gap: 14px;
        padding: 12px 0;
    }

    .contact-card__icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        border-radius: 12px;
    }

    .contact-card__icon svg {
        width: 19px;
        height: 19px;
    }

    .contact-card__body {
        gap: 5px;
    }

    .contact-card__body strong,
    .contact-card--phone strong {
        font-size: 16px;
        line-height: 1.16;
    }

    .contact-card--email strong {
        max-width: 100%;
        font-size: clamp(13px, 3.7vw, 15px);
        line-height: 1.08;
        white-space: nowrap;
        overflow-wrap: normal;
        word-break: normal;
    }

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

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        min-height: 50px;
        padding: 12px 14px;
    }

    .footer-grid {
        gap: 34px;
        padding: 46px 0 34px;
    }

    .seo-hero__inner {
        min-height: 0;
        padding: 74px 0;
    }

    .legal-hero__inner {
        min-height: 0;
        padding: 72px 0;
    }

    .seo-hero h1 {
        font-size: 34px;
        line-height: 1.05;
    }

    .legal-hero h1 {
        font-size: 34px;
        line-height: 1.05;
    }

    .seo-hero p:not(.eyebrow),
    .legal-hero p:not(.eyebrow),
    .seo-article p,
    .seo-text-grid p,
    .legal-card p {
        font-size: 16px;
        line-height: 1.5;
    }

    .seo-content-layout,
    .seo-text-grid,
    .legal-layout {
        gap: 24px;
    }

    .seo-keywords-box {
        padding: 24px;
    }

    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-card {
        padding: 24px;
    }

    .legal-card h2 {
        font-size: 22px;
    }

    .footer-brand h2 {
        margin-bottom: 18px;
        line-height: 1.05;
    }

    .footer-brand p {
        line-height: 1.42;
    }

    .footer-socials {
        margin-top: 20px;
    }

    .site-footer h3 {
        margin-bottom: 16px;
        line-height: 1.2;
    }

    .footer-grid > div:not(.footer-brand) > a,
    .footer-grid > div:not(.footer-brand) > p {
        margin-bottom: 9px;
        line-height: 1.35;
    }

    .footer-direct a,
    .footer-direct p {
        gap: 10px;
    }

    .footer-bottom {
        display: grid;
        gap: 14px;
        padding: 24px 0 28px;
        line-height: 1.35;
    }

    .clients-box {
        min-height: 300px;
    }

    .reference-preview {
        min-height: 460px;
    }

    .reference-preview-card__overlay {
        padding: 28px;
        gap: 14px;
    }

    .reference-preview-card h3 {
        font-size: 24px;
    }

    .reference-preview-card p {
        font-size: 15px;
        line-height: 1.5;
    }

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

    .client-logo-strip {
        width: 100%;
        min-height: 104px;
        margin-top: 20px;
        padding: 20px 0;
    }

    .client-logo-strip__item {
        flex-basis: 132px;
        min-height: 70px;
        padding: 10px 16px;
    }

    .company-section {
        overflow: visible;
    }

    .company-layout {
        align-items: stretch;
        gap: 34px;
    }

    .company-copy h2 {
        max-width: 100%;
        font-size: var(--section-title-size);
        line-height: var(--section-title-line-height);
    }

    .company-copy h2 span,
    .company-copy h2 strong {
        white-space: normal;
    }

    .company-copy > p:not(.eyebrow) {
        max-width: 100%;
        font-size: 20px;
        line-height: 1.65;
    }

    .company-expertise h3 {
        font-size: 10px;
        line-height: 1.5;
    }

    .company-point {
        align-items: flex-start;
        gap: 14px;
        margin: 18px 0;
    }

    .company-check {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
    }

    .company-point span:last-child {
        min-width: 0;
        font-size: 18px;
        line-height: 1.45;
        overflow-wrap: break-word;
    }

    .company-card {
        width: 100%;
        padding: 28px;
    }

    .company-card-heading {
        align-items: center;
        gap: 14px;
    }

    .company-card h3 {
        min-width: 0;
        font-size: 24px;
        line-height: 1.15;
    }

    .company-card-label {
        line-height: 1.45;
    }

    .company-card li {
        font-size: 16px;
        line-height: 1.45;
    }

    .company-card--vision p {
        max-width: 100%;
        font-size: 22px;
        line-height: 1.55;
    }

    .company-card-watermark {
        right: -24px;
        width: 128px;
        height: 128px;
    }

    .services-heading {
        display: block;
        margin-bottom: 34px;
    }

    .sectors-heading {
        display: block;
        margin-bottom: 34px;
    }

    .services-objective {
        margin-top: 22px;
    }

    .sectors-intro {
        margin-top: 22px;
    }

    .sector-tags {
        grid-template-columns: 1fr;
    }

    .sector-card,
    .sector-card img {
        height: 330px;
        min-height: 330px;
    }

    .sector-card p {
        font-size: 14px;
        line-height: 1.42;
    }

    .sector-card.is-visible p {
        max-height: 140px;
        margin-top: 14px;
    }

    .sector-card.is-visible .sector-card__bar {
        margin-top: 18px;
    }

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

    .mission-box,
    .clients-box,
    .contact-form {
        padding: 24px;
    }
}

@media (max-width: 520px) {
    :root {
        --hero-title-size: 31px;
        --section-title-size: 28px;
        --anchor-scroll-offset: 64px;
    }

    .company-layout {
        grid-template-columns: 1fr;
    }
}
