:root {
    --brand: #b84e00;
    --brand-dark: #8f3b00;
    --brand-deep: #12283f;
    --brand-soft: #fff0df;
    --brand-pale: #fff8ef;
    --accent: #f2a900;
    --accent-soft: #fff4cb;
    --ink: #17212b;
    --muted: #67727e;
    --muted-light: #929da7;
    --canvas: #f5f7f9;
    --surface: #ffffff;
    --line: #dfe4e8;
    --line-soft: #edf0f2;
    --amber: #b17a2d;
    --amber-soft: #f8efdf;
    --shadow: 0 18px 50px rgba(34, 54, 46, 0.08);
    --shadow-soft: 0 5px 22px rgba(34, 54, 46, 0.06);
    --container: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--canvas);
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 3px solid rgba(184, 78, 0, 0.24);
    outline-offset: 3px;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.header-inner {
    display: flex;
    min-height: 76px;
    align-items: center;
    gap: 30px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    color: #fff;
    background: var(--brand);
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(184, 78, 0, 0.22);
}

.brand-copy strong,
.brand-copy small {
    display: block;
}

.brand-copy strong {
    font-size: 15px;
    letter-spacing: -0.02em;
}

.brand-copy small {
    margin-top: 3px;
    color: #91a099;
    font-size: 9px;
    font-weight: 600;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}

.main-nav a {
    position: relative;
    padding: 29px 0 27px;
    color: #68766f;
    text-decoration: none;
    font-size: 12px;
    font-weight: 650;
}

.main-nav a::after {
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    height: 2px;
    background: var(--brand);
    border-radius: 2px;
    content: '';
    opacity: 0;
    transform: scaleX(0.4);
    transition: 160ms ease;
}

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

.main-nav a:hover::after,
.main-nav a.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.admin-link,
.primary-link {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 16px;
    color: #fff;
    background: var(--brand);
    border-radius: 11px;
    box-shadow: 0 10px 24px rgba(184, 78, 0, 0.18);
    text-decoration: none;
    font-size: 11px;
    font-weight: 750;
    transition: 160ms ease;
}

.admin-link:hover,
.primary-link:hover {
    background: var(--brand-dark);
    transform: translateY(-1px);
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    margin-left: auto;
    color: var(--brand-dark);
    background: var(--brand-soft);
    border: 0;
    border-radius: 11px;
    cursor: pointer;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 82px 0 72px;
    background:
        radial-gradient(circle at 82% 20%, rgba(242, 169, 0, 0.14), transparent 34%),
        linear-gradient(180deg, #f8f9f7 0%, var(--canvas) 100%);
}

.hero::before {
    position: absolute;
    top: -150px;
    left: -120px;
    width: 360px;
    height: 360px;
    background: rgba(184, 78, 0, 0.035);
    border-radius: 50%;
    content: '';
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.88fr);
    align-items: center;
    gap: 76px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.hero-copy h1 {
    max-width: 650px;
    margin: 21px 0 22px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.04;
    letter-spacing: -0.055em;
}

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

.hero-copy > p {
    max-width: 610px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.tracking-form {
    max-width: 660px;
    margin-top: 30px;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.tracking-form > label {
    display: block;
    margin: 0 0 9px 3px;
    color: #56655f;
    font-size: 10px;
    font-weight: 750;
}

.tracking-control {
    display: flex;
    min-height: 54px;
    align-items: center;
    gap: 10px;
    padding-left: 16px;
    background: #f6f8f7;
    border: 1px solid #e0e6e3;
    border-radius: 12px;
}

.tracking-control > span {
    color: var(--brand);
}

.tracking-control input {
    min-width: 0;
    height: 50px;
    flex: 1;
    color: var(--ink);
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 13px;
    font-weight: 600;
}

.tracking-control input::placeholder {
    color: #a2ada8;
    font-weight: 500;
}

.tracking-control button {
    display: inline-flex;
    height: 46px;
    align-items: center;
    gap: 10px;
    margin-right: 4px;
    padding: 0 20px;
    color: #fff;
    background: var(--brand);
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 750;
}

.tracking-control button:hover {
    background: var(--brand-dark);
}

.tracking-form > small {
    display: block;
    margin: 10px 2px 0;
    color: #99a49f;
    font-size: 9px;
}

.tracking-form > small i {
    margin-right: 5px;
    color: var(--brand);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 22px;
    color: #6f7e77;
    font-size: 10px;
    font-weight: 650;
}

.hero-trust i {
    margin-right: 5px;
    color: var(--brand);
}

.hero-visual {
    position: relative;
    min-height: 520px;
}

.visual-glow {
    position: absolute;
    inset: 6% 3% 4% 6%;
    background: linear-gradient(145deg, var(--brand), var(--brand-deep));
    border-radius: 46% 54% 45% 55% / 58% 44% 56% 42%;
    opacity: 0.11;
    transform: rotate(-6deg);
}

.shipment-card {
    position: absolute;
    top: 36px;
    right: 22px;
    left: 22px;
    z-index: 2;
    padding: 22px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 30px 70px rgba(30, 58, 48, 0.16);
}

.shipment-card header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line-soft);
}

.shipment-icon,
.truck-circle {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    color: var(--brand);
    background: var(--brand-soft);
    border-radius: 12px;
}

.shipment-card header small,
.shipment-card header strong,
.shipment-route small,
.shipment-route strong,
.status-copy small,
.status-copy strong {
    display: block;
}

.shipment-card header small,
.shipment-route small,
.status-copy small {
    margin-bottom: 4px;
    color: var(--muted-light);
    font-size: 8px;
}

.shipment-card header strong {
    color: var(--brand-dark);
    font-size: 12px;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    padding: 7px 9px;
    color: var(--brand-dark);
    background: var(--brand-soft);
    border-radius: 999px;
    font-size: 8px;
    font-weight: 750;
}

.live-badge i {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(242, 169, 0, 0.16);
}

.shipment-route {
    display: grid;
    grid-template-columns: 1fr minmax(80px, 1.2fr) 1fr;
    align-items: center;
    gap: 14px;
    padding: 22px 5px;
}

.shipment-route span:last-child {
    text-align: right;
}

.shipment-route strong {
    font-size: 13px;
}

.route-line {
    position: relative;
    display: block;
    height: 2px;
    background: #cfddd7;
}

.route-line::before,
.route-line::after,
.route-line b {
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    background: var(--brand);
    border: 2px solid var(--surface);
    border-radius: 50%;
    content: '';
    transform: translateY(-50%);
    box-shadow: 0 0 0 2px #cfddd7;
}

.route-line::before { left: 0; }
.route-line::after { right: 0; }
.route-line b { left: 54%; width: 10px; height: 10px; background: #fff; border: 3px solid var(--brand); box-shadow: none; }

.shipment-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 14px;
    background: var(--brand-pale);
    border-radius: 14px;
}

.status-copy {
    display: flex;
    align-items: center;
    gap: 11px;
}

.truck-circle {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    color: #fff;
    background: var(--brand);
    border-radius: 50%;
}

.status-copy strong {
    font-size: 11px;
}

.status-time {
    color: var(--brand);
    font-size: 12px;
}

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

.progress-list li {
    position: relative;
    display: flex;
    min-height: 52px;
    align-items: flex-start;
    gap: 12px;
    color: #abb4b0;
}

.progress-list li:not(:last-child)::after {
    position: absolute;
    top: 23px;
    bottom: -1px;
    left: 11px;
    width: 1px;
    background: #dde4e0;
    content: '';
}

.progress-list li > i {
    display: grid;
    z-index: 1;
    width: 23px;
    height: 23px;
    flex: 0 0 23px;
    place-items: center;
    background: #edf0ee;
    border-radius: 50%;
    font-size: 8px;
}

.progress-list li span strong,
.progress-list li span small {
    display: block;
}

.progress-list li span strong {
    margin-bottom: 4px;
    font-size: 10px;
}

.progress-list li span small {
    font-size: 8px;
}

.progress-list li.is-complete,
.progress-list li.is-current {
    color: var(--ink);
}

.progress-list li.is-complete > i,
.progress-list li.is-current > i {
    color: #fff;
    background: var(--brand);
}

.progress-list li.is-complete:not(:last-child)::after {
    background: var(--brand);
}

.progress-list li.is-current > i {
    box-shadow: 0 0 0 5px var(--brand-soft);
}

.floating-note {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--line);
    border-radius: 13px;
    box-shadow: var(--shadow-soft);
}

.floating-note > i {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    color: var(--brand);
    background: var(--brand-soft);
    border-radius: 9px;
}

.floating-note strong,
.floating-note small {
    display: block;
}

.floating-note strong {
    font-size: 9px;
}

.floating-note small {
    margin-top: 3px;
    color: var(--muted-light);
    font-size: 7px;
}

.note-top { top: 5px; right: -22px; }
.note-bottom { right: -4px; bottom: 17px; }

.stats-section {
    background: var(--surface);
    border-block: 1px solid var(--line);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stats-row article {
    display: flex;
    min-height: 126px;
    align-items: center;
    gap: 14px;
    padding: 24px;
    border-right: 1px solid var(--line-soft);
}

.stats-row article:last-child {
    border-right: 0;
}

.stats-row article > span {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    color: var(--brand);
    background: var(--brand-soft);
    border-radius: 12px;
}

.stats-row strong,
.stats-row small {
    display: block;
}

.stats-row strong {
    margin-bottom: 5px;
    font-size: 20px;
    letter-spacing: -0.04em;
}

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

.section {
    padding: 96px 0;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 34px;
}

.section-heading h2,
.process-copy h2,
.cta-card h2 {
    margin: 10px 0 0;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.14;
    letter-spacing: -0.045em;
}

.section-heading > p {
    max-width: 440px;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}

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

.service-card {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    padding: 28px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
}

.service-card.featured {
    color: #fff;
    background: var(--brand);
    border-color: var(--brand);
}

.service-number {
    position: absolute;
    top: 16px;
    right: 20px;
    color: #edf1ef;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.07em;
}

.featured .service-number {
    color: rgba(255, 255, 255, 0.1);
}

.service-icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    color: var(--brand);
    background: var(--brand-soft);
    border-radius: 14px;
    font-size: 18px;
}

.featured .service-icon {
    color: #fff;
    background: rgba(255, 255, 255, 0.13);
}

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

.service-card p {
    min-height: 70px;
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.7;
}

.featured p {
    color: rgba(255, 255, 255, 0.72);
}

.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
    color: var(--brand);
    text-decoration: none;
    font-size: 10px;
    font-weight: 750;
}

.featured a {
    color: #fff;
}

.process-section {
    background: var(--surface);
    border-block: 1px solid var(--line);
}

.process-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    align-items: center;
    gap: 90px;
}

.process-copy > p {
    max-width: 440px;
    margin: 18px 0 26px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.75;
}

.process-steps {
    position: relative;
    display: grid;
    gap: 14px;
}

.process-steps::before {
    position: absolute;
    top: 52px;
    bottom: 52px;
    left: 27px;
    width: 1px;
    background: #cadad4;
    content: '';
}

.process-steps article {
    position: relative;
    display: flex;
    min-height: 104px;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--canvas);
    border: 1px solid var(--line);
    border-radius: 15px;
}

.process-steps article > span {
    display: grid;
    z-index: 1;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    place-items: center;
    color: #fff;
    background: var(--brand);
    border: 7px solid var(--brand-soft);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
}

.process-steps h3 {
    margin: 0 0 7px;
    font-size: 14px;
}

.process-steps p {
    margin: 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.6;
}

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

.cta-card {
    display: flex;
    min-height: 250px;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 48px;
    color: #fff;
    background:
        radial-gradient(circle at 90% 0%, rgba(255, 255, 255, 0.12), transparent 35%),
        var(--brand-deep);
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(18, 40, 63, 0.2);
}

.cta-card .eyebrow {
    color: #ffd675;
}

.cta-card p {
    max-width: 620px;
    margin: 15px 0 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 11px;
    line-height: 1.7;
}

.cta-card > a {
    display: inline-flex;
    min-height: 48px;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    color: var(--brand-deep);
    background: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 750;
}

.site-footer {
    padding: 52px 0 20px;
    background: #fff;
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 50px;
    padding-bottom: 36px;
}

.footer-grid > p {
    max-width: 420px;
    margin: 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.6;
}

.footer-grid nav {
    display: flex;
    gap: 22px;
}

.footer-grid nav a {
    color: #68766f;
    text-decoration: none;
    font-size: 10px;
    font-weight: 650;
}

.footer-grid nav a:hover {
    color: var(--brand);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    color: #a0aaa5;
    border-top: 1px solid var(--line-soft);
    font-size: 8px;
}

.swal2-popup {
    border-radius: 18px !important;
    font-family: 'Inter', sans-serif !important;
}

.tracking-result {
    display: grid;
    gap: 9px;
    margin-top: 8px;
    text-align: left;
}

.tracking-result p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 0;
    padding: 12px;
    background: var(--brand-pale);
    border-radius: 10px;
}

.tracking-result span {
    color: var(--muted);
    font-size: 10px;
}

.tracking-result strong {
    color: var(--brand-dark);
    font-size: 11px;
}

@media (max-width: 1040px) {
    .main-nav {
        gap: 18px;
    }

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

    .note-top { right: 0; }

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

    .service-card:last-child {
        grid-column: span 2;
        min-height: 260px;
    }

    .process-grid {
        gap: 48px;
    }
}

@media (max-width: 860px) {
    .header-inner {
        min-height: 68px;
    }

    .mobile-menu-button {
        display: inline-grid;
        place-items: center;
    }

    .admin-link {
        width: 42px;
        padding: 0;
        font-size: 0;
    }

    .admin-link i {
        font-size: 12px;
    }

    .main-nav {
        position: fixed;
        top: 68px;
        right: 0;
        left: 0;
        display: grid;
        visibility: hidden;
        gap: 0;
        padding: 12px 20px 20px;
        background: #fff;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
        opacity: 0;
        transform: translateY(-12px);
        transition: 180ms ease;
    }

    .main-nav.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .main-nav a {
        padding: 13px 10px;
        border-bottom: 1px solid var(--line-soft);
    }

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

    .hero {
        padding-top: 62px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .hero-copy > p,
    .tracking-form {
        margin-inline: auto;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        width: min(100%, 570px);
        margin-inline: auto;
    }

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

    .stats-row article:nth-child(2) {
        border-right: 0;
    }

    .stats-row article:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line-soft);
    }

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

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

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

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

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

    .brand-copy small {
        display: none;
    }

    .hero {
        padding: 48px 0 52px;
    }

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

    .hero-copy > p {
        font-size: 12px;
    }

    .tracking-form {
        padding: 12px;
    }

    .tracking-control {
        display: grid;
        grid-template-columns: auto 1fr;
        padding: 5px 5px 5px 14px;
    }

    .tracking-control button {
        width: 100%;
        grid-column: span 2;
        justify-content: center;
        margin: 0;
    }

    .hero-trust {
        align-items: center;
        flex-direction: column;
        gap: 9px;
    }

    .hero-visual {
        min-height: 500px;
    }

    .shipment-card {
        right: 0;
        left: 0;
        padding: 17px;
    }

    .note-top {
        top: 8px;
        right: -5px;
    }

    .note-bottom {
        right: -5px;
        bottom: 5px;
    }

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

    .stats-row article {
        min-height: 100px;
        border-right: 0;
        border-bottom: 1px solid var(--line-soft);
    }

    .section {
        padding: 70px 0;
    }

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

    .service-card:last-child {
        grid-column: auto;
    }

    .cta-card {
        padding: 30px 24px;
    }

    .cta-card > a {
        width: 100%;
        justify-content: center;
    }

    .footer-grid nav {
        align-items: flex-start;
        flex-direction: column;
        gap: 13px;
    }

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

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
