:root {
    --bg: #0d0d0d;
    --bg-deep: #080808;
    --surface: #151515;
    --surface-2: #1b1b1b;
    --surface-3: #222;
    --text: #fff;
    --muted: #a3a3a3;
    --muted-2: #727272;
    --line: #2a2a2a;
    --line-soft: rgba(255, 255, 255, .08);
    --accent: #f59e0b;
    --accent-2: #ef4444;
    --accent-soft: rgba(245, 158, 11, .12);
    --success: #37c976;
    --danger: #f87171;
    --shadow: 0 24px 70px rgba(0, 0, 0, .42);
    --radius: 22px;
    --radius-sm: 14px;
    --container: 1240px;
    --header-height: 82px;
    --ease: cubic-bezier(.2, .7, .2, 1);
    color-scheme: dark;
}

html[data-theme="light"] {
    --bg: #f2f1ed;
    --bg-deep: #e8e6e0;
    --surface: #fff;
    --surface-2: #f8f7f3;
    --surface-3: #eceae4;
    --text: #141414;
    --muted: #656565;
    --muted-2: #8b8b8b;
    --line: #d7d4cc;
    --line-soft: rgba(0, 0, 0, .08);
    --accent-soft: rgba(245, 158, 11, .14);
    --shadow: 0 24px 70px rgba(42, 35, 22, .14);
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

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

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    transition: background-color .35s ease, color .35s ease;
}

body.modal-open,
body.menu-open {
    overflow: hidden;
}

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

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

button {
    border: 0;
}

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

img,
svg {
    display: block;
}

::selection {
    background: var(--accent);
    color: #111;
}

.svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

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

.loader {
    position: fixed;
    z-index: 9999;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 18px;
    background: #0a0a0a;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .28em;
    transition: opacity .45s ease, visibility .45s ease;
}

.loader.is-hidden {
    visibility: hidden;
    opacity: 0;
}

.loader__mark {
    display: grid;
    width: 64px;
    height: 64px;
    margin: auto;
    border: 1px solid rgba(245, 158, 11, .5);
    border-radius: 20px;
    place-items: center;
    color: var(--accent);
    animation: loaderPulse 1.25s ease infinite alternate;
}

.loader__mark svg {
    width: 32px;
    height: 32px;
}

@keyframes loaderPulse {
    to {
        transform: scale(1.08);
        box-shadow: 0 0 36px rgba(245, 158, 11, .26);
    }
}

.site-header {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, height .3s ease;
}

.site-header.is-scrolled {
    height: 70px;
    border-color: var(--line-soft);
    background: color-mix(in srgb, var(--bg) 88%, transparent);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .15);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 11px;
}

.logo__mark {
    display: grid;
    width: 38px;
    height: 38px;
    transform: rotate(-4deg);
    border: 1px solid rgba(245, 158, 11, .55);
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(245, 158, 11, .18), rgba(239, 68, 68, .05));
    color: var(--accent);
    place-items: center;
    box-shadow: inset 0 0 18px rgba(245, 158, 11, .08);
}

.logo__mark svg {
    width: 21px;
    height: 21px;
}

.logo__text {
    color: var(--text);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -.03em;
}

.logo__text span {
    color: var(--accent);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    position: relative;
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    font-weight: 700;
    transition: color .2s ease;
}

html[data-theme="light"] .main-nav a {
    color: var(--muted);
}

.main-nav a::after {
    position: absolute;
    right: 100%;
    bottom: -7px;
    left: 0;
    height: 2px;
    background: var(--accent);
    content: "";
    transition: right .25s var(--ease);
}

.main-nav a:hover,
.main-nav a.is-active {
    color: var(--text);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
    right: 0;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-phone__icon {
    display: grid;
    width: 37px;
    height: 37px;
    border: 1px solid rgba(245, 158, 11, .28);
    border-radius: 50%;
    background: rgba(245, 158, 11, .09);
    color: var(--accent);
    place-items: center;
}

.header-phone__icon svg {
    width: 16px;
    height: 16px;
}

.header-phone span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.header-phone small {
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.header-phone strong {
    color: var(--text);
    font-size: 14px;
    font-weight: 850;
    letter-spacing: .02em;
    white-space: nowrap;
}

.icon-button {
    display: grid;
    width: 40px;
    height: 40px;
    padding: 0;
    cursor: pointer;
    border: 1px solid var(--line-soft);
    border-radius: 50%;
    background: rgba(255, 255, 255, .035);
    color: var(--muted);
    place-items: center;
    transition: .2s ease;
}

.icon-button:hover {
    border-color: rgba(245, 158, 11, .5);
    color: var(--accent);
}

.icon-button svg {
    width: 18px;
    height: 18px;
}

.menu-toggle {
    display: none;
}

.button {
    display: inline-flex;
    min-height: 50px;
    padding: 0 24px;
    cursor: pointer;
    border: 1px solid var(--accent);
    border-radius: 10px;
    background: var(--accent);
    color: #17100a;
    align-items: center;
    justify-content: center;
    gap: 11px;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .01em;
    line-height: 1.2;
    box-shadow: 0 10px 30px rgba(245, 158, 11, .14);
    transition: transform .2s var(--ease), background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.button:hover {
    transform: translateY(-2px);
    border-color: #ffb32c;
    background: #ffb32c;
    box-shadow: 0 14px 36px rgba(245, 158, 11, .25);
}

.button:active {
    transform: translateY(0);
}

.button:disabled {
    cursor: wait;
    opacity: .7;
    transform: none;
}

.button svg {
    width: 18px;
    height: 18px;
}

.button--small {
    min-height: 42px;
    padding-inline: 17px;
    font-size: 11px;
}

.button--hero {
    min-height: 56px;
    padding-inline: 27px;
}

.button--ghost {
    border-color: rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .04);
    color: #fff;
    box-shadow: none;
    backdrop-filter: blur(8px);
}

.button--ghost:hover {
    border-color: rgba(255, 255, 255, .4);
    background: rgba(255, 255, 255, .1);
}

.button--full {
    width: 100%;
    min-height: 56px;
}

.hero {
    position: relative;
    display: flex;
    min-height: 790px;
    overflow: hidden;
    background: #090a0c;
    align-items: center;
    color: #fff;
}

.hero__image,
.hero__veil,
.hero__glow {
    position: absolute;
    inset: 0;
}

.hero__image {
    background-image: url("../images/hero-tow-truck.webp"), url("../images/hero-tow-truck.png");
    background-position: center;
    background-size: cover;
    transform: scale(1.01);
    animation: heroZoom 12s ease-out both;
}

@keyframes heroZoom {
    from { transform: scale(1.07); }
    to { transform: scale(1.01); }
}

.hero__veil {
    background:
        linear-gradient(90deg, rgba(5, 6, 8, .99) 0%, rgba(5, 6, 8, .93) 31%, rgba(5, 6, 8, .53) 56%, rgba(5, 6, 8, .12) 80%),
        linear-gradient(0deg, rgba(7, 7, 7, .9) 0%, transparent 28%),
        linear-gradient(180deg, rgba(4, 4, 4, .55), transparent 24%);
}

.hero__glow {
    left: -16%;
    width: 65%;
    background: radial-gradient(circle at 40% 48%, rgba(245, 158, 11, .09), transparent 54%);
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 2;
    padding-block: 135px 155px;
}

.hero__content {
    max-width: 720px;
    animation: heroContent .8s .18s var(--ease) both;
}

@keyframes heroContent {
    from { opacity: 0; transform: translateY(26px); }
    to { opacity: 1; transform: translateY(0); }
}

.eyebrow {
    display: inline-flex;
    color: var(--accent);
    align-items: center;
    gap: 9px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.hero__eyebrow {
    margin-bottom: 24px;
    padding: 7px 12px 7px 9px;
    border: 1px solid rgba(245, 158, 11, .24);
    border-radius: 999px;
    background: rgba(245, 158, 11, .07);
    letter-spacing: .13em;
}

.status-dot {
    position: relative;
    display: inline-block;
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 4px rgba(55, 201, 118, .12);
}

.status-dot::after {
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(55, 201, 118, .42);
    border-radius: inherit;
    content: "";
    animation: statusPulse 1.8s ease-out infinite;
}

@keyframes statusPulse {
    to {
        opacity: 0;
        transform: scale(1.7);
    }
}

.hero h1 {
    margin: 0;
    font-size: clamp(50px, 5.35vw, 78px);
    font-weight: 900;
    letter-spacing: -.06em;
    line-height: .98;
}

.hero h1 span {
    color: var(--accent);
}

.hero__content > p {
    max-width: 580px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, .68);
    font-size: 18px;
    line-height: 1.65;
}

.hero__buttons {
    display: flex;
    margin-top: 36px;
    gap: 12px;
}

.hero__trust {
    display: flex;
    margin-top: 52px;
    gap: 44px;
}

.hero__trust > div {
    position: relative;
    display: grid;
    grid-template-columns: auto auto;
    align-items: baseline;
}

.hero__trust > div:not(:last-child)::after {
    position: absolute;
    top: 3px;
    right: -22px;
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, .13);
    content: "";
}

.hero__trust strong {
    font-size: 35px;
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1;
}

.hero__trust span {
    margin-left: 3px;
    color: var(--accent);
    font-size: 16px;
    font-weight: 900;
}

.hero__trust small {
    grid-column: 1 / -1;
    margin-top: 6px;
    color: rgba(255, 255, 255, .45);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.hero__dispatch-wrap {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    left: 0;
}

.hero__dispatch {
    display: flex;
    width: min(100%, 700px);
    min-height: 82px;
    margin-left: auto;
    padding: 14px 20px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-bottom: 0;
    border-radius: 18px 18px 0 0;
    background: rgba(18, 18, 18, .84);
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
}

.hero__dispatch-avatar {
    position: relative;
    display: grid;
    width: 45px;
    height: 45px;
    flex: 0 0 auto;
    border-radius: 13px;
    background: var(--accent);
    color: #14100a;
    place-items: center;
}

.hero__dispatch-avatar svg {
    width: 19px;
    height: 19px;
}

.hero__dispatch-avatar span {
    position: absolute;
    right: -3px;
    bottom: -3px;
    width: 12px;
    height: 12px;
    border: 3px solid #171717;
    border-radius: 50%;
    background: var(--success);
}

.hero__dispatch > div:nth-child(2) {
    display: flex;
    flex: 1;
    flex-direction: column;
    line-height: 1.35;
}

.hero__dispatch small {
    color: rgba(255, 255, 255, .43);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.hero__dispatch strong {
    font-size: 13px;
    font-weight: 850;
}

.hero__dispatch-time {
    display: flex;
    padding: 8px 14px;
    border-right: 1px solid rgba(255, 255, 255, .1);
    border-left: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .66);
    align-items: center;
    gap: 8px;
    font-size: 11px;
}

.hero__dispatch-time svg {
    width: 17px;
    height: 17px;
    color: var(--accent);
}

.hero__dispatch-time strong {
    color: #fff;
}

.hero__dispatch > a {
    color: var(--accent);
    font-size: 11px;
    font-weight: 850;
}

.trust-strip {
    border-bottom: 1px solid var(--line-soft);
    background: var(--surface);
}

.trust-strip__inner {
    display: grid;
    min-height: 72px;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}

.trust-strip span {
    display: flex;
    min-height: 28px;
    padding-inline: 24px;
    color: var(--muted);
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 11px;
    font-weight: 750;
    text-align: center;
}

.trust-strip span:not(:last-child) {
    border-right: 1px solid var(--line-soft);
}

.trust-strip svg {
    width: 15px;
    height: 15px;
    color: var(--accent);
}

.section {
    position: relative;
    padding-block: 118px;
}

.section-heading {
    display: grid;
    margin-bottom: 54px;
    grid-template-columns: 1.3fr .7fr;
    align-items: end;
    gap: 60px;
}

.section-heading .eyebrow {
    margin-bottom: 18px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(38px, 4.1vw, 58px);
    font-weight: 900;
    letter-spacing: -.055em;
    line-height: 1.06;
}

.section-heading h2 span {
    color: var(--accent);
}

.section-heading > p,
.section-heading > div + p {
    max-width: 470px;
    margin: 0 0 7px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.section-heading--center {
    display: flex;
    max-width: 730px;
    margin-inline: auto;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
}

.section-heading--center > p {
    margin-top: 18px;
}

.section--advantages {
    background:
        radial-gradient(circle at 12% 0, rgba(245, 158, 11, .055), transparent 26%),
        var(--bg);
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--line);
}

.advantage-card {
    position: relative;
    min-height: 245px;
    overflow: hidden;
    padding: 32px;
    background: var(--surface);
    transition: background .3s ease;
}

.advantage-card::after {
    position: absolute;
    right: -50px;
    bottom: -90px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--accent);
    content: "";
    filter: blur(70px);
    opacity: 0;
    transition: opacity .35s ease;
}

.advantage-card:hover {
    background: var(--surface-2);
}

.advantage-card:hover::after {
    opacity: .11;
}

.advantage-card__number {
    position: absolute;
    top: 25px;
    right: 28px;
    color: var(--muted-2);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .14em;
}

.advantage-card__icon {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 28px;
    border: 1px solid rgba(245, 158, 11, .24);
    border-radius: 15px;
    background: var(--accent-soft);
    color: var(--accent);
    place-items: center;
    transition: transform .3s var(--ease), background .3s ease;
}

.advantage-card:hover .advantage-card__icon {
    transform: translateY(-4px) rotate(-3deg);
    background: var(--accent);
    color: #16100a;
}

.advantage-card__icon svg {
    width: 23px;
    height: 23px;
}

.advantage-card h3 {
    margin: 0 0 9px;
    font-size: 19px;
    font-weight: 850;
    letter-spacing: -.025em;
}

.advantage-card p {
    max-width: 280px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.section--services {
    overflow: hidden;
    border-block: 1px solid var(--line-soft);
    background:
        linear-gradient(rgba(255, 255, 255, .012) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .012) 1px, transparent 1px),
        var(--bg-deep);
    background-size: 52px 52px;
}

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

.service-card {
    position: relative;
    display: flex;
    min-height: 345px;
    overflow: hidden;
    padding: 27px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: color-mix(in srgb, var(--surface) 92%, transparent);
    flex-direction: column;
    transition: transform .3s var(--ease), border-color .3s ease, box-shadow .3s ease;
}

.service-card::before {
    position: absolute;
    top: 0;
    right: 18%;
    left: 18%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    content: "";
    opacity: 0;
    transition: opacity .3s ease;
}

.service-card:hover {
    z-index: 2;
    transform: translateY(-7px);
    border-color: rgba(245, 158, 11, .34);
    box-shadow: var(--shadow);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.service-card__index {
    color: var(--muted-2);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .14em;
}

.service-card__icon {
    display: grid;
    width: 82px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(245, 158, 11, .13), rgba(245, 158, 11, .03));
    color: var(--accent);
    place-items: center;
    transition: transform .35s var(--ease);
}

.service-card:hover .service-card__icon {
    transform: translateX(-4px) scale(1.05);
}

.service-card__icon svg {
    width: 48px;
    height: 40px;
}

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

.service-card__meta {
    color: var(--accent);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.service-card h3 {
    margin: 6px 0 9px;
    font-size: 22px;
    font-weight: 850;
    letter-spacing: -.035em;
}

.service-card p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

.service-card__footer {
    display: flex;
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid var(--line-soft);
    align-items: center;
    justify-content: space-between;
}

.service-card__footer > strong {
    font-size: 17px;
    font-weight: 900;
}

.text-button,
.text-link {
    display: inline-flex;
    padding: 0;
    cursor: pointer;
    background: none;
    color: var(--accent);
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 850;
}

.text-button svg,
.text-link svg {
    width: 15px;
    height: 15px;
    transition: transform .2s ease;
}

.text-button:hover svg,
.text-link:hover svg {
    transform: translateX(4px);
}

.section--calculator {
    background:
        radial-gradient(circle at 86% 22%, rgba(245, 158, 11, .07), transparent 24%),
        var(--bg);
}

.calculator-shell {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: var(--surface);
    grid-template-columns: minmax(360px, .88fr) minmax(480px, 1.12fr);
    box-shadow: var(--shadow);
}

.calculator-form {
    padding: 38px;
    border-right: 1px solid var(--line);
}

.calculator-form__heading {
    display: flex;
    margin-bottom: 24px;
    align-items: center;
    gap: 14px;
}

.step-badge {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    border: 1px solid rgba(245, 158, 11, .3);
    border-radius: 11px;
    background: var(--accent-soft);
    color: var(--accent);
    place-items: center;
    font-size: 10px;
    font-weight: 900;
}

.calculator-form__heading > div {
    display: flex;
    flex-direction: column;
}

.calculator-form__heading small {
    color: var(--muted-2);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.calculator-form__heading h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 850;
    letter-spacing: -.02em;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field > span:first-child,
.options legend {
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.field__control {
    position: relative;
    display: flex;
    min-height: 51px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: var(--bg-deep);
    align-items: center;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.field__control:focus-within {
    border-color: rgba(245, 158, 11, .65);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, .1);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
    font-size: 13px;
}

.field input,
.field select {
    min-height: 49px;
    padding: 0 15px;
}

.field textarea {
    min-height: 90px;
    padding: 14px 15px;
    line-height: 1.5;
    resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
    color: var(--muted-2);
}

.field select {
    cursor: pointer;
    appearance: none;
}

.field select option {
    background: #fff;
    color: #171717;
}

.field select option:checked {
    background: #f59e0b;
    color: #17100a;
}

.field__control--select::after {
    position: absolute;
    top: 50%;
    right: 17px;
    width: 7px;
    height: 7px;
    border-right: 2px solid var(--muted);
    border-bottom: 2px solid var(--muted);
    content: "";
    pointer-events: none;
    transform: translateY(-70%) rotate(45deg);
}

.field__leading-icon {
    width: 27px;
    height: 23px;
    margin-left: 14px;
    color: var(--accent);
}

.field__leading-icon + select {
    padding-left: 10px;
}

.route-fields {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.field--route {
    position: relative;
}

.field--route .field__control {
    overflow: visible;
}

.field--route input {
    padding-left: 42px;
    padding-right: 46px;
}

.route-dot {
    position: absolute;
    z-index: 2;
    left: 17px;
    width: 10px;
    height: 10px;
    border: 2px solid var(--accent);
    border-radius: 50%;
}

.route-dot--b {
    border-color: var(--accent-2);
}

.geo-button {
    position: absolute;
    right: 7px;
    display: grid;
    width: 36px;
    height: 36px;
    padding: 0;
    cursor: pointer;
    border-radius: 9px;
    background: var(--surface-2);
    color: var(--accent);
    place-items: center;
    transition: .2s ease;
}

.geo-button:hover {
    background: var(--accent);
    color: #17100a;
}

.geo-button svg {
    width: 17px;
    height: 17px;
}

.swap-button {
    position: absolute;
    z-index: 3;
    top: 80px;
    right: 15px;
    display: grid;
    width: 31px;
    height: 31px;
    padding: 0;
    cursor: pointer;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: var(--surface-2);
    color: var(--muted);
    place-items: center;
    transition: .2s ease;
}

.swap-button:hover {
    transform: rotate(180deg);
    border-color: var(--accent);
    color: var(--accent);
}

.swap-button svg {
    width: 15px;
    height: 15px;
}

.form-divider {
    height: 1px;
    margin: 30px 0;
    background: var(--line);
}

.options {
    display: grid;
    margin: 22px 0 28px;
    padding: 0;
    border: 0;
    gap: 9px;
}

.options legend {
    margin-bottom: 7px;
}

.option {
    display: flex;
    min-height: 50px;
    padding: 8px 12px;
    cursor: pointer;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: var(--bg-deep);
    align-items: center;
    gap: 11px;
    transition: border-color .2s ease, background .2s ease;
}

.option:hover,
.option:has(input:checked) {
    border-color: rgba(245, 158, 11, .45);
    background: var(--accent-soft);
}

.option input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.option__check {
    display: grid;
    width: 21px;
    height: 21px;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: #15100a;
    place-items: center;
    transition: .2s ease;
}

.option__check svg {
    width: 13px;
    height: 13px;
    opacity: 0;
    transform: scale(.5);
    transition: .2s ease;
}

.option input:checked + .option__check {
    border-color: var(--accent);
    background: var(--accent);
}

.option input:checked + .option__check svg {
    opacity: 1;
    transform: scale(1);
}

.option > span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.option strong {
    font-size: 11px;
    font-weight: 800;
}

.option small {
    margin-top: 2px;
    color: var(--muted-2);
    font-size: 9px;
}

.form-message {
    min-height: 20px;
    margin: 10px 0 0;
    color: var(--danger);
    font-size: 11px;
    line-height: 1.5;
    text-align: center;
}

.form-message.is-success {
    color: var(--success);
}

.calculator-map-column {
    display: flex;
    min-width: 0;
    background: var(--bg-deep);
    flex-direction: column;
}

.map-frame {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.route-map {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(25deg, transparent 45%, rgba(245, 158, 11, .05) 46%, transparent 47%),
        linear-gradient(-22deg, transparent 48%, rgba(255, 255, 255, .035) 49%, transparent 50%),
        #101317;
}

.map-loading {
    position: absolute;
    z-index: 1;
    inset: 0;
    display: flex;
    color: rgba(255, 255, 255, .65);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    pointer-events: none;
}

.map-loading > span {
    width: 36px;
    height: 36px;
    margin-bottom: 14px;
    border: 1px solid rgba(245, 158, 11, .5);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: mapSpin 1.4s linear infinite;
}

.map-loading strong {
    font-size: 13px;
}

.map-loading small {
    margin-top: 4px;
    color: rgba(255, 255, 255, .35);
    font-size: 10px;
}

@keyframes mapSpin { to { transform: rotate(360deg); } }

.leaflet-container {
    background: #101317;
    font-family: inherit;
}

.leaflet-tile-pane {
    filter: grayscale(1) invert(.91) contrast(.93) brightness(.66) sepia(.2) hue-rotate(350deg);
}

html[data-theme="light"] .leaflet-tile-pane {
    filter: grayscale(.9) contrast(.8) brightness(1.05);
}

.leaflet-control-attribution {
    background: rgba(12, 12, 12, .72) !important;
    color: rgba(255, 255, 255, .45) !important;
    font-size: 8px !important;
}

.leaflet-control-attribution a {
    color: var(--accent) !important;
}

.leaflet-bar {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    border-radius: 10px !important;
    box-shadow: none !important;
}

.leaflet-bar a {
    border-color: rgba(255, 255, 255, .1) !important;
    background: rgba(17, 17, 17, .9) !important;
    color: #fff !important;
}

.route-marker {
    display: grid;
    width: 28px;
    height: 28px;
    border: 3px solid #fff;
    border-radius: 50% 50% 50% 0;
    background: var(--accent);
    color: #15100a;
    place-items: center;
    font-size: 10px;
    font-weight: 900;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .45);
    transform: rotate(-45deg);
}

.route-marker span {
    transform: rotate(45deg);
}

.route-marker--b {
    background: var(--accent-2);
    color: #fff;
}

.route-marker--base {
    background: var(--success);
}

.map-badge {
    position: absolute;
    z-index: 500;
    top: 18px;
    right: 18px;
    display: flex;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 999px;
    background: rgba(10, 10, 10, .78);
    color: rgba(255, 255, 255, .68);
    align-items: center;
    gap: 8px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.map-badge .status-dot {
    width: 6px;
    height: 6px;
}

.quote-panel {
    min-height: 250px;
    padding: 28px 32px;
}

.quote-panel__empty {
    display: flex;
    min-height: 190px;
    color: var(--muted);
    align-items: center;
    justify-content: center;
    gap: 17px;
}

.quote-panel__empty-icon {
    display: grid;
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    border: 1px dashed var(--line);
    border-radius: 14px;
    color: var(--muted-2);
    place-items: center;
}

.quote-panel__empty-icon svg {
    width: 24px;
    height: 24px;
}

.quote-panel__empty strong {
    display: block;
    margin-bottom: 5px;
    color: var(--text);
    font-size: 13px;
}

.quote-panel__empty p {
    max-width: 350px;
    margin: 0;
    font-size: 11px;
}

.quote-panel__result {
    animation: quoteIn .4s var(--ease) both;
}

@keyframes quoteIn {
    from { opacity: 0; transform: translateY(12px); }
}

.quote-panel__summary {
    display: flex;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
    align-items: flex-end;
    justify-content: space-between;
}

.quote-panel__summary > div:first-child {
    display: flex;
    flex-direction: column;
}

.quote-panel__summary span {
    color: var(--muted);
    font-size: 10px;
    font-weight: 750;
}

.quote-panel__summary > div:first-child strong {
    color: var(--accent);
    font-size: 38px;
    font-weight: 950;
    letter-spacing: -.05em;
    line-height: 1.15;
}

.quote-panel__distance {
    display: flex;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: var(--surface);
    align-items: center;
    gap: 7px;
}

.quote-panel__distance svg {
    width: 14px;
    height: 14px;
    color: var(--accent);
}

.quote-panel__distance strong {
    color: var(--text);
    font-size: 12px;
}

.quote-breakdown {
    display: grid;
    padding-block: 15px;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 18px;
}

.quote-line {
    display: flex;
    color: var(--muted);
    align-items: center;
    justify-content: space-between;
    font-size: 10px;
}

.quote-line strong {
    color: var(--text);
    font-weight: 750;
}

.saving-badge {
    display: flex;
    margin-bottom: 14px;
    padding: 9px 12px;
    border: 1px solid rgba(55, 201, 118, .2);
    border-radius: 9px;
    background: rgba(55, 201, 118, .07);
    color: var(--success);
    align-items: center;
    gap: 8px;
    font-size: 9px;
}

.saving-badge svg {
    width: 14px;
    height: 14px;
}

.quote-note {
    display: block;
    margin-top: 10px;
    color: var(--muted-2);
    font-size: 8px;
    text-align: center;
}

.section--steps {
    overflow: hidden;
    border-block: 1px solid var(--line-soft);
    background: var(--bg-deep);
}

.steps {
    display: grid;
    max-width: 1030px;
    margin: 20px auto 0;
    grid-template-columns: 1fr 100px 1fr 100px 1fr;
    align-items: start;
}

.step {
    text-align: center;
}

.step__visual {
    position: relative;
    display: grid;
    width: 96px;
    height: 96px;
    margin: 0 auto 25px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface);
    color: var(--accent);
    place-items: center;
}

.step__visual::before {
    position: absolute;
    inset: 8px;
    border: 1px dashed rgba(245, 158, 11, .25);
    border-radius: inherit;
    content: "";
    transition: transform .5s ease;
}

.step:hover .step__visual::before {
    transform: rotate(45deg);
}

.step__visual span {
    position: absolute;
    top: -7px;
    right: -3px;
    display: grid;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: var(--accent);
    color: #17100a;
    place-items: center;
    font-size: 9px;
    font-weight: 900;
}

.step__visual svg {
    width: 30px;
    height: 30px;
}

.step h3 {
    margin: 0 0 9px;
    font-size: 17px;
    font-weight: 850;
    letter-spacing: -.02em;
}

.step p {
    margin: 0 auto;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}

.steps__line {
    height: 1px;
    margin-top: 48px;
    background: linear-gradient(90deg, var(--line), var(--accent), var(--line));
}

.section--activity {
    background:
        radial-gradient(circle at 18% 50%, rgba(245, 158, 11, .07), transparent 30%),
        var(--bg);
}

.activity-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: center;
    gap: 100px;
}

.activity-copy h2 {
    margin: 15px 0 20px;
    font-size: clamp(38px, 4vw, 57px);
    font-weight: 900;
    letter-spacing: -.055em;
    line-height: 1.05;
}

.activity-copy h2 span {
    color: var(--accent);
}

.activity-copy p {
    margin: 0 0 27px;
    color: var(--muted);
    font-size: 14px;
}

.activity-feed {
    display: grid;
    gap: 10px;
}

.activity-item {
    display: grid;
    min-height: 82px;
    padding: 13px 16px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: var(--surface);
    grid-template-columns: 72px 50px 1fr auto;
    align-items: center;
    gap: 13px;
    transition: transform .25s var(--ease), border-color .25s ease;
}

.activity-item:hover,
.activity-item.is-active {
    transform: translateX(-5px);
    border-color: rgba(245, 158, 11, .3);
}

.activity-item__time {
    color: var(--muted-2);
    font-size: 9px;
    text-align: center;
}

.activity-item__icon {
    display: grid;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent-soft);
    color: var(--accent);
    place-items: center;
}

.activity-item__icon svg {
    width: 31px;
    height: 25px;
}

.activity-item > div:nth-child(3) {
    display: flex;
    flex-direction: column;
}

.activity-item strong {
    font-size: 12px;
    font-weight: 800;
}

.activity-item small {
    color: var(--muted);
    font-size: 9px;
}

.activity-item__status {
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 8px;
    font-weight: 850;
    text-transform: uppercase;
}

.activity-item__status--done {
    background: rgba(55, 201, 118, .08);
    color: var(--success);
}

.section--contacts {
    padding-top: 40px;
    background: var(--bg);
}

.contact-card {
    position: relative;
    display: grid;
    min-height: 515px;
    overflow: hidden;
    padding: 64px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background:
        linear-gradient(120deg, rgba(245, 158, 11, .04), transparent 42%),
        var(--surface);
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 90px;
    box-shadow: var(--shadow);
}

.contact-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, .6), transparent);
    content: "";
}

.contact-card__glow {
    position: absolute;
    bottom: -250px;
    left: -170px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(245, 158, 11, .08);
    filter: blur(50px);
    pointer-events: none;
}

.contact-card__content {
    position: relative;
    z-index: 1;
}

.contact-card__content h2 {
    margin: 14px 0 18px;
    font-size: clamp(40px, 4.2vw, 60px);
    font-weight: 900;
    letter-spacing: -.06em;
    line-height: 1.03;
}

.contact-card__content h2 span {
    color: var(--accent);
}

.contact-card__content > p {
    max-width: 500px;
    margin: 0 0 26px;
    color: var(--muted);
    font-size: 14px;
}

.contact-phone {
    display: flex;
    margin-bottom: 27px;
    color: var(--text);
    align-items: center;
    gap: 15px;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1;
}

.contact-phone > span {
    display: grid;
    width: 51px;
    height: 51px;
    flex: 0 0 auto;
    border-radius: 15px;
    background: var(--accent);
    color: #17100a;
    place-items: center;
}

.contact-phone svg {
    width: 22px;
    height: 22px;
}

.contact-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 19px;
}

.contact-meta span,
.contact-meta a {
    display: flex;
    color: var(--muted);
    align-items: center;
    gap: 7px;
    font-size: 10px;
    transition: color .2s ease;
}

.contact-meta a:hover {
    color: var(--accent);
}

.contact-meta svg {
    width: 15px;
    height: 15px;
    color: var(--accent);
}

.quick-form {
    position: relative;
    z-index: 1;
    padding: 31px;
    border: 1px solid var(--line);
    border-radius: 19px;
    background: var(--bg-deep);
}

.quick-form > div:first-child {
    margin-bottom: 21px;
}

.quick-form > div:first-child small {
    color: var(--accent);
    font-size: 8px;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.quick-form h3 {
    margin: 3px 0;
    font-size: 23px;
    letter-spacing: -.03em;
}

.quick-form > div:first-child p {
    margin: 0;
    color: var(--muted);
    font-size: 10px;
}

.quick-form .field {
    margin-bottom: 14px;
}

.form-privacy {
    display: block;
    margin-top: 10px;
    color: var(--muted-2);
    font-size: 8px;
    line-height: 1.5;
    text-align: center;
}

.field-error {
    min-height: 0;
    color: var(--danger);
    font-size: 9px;
    line-height: 1.2;
}

.field.has-error .field__control {
    border-color: var(--danger);
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

.site-footer {
    padding: 70px 0 24px;
    border-top: 1px solid var(--line-soft);
    background: var(--bg-deep);
}

.site-footer__top {
    display: grid;
    padding-bottom: 55px;
    grid-template-columns: 1.1fr 1fr 1.2fr 1fr;
    align-items: start;
    gap: 45px;
}

.site-footer__top > p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.7;
}

.site-footer nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 25px;
}

.site-footer nav a {
    color: var(--muted);
    font-size: 10px;
    font-weight: 750;
    transition: color .2s ease;
}

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

.site-footer__call {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.site-footer__call > small {
    color: var(--muted-2);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.site-footer__call > a {
    margin: 2px 0 7px;
    font-size: 18px;
    font-weight: 900;
}

.site-footer__bottom {
    display: flex;
    padding-top: 22px;
    border-top: 1px solid var(--line-soft);
    color: var(--muted-2);
    justify-content: space-between;
    font-size: 8px;
    font-weight: 650;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.callback-modal {
    width: min(620px, calc(100% - 32px));
    max-height: calc(100vh - 40px);
    overflow: auto;
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--surface);
    color: var(--text);
    box-shadow: 0 35px 100px rgba(0, 0, 0, .65);
}

.callback-modal::backdrop {
    background: rgba(0, 0, 0, .76);
    backdrop-filter: blur(7px);
}

.callback-modal[open] {
    animation: modalIn .3s var(--ease) both;
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(.97); }
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: grid;
    width: 36px;
    height: 36px;
    padding: 0;
    cursor: pointer;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface-2);
    color: var(--muted);
    place-items: center;
    transition: .2s ease;
}

.modal-close:hover {
    transform: rotate(90deg);
    color: var(--text);
}

.modal-close svg {
    width: 17px;
    height: 17px;
}

.callback-modal__header {
    display: flex;
    margin-bottom: 26px;
    padding-right: 25px;
    align-items: flex-start;
    gap: 16px;
}

.modal-icon {
    display: grid;
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    border-radius: 15px;
    background: var(--accent);
    color: #17100a;
    place-items: center;
}

.modal-icon svg {
    width: 21px;
    height: 21px;
}

.callback-modal__header h2 {
    margin: 4px 0 5px;
    font-size: 25px;
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1.15;
}

.callback-modal__header p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
}

.dispatch-panel {
    position: fixed;
    z-index: 1500;
    right: 24px;
    bottom: 24px;
    display: grid;
    width: min(500px, calc(100% - 48px));
    min-height: 104px;
    padding: 17px 20px;
    border: 1px solid rgba(55, 201, 118, .24);
    border-radius: 18px;
    background: color-mix(in srgb, var(--surface) 94%, transparent);
    grid-template-columns: 70px 1fr 43px;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    animation: dispatchIn .45s var(--ease) both;
}

@keyframes dispatchIn {
    from { opacity: 0; transform: translateY(30px); }
}

.dispatch-panel__close {
    position: absolute;
    top: 7px;
    right: 7px;
    padding: 5px;
    cursor: pointer;
    background: transparent;
    color: var(--muted-2);
}

.dispatch-panel__close svg {
    width: 13px;
    height: 13px;
}

.dispatch-panel__ring {
    position: relative;
    display: grid;
    width: 66px;
    height: 66px;
    place-items: center;
}

.dispatch-panel__ring svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.dispatch-panel__ring circle {
    fill: none;
    stroke: var(--line);
    stroke-width: 2.5;
}

.dispatch-panel__ring .dispatch-panel__progress {
    stroke: var(--success);
    stroke-linecap: round;
    stroke-dasharray: 107;
    stroke-dashoffset: 18;
}

.dispatch-panel__ring strong {
    color: var(--success);
    font-size: 12px;
    font-weight: 900;
}

.dispatch-panel > div:nth-child(3) {
    display: flex;
    min-width: 0;
    flex-direction: column;
    line-height: 1.35;
}

.dispatch-panel > div:nth-child(3) small {
    color: var(--success);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.dispatch-panel > div:nth-child(3) strong {
    font-size: 12px;
}

.dispatch-panel > div:nth-child(3) span {
    color: var(--muted);
    font-size: 9px;
}

.dispatch-panel > a {
    display: grid;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--success);
    color: #07150d;
    place-items: center;
}

.dispatch-panel > a svg {
    width: 18px;
    height: 18px;
}

.toast {
    position: fixed;
    z-index: 2000;
    top: 90px;
    left: 50%;
    max-width: min(440px, calc(100% - 32px));
    padding: 12px 18px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: var(--surface);
    color: var(--text);
    font-size: 11px;
    font-weight: 750;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -15px);
    transition: .25s var(--ease);
}

.toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.toast.is-success {
    border-color: rgba(55, 201, 118, .34);
}

.toast.is-error {
    border-color: rgba(248, 113, 113, .4);
}

.floating-actions {
    position: fixed;
    z-index: 900;
    right: 22px;
    bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-action {
    position: relative;
    display: grid;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    color: #fff;
    place-items: center;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .3);
    transition: transform .2s var(--ease);
}

.floating-action:hover {
    transform: translateY(-3px) scale(1.03);
}

.floating-action svg {
    width: 23px;
    height: 23px;
}

.floating-action--whatsapp {
    background: #25d366;
}

.floating-action--phone {
    background: var(--accent);
    color: #17100a;
}

.floating-action__pulse {
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(245, 158, 11, .45);
    border-radius: 20px;
    animation: floatPulse 1.8s ease-out infinite;
}

@keyframes floatPulse {
    to { opacity: 0; transform: scale(1.22); }
}

.mobile-callbar {
    display: none;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

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

.reveal:nth-child(2) { transition-delay: .06s; }
.reveal:nth-child(3) { transition-delay: .12s; }
.reveal:nth-child(4) { transition-delay: .18s; }
.reveal:nth-child(5) { transition-delay: .24s; }
.reveal:nth-child(6) { transition-delay: .3s; }

@media (max-width: 1140px) {
    :root {
        --container: 960px;
    }

    .main-nav {
        gap: 20px;
    }

    .main-nav a {
        font-size: 11px;
    }

    .header-phone small,
    .site-header .button--small {
        display: none;
    }

    .hero {
        min-height: 740px;
    }

    .hero__image {
        background-position: 58% center;
    }

    .hero__content {
        max-width: 620px;
    }

    .calculator-shell {
        grid-template-columns: 410px 1fr;
    }

    .calculator-form {
        padding: 30px;
    }

    .quote-breakdown {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 50px;
        gap: 50px;
    }

    .activity-grid {
        gap: 60px;
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 72px;
    }

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

    .menu-toggle {
        display: grid;
    }

    .main-nav {
        position: fixed;
        z-index: -1;
        top: 0;
        right: 0;
        bottom: 0;
        display: flex;
        width: min(390px, 86vw);
        padding: 110px 40px 40px;
        background: var(--surface);
        opacity: 0;
        visibility: hidden;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        box-shadow: -20px 0 70px rgba(0, 0, 0, .35);
        transform: translateX(100%);
        transition: transform .35s var(--ease), opacity .35s ease, visibility .35s;
    }

    .menu-open .main-nav {
        z-index: 1;
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .main-nav a {
        padding-block: 17px;
        border-bottom: 1px solid var(--line);
        color: var(--text);
        font-size: 17px;
    }

    .main-nav a::after {
        display: none;
    }

    .site-header__actions {
        margin-left: auto;
    }

    .hero {
        min-height: 780px;
        align-items: flex-end;
    }

    .hero__image {
        background-position: 63% center;
    }

    .hero__veil {
        background:
            linear-gradient(90deg, rgba(5, 6, 8, .96) 0%, rgba(5, 6, 8, .78) 48%, rgba(5, 6, 8, .3) 100%),
            linear-gradient(0deg, rgba(5, 6, 8, .97) 0%, rgba(5, 6, 8, .4) 58%, rgba(5, 6, 8, .3));
    }

    .hero__inner {
        padding-block: 150px 150px;
    }

    .hero__content {
        max-width: 650px;
    }

    .hero h1 {
        font-size: clamp(48px, 9vw, 68px);
    }

    .hero__dispatch {
        margin-inline: auto;
    }

    .trust-strip__inner {
        grid-template-columns: 1fr 1fr;
        padding-block: 12px;
    }

    .trust-strip span {
        min-height: 38px;
    }

    .trust-strip span:nth-child(2) {
        border-right: 0;
    }

    .section {
        padding-block: 90px;
    }

    .section-heading {
        display: block;
    }

    .section-heading > p,
    .section-heading > div + p {
        margin-top: 20px;
    }

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

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

    .calculator-shell {
        grid-template-columns: 1fr;
    }

    .calculator-form {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .map-frame {
        min-height: 440px;
    }

    .quote-breakdown {
        grid-template-columns: 1fr 1fr;
    }

    .steps {
        grid-template-columns: 1fr 60px 1fr 60px 1fr;
    }

    .activity-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .activity-copy {
        max-width: 580px;
    }

    .contact-card {
        grid-template-columns: 1fr;
        padding: 45px;
        gap: 45px;
    }

    .quick-form {
        max-width: 500px;
    }

    .site-footer__top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    :root {
        --radius: 18px;
    }

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

    body {
        padding-bottom: 67px;
    }

    .site-header {
        height: 66px;
    }

    .site-header.is-scrolled {
        height: 62px;
    }

    .logo__mark {
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }

    .logo__text {
        font-size: 15px;
    }

    .header-phone,
    .theme-toggle {
        display: none;
    }

    .hero {
        min-height: 720px;
    }

    .hero__image {
        background-position: 66% top;
    }

    .hero__veil {
        background:
            linear-gradient(0deg, rgba(5, 6, 8, .99) 7%, rgba(5, 6, 8, .82) 54%, rgba(5, 6, 8, .22) 100%),
            linear-gradient(90deg, rgba(5, 6, 8, .88), rgba(5, 6, 8, .15));
    }

    .hero__inner {
        padding-block: 125px 140px;
    }

    .hero__eyebrow {
        margin-bottom: 17px;
        font-size: 8px;
    }

    .hero h1 {
        font-size: clamp(39px, 12vw, 56px);
        line-height: 1.01;
    }

    .hero__content > p {
        margin-top: 20px;
        font-size: 14px;
        line-height: 1.6;
    }

    .hero__buttons {
        display: grid;
        margin-top: 27px;
        grid-template-columns: 1fr;
    }

    .hero__buttons .button {
        width: 100%;
    }

    .hero__trust {
        margin-top: 34px;
        justify-content: space-between;
        gap: 12px;
    }

    .hero__trust > div:not(:last-child)::after {
        right: -8px;
        height: 38px;
    }

    .hero__trust strong {
        font-size: 27px;
    }

    .hero__trust small {
        font-size: 7px;
    }

    .hero__dispatch-wrap {
        display: none;
    }

    .trust-strip {
        display: none;
    }

    .section {
        padding-block: 72px;
    }

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

    .section-heading h2 {
        font-size: 36px;
    }

    .section-heading > p,
    .section-heading > div + p {
        font-size: 13px;
    }

    .section-heading--center {
        text-align: left;
        align-items: flex-start;
    }

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

    .advantage-card {
        min-height: 210px;
        padding: 26px;
    }

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

    .calculator-shell {
        margin-inline: -4px;
        border-radius: 20px;
    }

    .calculator-form {
        padding: 25px 20px;
    }

    .calculator-form__heading {
        align-items: flex-start;
    }

    .map-frame {
        min-height: 330px;
    }

    .quote-panel {
        min-height: 230px;
        padding: 22px 20px;
    }

    .quote-panel__summary > div:first-child strong {
        font-size: 31px;
    }

    .quote-breakdown {
        grid-template-columns: 1fr;
    }

    .steps {
        display: grid;
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .steps__line {
        display: none;
    }

    .step {
        display: grid;
        grid-template-columns: 82px 1fr;
        text-align: left;
        column-gap: 18px;
    }

    .step__visual {
        width: 78px;
        height: 78px;
        margin: 0;
        grid-row: span 2;
    }

    .step h3 {
        margin-top: 9px;
    }

    .step p {
        margin: 0;
    }

    .activity-item {
        grid-template-columns: 48px 1fr auto;
        padding: 13px;
    }

    .activity-item__time {
        display: none;
    }

    .activity-item__icon {
        width: 43px;
        height: 43px;
    }

    .contact-card {
        min-height: 0;
        padding: 28px 20px;
        border-radius: 20px;
        gap: 32px;
    }

    .contact-card__content h2 {
        font-size: 38px;
    }

    .contact-phone {
        font-size: 28px;
    }

    .contact-phone > span {
        width: 45px;
        height: 45px;
    }

    .contact-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .quick-form {
        padding: 22px 18px;
    }

    .site-footer {
        padding-top: 52px;
    }

    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .callback-modal {
        width: calc(100% - 20px);
        max-height: calc(100vh - 20px);
        padding: 28px 19px;
        border-radius: 20px;
    }

    .callback-modal__header {
        padding-right: 12px;
    }

    .modal-icon {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .dispatch-panel {
        right: 10px;
        bottom: 77px;
        width: calc(100% - 20px);
        padding: 14px;
        grid-template-columns: 57px 1fr 39px;
        gap: 11px;
    }

    .dispatch-panel__ring {
        width: 55px;
        height: 55px;
    }

    .floating-actions {
        display: none;
    }

    .mobile-callbar {
        position: fixed;
        z-index: 1200;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        min-height: 67px;
        padding: 9px 12px;
        border-top: 1px solid var(--line);
        background: color-mix(in srgb, var(--bg) 94%, transparent);
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        box-shadow: 0 -10px 35px rgba(0, 0, 0, .25);
        backdrop-filter: blur(18px);
    }

    .mobile-callbar > a {
        display: flex;
        min-width: 0;
        align-items: center;
        gap: 9px;
    }

    .mobile-callbar > a > svg {
        width: 18px;
        height: 18px;
        flex: 0 0 auto;
        color: var(--accent);
    }

    .mobile-callbar > a > span {
        display: flex;
        min-width: 0;
        flex-direction: column;
        line-height: 1.2;
    }

    .mobile-callbar small {
        color: var(--muted);
        font-size: 7px;
        font-weight: 800;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .mobile-callbar strong {
        font-size: 14px;
        white-space: nowrap;
    }

    .mobile-callbar .button {
        min-height: 44px;
        padding-inline: 18px;
        font-size: 11px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

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