:root {
    --blue-deep: #073155;
    --blue: #004d90;
    --blue-soft: #59758e;
    --blue-light: #dae9f6;
    --blue-pale: #f2f6f9;
    --red: #c31442;
    --red-dark: #d20435;
    --white: #ffffff;
    --text: #243039;
    --shadow: 0 16px 40px rgba(7, 49, 85, 0.14);
    --radius: 16px;
    --container: 1170px;
    --header-break: 768px;
    --hero-figure-width: min(64%, 750px);
    --hero-figure-height: min(65vh, 580px);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body.site-body {
    margin: 0;
    font-family: "Roboto", sans-serif;
    color: var(--text);
    background: var(--blue-pale);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-deep); }

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

/* ===== HEADER ===== */
.site-header {
    position: relative;
    z-index: 50;
}

.site-header--inner {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(7, 49, 85, 0.08);
    position: sticky;
    top: 0;
}

.site-header--hero {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.32) 0%, rgba(255,255,255,0.1) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.site-header__shell {
    display: grid;
    gap: 12px;
    padding: 14px 0 16px;
}

.site-logo img {
    width: min(210px, 56vw);
}

.site-header--hero .site-logo img {
    filter: drop-shadow(0 6px 20px rgba(255,255,255,0.45));
}

.site-header__util,
.site-nav--desktop,
.site-header__mobile-bar {
    grid-column: 1 / -1;
}

.site-header__util {
    display: none;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px 18px;
}

.site-search {
    position: relative;
    width: min(210px, 100%);
}

.site-search__input {
    width: 100%;
    height: 38px;
    border: 0;
    border-radius: 999px;
    padding: 0 40px 0 14px;
    background: rgba(89, 117, 142, 0.16);
    color: var(--blue-deep);
    font: 300 14px/1 "Roboto", sans-serif;
}

.site-header--hero .site-search__input {
    background: rgba(255,255,255,0.38);
}

.site-search__input:focus {
    outline: 2px solid rgba(0, 77, 144, 0.28);
    background: rgba(255,255,255,0.9);
}

.site-search__btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 0;
    background: url(/images/isearch2.png) center/contain no-repeat;
    cursor: pointer;
}

.site-header--hero .site-search__btn { background-image: url(/images/isearch.png); }

.site-pill {
    display: inline-flex;
    flex-direction: column;
    gap: 1px;
    padding-left: 32px;
    min-height: 44px;
    justify-content: center;
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--blue-soft);
    white-space: nowrap;
}

.site-pill--create { background: url(/images/icreate2.png) left center/22px no-repeat; }
.site-pill--login { background: url(/images/ilogin2.png) left center/22px no-repeat; }

.site-header--hero .site-pill { color: var(--white); text-shadow: 0 1px 8px rgba(0,0,0,0.25); }
.site-header--hero .site-pill--create { background-image: url(/images/icreate.png); }
.site-header--hero .site-pill--login { background-image: url(/images/ilogin.png); }

.site-pill__label { font-weight: 500; }

.site-phone {
    font-size: clamp(0.95rem, 2vw, 1.25rem);
    font-weight: 500;
    white-space: nowrap;
}

.site-header--hero .site-phone { color: var(--white); text-shadow: 0 1px 8px rgba(0,0,0,0.25); }
.site-header--inner .site-phone { color: var(--blue-deep); }

.site-phone--desktop { display: none; }

.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav--desktop { display: none; }

.site-nav--desktop ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px 22px;
}

.site-nav--desktop a {
    display: block;
    padding: 6px 0;
    font-size: 1.02rem;
    font-weight: 500;
}

.site-header--hero .site-nav--desktop a { color: var(--white); text-shadow: 0 1px 8px rgba(0,0,0,0.25); }
.site-header--inner .site-nav--desktop a { color: var(--blue-deep); }

.site-header__mobile-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.site-phone--mobile { display: inline-block; }

.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(7, 49, 85, 0.15);
    background: rgba(255,255,255,0.95);
    cursor: pointer;
}

.site-header--hero .menu-toggle {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.35);
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: var(--blue-deep);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header--hero .menu-toggle span { background: var(--white); }

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav--mobile {
    display: none;
    grid-column: 1 / -1;
    padding-top: 8px;
    border-top: 1px solid rgba(7, 49, 85, 0.1);
}

.site-header--hero .site-nav--mobile { border-top-color: rgba(255,255,255,0.25); }
.site-nav--mobile.is-open { display: block; position: relative; z-index: 60; }

.site-header--hero .site-nav--mobile.is-open {
    background: rgba(7, 49, 85, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 10px 14px 14px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.site-header--hero .site-nav--mobile.is-open a {
    color: var(--white);
}

.site-header--hero .site-nav--mobile.is-open .site-nav__mobile-actions a {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.22);
    color: var(--white);
}

.site-header--inner .site-nav--mobile.is-open {
    background: var(--white);
    border: 1px solid rgba(7, 49, 85, 0.1);
    border-radius: 12px;
    padding: 10px 14px 14px;
    box-shadow: var(--shadow);
}

.site-header--inner .site-nav--mobile.is-open a {
    color: var(--blue-deep);
}

.site-nav--mobile li { border-bottom: 1px solid rgba(7, 49, 85, 0.08); }
.site-header--hero .site-nav--mobile li { border-bottom-color: rgba(255,255,255,0.15); }

.site-nav--mobile a {
    display: block;
    padding: 13px 2px;
    font-size: 1.02rem;
    min-height: 48px;
}

.site-header--hero .site-nav--mobile a { color: var(--white); }
.site-header--inner .site-nav--mobile a { color: var(--blue-deep); }

.site-nav__mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
}

.site-nav__mobile-actions a {
    text-align: center;
    padding: 11px 8px;
    border-radius: 10px;
    border: 1px solid rgba(7, 49, 85, 0.12);
    font-size: 0.9rem;
}

.site-header--hero .site-nav__mobile-actions a {
    border-color: rgba(255,255,255,0.28);
    color: var(--white);
}

body.mobile-nav-open { overflow: hidden; }

@media (min-width: 768px) {
    .site-header__shell {
        grid-template-columns: minmax(180px, 240px) 1fr;
        align-items: center;
        column-gap: 20px;
    }

    .site-logo { grid-column: 1; grid-row: 1 / span 2; align-self: start; }
    .site-header__util { grid-column: 2; grid-row: 1; display: flex; }
    .site-nav--desktop { grid-column: 2; grid-row: 2; display: block; }
    .site-header__mobile-bar { display: none; }
    .site-nav--mobile { display: none !important; }
    .site-phone--desktop { display: inline-block; }
    .site-phone--mobile { display: none; }
    .menu-toggle { display: none; }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    isolation: isolate;
    min-height: clamp(580px, 82vh, 760px);
    color: var(--white);
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(/images/slide1.jpg) center/cover no-repeat;
    z-index: 0;
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(115deg, rgba(7, 49, 85, 0.78) 0%, rgba(0, 77, 144, 0.48) 45%, rgba(195, 20, 66, 0.5) 100%);
}

.hero-slide__stage {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: clamp(148px, 21vh, 200px);
    padding-bottom: 56px;
    /* Reserve right column for floating track widget */
    padding-right: min(380px, 38%);
}

.hero-slide__copy {
    display: flex;
    align-items: flex-end;
    gap: clamp(14px, 2.5vw, 28px);
    width: 100%;
}

.hero-slide__figure {
    margin: 0;
    flex: 0 0 var(--hero-figure-width);
    width: var(--hero-figure-width);
    height: var(--hero-figure-height);
    min-height: var(--hero-figure-height);
    max-height: var(--hero-figure-height);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-slide__figure::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 95%;
    height: 50%;
    background: radial-gradient(ellipse at center bottom, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.08) 42%, transparent 72%);
    pointer-events: none;
    z-index: 0;
}

.hero-slide__figure::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 38%;
    background: linear-gradient(to top, rgba(7, 49, 85, 0.32), transparent);
    pointer-events: none;
    z-index: 2;
}

.hero-slide__figure img {
    position: relative;
    z-index: 1;
    display: block;
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    margin-inline: auto;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 22px 44px rgba(0, 0, 0, 0.42));
    -webkit-mask-image: linear-gradient(to bottom, #000 88%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 88%, transparent 100%);
}

.hero-slide__text {
    flex: 1;
    align-self: center;
    max-width: 520px;
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.32);
}

.hero-slide__text h1,
.hero-slide__text h2,
.hero-slide__text h3,
.hero-slide__text h4,
.hero-slide__text h5,
.hero-slide__text h6 {
    margin: 0 0 0.08em;
    color: var(--white);
    font-weight: 300;
    line-height: 1.06;
}

.hero-slide__text h1 { font-size: clamp(1.65rem, 3.8vw, 3.5rem); font-weight: 700; }
.hero-slide__text h2 { font-size: clamp(1.35rem, 3vw, 2.75rem); }
.hero-slide__text h3 { font-size: clamp(1.15rem, 2.5vw, 2.2rem); }
.hero-slide__text h1 + h1,
.hero-slide__text h2 + h2 { margin-top: 0.04em; }
.hero-slide__text small { display: inline; font-size: 0.62em; font-weight: 300; vertical-align: baseline; }

/* Floating track widget — right of slides, vertically centered below header */
.hero__track-float {
    position: absolute;
    z-index: 20;
    left: 50%;
    transform: translateX(-50%);
    width: min(100% - 32px, var(--container));
    top: clamp(148px, 21vh, 200px);
    bottom: 52px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
}

.track-card--float {
    pointer-events: auto;
    width: min(100%, 340px);
    flex-shrink: 0;
}

.hero-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    z-index: 25;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
}

.hero-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.85);
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.hero-dots button.active { background: var(--white); }

/* Track card */
.track-card {
    width: min(100%, 360px);
    padding: 20px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.28);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
}

.track-card__title {
    margin: 0 0 6px;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--white);
}

.track-card__hint {
    margin: 0 0 12px;
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgba(255,255,255,0.9);
}

.track-card textarea {
    width: 100%;
    min-height: 88px;
    resize: vertical;
    border: 0;
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 10px;
    background: rgba(255,255,255,0.92);
    color: var(--text);
    font: 400 0.92rem/1.4 "Roboto", sans-serif;
}

.track-card button,
.track-inline button {
    width: 100%;
    min-height: 44px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(195, 20, 66, 0.95), rgba(210, 4, 53, 0.98));
    color: var(--white);
    font: 500 0.98rem/1 "Roboto", sans-serif;
    cursor: pointer;
}

.track-card button:hover,
.track-inline button:hover {
    filter: brightness(1.05);
}

.track-card--compact { background: rgba(255,255,255,0.16); }

/* Inner pages */
.page-hero {
    padding: 36px 0 44px;
    background:
        linear-gradient(135deg, rgba(7, 49, 85, 0.92), rgba(0, 77, 144, 0.82)),
        url(/images/slide1.jpg) center/cover no-repeat;
    color: var(--white);
}

.page-hero__inner {
    display: grid;
    gap: 22px;
}

.page-hero__title {
    margin: 0;
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 400;
    line-height: 1.12;
    text-shadow: 0 6px 20px rgba(0,0,0,0.22);
}

.page-main { padding: 44px 0 68px; }

.page-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 28px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    font-size: 1.02rem;
    line-height: 1.65;
}

.page-content--form {
    max-width: 820px;
}

.page-content--about {
    max-width: 900px;
}

.page-main--about {
    padding-top: 10px;
}

.about-top-band {
    margin-top: -28px;
    margin-bottom: 34px;
    min-height: 280px;
    display: grid;
    place-items: center;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(7, 49, 85, 0.72) 0%, rgba(0, 77, 144, 0.78) 100%),
        url(/images/about-top-text-bg.jpg) center top / cover no-repeat;
}

.about-top-band__inner {
    max-width: 920px;
    padding: 42px 20px;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.75;
}

.about-top-band__inner p {
    margin: 0 0 14px;
    color: #fff;
}

.about-top-band__inner p:last-child {
    margin-bottom: 0;
}

.about-top-band__inner a {
    color: #fff;
    text-decoration: underline;
}

.about-panel {
    margin-bottom: 34px;
    text-align: center;
}

.about-panel__title {
    margin: 0 0 12px;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 500;
    color: #045494;
}

.about-panel__title::after {
    content: "";
    display: block;
    width: min(100%, 420px);
    height: 1px;
    margin: 12px auto 16px;
    background: rgba(7, 49, 85, 0.14);
}

.about-panel__body {
    max-width: 920px;
    margin: 0 auto;
    color: var(--blue-deep);
    line-height: 1.7;
}

.about-panel__body p {
    margin: 0;
}

.about-page-tiles {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
    margin-top: 10px;
    padding-bottom: 20px;
}

.about-page-tile {
    position: relative;
    display: block;
    width: 285px;
    max-width: 100%;
    height: 165px;
    overflow: hidden;
    background: #000;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(7, 49, 85, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-page-tile img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s ease, transform 0.25s ease;
}

.about-page-tile__label {
    position: absolute;
    inset: auto 0 0;
    padding: 10px 12px;
    background: linear-gradient(180deg, transparent, rgba(7, 49, 85, 0.82));
    color: #fff;
    font-size: 0.92rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.about-page-tiles:hover .about-page-tile img {
    opacity: 0.42;
}

.about-page-tile:hover img {
    opacity: 1;
    transform: scale(1.03);
}

.about-page-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(7, 49, 85, 0.18);
    z-index: 1;
}

.about-page-tile:hover .about-page-tile__label {
    opacity: 1;
    transform: translateY(0);
}

.service-modal__nav-group--about .service-modal__nav-heading {
    color: #045494;
}

.service-modal__nav-group--contact .service-modal__nav-heading {
    color: #065492;
}

.page-main--contact {
    padding-top: 10px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 36px;
    align-items: start;
    margin-bottom: 40px;
}

.contact-panel {
    padding: 28px 26px;
    border-radius: 18px;
    background: var(--white);
    border: 1px solid rgba(7, 49, 85, 0.08);
    box-shadow: 0 12px 30px rgba(7, 49, 85, 0.06);
}

.contact-panel__title {
    margin: 0 0 16px;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    color: #065492;
}

.contact-panel__body,
.contact-panel__join {
    color: var(--blue-deep);
    line-height: 1.7;
}

.contact-panel__body p,
.contact-panel__join p {
    margin: 0 0 14px;
}

.contact-panel__body a,
.contact-panel__join a {
    color: var(--blue);
}

.contact-panel__join {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid rgba(7, 49, 85, 0.08);
}

.contact-panel__join h3 {
    margin: 0 0 10px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #065492;
}

.contact-questions {
    margin: 0 0 22px;
    text-align: center;
}

.contact-questions__line {
    margin: 0;
    line-height: 0.95;
    color: #0e5c8c;
}

.contact-questions__line--light {
    padding-right: 90px;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 300;
}

.contact-questions__line--bold {
    font-size: clamp(2.6rem, 6vw, 4rem);
    font-weight: 700;
}

.site-form--contact .site-form__field label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.contact-departments {
    margin-bottom: 28px;
}

.contact-departments__title {
    margin: 0 0 16px;
    font-size: clamp(1.35rem, 2.5vw, 1.8rem);
    font-weight: 500;
    color: #065492;
    text-align: center;
}

.contact-departments__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.contact-dept-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    min-height: 92px;
    padding: 16px 18px;
    border: 1px solid rgba(7, 49, 85, 0.1);
    border-radius: 14px;
    background: linear-gradient(180deg, #f8fbfe 0%, #eef4fa 100%);
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-dept-card:hover {
    border-color: rgba(0, 77, 144, 0.28);
    box-shadow: 0 10px 24px rgba(7, 49, 85, 0.08);
    transform: translateY(-1px);
}

.contact-dept-card__title {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--blue-deep);
}

.contact-dept-card__phone {
    font-size: 0.9rem;
    color: var(--blue-soft);
}

.contact-map {
    width: 100%;
    background: #e8eef4;
}

.contact-map iframe {
    display: block;
    width: 100%;
    min-height: 450px;
    border: 0;
}

.about-lead {
    margin: 0 0 28px;
    font-size: 1.12rem;
    line-height: 1.7;
    color: var(--blue-deep);
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 34px;
}

.about-highlights__item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 18px 16px;
    border-radius: 14px;
    background: linear-gradient(180deg, #f4f8fc 0%, #e8f0f8 100%);
    border: 1px solid rgba(7, 49, 85, 0.08);
    text-align: center;
}

.about-highlights__value {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--blue);
    line-height: 1.1;
}

.about-highlights__label {
    font-size: 0.82rem;
    color: var(--blue-soft);
    letter-spacing: 0.02em;
}

.about-section {
    margin-bottom: 28px;
}

.about-section h2 {
    margin: 0 0 12px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--blue-deep);
}

.about-section p {
    margin: 0 0 14px;
}

.about-section p:last-child {
    margin-bottom: 0;
}

.about-list {
    margin: 0;
    padding-left: 1.2rem;
}

.about-list li {
    margin-bottom: 8px;
}

.about-list li:last-child {
    margin-bottom: 0;
}

.about-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 34px 0 28px;
}

.about-links__card {
    display: block;
    padding: 16px 18px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid rgba(7, 49, 85, 0.1);
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.about-links__card:hover {
    border-color: rgba(0, 77, 144, 0.28);
    box-shadow: 0 8px 22px rgba(7, 49, 85, 0.08);
    transform: translateY(-1px);
}

.about-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 20px;
    margin: 0;
    padding-top: 8px;
}

.about-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue), var(--blue-deep));
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 77, 144, 0.22);
}

.about-cta__button:hover {
    color: var(--white);
    box-shadow: 0 10px 24px rgba(0, 77, 144, 0.28);
}

.about-cta__link {
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
}

.about-cta__link:hover {
    text-decoration: underline;
}

.site-form__heading {
    margin: 0 0 24px;
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--blue-deep);
}

.site-form__alert {
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.98rem;
    line-height: 1.5;
}

.site-form__alert--success {
    background: #e8f6ee;
    border: 1px solid #b8dfc8;
    color: #1f5d38;
}

.site-form__alert--error {
    background: #fdeeee;
    border: 1px solid #f0c2c2;
    color: #8a1f1f;
}

.site-form__fieldset {
    margin: 0 0 18px;
    padding: 0;
    border: 0;
}

.site-form__legend {
    padding: 0;
    margin: 0 0 10px;
    font-size: 0.98rem;
    font-weight: 500;
    color: var(--blue-deep);
}

.site-form__legend span {
    color: var(--red);
}

.site-form__field {
    margin-bottom: 18px;
}

.site-form__field label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--blue-soft);
}

.site-form__field input,
.site-form__field textarea {
    width: 100%;
    border: 1px solid #b1c1ce;
    border-radius: 10px;
    background: #e8f1f7;
    padding: 14px 15px;
    font: 400 1rem/1.4 "Roboto", sans-serif;
    color: var(--text);
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-form__field input:focus,
.site-form__field textarea:focus {
    outline: none;
    background: var(--white);
    border-color: rgba(0, 77, 144, 0.45);
    box-shadow: 0 0 0 3px rgba(0, 77, 144, 0.12);
}

.site-form__field textarea {
    resize: vertical;
    min-height: 120px;
}

.site-form__row {
    display: grid;
    gap: 16px;
}

.site-form__row--2 {
    grid-template-columns: 1fr 1fr;
}

.site-form__row--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-form__error {
    display: block;
    margin-top: 6px;
    font-size: 0.84rem;
    color: var(--red-dark);
}

.site-form__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.site-form__actions {
    margin-top: 8px;
    text-align: center;
}

.site-form__submit {
    min-width: 180px;
    min-height: 48px;
    padding: 0 28px;
    border: 2px solid var(--red-dark);
    border-radius: 999px;
    background: linear-gradient(135deg, #e94747, var(--red-dark));
    color: var(--white);
    font: 500 1rem/1 "Roboto", sans-serif;
    cursor: pointer;
    transition: filter 0.2s ease, transform 0.2s ease;
}

.site-form__submit:hover {
    filter: brightness(1.05);
}

@media (max-width: 767px) {
    .site-form__row--2,
    .site-form__row--3 {
        grid-template-columns: 1fr;
    }

    .site-form__submit {
        width: 100%;
    }

    .about-highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-top-band {
        min-height: 240px;
    }

    .about-page-tiles {
        justify-content: center;
    }

    .about-page-tile {
        width: min(100%, 320px);
        margin: 0 auto 12px;
    }

    .about-page-tiles:hover .about-page-tile img {
        opacity: 1;
    }

    .about-page-tile__label {
        opacity: 1;
        transform: translateY(0);
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-departments__grid {
        grid-template-columns: 1fr;
    }

    .contact-questions__line--light {
        padding-right: 0;
    }

    .about-links {
        grid-template-columns: 1fr;
    }

    .about-cta__button {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .page-hero__inner {
        grid-template-columns: minmax(280px, 360px) 1fr;
        align-items: center;
    }
}

/* Services */
.services-section {
    position: relative;
    z-index: 5;
    margin-top: -48px;
    padding-bottom: 52px;
}

@media (max-width: 767px) {
    .services-section { margin-top: 0; padding-top: 28px; }
}

.services-grid {
    display: grid;
    gap: 20px;
}

@media (min-width: 768px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.page-main--services {
    padding-top: 28px;
    padding-bottom: 56px;
}

.services-page-block {
    margin-bottom: 40px;
}

.services-page-block__title {
    margin: 0 0 18px;
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.02em;
}

.services-page-block--express .services-page-block__title { color: #004c8f; }
.services-page-block--logistics .services-page-block__title { color: #822a9b; }
.services-page-block--industry .services-page-block__title { color: #d20435; }

.services-page-block__tiles {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.services-page-tile {
    position: relative;
    display: block;
    width: 285px;
    max-width: 100%;
    height: 165px;
    overflow: hidden;
    background: #000;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    text-align: left;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(7, 49, 85, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.services-page-tile img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s ease, transform 0.25s ease;
}

.services-page-tile__label {
    position: absolute;
    inset: auto 0 0;
    padding: 10px 12px;
    background: linear-gradient(180deg, transparent, rgba(7, 49, 85, 0.82));
    color: #fff;
    font-size: 0.92rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.services-page-block__tiles:hover .services-page-tile img {
    opacity: 0.42;
}

.services-page-tile:hover img {
    opacity: 1;
    transform: scale(1.03);
}

.services-page-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(7, 49, 85, 0.18);
    z-index: 1;
}

.services-page-tile:hover .services-page-tile__label {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 767px) {
    .services-page-block__tiles {
        justify-content: center;
    }

    .services-page-tile {
        width: min(100%, 320px);
        margin: 0 auto 12px;
    }

    .services-page-block__tiles:hover .services-page-tile img {
        opacity: 1;
    }

    .services-page-tile__label {
        opacity: 1;
        transform: none;
    }
}

.service-card {
    border-radius: calc(var(--radius) + 2px);
    overflow: hidden;
    min-height: 340px;
    padding: 26px 20px;
    color: var(--white);
    box-shadow: var(--shadow);
    background-size: cover;
    background-position: center top;
}

.service-card--express { background-image: url(/images/mbl1.jpg); }
.service-card--logistics { background-image: url(/images/mbl2.jpg); }
.service-card--industries { background-image: url(/images/mbl3.jpg); }

.service-card h2 {
    margin: 0 0 24px;
    text-align: center;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 400;
}

.service-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.service-card a {
    display: block;
    text-align: center;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 10px;
    border-radius: 999px;
}

.service-card a:hover {
    background: rgba(255,255,255,0.16);
    color: #cffff0;
}

/* Coverage */
.coverage-section { padding: 20px 0 60px; }

.coverage-card {
    display: grid;
    gap: 22px;
    padding: 26px;
    border-radius: calc(var(--radius) + 4px);
    background: var(--white);
    box-shadow: var(--shadow);
}

.coverage-card__map {
    min-height: 200px;
    border-radius: var(--radius);
    background: url(/images/c-map.jpg) center/contain no-repeat;
}

.coverage-card__content h2 { margin: 0 0 16px; line-height: 1; }

.coverage-card__title-light {
    display: block;
    font-size: clamp(1.8rem, 4vw, 4rem);
    font-weight: 100;
    color: var(--text);
}

.coverage-card__title-bold {
    display: block;
    font-size: clamp(2.1rem, 5vw, 4.8rem);
    font-weight: 700;
    color: var(--text);
}

.coverage-card__content p {
    margin: 0 0 18px;
    line-height: 1.65;
    color: #3f5a6e;
}

.track-inline {
    display: grid;
    gap: 10px;
}

.track-inline input {
    width: 100%;
    min-height: 46px;
    border: 2px solid #b8c6d1;
    border-radius: 999px;
    padding: 0 16px;
    font: 400 0.92rem/1 "Roboto", sans-serif;
    color: #3f5a6e;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .coverage-card {
        grid-template-columns: 1.05fr 1fr;
        align-items: center;
        padding: 34px;
    }

    .coverage-card__map { min-height: 400px; }

    .track-inline {
        grid-template-columns: 1fr auto;
        align-items: center;
    }

    .track-inline button { width: auto; min-width: 150px; }
}

/* Advantages */
.advantages-section {
    padding: 60px 0;
    background: var(--blue-light);
}

.section-heading {
    margin: 0 0 32px;
    text-align: center;
    line-height: 1;
}

.section-heading__light {
    display: block;
    font-size: clamp(1.8rem, 4vw, 4rem);
    font-weight: 100;
    color: var(--text);
}

.section-heading__bold {
    display: block;
    font-size: clamp(2rem, 4.5vw, 4.2rem);
    font-weight: 700;
    color: var(--text);
}

.advantages-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.advantage-item {
    text-align: center;
    padding: 16px 10px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.55);
}

.advantage-item img {
    width: min(100%, 110px);
    margin: 0 auto 10px;
}

.advantage-item span {
    display: block;
    font-size: clamp(0.95rem, 2vw, 1.35rem);
    font-weight: 300;
    line-height: 1.35;
}

/* Awards */
.awards-section { padding: 60px 0 68px; }

.awards-section__label {
    margin: 0 0 16px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 300;
}

.awards-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    margin-bottom: 32px;
}

.award-card {
    text-align: center;
    padding: 20px 14px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 8px 24px rgba(7, 49, 85, 0.08);
    font-size: 0.92rem;
    line-height: 1.5;
}

.award-card__logo {
    min-height: 100px;
    display: grid;
    place-items: center;
    margin-bottom: 10px;
}

.award-card__logo img {
    max-height: 84px;
    width: auto;
    margin-inline: auto;
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.client-logos__item img { max-height: 52px; width: auto; }

/* Footer */
.site-footer__main {
    background: var(--blue-light);
    padding: 48px 0 36px;
    clear: both;
}

.site-footer__grid {
    display: grid;
    gap: 32px;
}

.site-footer__brand {
    text-align: center;
}

.site-footer__brand img {
    width: min(220px, 68vw);
    margin: 0 auto;
}

.site-footer__address {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--text);
}

.site-footer__aside {
    text-align: center;
    font-size: 0.98rem;
    line-height: 1.6;
}

.site-footer__social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.site-footer__social img {
    width: 34px;
    height: auto;
    display: inline-block;
}

.site-footer__links {
    width: 100%;
    min-width: 0;
}

.site-footer__heading {
    margin: 0 0 14px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--blue-soft);
    text-align: center;
}

.site-footer__columns {
    display: grid;
    gap: 18px 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-footer__columns ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__columns li { margin-bottom: 8px; }

.site-footer__columns a {
    display: inline-block;
    font-size: 0.98rem;
    font-weight: 400;
    color: var(--blue-deep);
    line-height: 1.35;
}

.site-footer__columns a:hover { color: var(--blue); }

.site-footer__bar {
    background: #aabdcd;
    padding: 20px 0;
}

.site-footer__bar-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.site-footer__copy {
    margin: 0;
    color: var(--white);
    font-weight: 300;
    line-height: 1.4;
}

.site-footer__credit {
    display: inline-flex;
    align-items: center;
}

.site-footer__credit img {
    width: min(230px, 70vw);
    height: auto;
    margin-inline: auto;
}

@media (min-width: 768px) {
    .site-footer__grid {
        grid-template-columns: minmax(180px, 220px) minmax(0, 1fr) minmax(180px, 220px);
        align-items: start;
        gap: 32px 48px;
    }

    .site-footer__brand {
        text-align: left;
    }

    .site-footer__brand img {
        margin-left: 0;
        margin-top: -6px;
    }

    .site-footer__heading {
        text-align: left;
        margin-bottom: 18px;
    }

    .site-footer__columns {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px 24px;
    }

    .site-footer__aside {
        text-align: right;
    }

    .site-footer__bar-inner {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        gap: 16px 24px;
        text-align: left;
    }

    .site-footer__credit {
        margin-left: auto;
    }
}

@media (max-width: 767px) {
    .site-header__shell {
        grid-template-columns: 1fr auto;
        align-items: center;
    }

    .site-logo { grid-column: 1; grid-row: 1; }
    .site-header__mobile-bar { grid-column: 2; grid-row: 1; }
    .site-nav--mobile { grid-column: 1 / -1; grid-row: 2; }

    .site-nav__mobile-actions a:last-child { grid-column: 1 / -1; }

    .hero {
        min-height: 0;
        overflow: visible;
    }

    .hero-carousel {
        position: relative;
        min-height: 0;
        height: auto;
    }

    .hero-slide {
        position: relative;
        inset: auto;
        display: none;
        opacity: 1;
        visibility: visible;
        transition: none;
    }

    .hero-slide.active {
        display: block;
    }

    .hero-slide__stage {
        height: auto;
        min-height: 0;
        padding-top: 120px;
        padding-right: 0;
        padding-bottom: 40px;
        align-items: center;
    }

    .hero-slide__copy {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0;
    }

    .hero-slide__figure {
        display: none;
    }

    .hero-slide__text {
        max-width: 100%;
        width: 100%;
        padding: 0 8px;
    }

    .hero-slide__text h1 { font-size: clamp(1.85rem, 8vw, 2.35rem); }
    .hero-slide__text h2 { font-size: clamp(1.5rem, 6.5vw, 2rem); }
    .hero-slide__text h3 { font-size: clamp(1.25rem, 5.5vw, 1.65rem); }

    .hero-dots {
        position: relative;
        left: auto;
        transform: none;
        bottom: auto;
        justify-content: center;
        padding: 4px 0 12px;
        margin: 0;
        z-index: 5;
    }

    .hero-dots button {
        border-color: rgba(7, 49, 85, 0.45);
    }

    .hero-dots button.active {
        background: var(--blue-deep);
        border-color: var(--blue-deep);
    }

    .hero__track-float {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        transform: none;
        justify-content: center;
        padding: 0 0 32px;
        margin-top: 0;
        background: var(--blue-pale);
    }

    .hero__track-float .track-card,
    .hero__track-float .track-card--float {
        background: var(--white);
        border: 1px solid rgba(7, 49, 85, 0.12);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: var(--shadow);
    }

    .hero__track-float .track-card__title {
        color: var(--blue-deep);
    }

    .hero__track-float .track-card__hint {
        color: var(--blue-soft);
    }

    .site-header--hero .site-nav--mobile.is-open {
        margin-top: 4px;
    }
}

@media (max-width: 480px) {
    .site-footer__columns { grid-template-columns: 1fr; }

    .track-inline button { width: 100%; }
}

/* ===== TRACK MODAL ===== */
body.track-modal-open {
    overflow: hidden;
}

.track-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 20px;
}

.track-modal[hidden] {
    display: none;
}

.track-modal__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 10%, rgba(0, 77, 144, 0.08), transparent 40%),
        radial-gradient(circle at 85% 0%, rgba(195, 20, 66, 0.06), transparent 35%),
        rgba(7, 49, 85, 0.42);
    backdrop-filter: blur(6px);
}

.track-modal__dialog {
    position: relative;
    width: min(100%, 980px);
    max-height: min(90vh, 900px);
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    border: 1px solid rgba(7, 49, 85, 0.06);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 246, 249, 0.98) 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.95) inset,
        0 32px 80px rgba(7, 49, 85, 0.16),
        0 8px 24px rgba(0, 77, 144, 0.08);
    overflow: hidden;
    animation: trackModalIn 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.track-modal__glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-deep) 0%, var(--blue) 45%, var(--red) 100%);
    pointer-events: none;
}

@keyframes trackModalIn {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.99);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.track-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px 16px;
    border-bottom: 1px solid rgba(7, 49, 85, 0.08);
    background: linear-gradient(180deg, var(--blue-pale) 0%, var(--white) 100%);
}

.track-modal__eyebrow {
    margin: 0 0 4px;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue-soft);
    font-weight: 500;
}

.track-modal__title {
    margin: 0;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 500;
    color: var(--blue-deep);
}

.track-modal__close {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(7, 49, 85, 0.1);
    border-radius: 12px;
    background: var(--white);
    color: var(--blue-soft);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    box-shadow: 0 4px 12px rgba(7, 49, 85, 0.06);
}

.track-modal__close:hover {
    background: var(--blue-pale);
    border-color: rgba(0, 77, 144, 0.22);
    color: var(--blue-deep);
}

.track-modal__body {
    padding: 18px 24px 24px;
    overflow: auto;
    background: var(--white);
}

.track-modal__loading,
.track-modal__message {
    display: grid;
    place-items: center;
    gap: 14px;
    min-height: 280px;
    text-align: center;
    color: var(--blue-soft);
}

/* Truck loading screen */
.track-modal__loading--truck {
    padding: 12px 0 8px;
}

.track-loader {
    position: relative;
    width: min(100%, 420px);
    height: 140px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(180deg, #eef6fc 0%, #f8fbfe 55%, #e7eef5 100%);
    border: 1px solid rgba(7, 49, 85, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.track-loader__sky {
    position: absolute;
    inset: 0 0 42px;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 77, 144, 0.08), transparent 35%),
        linear-gradient(180deg, #eef6fc, #f8fbfe);
}

.track-loader__road {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 42px;
    background: linear-gradient(180deg, #59758e, #073155);
}

.track-loader__dash {
    position: absolute;
    top: 50%;
    width: 28px;
    height: 3px;
    margin-top: -1px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    animation: trackRoadDash 1.1s linear infinite;
}

.track-loader__dash:nth-child(1) { left: 10%; animation-delay: 0s; }
.track-loader__dash:nth-child(2) { left: 45%; animation-delay: 0.35s; }
.track-loader__dash:nth-child(3) { left: 78%; animation-delay: 0.7s; }

@keyframes trackRoadDash {
    0% { transform: translateX(0); opacity: 0.2; }
    40% { opacity: 1; }
    100% { transform: translateX(-120px); opacity: 0; }
}

.track-loader__truck {
    position: absolute;
    left: 8%;
    bottom: 18px;
    width: 88px;
    height: auto;
    filter: drop-shadow(0 8px 12px rgba(7, 49, 85, 0.22));
    animation: trackTruckDrive 2.4s ease-in-out infinite;
}

@keyframes trackTruckDrive {
    0%, 100% { left: 6%; transform: translateY(0); }
    50% { left: calc(100% - 96px); transform: translateY(-2px); }
}

.track-loader__copy {
    margin-top: 8px;
}

.track-loader__title {
    margin: 0 0 6px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--blue-deep);
}

.track-loader__subtitle {
    margin: 0;
    font-size: 0.92rem;
    color: var(--blue-soft);
}

.track-loader__dots span {
    animation: trackDots 1.2s infinite;
}

.track-loader__dots span:nth-child(2) { animation-delay: 0.2s; }
.track-loader__dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes trackDots {
    0%, 60%, 100% { opacity: 0.2; }
    30% { opacity: 1; }
}

.track-modal__message--error p {
    margin: 0;
    max-width: 420px;
    color: var(--red-dark);
    background: #fff4f6;
    border: 1px solid rgba(195, 20, 66, 0.18);
    border-radius: 12px;
    padding: 14px 16px;
}

.track-modal__panel.is-active .track-result {
    animation: trackResultIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes trackResultIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.track-modal__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.track-modal__tab {
    border: 1px solid rgba(7, 49, 85, 0.12);
    border-radius: 999px;
    background: var(--blue-pale);
    color: var(--blue-soft);
    padding: 8px 14px;
    font: 500 0.86rem/1 "Roboto", sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
}

.track-modal__tab.is-active,
.track-modal__tab:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
    box-shadow: 0 8px 18px rgba(0, 77, 144, 0.18);
}

.track-modal__panel {
    display: none;
}

.track-modal__panel.is-active {
    display: block;
}

.track-result {
    border: 1px solid rgba(7, 49, 85, 0.07);
    border-radius: 18px;
    background: linear-gradient(180deg, var(--white) 0%, var(--blue-pale) 120%);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(7, 49, 85, 0.06);
}

.track-result--delivered { --status-accent: #1f8f55; }
.track-result--transit { --status-accent: var(--blue); }
.track-result--picked { --status-accent: #0d8fa8; }
.track-result--pending { --status-accent: #c98a12; }
.track-result--hold { --status-accent: #6b7280; }
.track-result--alert { --status-accent: var(--red-dark); }
.track-result--default { --status-accent: var(--blue-deep); }

.track-result--missing {
    border-color: rgba(195, 20, 66, 0.18);
    background: linear-gradient(180deg, var(--white) 0%, #fff6f8 100%);
}

.track-result__hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(7, 49, 85, 0.08);
}

.track-result__ticket {
    display: grid;
    gap: 4px;
}

.track-result__label {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue-soft);
    font-weight: 500;
}

.track-result__ticket strong {
    font-size: 1.35rem;
    color: var(--blue-deep);
    font-weight: 700;
}

.track-result__status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 600;
    border: 1px solid transparent;
    box-shadow: 0 4px 14px rgba(7, 49, 85, 0.06);
}

.track-result__status-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.18;
    position: relative;
    flex-shrink: 0;
}

.track-result__status-icon::after {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.9;
}

.track-result__status--default {
    background: #edf4fa;
    border-color: rgba(7, 49, 85, 0.12);
    color: var(--blue-deep);
}

.track-result__status--transit {
    background: #e8f3ff;
    border-color: rgba(0, 77, 144, 0.22);
    color: #0059a8;
}

.track-result__status--picked {
    background: #e5f7fb;
    border-color: rgba(13, 143, 168, 0.22);
    color: #0d7f96;
}

.track-result__status--pending {
    background: #fff7e8;
    border-color: rgba(201, 138, 18, 0.24);
    color: #9a6408;
}

.track-result__status--hold {
    background: #f3f4f6;
    border-color: rgba(107, 114, 128, 0.22);
    color: #4b5563;
}

.track-result__status--delivered {
    background: #e9f8ef;
    border-color: rgba(31, 143, 85, 0.24);
    color: #1f8f55;
}

.track-result__status--alert {
    background: #fff0f3;
    border-color: rgba(195, 20, 66, 0.24);
    color: var(--red-dark);
}

.track-result__status--delivered .track-result__pulse { animation: none; opacity: 0; width: 0; margin: 0; }
.track-result__status--alert .track-result__pulse { animation: none; }

.track-result__pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 0 color-mix(in srgb, currentColor 35%, transparent);
    animation: trackPulse 1.8s infinite;
}

@keyframes trackPulse {
    0% { box-shadow: 0 0 0 0 color-mix(in srgb, currentColor 30%, transparent); }
    70% { box-shadow: 0 0 0 10px transparent; }
    100% { box-shadow: 0 0 0 0 transparent; }
}

/* 3D route map */
.track-map {
    margin-bottom: 20px;
}

.track-map__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.track-map__eyebrow {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue-soft);
    font-weight: 600;
    margin-bottom: 2px;
}

.track-map__header strong {
    font-size: 1rem;
    color: var(--blue-deep);
    font-weight: 600;
}

.track-map__miles {
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid rgba(7, 49, 85, 0.08);
    color: var(--blue);
    font-size: 0.82rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(7, 49, 85, 0.05);
}

.track-map__stage {
    perspective: 1100px;
}

.track-map__surface {
    position: relative;
    min-height: 220px;
    border-radius: 18px;
    overflow: hidden;
    transform: rotateX(10deg);
    transform-origin: center bottom;
    background: linear-gradient(180deg, #dceaf7 0%, #c8dced 42%, #b7cfdf 100%);
    border: 1px solid rgba(7, 49, 85, 0.1);
    box-shadow:
        0 18px 40px rgba(7, 49, 85, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.track-map__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.28) 1px, transparent 1px);
    background-size: 36px 36px;
    transform: skewY(-4deg) scale(1.1);
    transform-origin: center;
    opacity: 0.55;
}

.track-map__terrain {
    position: absolute;
    inset: auto 0 0;
    height: 38%;
    background: linear-gradient(180deg, transparent, rgba(7, 49, 85, 0.08));
}

.track-map__svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.track-map__path-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.55);
    stroke-width: 8;
    stroke-linecap: round;
}

.track-map__path {
    fill: none;
    stroke-width: 6;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s cubic-bezier(0.22, 1, 0.36, 1);
    filter: drop-shadow(0 2px 6px rgba(0, 77, 144, 0.25));
}

.track-map__node {
    fill: var(--white);
    stroke-width: 4;
}

.track-map__node--from { stroke: var(--blue); }
.track-map__node--to { stroke: var(--red); }

.track-map__vehicle {
    position: absolute;
    z-index: 3;
    width: 42px;
    height: 42px;
    transform: translate(-50%, -50%);
    color: var(--blue-deep);
    transition: left 1s cubic-bezier(0.22, 1, 0.36, 1), top 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.track-map__vehicle svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 6px 10px rgba(7, 49, 85, 0.28));
}

.track-map__vehicle-halo {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 77, 144, 0.18), transparent 70%);
    animation: trackPulse 2s infinite;
}

.track-map__pin {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    max-width: 42%;
}

.track-map__pin--from { left: 4%; bottom: 10%; }
.track-map__pin--to { right: 4%; top: 12%; flex-direction: row-reverse; text-align: right; }

.track-map__pin-badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 6px 16px rgba(7, 49, 85, 0.18);
    flex-shrink: 0;
}

.track-map__pin--from .track-map__pin-badge { background: linear-gradient(135deg, var(--blue), var(--blue-deep)); }
.track-map__pin--to .track-map__pin-badge { background: linear-gradient(135deg, var(--red), var(--red-dark)); }

.track-map__pin-card {
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(7, 49, 85, 0.08);
    box-shadow: 0 8px 20px rgba(7, 49, 85, 0.1);
    backdrop-filter: blur(6px);
}

.track-map__pin-card strong {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue-soft);
    margin-bottom: 2px;
}

.track-map__pin-card span {
    display: block;
    font-size: 0.82rem;
    line-height: 1.35;
    color: var(--blue-deep);
    font-weight: 500;
}

.track-map[data-phase="delivered"] .track-map__path { stroke: #1f8f55; }
.track-map[data-phase="alert"] .track-map__path { stroke: var(--red); }
.track-map[data-phase="pending"] .track-map__vehicle { color: #c98a12; }

/* Live Leaflet map */
.track-map--live .track-map__header > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.track-map__live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    margin-top: 2px;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(31, 143, 85, 0.12);
    color: #1f8f55;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.track-map__live::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 0 rgba(31, 143, 85, 0.45);
    animation: trackPulse 2s infinite;
}

.track-map__live--estimated {
    background: rgba(0, 77, 144, 0.1);
    color: var(--blue);
}

.track-map__live--estimated::before {
    animation: none;
    box-shadow: none;
}

.track-map__leaflet {
    height: 280px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(7, 49, 85, 0.1);
    box-shadow:
        0 14px 32px rgba(7, 49, 85, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);
    z-index: 0;
}

.track-map__leaflet .leaflet-control-zoom a {
    color: var(--blue-deep);
}

.track-map-marker {
    background: transparent;
    border: none;
}

.track-map-marker__badge {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    border: 2px solid #fff;
    box-shadow: 0 4px 12px rgba(7, 49, 85, 0.22);
}

.track-map-marker--pickup .track-map-marker__badge {
    background: linear-gradient(135deg, var(--blue), var(--blue-deep));
}

.track-map-marker--delivery .track-map-marker__badge {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.track-map-marker--pod .track-map-marker__badge {
    background: linear-gradient(135deg, #1f8f55, #157a43);
    font-size: 0.58rem;
    letter-spacing: 0.02em;
}

.track-map-marker--vehicle .track-map-marker__badge {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #f4f8fc, #dceaf7);
    color: var(--blue-deep);
    font-size: 1rem;
}

.track-map-marker--vehicle .track-map-marker__badge::before {
    content: "🚚";
    line-height: 1;
}

/* Delivery signature */
.track-signature {
    margin-top: 8px;
    margin-bottom: 0;
    padding: 18px;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid rgba(7, 49, 85, 0.08);
    box-shadow: 0 8px 24px rgba(7, 49, 85, 0.06);
}

.track-signature__header {
    margin-bottom: 14px;
}

.track-signature__eyebrow {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue-soft);
    font-weight: 600;
    margin-bottom: 4px;
}

.track-signature__title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--blue-deep);
}

.track-signature__zoom {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
    text-align: center;
}

.track-signature__zoom:hover .track-signature__frame {
    border-color: rgba(0, 77, 144, 0.28);
    box-shadow: 0 10px 28px rgba(0, 77, 144, 0.12);
}

.track-signature__zoom:focus-visible {
    outline: 2px solid rgba(0, 77, 144, 0.35);
    outline-offset: 4px;
    border-radius: 14px;
}

.track-signature__hint {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--blue);
}

.track-signature__frame {
    padding: 14px;
    border-radius: 14px;
    background: linear-gradient(180deg, var(--blue-pale) 0%, var(--white) 100%);
    border: 1px dashed rgba(0, 77, 144, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.track-signature__frame img {
    display: block;
    max-width: 100%;
    max-height: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 6px 16px rgba(7, 49, 85, 0.12));
    pointer-events: none;
}

.track-signature-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2100;
    display: grid;
    place-items: center;
    padding: 24px;
}

.track-signature-lightbox[hidden] {
    display: none;
}

.track-signature-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 49, 85, 0.72);
    backdrop-filter: blur(4px);
}

.track-signature-lightbox__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 920px);
    max-height: min(90vh, 820px);
    padding: 18px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 28px 80px rgba(7, 49, 85, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
}

.track-signature-lightbox__dialog img {
    display: block;
    max-width: 100%;
    max-height: min(78vh, 720px);
    width: auto;
    height: auto;
    object-fit: contain;
}

.track-signature-lightbox__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(7, 49, 85, 0.1);
    border-radius: 10px;
    background: var(--white);
    color: var(--blue-deep);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(7, 49, 85, 0.1);
}

.track-signature-lightbox__close:hover {
    background: var(--blue-pale);
}

.track-result__meta,
.track-result__grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 18px;
}

.track-result__detail {
    padding: 12px 14px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid rgba(7, 49, 85, 0.08);
}

.track-result__detail dt {
    margin: 0 0 4px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue-soft);
    font-weight: 500;
}

.track-result__detail dd {
    margin: 0;
    font-size: 0.96rem;
    color: var(--text);
    line-height: 1.45;
}

.track-result__route {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 12px;
    align-items: stretch;
    margin-bottom: 18px;
}

.track-result__stop {
    padding: 16px;
    border-radius: 14px;
    background: var(--white);
    border: 1px solid rgba(7, 49, 85, 0.08);
    box-shadow: 0 4px 14px rgba(7, 49, 85, 0.04);
}

.track-result__stop h3 {
    margin: 0 0 10px;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 700;
}

.track-result__company {
    margin: 0 0 8px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--blue-deep);
}

.track-result__address,
.track-result__contact,
.track-result__schedule,
.track-result__missing-copy {
    margin: 0 0 6px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--text);
}

.track-result__missing-copy {
    color: var(--blue-soft);
}

.track-result__connector {
    display: grid;
    place-items: center;
    min-width: 28px;
}

.track-result__connector span {
    display: block;
    width: 2px;
    height: 100%;
    min-height: 80px;
    background: linear-gradient(180deg, var(--blue-light), var(--blue), var(--blue-light));
    border-radius: 999px;
}

@media (max-width: 767px) {
    .track-modal {
        padding: 12px;
    }

    .track-modal__dialog {
        max-height: 92vh;
        border-radius: 14px;
    }

    .track-modal__header,
    .track-modal__body {
        padding-left: 16px;
        padding-right: 16px;
    }

    .track-result__route,
    .track-result__meta,
    .track-result__grid {
        grid-template-columns: 1fr;
    }

    .track-map__surface {
        transform: none;
        min-height: 200px;
    }

    .track-map__pin {
        max-width: 46%;
    }

    .track-map__pin-card {
        padding: 6px 8px;
    }

    .track-map__pin-card span {
        font-size: 0.74rem;
    }

    .track-loader__truck {
        animation-duration: 1.8s;
    }

    .track-result__connector {
        min-height: 24px;
    }

    .track-result__connector span {
        width: 100%;
        height: 2px;
        min-height: 2px;
    }
}

/* ===== SERVICE MODAL ===== */
body.service-modal-open {
    overflow: hidden;
}

.service-modal {
    position: fixed;
    inset: 0;
    z-index: 2050;
    display: grid;
    place-items: center;
    padding: 20px;
}

.service-modal[hidden] {
    display: none;
}

.service-modal__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 10%, rgba(0, 77, 144, 0.08), transparent 40%),
        radial-gradient(circle at 85% 0%, rgba(195, 20, 66, 0.06), transparent 35%),
        rgba(7, 49, 85, 0.42);
    backdrop-filter: blur(6px);
}

.service-modal__dialog {
    position: relative;
    width: min(100%, 1080px);
    max-height: min(90vh, 920px);
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    border: 1px solid rgba(7, 49, 85, 0.06);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 246, 249, 0.98) 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.95) inset,
        0 32px 80px rgba(7, 49, 85, 0.16),
        0 8px 24px rgba(0, 77, 144, 0.08);
    overflow: hidden;
    animation: trackModalIn 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-modal__glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-deep) 0%, var(--blue) 45%, var(--red) 100%);
    pointer-events: none;
}

.service-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px 16px;
    border-bottom: 1px solid rgba(7, 49, 85, 0.08);
    background: linear-gradient(180deg, var(--blue-pale) 0%, var(--white) 100%);
}

.service-modal__eyebrow {
    margin: 0 0 4px;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue-soft);
    font-weight: 500;
}

.service-modal__title {
    margin: 0;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 500;
    color: var(--blue-deep);
}

.service-modal__close {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(7, 49, 85, 0.1);
    border-radius: 12px;
    background: var(--white);
    color: var(--blue-soft);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    box-shadow: 0 4px 12px rgba(7, 49, 85, 0.06);
}

.service-modal__close:hover {
    background: var(--blue-pale);
    border-color: rgba(0, 77, 144, 0.22);
    color: var(--blue-deep);
}

.service-modal__body {
    padding: 18px 24px 24px;
    overflow: auto;
    background: var(--white);
}

.service-modal__loading,
.service-modal__message {
    display: grid;
    place-items: center;
    min-height: 220px;
    color: var(--blue-soft);
    text-align: center;
}

.service-modal__message--error p {
    margin: 0;
    color: var(--red);
}

.service-modal__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 28px;
    align-items: start;
}

.service-modal__content {
    min-width: 0;
    color: var(--blue-deep);
    line-height: 1.65;
}

.service-modal__content h1,
.service-modal__content h2,
.service-modal__content h3 {
    color: var(--blue-deep);
    font-weight: 500;
    line-height: 1.25;
}

.service-modal__content h1 {
    margin: 0 0 14px;
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
}

.service-modal__content h2 {
    margin: 22px 0 10px;
    font-size: 1.2rem;
}

.service-modal__content h3 {
    margin: 18px 0 8px;
    font-size: 1.05rem;
}

.service-modal__content p {
    margin: 0 0 14px;
}

.service-modal__content ul {
    margin: 0 0 16px;
    padding-left: 1.2rem;
}

.service-modal__content li {
    margin-bottom: 6px;
}

.service-modal__content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.service-modal__content table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 16px;
}

.service-modal__content td {
    vertical-align: top;
    padding: 0 12px 0 0;
}

.service-modal__content a {
    color: var(--blue);
    text-decoration: underline;
}

.service-modal__nav {
    border-left: 1px solid rgba(7, 49, 85, 0.08);
    padding-left: 18px;
}

.service-modal__nav-group + .service-modal__nav-group {
    margin-top: 18px;
}

.service-modal__nav-heading {
    margin: 0 0 8px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.service-modal__nav-group--express .service-modal__nav-heading { color: #004c8f; }
.service-modal__nav-group--logistics .service-modal__nav-heading { color: #822a9b; }
.service-modal__nav-group--industry .service-modal__nav-heading { color: #d20435; }

.service-modal__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-modal__nav-link {
    display: block;
    width: 100%;
    margin: 0;
    padding: 6px 0;
    border: none;
    background: transparent;
    color: var(--blue-deep);
    font: inherit;
    font-size: 0.92rem;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease;
}

.service-modal__nav-link:hover,
.service-modal__nav-link.is-active {
    color: var(--blue);
}

.service-modal__nav-link.is-active {
    font-weight: 600;
}

.service-modal__questions {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid rgba(7, 49, 85, 0.08);
    text-align: center;
}

.service-modal__questions-title {
    margin: 0 0 8px;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    color: var(--blue-deep);
}

.service-modal__questions-title span {
    font-weight: 600;
    color: var(--red);
}

.service-modal__questions-copy {
    margin: 0 0 14px;
    color: var(--blue-soft);
}

.service-modal__questions-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s ease, transform 0.2s ease;
}

.service-modal__questions-cta:hover {
    background: var(--blue-deep);
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .service-modal__layout {
        grid-template-columns: 1fr;
    }

    .service-modal__nav {
        border-left: none;
        border-top: 1px solid rgba(7, 49, 85, 0.08);
        padding-left: 0;
        padding-top: 18px;
    }

    .service-modal__nav-group {
        display: inline-block;
        vertical-align: top;
        width: min(100%, 220px);
        margin-right: 18px;
    }
}

@media (max-width: 767px) {
    .service-modal {
        padding: 12px;
    }

    .service-modal__dialog {
        max-height: 92vh;
        border-radius: 14px;
    }

    .service-modal__header,
    .service-modal__body {
        padding-left: 16px;
        padding-right: 16px;
    }
}
