:root {
    --navy: #0b1f3a;
    --navy-2: #14325a;
    --navy-3: #1c4478;
    --red: #c0102a;
    --red-hover: #9e0d23;
    --copper: #e3943a;
    --bg: #ffffff;
    --bg-soft: #f6f7f9;
    --surface: #ffffff;
    --text: #1a2332;
    --muted: #5b6a7a;
    --line: #e4e8ee;
    --radius: 4px;
    --container: 1240px;
    --space: 1rem;
    --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", sans-serif;
    --header-h: 5.25rem;
    --topbar-h: 2.85rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

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

body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: clip;
}

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

a {
    color: var(--navy-2);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible,
iframe:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 3px;
}

.icon {
    flex-shrink: 0;
    display: inline-block;
    vertical-align: -0.2em;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--navy);
    color: var(--surface);
    padding: 0.5rem 1rem;
    z-index: 200;
}

.skip-link:focus {
    left: 0.75rem;
    top: 0.75rem;
}

.container {
    width: min(var(--container), calc(100% - 2rem));
    margin-inline: auto;
}

.topbar {
    position: relative;
    z-index: 110;
    background: #1a3f68;
    color: #dce6f2;
    font-size: 0.8rem;
}

.topbar-inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.75rem 1.25rem;
    align-items: center;
    justify-content: space-between;
    min-height: var(--topbar-h);
    padding-block: 0;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 0.15rem 1.15rem;
    min-width: 0;
}

.topbar-right {
    margin-left: auto;
    flex-shrink: 0;
}

.topbar a {
    color: #eef3f8;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 40px;
    white-space: nowrap;
}

.topbar .icon {
    color: #fff;
}

.topbar-meta {
    display: none;
    align-items: center;
    gap: 0.4rem;
    color: #c5d0dd;
}

.lang-switch {
    position: relative;
    display: inline-block;
    background: #fff;
    color: var(--navy);
    border: 1px solid #fff;
    font-weight: 600;
    font-size: 0.78rem;
    line-height: 1;
    user-select: none;
}

.lang-switch > summary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.18rem 0.55rem 0.18rem 0.4rem;
    min-height: 30px;
    list-style: none;
    cursor: pointer;
}

.lang-switch > summary::-webkit-details-marker {
    display: none;
}

.lang-switch .icon-chevron {
    color: var(--navy);
    width: 10px;
    height: 10px;
    transition: transform 0.15s ease;
}

.lang-switch[open] .icon-chevron {
    transform: rotate(180deg);
}

.flag-ico {
    display: block;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(11, 31, 58, 0.12);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    z-index: 111;
    min-width: 11.2rem;
    padding: 0.28rem;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 12px 28px rgba(11, 31, 58, 0.16);
}

.lang-menu button {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
    margin: 0;
    padding: 0.55rem 0.6rem;
    border: 0;
    background: transparent;
    color: var(--navy);
    font: inherit;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.lang-menu button:hover,
.lang-menu button[aria-current="true"] {
    background: #f3f6fa;
}

#google_translate_element,
.skiptranslate,
iframe.skiptranslate,
.goog-te-banner-frame,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip:hover {
    display: none !important;
}

body {
    top: 0 !important;
}

.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}

font font {
    background: none !important;
}

@media (max-width: 720px) {
    .topbar-inner a[href^="mailto"] {
        display: none;
    }

    .lang-label {
        display: none;
    }
}

.site-header {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 4px 18px rgba(11, 31, 58, 0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-bar {
    display: flex;
    align-items: stretch;
    gap: 1.25rem;
    min-height: var(--header-h);
}

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

.logo picture {
    display: block;
}

.logo img {
    width: 150px;
    height: 39px;
}

.nav-desktop {
    display: none;
    margin-left: auto;
}

.nav-desktop ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: stretch;
    gap: 0;
}

.nav-desktop > ul > li > a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    min-height: var(--header-h);
    padding: 0 0.95rem;
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    transition: color 0.15s ease;
}

.nav-desktop > ul > li > a:hover,
.nav-desktop > ul > .is-active > a,
.nav-desktop > ul > li > a[aria-current="page"] {
    color: var(--red);
}

.nav-desktop .icon-chevron {
    width: 11px;
    height: 11px;
    margin-top: 1px;
}

.has-sub {
    position: relative;
}

.has-sub .sub {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 17.75rem;
    background: var(--navy);
    padding: 0;
    list-style: none;
    margin: 0;
    box-shadow: 0 14px 32px rgba(11, 31, 58, 0.22);
    z-index: 60;
}

.has-sub:hover .sub,
.has-sub:focus-within .sub {
    display: block;
}

.has-sub .sub a {
    display: flex;
    align-items: center;
    padding: 0.85rem 1.15rem;
    text-decoration: none;
    color: #fff;
    min-height: 48px;
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    transition: background 0.15s ease;
}

.has-sub .sub li:last-child a {
    border-bottom: 0;
}

.has-sub .sub a:hover,
.has-sub .sub a:focus-visible,
.has-sub .sub a[aria-current="page"] {
    background: var(--red);
    color: #fff;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 44px;
    padding: 0.55rem 1.1rem;
    border: 0;
    border-radius: var(--radius);
    background: var(--red);
    color: var(--surface);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

.btn:hover {
    background: var(--red-hover);
    color: var(--surface);
}

.btn-cta {
    display: none;
    align-self: center;
}

.btn-secondary,
.btn-ghost {
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--line);
}

.btn-ghost-light {
    background: transparent;
    color: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.75);
}

.btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--surface);
}

.btn-block {
    width: 100%;
}

html.nav-is-open,
body.nav-is-open {
    overflow: hidden;
}

.nav-toggle {
    margin-left: auto;
    align-self: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    z-index: 100;
    position: relative;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.25px;
    border-radius: 99px;
    background: var(--navy);
    transform-origin: center;
    transition: transform 0.28s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7.25px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7.25px) rotate(-45deg);
}

.nav-scrim {
    position: fixed;
    inset: 0;
    background: rgba(11, 21, 40, 0.42);
    z-index: 125;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.nav-scrim.is-open {
    opacity: 1;
    pointer-events: auto;
}

.nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(22rem, 100vw);
    background: #fff;
    z-index: 130;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.34s;
    padding: env(safe-area-inset-top) 0 env(safe-area-inset-bottom);
    display: flex;
    flex-direction: column;
    box-shadow: -18px 0 40px rgba(11, 31, 58, 0.16);
}

.nav-drawer.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0s;
}

.nav-drawer[hidden] {
    display: none !important;
}

.nav-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    min-height: 3.5rem;
    padding: 0.55rem 0.55rem 0.55rem 1.15rem;
    border-bottom: 1px solid var(--line);
}

.nav-drawer-logo {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.nav-drawer-logo img {
    width: 132px;
    height: 34px;
}

.nav-drawer-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--navy);
    cursor: pointer;
}

.nav-drawer-close:hover,
.nav-drawer-close:focus-visible {
    background: #f3f6fa;
}

.nav-drawer nav {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow: auto;
    padding: 0.35rem 1.15rem 0.5rem;
}

.nav-drawer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.nav-drawer-list > li > a,
.nav-drawer-acc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    width: 100%;
    min-height: 46px;
    padding: 0.7rem 0.15rem;
    border: 0;
    border-bottom: 1px solid rgba(11, 31, 58, 0.07);
    background: transparent;
    text-align: left;
    text-decoration: none;
    color: var(--navy);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.35;
    cursor: pointer;
}

.nav-drawer-list > li > a:hover,
.nav-drawer-acc:hover,
.nav-drawer-group.is-open .nav-drawer-acc {
    color: var(--navy);
}

.nav-drawer-list > li > a[aria-current="page"] {
    color: var(--red);
}

.nav-drawer-acc .icon-chevron {
    flex: 0 0 auto;
    width: 12px;
    height: 12px;
    color: var(--muted);
    transition: transform 0.2s ease;
}

.nav-drawer-group.is-open .nav-drawer-acc .icon-chevron {
    transform: rotate(180deg);
}

.nav-drawer-sub {
    list-style: none;
    margin: 0;
    padding: 0.1rem 0 0.4rem 0.85rem;
    border-bottom: 1px solid rgba(11, 31, 58, 0.07);
}

.nav-drawer-sub a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0.45rem 0;
    text-decoration: none;
    color: #3d4c5c;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.4;
}

.nav-drawer-sub a:hover,
.nav-drawer-sub a[aria-current="page"] {
    color: var(--red);
}

.nav-drawer-foot {
    display: grid;
    gap: 0.7rem;
    padding: 0.95rem 1.15rem 1.2rem;
    border-top: 1px solid var(--line);
    background: #f7f9fb;
}

.nav-drawer-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--navy);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
}

.nav-drawer-phone .icon {
    color: var(--muted);
}

.nav-drawer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 1.1rem;
    background: var(--red);
    color: #fff;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 4px;
}

.nav-drawer-cta:hover {
    background: var(--red-hover);
    color: #fff;
}

@media (max-width: 479px) {
    .nav-drawer {
        width: 100%;
        box-shadow: none;
    }
}

body.nav-is-open .wa-float,
body.nav-is-open .to-top,
body.nav-is-open .corp-jump {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
    .nav-toggle span,
    .nav-scrim,
    .nav-drawer,
    .nav-drawer-acc .icon-chevron {
        transition: none;
    }

    .hero-slide.is-active {
        animation: none;
    }
}

.hero-stage {
    position: relative;
    width: 100%;
    min-height: clamp(32rem, 58svh, 40rem);
    overflow: hidden;
    color: #fff;
    background: #1a2d4a;
}

.hero-slides {
    display: block;
    min-height: inherit;
}

.hero-slide {
    display: none;
    position: relative;
    align-items: center;
    justify-content: center;
    min-height: inherit;
    margin: 0;
}

.hero-slide.is-active {
    display: flex;
    animation: hero-copy-in 0.45s ease;
}

@keyframes hero-copy-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-slide picture,
.hero-slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: 18% center;
    z-index: 1;
}

.hero-shade {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(11, 21, 40, 0.1) 0%, rgba(11, 21, 40, 0.38) 48%, rgba(11, 21, 40, 0.62) 100%);
}

.hero-copy {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 3.5rem max(2.5rem, env(safe-area-inset-right)) 5.5rem max(2.5rem, env(safe-area-inset-left));
    display: flex;
    justify-content: flex-end;
    align-items: center;
    box-sizing: border-box;
}

.hero-copy-stack {
    max-width: min(38.75rem, 100%);
    min-width: 0;
    color: #fff;
    overflow-wrap: break-word;
    text-shadow: 0 1px 14px rgba(8, 15, 30, 0.28);
}

.hero-kicker {
    margin: 0 0 14px;
    font-size: 13px;
    letter-spacing: 1.2px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
}

.hero-title {
    margin: 0 0 18px;
    font-size: clamp(1.45rem, 1.05rem + 2.1vw, 2.625rem);
    line-height: 1.22;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    overflow-wrap: break-word;
}

.hero-title-sub {
    display: block;
    margin-top: 0.22em;
}

.hero-mark {
    display: inline;
    white-space: normal;
    color: #fff;
    background: #1a4ea8;
    padding: 0.08em 0.34em 0.12em;
    border-radius: 4px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    line-height: 1.45;
}

.hero-lead {
    margin: 0 0 30px;
    max-width: none;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 0 0 35px;
}

.hero-stage .btn {
    gap: 10px;
    padding: 13px 26px;
    min-height: 0;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    background: #e61c24;
    border: 1px solid #e61c24;
    color: #fff;
}

.hero-stage .btn:hover {
    background: #cc121a;
    border-color: #cc121a;
    color: #fff;
}

.hero-stage .btn-ghost-light {
    background: rgba(11, 21, 40, 0.22);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.hero-stage .btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
}

.hero-facts {
    list-style: none;
    margin: 0;
    padding: 22px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 24px;
    background: transparent;
    color: rgba(255, 255, 255, 0.95);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
}

.hero-facts li {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.hero-facts li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-fact-ico {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}

.hero-facts .icon {
    width: 28px;
    height: 28px;
    color: #fff;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
}

.hero-nav:hover {
    background: rgba(255, 255, 255, 0.28);
}

.hero-nav-prev {
    left: 1rem;
}

.hero-nav-next {
    right: 1rem;
}

.hero-wave {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 64px;
    z-index: 4;
    pointer-events: none;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 100%;
}

.wave-copper {
    fill: var(--copper);
    fill-opacity: 0.7;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.72rem;
    color: #b9c7d8;
    margin: 0 0 0.7rem;
}

.eyebrow.dark {
    color: var(--red);
}

.page-hero h1 {
    margin: 0 0 0.8rem;
    font-size: clamp(1.7rem, 6vw, 3rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.lead {
    max-width: 34rem;
    margin: 0;
    color: #d4deea;
    font-size: 0.98rem;
}

.lead-dark {
    max-width: 40rem;
    color: var(--muted);
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin: 1.2rem 0 0;
}

.error-page {
    padding: 4rem 0 5rem;
}

@media (max-width: 480px) {
    .hero-copy {
        padding: 1.85rem max(3.4rem, env(safe-area-inset-right)) 4.4rem max(3.4rem, env(safe-area-inset-left));
    }

    .hero-kicker {
        margin-bottom: 0.55rem;
        font-size: 0.72rem;
    }

    .hero-title {
        margin-bottom: 0.7rem;
    }

    .hero-lead {
        margin-bottom: 0.95rem;
        font-size: 0.88rem;
        line-height: 1.5;
    }

    .hero-actions {
        margin-bottom: 0.95rem;
        gap: 0.65rem;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 0.7rem 1.1rem;
        font-size: 0.88rem;
    }

    .hero-facts {
        padding-top: 0.85rem;
        gap: 0.7rem 0.5rem;
        font-size: 0.75rem;
    }
}

.section {
    padding: 4rem 0;
}

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

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.section-head h2,
.page-hero h1 {
    margin-top: 0;
}

.card-grid {
    display: grid;
    gap: 1rem;
}

.card {
    background: var(--bg-soft);
    border: 0;
    border-radius: var(--radius);
    padding: 1.4rem 1.35rem;
}

.card .icon-line {
    color: var(--navy);
    margin-bottom: 0.85rem;
}

.card h2,
.card h3 {
    margin: 0 0 0.45rem;
    font-size: 1.05rem;
}

.card h2 a,
.card h3 a {
    text-decoration: none;
    color: var(--navy);
}

.card p {
    margin: 0 0 0.8rem;
    color: var(--muted);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--red);
}

.service-scope {
    margin-top: -2px;
    background: linear-gradient(180deg, #6d8fbf 0%, #547eaf 48%, #3d6a9c 100%);
    padding: 2.35rem 0 1.8rem;
}

.service-scope-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 0.75rem;
}

.service-scope-head h2 {
    margin: 0;
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    letter-spacing: -0.03em;
    color: #fff;
}

.service-scope-lead {
    margin: 0.4rem 0 0;
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
    line-height: 1.5;
}

.service-scope-more {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
    color: #fff;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    min-height: 40px;
}

.service-scope-more:hover {
    color: #ffd4da;
}

.service-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.15rem;
}

.service-chip {
    flex: 1 1 7.4rem;
    max-width: 10.5rem;
    min-width: 6.8rem;
    text-align: center;
    text-decoration: none;
    color: #fff;
    padding: 1.05rem 0.35rem 1.15rem;
}

.service-chip .icon-line {
    display: block;
    width: 48px;
    height: 48px;
    margin: 0 auto 0.75rem;
    color: #fff;
    overflow: visible;
    animation: icon-tint 6.2s ease-in-out infinite;
}

.service-chip span {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.35;
}

.service-chip:hover {
    color: #fff;
}

.service-chip:hover .icon-line {
    animation: none;
    color: #c0102a;
}

.icon-thermo .icon-move {
    transform-box: view-box;
    transform-origin: 12px 17.2px;
    animation: icon-thermo 2.4s ease-in-out infinite;
}

.icon-caliper .icon-move {
    animation: icon-caliper 2.5s ease-in-out infinite;
}

.icon-gauge .icon-move {
    transform-box: view-box;
    transform-origin: 12px 13px;
    animation: icon-gauge 3.2s ease-in-out infinite;
}

.icon-scale .icon-move {
    transform-box: view-box;
    transform-origin: 12px 8px;
    animation: icon-scale 2.8s ease-in-out infinite;
}

.icon-flask .icon-move {
    animation: icon-flask 2.2s ease-in-out infinite;
}

.icon-bolt .icon-move {
    transform-box: fill-box;
    transform-origin: center;
    animation: icon-bolt 1.9s ease-in-out infinite;
}

.icon-torque .icon-move {
    transform-box: view-box;
    transform-origin: 8px 16px;
    animation: icon-torque 2.8s ease-in-out infinite;
}

.icon-wave .icon-move {
    stroke-dasharray: 10 6;
    animation: icon-wave 1.6s linear infinite;
}

.icon-book .icon-move {
    transform-box: fill-box;
    transform-origin: center;
    animation: icon-book 3s ease-in-out infinite;
}

.icon-grid .icon-move:nth-of-type(1) {
    animation: icon-grid 2.2s ease-in-out infinite;
}

.icon-grid .icon-move:nth-of-type(2) {
    animation: icon-grid 2.2s ease-in-out 0.18s infinite;
}

.icon-grid .icon-move:nth-of-type(3) {
    animation: icon-grid 2.2s ease-in-out 0.36s infinite;
}

.icon-grid .icon-move:nth-of-type(4) {
    animation: icon-grid 2.2s ease-in-out 0.54s infinite;
}

.service-chip:nth-child(1) .icon-line {
    animation-delay: 0s;
}

.service-chip:nth-child(2) .icon-line {
    animation-delay: -0.7s;
}

.service-chip:nth-child(3) .icon-line {
    animation-delay: -1.4s;
}

.service-chip:nth-child(4) .icon-line {
    animation-delay: -2.1s;
}

.service-chip:nth-child(5) .icon-line {
    animation-delay: -2.8s;
}

.service-chip:nth-child(6) .icon-line {
    animation-delay: -3.5s;
}

.service-chip:nth-child(7) .icon-line {
    animation-delay: -4.2s;
}

.service-chip:nth-child(8) .icon-line {
    animation-delay: -4.9s;
}

.service-chip:nth-child(9) .icon-line {
    animation-delay: -5.6s;
}

.service-chip:nth-child(10) .icon-line {
    animation-delay: -6.3s;
}

.service-chip:nth-child(11) .icon-line {
    animation-delay: -7s;
}

.service-chip:nth-child(2) .icon-move {
    animation-delay: 0.15s;
}

.service-chip:nth-child(3) .icon-move {
    animation-delay: 0.3s;
}

.service-chip:nth-child(4) .icon-move {
    animation-delay: 0.45s;
}

.service-chip:nth-child(5) .icon-move {
    animation-delay: 0.2s;
}

.service-chip:nth-child(6) .icon-move {
    animation-delay: 0.35s;
}

.service-chip:nth-child(7) .icon-move {
    animation-delay: 0.5s;
}

.service-chip:nth-child(8) .icon-move {
    animation-delay: 0.1s;
}

.service-chip:nth-child(9) .icon-move {
    animation-delay: 0.25s;
}

.service-chip:nth-child(10) .icon-move {
    animation-delay: 0.4s;
}

.service-chip:nth-child(11) .icon-move {
    animation-delay: 0.22s;
}

.icon-optic .icon-move {
    animation: icon-optic 2.6s ease-in-out infinite;
}

@keyframes icon-tint {
    0%,
    100% {
        color: #ffffff;
    }

    35% {
        color: #9eb8dc;
    }

    52% {
        color: #c0102a;
    }

    68% {
        color: #d5deea;
    }
}

@keyframes icon-thermo {
    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(0.62);
    }
}

@keyframes icon-caliper {
    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(2px);
    }
}

@keyframes icon-gauge {
    0%,
    100% {
        transform: rotate(-22deg);
    }

    50% {
        transform: rotate(32deg);
    }
}

@keyframes icon-scale {
    0%,
    100% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(5deg);
    }
}

@keyframes icon-flask {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }
}

@keyframes icon-bolt {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    42% {
        opacity: 0.45;
        transform: scale(0.9);
    }

    58% {
        opacity: 1;
        transform: scale(1.08);
    }
}

@keyframes icon-torque {
    0%,
    100% {
        transform: rotate(-14deg);
    }

    50% {
        transform: rotate(16deg);
    }
}

@keyframes icon-wave {
    to {
        stroke-dashoffset: -32;
    }
}

@keyframes icon-book {
    0%,
    100% {
        transform: rotate(-4deg);
    }

    50% {
        transform: rotate(4deg);
    }
}

@keyframes icon-grid {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.28;
    }
}

@keyframes icon-optic {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.35;
    }
}

@media (max-width: 900px) {
    .service-row {
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .service-row::-webkit-scrollbar {
        display: none;
    }

    .service-chip {
        flex: 0 0 7.6rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .service-chip .icon-move,
    .service-chip .icon-line {
        animation: none;
    }
}

.about-banner {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #fff;
    min-height: 400px;
}

.about-banner-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 74%, rgba(0, 0, 0, 0.55) 88%, rgba(0, 0, 0, 0.2) 100%);
    mask-image: linear-gradient(90deg, #000 0%, #000 74%, rgba(0, 0, 0, 0.55) 88%, rgba(0, 0, 0, 0.2) 100%);
}

.about-banner-media picture {
    display: block;
    width: 100%;
    height: 100%;
}

.about-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 82% 48%;
}

.about-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        #fff 0%,
        #fff 36%,
        rgba(255, 255, 255, 0.94) 46%,
        rgba(255, 255, 255, 0.4) 62%,
        rgba(255, 255, 255, 0) 74%,
        rgba(255, 255, 255, 0) 82%,
        rgba(255, 255, 255, 0.38) 92%,
        rgba(255, 255, 255, 0.8) 100%
    );
}

.about-banner-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 400px;
    padding: 3.2rem 0 3.4rem;
}

.about-banner-copy {
    max-width: 28.5rem;
}

.about-banner-kicker {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0 0 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    font-weight: 600;
    color: #3a4d63;
}

.about-banner-kicker::before {
    content: "";
    width: 1.7rem;
    height: 2px;
    background: var(--red);
}

.about-banner-copy h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.7rem, 3.1vw, 2.45rem);
    line-height: 1.18;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: var(--navy);
}

.about-banner-copy h2 span {
    display: block;
    color: var(--red);
}

.about-banner-lead {
    margin: 0 0 1.45rem;
    color: #4d5b6c;
    font-size: 0.95rem;
    line-height: 1.65;
}

.about-banner-lead a {
    color: var(--navy);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.about-banner-lead a:hover {
    color: var(--red);
}

.btn-navy {
    background: var(--navy);
    color: #fff;
    border-radius: 6px;
    padding: 0.65rem 1.25rem;
    min-height: 46px;
}

.btn-navy:hover {
    background: var(--navy-2);
    color: #fff;
}

.certs-banner {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 17.5rem;
    background: var(--navy);
}

.certs-banner-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.certs-banner-media picture {
    display: block;
    width: 100%;
    height: 100%;
}

.certs-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% 50%;
}

.certs-banner-veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            105deg,
            rgba(11, 31, 58, 0.62) 0%,
            rgba(11, 31, 58, 0.48) 34%,
            rgba(11, 31, 58, 0.22) 58%,
            rgba(11, 31, 58, 0.34) 100%
        ),
        linear-gradient(180deg, rgba(11, 31, 58, 0.08) 0%, rgba(11, 31, 58, 0.16) 100%);
}

.certs-banner-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem 2.4rem;
    min-height: 17.5rem;
    padding: 2.4rem 0;
}

.certs-banner-copy {
    max-width: 36rem;
    text-shadow: 0 1px 14px rgba(8, 15, 30, 0.32);
}

.certs-banner-kicker {
    margin: 0 0 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
}

.certs-banner-copy h2 {
    margin: 0 0 0.65rem;
    font-size: clamp(1.55rem, 2.8vw, 2.15rem);
    line-height: 1.2;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #fff;
}

.certs-banner-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    line-height: 1.65;
}

.certs-banner-btn,
.certs-banner-btn:hover {
    flex: 0 0 auto;
    white-space: nowrap;
    min-height: 48px;
    padding: 0.7rem 1.35rem;
    border-radius: 6px;
    background: #fff;
    color: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.certs-banner-btn:hover {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}

.btn-line {
    background: transparent;
    color: var(--navy);
    border: 1px solid #9eb0c4;
}

.btn-line:hover,
.btn-line:focus-visible {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

.clients-scope {
    position: relative;
    background:
        radial-gradient(ellipse 80% 90% at 6% -10%, rgba(130, 168, 220, 0.32), transparent 56%),
        radial-gradient(ellipse 70% 80% at 100% 8%, rgba(96, 130, 182, 0.22), transparent 52%),
        radial-gradient(ellipse 55% 70% at 48% 110%, rgba(176, 198, 230, 0.38), transparent 62%),
        linear-gradient(180deg, #eef3fa 0%, #e4ecf6 46%, #edf2f8 100%);
    color: var(--navy);
    padding: 0 0 4rem;
    overflow: hidden;
    scroll-margin-top: calc(var(--header-h) + 3.6rem);
}

.clients-wave {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 56px;
    z-index: 1;
    pointer-events: none;
    line-height: 0;
}

.clients-wave svg {
    display: block;
    width: 100%;
    height: 100%;
}

.clients-head {
    position: relative;
    z-index: 2;
    max-width: 38rem;
    padding: 2.6rem 0 1.35rem;
}

.clients-kicker {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0 0 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    font-weight: 600;
    color: #5a6d82;
}

.clients-kicker::before {
    content: "";
    width: 1.7rem;
    height: 2px;
    background: var(--red);
}

.clients-head h2 {
    margin: 0 0 0.55rem;
    font-size: clamp(1.45rem, 2.6vw, 2rem);
    letter-spacing: -0.03em;
    color: var(--navy);
}

.clients-lead {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.clients-board {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 0.55rem;
    padding: 0.35rem 0 0.6rem;
}

.clients-rail {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.clients-track {
    display: flex;
    width: max-content;
    animation: clients-pan 52s linear infinite;
}

.clients-rail.is-reverse .clients-track {
    animation-duration: 68s;
    animation-direction: reverse;
}

.clients-rail:hover .clients-track,
.clients-rail:focus-within .clients-track {
    animation-play-state: paused;
}

.clients-run {
    display: flex;
    align-items: stretch;
    gap: 0.7rem;
    margin: 0;
    padding: 0 0.35rem;
    list-style: none;
}

.clients-item {
    flex: 0 0 auto;
    width: 8.6rem;
    padding-bottom: 1.45rem;
}

.clients-item:nth-child(3n) {
    width: 9.5rem;
}

.clients-item:nth-child(3n+1) {
    width: 8.05rem;
}

.clients-plate {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    height: 4.55rem;
    padding: 0.5rem 0.7rem;
    background: #fff;
    border: 1px solid #e2e8ef;
    border-radius: var(--radius);
    box-shadow: 0 6px 18px rgba(11, 31, 58, 0.06);
    outline: none;
}

.clients-plate img {
    max-width: 100%;
    max-height: 3.15rem;
    width: auto;
    height: auto;
    object-fit: contain;
}

.clients-plate figcaption {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.32rem);
    margin: 0;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.2;
    color: var(--navy);
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.clients-plate:hover,
.clients-plate:focus-visible {
    border-color: rgba(192, 16, 42, 0.45);
    box-shadow: 0 10px 24px rgba(11, 31, 58, 0.1);
}

.clients-plate:hover figcaption,
.clients-plate:focus-visible figcaption {
    opacity: 1;
    transform: none;
}

@keyframes clients-pan {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.clients-wave-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 64px;
    z-index: 1;
    pointer-events: none;
    line-height: 0;
}

.clients-wave-bottom svg {
    display: block;
    width: 100%;
    height: 100%;
}

@media (prefers-reduced-motion: reduce) {
    .clients-track {
        animation: none;
        width: auto;
        flex-wrap: wrap;
        justify-content: center;
    }

    .clients-run[aria-hidden="true"] {
        display: none;
    }

    .clients-rail {
        -webkit-mask-image: none;
        mask-image: none;
        overflow: visible;
    }

    .clients-run {
        flex-wrap: wrap;
        justify-content: center;
        padding: 0;
        gap: 0.55rem;
    }

    .clients-plate figcaption {
        opacity: 1;
        transform: none;
        position: static;
        margin-top: 0.4rem;
        color: var(--muted);
    }

    .clients-item {
        padding-bottom: 0;
    }

    .clients-plate {
        flex-direction: column;
        height: auto;
        min-height: 4.55rem;
        padding-bottom: 0.55rem;
    }
}

.quote-cta {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 120% at 0% 0%, rgba(96, 140, 196, 0.28), transparent 55%),
        linear-gradient(180deg, #1c4a7c 0%, #163a64 100%);
    color: #fff;
    padding: 0;
}

.quote-cta-inner {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.6rem 2.4rem;
    padding: 2.35rem 0 3.6rem;
}

.quote-cta-copy {
    max-width: 38rem;
}

.quote-cta-kicker {
    margin: 0 0 0.45rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    font-weight: 600;
    color: #c9d4e2;
}

.quote-cta h2,
.site-footer .quote-cta h2 {
    margin: 0 0 0.55rem;
    padding-bottom: 0;
    font-size: clamp(1.45rem, 2.6vw, 2rem);
    letter-spacing: -0.03em;
    color: #fff;
}

.site-footer .quote-cta h2::after {
    display: none;
}

.quote-cta-copy p {
    margin: 0;
    color: #c5d0de;
    font-size: 0.95rem;
    line-height: 1.6;
}

.quote-cta-btn,
.quote-cta-btn:hover,
.site-footer .quote-cta .btn,
.site-footer .quote-cta .btn:hover {
    flex: 0 0 auto;
    white-space: nowrap;
    color: #fff;
}

.quote-dialog {
    width: min(28.5rem, calc(100vw - 1.6rem));
    max-height: calc(100vh - 2rem);
    padding: 0;
    border: 0;
    border-radius: 10px;
    overflow: auto;
    background: #fff;
    box-shadow: 0 24px 60px rgba(11, 31, 58, 0.28);
}

.quote-dialog::backdrop {
    background: rgba(11, 31, 58, 0.62);
}

.quote-dialog-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.25rem 1.05rem;
    background: var(--navy);
    color: #fff;
}

.quote-dialog-kicker {
    margin: 0 0 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.68rem;
    font-weight: 600;
    color: #9eb0c4;
}

.quote-dialog-head h2 {
    margin: 0;
    font-size: 1.2rem;
    letter-spacing: -0.03em;
    color: #fff;
}

.quote-dialog-close {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.quote-dialog-close:hover,
.quote-dialog-close:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.quote-dialog-body {
    padding: 1.2rem 1.25rem 1.35rem;
}

.quote-dialog-body .btn {
    width: 100%;
    justify-content: center;
}

.field .req {
    color: var(--red);
}

.field .opt {
    font-weight: 500;
    color: var(--muted);
    font-size: 0.78rem;
}

.stat-strip {
    position: relative;
    overflow: hidden;
    padding: 2.6rem 0 3.6rem;
    background:
        radial-gradient(ellipse 70% 120% at 0% -10%, rgba(168, 192, 232, 0.55), transparent 58%),
        radial-gradient(ellipse 65% 110% at 100% -15%, rgba(186, 204, 236, 0.48), transparent 55%),
        linear-gradient(180deg, #e8eef8 0%, #f3f6fb 52%, #e9eef7 100%);
}

.stat-strip-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(118deg, transparent 6%, rgba(255, 255, 255, 0.62) 18%, transparent 32%),
        linear-gradient(248deg, transparent 8%, rgba(255, 255, 255, 0.38) 24%, transparent 40%),
        linear-gradient(72deg, transparent 58%, rgba(150, 178, 222, 0.22) 74%, transparent 90%);
}

.stat-strip-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.stat-cell {
    text-align: center;
    padding: 0.35rem 1.5rem;
}

.stat-value {
    display: block;
    font-size: clamp(2.2rem, 4.2vw, 3.35rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--navy);
    font-variant-numeric: tabular-nums;
}

.stat-plus {
    color: var(--red);
}

.stat-label {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.84rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.4;
    color: var(--muted);
}

.stat-rule {
    width: 1px;
    height: 4.2rem;
    background: #d5dbe4;
}

.news-scope {
    background: #f3f5f8;
    padding: 2.8rem 0 3rem;
}

.news-scope-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1.2rem;
    margin-bottom: 1.45rem;
}

.news-scope-head h2 {
    margin: 0;
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    letter-spacing: -0.03em;
    color: var(--navy);
}

.news-scope-lead {
    margin: 0.4rem 0 0;
    max-width: 34rem;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.news-scope-more {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
    color: var(--navy);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    min-height: 40px;
}

.news-scope-more:hover {
    color: var(--red);
}

.news-scope-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 1.1rem;
    flex-shrink: 0;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
}

.news-card {
    display: flex;
    gap: 1.15rem;
    background: #fff;
    border: 1px solid #e2e6ed;
    padding: 1.2rem 1.25rem 1.15rem;
}

.news-card-tag {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.28rem 0.52rem;
    line-height: 1;
    border: 1px solid #d7dde6;
    background: #f4f6f8;
    color: var(--navy);
}

.news-card-tag.is-blog {
    border-color: #d5dce6;
    background: #f3f6fa;
    color: var(--navy);
}

.news-card-tag.is-news {
    border-color: #ead0d4;
    background: #fbf6f7;
    color: var(--red);
}

.news-card-date {
    flex: 0 0 4.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: #fff;
    text-align: center;
    padding: 0.75rem 0.4rem;
    min-height: 5.1rem;
}

.news-card-day {
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
}

.news-card-month {
    margin-top: 0.32rem;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.news-card-body {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding-right: 3.6rem;
}

.news-card h3 {
    margin: 0 0 0.4rem;
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.news-card h3 a {
    color: var(--navy);
    text-decoration: none;
}

.news-card h3 a:hover {
    color: var(--red);
}

.news-card p {
    margin: 0 0 0.85rem;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.news-card-more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--navy);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.news-card-more:hover {
    color: var(--red);
}

.news-card:hover {
    border-color: #cfd6e0;
}

@media (min-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 520px) {
    .news-scope-head {
        align-items: start;
        flex-direction: column;
        gap: 0.35rem;
    }

    .news-card {
        flex-direction: column;
        gap: 0.85rem;
    }

    .news-card-date {
        flex-direction: row;
        justify-content: flex-start;
        align-items: baseline;
        gap: 0.45rem;
        flex: none;
        width: 100%;
        min-height: 0;
        padding: 0.45rem 0.75rem;
    }

    .news-card-day {
        font-size: 1.05rem;
    }

    .news-card-month {
        margin-top: 0;
        text-transform: none;
        letter-spacing: 0.02em;
        font-size: 0.78rem;
    }
}

.page-mast {
    background: var(--navy);
    color: #fff;
    padding: 2.2rem 0 2.6rem;
}

.page-mast h1 {
    margin: 0 0 0.75rem;
    max-width: 42rem;
    font-size: clamp(1.7rem, 4.4vw, 2.65rem);
    line-height: 1.15;
    letter-spacing: -0.035em;
    padding-bottom: 0.85rem;
    position: relative;
}

.page-mast h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 3.1rem;
    height: 3px;
    background: var(--red);
}

.crumbs-light,
.crumbs-light a {
    color: #9eb0c4;
}

.crumbs-light a:hover {
    color: #fff;
}

.news-archive {
    background: #f3f5f8;
    padding: 2.4rem 0 3.6rem;
}

.news-empty {
    margin: 0;
    color: var(--muted);
}

.news-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.news-timeline-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem 1.6rem;
    background: #fff;
    border: 1px solid #e2e6ed;
    padding: 1.35rem 1.35rem 1.3rem;
    position: relative;
}

.news-timeline-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--navy);
    opacity: 0.18;
}

.news-timeline-item.is-lead::before,
.news-timeline-item:hover::before {
    background: var(--red);
    opacity: 1;
}

.news-timeline-when {
    display: flex;
    align-items: baseline;
    gap: 0.65rem;
}

.news-timeline-year {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--navy);
    line-height: 1;
}

.news-timeline-when time {
    color: var(--muted);
    font-size: 0.84rem;
}

.news-timeline-item h2 {
    margin: 0 0 0.5rem;
    font-size: 1.12rem;
    letter-spacing: -0.025em;
    line-height: 1.3;
}

.news-timeline-item.is-lead h2 {
    font-size: clamp(1.25rem, 2.4vw, 1.55rem);
}

.news-timeline-item h2 a {
    color: var(--navy);
    text-decoration: none;
}

.news-timeline-item h2 a:hover {
    color: var(--red);
}

.news-timeline-item article > p {
    margin: 0 0 0.95rem;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
    max-width: 40rem;
}

.news-timeline-item:hover {
    border-color: #cfd6e0;
}

.news-article {
    padding: 2.4rem 0 3.4rem;
    background: var(--surface);
}

.news-article-wrap {
    display: grid;
    gap: 2.2rem;
}

.news-article .prose {
    max-width: 42rem;
}

.news-article .prose p {
    color: var(--text);
    line-height: 1.75;
}

.news-aside h2 {
    margin: 0 0 0.7rem;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
}

.news-aside ul {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
}

.news-aside li {
    border-bottom: 1px solid var(--line);
}

.news-aside li a {
    display: block;
    padding: 0.75rem 0;
    color: var(--navy);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
}

.news-aside li a:hover {
    color: var(--red);
}

@media (min-width: 768px) {
    .news-timeline-item {
        grid-template-columns: 7.6rem 1fr;
        padding: 1.55rem 1.7rem 1.5rem 1.55rem;
        align-items: start;
    }

    .news-timeline-when {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
        padding-top: 0.15rem;
    }

    .news-timeline-year {
        font-size: 1.55rem;
    }
}

@media (min-width: 1024px) {
    .news-article-wrap {
        grid-template-columns: minmax(0, 1fr) 17rem;
        gap: 3rem;
        align-items: start;
    }

    .news-aside {
        border-left: 1px solid var(--line);
        padding-left: 1.6rem;
    }
}

.split {
    display: grid;
    gap: 1.5rem;
}

.panel {
    background: var(--navy);
    color: var(--surface);
    border-radius: 12px;
    padding: 1.4rem;
}

.panel a {
    color: #fff;
}

.page-hero {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 2.2rem 0 2.4rem;
}

.crumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 0.7rem;
}

.crumbs a {
    color: var(--muted);
}

.prose {
    max-width: 46rem;
}

.prose h2 {
    margin-top: 1.8rem;
    color: var(--navy);
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}

.prose h3 {
    margin: 1.25rem 0 0.45rem;
    color: var(--navy);
    font-size: 1.02rem;
}

.prose table {
    width: 100%;
    margin: 1.1rem 0 1.4rem;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.prose th,
.prose td {
    border: 1px solid var(--line);
    padding: 0.55rem 0.7rem;
    text-align: left;
    vertical-align: top;
}

.prose th {
    background: #f4f7fb;
    color: var(--navy);
    font-weight: 700;
}

.prose code {
    font-size: 0.86em;
    background: #f4f7fb;
    padding: 0.05em 0.3em;
    border-radius: 3px;
}

@media (max-width: 720px) {
    .prose table {
        display: block;
        overflow-x: auto;
    }
}

.page-mast .guide-byline {
    margin: 0.85rem 0 0;
    color: #9eb0c4;
    font-size: 0.88rem;
}

.blog-index {
    background: #f3f5f8;
    padding: 2.4rem 0 3.6rem;
}

.blog-index-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
}

.blog-index-list > li {
    display: flex;
}

.blog-index-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border: 1px solid #e2e6ed;
    padding: 1.25rem 1.2rem 1.15rem;
    border-top: 3px solid var(--red);
}

.blog-index-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.blog-index-kicker {
    margin: 0 0 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--red);
}

.blog-index-card h2 {
    margin: 0 0 0.5rem;
    font-size: 1.12rem;
    letter-spacing: -0.03em;
    line-height: 1.35;
}

.blog-index-card h2 a {
    color: var(--navy);
    text-decoration: none;
}

.blog-index-card h2 a:hover {
    color: var(--red);
}

.blog-index-card-body > p:not(.blog-index-kicker):not(.blog-index-meta) {
    margin: 0;
    color: var(--muted);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.blog-index-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1.1rem;
    margin-top: 0.95rem !important;
    font-size: 0.84rem;
}

.blog-index-meta a {
    color: var(--navy);
    font-weight: 600;
    text-decoration: none;
}

.blog-index-meta a:hover {
    color: var(--red);
}

.pager {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 2rem;
}

.pager a,
.pager span {
    min-width: 44px;
    min-height: 44px;
    padding: 0 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e6ed;
    background: #fff;
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.pager a:hover {
    border-color: var(--navy);
}

.pager span[aria-current="page"] {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}

@media (max-width: 980px) {
    .blog-index-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .blog-index-list {
        grid-template-columns: 1fr;
    }
}

.guide {
    background: #fff;
    padding: 2.4rem 0 3.4rem;
}

.guide-wrap {
    display: grid;
    gap: 2rem;
}

.guide-side {
    order: -1;
}

.guide-prose {
    max-width: none;
}

.guide-cover {
    margin: 0 0 1.7rem;
    overflow: hidden;
    background: #e8edf3;
}

.guide-cover picture,
.guide-cover-img {
    display: block;
    width: 100%;
}

.guide-cover-img {
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.guide-prose h2 {
    scroll-margin-top: 5.5rem;
    color: var(--navy);
    letter-spacing: -0.03em;
}

.guide-prose h3 {
    margin-top: 1.25rem;
    color: var(--navy);
    font-size: 1.05rem;
}

.guide-def {
    margin: 1.4rem 0;
    padding: 1rem 1.15rem 1.05rem;
    border-left: 3px solid var(--red);
    background: #f6f8fb;
}

.guide-def figcaption {
    margin: 0 0 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
}

.guide-def blockquote {
    margin: 0;
}

.guide-def p {
    margin: 0;
}

.guide-compare {
    margin: 1.4rem 0 1.6rem;
    overflow-x: auto;
}

.guide-compare table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.guide-compare th,
.guide-compare td {
    border: 1px solid var(--line);
    padding: 0.7rem 0.8rem;
    text-align: left;
    vertical-align: top;
}

.guide-compare th {
    background: var(--navy);
    color: #fff;
    font-weight: 600;
}

.guide-compare td:first-child {
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
}

.guide-faq {
    margin-top: 2.4rem;
    padding-top: 0.4rem;
}

.guide-faq {
    scroll-margin-top: 5.5rem;
}

.guide-faq h2 {
    margin: 0 0 1rem;
    color: var(--navy);
}

.guide-faq details {
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 0;
}

.guide-faq summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--navy);
}

.guide-faq details p {
    margin: 0.55rem 0 0.15rem;
    color: var(--muted);
}

.guide-cta {
    margin: 1.85rem 0 2.1rem;
    padding: 1.4rem 1.35rem;
    background: #f6f8fb;
    border-top: 3px solid var(--navy);
}

.guide-main > .guide-cta:last-child {
    margin-bottom: 0;
}

.guide-cta h2 {
    margin: 0 0 0.5rem;
    color: var(--navy);
    font-size: 1.25rem;
}

.guide-cta p {
    margin: 0;
    color: var(--muted);
}

.guide-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem !important;
}

.guide-toc,
.guide-related {
    border: 1px solid var(--line);
    padding: 1rem 1.05rem 1.05rem;
    background: #fafbfc;
}

.guide-toc p,
.guide-related p {
    margin: 0 0 0.65rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
}

.guide-toc ol,
.guide-related ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.guide-toc a,
.guide-related a {
    display: block;
    padding: 0.28rem 0;
    color: var(--navy);
    text-decoration: none;
    font-size: 0.86rem;
    line-height: 1.35;
}

.guide-toc a:hover,
.guide-related a:hover {
    color: var(--red);
}

.guide-related {
    margin-top: 1rem;
}

.guide-related .news-card-more {
    margin-top: 0.65rem;
}

.guide-factors {
    display: grid;
    gap: 0.7rem;
    margin: 1.35rem 0 1.6rem;
}

.guide-factor {
    border: 1px solid var(--line);
    padding: 0.9rem 1rem;
    background: #fafbfc;
}

.guide-factor h3 {
    margin: 0 0 0.35rem;
    font-size: 0.95rem;
}

.guide-factor p {
    margin: 0;
    color: var(--muted);
}

.guide-series {
    display: grid;
    gap: 0.75rem;
    margin: 2rem 0 0;
}

.guide-series a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    border: 1px solid var(--line);
    padding: 0.9rem 1rem;
    text-decoration: none;
    color: var(--navy);
    background: #fafbfc;
}

.guide-series a:hover {
    color: var(--red);
}

.guide-series-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

@media (min-width: 700px) {
    .guide-factors {
        grid-template-columns: 1fr 1fr;
    }

    .guide-series {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .guide-wrap {
        grid-template-columns: minmax(0, 1fr) 16.5rem;
        align-items: start;
        gap: 2.4rem;
    }

    .guide-side {
        order: 0;
        position: sticky;
        top: calc(var(--header-h) + 0.75rem);
        z-index: 2;
    }
}

.site-footer {
    background: #fff;
    color: var(--muted);
    padding-top: 0;
}

.footer-wave {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 64px;
    z-index: 2;
    line-height: 0;
    pointer-events: none;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 100%;
}

.footer-body {
    background: #f4f6f8;
}

.footer-grid {
    display: grid;
    gap: 1.8rem 1.6rem;
    padding: 1.4rem 0 0.4rem;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 0.85rem;
}

.footer-lead {
    margin: 0;
    max-width: 18.5rem;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.site-footer h2 {
    position: relative;
    color: var(--navy);
    font-size: 1.02rem;
    margin: 0 0 1rem;
    padding-bottom: 0.55rem;
}

.site-footer h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 2.15rem;
    height: 2px;
    background: var(--red);
}

.site-footer a {
    color: var(--navy);
    text-decoration: none;
}

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

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links a {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    font-size: 0.9rem;
}

.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.7rem;
}

.footer-contact li,
.footer-contact a {
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
    color: var(--navy);
    font-size: 0.88rem;
    line-height: 1.5;
}

.footer-contact .icon {
    flex: 0 0 auto;
    margin-top: 0.12rem;
    color: var(--navy);
}

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

.footer-bottom {
    border-top: 1px solid #e2e6ed;
    margin-top: 1.6rem;
    padding: 0.95rem 0;
    font-size: 0.84rem;
}

.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem 1rem;
}

.footer-bottom p {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem 0.65rem;
    color: var(--muted);
}

.footer-bottom p.footer-credit {
    margin-left: auto;
}

.footer-bottom a {
    color: var(--muted);
    margin: 0;
}

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

.to-top {
    position: fixed;
    left: max(1.1rem, env(safe-area-inset-left));
    bottom: max(1.1rem, env(safe-area-inset-bottom));
    z-index: 70;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(11, 31, 58, 0.22);
}

.to-top:hover,
.to-top:focus-visible {
    background: var(--navy-2);
    color: #fff;
}

.wa-float {
    position: fixed;
    right: max(1.1rem, env(safe-area-inset-right));
    bottom: max(1.1rem, env(safe-area-inset-bottom));
    z-index: 70;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(11, 31, 58, 0.28);
}

.wa-float:hover,
.wa-float:focus-visible {
    background: #1ebe5d;
    color: #fff;
}

.wa-float .icon {
    width: 28px;
    height: 28px;
}

.map-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--line);
    border-radius: 12px;
    overflow: hidden;
}

.map-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.note {
    color: var(--muted);
}

.field {
    margin-bottom: 1rem;
}

.field label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.field input,
.field textarea,
.field select {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    font: inherit;
}

.alert {
    background: #fdecee;
    color: #8a1022;
    padding: 0.75rem 0.9rem;
    border-radius: 8px;
}

.plain-list {
    padding-left: 1.1rem;
}

html.translated-ltr .hero-copy,
html.translated-rtl .hero-copy {
    padding-top: 3.75rem;
    padding-bottom: 5.85rem;
}

@media (max-width: 992px) {
    .hero-shade {
        background: linear-gradient(180deg, rgba(11, 21, 40, 0.22) 0%, rgba(11, 21, 40, 0.48) 55%, rgba(11, 21, 40, 0.58) 100%);
    }

    .hero-copy {
        justify-content: center;
        align-items: center;
        padding: 2.75rem max(3.6rem, env(safe-area-inset-right)) 5.25rem max(3.6rem, env(safe-area-inset-left));
    }

    .hero-copy-stack {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-facts {
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-content: stretch;
        justify-items: center;
        gap: 0.9rem 0.75rem;
    }

    .hero-facts li {
        justify-content: flex-start;
        width: 100%;
        max-width: 11.5rem;
        text-align: start;
    }

    .hero-facts li:not(:last-child)::after {
        display: none;
    }

    .about-banner {
        min-height: 0;
    }

    .about-banner-media {
        position: relative;
        height: 220px;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .about-banner-img {
        object-position: 78% 50%;
    }

    .about-banner::after {
        display: none;
    }

    .about-banner-inner {
        min-height: 0;
        padding: 1.7rem 0 2.1rem;
    }

    .about-banner-copy {
        max-width: none;
    }

    .about-banner-copy h2 {
        font-size: 1.7rem;
    }

    .clients-wave {
        height: 40px;
    }

    .clients-head {
        max-width: none;
        padding: 2.1rem 0 1.1rem;
    }

    .clients-item,
    .clients-item:nth-child(3n),
    .clients-item:nth-child(3n+1) {
        width: 7.4rem;
    }

    .clients-plate {
        height: 4.1rem;
        padding: 0.4rem 0.5rem;
    }

    .clients-plate img {
        max-height: 2.7rem;
    }

    .quote-cta-inner {
        flex-direction: column;
        align-items: stretch;
        padding: 1.85rem 0 3.2rem;
    }

    .quote-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .stat-strip {
        padding: 2.6rem 0 3.6rem;
    }

    .stat-strip-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 1.45rem;
    }

    .stat-cell {
        padding: 0.15rem 0.5rem;
    }

    .stat-rule {
        width: 3.4rem;
        height: 1px;
        background: #d5dbe4;
    }

    .certs-banner,
    .certs-banner-inner {
        min-height: 0;
    }

    .certs-banner-inner {
        flex-direction: column;
        align-items: stretch;
        padding: 2rem 0 2.15rem;
        gap: 1.2rem;
    }

    .certs-banner-copy {
        max-width: none;
    }

    .certs-banner-img {
        object-position: 62% 48%;
    }

    .certs-banner-veil {
        background:
            linear-gradient(
                180deg,
                rgba(11, 31, 58, 0.58) 0%,
                rgba(11, 31, 58, 0.5) 55%,
                rgba(11, 31, 58, 0.64) 100%
            );
    }

    .certs-banner-btn,
    .certs-banner-btn:hover {
        width: 100%;
        white-space: normal;
        justify-content: center;
    }
}

@media (min-width: 640px) {
    .topbar-meta {
        display: inline-flex;
    }

    .logo img {
        width: 180px;
        height: 47px;
    }

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

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

@media (min-width: 1024px) {
    .nav-desktop {
        display: block;
    }

    .nav-toggle,
    .nav-scrim,
    .nav-drawer {
        display: none;
    }

    .btn-cta {
        display: inline-flex;
        align-self: center;
        margin-left: 0.75rem;
        padding: 0.7rem 1.4rem;
        min-height: 46px;
    }

    .hero-grid,
    .split,
    .card-grid-2 {
        grid-template-columns: 1.4fr 1fr;
    }

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

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

    .section {
        padding: 5rem 0;
    }

    .page-hero {
        padding: 3.4rem 0 3.6rem;
    }
}

@media (min-width: 1280px) {
    .container {
        width: min(var(--container), calc(100% - 3rem));
    }
}

.flash-wrap {
    padding-top: 1.2rem;
}

.alert-ok {
    background: #e7f6ed;
    color: #14532d;
}

.hp {
    position: absolute;
    left: -10000px;
    height: 0;
    overflow: hidden;
}

.field-error {
    display: block;
    color: #8a1022;
    margin-top: 0.3rem;
}

.form-narrow {
    max-width: 40rem;
}

.stack-form .field textarea {
    min-height: 8rem;
    resize: vertical;
}

.catalog-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
    margin-bottom: 1rem;
}

.catalog-status {
    margin: 0;
    font-weight: 600;
}

.catalog-thumbs {
    display: flex;
    gap: 0.45rem;
    overflow-x: auto;
    padding: 0.9rem 0 0.2rem;
    -webkit-overflow-scrolling: touch;
}

.catalog-thumb {
    flex: 0 0 auto;
    border: 2px solid transparent;
    background: var(--surface);
    padding: 0;
    border-radius: 6px;
    cursor: pointer;
    min-height: 44px;
}

.catalog-thumb img {
    width: 64px;
    height: 90px;
    object-fit: cover;
    display: block;
}

.catalog-thumb.is-active {
    border-color: var(--red);
}

@media (min-width: 768px) {
    .catalog-thumb img {
        width: 80px;
        height: 113px;
    }
}

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

.catalog-page {
    background: #f4f6f9;
    padding: 1.6rem 0 3.4rem;
}

.catalog-shell {
    display: grid;
    gap: 1.6rem;
}

.catalog-side h1 {
    margin: 0 0 0.85rem;
    font-size: clamp(2rem, 4vw, 2.7rem);
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: var(--navy);
    position: relative;
    padding-bottom: 0.7rem;
}

.catalog-side h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 2.6rem;
    height: 3px;
    background: var(--red);
}

.catalog-kicker {
    margin: 0 0 0.45rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    font-weight: 600;
    color: #8a97a8;
}

.catalog-lead {
    margin: 0 0 1.35rem;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.catalog-crumbs {
    align-items: center;
}

.catalog-crumbs a {
    display: inline-flex;
    align-items: center;
}

.catalog-toc {
    background: #fff;
    border: 1px solid #e7ebf1;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(11, 31, 58, 0.06);
    padding: 1rem 0.35rem 0.45rem;
    margin-bottom: 1rem;
}

.catalog-toc h2 {
    margin: 0 0.85rem 0.45rem;
    font-size: 0.92rem;
}

.catalog-toc ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.catalog-toc button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    background: none;
    border: 0;
    border-top: 1px solid #eef1f5;
    padding: 0.72rem 0.9rem;
    text-align: left;
    color: var(--navy);
    font-weight: 600;
    cursor: pointer;
    min-height: 44px;
}

.catalog-toc li:first-child button {
    border-top: 0;
}

.catalog-toc button:hover,
.catalog-toc button.is-current {
    background: #f7f9fc;
}

.catalog-toc-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #8a97a8;
    font-style: normal;
    font-weight: 600;
}

.catalog-toc-meta em {
    font-style: normal;
}

.catalog-download {
    width: 100%;
    justify-content: space-between;
    border-radius: 10px;
    padding-inline: 1rem;
}

.catalog-download small {
    font-weight: 600;
    opacity: 0.78;
}

.catalog-note {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    margin: 0.85rem 0 0;
    color: var(--muted);
    font-size: 0.82rem;
}

.catalog-empty {
    margin: 2rem 0;
    color: var(--muted);
}

.catalog-app {
    position: relative;
    background: #fff;
    border: 1px solid #e7ebf1;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(11, 31, 58, 0.07);
    padding: 0.85rem 0.85rem 1rem;
}

.catalog-app.is-fullscreen {
    border-radius: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #eef1f6;
}

.catalog-app.is-fullscreen .catalog-stage {
    flex: 1;
}

.catalog-app.is-fullscreen .catalog-leaf {
    width: min(34vw, 430px);
}

.catalog-bar {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.15rem 0.35rem 0.75rem;
}

.catalog-app .catalog-status {
    flex: 0 0 auto;
    min-width: 4.5rem;
    font-size: 0.9rem;
    color: var(--navy);
}

.catalog-scrub {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
}

.catalog-scrub input {
    width: 100%;
    accent-color: var(--navy);
}

.catalog-tools {
    display: flex;
    gap: 0.25rem;
}

.catalog-tool {
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    color: var(--navy);
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.catalog-tool:hover,
.catalog-tool[aria-expanded="true"] {
    background: #eef2f7;
}

.catalog-stage {
    position: relative;
    background:
        radial-gradient(ellipse 70% 55% at 50% 100%, rgba(11, 31, 58, 0.08), transparent 70%),
        #e8edf3;
    border-radius: 12px;
    min-height: 28rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.4rem 3.2rem 1.8rem;
    overflow: hidden;
}

.catalog-book {
    display: flex;
    justify-content: center;
    perspective: 1800px;
    transform-origin: center;
    filter: drop-shadow(0 18px 28px rgba(11, 31, 58, 0.18));
}

.catalog-book.is-flip-next,
.catalog-book.is-flip-prev {
    animation: catalog-turn 0.28s ease;
}

.catalog-leaf {
    background: #fff;
    width: min(32vw, 340px);
    aspect-ratio: 1200 / 1698;
    overflow: hidden;
}

.catalog-leaf picture,
.catalog-leaf img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-leaf.is-left {
    border-radius: 4px 0 0 4px;
    box-shadow: inset -14px 0 18px rgba(11, 31, 58, 0.08);
}

.catalog-leaf.is-right {
    border-radius: 0 4px 4px 0;
    box-shadow: inset 14px 0 18px rgba(11, 31, 58, 0.08);
    position: relative;
}

.catalog-leaf.is-right::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(11, 31, 58, 0.12);
}

.catalog-leaf.is-empty {
    background: #f7f8fa;
}

.catalog-leaf.is-empty img {
    visibility: hidden;
}

.catalog-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    color: var(--navy);
    box-shadow: 0 6px 18px rgba(11, 31, 58, 0.14);
    cursor: pointer;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.catalog-nav-prev {
    left: 0.7rem;
}

.catalog-nav-next {
    right: 0.7rem;
}

.catalog-nav:hover {
    background: #fff;
}

.catalog-strip-wrap {
    margin-top: 0.85rem;
}

.catalog-strip {
    display: flex;
    gap: 0.55rem;
    overflow-x: auto;
    padding: 0.25rem 0.15rem 0.35rem;
    -webkit-overflow-scrolling: touch;
}

.catalog-chip {
    flex: 0 0 auto;
    border: 0;
    background: none;
    padding: 0;
    cursor: pointer;
    text-align: center;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 600;
}

.catalog-chip img {
    width: 56px;
    height: 80px;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 4px;
    display: block;
    margin-bottom: 0.25rem;
    background: #eef1f5;
}

.catalog-chip.is-active {
    color: var(--navy);
}

.catalog-chip.is-active img {
    border-color: var(--navy);
}

.catalog-pop,
.catalog-grid {
    position: absolute;
    z-index: 5;
    background: #fff;
    border: 1px solid #e7ebf1;
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(11, 31, 58, 0.16);
}

.catalog-pop {
    top: 3.4rem;
    right: 0.85rem;
    width: min(22rem, calc(100% - 1.7rem));
    padding: 0.9rem;
}

.catalog-pop label span {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.catalog-pop input {
    width: 100%;
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0.4rem 0.7rem;
}

.catalog-pop ul {
    list-style: none;
    margin: 0.55rem 0 0;
    padding: 0;
    max-height: 14rem;
    overflow: auto;
}

.catalog-pop li button {
    width: 100%;
    text-align: left;
    background: none;
    border: 0;
    padding: 0.45rem 0.2rem;
    cursor: pointer;
    color: var(--navy);
    min-height: 40px;
}

.catalog-pop li button:hover {
    color: var(--red);
}

.catalog-grid {
    left: 0.85rem;
    right: 0.85rem;
    top: 3.4rem;
    bottom: 5.2rem;
    padding: 1rem;
    overflow: auto;
}

.catalog-grid > p {
    margin: 0 0 0.75rem;
    font-weight: 700;
    color: var(--navy);
}

.catalog-grid-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
    gap: 0.7rem;
}

.catalog-grid-list button {
    border: 0;
    background: none;
    padding: 0;
    cursor: pointer;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 600;
}

.catalog-grid-list img {
    width: 100%;
    height: auto;
    aspect-ratio: 1200 / 1698;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: 4px;
    margin-bottom: 0.25rem;
}

@keyframes catalog-turn {
    0% { transform: scale(1); }
    40% { transform: scale(0.982) rotateY(8deg); }
    100% { transform: scale(1); }
}

@media (min-width: 980px) {
    .catalog-shell {
        grid-template-columns: 17.5rem minmax(0, 1fr);
        align-items: start;
        gap: 2rem;
    }

    .catalog-side {
        position: sticky;
        top: 6.2rem;
    }

    .catalog-leaf {
        width: min(28vw, 360px);
    }
}

@media (max-width: 900px) {
    .catalog-leaf.is-right {
        display: none;
    }

    .catalog-leaf.is-left {
        border-radius: 4px;
        width: min(78vw, 360px);
        box-shadow: none;
    }

    .catalog-stage {
        padding: 1.1rem 2.6rem 1.4rem;
        min-height: 22rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .catalog-book.is-flip-next,
    .catalog-book.is-flip-prev {
        animation: none;
    }
}

.cert-list {
    padding-left: 1.1rem;
}

.certs-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #fff;
}

.certs-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 1.6rem 0 1.2rem;
}

.certs-hero-copy {
    width: min(100%, 36rem);
}

.certs-hero-kicker {
    font-weight: 700;
}

.certs-hero h1 {
    margin: 0 0 0.75rem;
    color: var(--navy);
    font-size: clamp(1.85rem, 4.2vw, 2.75rem);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.certs-hero .lead {
    margin: 0;
    max-width: 32rem;
    color: var(--muted);
}

.certs-hero-media {
    position: relative;
    height: 12.5rem;
    overflow: hidden;
}

.certs-hero-media picture,
.certs-hero-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% 42%;
}

.certs-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.72) 18%, rgba(255, 255, 255, 0) 52%);
}

.certs-page {
    background: #f3f5f8;
    padding: 1.8rem 0 3.2rem;
}

.certs-trust {
    list-style: none;
    margin: 1.45rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 0.9rem;
}

.certs-trust li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
}

.certs-trust-ico {
    flex: 0 0 auto;
    width: 2.45rem;
    height: 2.45rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e8f0f8;
    color: var(--navy);
}

.certs-trust strong {
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.certs-intro {
    margin: 0 0 1.4rem;
    max-width: 46rem;
}

.certs-intro p {
    margin: 0 0 0.8rem;
    color: var(--text);
    font-size: 0.98rem;
    line-height: 1.7;
}

.certs-intro p:last-child {
    margin-bottom: 0;
}

.certs-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    margin: 0 0 1.25rem;
}

.certs-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.certs-chip {
    display: inline-flex;
    align-items: center;
    min-height: 2.35rem;
    padding: 0.35rem 0.95rem;
    border-radius: 999px;
    background: #e7edf3;
    color: var(--navy);
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 600;
}

.certs-chip:hover {
    background: #d7e0ea;
    color: var(--navy);
}

.certs-chip.is-active {
    background: var(--navy);
    color: #fff;
}

.certs-chip.is-active:hover {
    background: var(--navy-2);
    color: #fff;
}

.certs-search {
    position: relative;
    flex: 1 1 16rem;
    max-width: 22rem;
    margin-left: auto;
}

.certs-search-ico {
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    color: #7a8a9c;
    display: inline-flex;
}

.certs-search input {
    width: 100%;
    min-height: 2.55rem;
    padding: 0.45rem 0.95rem 0.45rem 2.45rem;
    border: 1px solid #d5dde7;
    border-radius: 999px;
    background: #fff;
    color: var(--text);
    font: inherit;
}

.certs-search input:focus {
    outline: 2px solid var(--navy);
    outline-offset: 1px;
}

.certs-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.certs-card {
    display: grid;
    background: #fff;
    border: 1px solid #e2e6ed;
}

.certs-card[hidden] {
    display: none;
}

.certs-card-media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 13.5rem;
    padding: 0;
    border: 0;
    border-bottom: 1px solid #e8edf3;
    background: #eef2f7;
    cursor: pointer;
}

.certs-card-media img {
    display: block;
    width: 100%;
    height: 13.5rem;
    object-fit: contain;
    background: #eef2f7;
}

.certs-card-ph {
    flex-direction: column;
    gap: 0.4rem;
    background: var(--navy);
    color: #fff;
}

.certs-card-ph em {
    font-style: normal;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    font-weight: 700;
    color: #e8b4bc;
}

.certs-card-body {
    padding: 1.05rem 1.15rem 1.15rem;
    display: grid;
    align-content: start;
}

.certs-tag {
    display: inline-block;
    justify-self: start;
    margin-bottom: 0.5rem;
    padding: 0.18rem 0.55rem;
    border-radius: 999px;
    background: #e4eef8;
    color: #1a4a7a;
    font-size: 0.72rem;
    font-weight: 700;
}

.certs-card-body h2 {
    margin: 0 0 0.45rem;
    color: var(--navy);
    font-size: 1.12rem;
    letter-spacing: -0.02em;
}

.certs-card-body p {
    margin: 0 0 0.7rem;
    color: var(--text);
    font-size: 0.92rem;
    line-height: 1.6;
}

.certs-card-date {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0 0 0.95rem;
    color: var(--muted);
    font-size: 0.85rem;
}

.certs-card-actions {
    display: grid;
    gap: 0.5rem;
    margin-top: auto;
}

.certs-card-actions .btn {
    justify-content: center;
    width: 100%;
}

.certs-empty {
    margin: 0 0 1.4rem;
    padding: 1.4rem 1.2rem;
    background: #fff;
    border: 1px solid #e2e6ed;
    color: var(--muted);
}

.certs-cta {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.8rem;
}

.certs-cta-dl,
.certs-cta-offer {
    border-radius: 12px;
}

.certs-cta-dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem 1rem;
    align-items: center;
    padding: 1.25rem 1.2rem 1.3rem;
    background: #e8eef6;
    color: var(--navy);
}

.certs-cta-offer {
    padding: 1.3rem 1.25rem 1.4rem;
    background: var(--navy);
    color: #fff;
}

.certs-cta-ico {
    display: inline-flex;
    width: 3rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex: 0 0 auto;
}

.certs-cta-dl .certs-cta-ico {
    background: #d5e0ee;
    color: var(--navy);
}

.certs-cta-offer .certs-cta-ico {
    margin-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.certs-cta-copy h2,
.certs-cta-offer h2 {
    margin: 0 0 0.35rem;
    font-size: 1.12rem;
    letter-spacing: -0.03em;
    line-height: 1.3;
}

.certs-cta-copy h2 {
    color: var(--navy);
}

.certs-cta-offer h2 {
    color: #fff;
}

.certs-cta-copy p,
.certs-cta-offer p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
}

.certs-cta-copy p {
    color: var(--muted);
}

.certs-cta-offer p {
    color: #d4deea;
}

.certs-cta-dl .btn,
.certs-cta-dl .certs-cta-note {
    grid-column: 1 / -1;
}

.certs-cta-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.certs-cta .btn {
    display: inline-flex;
    justify-content: center;
    white-space: nowrap;
}

.cert-dialog {
    width: min(56rem, calc(100vw - 1.4rem));
    max-height: calc(100vh - 1.6rem);
    margin: auto;
    padding: 0;
    border: 0;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 24px 60px rgba(11, 31, 58, 0.28);
}

.cert-dialog[open] {
    display: flex;
    flex-direction: column;
}

.cert-dialog::backdrop {
    background: rgba(11, 31, 58, 0.62);
}

.cert-dialog-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.05rem 1.15rem 1rem;
    background: var(--navy);
    color: #fff;
    flex: 0 0 auto;
}

.cert-dialog-kicker {
    margin: 0 0 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.68rem;
    font-weight: 700;
    color: #e8b4bc;
}

.cert-dialog-head h2 {
    margin: 0;
    color: #fff;
    font-size: 1.15rem;
    letter-spacing: -0.03em;
}

.cert-dialog-stage {
    background: #dfe6ef;
    flex: 1 1 auto;
    min-height: 16rem;
}

.cert-dialog-frame {
    display: block;
    width: 100%;
    height: min(58vh, 34rem);
    border: 0;
    background: #dfe6ef;
}

.cert-dialog-image {
    display: block;
    width: 100%;
    height: min(58vh, 34rem);
    object-fit: contain;
    background: #dfe6ef;
}

.cert-dialog-fallback {
    margin: 0;
    padding: 2rem 1.2rem;
    text-align: center;
    color: var(--muted);
}

.cert-dialog-foot {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    padding: 0.9rem 1.15rem 1.05rem;
    background: #fff;
    border-top: 1px solid #e2e6ed;
    flex: 0 0 auto;
}

@media (min-width: 768px) {
    .certs-hero-inner {
        min-height: 26rem;
        padding: 2.6rem 0 2.8rem;
    }

    .certs-hero-copy {
        max-width: min(36rem, 52%);
        padding-right: 1.2rem;
    }

    .certs-hero-media {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 46%;
        height: auto;
        z-index: 0;
    }

    .certs-hero-media::after {
        background: linear-gradient(
            90deg,
            #fff 0%,
            rgba(255, 255, 255, 0.88) 16%,
            rgba(255, 255, 255, 0.38) 38%,
            rgba(255, 255, 255, 0) 62%
        );
    }

    .certs-hero-img {
        object-position: 62% center;
    }

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

@media (min-width: 992px) {
    .certs-hero-copy {
        max-width: 36rem;
    }

    .certs-trust {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1rem 1.1rem;
        max-width: 34rem;
    }
}

@media (min-width: 1100px) {
    .certs-hero-media {
        left: 48%;
    }

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

    .certs-cta {
        grid-template-columns: minmax(0, 1.7fr) minmax(18rem, 1fr);
        align-items: stretch;
    }

    .certs-cta-dl {
        grid-template-columns: auto 1fr auto;
        padding: 1.4rem 1.45rem;
        gap: 1.1rem 1.2rem;
    }

    .certs-cta-dl .btn,
    .certs-cta-dl .certs-cta-note {
        grid-column: auto;
        justify-self: end;
    }
}

@media (max-width: 767px) {
    .certs-search {
        max-width: none;
        margin-left: 0;
    }
}

.contact-page {
    background: #f3f5f8;
    padding: 2.4rem 0 3.2rem;
}

.contact-channels {
    list-style: none;
    margin: 0 0 1.4rem;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
}

.contact-tile {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    min-height: 100%;
    padding: 1.15rem 1.15rem 1.1rem;
    background: #fff;
    border: 1px solid #e2e6ed;
    color: inherit;
    text-decoration: none;
}

a.contact-tile:hover .contact-tile-icon,
a.contact-tile:focus-visible .contact-tile-icon {
    background: var(--red);
}

a.contact-tile:hover .contact-tile-value,
a.contact-tile:focus-visible .contact-tile-value {
    color: var(--red);
}

.contact-tile-icon {
    width: 2.55rem;
    height: 2.55rem;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: #fff;
}

.contact-tile-icon .icon {
    width: 1.05rem;
    height: 1.05rem;
    vertical-align: 0;
}

.contact-tile-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 0.18rem;
}

.contact-kicker,
.contact-tile-label {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--red);
}

.contact-tile-label {
    color: var(--muted);
    font-weight: 600;
}

.contact-tile-value {
    color: var(--navy);
    font-weight: 600;
    font-size: 0.92rem;
    line-height: 1.4;
}

.contact-tile-note {
    color: var(--muted);
    font-size: 0.82rem;
}

.contact-layout {
    display: grid;
    gap: 1.1rem;
}

.contact-form-card,
.contact-aside-card {
    background: #fff;
    border: 1px solid #e2e6ed;
    padding: 1.5rem 1.4rem 1.45rem;
}

.contact-form-card h2,
.contact-aside-card h2,
.contact-map h2 {
    margin: 0 0 0.55rem;
    color: var(--navy);
    font-size: 1.35rem;
    letter-spacing: -0.03em;
}

.contact-form-lead,
.contact-aside-card p {
    margin: 0 0 1.15rem;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.contact-aside-meta {
    margin: -0.55rem 0 1.1rem !important;
    color: var(--navy) !important;
    font-weight: 600;
}

.contact-fields {
    display: grid;
    gap: 0 1rem;
}

.contact-form-card .field input,
.contact-form-card .field textarea {
    border-radius: var(--radius);
    background: #fafbfc;
}

.contact-aside {
    display: grid;
    gap: 1.1rem;
    align-content: start;
}

.contact-aside-card .btn {
    width: 100%;
}

.contact-aside-card-navy {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}

.contact-aside-card-navy .contact-kicker {
    color: #e8b4bc;
}

.contact-aside-card-navy h2 {
    color: #fff;
}

.contact-aside-card-navy p {
    color: #c5d0de;
}

.contact-map {
    padding: 0 0 3.2rem;
    background: #f3f5f8;
}

.contact-map .container {
    padding-bottom: 1rem;
}

.contact-map-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 18rem;
    background: #d7dde6;
    overflow: hidden;
}

.contact-map-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (min-width: 700px) {
    .contact-channels {
        grid-template-columns: 1fr 1fr;
    }

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

@media (min-width: 992px) {
    .contact-channels {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .contact-layout {
        grid-template-columns: minmax(0, 1.35fr) 18.5rem;
        gap: 1.25rem;
        align-items: start;
    }

    .contact-form-card,
    .contact-aside-card {
        padding: 1.7rem 1.6rem 1.6rem;
    }

    .contact-map-frame {
        height: 24rem;
        aspect-ratio: auto;
    }
}

.corp-jump {
    position: sticky;
    top: var(--header-h);
    z-index: 40;
    background: #fff;
    border-bottom: 1px solid #e2e6ed;
}

.corp-jump.is-stuck {
    box-shadow: 0 8px 20px rgba(11, 31, 58, 0.08);
}

.corp-jump-inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.15rem 0.35rem;
    padding: 0.55rem 0;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.corp-jump-inner::-webkit-scrollbar {
    display: none;
}

.corp-jump a {
    color: var(--navy);
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 0.45rem 0.7rem;
    border-bottom: 2px solid transparent;
}

.corp-jump a:hover,
.corp-jump a:focus-visible {
    color: var(--red);
}

.corp-jump a.is-active {
    color: var(--red);
    border-bottom-color: var(--red);
}

.corp-kicker {
    margin: 0 0 0.45rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--red);
}

.corp-intro,
.corp-profile,
.corp-why,
.corp-policy {
    background: #fff;
    padding: 2.6rem 0 2.8rem;
    scroll-margin-top: calc(var(--header-h) + 3.6rem);
}

.corp-facts,
.corp-group,
.corp-hse {
    background: #f3f5f8;
    padding: 2.4rem 0 2.8rem;
    scroll-margin-top: calc(var(--header-h) + 3.6rem);
}

.corp-intro h2,
.corp-profile h2,
.corp-group h2,
.corp-why h2,
.corp-policy h2,
.corp-hse h2 {
    margin: 0 0 0.9rem;
    color: var(--navy);
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    letter-spacing: -0.03em;
}

.corp-intro-copy p,
.corp-profile-copy p,
.corp-lead,
.corp-hse-close {
    margin: 0 0 1rem;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.corp-intro-copy strong,
.corp-profile-copy strong {
    color: var(--navy);
    font-weight: 700;
}

.corp-lead {
    max-width: 46rem;
}

.corp-intro-grid,
.corp-profile-grid {
    display: grid;
    gap: 1.4rem;
}

.corp-photo {
    margin: 0;
    overflow: hidden;
    background: #e8edf3;
}

.corp-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 5 / 4;
}

.corp-facts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.corp-fact {
    background: #fff;
    border: 1px solid #e2e6ed;
    padding: 1.15rem 1.1rem 1.05rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.corp-fact-value {
    color: var(--navy);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.corp-fact-label {
    color: var(--muted);
    font-size: 0.82rem;
}

.corp-scopes {
    list-style: none;
    margin: 1.15rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.corp-scopes li {
    padding: 0.32rem 0.65rem;
    border: 1px solid #e2e6ed;
    background: #fafbfc;
    color: var(--navy);
    font-size: 0.78rem;
    font-weight: 600;
}

.corp-group-list {
    list-style: none;
    margin: 1.6rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}

.corp-group-card {
    background: #fff;
    border: 1px solid #e2e6ed;
    border-top: 3px solid var(--navy);
    padding: 1.35rem 1.2rem 1.25rem;
    text-align: center;
}

.corp-group-card:last-child {
    border-top-color: var(--red);
}

.corp-group-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.1rem;
    height: 3.1rem;
    margin-bottom: 0.7rem;
    background: var(--navy);
    color: #fff;
}

.corp-group-icon .icon {
    width: 1.45rem;
    height: 1.45rem;
}

.corp-group-icon .icon-move {
    animation: none;
}

.corp-group-name {
    margin: 0 0 0.25rem;
    color: var(--navy);
    font-size: 1.05rem;
    font-weight: 700;
}

.corp-group-role {
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
}

.corp-group-join {
    width: min(12rem, 50%);
    height: 2px;
    margin: 1.15rem auto 0.9rem;
    background: var(--red);
}

.corp-group-result {
    margin: 0;
    padding: 1.25rem 1.4rem;
    background: var(--navy);
    color: #fff;
    text-align: center;
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.45;
}

.corp-why-intro {
    display: grid;
    gap: 1.4rem;
    margin-bottom: 1.7rem;
    align-items: center;
}

.corp-why-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 36rem;
}

.corp-why-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.7rem;
}

.corp-why-list li {
    display: grid;
    grid-template-columns: 2.6rem minmax(0, 1fr);
    gap: 0.85rem;
    align-items: center;
    padding: 1rem 1.1rem;
    background: #fff;
    border: 1px solid #e2e6ed;
}

.corp-why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    background: var(--navy);
    color: #fff;
}

.corp-why-icon .icon {
    width: 1.2rem;
    height: 1.2rem;
}

.corp-why-icon .icon-move {
    animation: none;
}

.corp-why-list li > span:last-child {
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.55;
}

.corp-band {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #fff;
}

.corp-band-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 1.8rem 0 1.3rem;
}

.corp-band-copy {
    width: min(100%, 36rem);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.corp-band-copy h2 {
    margin: 0 0 0.7rem;
    color: var(--navy);
    font-size: clamp(1.5rem, 3vw, 2.15rem);
    letter-spacing: -0.03em;
    line-height: 1.18;
}

.corp-band-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.corp-band-copy .btn {
    margin-top: 1.15rem;
}

@media (max-width: 767px) {
    .corp-band-copy .btn {
        width: 100%;
        justify-content: center;
    }
}

.corp-band-media {
    position: relative;
    height: 13rem;
    overflow: hidden;
}

.corp-band-media picture,
.corp-band-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% 42%;
}

.corp-band-media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.72) 18%, rgba(255, 255, 255, 0) 52%);
}

@media (min-width: 768px) {
    .corp-band-inner {
        min-height: 22rem;
        padding: 2.6rem 0 2.8rem;
    }

    .corp-band-copy {
        max-width: min(36rem, 52%);
        padding-right: 1.2rem;
    }

    .corp-band-media {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 46%;
        height: auto;
        z-index: 0;
    }

    .corp-band-media::after {
        background: linear-gradient(
            90deg,
            #fff 0%,
            rgba(255, 255, 255, 0.88) 16%,
            rgba(255, 255, 255, 0.38) 38%,
            rgba(255, 255, 255, 0) 62%
        );
    }
}

@media (min-width: 992px) {
    .corp-band-copy {
        max-width: 36rem;
    }

    .corp-band-media {
        left: 48%;
    }
}

.corp-policy-list,
.corp-hse-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.85rem;
    counter-reset: corp;
}

.corp-policy-list li,
.corp-hse-list li {
    position: relative;
    padding: 1.05rem 1.1rem 1.05rem 3.4rem;
    background: #fff;
    border: 1px solid #e2e6ed;
    color: var(--text);
    font-size: 0.92rem;
    line-height: 1.6;
    counter-increment: corp;
}

.corp-policy-list li::before,
.corp-hse-list li::before {
    content: counter(corp, decimal-leading-zero);
    position: absolute;
    left: 1rem;
    top: 1.05rem;
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.corp-hse-list li {
    background: #fff;
}

.corp-hse-close {
    margin-top: 1.2rem;
    padding: 1.1rem 1.2rem;
    background: #fff;
    border-left: 3px solid var(--red);
    color: var(--navy);
    font-weight: 600;
}

@media (min-width: 700px) {
    .corp-facts-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .corp-group-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
    }

    .corp-why-list {
        grid-template-columns: 1fr 1fr;
    }

    .corp-hse-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .corp-intro-grid,
    .corp-profile-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.2rem;
        align-items: center;
    }

    .corp-profile-grid {
        grid-template-columns: 0.92fr 1.08fr;
    }

    .corp-why-intro {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 2.2rem;
        align-items: center;
    }

    .corp-photo-img {
        min-height: 0;
    }

    .corp-intro,
    .corp-profile,
    .corp-why,
    .corp-policy,
    .corp-group,
    .corp-hse {
        padding-top: 3.1rem;
        padding-bottom: 3.3rem;
    }
}

.svc-index {
    background: #f3f5f8;
    padding: 2.2rem 0 2.8rem;
}

.svc-index-intro {
    margin: 0 0 1.6rem;
    max-width: 46rem;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

.svc-index-intro a {
    color: var(--navy);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.svc-index-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.9rem;
}

.svc-index-card {
    background: #fff;
    border: 1px solid #e2e6ed;
    padding: 1.25rem 1.2rem 1.15rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.svc-index-icon {
    color: var(--navy);
    margin-bottom: 0.2rem;
}

.svc-index-icon .icon-line {
    width: 36px;
    height: 36px;
}

.svc-index-card h2 {
    margin: 0;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
}

.svc-index-card h2 a {
    color: var(--navy);
    text-decoration: none;
}

.svc-index-card h2 a:hover {
    color: var(--red);
}

.svc-index-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.55;
    flex: 1;
}

.svc-index-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.35rem;
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
}

.svc-index-link:hover {
    color: var(--red);
}

.svc-kicker {
    margin: 0 0 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--red);
}

.svc-kicker-light {
    color: #e8b4bc;
}

.svc-split {
    padding: 2.4rem 0;
    background: #fff;
}

.svc-split-alt {
    background: #f3f5f8;
}

.svc-split-grid {
    display: grid;
    gap: 1.5rem;
}

.svc-photo {
    margin: 0;
    overflow: hidden;
    background: #e8edf3;
    order: 0;
}

.svc-copy {
    order: 1;
}

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

.svc-copy h2,
.svc-body h2,
.svc-faq h2,
.svc-more h2 {
    margin: 0 0 0.85rem;
    color: var(--navy);
    font-size: clamp(1.4rem, 2.4vw, 1.95rem);
    letter-spacing: -0.03em;
}

.svc-copy h3,
.svc-body h3,
.svc-devices h3 {
    margin: 1.15rem 0 0.4rem;
    color: var(--navy);
    font-size: 1.05rem;
}

.svc-copy p,
.svc-body p,
.svc-more-lead {
    margin: 0 0 0.95rem;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.svc-copy p:last-child,
.svc-body p:last-child {
    margin-bottom: 0;
}

.svc-copy a,
.svc-body a,
.svc-index-intro a,
.svc-more-lead a {
    color: var(--navy);
    font-weight: 600;
}

.svc-copy strong,
.svc-body strong {
    color: var(--navy);
    font-weight: 700;
}

.svc-devices {
    list-style: none;
    margin: 1.35rem 0 2.1rem;
    padding: 0;
    display: grid;
    gap: 1.4rem 2.4rem;
}

.svc-devices li {
    padding: 0;
    background: transparent;
}

.svc-devices h3 {
    margin: 0 0 0.35rem;
}

.svc-devices p {
    margin: 0;
    font-size: 0.92rem;
}

.svc-param-groups {
    list-style: none;
    margin: 1.35rem 0 2.1rem;
    padding: 0;
    display: grid;
    gap: 1.5rem 2.2rem;
}

.svc-param-groups > li {
    padding: 0;
}

.svc-param-groups h3 {
    margin: 0 0 0.45rem;
}

.svc-param-groups ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.svc-param-groups ul li {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
    padding: 0.12rem 0;
}

.svc-body {
    padding: 2.4rem 0 2.6rem;
    background: #fff;
}

.svc-body-inner > p,
.svc-body-inner > .svc-note {
    max-width: 42rem;
}

.svc-note {
    margin: 1.1rem 0 0;
    padding: 0;
    background: transparent;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

.svc-cta {
    background: var(--navy);
    color: #fff;
    padding: 2rem 0;
}

.svc-cta-inner {
    display: grid;
    gap: 1.2rem;
}

.svc-cta h2 {
    margin: 0 0 0.5rem;
    color: #fff;
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    letter-spacing: -0.03em;
}

.svc-cta-copy p {
    margin: 0;
    color: #c5d0de;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 36rem;
}

.svc-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin: 0;
    align-items: center;
}

.svc-faq {
    background: #f3f5f8;
    padding: 2.4rem 0 2.6rem;
}

.svc-faq .container {
    max-width: 46rem;
}

.svc-faq details {
    border-bottom: 1px solid #d8dee8;
    padding: 0.8rem 0;
}

.svc-faq summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--navy);
}

.svc-faq details p {
    margin: 0.55rem 0 0.15rem;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.svc-more {
    padding: 2.4rem 0 2.8rem;
    background: #fff;
}

.svc-more-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}

.svc-more-list a {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.85rem 0.95rem;
    border: 1px solid #e2e6ed;
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.9rem;
}

.svc-more-list a:hover {
    border-color: var(--navy);
    color: var(--red);
}

.svc-more-list .icon-line {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--navy);
}

.svc-fallback {
    padding: 2.2rem 0;
}

.svc-courses {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.45rem;
}

.svc-courses li {
    padding: 0.65rem 0.8rem;
    background: #f6f8fb;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.9rem;
}

@media (min-width: 700px) {
    .svc-index-list {
        grid-template-columns: 1fr 1fr;
    }

    .svc-cta-inner {
        grid-template-columns: 1.4fr auto;
        align-items: center;
        gap: 1.5rem;
    }

    .svc-more-list {
        grid-template-columns: 1fr 1fr;
    }

    .svc-devices {
        grid-template-columns: 1fr 1fr;
    }

    .svc-param-groups {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .svc-index-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .svc-devices {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .svc-param-groups {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .svc-split {
        padding: 3.1rem 0;
    }

    .svc-split-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.2rem;
        align-items: center;
    }

    .svc-split-rev .svc-copy {
        order: 0;
    }

    .svc-split-rev .svc-photo {
        order: 1;
    }

    .svc-photo-img {
        min-height: 22rem;
        aspect-ratio: auto;
        height: 22rem;
    }

    .svc-more-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .svc-body,
    .svc-faq,
    .svc-more,
    .svc-index {
        padding-top: 3rem;
        padding-bottom: 3.2rem;
    }
}

.quote-page {
    background: #f3f5f8;
    padding: 2.4rem 0 3.2rem;
}

.quote-layout {
    display: grid;
    gap: 1.1rem;
}

.quote-trust-card,
.quote-form-card {
    background: #fff;
    border: 1px solid #e2e6ed;
    padding: 1.5rem 1.4rem 1.45rem;
}

.quote-trust-card {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}

.quote-trust-card .contact-kicker {
    color: #e8b4bc;
}

.quote-trust-card h2,
.quote-form-card h2 {
    margin: 0 0 0.55rem;
    font-size: 1.35rem;
    letter-spacing: -0.03em;
}

.quote-trust-card h2 {
    color: #fff;
}

.quote-form-card h2 {
    color: var(--navy);
}

.quote-form-lead {
    margin: 0 0 1.15rem;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.quote-facts {
    list-style: none;
    margin: 0 0 1.1rem;
    padding: 0;
    display: grid;
    gap: 0.45rem;
}

.quote-facts li {
    padding-left: 0.85rem;
    position: relative;
    color: #d5dee9;
    font-size: 0.92rem;
    line-height: 1.45;
}

.quote-facts li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.4rem;
    height: 0.4rem;
    background: var(--red);
}

.quote-trust-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem 1rem;
    margin: 0 0 1rem;
}

.quote-trust-links a,
.quote-trust-meta a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.quote-trust-links a:hover,
.quote-trust-meta a:hover {
    color: #e8b4bc;
}

.quote-trust-meta {
    margin: 0;
    display: grid;
    gap: 0.25rem;
    color: #c5d0de;
    font-size: 0.9rem;
}

.quote-block {
    margin: 0 0 1.45rem;
    padding: 0;
    border: 0;
}

.quote-block legend {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
    margin: 0 0 0.85rem;
    padding: 0 0 0.55rem;
    border-bottom: 1px solid #e2e6ed;
    color: var(--navy);
    font-size: 1.02rem;
    font-weight: 700;
}

.quote-block legend span:first-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.55rem;
    height: 1.55rem;
    background: var(--navy);
    color: #fff;
    font-size: 0.78rem;
    border-radius: 50%;
}

.quote-kinds {
    display: grid;
    gap: 0.55rem;
}

.quote-kind {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin: 0;
    padding: 0.75rem 0.85rem;
    border: 1px solid #d9dee6;
    background: #fafbfc;
    cursor: pointer;
    font-weight: 600;
    color: var(--navy);
}

.quote-kind:has(input:checked) {
    border-color: var(--navy);
    background: #eef2f7;
}

.quote-kind input {
    margin-top: 0.2rem;
    accent-color: var(--navy);
}

.quote-fields {
    display: grid;
    gap: 0 1rem;
}

.quote-form-card .field input,
.quote-form-card .field textarea,
.quote-form-card .field select {
    border-radius: var(--radius);
    background: #fafbfc;
}

.quote-hint {
    display: block;
    margin: 0.35rem 0 0.7rem;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.quote-device {
    margin: 0 0 0.85rem;
    padding: 0.9rem 0.9rem 0.75rem;
    border: 1px solid #e2e6ed;
    background: #f7f9fb;
}

.quote-device-grid {
    display: grid;
    gap: 0 0.75rem;
}

.quote-device-remove {
    display: inline-flex;
    margin: 0.15rem 0 0;
    padding: 0;
    border: 0;
    background: none;
    color: var(--red);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
}

.quote-device-remove:hover {
    text-decoration: underline;
}

.quote-consent {
    margin: 0 0 1.1rem;
    padding: 0.9rem 1rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #f7f9fb;
}

.quote-consent.is-invalid {
    border-color: #e3c4c8;
    background: #fdf7f8;
}

.quote-kvkk {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--text);
    cursor: pointer;
}

.quote-kvkk input {
    flex-shrink: 0;
    width: 1.15rem;
    height: 1.15rem;
    margin-top: 0.2rem;
    accent-color: var(--navy);
}

.quote-consent-msg {
    margin: 0.7rem 0 0;
    padding: 0.55rem 0.7rem;
    border-radius: 8px;
    background: #fff;
    color: #7a1222;
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.45;
}

.quote-consent-msg[hidden] {
    display: none !important;
}

.quote-block-end .btn {
    width: 100%;
    justify-content: center;
}

@media (min-width: 640px) {
    .quote-kinds {
        grid-template-columns: 1fr 1fr;
    }

    .quote-fields,
    .quote-device-grid {
        grid-template-columns: 1fr 1fr;
    }

    .quote-city {
        grid-column: 1 / -1;
    }
}

@media (min-width: 992px) {
    .quote-layout {
        grid-template-columns: 18.5rem minmax(0, 1.35fr);
        gap: 1.25rem;
        align-items: start;
    }

    .quote-trust {
        position: sticky;
        top: 5.6rem;
    }

    .quote-trust-card,
    .quote-form-card {
        padding: 1.7rem 1.6rem 1.6rem;
    }

    .quote-device-grid {
        grid-template-columns: 1.4fr 1fr 1fr 1fr 4.6rem minmax(8rem, 1.2fr);
    }

    .quote-block-end .btn {
        width: auto;
    }
}

