@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
    --bg-top: #ffffff;
    --bg-middle: #fffef7;
    --bg-shift: #ffe372;
    --bg-bottom: #f7cc2b;
    --surface: rgba(255, 255, 255, 0.78);
    --surface-strong: rgba(255, 255, 255, 0.9);
    --text: #20252a;
    --muted: #5a6169;
    --line: rgba(32, 37, 42, 0.12);
    --accent: #f2bf24;
    --accent-deep: #db9d00;
    --accent-ink: #2b2208;
    --shadow: 0 18px 50px rgba(23, 27, 31, 0.12);
    --radius-xl: 32px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --container: 1460px;
    --font-main: "Manrope", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    min-height: 100%;
    background:
        radial-gradient(circle at 84% 28%, rgba(246, 204, 50, 0.52), transparent 24%),
        radial-gradient(circle at 12% 88%, rgba(242, 191, 36, 0.36), transparent 32%),
        linear-gradient(
            180deg,
            var(--bg-top) 0%,
            var(--bg-middle) 50%,
            var(--bg-shift) 78%,
            var(--bg-bottom) 100%
        );
}

html,
body,
body * {
    font-family: var(--font-main);
}

body {
    margin: 0;
    min-height: 100vh;
    min-width: 320px;
    font-family: var(--font-main);
    color: var(--text);
    background: transparent;
}

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

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.78), transparent 42%),
        linear-gradient(315deg, rgba(242, 210, 95, 0.34), transparent 52%);
    opacity: 1;
}

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

.inline-link {
    color: var(--accent-ink);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 700;
}

.inline-link:hover {
    color: #3a2e0a;
}

button,
input {
    font: inherit;
}

.page-shell {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 12px), var(--container));
    margin: 0 auto;
    padding: 0;
}

.site-header,
.surface {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    flex-direction: column;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    overflow: visible;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
    will-change: transform;
}

.site-header.is-hidden {
    transform: translateY(calc(-100% - 10px));
    opacity: 0;
    pointer-events: none;
}

.site-header-top {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 14px 20px 13px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 0;
    margin-right: auto;
}

.brand-mark {
    width: 152px;
    height: 152px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 50%;
    clip-path: circle(50% at 50% 50%);
    background: transparent;
    border: none;
}

.brand-mark img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    border-radius: 50%;
    clip-path: circle(50% at 50% 50%);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
    max-width: 560px;
    line-height: 1.12;
}

.brand-copy strong,
.section-head h2,
.hero h1,
.visual-panel h2,
.service-card h3,
.rates-note h3,
.coverage-card h3,
.process-card h3,
.contact-card h3,
.lead-form h3 {
    font-family: var(--font-main);
    letter-spacing: 0;
}

.brand-copy small {
    color: rgba(32, 37, 42, 0.62);
    font-size: 0.88rem;
}

.brand-copy strong {
    font-size: 2.18rem;
    font-weight: 900;
}

.header-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: #1f252b;
    font-size: 1.15rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.header-status-dot {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #49c231;
    box-shadow: 0 0 0 5px rgba(73, 194, 49, 0.2);
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0 14px;
    border-top: 1px solid #d9dde2;
    font-weight: 700;
    overflow: visible;
}

.site-nav > a,
.site-nav > .menu-item > .menu-link {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0 14px;
    color: #16191f;
    font-size: 1.02rem;
    white-space: nowrap;
    border-bottom: 0;
    transition: color 0.2s ease;
}

.site-nav > a.is-current,
.site-nav > .menu-item > .menu-link.is-current {
    color: #000;
    border-bottom: 0;
    font-weight: 800;
}

.site-nav > a:hover,
.site-nav > .menu-item > .menu-link:hover {
    color: #000;
}

.menu-toggle {
    margin: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    cursor: pointer;
}

.menu-toggle:focus-visible {
    border-radius: 10px;
    outline: 2px solid rgba(32, 37, 42, 0.36);
    outline-offset: -2px;
}

.menu-item {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.menu-item-services > .menu-link::after {
    content: "⌄";
    margin-left: 7px;
    font-size: 0.78em;
    transform: translateY(-1px);
    transition: transform 0.2s ease;
}

.menu-item-services.is-open > .menu-link::after {
    transform: translateY(-1px) rotate(180deg);
}

.submenu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    display: grid;
    gap: 2px;
    min-width: 285px;
    padding: 8px;
    border: 1px solid #d9dde2;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 28px rgba(24, 29, 34, 0.12);
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 45;
}

.submenu a {
    display: block;
    padding: 9px 10px;
    border-radius: 8px;
    color: #1a2026;
    font-size: 0.92rem;
    font-weight: 600;
    white-space: nowrap;
}

.submenu a:hover {
    background: rgba(242, 191, 36, 0.14);
}

.menu-item-services.is-open .submenu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.site-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 52px;
    padding: 0 4px;
    color: #05090e;
    font-weight: 700;
    white-space: nowrap;
    font-size: clamp(1.12rem, 1.5vw, 1.36rem);
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.site-phone::before {
    content: "☎";
    color: #efc53e;
    font-size: 1.18rem;
    transform: none;
}

.site-phone:hover {
    color: #1a1e23;
}

.header-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 34px;
    border-radius: 14px;
    background: #f1d24f;
    border: 1px solid rgba(32, 37, 42, 0.12);
    color: #0f1318;
    font-size: 1.02rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    white-space: nowrap;
    flex-shrink: 0;
    transition: transform 0.2s ease, filter 0.2s ease, background-color 0.2s ease;
}

.header-call-btn:hover {
    transform: translateY(-2px);
    background: #f4d961;
}

.messenger-links {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-left: 8px;
    flex-shrink: 0;
}

.messenger-link {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.messenger-link img {
    display: block;
    width: 22px;
    height: 22px;
}

.messenger-link:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
}

.messenger-link:focus-visible,
.header-call-btn:focus-visible {
    outline: 3px solid rgba(241, 210, 79, 0.55);
    outline-offset: 2px;
}

.messenger-link--telegram {
    background: linear-gradient(180deg, #2aabee 0%, #229ed9 100.5%);
}

.messenger-link--vk {
    background: #0077ff;
}

.messenger-link--max {
    background:
        radial-gradient(circle at 8% 18%, rgba(0, 0, 255, 0.9), transparent 45%),
        linear-gradient(73.55deg, #44ccff 14.56%, #5533ee 63.57%, #9933dd 88.6%);
}

.site-phone:focus-visible {
    outline: 3px solid rgba(241, 210, 79, 0.55);
    outline-offset: 2px;
}

main {
    display: flex;
    flex-direction: column;
    gap: clamp(28px, 5vw, 68px);
    padding-top: 36px;
}

.section {
    padding: 0 0 6px;
}

.page-hero {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 34px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.9), rgba(255, 245, 209, 0.88));
}

.page-hero h1 {
    margin: 0;
    max-width: 15ch;
    font-size: clamp(2.2rem, 4.3vw, 3.8rem);
    line-height: 1;
}

.page-lead {
    max-width: 860px;
    margin: 0;
    color: var(--muted);
    font-size: 1.12rem;
    line-height: 1.8;
}

.page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.page-hero .eyebrow {
    color: rgba(32, 37, 42, 0.68);
}

.page-hero .button-secondary {
    border-color: rgba(32, 37, 42, 0.16);
    background: rgba(255, 255, 255, 0.52);
    color: var(--accent-ink);
}

.page-hero-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
    gap: clamp(20px, 3vw, 36px);
    align-items: center;
}

.page-hero-main {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
}

.page-hero-main > * {
    margin-top: 0;
    margin-bottom: 0;
}

.page-hero-side-image {
    width: min(100%, 430px);
    margin-left: auto;
    transform: translateX(-14px);
    border-radius: 0;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.page-hero-side-image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
    mix-blend-mode: normal;
    background: transparent;
}

.page-hero-side-image img.is-mirrored {
    transform: scaleX(-1);
}

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

.rates-highlights li {
    padding: 14px 16px;
    border: 1px solid rgba(32, 37, 42, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.5);
}

.rates-highlights strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.18rem;
}

.rates-highlights span {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: clamp(24px, 3vw, 46px);
    align-items: stretch;
    padding-top: 22px;
}

.hero.section {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: clamp(28px, 3.8vw, 52px)
        max(24px, calc((100vw - var(--container)) / 2 + 24px));
    border-radius: 0 0 64px 64px;
    background: #f1f4f9;
    overflow: hidden;
}

.hero-copy,
.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.hero-copy {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.eyebrow {
    margin: 0;
    color: rgba(32, 37, 42, 0.66);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    max-width: 13ch;
    color: var(--text);
    font-size: clamp(2.5rem, 5.2vw, 4.6rem);
    line-height: 0.98;
}

.hero-lead {
    max-width: 640px;
    margin: 0;
    color: var(--muted);
    font-size: clamp(1.02rem, 2vw, 1.24rem);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
    background: linear-gradient(135deg, #ffd445, #efb310);
    color: var(--accent-ink);
    box-shadow: 0 14px 30px rgba(126, 88, 0, 0.18);
}

.button-secondary {
    border-color: rgba(32, 37, 42, 0.2);
    background: rgba(255, 255, 255, 0.9);
    color: #1a2128;
}

.button-contact {
    border-color: rgba(20, 128, 61, 0.5);
    background: linear-gradient(135deg, #33c563, #16964a);
    color: #fff;
    box-shadow: 0 14px 30px rgba(22, 122, 58, 0.24);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 0;
    margin: 8px 0 0;
    list-style: none;
}

.surface {
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: var(--radius-xl);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.hero-metrics li,
.visual-panel,
.service-card,
.rates-table-wrap,
.rates-note,
.coverage-card,
.process-card,
.contact-card,
.lead-form,
.intro-band {
    padding: 24px;
}

.hero-metrics strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.45rem;
}

.hero-metrics span {
    color: var(--muted);
    line-height: 1.55;
}

.hero-visual {
    justify-content: center;
    align-items: flex-end;
    position: relative;
    min-height: 100%;
    min-width: 0;
    z-index: 1;
}

.hero-logo-shot {
    position: relative;
    z-index: 1;
    margin: 0;
    display: block;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    width: min(100%, 760px);
    margin-left: auto;
    pointer-events: none;
}

.hero-logo-shot img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 24px;
    box-shadow: 0 24px 48px rgba(24, 28, 33, 0.12);
    opacity: 0.93;
}

.hero-visual::before,
.hero-visual::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(24px);
}

.hero-visual::before {
    width: 220px;
    height: 220px;
    right: 12%;
    top: 5%;
    background: rgba(255, 223, 121, 0.38);
}

.hero-visual::after {
    width: 180px;
    height: 180px;
    left: 2%;
    bottom: 10%;
    background: rgba(74, 82, 90, 0.2);
}

.visual-panel {
    position: relative;
    z-index: 1;
    min-height: 320px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.9), rgba(255, 245, 209, 0.88));
}

.visual-kicker {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.visual-panel h2 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 0.98;
}

.visual-panel p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.visual-route {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    font-weight: 800;
}

.visual-card {
    position: absolute;
    z-index: 2;
    right: -8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: min(240px, 72%);
    padding: 18px 20px;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(35, 40, 44, 0.16);
}

.visual-card span {
    font-size: 0.84rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.visual-card strong {
    font-size: 1.35rem;
    line-height: 1.15;
}

.visual-card-dark {
    top: -14px;
    background: rgba(37, 43, 48, 0.9);
    color: #fff;
}

.visual-card-accent {
    bottom: 14px;
    left: -8px;
    right: auto;
    background: linear-gradient(135deg, #ffd84f, #f0b212);
    color: var(--accent-ink);
}

.section-head {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.section-head-compact h2 {
    max-width: none;
    font-size: clamp(1.55rem, 2.4vw, 2.15rem);
}

.section-head .eyebrow {
    color: rgba(32, 37, 42, 0.7);
}

.section-head h2 {
    margin: 0;
    max-width: 12ch;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1;
}

.section-head h2.section-title-inline {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
}


.intro-band {
    background: var(--surface-strong);
}

.intro-band p {
    margin: 0;
    font-size: 1.06rem;
    line-height: 1.8;
}

.service-grid,
.coverage-layout,
.contact-layout,
.rates-layout,
.quick-grid,
.split-grid {
    display: grid;
    gap: 18px;
}

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

.service-grid-transport {
    align-items: stretch;
}

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

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

.works-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.work-card {
    display: block;
    position: relative;
    margin: 0;
    aspect-ratio: 16 / 10;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(32, 37, 42, 0.12);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 14px 30px rgba(23, 27, 31, 0.16);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    cursor: zoom-in;
}

.work-card:hover {
    transform: translateY(-4px);
    border-color: rgba(32, 37, 42, 0.24);
    box-shadow: 0 22px 42px rgba(20, 24, 28, 0.22);
}

.work-card:focus-visible {
    outline: 3px solid rgba(239, 179, 16, 0.5);
    outline-offset: 2px;
}

.work-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: #d5d8dc;
}

.work-image-rotated {
    transform: rotate(-90deg) scale(1.34);
    transform-origin: center;
}

.work-card-caption {
    display: block;
    padding: 11px 14px 12px;
    color: rgba(32, 37, 42, 0.82);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(246, 233, 188, 0.86));
}

.work-modal[hidden] {
    display: none;
}

.work-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 20px;
}

.work-modal-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(10, 13, 18, 0.78);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    cursor: pointer;
}

.work-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(1200px, 96vw);
    padding: 56px 18px 14px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(17, 22, 28, 0.86);
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.38);
}

.work-modal-image {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 78vh;
    margin: 0 auto;
    border-radius: 14px;
    background: #1b2129;
}

.work-modal-caption {
    margin: 10px 0 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.work-modal-close,
.work-modal-nav {
    border: 0;
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.work-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 1.75rem;
    line-height: 1;
}

.work-modal-nav {
    position: absolute;
    top: 50%;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 2rem;
    line-height: 1;
    transform: translateY(-50%);
}

.work-modal-prev {
    left: 10px;
}

.work-modal-next {
    right: 10px;
}

.work-modal-close:hover,
.work-modal-nav:hover {
    transform: translateY(-50%) scale(1.04);
    background: rgba(255, 255, 255, 0.28);
}

.work-modal-close:hover {
    transform: scale(1.04);
}

.work-modal-close:focus-visible,
.work-modal-nav:focus-visible {
    outline: 3px solid rgba(239, 179, 16, 0.7);
    outline-offset: 2px;
}

.quick-card,
.content-card {
    padding: 24px;
}

.quick-card {
    position: relative;
}

.quick-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
}

.quick-card h3 {
    margin: 0;
    font-size: 1.8rem;
    line-height: 1;
}

.quick-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    border: 1.5px solid var(--accent);
    background: #fff;
    color: #1d2127;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quick-card-icon svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.quick-card-icon x-eos-work {
    position: relative;
    display: block;
    width: 32px;
    height: 32px;
}

.quick-card-icon x-eos-work::before {
    content: "";
    position: absolute;
    left: 4px;
    right: 4px;
    top: 10px;
    bottom: 4px;
    border-radius: 5px;
    background: currentColor;
}

.quick-card-icon x-eos-work::after {
    content: "";
    position: absolute;
    left: 10px;
    top: 4px;
    width: 12px;
    height: 8px;
    border-radius: 4px 4px 0 0;
    background:
        linear-gradient(#fff, #fff) center 2px / 6px 3px no-repeat,
        currentColor;
}

.quick-card-icon x-fluentui-notepad-24 {
    position: relative;
    display: block;
    width: 32px;
    height: 32px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%231d2127' d='M5.8 4.8h10.9A3.3 3.3 0 0 1 20 8.1v9.5L15.1 22H6a3.5 3.5 0 0 1-3.5-3.5V8.3A3.5 3.5 0 0 1 5.8 4.8Z'/%3E%3Crect x='6.7' y='2.2' width='1.6' height='3' rx='.8' fill='%231d2127'/%3E%3Crect x='10.2' y='2.2' width='1.6' height='3' rx='.8' fill='%231d2127'/%3E%3Crect x='13.7' y='2.2' width='1.6' height='3' rx='.8' fill='%231d2127'/%3E%3Crect x='6.5' y='8.8' width='10.1' height='1.8' rx='.9' fill='%23fff'/%3E%3Crect x='6.5' y='12.5' width='10.1' height='1.8' rx='.9' fill='%23fff'/%3E%3Crect x='6.5' y='16.2' width='5.3' height='1.8' rx='.9' fill='%23fff'/%3E%3Cpath fill='%23fff' d='M14.8 22v-2.9a2.1 2.1 0 0 1 2.1-2.1H20z'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.quick-card p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.7;
}

.content-card {
    min-height: 100%;
}

.content-card-with-image {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    gap: 24px;
    align-items: stretch;
}

.content-card-copy {
    min-width: 0;
}

.bullet-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding-left: 20px;
}

.bullet-list li {
    color: var(--muted);
    line-height: 1.75;
}

.content-card-media {
    margin-top: 18px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(32, 37, 42, 0.1);
    background: rgba(255, 255, 255, 0.58);
}

.content-card-media img {
    display: block;
    width: 100%;
    height: clamp(190px, 20vw, 260px);
    object-fit: cover;
    object-position: center;
}

.content-card-media-side {
    margin-top: 0;
    height: 100%;
}

.content-card-media-side img {
    height: 100%;
    min-height: 360px;
    max-height: none;
    object-position: right center;
}

.content-card-media-full img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
    background: transparent;
}

.content-card-media-side.content-card-media-full {
    height: auto;
    aspect-ratio: 1 / 1;
    align-self: center;
}

.service-card h3,
.coverage-card h3,
.process-card h3,
.contact-card h3,
.lead-form h3,
.rates-note h3 {
    margin: 0 0 12px;
    font-size: 1.55rem;
    line-height: 1;
}

.service-card p,
.rates-note li,
.coverage-card p,
.process-card span,
.contact-card dd,
.lead-form label span,
.form-note {
    color: var(--muted);
    line-height: 1.7;
}

.service-card {
    min-height: 208px;
}

.service-card-link {
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card-link:hover {
    transform: translateY(-3px);
    border-color: rgba(32, 37, 42, 0.22);
    box-shadow: 0 22px 46px rgba(23, 27, 31, 0.18);
}

.service-card-link:focus-visible {
    outline: 3px solid rgba(239, 179, 16, 0.55);
    outline-offset: 2px;
}

.service-card-link p,
.service-card-link h3 {
    margin: 0;
}

.service-card-kicker {
    color: rgba(32, 37, 42, 0.7);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-card-action {
    margin-top: auto;
    font-weight: 800;
    color: var(--accent-ink);
}

.service-card-transport {
    min-height: 282px;
    padding: 20px 22px 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    background: linear-gradient(165deg, #3a3b3f 0%, #44464a 100%);
    box-shadow: 0 18px 38px rgba(22, 25, 29, 0.2);
    overflow: hidden;
}

.service-card-transport:hover {
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 26px 48px rgba(19, 22, 26, 0.35);
}

.transport-card-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.transport-card-head h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.7rem, 2vw, 2rem);
    line-height: 1.1;
}

.transport-card-arrow {
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}

.transport-card-image {
    display: block;
    width: min(95%, 340px);
    height: 150px;
    margin: auto auto 0;
    object-fit: contain;
    filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.28));
}

@media (max-width: 1320px) {
    .transport-card-head h3 {
        font-size: 1.82rem;
    }
}

.crumbs {
    margin: 0 0 8px;
    color: rgba(32, 37, 42, 0.65);
    font-weight: 700;
}

.crumbs a {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.rates-layout {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    align-items: start;
}

.rates-table {
    width: 100%;
    border-collapse: collapse;
}

.rates-table caption {
    margin-bottom: 10px;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--muted);
}

.rates-table th,
.rates-table td {
    padding: 16px 0;
    text-align: left;
    border-bottom: 1px solid var(--line);
}

.rates-table tbody tr:last-child td {
    border-bottom: 0;
}

.rates-table th {
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
}

.rates-table td:last-child,
.rates-table th:last-child {
    text-align: right;
    font-weight: 800;
}

.rates-footnote {
    margin: 16px 0 0;
    color: var(--muted);
    line-height: 1.65;
    font-size: 0.95rem;
}

.rates-note {
    display: grid;
    gap: 14px;
    align-content: start;
}

.rates-note ul {
    margin: 0;
    padding-left: 18px;
}

.rates-note-tip {
    margin: 0;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.48);
    border: 1px solid rgba(32, 37, 42, 0.1);
    color: var(--muted);
    line-height: 1.65;
    font-size: 0.94rem;
}

.rates-note .button {
    width: 100%;
}

.rates-note .button-secondary {
    border-color: rgba(32, 37, 42, 0.16);
    background: rgba(255, 255, 255, 0.44);
    color: var(--accent-ink);
}

.estimator {
    display: grid;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 242, 196, 0.9));
}

.estimator-intro {
    margin: -6px 0 0;
    max-width: 70ch;
    color: var(--muted);
    line-height: 1.75;
}

.estimator-warning {
    margin: 0;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(32, 37, 42, 0.14);
    background: rgba(255, 233, 158, 0.54);
    color: #2c2208;
    font-weight: 700;
    line-height: 1.6;
}

.estimator-body {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 16px;
    align-items: start;
}

.estimator-form {
    display: grid;
    gap: 14px;
}

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

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

.estimator-field span {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.estimator-field select,
.estimator-field input {
    width: 100%;
    min-height: 54px;
    padding: 0 14px;
    border: 1px solid rgba(32, 37, 42, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.84);
    color: var(--text);
    font: inherit;
}

.estimator-field select:focus-visible,
.estimator-field input:focus-visible {
    outline: 3px solid rgba(239, 179, 16, 0.52);
    outline-offset: 1px;
}

.estimator-field input {
    appearance: textfield;
}

.estimator-field input::-webkit-outer-spin-button,
.estimator-field input::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
}

.estimator-hint {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.65;
}

.estimator-result {
    display: grid;
    gap: 12px;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(32, 37, 42, 0.12);
    background: rgba(255, 255, 255, 0.6);
}

.estimator-kicker {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.estimator-total {
    margin: 0;
}

.estimator-total strong {
    display: block;
    font-size: clamp(1.35rem, 2.7vw, 2rem);
    line-height: 1.1;
    color: var(--accent-ink);
}

.estimator-breakdown {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(32, 37, 42, 0.1);
    border-bottom: 1px solid rgba(32, 37, 42, 0.1);
}

.estimator-breakdown li {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(32, 37, 42, 0.08);
}

.estimator-breakdown li:last-child {
    border-bottom: 0;
}

.estimator-breakdown span {
    color: var(--muted);
    line-height: 1.5;
}

.estimator-meta {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.estimator-actions {
    display: grid;
    gap: 10px;
}

.estimator .button {
    width: 100%;
}

.estimator .button-secondary {
    border-color: rgba(32, 37, 42, 0.16);
    background: rgba(255, 255, 255, 0.48);
    color: var(--accent-ink);
}

.coverage-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-list span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(32, 37, 42, 0.08);
    font-weight: 700;
}

.process-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-list li {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.52);
    border: 1px solid rgba(32, 37, 42, 0.08);
}

.process-list strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1rem;
}

.contact-layout {
    grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
}

.contact-list {
    display: grid;
    gap: 18px;
    margin: 0;
}

.contact-list dt {
    margin-bottom: 6px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
}

.contact-list dd {
    margin: 0;
    font-size: 1.06rem;
}

.lead-form {
    display: grid;
    gap: 16px;
}

.lead-form label {
    display: grid;
    gap: 8px;
}

.lead-form input {
    width: 100%;
    min-height: 56px;
    padding: 0 16px;
    border: 1px solid rgba(32, 37, 42, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--text);
}

.form-note {
    margin: 0;
    font-size: 0.94rem;
}

.lead-modal[hidden] {
    display: none;
}

.lead-modal {
    position: fixed;
    inset: 0;
    z-index: 140;
    display: grid;
    place-items: center;
    padding: 20px;
    isolation: isolate;
}

.lead-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(14, 19, 24, 0.64);
}

.lead-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 540px);
    display: grid;
    gap: 14px;
    padding: 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
}

.lead-modal-dialog h2 {
    margin: 0;
    font-size: clamp(1.6rem, 4.2vw, 2.15rem);
    line-height: 1.08;
}

.lead-modal-subtitle,
.lead-modal-source {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.lead-modal-source {
    font-size: 0.94rem;
}

.lead-modal-form {
    display: grid;
    gap: 12px;
}

.lead-modal-form label {
    display: grid;
    gap: 8px;
}

.lead-modal-form label span {
    font-size: 0.92rem;
    font-weight: 700;
}

.lead-modal-form input {
    width: 100%;
    min-height: 56px;
    padding: 0 16px;
    border: 1px solid rgba(32, 37, 42, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.84);
    color: var(--text);
}

.lead-modal-form input:focus-visible {
    outline: 3px solid rgba(239, 179, 16, 0.45);
    outline-offset: 1px;
}

.lead-modal-phone-label span {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #1d2126;
}

.lead-modal-phone-input {
    min-height: 58px;
    padding: 0 18px;
    border: 1px solid rgba(26, 30, 35, 0.86);
    border-radius: 16px;
    background: #fff;
    color: #1f2328;
    font-size: 1.18rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    font-variant-numeric: tabular-nums;
}

.lead-modal-phone-input::placeholder {
    color: rgba(31, 35, 40, 0.6);
}

.lead-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(32, 37, 42, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: rgba(32, 37, 42, 0.8);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lead-modal-close:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(16, 20, 24, 0.14);
}

.lead-modal-close:focus-visible {
    outline: 3px solid rgba(239, 179, 16, 0.45);
    outline-offset: 2px;
}

.lead-modal-success {
    margin: 0;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(20, 132, 63, 0.3);
    background: rgba(227, 246, 233, 0.9);
    color: #155b32;
    font-weight: 700;
}

.contacts-showcase {
    padding: clamp(18px, 2.6vw, 28px);
    background: rgba(255, 255, 255, 0.93);
}

.safety-hero {
    margin-bottom: 20px;
}

.safety-hero h1 {
    margin: 0;
    max-width: 17ch;
    font-size: clamp(2.05rem, 4.2vw, 3.6rem);
    line-height: 0.98;
    letter-spacing: -0.02em;
}

.safety-lead {
    max-width: 600px;
    margin: 12px 0 0;
    font-size: clamp(0.96rem, 1.35vw, 1.24rem);
    line-height: 1.5;
}

.safety-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-end;
    margin-top: 20px;
}

.safety-cta {
    min-height: 54px;
    min-width: min(360px, 100%);
    padding: 0 22px;
    font-size: clamp(0.9rem, 1.18vw, 1.1rem);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.safety-callback {
    margin: 0 0 6px;
    color: #2f3640;
    font-size: 0.95rem;
    line-height: 1.35;
    font-style: italic;
}

.safety-callback strong {
    font-style: normal;
    font-weight: 800;
    background: linear-gradient(transparent 62%, rgba(242, 191, 36, 0.5) 62%);
}

.safety-contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 10px;
}

.safety-phone-card {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 5px 14px 5px 5px;
    border-radius: 16px;
    border: 1px solid rgba(32, 37, 42, 0.12);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 24px rgba(24, 29, 34, 0.1);
    font-size: clamp(0.96rem, 1.36vw, 1.2rem);
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.safety-phone-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(24, 29, 34, 0.14);
}

.safety-phone-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(32, 37, 42, 0.09);
}

.safety-phone-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: #20252a;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contacts-showcase > h1 {
    margin: 0 0 24px;
    font-size: clamp(2.2rem, 4.6vw, 3.4rem);
    line-height: 1;
}

.contacts-line {
    margin: 0 0 14px;
    font-size: clamp(0.98rem, 1.22vw, 1.16rem);
    line-height: 1.55;
}

.contacts-line strong,
.contacts-details strong {
    font-weight: 800;
}

.contacts-map-wrap {
    position: relative;
    margin: 0 0 20px;
    height: clamp(200px, 30vw, 320px);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(32, 37, 42, 0.12);
    box-shadow: 0 12px 28px rgba(22, 27, 32, 0.1);
}

.contacts-map-wrap iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.contacts-details {
    display: grid;
    gap: 8px;
}

.contacts-details p {
    margin: 0;
    font-size: clamp(0.96rem, 1.12vw, 1.08rem);
    line-height: 1.55;
}

.contacts-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}

.contacts-actions .button-secondary {
    border-color: rgba(32, 37, 42, 0.16);
    background: rgba(255, 255, 255, 0.54);
    color: var(--accent-ink);
}

.cta-banner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) auto;
    gap: 22px;
    align-items: center;
    padding: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 236, 171, 0.94));
}

.cta-banner h2 {
    margin: 0 0 10px;
    font-size: clamp(1.7rem, 2.8vw, 2.45rem);
    line-height: 1.04;
}

.cta-banner p:last-child {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.faq-section {
    padding: 28px;
}

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

.faq-item {
    border: 1px solid rgba(32, 37, 42, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.52);
    overflow: hidden;
}

.faq-question {
    margin: 0;
}

.faq-trigger {
    width: 100%;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    position: relative;
    padding: 16px 48px 16px 18px;
    cursor: pointer;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.35;
}

.faq-trigger::after {
    content: "+";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.45rem;
    color: var(--accent-ink);
    line-height: 1;
}

.faq-item.is-open .faq-trigger::after {
    content: "-";
}

.faq-trigger:focus-visible {
    outline: 3px solid rgba(239, 179, 16, 0.5);
    outline-offset: -2px;
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.24s ease;
}

.faq-item.is-open .faq-answer {
    opacity: 1;
}

.faq-answer p {
    margin: 0;
    padding: 0 18px 16px;
    color: var(--muted);
    line-height: 1.7;
}

.site-footer {
    position: relative;
    width: 100vw;
    margin-top: 46px;
    margin-left: calc(50% - 50vw);
    padding: 40px max(24px, calc((100vw - var(--container)) / 2 + 24px)) 18px;
    color: #edf1f6;
    background: #2f3237;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.site-footer-inner {
    width: min(100%, var(--container));
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1.2fr;
    gap: 28px;
}

.footer-col h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.2;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-brand-mark {
    width: 136px;
    height: 136px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    clip-path: circle(50% at 50% 50%);
    background: transparent;
    border: none;
}

.footer-brand-mark img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    border-radius: 50%;
    clip-path: circle(50% at 50% 50%);
}

img[src$="logo-new-round.png"] {
    border-radius: 50%;
    clip-path: circle(50% at 50% 50%);
}

.footer-brand-copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.footer-brand-copy strong {
    font-size: 1.36rem;
    font-weight: 900;
    line-height: 1.05;
}

.footer-brand-copy small {
    color: rgba(237, 241, 246, 0.76);
    font-size: 0.82rem;
    line-height: 1.3;
}

.footer-about {
    margin: 0;
    max-width: 36ch;
    color: rgba(237, 241, 246, 0.82);
    line-height: 1.7;
}

.footer-nav {
    display: grid;
    align-content: start;
    gap: 8px;
}

.footer-nav a {
    color: #edf1f6;
    font-weight: 600;
    line-height: 1.45;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: #ffd34b;
}

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

.footer-contact-list li {
    display: grid;
    gap: 2px;
}

.footer-contact-list span {
    color: rgba(237, 241, 246, 0.66);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-contact-list a,
.footer-contact-list p {
    margin: 0;
    color: #f7f9fc;
    font-size: 1.02rem;
    line-height: 1.5;
}

.footer-cta p {
    margin: 0 0 14px;
    color: rgba(237, 241, 246, 0.84);
    line-height: 1.65;
}

.footer-actions {
    display: grid;
    gap: 10px;
}

.site-footer .button {
    min-height: 48px;
    padding: 0 20px;
    box-shadow: none;
}

.site-footer .button-secondary {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.footer-messengers {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
}

.site-footer .messenger-link {
    width: 38px;
    height: 38px;
}

.site-footer .messenger-link img {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    margin-top: 26px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(237, 241, 246, 0.86);
    font-size: 0.95rem;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 10px;
}

.footer-legal a {
    color: rgba(237, 241, 246, 0.9);
    font-size: 0.9rem;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-legal a:hover {
    color: #ffd34b;
}

@media (max-width: 1080px) {
    .site-header-top {
        flex-wrap: wrap;
        row-gap: 10px;
    }

    .brand {
        width: 100%;
        margin-right: 0;
    }

    .header-status {
        order: 2;
    }

    .site-phone {
        order: 3;
        font-size: 1.24rem;
    }

    .header-call-btn {
        order: 4;
        margin-left: auto;
        min-height: 46px;
        padding: 0 24px;
    }

    .messenger-links {
        order: 5;
        margin-left: 0;
    }

    .site-nav {
        flex-wrap: nowrap;
        padding: 0 10px;
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: thin;
    }

    .site-nav > a,
    .site-nav > .menu-item > .menu-link {
        min-height: 52px;
        padding: 0 12px;
        font-size: 0.95rem;
    }

    .submenu {
        position: fixed;
        top: 110px;
        left: 10px;
        right: 10px;
        display: none;
        min-width: 0;
        max-height: min(62vh, 420px);
        overflow: auto;
        gap: 4px;
        padding: 10px;
        border: 1px solid #d9dde2;
        border-radius: 14px;
        background: #fff;
        box-shadow: 0 16px 34px rgba(24, 29, 34, 0.18);
        opacity: 1;
        transform: none;
        pointer-events: auto;
        z-index: 70;
    }

    .menu-item-services.is-open .submenu {
        display: grid;
    }

    .hero,
    .rates-layout,
    .coverage-layout,
    .contact-layout,
    .quick-grid,
    .split-grid,
    .cta-banner {
        grid-template-columns: 1fr;
    }

    .page-hero-split {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .page-hero-side-image {
        width: min(100%, 420px);
        margin: 0;
        transform: none;
    }

    .content-card-with-image {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .content-card-media-side {
        margin-top: 0;
        height: auto;
    }

    .content-card-media-side img {
        height: clamp(210px, 42vw, 320px);
        min-height: 0;
        object-position: center;
    }

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

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

    .hero h1,
    .section-head h2,
    .page-hero h1 {
        max-width: none;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        padding-top: 26px;
    }

    .visual-card {
        position: relative;
        inset: auto;
        width: auto;
    }

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

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

    .estimator-body {
        grid-template-columns: 1fr;
    }

    .contacts-map-wrap {
        height: 280px;
    }

    .safety-phone-card {
        width: min(100%, 540px);
        justify-content: flex-start;
    }

    .work-modal-dialog {
        width: min(96vw, 920px);
    }

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

@media (max-width: 720px) {
    .page-shell {
        width: min(calc(100% - 20px), var(--container));
        padding-top: 0;
    }

    .site-header-top {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px;
        padding: 14px;
    }

    .brand {
        grid-column: 1 / -1;
        width: 100%;
        margin-right: 0;
    }

    .brand-mark {
        width: 124px;
        height: 124px;
    }

    .header-status {
        order: 2;
        font-size: 1.02rem;
    }

    .site-phone {
        order: 3;
        min-height: 44px;
        font-size: 1.12rem;
    }

    .header-call-btn {
        order: 4;
        margin-left: 0;
        width: 100%;
        min-height: 46px;
        padding: 0 16px;
        font-size: 0.94rem;
    }

    .messenger-links {
        order: 5;
        justify-self: end;
        margin-left: 0;
    }

    .brand-copy strong {
        font-size: 1.28rem;
    }

    .brand-copy small {
        font-size: 0.88rem;
    }

    .site-nav {
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding: 0 6px;
        gap: 2px;
    }

    .site-nav > a,
    .site-nav > .menu-item > .menu-link {
        min-height: 47px;
        padding: 0 10px;
        font-size: 0.88rem;
    }

    .hero {
        gap: 18px;
        padding-top: 10px;
    }

    .hero.section {
        padding: 22px;
        border-radius: 0;
    }

    .hero-logo-shot {
        min-height: 0;
        padding: 0;
        border-radius: 0;
    }

    .hero-logo-shot img {
        width: min(100%, 520px);
        height: auto;
        border-radius: 16px;
    }

    .page-hero,
    .quick-card,
    .content-card,
    .cta-banner,
    .faq-section {
        padding: 22px;
    }

    .quick-card-icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
    }

    .quick-card-icon svg {
        width: 28px;
        height: 28px;
    }

    .quick-card-icon x-eos-work {
        width: 28px;
        height: 28px;
    }

    .quick-card-icon x-fluentui-notepad-24 {
        width: 28px;
        height: 28px;
    }

    .hero h1 {
        font-size: clamp(2rem, 10.5vw, 3rem);
    }

    .page-hero h1 {
        font-size: clamp(1.85rem, 8.8vw, 2.8rem);
    }

    .rates-highlights {
        grid-template-columns: 1fr;
    }

    .hero-lead,
    .page-lead,
    .intro-band p {
        font-size: 0.98rem;
    }

    .hero-metrics li,
    .visual-panel,
    .service-card,
    .rates-table-wrap,
    .rates-note,
    .estimator,
    .coverage-card,
    .process-card,
    .contact-card,
    .lead-form,
    .intro-band {
        padding: 20px;
        border-radius: 24px;
    }

    .button {
        width: 100%;
    }

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

    .works-gallery {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .work-modal {
        padding: 10px;
    }

    .lead-modal {
        padding: 12px;
    }

    .lead-modal-dialog {
        width: 100%;
        padding: 24px 14px 14px;
        border-radius: 16px;
    }

    .lead-modal-dialog h2 {
        font-size: clamp(1.35rem, 7vw, 1.75rem);
    }

    .lead-modal-phone-label span {
        font-size: 1.12rem;
    }

    .lead-modal-phone-input {
        min-height: 54px;
        padding: 0 14px;
        border-radius: 14px;
        font-size: 1.03rem;
    }

    .lead-modal-close {
        top: 6px;
        right: 6px;
        width: 34px;
        height: 34px;
        font-size: 1.4rem;
    }

    .work-modal-dialog {
        width: 100%;
        padding: 46px 10px 10px;
        border-radius: 14px;
    }

    .work-modal-image {
        max-height: 72vh;
        border-radius: 10px;
    }

    .work-modal-caption {
        margin-top: 8px;
        font-size: 0.82rem;
    }

    .work-modal-close {
        top: 6px;
        right: 6px;
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
    }

    .work-modal-nav {
        width: 38px;
        height: 38px;
        font-size: 1.6rem;
    }

    .work-modal-prev {
        left: 6px;
    }

    .work-modal-next {
        right: 6px;
    }

    .service-card-transport {
        min-height: 248px;
        padding: 18px 18px 10px;
        border-radius: 16px;
    }

    .transport-card-image {
        width: min(94%, 300px);
        height: 132px;
    }

    .transport-card-head h3 {
        font-size: 1.56rem;
    }

    .contacts-showcase {
        padding: 18px;
    }

    .site-footer {
        margin-top: 36px;
        padding: 30px 14px 16px;
    }

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

    .footer-col h3 {
        margin-bottom: 10px;
        font-size: 1.1rem;
    }

    .footer-brand-copy strong {
        font-size: 1.24rem;
    }

    .footer-brand-mark {
        width: 112px;
        height: 112px;
    }

    .footer-brand-copy small {
        font-size: 0.8rem;
    }

    .footer-about,
    .footer-cta p,
    .footer-contact-list a,
    .footer-contact-list p {
        font-size: 0.96rem;
    }

    .footer-contact-list span {
        font-size: 0.74rem;
    }

    .footer-bottom {
        margin-top: 18px;
        padding-top: 14px;
    }

    .footer-bottom p {
        font-size: 0.88rem;
    }

    .footer-legal {
        gap: 10px;
        margin-top: 8px;
    }

    .footer-legal a {
        font-size: 0.82rem;
    }

    .contacts-showcase h1 {
        font-size: clamp(1.95rem, 10vw, 2.55rem);
    }

    .contacts-line,
    .contacts-details p {
        font-size: 0.95rem;
    }

    .contacts-map-wrap {
        height: 210px;
        border-radius: 14px;
    }

    .safety-hero h1 {
        max-width: none;
        font-size: clamp(1.66rem, 8.6vw, 2.2rem);
    }

    .safety-lead {
        font-size: 0.92rem;
    }

    .safety-cta-row {
        gap: 12px;
        margin-top: 20px;
    }

    .safety-cta {
        min-width: 100%;
        min-height: 50px;
        font-size: 0.86rem;
    }

    .safety-callback {
        font-size: 0.88rem;
        margin: 0;
    }

    .safety-contact-row {
        gap: 12px;
        margin-top: 10px;
    }

    .safety-phone-card {
        min-height: 54px;
        padding-right: 14px;
        font-size: 0.98rem;
    }

    .safety-phone-icon {
        width: 40px;
        height: 40px;
    }

    .safety-phone-icon svg {
        width: 20px;
        height: 20px;
    }

}
