:root {
    --blue: #1267e5;
    --blue-dark: #092f6d;
    --navy: #06162d;
    --navy-soft: #0d2344;
    --orange: #ff7a1a;
    --orange-soft: #fff0e5;

    --background: #ffffff;
    --background-soft: #f3f6fa;
    --surface: #ffffff;

    --text: #142033;
    --text-soft: #687487;
    --text-muted: #929dad;

    --line: #dde3ec;
    --dark-line: rgba(255, 255, 255, 0.14);

    --container: 1380px;

    --font-body: "DM Sans", sans-serif;
    --font-heading: "Manrope", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    background: var(--background);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

button {
    cursor: pointer;
}

img {
    display: block;
    width: 100%;
}

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

.section-label {
    color: var(--blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

/* Demo bar */

.demo-bar {
    position: relative;
    z-index: 1200;
    background: #020b19;
    color: rgba(255, 255, 255, 0.64);
}

.demo-bar-inner {
    min-height: 39px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10px;
}

.demo-bar a {
    color: #9bc0ff;
    display: inline-flex;
    gap: 8px;
    font-weight: 700;
}

/* Header */

.site-header {
    position: absolute;
    top: 39px;
    left: 0;
    z-index: 1000;
    width: 100%;
    padding: 21px 0;
    color: #ffffff;
}

.site-header.scrolled {
    position: fixed;
    top: 0;
    background: rgba(6, 22, 45, 0.96);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.brand-mark {
    width: 43px;
    height: 43px;
    border-radius: 11px;
    background: var(--blue);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
}

.brand-copy {
    display: flex;
    flex-direction: column;
}

.brand-copy strong {
    font-family: var(--font-heading);
    font-size: 18px;
    line-height: 1;
}

.brand-copy small {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 26px;
}

.navigation > a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
}

.navigation > a:hover {
    color: #ffffff;
}

.header-cta {
    padding: 13px 17px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.menu-button {
    display: none;
    width: 43px;
    height: 43px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
}

.menu-button span {
    display: block;
    width: 18px;
    height: 1px;
    margin: 6px auto;
    background: #ffffff;
}

/* Hero */

.hero-section {
    position: relative;
    min-height: 880px;
    color: #ffffff;
    overflow: hidden;
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media img {
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(3, 16, 35, 0.96),
            rgba(3, 16, 35, 0.68) 55%,
            rgba(3, 16, 35, 0.22)
        ),
        linear-gradient(
            to top,
            rgba(3, 16, 35, 0.72),
            transparent 45%
        );
}

.hero-layout {
    position: relative;
    z-index: 2;
    padding-top: 205px;
    display: grid;
    grid-template-columns: 1fr 330px;
    align-items: center;
    gap: 90px;
}

.hero-label {
    color: #91bcff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero-copy h1 {
    max-width: 880px;
    margin-top: 23px;
    font-family: var(--font-heading);
    font-size: clamp(65px, 8vw, 112px);
    line-height: 0.94;
    letter-spacing: -0.065em;
}

.hero-copy h1 span {
    display: block;
    color: #8dbaff;
}

.hero-copy > p {
    max-width: 590px;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
}

.hero-actions {
    margin-top: 37px;
    display: flex;
    gap: 13px;
}

.primary-button,
.outline-button {
    min-height: 53px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    font-size: 11px;
    font-weight: 700;
}

.primary-button {
    background: var(--orange);
    color: #ffffff;
}

.outline-button {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.operations-panel {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(5, 24, 49, 0.76);
    backdrop-filter: blur(18px);
}

.operations-label {
    color: #8dbaff;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.operation-stat {
    padding: 23px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.operation-stat strong,
.operation-stat span {
    display: block;
}

.operation-stat strong {
    font-family: var(--font-heading);
    font-size: 31px;
}

.operation-stat span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 9px;
}

.operation-status {
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.67);
    font-size: 9px;
}

.operation-status span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3ad47b;
    box-shadow: 0 0 0 6px rgba(58, 212, 123, 0.11);
}

/* Tracking panel */

.tracking-panel {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 4;
    padding: 20px;
    transform: translateX(-50%);
    background: #ffffff;
    color: var(--text);
    display: grid;
    grid-template-columns: 220px 1fr auto;
    align-items: center;
    gap: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.tracking-panel-copy span,
.tracking-panel-copy strong {
    display: block;
}

.tracking-panel-copy span {
    color: var(--blue);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.tracking-panel-copy strong {
    margin-top: 3px;
    font-family: var(--font-heading);
    font-size: 16px;
}

.tracking-panel form {
    display: flex;
}

.tracking-panel input {
    width: 100%;
    height: 53px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-right: none;
    outline: none;
}

.tracking-panel button {
    min-width: 180px;
    border: none;
    background: var(--blue);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    font-size: 10px;
    font-weight: 700;
}

.tracking-panel small {
    max-width: 150px;
    color: var(--text-muted);
    font-size: 8px;
}

/* Tracking result */

.tracking-result-section {
    padding: 45px 0;
    background: var(--background-soft);
}

.tracking-result-card {
    padding: 38px;
    border: 1px solid var(--line);
    background: #ffffff;
}

.tracking-result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tracking-result-header span,
.tracking-result-header strong {
    display: block;
}

.tracking-result-header > div > span {
    color: var(--text-muted);
    font-size: 8px;
    text-transform: uppercase;
}

.tracking-result-header strong {
    margin-top: 4px;
    font-family: var(--font-heading);
    font-size: 20px;
}

.tracking-status {
    padding: 8px 12px;
    background: var(--orange-soft);
    color: var(--orange);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.tracking-progress {
    margin: 42px 0;
}

.tracking-progress-line {
    height: 5px;
    background: #edf0f4;
}

.tracking-progress-line span {
    display: block;
    height: 100%;
    background: var(--blue);
    transition: width 0.5s ease;
}

.tracking-steps {
    margin-top: 15px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.tracking-steps div {
    color: var(--text-muted);
    font-size: 9px;
}

.tracking-steps div:nth-child(2),
.tracking-steps div:nth-child(3) {
    text-align: center;
}

.tracking-steps div:last-child {
    text-align: right;
}

.tracking-steps span {
    display: inline-block;
    width: 9px;
    height: 9px;
    margin-right: 5px;
    border-radius: 50%;
    background: #d5dae2;
}

.tracking-steps .active {
    color: var(--blue);
}

.tracking-steps .active span {
    background: var(--blue);
}

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

.tracking-information-grid div {
    padding: 19px;
    background: var(--background-soft);
}

.tracking-information-grid span,
.tracking-information-grid strong {
    display: block;
}

.tracking-information-grid span {
    color: var(--text-muted);
    font-size: 8px;
    text-transform: uppercase;
}

.tracking-information-grid strong {
    margin-top: 6px;
    font-size: 11px;
}

.tracking-error {
    padding: 55px 25px;
    border: 1px solid var(--line);
    background: #ffffff;
    text-align: center;
}

.tracking-error h3 {
    font-family: var(--font-heading);
    font-size: 24px;
}

.tracking-error p {
    margin-top: 8px;
    color: var(--text-soft);
}

/* Shared section headings */

.section-heading,
.network-heading {
    margin-bottom: 50px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 45px;
}

.section-heading h2,
.route-content h2,
.network-heading h2,
.technology-copy h2,
.quotation-copy h2,
.contact-content h2 {
    max-width: 790px;
    margin-top: 15px;
    font-family: var(--font-heading);
    font-size: clamp(43px, 5vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.055em;
}

.section-heading > p,
.network-heading > p {
    max-width: 430px;
    color: var(--text-soft);
}

/* Services */

.service-section {
    padding: 125px 0;
}

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

.service-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    border: 1px solid var(--line);
    background: #ffffff;
    overflow: hidden;
}

.service-image {
    position: relative;
    min-height: 360px;
    overflow: hidden;
}

.service-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.service-image > span {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 39px;
    height: 39px;
    border-radius: 50%;
    background: rgba(6, 22, 45, 0.9);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 9px;
}

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-family: var(--font-heading);
    font-size: 25px;
}

.service-content p {
    margin-top: 13px;
    color: var(--text-soft);
    font-size: 12px;
}

.service-content a {
    margin-top: auto;
    padding-top: 21px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    color: var(--blue);
    font-size: 10px;
    font-weight: 700;
}

/* Routes */

.route-section {
    padding: 130px 0;
    background: var(--navy);
    color: #ffffff;
}

.route-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 90px;
}

.route-map {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: var(--navy-soft);
}

.map-background {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    transform: rotate(-8deg) scale(1.25);
}

.map-background::before,
.map-background::after {
    content: "";
    position: absolute;
    border: 25px solid rgba(18, 103, 229, 0.15);
    border-radius: 50%;
}

.map-background::before {
    width: 410px;
    height: 410px;
    top: 80px;
    left: 90px;
}

.map-background::after {
    width: 220px;
    height: 220px;
    right: 60px;
    bottom: 40px;
}

.route-point {
    position: absolute;
    z-index: 3;
    padding: 7px 11px;
    border-radius: 30px;
    background: #ffffff;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 9px;
    font-weight: 700;
}

.route-point span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
}

.point-accra {
    left: 17%;
    bottom: 24%;
}

.point-kumasi {
    left: 44%;
    top: 44%;
}

.point-tamale {
    left: 54%;
    top: 18%;
}

.point-lagos {
    right: 11%;
    bottom: 34%;
}

.route-line {
    position: absolute;
    height: 2px;
    background: var(--blue);
    transform-origin: left center;
}

.route-line-one {
    width: 195px;
    left: 24%;
    bottom: 28%;
    transform: rotate(-31deg);
}

.route-line-two {
    width: 160px;
    left: 48%;
    top: 44%;
    transform: rotate(-65deg);
}

.route-line-three {
    width: 265px;
    left: 51%;
    top: 49%;
    transform: rotate(21deg);
}

.moving-truck {
    position: absolute;
    left: 42%;
    bottom: 41%;
    z-index: 4;
    width: 37px;
    height: 37px;
    border-radius: 50%;
    background: var(--orange);
    color: #ffffff;
    display: grid;
    place-items: center;
    animation: truckPulse 2s infinite;
}

@keyframes truckPulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 122, 26, 0.35);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(255, 122, 26, 0);
    }
}

.route-content .section-label {
    color: #82b1ff;
}

.route-content h2 {
    color: #ffffff;
}

.route-content > p {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.59);
}

.route-list {
    margin-top: 45px;
}

.route-list article {
    padding: 20px 0;
    border-top: 1px solid var(--dark-line);
}

.route-cities {
    display: flex;
    align-items: center;
    gap: 13px;
}

.route-cities strong {
    font-family: var(--font-heading);
    font-size: 16px;
}

.route-cities span {
    color: var(--orange);
}

.route-meta {
    margin-top: 7px;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.45);
    font-size: 9px;
}

/* Network */

.network-section {
    padding: 125px 0;
    background: var(--background-soft);
}

.network-grid {
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: 330px 330px;
    gap: 16px;
}

.network-feature {
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.network-feature-large {
    grid-row: 1 / 3;
}

.network-feature img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.network-feature:hover img {
    transform: scale(1.04);
}

.network-feature::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(3, 16, 35, 0.9),
        rgba(3, 16, 35, 0.05) 65%
    );
}

.network-feature > div {
    position: absolute;
    left: 29px;
    right: 29px;
    bottom: 27px;
    z-index: 2;
}

.network-feature span {
    color: #94bdff;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.network-feature h3 {
    margin-top: 5px;
    font-family: var(--font-heading);
    font-size: 28px;
}

.network-feature p {
    margin-top: 7px;
    max-width: 500px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
}

/* Technology */

.technology-section {
    padding: 140px 0;
}

.technology-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 100px;
}

.technology-copy > p {
    margin-top: 21px;
    color: var(--text-soft);
}

.technology-copy ul {
    margin-top: 35px;
    list-style: none;
}

.technology-copy li {
    padding: 17px 0;
    border-top: 1px solid var(--line);
    display: flex;
    gap: 18px;
    font-size: 12px;
}

.technology-copy li span {
    color: var(--blue);
    font-size: 9px;
    font-weight: 700;
}

.dashboard-preview {
    padding: 31px;
    background: var(--navy);
    color: #ffffff;
    box-shadow: 0 30px 80px rgba(8, 27, 56, 0.2);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-header span,
.dashboard-header strong {
    display: block;
}

.dashboard-header > div > span {
    color: #7eabf4;
    font-size: 8px;
    text-transform: uppercase;
}

.dashboard-header strong {
    margin-top: 4px;
    font-family: var(--font-heading);
    font-size: 20px;
}

.dashboard-live {
    display: flex !important;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 9px;
}

.dashboard-live i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3ad47b;
}

.dashboard-stat-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.dashboard-stat-grid div {
    padding: 17px;
    background: rgba(255, 255, 255, 0.06);
}

.dashboard-stat-grid span,
.dashboard-stat-grid strong {
    display: block;
}

.dashboard-stat-grid span {
    color: rgba(255, 255, 255, 0.45);
    font-size: 8px;
}

.dashboard-stat-grid strong {
    margin-top: 8px;
    font-family: var(--font-heading);
    font-size: 24px;
}

.dashboard-chart {
    height: 190px;
    margin-top: 25px;
    padding: 25px 20px 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 100% 38px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
}

.dashboard-chart span {
    width: 100%;
    background: linear-gradient(to top, var(--blue), #67a3ff);
}

.dashboard-shipments {
    margin-top: 25px;
}

.dashboard-shipments article {
    padding: 14px 0;
    border-top: 1px solid var(--dark-line);
    display: grid;
    grid-template-columns: 0.7fr 1.2fr 0.6fr;
    gap: 12px;
    font-size: 9px;
}

.dashboard-shipments span {
    color: #83aff4;
}

.dashboard-shipments small {
    color: rgba(255, 255, 255, 0.5);
    text-align: right;
}

/* Quotation */

.quotation-section {
    padding: 140px 0;
    background: var(--background-soft);
}

.quotation-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    align-items: start;
    gap: 100px;
}

.quotation-copy {
    position: sticky;
    top: 120px;
}

.quotation-copy > p {
    margin-top: 22px;
    color: var(--text-soft);
}

.quotation-contact {
    margin-top: 40px;
    padding-top: 23px;
    border-top: 1px solid var(--line);
}

.quotation-contact span,
.quotation-contact strong,
.quotation-contact small {
    display: block;
}

.quotation-contact span {
    color: var(--blue);
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.quotation-contact strong {
    margin-top: 6px;
    font-family: var(--font-heading);
    font-size: 25px;
}

.quotation-contact small {
    color: var(--text-muted);
}

.quotation-form {
    padding: 42px;
    border: 1px solid var(--line);
    background: #ffffff;
}

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

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    margin-bottom: 7px;
    color: var(--text-soft);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--line);
    outline: none;
    background: transparent;
    color: var(--text);
}

.form-field input,
.form-field select {
    height: 49px;
}

.form-field textarea {
    min-height: 105px;
    padding-top: 12px;
    resize: vertical;
}

.quotation-form button {
    width: 100%;
    min-height: 57px;
    border: none;
    background: var(--blue);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    font-size: 11px;
    font-weight: 700;
}

.form-message {
    min-height: 18px;
    margin-top: 12px;
    color: var(--blue);
    font-size: 10px;
    text-align: center;
}

/* Contact */

.contact-section {
    min-height: 690px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
}

.contact-image img {
    height: 100%;
    object-fit: cover;
}

.contact-content {
    padding: 100px 7vw;
    background: var(--navy);
    color: #ffffff;
}

.contact-content .section-label {
    color: #85b2fa;
}

.contact-content h2 {
    color: #ffffff;
}

.contact-details {
    margin: 45px 0;
}

.contact-details div {
    padding: 17px 0;
    border-top: 1px solid var(--dark-line);
}

.contact-details span,
.contact-details strong {
    display: block;
}

.contact-details span {
    color: #87b3fa;
    font-size: 8px;
    text-transform: uppercase;
}

.contact-details strong {
    margin-top: 5px;
    font-size: 12px;
}

.contact-content > a {
    padding-bottom: 7px;
    border-bottom: 1px solid #ffffff;
    display: inline-flex;
    gap: 23px;
    font-size: 11px;
}

/* Footer */

.site-footer {
    padding: 85px 0 24px;
    background: #020b19;
    color: #ffffff;
}

.footer-grid {
    padding-bottom: 60px;
    display: grid;
    grid-template-columns: 1.7fr repeat(3, 1fr);
    gap: 50px;
}

.footer-about p {
    max-width: 360px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.49);
    font-size: 10px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column > span {
    margin-bottom: 9px;
    color: #88b5fc;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-column a,
.footer-column p {
    color: rgba(255, 255, 255, 0.48);
    font-size: 10px;
}

.footer-bottom {
    padding-top: 22px;
    border-top: 1px solid var(--dark-line);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 255, 255, 0.34);
    font-size: 9px;
}

.footer-bottom a {
    display: inline-flex;
    gap: 8px;
}

.floating-quote {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: var(--orange);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 9px;
    font-weight: 800;
    box-shadow: 0 17px 40px rgba(0, 0, 0, 0.23);
}

.floating-quote span {
    display: block;
}

/* Responsive */

@media (max-width: 1000px) {
    .menu-button {
        display: block;
    }

    .navigation {
        position: fixed;
        top: 100px;
        left: 24px;
        right: 24px;
        padding: 25px;
        background: rgba(6, 22, 45, 0.99);
        display: none;
        flex-direction: column;
        align-items: stretch;
    }

    .navigation.open {
        display: flex;
    }

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

    .operations-panel {
        display: none;
    }

    .tracking-panel {
        grid-template-columns: 180px 1fr;
    }

    .tracking-panel small {
        grid-column: 2;
    }

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

    .route-layout,
    .technology-layout,
    .quotation-layout,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .quotation-copy {
        position: static;
    }

    .tracking-information-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-image {
        min-height: 500px;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-column:last-child {
        grid-column: 2 / 4;
    }
}

@media (max-width: 680px) {
    .wide-container {
        width: min(calc(100% - 28px), var(--container));
    }

    .demo-bar-inner {
        min-height: 49px;
        font-size: 8px;
    }

    .site-header {
        top: 49px;
    }

    .site-header.scrolled {
        top: 0;
    }

    .hero-section {
        min-height: 940px;
    }

    .hero-layout {
        padding-top: 165px;
    }

    .hero-copy h1 {
        font-size: 56px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .tracking-panel {
        bottom: 22px;
        padding: 16px;
        grid-template-columns: 1fr;
    }

    .tracking-panel form {
        flex-direction: column;
    }

    .tracking-panel input {
        border-right: 1px solid var(--line);
        border-bottom: none;
    }

    .tracking-panel button {
        min-height: 53px;
    }

    .tracking-panel small {
        grid-column: auto;
    }

    .tracking-result-card {
        padding: 25px 18px;
    }

    .tracking-result-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .tracking-information-grid {
        grid-template-columns: 1fr;
    }

    .tracking-steps strong {
        display: none;
    }

    .service-section,
    .route-section,
    .network-section,
    .technology-section,
    .quotation-section {
        padding: 82px 0;
    }

    .section-heading,
    .network-heading {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .service-image {
        min-height: 280px;
    }

    .route-map {
        min-height: 430px;
    }

    .network-grid {
        padding: 0 14px;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 370px);
    }

    .network-feature-large {
        grid-row: auto;
    }

    .dashboard-stat-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-shipments article {
        grid-template-columns: 1fr;
    }

    .dashboard-shipments small {
        text-align: left;
    }

    .quotation-layout {
        gap: 55px;
    }

    .quotation-form {
        padding: 27px 19px;
    }

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

    .contact-image {
        min-height: 420px;
    }

    .contact-content {
        padding: 75px 24px;
    }

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

    .footer-about {
        grid-column: 1 / 3;
    }

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

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .floating-quote {
        width: 64px;
        height: 64px;
        right: 14px;
        bottom: 14px;
    }
}
