:root {
    --color-navy: #06356f;
    --color-navy-dark: #052954;
    --color-blue: #0f74d8;
    --color-sky: #0ea5e9;
    --color-teal: #159c8a;
    --color-ink: #1f2937;
    --color-muted: #65748b;
    --color-line: #e5edf6;
    --color-soft: #f5f8fc;
    --color-white: #ffffff;
    --shadow-menu: 0 22px 50px rgba(10, 39, 79, 0.14);
    --shadow-card: 0 16px 35px rgba(7, 44, 89, 0.1);
    --radius: 8px;
    --container: 1200px;
    --font-main: "Montserrat", "Segoe UI", system-ui, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: clip;
    color: var(--color-ink);
    background: #f8fafc;
    font-family: var(--font-main);
    font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
    line-height: 1.5;
}

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

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

button {
    border: 0;
    cursor: pointer;
}

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

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

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

.skip-link:focus {
    z-index: 1000;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    clip: auto;
    color: var(--color-white);
    background: var(--color-navy);
    border-radius: var(--radius);
}

.topbar {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-line);
    color: var(--color-muted);
    font-size: 13px;
}

.topbar__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.topbar a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 160ms ease;
}

.topbar a:hover {
    color: var(--color-blue);
}

.topbar__contact,
.topbar__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.topbar__contact span {
    width: 1px;
    height: 14px;
    background: #d7e0ea;
}

.topbar__actions a:last-child {
    color: var(--color-navy);
    font-weight: 600;
}

.topbar-panel {
    position: relative;
}

.topbar-panel__button {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    color: var(--color-navy);
    background: transparent;
    font-size: 13px;
    font-weight: 600;
}

.topbar-panel__button:hover,
.topbar-panel__button:focus-visible {
    color: var(--color-blue);
    outline: none;
}

.topbar-panel__chevron {
    width: 6px;
    height: 6px;
    border-right: 1.7px solid currentColor;
    border-bottom: 1.7px solid currentColor;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: transform 180ms ease;
}

.topbar-panel.is-open .topbar-panel__chevron {
    transform: rotate(225deg);
    margin-top: 3px;
}

.topbar-panel__menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 150;
    width: 335px;
    padding: 0;
    background: #ffffff;
    border: 1px solid #cbdcf0;
    border-radius: 10px;
    box-shadow: 0 14px 34px rgba(6, 53, 111, 0.12);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transform-origin: top right;
    transition: opacity 170ms ease, transform 170ms ease, visibility 170ms ease;
}

.topbar-panel__menu::before {
    content: none;
}

.topbar-panel.is-open .topbar-panel__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.panel-link {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 11px;
    align-items: center;
    min-height: 72px;
    margin: 10px 10px 0;
    padding: 10px;
    width: calc(100% - 20px);
    background: #ffffff;
    border: 1px solid #e2ebf6;
    border-radius: 12px;
    color: #243149;
    transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.panel-link + .panel-link {
    margin-top: 8px;
}

.panel-link:hover,
.panel-link:focus-visible {
    background: #f7fbff;
    border-color: #bcd4ef;
    transform: translateX(2px);
    outline: none;
}

.panel-link__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #eef6ff;
    border: 1px solid #cbdcf0;
    border-radius: 10px;
}

.panel-link__mark img {
    width: 20px;
    height: 20px;
}

.panel-link__body,
.panel-link strong,
.panel-link small {
    display: block;
}

.panel-link strong {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.15;
}

.panel-link small {
    margin-top: 3px;
    color: #6d7e97;
    font-size: 11px;
    line-height: 1.2;
}

.panel-menu__foot {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 10px 14px;
    color: #64748b;
    background: #f7fafc;
    border-top: 1px solid #e2ebf6;
    font-size: 11px;
    font-weight: 500;
}

.panel-menu__foot span {
    width: 7px;
    height: 7px;
    background: #159c8a;
    border-radius: 999px;
}

.topbar__icon {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid var(--color-line);
    box-shadow: 0 5px 16px rgba(15, 23, 42, 0.04);
    backdrop-filter: blur(12px);
}

.nav-shell {
    position: relative;
    min-height: 68px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.brand {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
}

.brand img {
    width: 190px;
    height: 54px;
    object-fit: contain;
}

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    color: var(--color-navy);
    background: var(--color-soft);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-button span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-account-bar {
    display: none;
}

.mobile-menu-button.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button.is-active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
}

.nav-list {
    margin: 0;
    padding: 0 10px;
    list-style: none;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #d9e2ee;
    border-radius: 7px;
    box-shadow: none;
}

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

.nav-item--mega {
    position: static;
}

.nav-link {
    position: relative;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 18px;
    color: #111827;
    background: transparent;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    white-space: nowrap;
    transition: color 160ms ease, background 160ms ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -13px;
    width: 16px;
    height: 16px;
    background: #edf3f8;
    border-left: 1px solid #bdd5f0;
    border-top: 1px solid #bdd5f0;
    opacity: 0;
    transform: translateX(-50%) rotate(45deg) translateY(4px);
    transition: opacity 160ms ease, transform 160ms ease;
    z-index: 121;
}

.nav-item.is-open > .nav-link::after {
    opacity: 1;
    transform: translateX(-50%) rotate(45deg) translateY(0);
}

.nav-link__icon {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-item.is-open > .nav-link,
.nav-item:focus-within > .nav-link {
    color: var(--color-navy);
    background: transparent;
    outline: none;
}

.nav-link--active {
    color: var(--color-navy);
}

.chevron {
    width: 7px;
    height: 7px;
    border-right: 1.8px solid currentColor;
    border-bottom: 1.8px solid currentColor;
    transform: rotate(45deg);
    margin-top: -4px;
    transition: transform 180ms ease;
}

.nav-item:hover .chevron,
.nav-item.is-open .chevron,
.nav-item:focus-within .chevron {
    transform: rotate(225deg);
    margin-top: 3px;
}

.dropdown-menu,
.mega-menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transform-origin: top center;
    clip-path: inset(0 0 100% 0);
    transition: opacity 210ms ease, transform 210ms ease, clip-path 240ms ease, visibility 210ms ease;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    width: 100%;
    min-height: 360px;
    display: grid;
    grid-template-columns: 285px repeat(3, minmax(0, 1fr));
    grid-template-rows: 128px minmax(96px, auto) minmax(96px, auto) auto;
    gap: 12px 16px;
    padding: 30px 28px 24px;
    background: #edf3f8;
    border: 1px solid #bdd5f0;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 14px 34px rgba(6, 53, 111, 0.11);
    overflow: hidden;
}

.dropdown-menu--software {
    --menu-accent: #06356f;
    --menu-soft: #eef5fd;
    --menu-border: #cbdcf0;
}

.dropdown-menu--consulting {
    --menu-accent: #6d5bd0;
    --menu-soft: #f3f1ff;
    --menu-border: #d8d0ff;
    left: auto;
    right: 0;
}

.dropdown-menu::before,
.mega-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -12px;
    height: 12px;
}

.dropdown-menu::after,
.mega-menu::after {
    position: absolute;
    left: 50%;
    top: 30px;
    z-index: 0;
    color: rgba(15, 116, 216, 0.035);
    -webkit-text-stroke: 1.15px rgba(15, 116, 216, 0.34);
    font-size: clamp(74px, 8vw, 132px);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: 0;
    white-space: nowrap;
    transform: translateX(-50%);
    pointer-events: none;
}

.dropdown-menu--software::after {
    content: "YAZILIM";
}

.dropdown-menu--consulting::after {
    content: "DANISMANLIK";
}

.mega-menu::after {
    content: "KURUMSAL";
}

.dropdown-menu__head {
    position: relative;
    z-index: 1;
    grid-column: 1;
    grid-row: 1 / span 3;
    min-height: 270px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin: 0;
    padding: 18px 18px 20px 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    overflow: hidden;
}

.dropdown-menu__head::before {
    content: "";
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    width: 74px;
    height: 3px;
    background: var(--menu-accent);
    border-radius: 0;
}

.dropdown-menu__head::after {
    content: none;
}

.dropdown-menu__head span {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 8px;
    color: var(--menu-accent);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.dropdown-menu__head strong {
    position: relative;
    z-index: 1;
    display: block;
    color: #172033;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.24;
}

.dropdown-card {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 14px;
    align-items: center;
    gap: 10px;
    min-height: 96px;
    padding: 13px 11px;
    color: var(--color-muted);
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    overflow: hidden;
    transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.dropdown-menu > .dropdown-card:nth-of-type(1) {
    grid-column: 2;
    grid-row: 2;
}

.dropdown-menu > .dropdown-card:nth-of-type(2) {
    grid-column: 3;
    grid-row: 2;
}

.dropdown-menu > .dropdown-card:nth-of-type(3) {
    grid-column: 4;
    grid-row: 2;
}

.dropdown-menu > .dropdown-card:nth-of-type(4) {
    grid-column: 2;
    grid-row: 3;
}

.dropdown-menu > .dropdown-card:nth-of-type(5) {
    grid-column: 3;
    grid-row: 3;
}

.dropdown-card + .dropdown-card {
    margin-top: 0;
}

.dropdown-card__icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--menu-accent);
    background: #f6fbff;
    border: 1px solid var(--menu-border);
    border-radius: 10px;
}

.dropdown-card__icon img {
    width: 22px;
    height: 22px;
}

.dropdown-card__text {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 3px;
    min-width: 0;
}

.dropdown-card__text strong {
    color: #243149;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
}

.dropdown-card__text small {
    color: #6c7d96;
    font-size: 11px;
    line-height: 1.35;
}

.dropdown-card__arrow {
    position: relative;
    z-index: 1;
    width: 8px;
    height: 8px;
    border-right: 2px solid #9bacbf;
    border-bottom: 2px solid #9bacbf;
    transform: rotate(-45deg);
    transition: border-color 160ms ease, transform 160ms ease;
}

.dropdown-card:hover,
.dropdown-card:focus-visible {
    color: var(--color-navy);
    background: #f8fbff;
    border-color: var(--menu-border);
    outline: none;
    transform: translateX(2px);
}

.dropdown-card:hover .dropdown-card__icon,
.dropdown-card:focus-visible .dropdown-card__icon {
    background: var(--menu-soft);
}

.dropdown-card:hover .dropdown-card__arrow,
.dropdown-card:focus-visible .dropdown-card__arrow {
    border-color: var(--menu-accent);
    transform: translateX(2px) rotate(-45deg);
}

.dropdown-menu__foot {
    position: relative;
    z-index: 1;
    grid-column: 2 / -1;
    grid-row: 4;
    margin: 4px 0 0;
    padding: 12px 14px;
    color: var(--color-navy);
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid #d9e5f2;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 12px);
    width: 100%;
    min-height: 360px;
    overflow: hidden;
    background: #edf3f8;
    border: 1px solid #bdd5f0;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 14px 34px rgba(6, 53, 111, 0.11);
}

.has-menu.is-open > .dropdown-menu,
.has-menu.is-open > .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
}

.mega-menu__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 270px minmax(340px, max-content) minmax(230px, 300px);
    justify-content: center;
    align-content: start;
    gap: 34px;
    min-height: 354px;
    padding: 148px 28px 34px;
}

.mega-menu__grid::before {
    content: none;
}

.mega-menu__intro {
    position: relative;
    z-index: 1;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 18px 20px 0;
}

.mega-menu__intro::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 74px;
    height: 3px;
    background: var(--color-navy);
    border-radius: 999px;
}

.mega-menu__intro span {
    display: block;
    margin-bottom: 8px;
    color: var(--color-navy);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.mega-menu__intro strong {
    display: block;
    color: #172033;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.24;
}

.mega-menu__intro p {
    max-width: 250px;
    margin: 10px 0 0;
    color: #657892;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.48;
}

.mega-column--corporate {
    justify-self: center;
    width: fit-content;
}

.mega-column h2 {
    position: relative;
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 12px;
    padding-bottom: 9px;
    color: var(--color-navy);
    border-bottom: 1px solid var(--color-line);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

.mega-column h2::after {
    content: "";
    display: block;
    width: 128px;
    height: 2px;
    background: var(--color-navy);
    position: absolute;
    left: 0;
    bottom: -1px;
}

.mega-column--corporate h2 {
    justify-content: center;
}

.mega-column--corporate h2::after {
    width: 100%;
}

.mega-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mega-links--split {
    display: grid;
    grid-template-columns: max-content max-content;
    gap: 8px 46px;
}

.mega-column li + li {
    margin-top: 8px;
}

.mega-links--split li + li {
    margin-top: 0;
}

.mega-column a {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    min-height: 17px;
    color: #657892;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.28;
    transition: color 160ms ease, transform 160ms ease;
}

.mega-column a::before {
    content: "";
    flex: 0 0 auto;
    width: 6px;
    height: 6px;
    margin-top: 5px;
    border-right: 1.5px solid #8fa1ba;
    border-bottom: 1.5px solid #8fa1ba;
    transform: rotate(-45deg);
}

.mega-column a:hover,
.mega-column a:focus-visible {
    color: var(--color-navy);
    outline: none;
    transform: translateX(2px);
}

.mega-menu__footer {
    height: 6px;
    padding: 0;
    background: var(--color-navy);
}

.hero {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-line);
}

.hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 46px;
    align-items: center;
    min-height: 560px;
    padding-block: 70px;
}

.hero__copy {
    max-width: 690px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-bottom: 16px;
    padding: 0 12px;
    color: var(--color-navy);
    background: #eaf6fd;
    border: 1px solid #cfe8f8;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0 0 18px;
    color: #0f172a;
    font-size: 50px;
    font-weight: 600;
    line-height: 1.1;
}

.hero p {
    margin: 0;
    max-width: 620px;
    color: var(--color-muted);
    font-size: 18px;
}

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

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    outline: none;
}

.button--primary {
    color: var(--color-white);
    background: var(--color-blue);
    box-shadow: 0 10px 18px rgba(15, 116, 216, 0.18);
}

.button--primary:hover,
.button--primary:focus-visible {
    background: var(--color-navy);
}

.button--secondary {
    color: var(--color-navy);
    background: var(--color-white);
    border: 1px solid var(--color-line);
}

.solution-panel {
    display: grid;
    gap: 12px;
}

.solution-panel article {
    padding: 20px;
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.solution-panel span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 28px;
    margin-bottom: 12px;
    color: var(--color-white);
    background: var(--color-teal);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.solution-panel h2 {
    margin: 0 0 6px;
    color: var(--color-navy);
    font-size: 18px;
    font-weight: 600;
}

.solution-panel p {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
}

@media (max-width: 1120px) {
    .nav-shell {
        gap: 16px;
    }

    .brand img {
        width: 165px;
        height: 50px;
    }

    .nav-link {
        padding-inline: 10px;
        font-size: 14px;
    }
}

@media (max-width: 960px) {
    .topbar {
        display: none;
    }

    .nav-shell {
        min-height: 64px;
        flex-wrap: wrap;
    }

    .mobile-menu-button {
        display: inline-flex;
    }

    .main-nav {
        display: none;
        flex: 0 0 100%;
        padding-bottom: 14px;
    }

    .main-nav.is-open {
        display: block;
    }

    .mobile-account-bar {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px;
        margin-bottom: 12px;
        padding-bottom: 12px;
        border-bottom: 1px solid #dbe6ef;
    }

    .mobile-account-link,
    .mobile-support-link {
        min-height: 58px;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 9px 12px;
        color: var(--color-navy);
        background: #fff;
        border: 1px solid #cfddea;
        border-radius: 6px;
    }

    .mobile-account-link > img,
    .mobile-support-link > img {
        flex: 0 0 auto;
        filter: none;
    }

    .mobile-account-link > span {
        min-width: 0;
        display: grid;
        gap: 3px;
    }

    .mobile-account-link strong {
        overflow: hidden;
        font-size: 12px;
        font-weight: 600;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mobile-account-link small {
        color: #6c8091;
        font-size: 9px;
    }

    .mobile-account-link b {
        margin-left: auto;
        color: var(--color-blue);
        font-size: 16px;
        font-weight: 500;
    }

    .mobile-support-link {
        min-width: 78px;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        color: #24415d;
        font-size: 9px;
        font-weight: 600;
    }

    .nav-list {
        display: grid;
        gap: 6px;
    }

    .nav-item,
    .nav-item--mega {
        position: relative;
        display: block;
    }

    .nav-link {
        width: 100%;
        display: grid;
        grid-template-columns: 22px minmax(0, 1fr) 22px;
        justify-content: stretch;
        justify-items: center;
        min-height: 46px;
        gap: 4px;
        padding-inline: 10px;
        background: #ffffff;
        border: 1px solid #dbe5ed;
    }

    .nav-link__icon,
    .nav-link .chevron {
        justify-self: center;
    }

    .nav-link::after {
        content: none;
    }

    .dropdown-menu,
    .mega-menu {
        position: static;
        display: block;
        width: 100%;
        min-height: 0;
        margin-top: 6px;
        box-shadow: none;
        border-radius: var(--radius);
        transform: none;
        clip-path: none;
        max-height: 0;
        overflow: hidden;
        padding-top: 0;
        padding-bottom: 0;
        border-width: 0;
    }

    .dropdown-menu::after,
    .mega-menu::after {
        content: none;
    }

    .dropdown-menu__head {
        display: block;
        grid-column: auto;
        grid-row: auto;
        min-height: 0;
        margin: 0 0 8px;
        padding: 14px 16px 14px;
        background: var(--menu-soft);
        border: 1px solid var(--menu-border);
        border-radius: var(--radius);
    }

    .dropdown-menu__head::before {
        top: 0;
        bottom: 0;
        width: 5px;
        height: auto;
    }

    .dropdown-card {
        display: grid;
        grid-template-columns: 46px minmax(0, 1fr) 18px;
        min-height: 76px;
    }

    .dropdown-card + .dropdown-card {
        margin-top: 6px;
    }

    .dropdown-menu__foot {
        margin-top: 8px;
    }

    .has-menu.is-open > .dropdown-menu,
    .has-menu.is-open > .mega-menu {
        max-height: 1200px;
        padding-top: 8px;
        padding-bottom: 8px;
        border-width: 1px;
    }

    .mega-menu__grid {
        grid-template-columns: 1fr;
        min-height: 0;
        gap: 16px;
        padding: 14px;
    }

    .mega-menu__intro {
        display: none;
    }

    .mega-menu__intro::before {
        top: 0;
        bottom: 0;
        width: 5px;
        height: auto;
        border-radius: 999px 0 0 999px;
    }

    .mega-menu__footer {
        flex-wrap: wrap;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-block: 46px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .brand img {
        width: 150px;
        height: 46px;
    }

    .mega-menu__grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 13px 14px 15px;
    }

    .mega-links--split {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 18px;
    }

    .mega-column li + li {
        margin-top: 9px;
    }

    .mega-links--split li + li {
        margin-top: 0;
    }

    .hero h1 {
        font-size: 31px;
    }

    .hero__actions,
    .button {
        width: 100%;
    }

    .solution-panel article {
        padding: 16px;
    }
}

/* Homepage */
.section {
    padding-block: 104px;
}

.hero {
    position: relative;
    min-height: min(760px, calc(100vh - 98px));
    display: flex;
    align-items: stretch;
    overflow: hidden;
    color: var(--color-white);
    background: #071c35;
    border-bottom: 0;
}

.hero__image,
.hero__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__image {
    object-fit: cover;
    object-position: center;
    animation: hero-image-in 1100ms cubic-bezier(.2, .7, .2, 1) both;
}

.hero__shade {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(4, 23, 46, .96) 0%, rgba(4, 23, 46, .86) 35%, rgba(4, 23, 46, .38) 64%, rgba(4, 23, 46, .08) 100%),
        linear-gradient(0deg, rgba(3, 20, 40, .56) 0%, transparent 44%);
}

.hero__inner {
    position: relative;
    z-index: 2;
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
    min-height: 640px;
    display: flex;
    align-items: center;
    padding-block: 84px 112px;
}

.hero__copy {
    max-width: 760px;
    animation: hero-copy-in 760ms 140ms cubic-bezier(.2, .7, .2, 1) both;
}

.eyebrow {
    min-height: 32px;
    margin-bottom: 22px;
    padding-inline: 13px;
    color: #d8edff;
    background: rgba(12, 101, 182, .2);
    border: 1px solid rgba(152, 206, 255, .4);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 760px;
    margin: 0 0 24px;
    color: #ffffff;
    font-size: clamp(44px, 5.1vw, 72px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: 0;
}

.hero h1 span {
    color: #7fc8ff;
}

.hero p {
    max-width: 660px;
    margin: 0;
    color: rgba(238, 246, 255, .78);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
}

.hero__actions {
    gap: 12px;
    margin-top: 34px;
}

.button {
    min-height: 50px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
}

.button--primary {
    background: #0879de;
    box-shadow: 0 12px 28px rgba(0, 99, 196, .28);
}

.button--ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .34);
}

.button--ghost:hover,
.button--ghost:focus-visible {
    background: rgba(255, 255, 255, .12);
}

.hero__proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin-top: 34px;
    color: rgba(239, 247, 255, .72);
    font-size: 11px;
    font-weight: 500;
}

.hero__proof span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero__proof span::before {
    content: "";
    width: 7px;
    height: 7px;
    background: #21b8a6;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(33, 184, 166, .14);
}

.hero__scroll {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .65);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.hero__scroll span {
    position: relative;
    width: 1px;
    height: 32px;
    overflow: hidden;
    background: rgba(255, 255, 255, .25);
}

.hero__scroll span::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffffff;
    animation: scroll-line 1700ms ease-in-out infinite;
}

.capability-strip {
    color: #d7e7f7;
    background: #061d38;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.capability-strip__inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.capability-strip span {
    position: relative;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
}

.capability-strip span:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -34px;
    width: 4px;
    height: 4px;
    background: #1ea998;
    border-radius: 50%;
}

.services {
    background: #ffffff;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
    align-items: end;
    gap: 76px;
    margin-bottom: 54px;
}

.section-kicker {
    display: block;
    margin-bottom: 14px;
    color: #0874d1;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.section-heading h2,
.approach__intro h2,
.contact-cta h2 {
    margin: 0;
    color: #0b2441;
    font-size: clamp(32px, 3.8vw, 52px);
    font-weight: 500;
    line-height: 1.14;
    letter-spacing: 0;
}

.section-heading > p,
.approach__intro > p {
    margin: 0;
    color: #61738a;
    font-size: 14px;
    line-height: 1.75;
}

.service-list {
    border-top: 1px solid #dce6f1;
}

.service-item {
    display: grid;
    grid-template-columns: 52px 56px minmax(0, 1fr) max-content;
    align-items: center;
    gap: 22px;
    min-height: 154px;
    padding: 24px 10px;
    border-bottom: 1px solid #dce6f1;
    transition: background 180ms ease, padding 180ms ease;
}

.service-item:hover {
    padding-inline: 22px;
    background: #f5f9fd;
}

.service-item__number {
    color: #8aa0b8;
    font-size: 11px;
    font-weight: 500;
}

.service-item__icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #edf6ff;
    border: 1px solid #cce2f7;
    border-radius: 7px;
}

.service-item h3 {
    margin: 0 0 7px;
    color: #102a49;
    font-size: 19px;
    font-weight: 600;
}

.service-item p {
    max-width: 680px;
    margin: 0;
    color: #687b92;
    font-size: 13px;
    line-height: 1.6;
}

.service-item > a,
.product-card__body > a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #075fae;
    font-size: 12px;
    font-weight: 600;
}

.service-item > a span,
.product-card__body > a span {
    font-size: 17px;
    transition: transform 160ms ease;
}

.service-item > a:hover span,
.product-card__body > a:hover span {
    transform: translateX(4px);
}

.products {
    color: #ffffff;
    background: #071f3a;
}

.section-heading--light h2 {
    color: #ffffff;
}

.section-heading--light > p {
    color: #a9bbcf;
}

.section-heading--light .section-kicker {
    color: #65b9ff;
}

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

.product-card {
    min-width: 0;
    overflow: hidden;
    background: #ffffff;
    border-radius: 7px;
    box-shadow: 0 22px 54px rgba(0, 8, 20, .24);
}

.product-card > img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 600ms cubic-bezier(.2, .7, .2, 1);
}

.product-card:hover > img {
    transform: scale(1.035);
}

.product-card__body {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    padding: 27px 28px 25px;
}

.product-card__body > span {
    color: #138b7c;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-card h3 {
    margin: 10px 0 12px;
    color: #0d2948;
    font-size: 23px;
    font-weight: 600;
}

.product-card p {
    margin: 0 0 24px;
    color: #64778f;
    font-size: 13px;
    line-height: 1.65;
}

.product-card__body > a {
    margin-top: auto;
}

.approach {
    background: #edf3f8;
}

.approach__layout {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 90px;
    align-items: start;
}

.approach__intro {
    position: sticky;
    top: 120px;
}

.approach__intro > p {
    max-width: 460px;
    margin-top: 24px;
}

.process-list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid #cbd9e7;
}

.process-list li {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 22px;
    padding: 28px 4px;
    border-bottom: 1px solid #cbd9e7;
}

.process-list li > span {
    color: #0874d1;
    font-size: 12px;
    font-weight: 600;
}

.process-list h3 {
    margin: 0 0 7px;
    color: #102c4c;
    font-size: 17px;
    font-weight: 600;
}

.process-list p {
    margin: 0;
    color: #667a91;
    font-size: 13px;
    line-height: 1.6;
}

.contact-cta {
    padding-block: 82px;
    color: #ffffff;
    background: #0874d1;
}

.contact-cta__inner {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
    align-items: center;
    gap: 52px;
}

.contact-cta .section-kicker {
    color: #cce9ff;
}

.contact-cta h2 {
    color: #ffffff;
}

.contact-cta p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
}

.contact-cta__actions {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.contact-option {
    min-width: 0;
    min-height: 76px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 12px 13px;
    color: #0c477c;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 6px;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.contact-option:hover,
.contact-option:focus-visible {
    outline: none;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(4, 42, 83, .18);
}

.contact-option > img {
    width: 20px;
    height: 20px;
    margin-inline: auto;
}

.contact-option > span {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.contact-option small {
    color: #71859b;
    font-size: 9px;
    font-weight: 500;
    text-transform: uppercase;
}

.contact-option strong {
    overflow-wrap: anywhere;
    color: #0a4f8e;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.35;
}

.site-footer {
    color: #8fa4bb;
    background: #04172d;
}

.site-footer__inner {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
    min-height: 110px;
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr) max-content;
    align-items: center;
    gap: 28px;
}

.site-footer__brand {
    display: inline-flex;
    align-items: baseline;
    width: fit-content;
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
}

.site-footer__brand span {
    color: #ffffff;
    font-size: inherit;
    font-weight: 600;
    text-align: left;
}

.site-footer__brand strong {
    color: #38a3ff;
    font-weight: 600;
}

.site-footer__inner > p,
.site-footer__inner > span {
    margin: 0;
    font-size: 11px;
}

.site-footer__inner > span {
    text-align: right;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 620ms ease, transform 620ms cubic-bezier(.2, .7, .2, 1);
}

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

@keyframes hero-copy-in {
    from { opacity: 0; transform: translateY(26px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-image-in {
    from { opacity: .55; transform: scale(1.035); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes scroll-line {
    0% { transform: translateY(-100%); }
    55%, 100% { transform: translateY(100%); }
}

@media (max-width: 960px) {
    .section {
        padding-block: 78px;
    }

    .hero {
        min-height: 680px;
    }

    .hero__image {
        object-position: 64% center;
    }

    .hero__shade {
        background: linear-gradient(90deg, rgba(4, 23, 46, .96) 0%, rgba(4, 23, 46, .84) 58%, rgba(4, 23, 46, .38) 100%);
    }

    .hero__inner {
        min-height: 680px;
        padding-block: 70px 100px;
    }

    .hero__copy {
        max-width: 660px;
    }

    .capability-strip__inner {
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .capability-strip span:not(:last-child)::after {
        right: -14px;
    }

    .section-heading,
    .approach__layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .section-heading > p {
        max-width: 620px;
    }

    .service-item {
        grid-template-columns: 42px 52px minmax(0, 1fr);
    }

    .service-item > a {
        grid-column: 3;
    }

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

    .product-card:last-child {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .product-card:last-child > img {
        height: 100%;
        aspect-ratio: auto;
    }

    .approach__intro {
        position: static;
    }

    .contact-cta__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .site-footer__inner {
        grid-template-columns: 180px 1fr;
        padding-block: 24px;
    }

    .site-footer__inner > span {
        grid-column: 1 / -1;
        text-align: left;
    }
}

@media (max-width: 640px) {
    .section {
        padding-block: 62px;
    }

    .hero {
        min-height: 650px;
    }

    .hero__image {
        object-position: 69% center;
    }

    .hero__shade {
        background: linear-gradient(90deg, rgba(4, 23, 46, .96) 0%, rgba(4, 23, 46, .86) 72%, rgba(4, 23, 46, .58) 100%);
    }

    .hero__inner {
        width: min(100% - 28px, var(--container));
        min-height: 650px;
        align-items: flex-end;
        padding-block: 76px 90px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 14px;
        line-height: 1.65;
    }

    .hero__actions {
        width: 100%;
    }

    .hero__proof {
        display: none;
    }

    .hero__scroll {
        display: none;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2,
    .approach__intro h2,
    .contact-cta h2 {
        font-size: 31px;
    }

    .service-item,
    .service-item:hover {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 14px;
        padding: 24px 4px;
    }

    .service-item__number {
        display: none;
    }

    .service-item > div {
        grid-column: 2;
    }

    .service-item > a {
        grid-column: 2;
    }

    .service-item__icon {
        grid-row: 1 / span 2;
        width: 42px;
        height: 42px;
        align-self: start;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card:last-child {
        grid-column: auto;
        display: block;
    }

    .product-card:last-child > img {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .product-card__body {
        min-height: 230px;
        padding: 24px;
    }

    .process-list li {
        grid-template-columns: 38px 1fr;
        gap: 12px;
    }

    .contact-cta__actions {
        grid-template-columns: 1fr;
    }

    .contact-option {
        min-height: 68px;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 14px;
        padding-block: 30px;
    }

    .site-footer span {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* NeriaTEK signature footer */
.site-footer {
    overflow: hidden;
    color: #a0a0a0;
    background: #080808;
    border-top: 0;
}

.footer-grid {
    grid-template-columns: minmax(300px, 1.45fr) minmax(130px, .62fr) minmax(150px, .72fr) minmax(250px, 1fr);
    gap: 74px;
    padding-block: 92px 78px;
}

.footer-brand {
    max-width: 410px;
}

.footer-brand__logo {
    width: 250px;
    height: 78px;
    opacity: .96;
    filter: invert(1) grayscale(1) contrast(1.16);
    mix-blend-mode: screen;
}

.footer-brand > p {
    max-width: 390px;
    margin: 22px 0 28px;
    color: #9c9c9c;
    font-size: 13px;
    line-height: 1.75;
}

.footer-brand__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 9px;
    color: #f4f4f4;
    border-bottom: 1px solid #168de0;
    font-size: 12px;
    font-weight: 600;
}

.footer-brand__cta span {
    color: #54b6fa;
    font-size: 17px;
    transition: transform 160ms ease;
}

.footer-brand__cta:hover span,
.footer-brand__cta:focus-visible span {
    transform: translateX(4px);
}

.footer-brand__cta:focus-visible {
    outline: 2px solid #168de0;
    outline-offset: 5px;
}

.footer-column {
    gap: 15px;
}

.footer-column h2 {
    margin: 0 0 10px;
    padding: 0;
    color: #737373;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-column h2::after {
    content: none;
}

.footer-column a,
.footer-column button {
    color: #e7e7e7;
    font-size: 13px;
    line-height: 1.45;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-column button:hover,
.footer-column button:focus-visible {
    color: #55b8ff;
}

.footer-contact {
    min-width: 0;
}

.footer-contact__link {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
}

.footer-contact__link img,
.footer-socials img {
    width: 16px;
    height: 16px;
    opacity: .75;
    filter: grayscale(1) brightness(0) invert(1);
}

.footer-contact__note {
    max-width: 280px;
    margin-top: 9px;
    padding-top: 17px;
    color: #777777;
    border-top: 1px solid #262626;
    font-size: 10px;
    line-height: 1.65;
}

.footer-bottom {
    background: #080808;
    border-top: 1px solid #272727;
}

.footer-bottom__inner {
    min-height: 82px;
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr) max-content;
    gap: 36px;
    color: #717171;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 17px;
}

.footer-socials a {
    width: 22px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 160ms ease, opacity 160ms ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
    outline: none;
    opacity: 1;
    transform: translateY(-2px);
}

.footer-legal-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 24px;
}

.footer-legal-links button {
    padding: 0;
    color: #777777;
    background: transparent;
    font-size: 9px;
    font-weight: 500;
    transition: color 160ms ease;
}

.footer-legal-links button:hover,
.footer-legal-links button:focus-visible {
    color: #d8d8d8;
    outline: none;
}

.footer-copyright {
    color: #777777;
    font-size: 9px;
    white-space: nowrap;
    text-align: right;
}

.footer-watermark {
    height: 172px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    color: transparent;
    -webkit-text-stroke: 1px #242424;
    font-size: clamp(92px, 11.2vw, 176px);
    font-weight: 500;
    line-height: .78;
    text-transform: uppercase;
    user-select: none;
}

/* Improve readability of the persistent footer utility row. */
.footer-bottom__inner {
    min-height: 104px;
}

.footer-socials img {
    width: 19px;
    height: 19px;
    opacity: 1;
}

.footer-legal-links button {
    color: #b6c2cc;
    font-size: 11px;
    font-weight: 500;
}

.footer-copyright {
    color: #a8b6c2;
    font-size: 11px;
    font-weight: 500;
}

@media (max-width: 960px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 52px 42px;
        padding-block: 72px 62px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 580px;
    }

    .footer-contact {
        grid-column: auto;
    }

    .footer-bottom__inner {
        grid-template-columns: max-content minmax(0, 1fr);
        gap: 24px;
        padding-block: 22px;
    }

    .footer-copyright {
        grid-column: 1 / -1;
        text-align: left;
    }

    .footer-legal-links {
        justify-content: flex-end;
    }

    .footer-watermark {
        height: 130px;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 42px;
        padding-block: 58px 50px;
    }

    .footer-brand,
    .footer-contact {
        grid-column: auto;
    }

    .footer-brand__logo {
        width: 220px;
        height: 68px;
    }

    .footer-column {
        padding-bottom: 4px;
    }

    .footer-bottom__inner {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 22px;
        padding-block: 28px;
    }

    .footer-legal-links {
        justify-content: flex-start;
        gap: 12px 18px;
    }

    .footer-copyright {
        grid-column: auto;
        white-space: normal;
    }

    .footer-watermark {
        height: 82px;
        justify-content: flex-start;
        font-size: 58px;
        line-height: .8;
    }
}

/* Footer, legal information and cookie preferences */
[hidden] {
    display: none !important;
}

body.is-modal-open {
    overflow: hidden;
}

.site-footer {
    color: #61758b;
    background: #ffffff;
    border-top: 1px solid #dce7f1;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.45fr) repeat(3, minmax(140px, .55fr));
    gap: 64px;
    padding-block: 74px 64px;
}

.footer-brand {
    max-width: 390px;
}

.footer-brand__lockup {
    display: inline-flex;
    align-items: center;
    width: fit-content;
}

.footer-brand__logo {
    width: 230px;
    height: 72px;
    object-fit: contain;
    object-position: left center;
}

.footer-brand > p {
    max-width: 355px;
    margin: 24px 0 20px;
    color: #61758b;
    font-size: 12px;
    line-height: 1.75;
}

.footer-brand__contact {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
}

.footer-brand__contact a {
    color: #0b4f8f;
    font-size: 11px;
    font-weight: 500;
    transition: color 160ms ease;
}

.footer-brand__contact a:hover,
.footer-brand__contact a:focus-visible {
    color: #0879de;
    outline: none;
}

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

.footer-column h2 {
    position: relative;
    margin: 0 0 9px;
    padding-bottom: 13px;
    color: #0a2a4b;
    font-size: 12px;
    font-weight: 600;
}

.footer-column h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, #214df4, #08a8e8);
}

.footer-column a,
.footer-column button {
    margin: 0;
    padding: 0;
    color: #61758b;
    background: transparent;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.45;
    text-align: left;
    transition: color 160ms ease, transform 160ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-column button:hover,
.footer-column button:focus-visible {
    color: #0874d1;
    outline: none;
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 1px solid rgba(142, 164, 186, .16);
    background: #031326;
}

.footer-bottom__inner {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #6f869e;
    font-size: 10px;
}

.legal-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 24px;
}

.legal-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 14, 29, .72);
    backdrop-filter: blur(8px);
    animation: legal-backdrop-in 180ms ease both;
}

.legal-dialog {
    position: relative;
    z-index: 1;
    width: min(900px, 100%);
    max-height: min(760px, calc(100vh - 48px));
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr);
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #d4e2ef;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0, 16, 37, .3);
    animation: legal-dialog-in 220ms cubic-bezier(.2, .7, .2, 1) both;
}

.legal-dialog__header {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 19px 24px;
    color: #ffffff;
    background: #071f3a;
}

.legal-dialog__header span {
    display: block;
    margin-bottom: 4px;
    color: #6dbbff;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
}

.legal-dialog__header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
}

.legal-dialog__close {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d6e7f7;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 5px;
    font-size: 25px;
    font-weight: 300;
    line-height: 1;
}

.legal-dialog__close:hover,
.legal-dialog__close:focus-visible {
    color: #ffffff;
    background: rgba(255, 255, 255, .12);
    outline: none;
}

.legal-dialog__tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0 24px;
    background: #f5f8fc;
    border-bottom: 1px solid #dfe8f2;
}

.legal-dialog__tabs button {
    position: relative;
    min-height: 54px;
    padding: 0 12px;
    color: #667b91;
    background: transparent;
    font-size: 11px;
    font-weight: 500;
}

.legal-dialog__tabs button::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: -1px;
    height: 2px;
    background: transparent;
}

.legal-dialog__tabs button.is-active {
    color: #075fae;
}

.legal-dialog__tabs button.is-active::after {
    background: #0879de;
}

.legal-dialog__tabs button:focus-visible {
    outline: 2px solid #8bc9ff;
    outline-offset: -4px;
}

.legal-dialog__body {
    overflow-y: auto;
    padding: 32px 36px 40px;
    scrollbar-color: #b7c9da transparent;
    scrollbar-width: thin;
}

.legal-content {
    display: none;
    max-width: 720px;
    margin-inline: auto;
}

.legal-content.is-active {
    display: block;
}

.legal-content__date {
    color: #8092a6;
    font-size: 9px;
    font-weight: 500;
}

.legal-content h3 {
    margin: 10px 0 25px;
    color: #0d2948;
    font-size: 28px;
    font-weight: 500;
}

.legal-content h4 {
    margin: 25px 0 8px;
    color: #173b60;
    font-size: 13px;
    font-weight: 600;
}

.legal-content p {
    margin: 0;
    color: #5f7288;
    font-size: 12px;
    line-height: 1.75;
}

.legal-content a {
    color: #0874d1;
    font-weight: 500;
}

.legal-content__settings {
    min-height: 40px;
    margin-top: 26px;
    padding: 0 15px;
    color: #ffffff;
    background: #0874d1;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
}

.cookie-consent {
    position: fixed;
    z-index: 900;
    left: 24px;
    right: 24px;
    bottom: 24px;
    width: min(1120px, calc(100% - 48px));
    margin-inline: auto;
    overflow: hidden;
    color: #24374d;
    background: #ffffff;
    border: 1px solid #cbdbea;
    border-radius: 8px;
    box-shadow: 0 22px 60px rgba(2, 25, 52, .22);
    transform: translateY(calc(100% + 50px));
    transition: transform 350ms cubic-bezier(.2, .7, .2, 1);
}

.cookie-consent.is-visible {
    transform: translateY(0);
}

.cookie-consent__main {
    min-height: 116px;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) max-content;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
}

.cookie-consent__icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eaf5ff;
    border: 1px solid #cae3f8;
    border-radius: 6px;
}

.cookie-consent__icon img {
    width: 22px;
    height: 22px;
}

.cookie-consent__copy strong {
    display: block;
    margin-bottom: 5px;
    color: #102d4d;
    font-size: 13px;
    font-weight: 600;
}

.cookie-consent__copy p {
    margin: 0;
    color: #697c91;
    font-size: 10px;
    line-height: 1.55;
}

.cookie-consent__copy button {
    margin-top: 5px;
    padding: 0;
    color: #0874d1;
    background: transparent;
    font-size: 10px;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-consent__actions {
    display: flex;
    align-items: center;
    gap: 7px;
}

.cookie-button {
    min-height: 40px;
    padding: 0 13px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
}

.cookie-button--quiet {
    color: #31506e;
    background: #f5f8fb;
    border: 1px solid #d8e3ed;
}

.cookie-button--primary {
    color: #ffffff;
    background: #0874d1;
    border: 1px solid #0874d1;
}

.cookie-button:hover,
.cookie-button:focus-visible {
    outline: none;
    filter: brightness(.96);
}

.cookie-settings {
    padding: 8px 22px 20px 88px;
    background: #f7fafd;
    border-top: 1px solid #dce7f1;
}

.cookie-setting {
    min-height: 58px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid #e0e8f0;
}

.cookie-setting > span:first-child {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.cookie-setting strong {
    color: #173753;
    font-size: 10px;
    font-weight: 600;
}

.cookie-setting small {
    color: #718398;
    font-size: 9px;
}

.cookie-setting__required {
    color: #138b7c;
    font-size: 9px;
    font-weight: 600;
}

.cookie-setting input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.cookie-toggle {
    position: relative;
    width: 38px;
    height: 22px;
    background: #c6d3df;
    border-radius: 999px;
    transition: background 160ms ease;
}

.cookie-toggle::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(18, 49, 80, .2);
    transition: transform 160ms ease;
}

.cookie-setting input:checked + .cookie-toggle {
    background: #138b7c;
}

.cookie-setting input:checked + .cookie-toggle::after {
    transform: translateX(16px);
}

.cookie-setting input:focus-visible + .cookie-toggle {
    outline: 2px solid #79bdf5;
    outline-offset: 2px;
}

.cookie-settings > .cookie-button {
    margin-top: 16px;
}

@keyframes legal-backdrop-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes legal-dialog-in {
    from { opacity: 0; transform: translateY(18px) scale(.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 960px) {
    .footer-grid {
        grid-template-columns: 1.3fr repeat(2, 1fr);
        gap: 46px 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 620px;
    }

    .cookie-consent__main {
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .cookie-consent__actions {
        grid-column: 2;
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 42px 28px;
        padding-block: 54px 46px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-column:last-child {
        grid-column: 1 / -1;
    }

    .footer-bottom__inner {
        min-height: 84px;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        gap: 6px;
        padding-block: 18px;
    }

    .legal-modal {
        padding: 10px;
    }

    .legal-dialog {
        max-height: calc(100vh - 20px);
    }

    .legal-dialog__header {
        min-height: 72px;
        padding: 15px 16px;
    }

    .legal-dialog__tabs {
        padding-inline: 6px;
        overflow-x: auto;
    }

    .legal-dialog__tabs button {
        min-width: 76px;
        padding-inline: 6px;
        font-size: 10px;
    }

    .legal-dialog__body {
        padding: 25px 20px 32px;
    }

    .legal-content h3 {
        font-size: 24px;
    }

    .cookie-consent {
        left: 10px;
        right: 10px;
        bottom: 10px;
        width: calc(100% - 20px);
    }

    .cookie-consent__main {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 12px;
        padding: 16px;
    }

    .cookie-consent__icon {
        width: 38px;
        height: 38px;
        align-self: start;
    }

    .cookie-consent__actions {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .cookie-consent__actions .cookie-button--primary {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .cookie-settings {
        padding: 6px 16px 16px;
    }

    .cookie-setting {
        min-height: 64px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .legal-modal__backdrop,
    .legal-dialog {
        animation: none;
    }

    .cookie-consent {
        transition: none;
    }
}

/* Final footer theme - intentionally last in the cascade */
.site-footer {
    overflow: hidden;
    color: #aeb8c4;
    background: #07090c;
    border-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(340px, 1.45fr) minmax(150px, .65fr) minmax(170px, .72fr) minmax(270px, 1fr);
    gap: 72px;
    padding-block: 96px 82px;
}

.footer-brand {
    max-width: 430px;
}

.footer-brand__eyebrow {
    display: block;
    margin-bottom: 14px;
    color: #55b8ff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-brand h2 {
    max-width: 410px;
    margin: 0;
    color: #ffffff;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.35;
}

.footer-brand > p {
    max-width: 410px;
    margin: 22px 0 30px;
    color: #aeb8c4;
    font-size: 14px;
    line-height: 1.75;
}

.footer-brand__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 10px;
    color: #ffffff;
    border-bottom: 2px solid #168de0;
    font-size: 14px;
    font-weight: 600;
}

.footer-brand__cta span {
    color: #55b8ff;
    font-size: 19px;
}

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

.footer-column h2 {
    margin: 0 0 11px;
    padding: 0;
    color: #7f8a96;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-column h2::after {
    content: none;
}

.footer-column a,
.footer-column button {
    padding: 0;
    color: #f0f3f6;
    background: transparent;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-column button:hover,
.footer-column button:focus-visible {
    color: #55b8ff;
}

.footer-contact__link {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
}

.footer-contact__link img,
.footer-socials img {
    width: 18px;
    height: 18px;
    opacity: .9;
    filter: grayscale(1) brightness(0) invert(1);
}

.footer-contact__note {
    max-width: 290px;
    margin-top: 8px;
    padding-top: 19px;
    color: #929eaa;
    border-top: 1px solid #30343a;
    font-size: 12px;
    line-height: 1.7;
}

.footer-bottom {
    background: #07090c;
    border-top: 1px solid #2b3036;
}

.footer-bottom__inner {
    min-height: 92px;
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) max-content;
    align-items: center;
    gap: 38px;
    color: #8e99a5;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-socials a {
    width: 24px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 25px;
}

.footer-legal-links button {
    padding: 0;
    color: #9ca7b2;
    background: transparent;
    font-size: 11px;
    font-weight: 500;
}

.footer-legal-links button:hover,
.footer-legal-links button:focus-visible {
    color: #ffffff;
    outline: none;
}

.footer-copyright {
    color: #929daa;
    font-size: 11px;
    white-space: nowrap;
    text-align: right;
}

.footer-watermark {
    height: 190px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    color: rgba(20, 119, 208, .025);
    -webkit-text-stroke: 1px #1b3c5f;
    font-size: clamp(96px, 11.3vw, 178px);
    font-weight: 500;
    line-height: .78;
    user-select: none;
}

@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 56px 48px;
        padding-block: 78px 68px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 620px;
    }

    .footer-bottom__inner {
        grid-template-columns: max-content minmax(0, 1fr);
        gap: 26px;
        padding-block: 24px;
    }

    .footer-legal-links {
        justify-content: flex-end;
    }

    .footer-copyright {
        grid-column: 1 / -1;
        text-align: left;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 46px;
        padding-block: 62px 52px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-brand h2 {
        font-size: 22px;
    }

    .footer-column a,
    .footer-column button {
        font-size: 15px;
    }

    .footer-bottom__inner {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 24px;
        padding-block: 30px;
    }

    .footer-legal-links {
        justify-content: flex-start;
        gap: 14px 20px;
    }

    .footer-legal-links button {
        font-size: 12px;
    }

    .footer-copyright {
        grid-column: auto;
        white-space: normal;
    }

    .footer-watermark {
        height: 90px;
        justify-content: flex-start;
        font-size: 58px;
    }
}

/* Readable cookie preference panel */
.cookie-consent {
    width: min(1180px, calc(100% - 48px));
}

.cookie-consent__main {
    min-height: 138px;
    grid-template-columns: 54px minmax(0, 1fr) max-content;
    gap: 22px;
    padding: 24px 26px;
}

.cookie-consent__icon {
    width: 52px;
    height: 52px;
}

.cookie-consent__icon img {
    width: 25px;
    height: 25px;
}

.cookie-consent__copy strong {
    margin-bottom: 7px;
    font-size: 15px;
}

.cookie-consent__copy p {
    font-size: 12px;
    line-height: 1.65;
}

.cookie-consent__copy button {
    margin-top: 8px;
    font-size: 11px;
}

.cookie-consent__actions {
    gap: 9px;
}

.cookie-button {
    min-height: 44px;
    padding: 0 16px;
    font-size: 11px;
}

.cookie-settings {
    padding: 10px 26px 24px 102px;
}

.cookie-setting {
    min-height: 68px;
    gap: 22px;
}

.cookie-setting > span:first-child {
    gap: 4px;
}

.cookie-setting strong {
    font-size: 12px;
}

.cookie-setting small {
    font-size: 10px;
    line-height: 1.5;
}

.cookie-setting__required {
    font-size: 10px;
}

.cookie-settings > .cookie-button {
    min-height: 44px;
    margin-top: 18px;
    font-size: 11px;
}

@media (max-width: 960px) {
    .cookie-consent__main {
        grid-template-columns: 52px minmax(0, 1fr);
    }

    .cookie-consent__actions {
        grid-column: 2;
    }
}

@media (max-width: 640px) {
    .cookie-consent {
        width: calc(100% - 20px);
    }

    .cookie-consent__main {
        min-height: 0;
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 13px;
        padding: 18px;
    }

    .cookie-consent__icon {
        width: 42px;
        height: 42px;
    }

    .cookie-consent__copy strong {
        font-size: 14px;
    }

    .cookie-consent__copy p {
        font-size: 11px;
    }

    .cookie-consent__actions {
        grid-column: 1 / -1;
        gap: 8px;
    }

    .cookie-button {
        min-height: 43px;
        padding-inline: 12px;
        font-size: 10px;
    }

    .cookie-settings {
        padding: 8px 18px 18px;
    }

    .cookie-setting {
        min-height: 72px;
    }
}

/* Final footer contrast override. */
.footer-bottom__inner { min-height: 104px; }
.footer-socials img { width: 19px; height: 19px; opacity: 1; }
.footer-legal-links button { color: #b6c2cc; font-size: 11px; font-weight: 500; }
.footer-copyright { color: #a8b6c2; font-size: 11px; font-weight: 500; }

@media (max-width: 720px) {
    .footer-legal-links button,
    .footer-copyright { font-size: 10px; }
}
