[hidden] { display: none !important; }

:root {
    --brand-orange: #ef8a00;
    --brand-orange-dark: #c96f00;
    --brand-navy: #17285f;
    --brand-navy-deep: #0d1739;
    --brand-blue: #2854b8;
    --ink: #15213d;
    --muted: #5d6880;
    --line: #dfe5ef;
    --surface: #ffffff;
    --surface-soft: #f5f7fb;
    --surface-blue: #eef3ff;
    --success: #17865c;
    --shadow-sm: 0 8px 24px rgba(13, 23, 57, 0.08);
    --shadow-lg: 0 24px 70px rgba(13, 23, 57, 0.16);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --container: 1180px;
    --header-height: 78px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.72;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

img {
    height: auto;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

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

h1,
h2,
h3,
h4 {
    color: var(--brand-navy-deep);
    line-height: 1.22;
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(2.35rem, 5.5vw, 4.85rem);
}

h2 {
    font-size: clamp(1.85rem, 3.7vw, 3.15rem);
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.55rem);
}

p:last-child {
    margin-bottom: 0;
}

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

.section {
    padding: clamp(72px, 9vw, 118px) 0;
}

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

.section--blue {
    background: var(--surface-blue);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.section-heading h2 {
    margin-bottom: 16px;
}

.section-heading p {
    color: var(--muted);
    font-size: 1.08rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--brand-orange-dark);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 28px;
    height: 3px;
    content: "";
    border-radius: 999px;
    background: var(--brand-orange);
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 9999;
    padding: 10px 14px;
    color: #fff;
    background: var(--brand-navy-deep);
    border-radius: 8px;
    transform: translateY(-160%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: var(--header-height);
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(223, 229, 239, 0.86);
    backdrop-filter: blur(14px);
    transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 10px 30px rgba(13, 23, 57, 0.09);
}

.navbar {
    display: flex;
    min-height: var(--header-height);
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand img {
    width: 154px;
    height: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link,
.language-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    border-radius: 999px;
    color: #31405f;
    font-size: 0.97rem;
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link[aria-current="page"] {
    color: var(--brand-navy);
    background: var(--surface-blue);
}

.language-link {
    margin-left: 6px;
    color: #fff;
    background: var(--brand-navy);
}

.language-link:hover,
.language-link:focus-visible {
    color: #fff;
    background: var(--brand-blue);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--brand-navy);
    background: #fff;
    cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
    display: block;
    width: 21px;
    height: 2px;
    margin: 5px auto;
    content: "";
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: min(760px, calc(100vh - var(--header-height)));
    overflow: hidden;
    color: #fff;
    background: var(--brand-navy-deep);
}

.hero__media,
.page-hero__media {
    position: absolute;
    inset: 0;
}

.hero__media::after,
.page-hero__media::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(5, 12, 35, 0.92) 0%, rgba(9, 23, 58, 0.75) 42%, rgba(9, 23, 58, 0.24) 75%, rgba(9, 23, 58, 0.12) 100%),
        linear-gradient(0deg, rgba(5, 12, 35, 0.34), rgba(5, 12, 35, 0.04));
}

.hero__media img,
.page-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: min(760px, calc(100vh - var(--header-height)));
    align-items: center;
    padding: 92px 0 110px;
}

.hero__content {
    max-width: 790px;
}

.hero .eyebrow,
.page-hero .eyebrow {
    color: #ffbb58;
}

.hero h1,
.page-hero h1 {
    margin-bottom: 24px;
    color: #fff;
    text-wrap: balance;
}

.hero__lead {
    max-width: 670px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero__actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    line-height: 1.2;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn--primary {
    color: #151a2c;
    background: var(--brand-orange);
    box-shadow: 0 12px 28px rgba(239, 138, 0, 0.28);
}

.btn--primary:hover,
.btn--primary:focus-visible {
    color: #151a2c;
    background: #ff9d16;
}

.btn--secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
    color: #fff;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.btn--navy {
    color: #fff;
    background: var(--brand-navy);
    box-shadow: 0 12px 28px rgba(23, 40, 95, 0.2);
}

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

.icon-inline {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
}

.hero__facts {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(6, 15, 42, 0.62);
    backdrop-filter: blur(12px);
}

.hero-facts__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.hero-fact {
    display: flex;
    min-height: 84px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 24px;
    font-weight: 800;
    text-align: center;
}

.hero-fact + .hero-fact {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-fact svg {
    width: 26px;
    height: 26px;
    color: #ffba50;
}

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

.service-card,
.feature-card,
.responsibility-card,
.info-card {
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.service-card {
    overflow: hidden;
    border-radius: var(--radius-md);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
}

.service-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--surface-soft);
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card__image img {
    transform: scale(1.035);
}

.service-card__body {
    padding: 28px;
}

.service-card__body h3 {
    margin-bottom: 12px;
}

.service-card__body p {
    color: var(--muted);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--brand-blue);
    font-weight: 800;
}

.text-link:hover,
.text-link:focus-visible {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    align-items: center;
    gap: clamp(38px, 7vw, 92px);
}

.split__media {
    position: relative;
}

.split__media img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.split__media::after {
    position: absolute;
    right: -18px;
    bottom: -18px;
    z-index: -1;
    width: 38%;
    height: 40%;
    content: "";
    border-radius: 28px;
    background: var(--brand-orange);
    opacity: 0.95;
}

.split__content h2 {
    margin-bottom: 20px;
}

.split__content > p {
    color: var(--muted);
    font-size: 1.06rem;
}

.check-list,
.service-list {
    display: grid;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    gap: 15px;
}

.check-list li,
.service-list li {
    position: relative;
    padding-left: 32px;
    color: #34425f;
    font-weight: 650;
}

.check-list li::before,
.service-list li::before {
    position: absolute;
    top: 0.42em;
    left: 0;
    width: 19px;
    height: 19px;
    content: "";
    border-radius: 50%;
    background: var(--surface-blue);
    box-shadow: inset 0 0 0 6px var(--brand-blue);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.feature-card,
.responsibility-card {
    padding: 28px;
    border-radius: var(--radius-md);
}

.feature-card__icon,
.responsibility-card__icon,
.contact-item__icon {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    place-items: center;
    border-radius: 16px;
    color: var(--brand-blue);
    background: var(--surface-blue);
}

.feature-card__icon svg,
.responsibility-card__icon svg,
.contact-item__icon svg {
    width: 25px;
    height: 25px;
}

.feature-card h3,
.responsibility-card h3 {
    margin-bottom: 10px;
}

.feature-card p,
.responsibility-card p {
    color: var(--muted);
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--brand-navy-deep);
    box-shadow: var(--shadow-lg);
}

.contact-panel__intro {
    padding: clamp(38px, 6vw, 70px);
    color: #fff;
    background:
        radial-gradient(circle at 12% 15%, rgba(40, 84, 184, 0.55), transparent 38%),
        var(--brand-navy-deep);
}

.contact-panel__intro h2 {
    margin-bottom: 18px;
    color: #fff;
}

.contact-panel__intro p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.76);
}

.contact-panel__details {
    display: grid;
    align-content: center;
    gap: 4px;
    padding: clamp(32px, 5vw, 58px);
    background: #fff;
}

.contact-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
}

.contact-item:last-child {
    border-bottom: 0;
}

.contact-item__icon {
    width: 48px;
    height: 48px;
    margin: 0;
    border-radius: 14px;
}

.contact-item__label {
    display: block;
    margin-bottom: 2px;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
}

.contact-item__value {
    color: var(--brand-navy-deep);
    font-weight: 800;
    overflow-wrap: anywhere;
}

.contact-item a:hover,
.contact-item a:focus-visible {
    color: var(--brand-blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.page-hero {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    color: #fff;
    background: var(--brand-navy-deep);
}

.page-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 470px;
    align-items: flex-end;
    padding: 100px 0 72px;
}

.page-hero__content {
    max-width: 820px;
}

.page-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(2.45rem, 5vw, 4.35rem);
}

.page-hero p {
    max-width: 730px;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 22px;
    padding: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    list-style: none;
}

.breadcrumbs li + li::before {
    margin-right: 9px;
    content: "/";
    color: rgba(255, 255, 255, 0.44);
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
    color: #fff;
    text-decoration: underline;
}

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

.service-detail-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.service-detail-card__image {
    aspect-ratio: 780 / 410;
    overflow: hidden;
    background: var(--surface-soft);
}

.service-detail-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: clamp(28px, 4vw, 38px);
}

.service-detail-card__body h2 {
    margin-bottom: 12px;
    font-size: clamp(1.55rem, 2.5vw, 2.05rem);
}

.service-detail-card__body > p {
    color: var(--muted);
}

.service-list {
    margin-top: 22px;
}

.cta-band {
    position: relative;
    overflow: hidden;
    padding: clamp(42px, 7vw, 74px);
    border-radius: var(--radius-lg);
    color: #fff;
    background:
        radial-gradient(circle at 90% 15%, rgba(239, 138, 0, 0.32), transparent 35%),
        linear-gradient(135deg, var(--brand-navy-deep), var(--brand-navy));
    box-shadow: var(--shadow-lg);
}

.cta-band h2 {
    max-width: 760px;
    margin-bottom: 16px;
    color: #fff;
}

.cta-band p {
    max-width: 680px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.06rem;
}

.profile-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    align-items: start;
    gap: clamp(36px, 7vw, 84px);
}

.profile-copy h2 {
    margin-bottom: 20px;
}

.profile-copy .lead {
    color: #34425f;
    font-size: clamp(1.08rem, 2vw, 1.25rem);
    font-weight: 650;
}

.profile-copy p:not(.lead) {
    color: var(--muted);
}

.info-card {
    padding: clamp(28px, 4vw, 42px);
    border-radius: var(--radius-md);
}

.info-card h2 {
    margin-bottom: 24px;
    font-size: 1.55rem;
}

.entity-list {
    display: grid;
    margin: 0;
    gap: 0;
}

.entity-list__row {
    display: grid;
    grid-template-columns: 104px 1fr;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.entity-list__row:last-child {
    border-bottom: 0;
}

.entity-list dt {
    color: var(--muted);
    font-weight: 700;
}

.entity-list dd {
    margin: 0;
    color: var(--brand-navy-deep);
    font-weight: 750;
    overflow-wrap: anywhere;
}

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

.site-footer {
    color: rgba(255, 255, 255, 0.78);
    background: #09122e;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.15fr 0.7fr 1.15fr;
    gap: 54px;
    padding: 68px 0 48px;
}

.footer-brand img {
    width: 164px;
    margin-bottom: 22px;
    filter: drop-shadow(0 5px 18px rgba(255, 255, 255, 0.05));
}

.footer-brand p {
    max-width: 420px;
}

.footer-title {
    margin-bottom: 20px;
    color: #fff;
    font-size: 1.02rem;
    letter-spacing: 0;
}

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

.footer-links li,
.footer-contact li {
    margin-bottom: 11px;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-bottom {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

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

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

:focus-visible {
    outline: 3px solid rgba(239, 138, 0, 0.65);
    outline-offset: 3px;
}

@media (max-width: 980px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 3px;
        padding: 14px 20px 20px;
        background: #fff;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 18px 38px rgba(13, 23, 57, 0.12);
    }

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

    .nav-link,
    .language-link {
        width: 100%;
        justify-content: flex-start;
        margin: 0;
        padding-inline: 16px;
        border-radius: 10px;
    }

    .language-link {
        justify-content: center;
        margin-top: 5px;
    }

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

    .split,
    .profile-grid {
        grid-template-columns: 1fr;
    }

    .split__media {
        max-width: 760px;
    }

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

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

    .contact-item:nth-child(odd) {
        padding-right: 18px;
    }

    .footer-main {
        grid-template-columns: 1.2fr 0.8fr;
    }

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

@media (max-width: 720px) {
    :root {
        --header-height: 70px;
    }

    body {
        padding-bottom: 66px;
        font-size: 15.5px;
    }

    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .brand img {
        width: 132px;
    }

    .hero,
    .hero__inner {
        min-height: 650px;
    }

    .hero__inner {
        align-items: flex-start;
        padding: 82px 0 164px;
    }

    .hero__media::after,
    .page-hero__media::after {
        background:
            linear-gradient(90deg, rgba(5, 12, 35, 0.9), rgba(9, 23, 58, 0.64)),
            linear-gradient(0deg, rgba(5, 12, 35, 0.42), rgba(5, 12, 35, 0.08));
    }

    .hero__actions,
    .cta-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-facts__grid {
        grid-template-columns: 1fr;
        padding: 12px 0;
    }

    .hero-fact {
        min-height: 45px;
        justify-content: flex-start;
        padding: 8px 12px;
        font-size: 0.93rem;
    }

    .hero-fact + .hero-fact {
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        border-left: 0;
    }

    .hero-fact svg {
        width: 22px;
        height: 22px;
    }

    .section {
        padding: 68px 0;
    }

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

    .card-grid,
    .feature-grid,
    .services-layout,
    .responsibility-grid {
        grid-template-columns: 1fr;
    }

    .service-card__body,
    .feature-card,
    .responsibility-card {
        padding: 24px;
    }

    .split {
        gap: 44px;
    }

    .split__media::after {
        right: -8px;
        bottom: -10px;
    }

    .contact-panel__intro,
    .contact-panel__details,
    .cta-band {
        padding: 32px 24px;
    }

    .contact-panel__details {
        display: block;
    }

    .contact-item:nth-child(odd) {
        padding-right: 0;
    }

    .page-hero,
    .page-hero__inner {
        min-height: 420px;
    }

    .page-hero__inner {
        padding: 90px 0 52px;
    }

    .entity-list__row {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 54px 0 38px;
    }

    .footer-main > :last-child {
        grid-column: auto;
    }

    .footer-bottom {
        min-height: 90px;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        padding: 20px 0;
    }

    .mobile-contact-bar {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1200;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
        padding: 7px 10px calc(7px + env(safe-area-inset-bottom));
        background: rgba(9, 18, 46, 0.96);
        box-shadow: 0 -8px 28px rgba(5, 12, 35, 0.2);
        backdrop-filter: blur(12px);
    }

    .mobile-contact-bar a {
        display: flex;
        min-height: 48px;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: #fff;
        border-radius: 10px;
        font-weight: 800;
    }

    .mobile-contact-bar a:first-child {
        background: var(--brand-orange-dark);
    }

    .mobile-contact-bar a:last-child {
        background: var(--brand-blue);
    }

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

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

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

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

@media print {
    .site-header,
    .mobile-contact-bar,
    .hero__actions,
    .cta-actions {
        display: none !important;
    }

    body {
        padding: 0;
        color: #000;
        background: #fff;
    }

    .hero,
    .page-hero {
        min-height: auto;
        color: #000;
        background: #fff;
    }

    .hero__media,
    .page-hero__media,
    .hero__facts {
        display: none;
    }

    .hero__inner,
    .page-hero__inner {
        min-height: auto;
        padding: 30px 0;
    }

    .hero h1,
    .page-hero h1 {
        color: #000;
    }
}

address {
    font-style: normal;
}

.btn > svg {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
}

.footer-brand img {
    padding: 8px 12px;
    background: #fff;
    border-radius: 12px;
}

@media print {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ===== Harchen R5 complete front-end additions ===== */
.brand {
    width: 174px;
    height: var(--header-height);
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.brand img {
    display: block;
    width: 100%;
    max-width: 174px;
    max-height: 68px;
    object-fit: contain;
    object-position: center center;
}

.nav-quote {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 9px 17px;
    margin-left: 5px;
    border-radius: 999px;
    color: #18213b;
    background: var(--brand-orange);
    font-size: .95rem;
    font-weight: 850;
    transition: transform .2s ease, background .2s ease;
}

.nav-quote:hover,
.nav-quote:focus-visible {
    color: #18213b;
    background: #ff9d16;
    transform: translateY(-1px);
}

.text-link svg {
    width: 18px;
    height: 18px;
}

.noscript-language {
    margin-top: 18px;
    color: rgba(255,255,255,.86);
}

.noscript-language a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

.content-narrow {
    max-width: 900px;
}

.lead-copy {
    color: #34425f;
    font-size: clamp(1.08rem, 2vw, 1.24rem);
    font-weight: 620;
}

.notice-box {
    margin-top: 28px;
    padding: 20px 22px;
    border: 1px solid #cbd8f4;
    border-left: 5px solid var(--brand-blue);
    border-radius: 14px;
    color: #32405f;
    background: #f4f7ff;
}

.notice-box--compact {
    margin-top: 26px;
    padding: 16px 18px;
    font-size: .94rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: step;
}

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

.process-grid li {
    min-height: 100%;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.process-grid li > span {
    display: inline-grid;
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: var(--brand-navy);
    font-weight: 850;
}

.process-grid h3 {
    margin-bottom: 10px;
}

.process-grid p {
    color: var(--muted);
}

.faq-wrap {
    max-width: 980px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(13,23,57,.05);
}

.faq-item summary {
    position: relative;
    padding: 20px 58px 20px 22px;
    color: var(--brand-navy-deep);
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    position: absolute;
    top: 50%;
    right: 22px;
    width: 24px;
    height: 24px;
    content: "+";
    color: var(--brand-blue);
    font-size: 1.35rem;
    line-height: 22px;
    text-align: center;
    transform: translateY(-50%);
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-answer {
    padding: 0 22px 22px;
    color: var(--muted);
}

.faq-answer p {
    margin: 0;
}

.form-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .42fr);
    align-items: start;
    gap: clamp(32px, 6vw, 72px);
}

.enquiry-form {
    position: relative;
    padding: clamp(26px, 4vw, 42px);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

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

.field {
    display: grid;
    gap: 8px;
}

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

.field label,
.consent {
    color: #263553;
    font-weight: 760;
}

.field label span {
    color: #b74426;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid #cfd7e5;
    border-radius: 11px;
    color: var(--ink);
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.field textarea {
    min-height: 120px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--brand-blue);
    outline: none;
    box-shadow: 0 0 0 4px rgba(40,84,184,.12);
}

.field [aria-invalid="true"] {
    border-color: #b74426;
    box-shadow: 0 0 0 4px rgba(183,68,38,.1);
}

.consent {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 11px;
    margin: 24px 0 14px;
    align-items: start;
    font-size: .94rem;
}

.consent input {
    width: 18px;
    height: 18px;
    margin-top: 4px;
    accent-color: var(--brand-blue);
}

.consent a {
    color: var(--brand-blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.form-note {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: .9rem;
}

.form-status {
    display: none;
    margin-top: 20px;
    padding: 16px 18px;
    border-radius: 12px;
    font-weight: 700;
}

.form-status.is-visible {
    display: block;
}

.form-status.is-info {
    color: #24426c;
    border: 1px solid #c6d8f4;
    background: #eef5ff;
}

.form-status.is-error {
    color: #7d2d1b;
    border: 1px solid #e4bdb2;
    background: #fff4f1;
}

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

.sticky-card {
    position: sticky;
    top: calc(var(--header-height) + 24px);
}

.legal-content h2 {
    margin-top: 42px;
    margin-bottom: 14px;
    font-size: clamp(1.35rem, 2.3vw, 1.85rem);
}

.legal-content p,
.legal-content li {
    color: #4e5b73;
}

.legal-content a {
    color: var(--brand-blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-main--four {
    grid-template-columns: 1.25fr .78fr .72fr 1.1fr;
    gap: 38px;
}

.footer-brand img {
    box-sizing: content-box;
    width: 170px;
    height: auto;
    max-height: 74px;
    object-fit: contain;
    object-position: center;
    padding: 8px 12px;
}

.error-page {
    display: grid;
    min-height: 100vh;
    padding: 40px 20px;
    place-items: center;
    text-align: center;
    background: var(--surface-soft);
}

.error-page > div {
    max-width: 620px;
}

.error-page img {
    width: 220px;
    margin: 0 auto 24px;
}

.error-code {
    margin: 0;
    color: var(--brand-orange-dark);
    font-size: clamp(4rem, 14vw, 8rem);
    font-weight: 900;
    line-height: 1;
}

@media (max-width: 1100px) {
    .nav-link,
    .language-link,
    .nav-quote {
        padding-inline: 12px;
        font-size: .9rem;
    }

    .footer-main--four {
        grid-template-columns: 1.2fr .8fr .9fr;
    }

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

@media (max-width: 980px) {
    .brand {
        height: var(--header-height);
    }

    .nav-quote,
    .language-link {
        width: 100%;
        justify-content: center;
        margin: 5px 0 0;
        border-radius: 10px;
    }

    .feature-grid--three,
    .process-grid,
    .process-grid--three,
    .form-layout {
        grid-template-columns: 1fr 1fr;
    }

    .form-layout > :first-child {
        grid-column: 1 / -1;
    }

    .sticky-card {
        position: static;
    }
}

@media (max-width: 720px) {
    .brand {
        width: 146px;
    }

    .brand img {
        max-width: 146px;
        max-height: 58px;
    }

    .feature-grid--three,
    .process-grid,
    .process-grid--three,
    .form-layout,
    .form-grid,
    .footer-main--four {
        grid-template-columns: 1fr;
    }

    .field--full,
    .form-layout > :first-child,
    .footer-main--four > :last-child {
        grid-column: auto;
    }

    .process-grid li,
    .enquiry-form {
        padding: 24px;
    }

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

    .mobile-contact-bar a {
        min-width: 0;
        padding: 0 4px;
        font-size: .88rem;
    }

    .mobile-contact-bar a:nth-child(2) {
        background: var(--brand-blue);
    }

    .mobile-contact-bar a:nth-child(3) {
        background: #33477f;
    }
}

/* Responsive image wrappers */
.hero__media picture,
.page-hero__media picture,
.service-card__image picture,
.service-detail-card__image picture {
    display: block;
    width: 100%;
    height: 100%;
}

/* R6 lead-generation, route and utility pages */
.home-route-start {
    position: relative;
    z-index: 4;
    margin-top: 80px;
    padding: 0 0 clamp(56px, 8vw, 92px);
}

.route-start-card {
    display: grid;
    grid-template-columns: minmax(260px, .72fr) minmax(0, 1.5fr);
    gap: 28px;
    align-items: end;
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid rgba(255,255,255,.34);
    border-radius: 22px;
    background: rgba(255,255,255,.97);
    box-shadow: 0 22px 60px rgba(16,35,73,.18);
}

.route-start-card h2 {
    margin: 4px 0 8px;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.route-start-card p {
    margin: 0;
    color: var(--muted);
}

.route-start-card form {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    gap: 12px;
    align-items: end;
}

.route-start-card label {
    display: grid;
    gap: 7px;
    color: #263553;
    font-size: .86rem;
    font-weight: 760;
}

.route-start-card input,
.route-start-card select {
    width: 100%;
    min-height: 50px;
    padding: 11px 13px;
    border: 1px solid #ccd5e4;
    border-radius: 10px;
    background: #fff;
}

.lead-funnel-layout,
.calculator-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(290px, .38fr);
    align-items: start;
    gap: clamp(30px, 5vw, 64px);
}

.wizard-progress {
    display: grid;
    grid-template-columns: repeat(var(--wizard-count, 4), minmax(0, 1fr));
    gap: 8px;
    padding: 0;
    margin: 0 0 32px;
    list-style: none;
}

.wizard-progress li {
    position: relative;
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 9px;
    align-items: center;
    min-width: 0;
    color: #7a8597;
    font-size: .84rem;
}

.wizard-progress li::after {
    position: absolute;
    right: 8px;
    bottom: -11px;
    left: 0;
    height: 3px;
    border-radius: 999px;
    background: #e4e9f2;
    content: "";
}

.wizard-progress li span {
    display: grid;
    width: 34px;
    height: 34px;
    border: 1px solid #cdd6e6;
    border-radius: 50%;
    place-items: center;
    background: #fff;
    font-weight: 850;
}

.wizard-progress li strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wizard-progress li.is-active,
.wizard-progress li.is-complete {
    color: var(--ink);
}

.wizard-progress li.is-active span,
.wizard-progress li.is-complete span {
    border-color: var(--brand-blue);
    color: #fff;
    background: var(--brand-blue);
}

.wizard-progress li.is-active::after,
.wizard-progress li.is-complete::after {
    background: var(--brand-orange);
}

.wizard-step {
    min-width: 0;
    padding: 0;
    border: 0;
}

.wizard-step > legend {
    width: 100%;
    margin: 0 0 22px;
    color: var(--ink);
    font-size: clamp(1.28rem, 2vw, 1.7rem);
    font-weight: 850;
}

.wizard-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.choice-fieldset {
    min-width: 0;
    padding: 0;
    border: 0;
}

.choice-fieldset legend {
    margin-bottom: 10px;
    color: #263553;
    font-weight: 760;
}

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

.choice-card {
    display: flex;
    gap: 9px;
    align-items: center;
    min-height: 48px;
    padding: 10px 12px;
    border: 1px solid #d5dce9;
    border-radius: 10px;
    color: #38465f;
    background: #fff;
    cursor: pointer;
}

.choice-card:has(input:checked) {
    border-color: var(--brand-blue);
    background: #f1f6ff;
    box-shadow: inset 0 0 0 1px var(--brand-blue);
}

.choice-card input {
    width: 17px;
    height: 17px;
    accent-color: var(--brand-blue);
}

.lead-result {
    margin-top: 26px;
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid #b9d3c4;
    border-radius: var(--radius-md);
    background: #f3fbf6;
    box-shadow: var(--shadow-sm);
}

.lead-result pre {
    max-height: 440px;
    overflow: auto;
    padding: 18px;
    border: 1px solid #d2dfd5;
    border-radius: 12px;
    color: #263a31;
    background: #fff;
    font: 500 .9rem/1.72 ui-monospace, SFMono-Regular, Consolas, monospace;
    white-space: pre-wrap;
    word-break: break-word;
}

.desktop-lead-rail {
    position: fixed;
    z-index: 60;
    top: 48%;
    right: 0;
    display: grid;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.18);
    border-right: 0;
    border-radius: 14px 0 0 14px;
    box-shadow: 0 14px 36px rgba(10,29,65,.24);
    transform: translateY(-50%);
}

.desktop-lead-rail a {
    display: grid;
    min-width: 48px;
    min-height: 88px;
    padding: 10px 8px;
    place-items: center;
    color: #fff;
    background: var(--brand-blue);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
    writing-mode: vertical-rl;
}

.desktop-lead-rail a + a {
    border-top: 1px solid rgba(255,255,255,.2);
}

.desktop-lead-rail a:nth-child(2) { background: var(--brand-orange-dark); }
.desktop-lead-rail a:nth-child(3) { background: #223762; }
.desktop-lead-rail a:hover { filter: brightness(1.08); }

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

.tool-card {
    display: flex;
    min-height: 270px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    flex-direction: column;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.tool-card__icon {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    border-radius: 14px;
    place-items: center;
    color: var(--brand-blue);
    background: #edf4ff;
}

.tool-card__icon svg { width: 28px; height: 28px; }
.tool-card h2 { margin: 0 0 10px; font-size: 1.3rem; }
.tool-card p { margin: 0 0 22px; color: var(--muted); }
.tool-card .text-link { margin-top: auto; }

.calculator-card {
    padding: clamp(26px, 4vw, 42px);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.calculator-card form > .btn { margin-top: 24px; }

.calculator-result {
    margin-top: 30px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.calculator-result dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 18px 0 26px;
}

.calculator-result dl div {
    padding: 16px;
    border: 1px solid #dce3ef;
    border-radius: 12px;
    background: #f8faff;
}

.calculator-result dt {
    color: var(--muted);
    font-size: .84rem;
}

.calculator-result dd {
    margin: 5px 0 0;
    color: var(--ink);
    font-size: 1.18rem;
    font-weight: 850;
}

.guide-list {
    display: grid;
    gap: 16px;
    max-width: 980px;
}

.guide-section {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 22px;
    padding: clamp(22px, 3vw, 32px);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.guide-section > span {
    display: grid;
    width: 54px;
    height: 54px;
    border-radius: 15px;
    place-items: center;
    color: #fff;
    background: var(--brand-blue);
    font-weight: 900;
}

.guide-section h2 { margin: 0 0 8px; font-size: 1.3rem; }
.guide-section p { margin: 0; color: var(--muted); }

@media (max-width: 1180px) {
    .route-start-card {
        grid-template-columns: 1fr;
    }

    .route-start-card form {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .route-start-card form .btn {
        grid-column: 1 / -1;
    }

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

@media (max-width: 980px) {
    .desktop-lead-rail { display: none; }
    .lead-funnel-layout,
    .calculator-layout { grid-template-columns: 1fr; }
    .choice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
    .home-route-start {
        margin-top: 40px;
    }

    .route-start-card form,
    .choice-grid,
    .tool-grid,
    .calculator-result dl {
        grid-template-columns: 1fr;
    }

    .wizard-progress {
        gap: 5px;
    }

    .wizard-progress li {
        grid-template-columns: 30px;
        justify-items: center;
        text-align: center;
    }

    .wizard-progress li span {
        width: 30px;
        height: 30px;
    }

    .wizard-progress li strong {
        max-width: 72px;
        font-size: .72rem;
    }

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


/* R8 searchable route selectors and visible route directory */
.smart-combobox {
    position: relative;
    min-width: 0;
}

.smart-combobox__control {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.smart-combobox__input {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.field .smart-combobox__input,
.route-start-field .smart-combobox__input {
    padding-right: 48px;
}

.smart-combobox__toggle {
    position: absolute;
    top: 1px;
    right: 1px;
    bottom: 1px;
    display: grid;
    width: 45px;
    padding: 0;
    border: 0;
    border-left: 1px solid #d9e0eb;
    border-radius: 0 10px 10px 0;
    color: #40516f;
    background: #f8faff;
    cursor: pointer;
    place-items: center;
}

.smart-combobox__toggle svg {
    width: 18px;
    height: 18px;
    transition: transform .18s ease;
}

.smart-combobox.is-open .smart-combobox__toggle svg {
    transform: rotate(180deg);
}

.smart-combobox__list {
    position: absolute;
    z-index: 180;
    top: calc(100% + 7px);
    right: 0;
    left: 0;
    max-height: 330px;
    overflow: auto;
    padding: 7px;
    border: 1px solid #cfd8e7;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(15, 35, 75, .18);
}

.smart-combobox__option {
    display: grid;
    width: 100%;
    gap: 2px;
    padding: 10px 11px;
    border: 0;
    border-radius: 8px;
    color: var(--ink);
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.smart-combobox__option:hover,
.smart-combobox__option.is-active {
    background: #eef4ff;
}

.smart-combobox__option-label {
    font-weight: 780;
}

.smart-combobox__option-meta {
    color: var(--muted);
    font-size: .78rem;
}

.smart-combobox__empty {
    margin: 0;
    padding: 12px;
    color: var(--muted);
    font-size: .86rem;
}

.field-help {
    margin: 0;
    color: #6a768b;
    font-size: .78rem;
    line-height: 1.55;
}

.route-start-field {
    display: grid;
    gap: 7px;
    min-width: 0;
    color: #263553;
    font-size: .86rem;
    font-weight: 760;
}

.route-start-field input {
    width: 100%;
    min-height: 50px;
    padding: 11px 13px;
    border: 1px solid #ccd5e4;
    border-radius: 10px;
    color: var(--ink);
    background: #fff;
}

.route-start-field input:focus {
    border-color: var(--brand-blue);
    outline: none;
    box-shadow: 0 0 0 4px rgba(40,84,184,.12);
}

.matched-route-card {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 17px;
    border: 1px solid #c9d9f0;
    border-radius: 12px;
    background: #f2f7ff;
}

.matched-route-card strong {
    color: #273b61;
}

.matched-route-card a {
    color: var(--brand-blue);
    font-weight: 820;
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

.route-directory-card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.route-directory-card h3 {
    margin: 0 0 8px;
    font-size: 1.18rem;
}

.route-directory-card p {
    margin: 0 0 16px;
    color: var(--muted);
}

.route-link-list,
.route-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.route-link-list a,
.route-chip-list a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    padding: 8px 11px;
    border: 1px solid #d3dceb;
    border-radius: 999px;
    color: #2b4777;
    background: #f8faff;
    font-size: .88rem;
    font-weight: 760;
}

.route-link-list a:hover,
.route-link-list a:focus-visible,
.route-chip-list a:hover,
.route-chip-list a:focus-visible {
    border-color: var(--brand-blue);
    color: #fff;
    background: var(--brand-blue);
}

.route-directory-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.route-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .38fr);
    align-items: start;
    gap: clamp(30px, 5vw, 60px);
}

.route-content-card {
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.route-content-card + .route-content-card {
    margin-top: 22px;
}

.route-content-card h2 {
    margin: 0 0 12px;
    font-size: clamp(1.32rem, 2vw, 1.72rem);
}

.route-content-card p,
.route-content-card li {
    color: var(--muted);
}

.route-node-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
    margin: 18px 0 0;
    list-style: none;
}

.route-node-grid li {
    padding: 14px;
    border: 1px solid #dce3ee;
    border-radius: 10px;
    color: #34435d;
    background: #f9fbff;
}

.route-side-card {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    padding: 24px;
    border-radius: var(--radius-md);
    color: #fff;
    background: linear-gradient(145deg, #17285f, #244b9d);
    box-shadow: var(--shadow-md);
}

.route-side-card h2 {
    color: #fff;
    font-size: 1.35rem;
}

.route-side-card p,
.route-side-card li {
    color: rgba(255,255,255,.82);
}

.route-side-card .btn {
    width: 100%;
    margin-top: 10px;
}

@media (max-width: 980px) {
    .route-directory-grid,
    .route-content-grid {
        grid-template-columns: 1fr;
    }
    .route-side-card { position: static; }
}

@media (max-width: 720px) {
    .matched-route-card {
        align-items: flex-start;
        flex-direction: column;
    }
    .route-node-grid { grid-template-columns: 1fr; }
    .smart-combobox__list { max-height: 280px; }
}


/* R10 combobox layout: in-form lists expand the grid instead of covering fields. */
.enquiry-form .smart-combobox__list {
    position: static;
    inset: auto;
    width: 100%;
    max-height: min(280px, 42vh);
    margin-top: 8px;
    box-shadow: 0 12px 30px rgba(15, 35, 75, .13);
}

.enquiry-form .smart-combobox.is-open {
    z-index: 2;
}

.enquiry-form .form-grid > .field:has(> .smart-combobox) {
    grid-column: 1 / -1;
}

.enquiry-form .field:has(.smart-combobox.is-open) {
    align-self: start;
}

.smart-combobox__option:focus-visible {
    outline: 2px solid var(--brand-blue);
    outline-offset: -2px;
}

@media (max-width: 720px) {
    .enquiry-form .smart-combobox__list {
        max-height: min(240px, 38vh);
    }
}


/* R11 header logo spacing: reduce rendered logo size while preserving intrinsic dimensions. */
.brand {
    width: 148px;
}

.brand img {
    width: 100%;
    max-width: 148px;
    max-height: 58px;
}

@media (max-width: 720px) {
    .brand {
        width: 126px;
    }

    .brand img {
        max-width: 126px;
        max-height: 50px;
    }
}


/* R12 form label alignment: keep label text and required marker on one line. */
.route-start-card .route-start-field > label {
    display: inline-flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: .14em;
    width: max-content;
    max-width: 100%;
    white-space: nowrap;
    line-height: 1.35;
}

.route-start-card .route-start-field > label > span[aria-hidden="true"] {
    flex: 0 0 auto;
    line-height: 1;
}

@media (max-width: 360px) {
    .route-start-card .route-start-field > label {
        font-size: .82rem;
    }
}


/* R13 header/footer logo sizing and contact update. */
:root {
    --header-height: 92px;
}

.brand {
    width: 118px;
    height: var(--header-height);
}

.brand img {
    display: block;
    width: 100%;
    max-width: 100%;
    max-height: 50px;
    height: auto;
    object-fit: contain;
    object-position: center center;
}

.footer-brand img {
    width: 126px;
    max-width: 100%;
    max-height: 54px;
    height: auto;
    padding: 6px 10px;
    object-fit: contain;
    object-position: center center;
}

@media (max-width: 720px) {
    :root {
        --header-height: 78px;
    }

    .brand {
        width: 108px;
    }

    .footer-brand img {
        width: 118px;
        max-height: 50px;
    }
}


/* R14 footer logo padding requested by project owner. */
.footer-brand img {
    width: 126px;
    max-width: 100%;
    max-height: 54px;
    height: auto;
    object-fit: contain;
    object-position: center center;
    padding: 50px 20px;
}


/* R15 traffic growth content hubs and tools. */
.resource-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:24px; }
.resource-card { background:#fff; border:1px solid rgba(23,40,95,.12); border-radius:18px; padding:26px; box-shadow:0 14px 38px rgba(23,40,95,.08); }
.resource-card h2 { margin:10px 0 12px; font-size:1.25rem; }
.resource-card h2 a { color:var(--navy,#17285f); text-decoration:none; }
.resource-card__tag { color:#d8612a; font-weight:700; font-size:.78rem; letter-spacing:.08em; text-transform:uppercase; }
.text-link { display:inline-flex; margin-top:14px; font-weight:700; color:#17285f; }
.resource-callout { display:flex; align-items:center; justify-content:space-between; gap:30px; padding:34px; border-radius:22px; background:#fff; border:1px solid rgba(23,40,95,.12); }
.article-layout { display:grid; grid-template-columns:minmax(0,1fr) 320px; gap:32px; align-items:start; }
.article-content { background:#fff; border-radius:18px; padding:32px; border:1px solid rgba(23,40,95,.12); }
.article-content .lead { font-size:1.1rem; color:#34416a; }
.check-list { display:grid; gap:12px; padding-left:1.25rem; }
.notice-box { background:#f4f7ff; border-left:4px solid #17285f; padding:16px 18px; border-radius:10px; margin:18px 0; }
.process-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:20px; margin-top:24px; }
.process-card { background:#fff; border:1px solid rgba(23,40,95,.12); border-radius:18px; padding:24px; }
.process-card span { display:inline-grid; place-items:center; width:38px; height:38px; border-radius:50%; background:#17285f; color:#fff; font-weight:700; }
.process-card h2 { font-size:1.05rem; margin-top:18px; }
.tool-layout { display:grid; grid-template-columns:minmax(0,1fr) 320px; gap:30px; align-items:start; }
.tool-card { background:#fff; border:1px solid rgba(23,40,95,.12); border-radius:20px; padding:28px; box-shadow:0 14px 38px rgba(23,40,95,.08); }
.tool-result { margin-top:24px; padding:22px; border-radius:16px; background:#f4f7ff; }
.tool-result dl { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px; }
.tool-result dl div { background:#fff; border-radius:12px; padding:14px; }
.tool-result dt { color:#66708f; font-size:.85rem; }
.tool-result dd { margin:6px 0 0; font-weight:800; color:#17285f; }
.question-list { display:grid; gap:18px; margin-bottom:22px; }
.question-list label { display:grid; gap:8px; font-weight:700; }
.faq-list { display:grid; gap:14px; max-width:900px; }
.faq-item { background:#fff; border:1px solid rgba(23,40,95,.12); border-radius:14px; padding:0 20px; }
.faq-item summary { cursor:pointer; font-weight:800; color:#17285f; padding:20px 0; }
.faq-item div { padding:0 0 20px; }
@media (max-width: 980px) { .resource-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } .article-layout,.tool-layout { grid-template-columns:1fr; } .process-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (max-width: 640px) { .resource-grid,.process-grid { grid-template-columns:1fr; } .resource-callout { align-items:flex-start; flex-direction:column; } .tool-result dl { grid-template-columns:1fr; } }

/* R17 conversion UI audit: consistent, readable actions on dark and light surfaces. */
.btn {
    position: relative;
    max-width: 100%;
    min-height: 50px;
    padding: 12px 22px;
    border-width: 1px;
    cursor: pointer;
    text-align: center;
    text-decoration: none !important;
    white-space: nowrap;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.btn:focus-visible {
    outline: 3px solid rgba(40, 94, 199, .34);
    outline-offset: 3px;
}
.btn:active { transform: translateY(0); }
.btn[disabled], .btn.is-loading { opacity: .62; cursor: wait; transform: none; }
.hero__actions .btn { min-width: 190px; }
.cta-actions .btn { min-width: 178px; }
.route-directory-actions,
.cta-actions,
.hero__actions,
.wizard-actions {
    align-items: stretch;
}
.route-start-card form .btn {
    width: 100%;
    min-width: 0;
    align-self: end;
    box-shadow: 0 12px 26px rgba(239, 138, 0, .2);
}
.route-side-card .btn,
.lead-result .btn,
.wizard-actions .btn,
.calculator-result .btn,
.tool-result .btn {
    min-width: 0;
}
.route-side-card .btn--secondary,
.lead-result .btn--secondary,
.wizard-actions .btn--secondary,
.calculator-result .btn--secondary,
.tool-result .btn--secondary,
.article-content .btn--secondary,
.tool-card .btn--secondary {
    color: var(--brand-navy);
    border-color: rgba(23, 40, 95, .24);
    background: #fff;
    box-shadow: 0 8px 20px rgba(23, 40, 95, .08);
}
.route-side-card .btn--secondary:hover,
.lead-result .btn--secondary:hover,
.wizard-actions .btn--secondary:hover,
.calculator-result .btn--secondary:hover,
.tool-result .btn--secondary:hover,
.article-content .btn--secondary:hover,
.tool-card .btn--secondary:hover {
    color: #fff;
    border-color: var(--brand-blue);
    background: var(--brand-blue);
}
.route-side-card { overflow: hidden; }
.route-side-card .btn { width: 100%; margin-top: 10px; }
.route-side-card .btn + .btn { margin-left: 0; }
.resource-callout .btn { flex: 0 0 auto; }

@media (max-width: 720px) {
    .hero__actions,
    .cta-actions,
    .route-directory-actions,
    .wizard-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }
    .hero__actions .btn,
    .cta-actions .btn,
    .route-directory-actions .btn,
    .wizard-actions .btn,
    .resource-callout .btn {
        width: 100%;
        min-width: 0;
    }
    .route-start-card form .btn { min-height: 52px; }
}

/* R22 header-route alignment, banner spacing and cache-safe UI polish. */
@media (min-width: 1181px) {
    .route-start-card form {
        align-items: start;
    }
    .route-start-card form > .btn {
        align-self: start;
        min-height: 50px;
        margin-top: 26px;
    }
}
@media (max-width: 1180px) {
    .route-start-card form > .btn {
        margin-top: 0;
    }
}
.route-start-card form > .btn {
    height: 50px;
    line-height: 1.2;
}
.route-start-card .smart-combobox__control,
.route-start-card .smart-combobox__input {
    min-height: 50px;
}


/* R23 enquiry completion: the result replaces the wizard in the same content slot. */
.lead-result.is-submission-complete {
    display: grid;
    gap: 18px;
    min-height: 420px;
    align-content: start;
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid rgba(40, 94, 199, .18);
    border-radius: 24px;
    background: linear-gradient(180deg, #fff 0%, #f7f9fe 100%);
    box-shadow: 0 22px 60px rgba(23, 40, 95, .12);
}
.lead-result.is-submission-complete h2 { margin: 0; }
.lead-result.is-submission-complete pre { max-height: 440px; overflow: auto; }
.lead-result.is-submission-complete:focus { outline: 3px solid rgba(40, 94, 199, .22); outline-offset: 4px; }
@media (max-width: 720px) {
    .lead-result.is-submission-complete { min-height: 0; padding: 22px 18px; border-radius: 18px; }
    .lead-result.is-submission-complete .cta-actions { display: grid; grid-template-columns: 1fr; }
    .lead-result.is-submission-complete .cta-actions .btn { width: 100%; }
}

/* R26 single-source public header and consistent navigation typography. */
@media (min-width: 1181px) {
    .navbar { gap: 14px; }
    .brand { width: 126px; }
    .brand img { max-width: 126px; max-height: 50px; }
    #main-navigation.nav-menu {
        flex: 1 1 auto;
        justify-content: flex-end;
        gap: 3px;
        min-width: 0;
    }
    #main-navigation .nav-link,
    #main-navigation .language-link,
    #main-navigation .nav-quote {
        flex: 0 0 auto;
        min-height: 44px;
        white-space: nowrap;
        font-size: .97rem;
        line-height: 1.5;
    }
    #main-navigation .nav-link,
    #main-navigation .language-link { padding: 8px 10px; }
    #main-navigation .nav-quote { padding: 9px 13px; margin-left: 3px; }
}

@media (max-width: 1180px) {
    .nav-toggle { display: block; }
    #main-navigation.nav-menu {
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        left: 0;
        display: none;
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
        align-items: stretch;
        flex-direction: column;
        gap: 3px;
        padding: 14px 20px 20px;
        background: #fff;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 18px 38px rgba(13, 23, 57, .12);
    }
    #main-navigation.nav-menu.is-open { display: flex; }
    #main-navigation .nav-link,
    #main-navigation .language-link,
    #main-navigation .nav-quote {
        width: 100%;
        justify-content: flex-start;
        margin: 0;
        padding-inline: 16px;
        border-radius: 10px;
        font-size: 1rem;
        line-height: 1.5;
    }
    #main-navigation .language-link,
    #main-navigation .nav-quote { justify-content: center; margin-top: 5px; }
}

.desktop-lead-rail {
    right: -1px;
    z-index: 920;
    margin: 0;
    box-sizing: border-box;
    transform: translate3d(0, -50%, 0);
    isolation: isolate;
}
.desktop-lead-rail a { min-width: 52px; }

.qualification-summary {
    background: linear-gradient(180deg, #fff 0%, #f5f8ff 100%);
}
.qualification-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.qualification-summary-card {
    display: grid;
    min-height: 146px;
    align-content: space-between;
    gap: 18px;
    padding: 24px;
    border: 1px solid rgba(23, 40, 95, .14);
    border-radius: 18px;
    color: var(--ink);
    background: #fff;
    box-shadow: 0 14px 34px rgba(23, 40, 95, .08);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.qualification-summary-card:hover,
.qualification-summary-card:focus-visible {
    border-color: rgba(40, 94, 199, .42);
    box-shadow: 0 18px 42px rgba(23, 40, 95, .13);
    transform: translateY(-3px);
}
.qualification-summary-card span { color: var(--brand-navy); font-weight: 800; line-height: 1.45; }
.qualification-summary-card strong { color: #16784a; font-size: 1.02rem; }
.section-actions { display: flex; justify-content: center; margin-top: 28px; }

.qualification-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 34px;
    align-items: center;
}
.qualification-status {
    padding: 26px;
    border: 1px solid rgba(22, 120, 74, .2);
    border-radius: 20px;
    background: #f2fbf6;
    box-shadow: var(--shadow-sm);
}
.qualification-status span { display: block; color: var(--muted); font-weight: 700; }
.qualification-status strong { display: block; margin: 8px 0; color: #16784a; font-size: 1.6rem; }
.qualification-status p { margin: 0; color: var(--muted); }
.qualification-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
.qualification-card {
    scroll-margin-top: calc(var(--header-height) + 28px);
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid rgba(23, 40, 95, .13);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(23, 40, 95, .08);
}
.qualification-card__tag {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--brand-navy);
    background: var(--surface-blue);
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .05em;
}
.qualification-card h2 { margin: 14px 0 18px; font-size: 1.35rem; }
.credential-list { margin: 0; }
.credential-list > div {
    display: grid;
    grid-template-columns: minmax(120px, .8fr) minmax(0, 1.4fr);
    gap: 18px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
}
.credential-list > div:last-child { border-bottom: 0; }
.credential-list dt { color: var(--muted); font-weight: 750; }
.credential-list dd { margin: 0; color: var(--ink); font-weight: 650; word-break: break-word; }
.credential-list code,
.verification-query code,
.entity-list code {
    padding: 3px 7px;
    border-radius: 7px;
    color: var(--brand-navy);
    background: #f1f4fa;
    font-size: .9em;
    white-space: normal;
    word-break: break-all;
}
.status-pill {
    display: inline-flex;
    padding: 5px 10px;
    border-radius: 999px;
    color: #11663f;
    background: #e9f8ef;
    font-size: .86rem;
    font-weight: 850;
}
.card-note { margin: 18px 0 0; padding: 14px 16px; border-radius: 12px; color: #5b647d; background: #f7f8fb; font-size: .92rem; }
.verification-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
    gap: 36px;
    align-items: center;
    padding: clamp(28px, 4vw, 44px);
    border-radius: 24px;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-navy-deep), #183979);
    box-shadow: var(--shadow-lg);
}
.verification-panel h2,
.verification-panel .eyebrow { color: #fff; }
.verification-panel p { color: rgba(255,255,255,.8); }
.verification-query { display: grid; gap: 8px; margin-top: 20px; }
.verification-query span { color: rgba(255,255,255,.68); font-size: .86rem; }
.verification-query code { width: fit-content; color: #fff; background: rgba(255,255,255,.14); }
.verification-actions { display: grid; gap: 12px; }
.verification-actions .btn { width: 100%; white-space: normal; }
.verification-actions .text-link { color: #fff; justify-content: center; }
.info-card__action { width: 100%; margin-top: 20px; }

@media (max-width: 980px) {
    .qualification-summary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .qualification-intro,
    .verification-panel { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
    .qualification-summary-grid,
    .qualification-grid { grid-template-columns: 1fr; }
    .qualification-summary-card { min-height: 118px; }
    .credential-list > div { grid-template-columns: 1fr; gap: 5px; }
    .verification-panel { padding: 24px 18px; border-radius: 18px; }
}

/* R32: qualifications are embedded in About Us. */
#qualifications {
    scroll-margin-top: 96px;
}
#qualifications + .section--soft .qualification-grid {
    margin-top: 0;
}

/* R48 compact language selector, stable multilingual header and mobile contact spacing. */
.language-switcher{position:relative;flex:0 0 auto;margin-left:4px}
.language-switcher>summary{
    display:inline-flex;
    min-height:42px;
    align-items:center;
    justify-content:center;
    gap:7px;
    padding:8px 12px;
    border:1px solid rgba(23,40,95,.16);
    border-radius:999px;
    color:var(--brand-navy);
    background:#fff;
    font-size:.9rem;
    font-weight:800;
    line-height:1.2;
    list-style:none;
    cursor:pointer;
    user-select:none;
}
.language-switcher>summary::-webkit-details-marker{display:none}
.language-switcher>summary:hover,.language-switcher>summary:focus-visible{border-color:rgba(40,84,184,.42);background:var(--surface-blue);outline:none}
.language-switcher__menu{
    position:absolute;
    z-index:1050;
    top:calc(100% + 10px);
    right:0;
    display:grid;
    width:176px;
    gap:4px;
    padding:8px;
    border:1px solid var(--line);
    border-radius:14px;
    background:#fff;
    box-shadow:0 18px 48px rgba(13,23,57,.18);
}
.language-option{
    display:flex;
    min-height:40px;
    align-items:center;
    padding:8px 11px;
    border-radius:9px;
    color:var(--ink);
    font-size:.92rem;
    font-weight:700;
    line-height:1.3;
}
a.language-option:hover,a.language-option:focus-visible{color:var(--brand-blue);background:var(--surface-blue);outline:none}
.language-option.is-current{color:var(--brand-navy);background:#eef2f7}
.language-option.is-current::after{content:"✓";margin-left:auto;color:var(--success);font-weight:900}
#main-navigation>.language-link{display:none!important}

/* The Spanish/Portuguese labels need more room than the original two-language header. */
@media(min-width:1441px){
    .site-header .navbar{width:min(calc(100% - 40px),1440px);max-width:1440px;gap:12px}
    .site-header .brand{width:122px}
    .site-header .brand img{max-width:122px}
    #main-navigation.nav-menu{gap:2px}
    #main-navigation .nav-link{padding:7px 8px;font-size:.9rem}
    #main-navigation .nav-quote{padding:8px 11px;font-size:.9rem}
}
@media(max-width:1440px){
    .nav-toggle{display:block}
    #main-navigation.nav-menu{
        position:absolute;
        top:calc(100% + 1px);
        right:0;
        left:0;
        display:none;
        max-height:calc(100dvh - var(--header-height));
        overflow-y:auto;
        align-items:stretch;
        flex-direction:column;
        gap:3px;
        padding:14px clamp(14px,4vw,28px) 22px;
        border-bottom:1px solid var(--line);
        background:#fff;
        box-shadow:0 18px 38px rgba(13,23,57,.12);
    }
    #main-navigation.nav-menu.is-open{display:flex}
    #main-navigation .nav-link,#main-navigation .nav-quote{
        width:100%;
        min-height:44px;
        justify-content:flex-start;
        margin:0;
        padding:10px 14px;
        border-radius:10px;
        font-size:1rem;
    }
    #main-navigation .nav-quote{justify-content:center;margin-top:5px}
    #main-navigation .language-switcher{width:100%;margin:5px 0 0}
    #main-navigation .language-switcher>summary{width:100%;border-radius:10px}
    #main-navigation .language-switcher__menu{position:static;width:100%;margin-top:6px;box-shadow:none}
}

/* Consistent field and action sizing across public forms. */
form input,form select,form textarea{min-width:0;max-width:100%}
.btn{max-width:100%;text-align:center}

/* Keep the bottom action bar inset from phone edges and safe areas. */
@media(max-width:760px){
    body{padding-bottom:82px}
    .mobile-contact-bar{
        right:max(10px,env(safe-area-inset-right));
        bottom:max(10px,env(safe-area-inset-bottom));
        left:max(10px,env(safe-area-inset-left));
        grid-template-columns:repeat(3,minmax(0,1fr));
        gap:6px;
        padding:6px;
        border:1px solid rgba(255,255,255,.12);
        border-radius:16px;
        background:rgba(9,18,46,.96);
        box-shadow:0 12px 34px rgba(5,12,35,.28);
    }
    .mobile-contact-bar a{
        min-width:0;
        min-height:50px;
        padding:6px 4px;
        border-radius:11px;
        flex-direction:column;
        gap:3px;
        font-size:.78rem;
        line-height:1.15;
    }
    .mobile-contact-bar svg{width:18px;height:18px}
}

/* R49 compact hierarchical navigation and corrected language selector. */
.nav-dropdown{position:relative;flex:0 0 auto}
.nav-dropdown>summary{list-style:none;cursor:pointer;user-select:none}
.nav-dropdown>summary::-webkit-details-marker{display:none}
.nav-dropdown__trigger{gap:7px}
.nav-dropdown__trigger::after{
    content:"";
    width:7px;
    height:7px;
    margin-top:-4px;
    border-right:2px solid currentColor;
    border-bottom:2px solid currentColor;
    transform:rotate(45deg);
    transition:transform .18s ease;
}
.nav-dropdown[open]>.nav-dropdown__trigger::after{margin-top:3px;transform:rotate(225deg)}
.nav-dropdown[data-current="true"]>.nav-dropdown__trigger{color:var(--brand-navy);background:var(--surface-blue)}
.nav-dropdown__menu{
    position:absolute;
    z-index:1050;
    top:calc(100% + 10px);
    left:50%;
    display:grid;
    width:max-content;
    min-width:190px;
    max-width:280px;
    gap:4px;
    padding:8px;
    border:1px solid var(--line);
    border-radius:14px;
    background:#fff;
    box-shadow:0 18px 48px rgba(13,23,57,.18);
    transform:translateX(-50%);
}
.nav-dropdown__item{
    display:flex;
    min-height:42px;
    align-items:center;
    padding:9px 12px;
    border-radius:9px;
    color:var(--ink);
    font-size:.95rem;
    font-weight:700;
    line-height:1.35;
    white-space:nowrap;
}
.nav-dropdown__item:hover,.nav-dropdown__item:focus-visible,.nav-dropdown__item[aria-current="page"]{color:var(--brand-blue);background:var(--surface-blue);outline:none}

.language-switcher>summary{
    display:grid;
    grid-template-columns:18px auto 10px;
    min-height:44px;
    align-items:center;
    justify-content:center;
    column-gap:7px;
    padding:8px 12px;
    line-height:1;
}
.language-switcher>summary::before{
    content:"";
    display:block;
    width:18px;
    height:18px;
    background:center/18px 18px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2317285f' stroke-width='1.8'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3c2.3 2.5 3.5 5.5 3.5 9S14.3 18.5 12 21c-2.3-2.5-3.5-5.5-3.5-9S9.7 5.5 12 3Z'/%3E%3C/svg%3E");
}
.language-switcher>summary::after{
    content:"";
    display:block;
    width:7px;
    height:7px;
    margin-top:-4px;
    border-right:2px solid currentColor;
    border-bottom:2px solid currentColor;
    transform:rotate(45deg);
    transition:transform .18s ease;
}
.language-switcher[open]>summary::after{margin-top:3px;transform:rotate(225deg)}
.language-switcher__menu{width:190px;gap:4px;padding:8px}
.language-switcher__menu .language-option,
.language-switcher__menu a.language-option{
    width:100%;
    min-height:42px;
    margin:0;
    padding:9px 12px;
    border-radius:9px;
    color:var(--ink);
    background:transparent;
    font-size:.95rem;
    font-weight:700;
    line-height:1.35;
    transform:none;
}
.language-switcher__menu a.language-option:hover,
.language-switcher__menu a.language-option:focus-visible{color:var(--brand-blue);background:var(--surface-blue);transform:none}
.language-switcher__menu .language-option.is-current{color:var(--brand-navy);background:#eef3fb}

/* Grouping the secondary links lets the original readable navigation size return. */
@media(min-width:1181px){
    .site-header .navbar{width:min(calc(100% - 40px),1440px);max-width:1440px;gap:16px}
    .site-header .brand{width:132px}
    .site-header .brand img{max-width:132px}
    .site-header .nav-toggle{display:none}
    #main-navigation.nav-menu{
        position:static;
        display:flex!important;
        flex:1 1 auto;
        max-height:none;
        overflow:visible;
        align-items:center;
        justify-content:flex-end;
        flex-direction:row;
        gap:4px;
        padding:0;
        border:0;
        background:transparent;
        box-shadow:none;
    }
    #main-navigation .nav-link,#main-navigation .nav-quote{
        width:auto;
        min-height:44px;
        justify-content:center;
        margin:0;
        padding:8px 12px;
        border-radius:999px;
        font-size:.97rem;
        line-height:1.45;
        white-space:nowrap;
    }
    #main-navigation .nav-quote{margin-left:3px;padding:9px 16px}
    #main-navigation .language-switcher{width:auto;margin:0 0 0 3px}
    #main-navigation .language-switcher>summary{width:auto;border-radius:999px}
    #main-navigation .language-switcher__menu{position:absolute;width:190px;margin-top:0;box-shadow:0 18px 48px rgba(13,23,57,.18)}
}
@media(max-width:1180px){
    .nav-dropdown{width:100%}
    #main-navigation .nav-dropdown>summary{width:100%;justify-content:flex-start;border-radius:10px}
    #main-navigation .nav-dropdown__menu{
        position:static;
        width:100%;
        min-width:0;
        max-width:none;
        margin:6px 0 0;
        padding:5px 0 5px 14px;
        border:0;
        border-left:2px solid var(--line);
        border-radius:0;
        box-shadow:none;
        transform:none;
    }
    #main-navigation .nav-dropdown__item{width:100%;white-space:normal}
    #main-navigation .language-switcher>summary{display:grid;grid-template-columns:18px 1fr 10px;text-align:left}
    #main-navigation .language-switcher__menu .language-option{justify-content:flex-start}
}

/* R50 resilient wrapping, centered language options and wider native-language menu. */
.route-start-card form{
    grid-template-columns:repeat(auto-fit,minmax(min(100%,160px),1fr));
    align-items:end;
}
.route-start-card form>*{min-width:0}
.route-start-card form>.btn{grid-column:auto;min-width:170px;white-space:normal;line-height:1.35}
.hero__actions,.cta-actions,.route-directory-actions,.wizard-actions,.matched-route-card{flex-wrap:wrap}
.btn{white-space:normal;overflow-wrap:anywhere}
.language-switcher>summary{place-items:center}
.language-switcher>summary>span{display:block;line-height:1.25;text-align:center}
.language-switcher>summary::before,.language-switcher>summary::after{align-self:center;justify-self:center}
.language-switcher__menu{width:218px}
.language-switcher__menu .language-option,
.language-switcher__menu a.language-option{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    padding-right:34px;
    padding-left:34px;
    text-align:center;
    white-space:normal;
}
.language-switcher__menu .language-option.is-current::after{
    position:absolute;
    right:12px;
    margin:0;
}
@media(min-width:1181px){
    #main-navigation .language-switcher__menu{width:218px}
}
@media(max-width:1180px){
    #main-navigation .language-switcher__menu{width:100%}
    #main-navigation .language-switcher__menu .language-option{justify-content:center;text-align:center}
}
@media(max-width:720px){
    .route-start-card form{grid-template-columns:1fr}
    .route-start-card form>.btn{grid-column:1/-1;width:100%}
}


/* R53 responsive layout hardening; R58 top-aligns homepage route starter fields. */
form[data-route-starter] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    /* flex-start is the broad-compatibility fallback; start is the requested logical alignment. */
    align-items: flex-start;
    align-items: start;
}
form[data-route-starter] .route-start-field {
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
}

/* R60 homepage route spacing and smart-combobox interaction hardening. */
@media (min-width: 1181px) {
    .route-start-card {
        column-gap: clamp(40px, 3.5vw, 56px);
    }
}
@media (min-width: 1201px) {
    form[data-route-starter] {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.35fr) minmax(0, 1fr);
    }
}
.smart-combobox.is-open {
    z-index: 200;
}

/* R59 keeps long translated submit labels inside their grid column. */
form[data-route-starter] > .btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    min-height: 50px;
    padding: 10px 14px;
    padding-inline: clamp(10px, 1vw, 16px);
    line-height: 1.25;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
}
.language-switcher__menu {
    display:flex;
    flex-direction:column;
    align-items:stretch;
    min-width:160px;
}
.language-option {
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:40px;
    padding:8px 14px;
    text-align:center;
    width:100%;
}
@media (max-width:1200px){
    form[data-route-starter] { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:768px){
    form[data-route-starter] { grid-template-columns:1fr; }
    form[data-route-starter] .btn { width:100%; }
}

/* R57 viewport-safe dropdown placement for footer and short-screen language menus. */
.language-switcher__menu,
.nav-dropdown__menu {
    max-height:min(var(--available-menu-height, calc(100vh - 112px)), calc(100vh - 24px));
    overflow-y:auto;
    overscroll-behavior:contain;
}
.language-switcher.menu-opens-upward > .language-switcher__menu,
.nav-dropdown.menu-opens-upward > .nav-dropdown__menu {
    top:auto;
    bottom:calc(100% + 10px);
}
.language-switcher.menu-opens-upward > .language-switcher__menu {
    transform:none;
}
.nav-dropdown.menu-opens-upward > .nav-dropdown__menu {
    transform:translateX(-50%);
}
.language-switcher.menu-align-left > .language-switcher__menu,
.nav-dropdown.menu-align-left > .nav-dropdown__menu {
    right:auto;
    left:0;
}
.nav-dropdown.menu-align-left > .nav-dropdown__menu {
    transform:none;
}

/* R61 first-party inquiry captcha placement. */
.lead-captcha-field{width:100%;min-width:0;display:block;clear:both}
.lead-captcha-field .local-captcha{margin:20px 0;max-width:430px}
.wizard-form>.lead-captcha-field{margin-top:4px}
@media(max-width:700px){.lead-captcha-field .local-captcha{max-width:none;margin:16px 0}}

/* R63 inquiry captcha modal: the puzzle no longer occupies form layout space. */
body.has-lead-captcha-modal{overflow:hidden}
.lead-captcha-modal[hidden]{display:none!important}
.lead-captcha-modal{position:fixed;inset:0;z-index:9999;display:grid;place-items:center;padding:20px}
.lead-captcha-modal__backdrop{position:absolute;inset:0;background:rgba(7,15,35,.56);backdrop-filter:blur(3px)}
.lead-captcha-modal__dialog{position:relative;width:min(100%,500px);max-height:min(92vh,760px);overflow:auto;border-radius:20px;background:#fff;padding:22px;box-shadow:0 24px 70px rgba(7,15,35,.32);outline:none}
.lead-captcha-modal__dialog h2{margin:0 40px 8px 0;color:#17285f;font-size:22px;line-height:1.25}
.lead-captcha-modal__dialog p{margin:0 0 14px;color:#5b667a;font-size:14px;line-height:1.6}
.lead-captcha-modal__close{position:absolute;right:14px;top:12px;width:36px;height:36px;border:0;border-radius:999px;background:#f1f5f9;color:#17285f;font-size:26px;line-height:1;cursor:pointer}
.lead-captcha-modal__close:focus-visible{outline:3px solid rgba(40,94,199,.28);outline-offset:2px}
.lead-captcha-modal__slot .local-captcha{margin:0;max-width:none}
.lead-captcha-field{display:none!important}
@media(max-width:520px){.lead-captcha-modal{padding:12px}.lead-captcha-modal__dialog{padding:18px 12px;border-radius:16px}.lead-captcha-modal__dialog h2{font-size:19px}}
.lead-captcha-modal__slot{margin-top:16px;}
.lead-captcha-modal__slot .local-captcha{margin:0;max-width:none;}
.lead-captcha-modal__dialog p{margin-bottom:16px;}
@media(max-width:520px){.lead-captcha-modal__slot{margin-top:14px}}

/* R73 home route directory grouping and mobile-safe market chips */
.route-directory-subgroup { display: grid; gap: 10px; margin-top: 16px; }
.route-directory-subgroup + .route-directory-subgroup { padding-top: 16px; border-top: 1px solid rgba(15, 35, 70, 0.08); }
.route-directory-subgroup > strong { color: var(--brand-navy); font-size: 0.95rem; }
.route-market-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.route-market-pills a { display: inline-flex; align-items: center; min-height: 34px; max-width: 100%; padding: 7px 12px; border: 1px solid rgba(14, 91, 215, 0.16); border-radius: 999px; background: rgba(14, 91, 215, 0.06); color: var(--brand-blue); font-size: 0.92rem; font-weight: 800; line-height: 1.25; overflow-wrap: anywhere; text-decoration: none; }
.route-market-pills a:hover, .route-market-pills a:focus-visible { border-color: rgba(14, 91, 215, 0.36); background: rgba(14, 91, 215, 0.12); }
.route-directory-more { margin-top: 16px; }
@media (max-width: 640px) {
  .route-market-pills { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .route-market-pills a { justify-content: center; text-align: center; padding-inline: 10px; }
}
@media (max-width: 380px) {
  .route-market-pills { grid-template-columns: 1fr; }
}

/* R77 richer 404 page */
.error-page--rich{background:radial-gradient(circle at top left,rgba(239,138,0,.16),transparent 34%),linear-gradient(135deg,#f5f7fb,#eef3ff)}.error-card{width:min(100%,760px);padding:clamp(28px,5vw,54px);border:1px solid rgba(23,40,95,.12);border-radius:30px;background:rgba(255,255,255,.94);box-shadow:0 24px 70px rgba(13,23,57,.14)}.error-card img{width:190px}.error-lead{max-width:620px;margin:0 auto 24px;color:#5d6880}.error-actions{justify-content:center}.error-quick{margin-top:26px;padding-top:22px;border-top:1px solid rgba(23,40,95,.12)}.error-quick strong{display:block;margin-bottom:12px;color:#17285f}.error-quick div{display:flex;flex-wrap:wrap;justify-content:center;gap:10px}.error-quick a{padding:8px 12px;border-radius:999px;background:#eef3ff;color:#1e4f9a;font-weight:700}@media(max-width:640px){.error-card{border-radius:22px}.error-actions{align-items:stretch}.error-actions .btn{width:100%;justify-content:center}.error-quick div{justify-content:stretch}.error-quick a{flex:1 1 42%;text-align:center}}

/* R80 404 page visible secondary CTA on light error cards. */
.error-actions .btn--secondary{
    color:var(--brand-navy);
    border-color:rgba(23,40,95,.24);
    background:#fff;
    box-shadow:0 10px 24px rgba(23,40,95,.10);
}
.error-actions .btn--secondary:hover,
.error-actions .btn--secondary:focus-visible{
    color:#fff;
    border-color:var(--brand-blue);
    background:var(--brand-blue);
}


/* R83 route catalog transport-mode hub and public pagination controls. */
.route-mode-section{background:linear-gradient(180deg,#f7faff 0%,#fff 100%)}
.route-mode-head{align-items:flex-end;margin-bottom:24px}.route-mode-head p{max-width:860px;color:#536079;line-height:1.8}.route-mode-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}.route-mode-card{display:flex;min-width:0;flex-direction:column;gap:10px;padding:22px;border:1px solid rgba(23,40,95,.12);border-radius:18px;background:#fff;box-shadow:0 14px 34px rgba(23,40,95,.07)}.route-mode-card>span{font-size:.76rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:#d8612a}.route-mode-card h3{margin:0;color:var(--navy,#17285f);font-size:1.08rem}.route-mode-card p{margin:0;color:#5d6882;line-height:1.75}.route-mode-card .route-chip-list{margin-top:auto;display:flex;flex-wrap:wrap;gap:8px}.route-mode-card .route-chip-list a{display:inline-flex;align-items:center;min-height:34px;padding:7px 11px;border-radius:999px;background:#eef5ff;color:#1d579f;font-weight:700;text-decoration:none}.route-scope-panel{margin-top:18px;padding:18px 20px;border-radius:16px;background:#fff7df;border:1px solid #f0d58a;color:#33405e;line-height:1.75}.route-scope-panel p{margin:.35rem 0 0}.route-list-head{margin-bottom:20px}.route-list-head h2{margin:.25rem 0 .4rem;color:var(--navy,#17285f)}.route-list-head p{margin:0;color:#5d6882}.route-card__modes{font-size:.92rem;color:#42506c;font-weight:700}.catalog-pagination{display:flex;align-items:center;justify-content:center;gap:12px;flex-wrap:wrap;margin-top:28px;padding:14px;border:1px solid rgba(20,43,94,.12);border-radius:16px;background:#fff;box-shadow:0 10px 28px rgba(18,41,91,.06)}.catalog-pagination__summary{font-weight:700;color:#243453}.catalog-pagination__btn{min-height:40px;padding:8px 15px;border:1px solid rgba(20,43,94,.18);border-radius:999px;background:#f7faff;color:#183465;font-weight:700;cursor:pointer}.catalog-pagination__btn:disabled{opacity:.45;cursor:not-allowed}.catalog-pagination__size select{min-height:40px;padding:8px 34px 8px 12px;border:1px solid rgba(20,43,94,.18);border-radius:999px;background:#fff;color:#183465;font-weight:700}@media(max-width:1080px){.route-mode-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:640px){.route-mode-head{align-items:flex-start}.route-mode-grid{grid-template-columns:1fr}.catalog-pagination{justify-content:stretch}.catalog-pagination>*{flex:1 1 auto;text-align:center}.catalog-pagination__size,.catalog-pagination__size select{width:100%}}
