:root {
    --home-yellow: #ffd400;
    --home-yellow-deep: #f2c500;
    --home-red: #cf0a2c;
    --home-red-dark: #a90020;
    --home-black: #111111;
    --home-charcoal: #202020;
    --home-paper: #f6f4ee;
    --home-line: rgba(17, 17, 17, .12);
}

.home-page {
    overflow-x: hidden;
    background: #fff;
    color: var(--home-black);
}

.home-page svg {
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.home-page .site-shell {
    width: min(1240px, calc(100% - 40px));
}

.service-bar {
    position: relative;
    z-index: 31;
    background: var(--home-red);
    color: #fff;
}

.service-bar-inner {
    display: flex;
    min-height: 34px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.service-bar-location {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.service-bar-location svg {
    width: 14px;
    height: 14px;
}

.service-bar-contact {
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

.service-bar-contact a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: inherit;
    text-decoration: none;
    transition: opacity .2s ease;
}

.service-bar-contact a:hover {
    opacity: .76;
}

.service-bar-contact svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.home-page .site-nav {
    top: 0;
    z-index: 30;
    border-bottom: 1px solid rgba(17, 17, 17, .1);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 8px 30px rgba(17, 17, 17, .04);
}

.home-page .nav-inner {
    min-height: 82px;
}

.home-page .brand {
    gap: 12px;
    font-size: 22px;
    letter-spacing: -.04em;
}

.home-page .brand-mark {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: var(--home-yellow);
    color: var(--home-black);
    box-shadow: inset 0 -4px 0 rgba(17, 17, 17, .08);
    font-family: "Montserrat", "Manrope", sans-serif;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -.025em;
}

.home-page .brand-name em {
    color: var(--home-red);
}

.home-page .brand-logo {
    display: block;
    width: auto;
    height: 54px;
}

.home-page .nav-links {
    gap: 12px;
}

.nav-text-link {
    position: relative;
    padding: 12px 4px;
    color: #4b4b4b;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.nav-text-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    height: 2px;
    background: var(--home-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}

.nav-text-link:hover::after {
    transform: scaleX(1);
}

.home-page .btn {
    border-radius: 7px;
    font-weight: 800;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.home-page .btn:hover {
    transform: translateY(-2px);
}

.home-page .btn-dark {
    background: var(--home-black);
    color: #fff;
    box-shadow: 0 10px 24px rgba(17, 17, 17, .15);
}

.home-page .btn-light {
    border-color: rgba(17, 17, 17, .15);
    color: var(--home-black);
}

.btn-large {
    min-height: 56px;
    padding: 0 24px;
    font-size: 14px;
}

.btn-large svg {
    width: 18px;
    height: 18px;
    margin-left: 12px;
}

.btn-yellow {
    background: var(--home-yellow);
    color: var(--home-black);
    box-shadow: 0 12px 30px rgba(17, 17, 17, .18);
}

.home-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 76px 0 82px;
    background:
        linear-gradient(115deg, transparent 62%, rgba(255, 255, 255, .2) 62% 64%, transparent 64%),
        var(--home-yellow);
}

.home-hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background-image: linear-gradient(rgba(17, 17, 17, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(17, 17, 17, .045) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(90deg, #000, transparent 64%);
}

.home-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: -90px;
    bottom: -170px;
    width: 500px;
    height: 500px;
    border: 80px solid rgba(17, 17, 17, .08);
    border-radius: 50%;
}

.hero-speed-line {
    position: absolute;
    z-index: -1;
    height: 12px;
    background: var(--home-red);
    opacity: .98;
    transform: skewX(-38deg);
}

.hero-speed-line-one {
    top: 84px;
    right: -80px;
    width: 27vw;
}

.hero-speed-line-two {
    right: -40px;
    bottom: 42px;
    width: 18vw;
    height: 7px;
}

.home-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(440px, .95fr);
    align-items: center;
    gap: clamp(42px, 7vw, 92px);
}

.home-hero-grid > * {
    min-width: 0;
}

.hero-copy {
    position: relative;
    z-index: 1;
}

.home-page .eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 20px;
    color: var(--home-red);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.home-page .eyebrow::before,
.section-kicker::before {
    content: "";
    width: 34px;
    height: 4px;
    border-radius: 0;
    background: var(--home-red);
}

.home-page h1 {
    max-width: 720px;
    margin: 0;
    color: var(--home-black);
    font-family: "Montserrat", "Manrope", sans-serif;
    font-size: clamp(52px, 6.2vw, 88px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -.018em;
    overflow-wrap: anywhere;
    text-wrap: balance;
}

.home-page h1 span {
    display: block;
    margin-top: 12px;
    color: var(--home-red);
}

.home-page .lead {
    max-width: 650px;
    margin: 30px 0 0;
    color: rgba(17, 17, 17, .72);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.75;
    word-spacing: .04em;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 34px;
}

.text-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--home-black);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.text-action span {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid rgba(17, 17, 17, .35);
    border-radius: 50%;
}

.hero-assurances {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 22px;
    margin-top: 32px;
    padding-top: 22px;
    border-top: 1px solid rgba(17, 17, 17, .18);
}

.hero-assurances span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(17, 17, 17, .72);
    font-size: 11px;
    font-weight: 800;
}

.hero-assurances i {
    display: grid;
    width: 19px;
    height: 19px;
    place-items: center;
    border-radius: 50%;
    background: var(--home-black);
    color: var(--home-yellow);
    font-size: 11px;
    font-style: normal;
}

.tracking-command {
    position: relative;
    z-index: 1;
    align-self: start;
    padding: clamp(28px, 4vw, 42px);
    border-top: 7px solid var(--home-red);
    border-radius: 4px 4px 18px 18px;
    background: #fff;
    box-shadow: 0 30px 70px rgba(17, 17, 17, .22);
}

.tracking-command::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 0;
    width: 31%;
    height: 7px;
    background: var(--home-black);
}

.tracking-command-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.tracking-kicker {
    color: var(--home-red);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.tracking-live {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #466055;
    font-size: 10px;
    font-weight: 800;
}

.tracking-live i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0aa174;
    box-shadow: 0 0 0 5px rgba(10, 161, 116, .12);
}

.tracking-command h2 {
    margin: 0 0 24px;
    font-family: "Montserrat", "Manrope", sans-serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 900;
    line-height: 1.14;
    letter-spacing: -.014em;
    overflow-wrap: anywhere;
    text-wrap: balance;
}

.tracking-command > p {
    margin: 0 0 28px;
    color: #6b6b6b;
    font-size: 13px;
    line-height: 1.65;
    word-spacing: .04em;
}

.home-page .tracking-form {
    gap: 10px;
}

.home-page .tracking-form label {
    color: var(--home-black);
    font-size: 10px;
}

.tracking-field-row {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: stretch;
    gap: 8px;
}

.tracking-field-icon {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 15px;
    color: #818181;
    transform: translateY(-50%);
    pointer-events: none;
}

.tracking-field-icon svg {
    width: 20px;
    height: 20px;
}

.home-page .tracking-form .field {
    min-width: 0;
    height: 58px;
    padding: 0 15px 0 46px;
    border: 1px solid #d5d5d5;
    border-radius: 6px;
    background: #f8f8f8;
    font-size: 14px;
}

.home-page .tracking-form .field:focus {
    border-color: var(--home-black);
    box-shadow: 0 0 0 3px rgba(255, 212, 0, .4);
}

.home-page .tracking-form .btn-red {
    min-width: 142px;
    min-height: 58px;
    gap: 9px;
    border-radius: 6px;
    background: var(--home-red);
    color: #fff;
}

.home-page .tracking-form .btn-red:hover {
    background: var(--home-red-dark);
}

.home-page .tracking-form .btn-red svg {
    width: 17px;
    height: 17px;
}

.tracking-command .error {
    margin-bottom: 18px;
    border-radius: 6px;
    font-size: 12px;
}

.tracking-security {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: #7c7c7c;
    font-size: 10px;
    font-weight: 700;
}

.tracking-security svg {
    width: 14px;
    height: 14px;
    color: #565656;
}

.tracking-command .result-card {
    margin-top: 20px;
    padding: 20px;
    border-radius: 8px;
    background: #fbfaf6;
    box-shadow: none;
}

.proof-band {
    background: var(--home-black);
    color: #fff;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.proof-grid article {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 17px;
    min-height: 132px;
    padding: 28px clamp(18px, 3vw, 38px);
    border-right: 1px solid rgba(255, 255, 255, .13);
}

.proof-grid article:first-child {
    padding-left: 0;
}

.proof-grid article:last-child {
    padding-right: 0;
    border-right: 0;
}

.proof-number {
    color: var(--home-yellow);
    font-family: "Montserrat", "Manrope", sans-serif;
    font-size: 32px;
    font-weight: 900;
}

.proof-grid strong,
.proof-grid small {
    display: block;
}

.proof-grid strong {
    margin-bottom: 6px;
    font-size: 14px;
}

.proof-grid small {
    color: rgba(255, 255, 255, .58);
    font-size: 10px;
    line-height: 1.5;
}

.solutions-section {
    padding: 110px 0 120px;
    background: var(--home-paper);
}

.section-heading {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: end;
    gap: 70px;
    margin-bottom: 50px;
}

.section-heading h2,
.process-content h2,
.partner-card h2 {
    margin: 0;
    font-family: "Montserrat", "Manrope", sans-serif;
    font-size: clamp(42px, 4.7vw, 66px);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -.018em;
    overflow-wrap: anywhere;
    text-wrap: balance;
}

.section-heading > p {
    margin: 0;
    color: #676767;
    font-size: 14px;
    line-height: 1.8;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.solution-card {
    position: relative;
    min-height: 400px;
    overflow: hidden;
    padding: 30px;
    border: 1px solid rgba(17, 17, 17, .12);
    border-radius: 8px;
    background: #fff;
    transition: transform .25s ease, box-shadow .25s ease;
}

.solution-card:hover {
    box-shadow: 0 25px 55px rgba(17, 17, 17, .1);
    transform: translateY(-7px);
}

.solution-card-featured {
    background: var(--home-yellow);
}

.solution-card::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -100px;
    width: 230px;
    height: 230px;
    border: 42px solid rgba(17, 17, 17, .045);
    border-radius: 50%;
}

.solution-icon {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    margin-bottom: 68px;
    border-radius: 7px;
    background: var(--home-black);
    color: var(--home-yellow);
}

.solution-card:not(.solution-card-featured) .solution-icon {
    background: var(--home-yellow);
    color: var(--home-black);
}

.solution-icon svg {
    width: 27px;
    height: 27px;
}

.solution-index {
    position: absolute;
    top: 35px;
    right: 30px;
    color: rgba(17, 17, 17, .28);
    font-family: "Montserrat", "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 900;
}

.solution-card h3 {
    margin: 0 0 14px;
    font-family: "Montserrat", "Manrope", sans-serif;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.18;
}

.solution-card p {
    margin: 0;
    color: #666;
    font-size: 12px;
    line-height: 1.75;
}

.solution-card-featured p {
    color: rgba(17, 17, 17, .68);
}

.solution-link {
    position: absolute;
    z-index: 1;
    right: 30px;
    bottom: 28px;
    left: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 17px;
    border-top: 1px solid rgba(17, 17, 17, .13);
    color: var(--home-black);
    font-size: 11px;
    font-weight: 900;
    text-decoration: none;
}

.solution-link b {
    font-size: 18px;
}

.process-section {
    padding: 120px 0;
    background: #fff;
}

.process-layout {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: clamp(50px, 8vw, 110px);
}

.process-visual {
    padding: 18px;
    border-radius: 10px;
    background: var(--home-black);
    box-shadow: 0 30px 70px rgba(17, 17, 17, .2);
}

.route-map {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    background: #1b1b1b;
}

.route-map > svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.route-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 38px 38px;
}

.route-path {
    fill: none;
    stroke: var(--home-yellow);
    stroke-dasharray: 10 12;
    stroke-width: 4;
}

.route-shadow {
    stroke: rgba(255, 212, 0, .14);
    stroke-dasharray: none;
    stroke-width: 20;
}

.route-node {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 5px;
    background: rgba(17, 17, 17, .88);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.route-node i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--home-red);
    box-shadow: 0 0 0 5px rgba(207, 10, 44, .18);
}

.route-node-one { left: 4%; bottom: 18%; }
.route-node-two { left: 52%; bottom: 37%; }
.route-node-three { top: 18%; right: 4%; }

.route-package {
    position: absolute;
    top: 36%;
    left: 31%;
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    border-radius: 50%;
    background: var(--home-yellow);
    color: var(--home-black);
    box-shadow: 0 0 0 10px rgba(255, 212, 0, .12);
}

.route-package svg {
    width: 27px;
    height: 27px;
}

.visual-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 8px 3px;
    color: #fff;
}

.visual-caption strong {
    font-family: "Montserrat", "Manrope", sans-serif;
    font-size: 19px;
}

.visual-caption span {
    color: rgba(255, 255, 255, .48);
    font-size: 10px;
}

.process-content .section-kicker {
    margin-bottom: 22px;
}

.process-intro {
    margin: 24px 0 34px;
    color: #6b6b6b;
    font-size: 14px;
    line-height: 1.75;
}

.process-list {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    padding: 21px 0;
    border-top: 1px solid var(--home-line);
}

.process-list li > span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 5px;
    background: var(--home-yellow);
    font-family: "Montserrat", "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 900;
}

.process-list strong {
    font-size: 14px;
}

.process-list p {
    margin: 6px 0 0;
    color: #747474;
    font-size: 11px;
    line-height: 1.6;
}

.partner-section {
    padding: 0 0 110px;
    background: #fff;
}

.partner-card {
    position: relative;
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    align-items: center;
    gap: 60px;
    overflow: hidden;
    padding: clamp(40px, 6vw, 76px);
    border-radius: 10px;
    background: var(--home-red);
    color: #fff;
}

.partner-card::before {
    content: "";
    position: absolute;
    top: -160px;
    right: -120px;
    width: 420px;
    height: 420px;
    border: 65px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
}

.partner-card .section-kicker {
    color: var(--home-yellow);
}

.partner-card .section-kicker::before {
    background: var(--home-yellow);
}

.partner-card h2 {
    max-width: 760px;
}

.partner-card p {
    max-width: 650px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    line-height: 1.75;
}

.partner-actions {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: stretch;
    gap: 16px;
}

.partner-login {
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-align: center;
    text-decoration-color: rgba(255, 255, 255, .45);
    text-underline-offset: 4px;
}

.home-footer {
    padding: 72px 0 26px;
    background: var(--home-black);
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr .65fr .72fr .95fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer-brand-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.footer-brand-logo {
    display: block;
    width: auto;
    height: 58px;
}

.footer-brand p {
    max-width: 430px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .5);
    font-size: 12px;
    line-height: 1.8;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 13px;
}

.footer-column strong {
    margin-bottom: 8px;
    color: var(--home-yellow);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-column a {
    color: rgba(255, 255, 255, .66);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
}

.footer-column a:hover {
    color: #fff;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 9px;
    overflow-wrap: anywhere;
}

.footer-contact a span {
    display: grid;
    flex: 0 0 29px;
    width: 29px;
    height: 29px;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 204, 0, .12);
    color: var(--home-yellow);
}

.footer-contact svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .38);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

@media (max-width: 1050px) {
    .home-page .nav-text-link {
        display: none;
    }

    .home-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(390px, .86fr);
        gap: 34px;
    }

    .home-page h1 {
        font-size: clamp(58px, 8vw, 82px);
    }

    .section-heading,
    .process-layout {
        gap: 46px;
    }
}

@media (max-width: 860px) {
    .home-page .site-shell {
        width: min(100% - 28px, 1240px);
    }

    .home-page .nav-inner {
        min-height: 72px;
    }

    .home-page .brand-mark {
        width: 44px;
        height: 44px;
    }

    .home-page .brand-logo {
        height: 48px;
    }

    .home-hero {
        padding: 58px 0 64px;
    }

    .home-hero-grid,
    .section-heading,
    .process-layout,
    .partner-card {
        grid-template-columns: 1fr;
    }

    .home-hero-grid {
        gap: 52px;
    }

    .hero-copy {
        max-width: 720px;
    }

    .proof-grid,
    .solution-grid {
        grid-template-columns: 1fr;
    }

    .proof-grid article,
    .proof-grid article:first-child,
    .proof-grid article:last-child {
        min-height: auto;
        padding: 24px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .proof-grid article:last-child {
        border-bottom: 0;
    }

    .section-heading {
        align-items: start;
        gap: 24px;
    }

    .solution-card {
        min-height: 330px;
    }

    .solution-icon {
        margin-bottom: 48px;
    }

    .process-visual {
        order: 2;
    }

    .partner-actions {
        justify-items: start;
    }

    .partner-login {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1.25fr 1fr 1fr;
        gap: 35px;
    }

    .footer-contact {
        grid-column: 2 / -1;
    }
}

@media (max-width: 620px) {
    .service-bar-location,
    .home-page .nav-links .btn-light,
    .home-page .nav-links .optional {
        display: none;
    }

    .service-bar-inner {
        justify-content: center;
        min-height: 42px;
        padding-block: 7px;
        font-size: 9px;
        line-height: 1.45;
        letter-spacing: .09em;
        text-align: center;
    }

    .home-page .nav-inner {
        gap: 10px;
    }

    .home-page .brand {
        min-width: 0;
        gap: 8px;
    }

    .home-page .brand-name {
        font-size: 17px;
        letter-spacing: -.02em;
        white-space: nowrap;
    }

    .service-bar-inner > span:first-child {
        display: none;
    }

    .service-bar-contact {
        width: 100%;
        justify-content: center;
        gap: 14px;
        font-size: 8px;
        letter-spacing: .03em;
        text-transform: none;
    }

    .home-page .brand-logo {
        width: min(48vw, 190px);
        height: auto;
    }

    .home-page .nav-links .btn-dark {
        min-height: 42px;
        padding: 0 13px;
        font-size: 11px;
    }

    .home-hero {
        padding-top: 18px;
    }

    .home-hero-grid {
        gap: 40px;
    }

    .home-page h1 {
        font-size: clamp(40px, 12vw, 54px);
        line-height: 1.12;
        letter-spacing: -.012em;
    }

    .home-page .lead {
        font-size: 14px;
        line-height: 1.85;
    }

    .home-page .eyebrow {
        max-width: 100%;
        flex-wrap: wrap;
        font-size: 10px;
        line-height: 1.6;
        letter-spacing: .1em;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .text-action {
        justify-content: center;
    }

    .hero-assurances {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .tracking-command {
        order: -1;
        min-width: 0;
        width: 100%;
        padding: 28px 20px 30px;
        border-radius: 4px 4px 16px 16px;
    }

    .tracking-command-top {
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 12px;
    }

    .tracking-command h2 {
        margin: 0 0 24px;
        font-size: clamp(30px, 8.8vw, 38px);
        line-height: 1.18;
        letter-spacing: -.01em;
    }

    .tracking-command > p {
        margin-bottom: 24px;
        font-size: 14px;
        line-height: 1.75;
    }

    .tracking-field-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .tracking-field-icon {
        top: 29px;
    }

    .home-page .tracking-form .btn-red {
        width: 100%;
        min-height: 56px;
    }

    .tracking-command .result-card {
        margin-top: 24px;
        padding: 18px;
    }

    .tracking-security {
        align-items: flex-start;
        margin-top: 22px;
        font-size: 11px;
        line-height: 1.6;
    }

    .solutions-section,
    .process-section {
        padding: 82px 0;
    }

    .route-map {
        min-height: 330px;
    }

    .visual-caption {
        align-items: flex-start;
        flex-direction: column;
    }

    .partner-section {
        padding-bottom: 80px;
    }

    .partner-card {
        gap: 34px;
        width: 100%;
        border-radius: 0;
    }

    .partner-actions,
    .partner-actions .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-contact {
        grid-column: auto;
    }

    .footer-brand-logo {
        height: 52px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-page *,
    .home-page *::before,
    .home-page *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
