:root {
    --primary: #ff6600;
    --primary-dark: #e65600;
    --primary-soft: #fff1e8;
    --dark: #111827;
    --dark-two: #1f2937;
    --text: #4b5563;
    --light: #f8fafc;
    --white: #ffffff;
    --border: #e5e7eb;
    --shadow: 0 20px 60px rgba(17, 24, 39, 0.10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--dark);
    background: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

.site-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.top-strip {
    color: rgba(255, 255, 255, 0.82);
    background: #0b1220;
    font-size: 12px;
}

.top-strip-inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-strip-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-strip a {
    color: #ffffff;
    text-decoration: none;
}

.top-strip a:hover {
    color: #ffb27f;
}

.main-nav {
    position: relative;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(229, 231, 235, 0.9);
    backdrop-filter: blur(14px);
}

.nav-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand img {
    display: block;
    width: 128px;
    max-height: 58px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 27px;
}

.nav-link {
    position: relative;
    padding: 27px 0;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.nav-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 18px;
    left: 0;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-login-btn {
    display: inline-flex;
    min-height: 43px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    color: #ffffff;
    background: var(--dark);
    border-radius: 9px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    transition: 0.25s ease;
}

.nav-login-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--dark);
    transition: 0.25s ease;
}

.hero {
    position: relative;
    min-height: 660px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 102, 0, 0.07), transparent 45%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.45;
    background-image:
        linear-gradient(rgba(17, 24, 39, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 24, 39, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
    pointer-events: none;
}

.hero-glow-one {
    top: -180px;
    right: -130px;
    width: 470px;
    height: 470px;
    background: rgba(255, 102, 0, 0.14);
}

.hero-glow-two {
    bottom: -220px;
    left: -180px;
    width: 460px;
    height: 460px;
    background: rgba(255, 153, 82, 0.10);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 72px;
    align-items: center;
    padding-top: 72px;
    padding-bottom: 80px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.8px;
}

.eyebrow::before,
.section-kicker::before {
    content: "";
    width: 32px;
    height: 2px;
    background: var(--primary);
}

.hero h1 {
    max-width: 690px;
    margin: 20px 0 22px;
    font-size: clamp(46px, 6vw, 76px);
    line-height: 0.98;
    letter-spacing: -3.5px;
}

.hero h1 span {
    display: block;
    color: var(--primary);
}

.hero-text {
    max-width: 610px;
    margin: 0;
    color: var(--text);
    font-size: 18px;
    line-height: 1.75;
}

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

.primary-btn,
.secondary-btn,
.light-btn,
.outline-light-btn {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    transition: 0.25s ease;
}

.primary-btn {
    color: #ffffff;
    background: var(--primary);
    box-shadow: 0 14px 30px rgba(255, 102, 0, 0.25);
}

.primary-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.secondary-btn {
    color: var(--dark);
    background: #ffffff;
    border: 1px solid var(--border);
}

.secondary-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    color: #4b5563;
    font-size: 13px;
    font-weight: 700;
}

.hero-point {
    display: flex;
    align-items: center;
    gap: 7px;
}

.point-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--primary-soft);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 900;
}

.hero-visual {
    position: relative;
}

.delivery-card {
    position: relative;
    width: 100%;
    min-height: 480px;
    padding: 30px;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at top right, rgba(255, 102, 0, 0.38), transparent 33%),
        linear-gradient(145deg, #111827 0%, #0b1220 65%, #1f2937 100%);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 28px;
    box-shadow: 0 38px 80px rgba(17, 24, 39, 0.30);
}

.delivery-card::before {
    content: "";
    position: absolute;
    top: -110px;
    right: -70px;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 50%;
}

.delivery-card-head {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 54px 1fr 15px;
    align-items: center;
    gap: 14px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.mini-logo {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    background: #ffffff;
    border-radius: 13px;
}

.mini-logo img {
    max-height: 40px;
    object-fit: contain;
}

.mini-label {
    display: block;
    margin-bottom: 2px;
    color: #94a3b8;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.delivery-card-head strong {
    font-size: 18px;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.12);
}

.route-visual {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    align-items: center;
    gap: 15px;
    padding: 34px 0 20px;
}

.route-place span {
    display: block;
    color: #94a3b8;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.route-place strong {
    font-size: 21px;
}

.route-place-right {
    text-align: right;
}

.route-line {
    position: relative;
    height: 2px;
    background: rgba(255, 255, 255, 0.28);
}

.route-plane {
    position: absolute;
    top: 50%;
    left: 55%;
    color: var(--primary);
    font-size: 22px;
    transform: translate(-50%, -50%);
}

.progress-track {
    position: relative;
    z-index: 2;
    height: 6px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.13);
    border-radius: 999px;
}

.progress-track span {
    display: block;
    width: 72%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #ffb07a);
    border-radius: inherit;
}

.progress-labels {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    color: #94a3b8;
    font-size: 8px;
    font-weight: 700;
}

.parcel-illustration {
    position: absolute;
    right: 34px;
    bottom: 32px;
    left: 34px;
    height: 205px;
}

.parcel-box {
    position: absolute;
    right: 40px;
    bottom: 0;
    width: 185px;
    height: 150px;
    background: linear-gradient(145deg, #f59e0b, #ff6600);
    clip-path: polygon(12% 0, 86% 0, 100% 19%, 100% 100%, 0 100%, 0 19%);
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.22));
}

.parcel-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 46px;
    height: 100%;
    background: rgba(255, 255, 255, 0.20);
    transform: translateX(-50%);
}

.parcel-tape {
    position: absolute;
    top: 0;
    left: 50%;
    width: 46px;
    height: 42px;
    background: rgba(255, 255, 255, 0.33);
    transform: translateX(-50%);
}

.parcel-mark {
    position: absolute;
    right: 22px;
    bottom: 18px;
    padding: 6px 10px;
    color: #111827;
    background: #ffffff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
}

.speed-line {
    position: absolute;
    right: 205px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.40));
    border-radius: 999px;
}

.speed-line-one {
    bottom: 110px;
    width: 140px;
}

.speed-line-two {
    bottom: 78px;
    width: 105px;
}

.speed-line-three {
    bottom: 45px;
    width: 74px;
}

.tracking-section {
    position: relative;
    z-index: 5;
    margin-top: -44px;
}

.tracking-panel {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 32px;
    align-items: center;
    padding: 30px;
    background: #ffffff;
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.tracking-copy h2 {
    margin: 6px 0 4px;
    font-size: 28px;
}

.tracking-copy p {
    margin: 0;
    color: var(--text);
    font-size: 13px;
}

.tracking-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.tracking-input-wrap {
    position: relative;
}

.tracking-input-icon {
    position: absolute;
    top: 50%;
    left: 17px;
    width: 22px;
    height: 22px;
    color: var(--primary);
    transform: translateY(-50%);
}

.tracking-input-icon svg {
    width: 100%;
    fill: currentColor;
}

.tracking-form input {
    width: 100%;
    height: 58px;
    padding: 0 18px 0 50px;
    color: var(--dark);
    background: #f8fafc;
    border: 1px solid #dbe2ea;
    border-radius: 10px;
    outline: 0;
    font-size: 15px;
    transition: 0.2s ease;
}

.tracking-form input:focus {
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.10);
}

.tracking-submit {
    min-width: 135px;
    height: 58px;
    padding: 0 22px;
    color: #ffffff;
    background: var(--primary);
    border: 0;
    border-radius: 10px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.25s ease;
}

.tracking-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.section {
    padding: 110px 0;
}

.section-heading {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 42px;
}

.section-heading h2,
.center-heading h2,
.why-content h2,
.cta-copy h2 {
    margin: 12px 0 0;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -1.8px;
}

.section-heading p {
    margin: 0;
    color: var(--text);
    font-size: 16px;
}

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

.service-card {
    position: relative;
    padding: 32px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: 0.3s ease;
}

.service-card:hover {
    border-color: rgba(255, 102, 0, 0.35);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
}

.featured-card {
    background:
        radial-gradient(circle at top right, rgba(255, 102, 0, 0.17), transparent 36%),
        #111827;
    border-color: #111827;
    color: #ffffff;
}

.featured-card p {
    color: #cbd5e1 !important;
}

.service-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 5px 9px;
    color: #ffffff;
    background: var(--primary);
    border-radius: 999px;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1px;
}

.service-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary);
    background: var(--primary-soft);
    border-radius: 15px;
}

.service-icon svg {
    width: 29px;
    fill: currentColor;
}

.featured-card .service-icon {
    color: #ffffff;
    background: var(--primary);
}

.service-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
}

.service-card p {
    min-height: 78px;
    margin: 0;
    color: var(--text);
    font-size: 14px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 20px;
    color: var(--primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
}

.text-link span {
    transition: transform 0.2s ease;
}

.text-link:hover span {
    transform: translateX(4px);
}

.why-section {
    overflow: hidden;
    background: #f8fafc;
}

.why-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 90px;
    align-items: center;
}

.why-visual {
    position: relative;
    min-height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-orbit {
    position: absolute;
    border: 1px solid rgba(255, 102, 0, 0.22);
    border-radius: 50%;
}

.orbit-one {
    width: 390px;
    height: 390px;
}

.orbit-two {
    width: 285px;
    height: 285px;
}

.globe {
    position: relative;
    width: 245px;
    height: 245px;
    overflow: hidden;
    background: linear-gradient(145deg, #ff6600, #ff8c42);
    border-radius: 50%;
    box-shadow: 0 30px 70px rgba(255, 102, 0, 0.27);
}

.globe::before,
.globe::after {
    content: "";
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.48);
    border-radius: 50%;
}

.globe::before {
    inset: 34px 82px;
}

.globe::after {
    inset: 82px 34px;
}

.globe-line {
    position: absolute;
    right: -20px;
    left: -20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.43);
}

.globe-line-one {
    top: 66px;
}

.globe-line-two {
    top: 121px;
}

.globe-line-three {
    top: 177px;
}

.globe-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 3px;
}

.floating-tag {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px 16px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 14px 36px rgba(17, 24, 39, 0.12);
    font-size: 12px;
    font-weight: 800;
}

.floating-tag span {
    color: var(--primary);
}

.floating-tag-one {
    top: 62px;
    right: 12px;
}

.floating-tag-two {
    bottom: 58px;
    left: 0;
}

.why-intro {
    margin: 22px 0 30px;
    color: var(--text);
    font-size: 16px;
}

.feature-list {
    display: grid;
    gap: 18px;
}

.feature-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
    padding: 18px 0;
    border-top: 1px solid var(--border);
}

.feature-number {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--primary-soft);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 900;
}

.feature-item h3 {
    margin: 0 0 4px;
    font-size: 18px;
}

.feature-item p {
    margin: 0;
    color: var(--text);
    font-size: 14px;
}

.center-heading {
    max-width: 680px;
    margin: 0 auto 50px;
    text-align: center;
}

.center-heading .section-kicker {
    justify-content: center;
}

.center-heading p {
    margin: 16px 0 0;
    color: var(--text);
}

.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.process-grid::before {
    content: "";
    position: absolute;
    top: 45px;
    right: 12%;
    left: 12%;
    height: 1px;
    background: repeating-linear-gradient(
        90deg,
        rgba(255, 102, 0, 0.35) 0 7px,
        transparent 7px 13px
    );
}

.process-card {
    position: relative;
    z-index: 2;
    padding: 24px 20px 26px;
    text-align: center;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
}

.process-step {
    position: absolute;
    top: 14px;
    right: 14px;
    color: #cbd5e1;
    font-size: 11px;
    font-weight: 900;
}

.process-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #ffffff;
    background: var(--primary);
    border: 8px solid #fff1e8;
    border-radius: 50%;
    font-size: 23px;
    font-weight: 900;
}

.process-card h3 {
    margin: 0 0 9px;
    font-size: 18px;
}

.process-card p {
    margin: 0;
    color: var(--text);
    font-size: 13px;
}

.cta-section {
    padding: 0 0 110px;
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 52px;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 34%),
        linear-gradient(135deg, #ff6600, #db4f00);
    border-radius: 24px;
    box-shadow: 0 28px 60px rgba(255, 102, 0, 0.24);
}

.light-kicker {
    color: #ffffff;
}

.light-kicker::before {
    background: #ffffff;
}

.cta-copy {
    max-width: 720px;
}

.cta-copy h2 {
    font-size: clamp(34px, 4vw, 48px);
}

.cta-copy p {
    max-width: 650px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.85);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.light-btn {
    color: var(--primary);
    background: #ffffff;
}

.light-btn:hover {
    color: var(--dark);
    transform: translateY(-3px);
}

.outline-light-btn {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.62);
}

.outline-light-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.site-footer {
    color: #cbd5e1;
    background: #0b1220;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 55px;
    padding-top: 70px;
    padding-bottom: 55px;
}

.footer-logo {
    display: inline-flex;
    width: 140px;
    padding: 8px;
    background: #ffffff;
    border-radius: 10px;
}

.footer-logo img {
    max-height: 48px;
    object-fit: contain;
}

.footer-brand p {
    max-width: 360px;
    margin: 20px 0;
    color: #94a3b8;
    font-size: 14px;
}

.footer-badge {
    display: inline-flex;
    padding: 7px 11px;
    color: #ffb27f;
    background: rgba(255, 102, 0, 0.10);
    border: 1px solid rgba(255, 102, 0, 0.20);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
}

.footer-column h3 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 15px;
}

.footer-column a {
    display: block;
    width: fit-content;
    margin: 10px 0;
    color: #94a3b8;
    text-decoration: none;
    font-size: 13px;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-small-text {
    margin: 0 0 16px;
    color: #94a3b8;
    font-size: 13px;
}

.footer-contact-link {
    color: #ff9f5f !important;
    font-weight: 800;
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.footer-bottom-inner {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #64748b;
    font-size: 12px;
}

.footer-bottom a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 12px;
}

@media (max-width: 1050px) {
    .hero-grid,
    .why-grid {
        gap: 45px;
    }

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

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

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

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

    .nav-menu {
        position: fixed;
        top: 114px;
        right: 16px;
        left: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px;
        background: #ffffff;
        border: 1px solid var(--border);
        border-radius: 14px;
        box-shadow: var(--shadow);
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-link {
        padding: 13px 10px;
        border-bottom: 1px solid #f1f5f9;
    }

    .nav-link::after {
        display: none;
    }

    .nav-login-btn {
        margin-top: 10px;
    }

    .hero {
        min-height: auto;
    }

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

    .hero-grid {
        padding-top: 60px;
    }

    .hero-content {
        text-align: center;
    }

    .eyebrow,
    .hero-actions,
    .hero-points {
        justify-content: center;
    }

    .hero-text {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-visual {
        max-width: 650px;
        width: 100%;
        margin: 0 auto;
    }

    .tracking-panel,
    .section-heading {
        grid-template-columns: 1fr;
        gap: 22px;
    }

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

    .service-card p {
        min-height: auto;
    }

    .why-content {
        order: -1;
    }

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

    .process-grid::before {
        display: none;
    }

    .cta-panel {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 700px) {
    .top-strip-text {
        display: none;
    }

    .top-strip-inner {
        justify-content: center;
    }

    .hero-grid {
        padding-top: 45px;
        padding-bottom: 70px;
    }

    .hero h1 {
        font-size: 46px;
        letter-spacing: -2px;
    }

    .hero-text {
        font-size: 16px;
    }

    .delivery-card {
        min-height: 430px;
        padding: 22px;
        border-radius: 22px;
    }

    .parcel-box {
        right: 15px;
        width: 160px;
        height: 132px;
    }

    .speed-line {
        right: 160px;
    }

    .tracking-section {
        margin-top: -28px;
    }

    .tracking-panel {
        padding: 22px;
    }

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

    .tracking-submit {
        width: 100%;
    }

    .section {
        padding: 80px 0;
    }

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

    .why-visual {
        min-height: 390px;
    }

    .orbit-one {
        width: 320px;
        height: 320px;
    }

    .orbit-two {
        width: 235px;
        height: 235px;
    }

    .globe {
        width: 200px;
        height: 200px;
    }

    .floating-tag-one {
        top: 45px;
        right: 0;
    }

    .floating-tag-two {
        bottom: 44px;
    }

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

    .cta-panel {
        padding: 34px 24px;
    }

    .cta-actions {
        width: 100%;
    }

    .light-btn,
    .outline-light-btn {
        width: 100%;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

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

@media (max-width: 480px) {
    .site-container {
        width: min(100% - 22px, 1180px);
    }

    .top-strip-links {
        width: 100%;
        justify-content: space-between;
        gap: 12px;
    }

    .nav-inner {
        min-height: 68px;
    }

    .brand img {
        width: 108px;
    }

    .nav-menu {
        top: 104px;
        right: 11px;
        left: 11px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }

    .hero-points {
        align-items: center;
        flex-direction: column;
        gap: 10px;
    }

    .delivery-card {
        min-height: 390px;
    }

    .route-visual {
        gap: 6px;
    }

    .route-place strong {
        font-size: 17px;
    }

    .progress-labels {
        font-size: 7px;
    }

    .parcel-illustration {
        right: 20px;
        bottom: 20px;
        left: 20px;
    }

    .parcel-box {
        right: 0;
        width: 140px;
        height: 118px;
    }

    .speed-line {
        right: 128px;
    }

    .tracking-copy h2 {
        font-size: 24px;
    }

    .section-heading h2,
    .center-heading h2,
    .why-content h2,
    .cta-copy h2 {
        font-size: 33px;
        letter-spacing: -1px;
    }

    .service-card {
        padding: 25px;
    }

    .floating-tag {
        padding: 9px 11px;
        font-size: 10px;
    }

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

    .footer-column:last-child {
        grid-column: auto;
    }

    .footer-bottom-inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 18px 0;
    }
}
