/* The company site's palette and type, on a page built to be read on a phone. */
:root {
  --navy: #374B6C; --ocean: #376292; --slate: #1e293b; --bg: #f4f6f9; --white: #fff;
  --text: #334155; --muted: #64748b; --line: #e2e8f0; --good: #16a34a; --bad: #b91c1c;
  --radius: 14px; --shadow: 0 4px 15px rgba(0, 0, 0, .08);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text);
  font-family: 'Assistant', 'Segoe UI', Tahoma, Arial, sans-serif; font-size: 16px; line-height: 1.5; }
a { color: var(--ocean); text-decoration: none; }
.wrap { max-width: 980px; margin: 0 auto; padding: 0 16px; }
.top { background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 2px 10px rgba(0,0,0,.05); }
.top .wrap { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 68px; flex-wrap: wrap; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--navy); font-weight: 800; font-size: 18px; }
.brand img { height: 44px; width: auto; }
nav { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; font-weight: 700; font-size: 15px; }
nav a { color: var(--navy); }
nav a.lang { border: 1px solid var(--line); border-radius: 8px; padding: 4px 10px; font-size: 13px; }
main { padding: 20px 0 40px; }
.hero { padding: 26px 0 8px; }
.hero h1 { margin: 0 0 6px; font-size: 30px; color: var(--navy); font-weight: 800; }
.hero p { margin: 0; color: var(--muted); }
.hero.small { padding: 10px 0 4px; }
.hero.small h1 { font-size: 24px; }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
@media (max-width: 720px) { .two { grid-template-columns: 1fr; } }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 22px; margin: 14px 0; display: block; color: var(--text); }
.card.narrow { max-width: 520px; margin-inline: auto; }
.card h2 { margin: 0 0 6px; font-size: 20px; color: var(--navy); font-weight: 800; }
.card h3 { margin: 18px 0 8px; font-size: 17px; color: var(--navy); font-weight: 800; }
.muted { color: var(--muted); font-size: 14px; }
label { display: block; margin: 12px 0 6px; font-weight: 700; font-size: 14px; color: var(--navy); }
input[type=text], input[type=email], input[type=file] { width: 100%; padding: 11px 14px; font-size: 16px; border-radius: 8px;
  border: 1.5px solid #cbd5e1; background: #f8fafc; font-family: inherit; margin-top: 4px; }
input.code { font-size: 26px; letter-spacing: 8px; text-align: center; }
button, .button { display: inline-block; margin-top: 14px; padding: 11px 20px; font-size: 15px; font-weight: 700; border-radius: 8px;
  border: none; cursor: pointer; background: var(--ocean); color: var(--white); font-family: inherit;
  box-shadow: 0 4px 10px rgba(55, 98, 146, .3); }
button.secondary, .button.secondary { background: var(--white); color: var(--navy); border: 1.5px solid var(--navy); box-shadow: none; }
button.link { background: none; border: none; box-shadow: none; color: var(--ocean); padding: 0; margin-top: 10px; font-weight: 600; }
form.inline { display: inline; }
.notice { padding: 12px 14px; border-radius: 10px; background: #eff6ff; border: 1px solid #bfdbfe; color: #1e3a8a; margin: 12px 0; }
.notice.good { background: #f0fdf4; border-color: #bbf7d0; color: #166534; }
.notice.bad { background: #fef2f2; border-color: #fecaca; color: #991b1b; }
.head { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.badge { display: inline-block; padding: 4px 12px; border-radius: 999px; background: #e8f0fa; color: var(--ocean); font-weight: 700; font-size: 13px; white-space: nowrap; }
.badge.good { background: #f0fdf4; color: var(--good); }
.badge.bad { background: #fef2f2; color: var(--bad); }
.num { font-variant-numeric: tabular-nums; }
.section-title { font-size: 18px; color: var(--navy); margin: 18px 0 6px; font-weight: 800; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; }
.grid .card { margin: 0; }
.card.shipment:hover { border-color: var(--ocean); }
.card.shipment.done { opacity: .85; }
.facts { display: grid; grid-template-columns: max-content 1fr; gap: 6px 16px; margin: 8px 0 0; }
.facts dt { color: var(--muted); font-size: 14px; }
.facts dd { margin: 0; font-weight: 600; }
.timeline { list-style: none; padding: 0; margin: 14px 0 6px; }
.timeline li { display: flex; align-items: flex-start; gap: 12px; position: relative; padding-bottom: 20px; }
.timeline li::before { content: ""; position: absolute; top: 24px; bottom: -4px; inset-inline-start: 11px; width: 3px; background: var(--line); }
.timeline li:last-child::before { display: none; }
.timeline li.done::before { background: #22c55e; }
.timeline .dot { width: 24px; height: 24px; border-radius: 50%; background: #cbd5e1; color: #fff; font-size: 12px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center; flex: none; position: relative; z-index: 1; }
.timeline li.done .dot { background: #22c55e; }
.timeline li.current .dot { background: var(--ocean); box-shadow: 0 0 0 4px #c7d9ee; }
.timeline .label { font-weight: 600; color: var(--muted); }
.timeline li.done .label { color: var(--text); }
.timeline li.current .label { color: var(--ocean); font-weight: 800; }
.timeline .when { color: var(--muted); font-size: 13px; margin-inline-start: auto; white-space: nowrap; }
table.list { width: 100%; border-collapse: collapse; font-size: 15px; }
table.list th { text-align: start; color: var(--muted); font-weight: 700; font-size: 13px; border-bottom: 1px solid var(--line); padding: 6px 4px; }
table.list td { padding: 9px 4px; border-bottom: 1px solid #f1f5f9; vertical-align: top; }
.crumb { font-weight: 700; color: var(--navy); }
.foot { display: flex; justify-content: space-between; gap: 10px; padding: 18px 16px 30px; color: var(--muted); font-size: 13px; flex-wrap: wrap; }
