:root {
    --navy: #0b2b4a;
    --navy-2: #123a63;
    --gold: #e8a317;
    --ink: #1c2430;
    --muted: #5c6b7a;
    --line: #e4ebf2;
    --paper: #f6f8fb;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Outfit, "Segoe UI", sans-serif;
    color: var(--ink);
    background: #fff;
}
a { color: var(--navy-2); }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-head {
    background: #fff;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 30;
}
.bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--navy); }
.brand img { height: 40px; width: auto; max-width: 52px; }
.brand .mark {
    width: 40px; height: 40px; border-radius: 8px;
    background: var(--gold); color: var(--navy);
    display: grid; place-items: center;
    font-weight: 800; font-size: 13px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-size: 15px; }
.brand-text small { color: var(--muted); font-size: 12px; font-weight: 500; }
.nav { display: flex; gap: 22px; }
.nav a { text-decoration: none; color: var(--navy); font-weight: 500; font-size: 14px; }
.nav a:hover { color: var(--gold); }

.hero {
    background: var(--navy);
    color: #fff;
    padding: 56px 0 64px;
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
    gap: 48px;
    align-items: center;
}
.kicker {
    margin: 0 0 10px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.hero h1 {
    margin: 0 0 12px;
    font-size: clamp(32px, 4.5vw, 48px);
    line-height: 1.1;
    font-weight: 800;
    max-width: none;
}
.lede { margin: 0 0 22px; color: #c5d4e4; font-size: 17px; max-width: 36ch; line-height: 1.45; }
.track {
    display: flex;
    gap: 8px;
    background: #fff;
    padding: 8px;
    border-radius: 10px;
    max-width: 520px;
}
.track input {
    flex: 1;
    border: 0;
    min-width: 0;
    padding: 12px 14px;
    font: 16px Outfit, sans-serif;
    outline: none;
    color: var(--ink);
}
.track button {
    border: 0;
    background: var(--gold);
    color: #1a1304;
    font: 700 15px Outfit, sans-serif;
    padding: 12px 22px;
    border-radius: 8px;
    cursor: pointer;
}
.note { margin: 12px 0 0; color: #9fb3c8; font-size: 13px; }

.scene {
    position: relative;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(#7ec4e3 0%, #d7eef8 58%, #c5d9a4 70%, #9bb56f 100%);
    box-shadow: 0 18px 40px rgba(0,0,0,.28);
}
.scene-sky { position: absolute; inset: 0 0 78px 0; }
.sun {
    position: absolute; right: 18%; top: 18px;
    width: 46px; height: 46px; border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff6c4, #ffcf4a);
}
.cloud {
    position: absolute; background: #fff; border-radius: 20px; height: 18px;
    animation: drift 22s linear infinite;
}
.cloud:before, .cloud:after { content: ""; position: absolute; background: #fff; border-radius: 50%; }
.c1 { width: 70px; top: 36px; left: -80px; }
.c1:before { width: 26px; height: 26px; top: -12px; left: 10px; }
.c1:after { width: 20px; height: 20px; top: -8px; left: 32px; }
.c2 { width: 54px; top: 70px; left: -90px; animation-duration: 18s; animation-delay: -8s; height: 14px; }
.c2:before { width: 20px; height: 20px; top: -10px; left: 8px; }
.c2:after { width: 16px; height: 16px; top: -6px; left: 24px; }
@keyframes drift { to { transform: translateX(520px); } }
.plane {
    position: absolute; top: 40px; left: 0; border: 0; background: none; cursor: pointer;
    animation: fly 12s linear infinite;
    filter: drop-shadow(0 4px 3px rgba(0,0,0,.2));
}
@keyframes fly {
    0% { transform: translateX(-90px) translateY(6px); }
    100% { transform: translateX(420px) translateY(-4px); }
}
.scene-ground { position: absolute; left: 0; right: 0; bottom: 52px; height: 36px; background: #6f9a4e; }
.scene-road {
    position: absolute; left: 0; right: 0; bottom: 0; height: 58px;
    background: #3a3f46;
}
.lane {
    position: absolute; left: 0; right: 0; top: 50%; height: 4px; margin-top: -2px;
    background: repeating-linear-gradient(90deg, #f2ead0 0 28px, transparent 28px 48px);
    animation: lane 0.9s linear infinite;
}
@keyframes lane { to { background-position: -48px 0; } }
.truck {
    position: absolute; bottom: 4px; left: 0; border: 0; background: none; cursor: pointer;
    animation: truck 9s linear infinite;
    filter: drop-shadow(0 4px 3px rgba(0,0,0,.35));
}
@keyframes truck {
    0% { left: -210px; }
    100% { left: 110%; }
}

.block { padding: 64px 0; }
.block.tint { background: var(--paper); }
.block h2 { margin: 0 0 8px; font-size: 28px; color: var(--navy); }
.intro { margin: 0 0 28px; color: var(--muted); max-width: 52ch; }
.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.cards article {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 20px;
    border-top: 3px solid var(--gold);
}
.cards article:hover { box-shadow: 0 8px 20px rgba(11,43,74,.08); }
.ico { width: 32px; height: 32px; color: var(--navy); margin-bottom: 10px; }
.cards h3 { margin: 0 0 8px; font-size: 16px; color: var(--navy); }
.cards p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }

.split { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: start; }
.split p { color: var(--muted); line-height: 1.55; }
.facts { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.facts li {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px 14px;
    color: var(--muted);
}
.facts strong { display: block; color: var(--navy); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }

.contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}
.contact > div {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 18px;
}
.contact h3 { margin: 0 0 6px; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.contact p { margin: 0; color: var(--navy); font-weight: 600; }

.result { background: var(--paper); padding: 28px 0 0; }
.result-card, .banner {
    background: #fff;
    border-radius: 12px;
    padding: 20px 22px;
    border: 1px solid var(--line);
}
.banner.warn { color: #7a4e00; background: #fff6e5; }
.result-top { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; margin-bottom: 8px; }
.awb { font-size: 26px; font-weight: 800; color: var(--navy); letter-spacing: .04em; }
.muted { color: var(--muted); }
.steps { list-style: none; margin: 12px 0 0; padding: 0; }
.steps li {
    display: flex; justify-content: space-between; gap: 12px;
    padding: 8px 0; border-top: 1px solid var(--line); font-size: 14px;
}
.badge { display: inline-block; padding: .28em .55em; border-radius: 6px; font-size: 12px; font-weight: 650; }
.text-bg-secondary { background: #6c757d; color: #fff; }
.text-bg-info { background: #0dcaf0; color: #042a32; }
.text-bg-primary { background: var(--navy); color: #fff; }
.text-bg-success { background: #198754; color: #fff; }
.text-bg-warning { background: #ffc107; color: #1a1304; }
.text-bg-danger { background: #dc3545; color: #fff; }
.text-bg-dark { background: #1c2430; color: #fff; }

.site-foot { background: var(--navy); color: #9fb3c8; padding: 18px 0; font-size: 13px; }
.site-foot a { color: #d7e4f2; text-decoration: none; }

@media (max-width: 900px) {
    .hero-grid, .split, .cards { grid-template-columns: 1fr 1fr; }
    .hero { padding: 36px 0 44px; }
    .scene { height: 240px; }
}
@media (max-width: 700px) {
    .bar { flex-wrap: wrap; }
    .nav { width: 100%; gap: 14px; padding-bottom: 8px; }
    .hero-grid, .split, .cards { grid-template-columns: 1fr; }
    .track { flex-direction: column; }
    .scene { height: 200px; }
}
@media (prefers-reduced-motion: reduce) {
    .cloud, .plane, .lane, .truck { animation: none !important; }
    .plane { left: 55%; }
    .truck { left: 28%; }
}
