@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #0b1b34;
    --secondary: #0f6e73;
    --accent: #f4b400;
    --title-font: "Manrope", Inter, system-ui, sans-serif;
    --route-marker-disc-size: 42px;
    --route-icon-size: 18px;
    --surface: #ffffff;
    --muted: #64748b;
    --border: rgba(15, 23, 42, 0.12);
    --shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

* { box-sizing: border-box; }
html, body {
    margin: 0;
    padding: 0;
    font-family: Inter, system-ui, sans-serif;
    color: var(--primary);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.96) 0 92px, rgba(246,248,252,0.98) 92px calc(100% - 120px), rgba(255,255,255,0.96) calc(100% - 120px) 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.public-shell h1,
.public-shell h2,
.public-shell h3,
.public-shell h4,
.public-shell h5,
.public-shell h6 {
    margin-top: 0;
    font-family: var(--title-font);
    color: var(--primary);
    font-weight: 800;
    letter-spacing: -0.04em;
}
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 10020;
    backdrop-filter: blur(16px);
    background: rgba(255,255,255,0.88);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.site-header input[type="checkbox"] {
    display: none !important;
}
.site-header-shell {
    position: relative;
}
.site-header-shell::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
}
.site-footer {
    margin-top: 44px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 18%),
        radial-gradient(circle at top right, rgba(245, 180, 0, 0.08), transparent 16%),
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,249,252,0.98));
    position: relative;
    overflow: visible;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), rgba(124, 58, 237, 0.28) 40%, var(--accent));
}
.header-bar, .footer-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.95fr) auto;
    align-items: center;
    gap: 24px;
    padding: 20px 0;
}
.footer-shell {
    position: relative;
    z-index: 1;
    padding: 34px 0 24px;
    align-items: start;
}
.brand {
    display:flex;
    align-items:center;
    gap: 12px;
    font-weight: 700;
}
.brand-media {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(15, 23, 42, 0.08);
    overflow: hidden;
    flex: 0 0 auto;
}
.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.brand-mark { width: 42px; height: 42px; border-radius: 14px; display:grid; place-items:center; background: linear-gradient(135deg, var(--secondary), var(--accent)); color: white; }
.brand-copy { display:grid; gap: 2px; }
.brand-subtitle { font-size: 0.82rem; color: var(--muted); font-weight: 600; }
.header-nav { display:flex; align-items:center; gap: 10px; flex-wrap: wrap; }
.lang-switcher { position: relative; display: flex; align-items: center; justify-content: flex-end; }
.header-nav a, .footer-lang-list a {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height: 40px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid transparent;
    color: var(--primary);
    background: rgba(255,255,255,0.62);
    transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.header-nav a:hover, .footer-lang-list a:hover {
    transform: translateY(-1px);
    border-color: rgba(15, 23, 42, 0.10);
    background: rgba(255,255,255,0.92);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}
.header-nav a.active, .footer-lang-list a.active {
    font-weight: 700;
}
.header-nav-admin {
    background: linear-gradient(135deg, var(--secondary), var(--primary)) !important;
    color: white !important;
    box-shadow: var(--shadow);
}
.lang-dropdown {
    position: relative;
}
.lang-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-width: 150px;
    min-height: 40px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: rgba(255,255,255,0.82);
    color: var(--primary);
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    appearance: none;
    outline: 0;
}
.lang-dropdown-trigger::after {
    content: '';
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform .18s ease;
}
.lang-dropdown-trigger:hover,
.lang-dropdown-trigger:focus-visible {
    border-color: rgba(15, 23, 42, 0.16);
    background: rgba(255,255,255,0.96);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}
.desktop-lang-open .lang-dropdown-trigger::after {
    transform: rotate(-135deg) translateY(-1px);
}
.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 190px;
    display: grid;
    gap: 8px;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: rgba(255,255,255,0.98);
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.16);
    z-index: 10040;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.desktop-lang-open .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
.lang-dropdown-menu a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: rgba(248,250,252,0.92);
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.lang-dropdown-menu a:hover {
    transform: translateY(-1px);
    border-color: rgba(15, 23, 42, 0.10);
    background: rgba(255,255,255,1);
}
.lang-dropdown-menu a.active {
    font-weight: 700;
    background: linear-gradient(135deg, rgba(15, 110, 115, 0.10), rgba(245, 180, 0, 0.10));
    border-color: rgba(15, 110, 115, 0.16);
}

.header-mobile-toggle {
    display: none;
    justify-self: end;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.88);
    padding: 0;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.header-mobile-actions {
    display: none;
    align-items: center;
    gap: 8px;
    justify-self: end;
}

.header-mobile-lang-button {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.88);
    cursor: pointer;
    color: #0f172a;
}

.header-mobile-icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
}

.header-mobile-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.header-mobile-lines {
    display: grid;
    gap: 4px;
}

.header-mobile-lines span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #0f172a;
}

.header-mobile-panel {
    display: none;
    padding: 0 0 16px;
}

.header-mobile-drawer {
    display: none;
}

.header-mobile-nav {
    display: grid;
    gap: 10px;
    padding: 12px 0 14px;
}

.header-mobile-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 0;
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.header-mobile-lang {
    display: grid;
    gap: 10px;
    padding: 8px 0 4px;
}

.header-mobile-lang-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.9);
    color: #0f172a;
    font-weight: 700;
    cursor: pointer;
}

.header-mobile-lang-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.header-mobile-lang-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #fff;
    color: #0f172a;
    font-weight: 700;
}

.header-mobile-lang-list a.active {
    text-decoration: underline;
}

.header-mobile-lang-popover {
    display: block;
    position: fixed;
    top: 70px;
    right: 12px;
    width: min(72vw, 220px);
    z-index: 10030;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease;
}

.mobile-lang-open .header-mobile-lang-popover {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
}

.mobile-drawer-open .header-mobile-drawer {
    transform: translateY(0);
    opacity: 1;
}

.header-mobile-lang-popover-inner {
    padding: 10px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.18);
}

.header-mobile-lang-popover .header-mobile-lang-list {
    justify-content: flex-start;
}

.header-mobile-lang-popover .header-mobile-lang-list a {
    min-width: 48px;
    min-height: 40px;
    padding: 8px 12px;
}
.hero { padding: 68px 0 24px; }
.hero-grid { display:grid; grid-template-columns: 1.2fr 0.8fr; gap: 28px; align-items: center; }
.eyebrow { display:inline-flex; padding: 8px 12px; border-radius: 999px; background: rgba(37,99,235,0.1); color: var(--secondary); font-size: 0.85rem; font-weight: 600; }
.hero-copy h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); line-height: 0.98; margin: 18px 0; }
.hero-copy p { max-width: 56ch; color: var(--muted); font-size: 1.05rem; }
.tracking-form { margin-top: 24px; }
.tracking-form label { display:block; margin-bottom: 10px; font-weight: 600; }
.tracking-input-row { display:flex; gap: 12px; flex-wrap: wrap; }
.tracking-input-row input, .form-grid input, .form-grid select, .form-grid textarea, .auth-card input { width: 100%; padding: 14px 16px; border: 1px solid var(--border); border-radius: 16px; background: rgba(255,255,255,0.92); }
.tracking-input-row input { flex: 1 1 280px; }
.button-primary { display:inline-flex; align-items:center; justify-content:center; border: 0; border-radius: 16px; padding: 14px 18px; background: linear-gradient(135deg, var(--secondary), var(--primary)); color: white; font-weight: 700; cursor: pointer; box-shadow: var(--shadow); }
.hero-panel { display:grid; place-items:center; }
.hero-card { width: 100%; min-height: 300px; border-radius: 32px; padding: 28px; background: radial-gradient(circle at top left, rgba(37,99,235,.22), transparent 35%), linear-gradient(180deg, #0f172a, #1e293b); color: white; box-shadow: var(--shadow); }
.hero-card-label { text-transform: uppercase; letter-spacing: .12em; opacity: .78; }
.hero-card-value { font-size: clamp(4rem, 10vw, 6rem); font-weight: 800; margin: 24px 0; }
.feature-strip, .stats-section { padding: 26px 0 48px; }
.feature-grid, .stats-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card, .stat-box, .panel, .tracking-summary, .empty-state, .auth-card { background: rgba(255,255,255,0.88); border: 1px solid var(--border); border-radius: 28px; box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06); }
.feature-card { padding: 22px; }
.stats-grid { grid-template-columns: repeat(3, 1fr); }
.stat-box { padding: 24px; text-align:center; }
.stat-box strong { display:block; font-size: 2.2rem; }
.tracking-page { padding: 40px 0 64px; }
.tracking-summary {
    padding: clamp(20px, 2.6vw, 32px);
    border-radius: 34px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.96));
    position: relative;
    overflow: hidden;
}
.tracking-summary::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 6px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
}
.tracking-summary > * {
    position: relative;
    z-index: 1;
}
.tracking-header {
    display:flex;
    justify-content:space-between;
    gap: 18px;
    align-items:center;
    margin-bottom: 12px;
}
.status-badge { padding: 8px 12px; border-radius: 999px; background: rgba(15,23,42,.08); text-transform: capitalize; }
.tracking-meta-grid {
    display:grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 24px 0 20px;
}
.tracking-meta-grid div, .pause-list li, .timeline-item {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(248,250,252,.92);
    border: 1px solid rgba(15, 23, 42, 0.04);
}
.tracking-section {
    margin-top: 22px;
    padding: 18px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(248,250,252,0.98));
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.05);
    position: relative;
    overflow: hidden;
}
.tracking-section::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(37,99,235,.85), rgba(245,158,11,.7));
    opacity: .9;
}
.tracking-section::after {
    content: '';
    position: absolute;
    inset: auto -20% -45% auto;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,0.08), rgba(245,158,11,0.03) 42%, transparent 70%);
    pointer-events: none;
}
.tracking-section > * {
    position: relative;
    z-index: 1;
}
.tracking-section-head {
    display:flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}
.tracking-section-head-inline {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
}
.tracking-section-kicker {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary);
}
.tracking-section h2 {
    margin: 0;
    font-size: 1.22rem;
    line-height: 1.2;
}
.tracking-lower-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}
.tracking-section-route {
    background:
        radial-gradient(circle at top right, rgba(245,158,11,0.08), transparent 24%),
        radial-gradient(circle at top left, rgba(37,99,235,0.08), transparent 22%),
        linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.98));
}
.tracking-section-route::after {
    inset: auto -10% -30% auto;
    width: 280px;
    height: 280px;
}
.tracking-section-history {
    background:
        radial-gradient(circle at top left, rgba(37,99,235,0.08), transparent 22%),
        linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.98));
}
.tracking-section-pause {
    background:
        radial-gradient(circle at top right, rgba(239,68,68,0.10), transparent 24%),
        linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.98));
}
.tracking-section-history::after {
    background: radial-gradient(circle, rgba(37,99,235,0.06), rgba(37,99,235,0.02) 40%, transparent 72%);
}
.tracking-section-pause::after {
    background: radial-gradient(circle, rgba(239,68,68,0.07), rgba(239,68,68,0.02) 45%, transparent 75%);
}
.tracking-section-pause .pause-list,
.tracking-section-history .timeline {
    margin-top: 0;
}
.tracking-section-pause .pause-list {
    gap: 12px;
}
.tracking-section-route .route-legend {
    margin-top: 2px;
}
.tracking-status-message {
    margin: 18px 0 6px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(37, 99, 235, 0.16);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(245, 158, 11, 0.06));
}
.tracking-status-message strong {
    display: inline-flex;
    margin-bottom: 4px;
    text-transform: capitalize;
}
.tracking-status-message p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}
.tracking-status-message.tracking-status-pause,
.tracking-status-message.tracking-status-blocked,
.tracking-status-message.tracking-status-customs,
.tracking-status-message.tracking-status-cancelled {
    border-color: rgba(239, 68, 68, 0.18);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(245, 158, 11, 0.04));
}
.tracking-meta-grid span { display:block; color: var(--muted); font-size: .92rem; }
.route-visual { padding: 22px 0; }
.route-labels {
    display:flex;
    justify-content:space-between;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--muted);
}
.route-legend {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin: 16px 0 10px;
}
.route-legend-title {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
}
.route-legend-items {
    display: flex;
    align-items: center;
    gap: 10px 14px;
    flex-wrap: wrap;
    font-size: 0.84rem;
    color: var(--muted);
}
.route-legend-items span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.route-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    display: inline-block;
}
.route-legend-dot-transit { background: var(--secondary); }
.route-legend-dot-pause { background: #ef4444; }
.route-legend-dot-blocked { background: #f59e0b; }
.route-legend-dot-customs { background: #dc2626; }
.route-legend-dot-delivered { background: #10b981; }
.route-legend-dot-cancelled { background: #64748b; }
.route-stage { position: relative; height: 260px; margin: 18px 0 8px; border-radius: 28px; background:
    radial-gradient(circle at 20% 20%, rgba(37,99,235,.08), transparent 22%),
    radial-gradient(circle at 80% 35%, rgba(245,158,11,.08), transparent 20%),
    linear-gradient(180deg, rgba(15,23,42,.015), rgba(15,23,42,.03)); overflow: hidden; border: 1px solid rgba(15, 23, 42, 0.10); }
.route-stage::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at var(--marker-x, 50%) var(--marker-y, 50%), rgba(255,255,255,0.92), rgba(255,255,255,0.36) 12%, transparent 30%),
        radial-gradient(circle at var(--marker-x, 50%) var(--marker-y, 50%), rgba(37,99,235,0.16), rgba(37,99,235,0.06) 24%, transparent 36%);
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: .95;
}
.route-stage-svg { width: 100%; height: 100%; display: block; }
.route-track-line {
    fill: none;
    stroke: rgba(15, 23, 42, 0.08);
    stroke-width: 16;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.route-track-dash {
    fill: none;
    stroke: url(#routeGradient);
    stroke-width: 10;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16 18;
    opacity: .95;
}
.route-node {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: white;
    border: 4px solid var(--secondary);
    box-shadow: 0 0 0 10px rgba(37,99,235,.10);
}
.route-node-start { left: 2.5%; top: 72%; }
.route-node-end { right: 2.5%; top: 34%; border-color: var(--accent); box-shadow: 0 0 0 10px rgba(245,158,11,.10); }
.route-node-pin {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 34px;
    height: 34px;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,249,252,0.96));
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow:
        0 12px 26px rgba(15, 23, 42, 0.14),
        0 0 0 8px rgba(37, 99, 235, 0.08);
    z-index: 2;
}
.route-node-end .route-node-pin {
    box-shadow:
        0 12px 26px rgba(15, 23, 42, 0.14),
        0 0 0 8px rgba(245, 158, 11, 0.10);
}
.route-node-pin svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: var(--secondary);
}
.route-node-end .route-node-pin svg {
    fill: var(--accent);
}
.route-node-pin circle {
    fill: white;
}
.route-node-label {
    position: absolute;
    left: 50%;
    top: -34px;
    transform: translateX(-50%);
    display: inline-flex;
    white-space: nowrap;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    border: 1px solid var(--border);
    font-size: .88rem;
    font-weight: 600;
    color: var(--primary);
}
.route-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: calc(var(--route-marker-disc-size) + 18px);
    height: calc(var(--route-marker-disc-size) + 18px);
    display: grid;
    place-items: center;
    transition: transform .2s linear;
    will-change: transform;
    z-index: 5;
    filter: drop-shadow(0 10px 18px rgba(15, 23, 42, 0.14));
    --marker-angle: -12deg;
}
.route-marker-trail {
    position: absolute;
    left: -34px;
    top: 50%;
    width: 44px;
    height: 18px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    opacity: 0;
}
.route-marker-trail span {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(37,99,235,.18);
    filter: blur(.3px);
}
.route-marker-trail span:nth-child(2) { width: 8px; height: 8px; opacity: .8; }
.route-marker-trail span:nth-child(3) { width: 6px; height: 6px; opacity: .55; }
.route-marker-icon {
    width: var(--route-marker-disc-size);
    height: var(--route-marker-disc-size);
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.92));
    border: 1px solid rgba(37,99,235,.14);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.16);
    position: relative;
    transform: rotate(var(--marker-angle));
    transform-origin: 50% 50%;
    color: var(--primary);
}
.transport-icon,
.route-pause-icon-svg {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}
.transport-icon svg {
    width: var(--route-icon-size);
    height: var(--route-icon-size);
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.route-pause-icon-svg svg {
    width: 14px;
    height: 14px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.transport-icon-avion { color: var(--secondary); }
.transport-icon-camion { color: #1d4ed8; }
.transport-icon-bateau { color: #0f766e; }
.transport-icon-train { color: #7c3aed; }
.transport-icon-moto { color: #ea580c; }
.transport-icon-colis { color: #334155; }
.route-pause-icon-svg { color: white; }
.route-pause-icon-svg-blocked { color: white; }
.route-pause-icon-svg-customs { color: white; }
.route-pause-icon-svg-cancelled { color: white; }
.route-marker-icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(37,99,235,.18), transparent 66%);
    opacity: 0;
    transform: scale(.8);
    transition: opacity .25s ease, transform .25s ease;
}
.route-marker.is-moving .route-marker-icon::before {
    opacity: 1;
    transform: scale(1);
}
.route-marker.is-moving .route-marker-icon {
    animation: marker-float 1.05s ease-in-out infinite;
}
.route-marker.is-moving .route-marker-trail {
    opacity: 1;
    animation: trail-drift .7s ease-in-out infinite;
}
.route-marker.is-paused .route-marker-icon {
    border-color: rgba(239, 68, 68, 0.45);
    box-shadow: 0 18px 34px rgba(239, 68, 68, 0.18);
}
.route-marker.is-paused .route-marker-icon::before {
    background: radial-gradient(circle, rgba(239, 68, 68, 0.38), transparent 65%);
    opacity: 1;
    transform: scale(1);
}
.route-marker.is-paused .route-marker-trail {
    opacity: 0;
}
.route-marker.is-plane .route-marker-icon {
    background: linear-gradient(180deg, #ffffff, #eef4ff);
    border-color: rgba(37,99,235,.30);
}
.route-marker.is-plane .route-marker-icon::after {
    content: '';
    position: absolute;
    inset: auto -22px 14px -22px;
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(37,99,235,.26), rgba(245,158,11,.18), transparent);
    filter: blur(3px);
}
.route-marker.is-plane.is-moving .route-marker-icon {
    animation: marker-float .95s ease-in-out infinite, plane-swing 1.2s ease-in-out infinite;
}
.route-marker.is-moving .route-marker-icon::after {
    content: '';
    position: absolute;
    inset: 14px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(245,158,11,.10), transparent 70%);
    filter: blur(5px);
}
.route-stage::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 40%, rgba(37,99,235,.05), transparent 10%),
        radial-gradient(circle at 54% 60%, rgba(245,158,11,.04), transparent 12%),
        radial-gradient(circle at 82% 30%, rgba(37,99,235,.05), transparent 10%);
    pointer-events: none;
    mix-blend-mode: multiply;
}
.route-stage {
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.85),
        0 14px 30px rgba(15, 23, 42, 0.06);
}
.route-marker-icon {
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16), 0 0 0 1px rgba(255,255,255,0.72) inset;
}
.route-marker-icon::before {
    background: radial-gradient(circle, rgba(255,255,255,0.26), transparent 58%);
}
.route-marker.is-moving .route-marker-icon {
    animation: marker-float 1.15s ease-in-out infinite, marker-breathe 2.2s ease-in-out infinite;
}
.route-marker-trail span {
    background: rgba(37,99,235,.22);
}

.route-pause-point {
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #ef4444;
    border: 3px solid #fff;
    box-shadow: 0 0 0 8px rgba(239, 68, 68, 0.16), 0 10px 24px rgba(239, 68, 68, 0.24);
    display: none;
    z-index: 3;
}

.route-pause-icon {
    position: relative;
    z-index: 1;
    font-size: 0.72rem;
    color: white;
    font-weight: 800;
    line-height: 1;
}

.route-pause-icon svg {
    width: 12px;
    height: 12px;
    display: block;
    fill: currentColor;
}

.route-pause-point.is-visible {
    display: block;
}

.route-pause-point.is-blocked {
    background: #f59e0b;
    box-shadow: 0 0 0 8px rgba(245, 158, 11, 0.16), 0 10px 24px rgba(245, 158, 11, 0.24);
}

.route-pause-point.is-customs {
    background: #dc2626;
    box-shadow: 0 0 0 8px rgba(220, 38, 38, 0.16), 0 10px 24px rgba(220, 38, 38, 0.24);
}

.route-pause-point.is-cancelled {
    background: #64748b;
    box-shadow: 0 0 0 8px rgba(100, 116, 139, 0.16), 0 10px 24px rgba(100, 116, 139, 0.24);
}

.route-pause-point::after {
    content: '';
    position: absolute;
    inset: -14px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.26), transparent 68%);
    animation: pause-pulse 1.5s ease-in-out infinite;
}

.route-pause-callout {
    position: absolute;
    right: 18px;
    bottom: 18px;
    max-width: 280px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(239, 68, 68, 0.18);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.10);
    z-index: 4;
}

.route-pause-callout strong {
    display: block;
    color: #b91c1c;
    margin-bottom: 4px;
}

.route-pause-callout strong[data-route-pause-title] {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.82rem;
}

.route-pause-callout span {
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.45;
}

.route-level-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 150px;
    height: 60px;
    color: #111827;
    pointer-events: none;
    z-index: 4;
    transform-origin: center center;
    filter: drop-shadow(0 10px 18px rgba(15, 23, 42, 0.10));
}

.route-level-marker-icon {
    position: absolute;
    left: 50%;
    top: 16px;
    width: 22px;
    height: 22px;
    transform: translateX(-50%);
    transform-origin: center center;
    color: #111111;
}

.route-level-marker-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: currentColor;
}

.route-level-marker-icon circle {
    fill: white;
}

.route-level-marker-label {
    position: absolute;
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.14);
    color: #111827;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.route-level-marker-above .route-level-marker-label {
    top: -40px;
}

.route-level-marker-above .route-level-marker-icon {
    top: 18px;
}

.route-level-marker-above .route-level-marker-label,
.route-level-marker-below .route-level-marker-label {
    top: 28px;
}

.pause-active-banner {
    margin: 0 0 14px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(239, 68, 68, 0.10);
    border: 1px solid rgba(239, 68, 68, 0.18);
}

.pause-active-banner strong {
    display: block;
    color: #b91c1c;
    margin-bottom: 4px;
}

.pause-active-banner span {
    color: #7f1d1d;
}
.pause-section {
    margin-top: 6px;
}
.timeline { display:grid; gap: 14px; margin-top: 12px; position: relative; }
.timeline-day-group {
    display: grid;
    gap: 12px;
    padding-left: 6px;
}
.timeline-day-header {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 10px;
    padding: 0 2px;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.timeline-day-group {
    position: relative;
}
.timeline-day-group::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 28px;
    bottom: 10px;
    width: 1px;
    background: linear-gradient(180deg, rgba(37,99,235,.18), rgba(37,99,235,0));
}
.timeline-day-header small {
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}
.timeline-item {
    display:grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 12px;
    align-items:flex-start;
    position: relative;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 22px;
    bottom: -12px;
    width: 2px;
    background: linear-gradient(180deg, rgba(37,99,235,.18), rgba(37,99,235,0));
}
.timeline-item:last-child::before {
    display: none;
}
.timeline-dot {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    margin-top: 6px;
    background: var(--secondary);
    box-shadow: 0 0 0 6px rgba(37,99,235,.12);
    flex: 0 0 auto;
    z-index: 1;
}
.timeline-card-content {
    display: grid;
    gap: 6px;
}
.timeline-item-head {
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap: 10px;
    flex-wrap: wrap;
}
.timeline-item p {
    margin: 4px 0 0;
    color: var(--muted);
    line-height: 1.5;
}
.timeline-meta {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    font-size: 0.84rem;
    color: var(--muted);
}
.timeline-meta span + span::before {
    content: '•';
    margin-right: 8px;
    color: rgba(100, 116, 139, 0.7);
}
.timeline-badge-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid transparent;
    white-space: nowrap;
}
.timeline-badge-status-generic {
    background: rgba(15, 23, 42, 0.06);
    color: var(--primary);
    border-color: rgba(15, 23, 42, 0.08);
}
.timeline-badge-status-created,
.timeline-badge-status-preparation,
.timeline-badge-status-in_transit {
    background: rgba(37, 99, 235, 0.10);
    color: var(--secondary);
    border-color: rgba(37, 99, 235, 0.14);
}
.timeline-badge-status-pause,
.timeline-badge-status-blocked,
.timeline-badge-status-customs,
.timeline-badge-status-cancelled {
    background: rgba(239, 68, 68, 0.10);
    color: #b91c1c;
    border-color: rgba(239, 68, 68, 0.16);
}
.timeline-badge-status-delivered {
    background: rgba(16, 185, 129, 0.12);
    color: #047857;
    border-color: rgba(16, 185, 129, 0.18);
}
.tracking-section-history .timeline-item,
.tracking-section-pause .pause-list li {
    backdrop-filter: blur(8px);
}
.pause-list { list-style:none; padding:0; margin:0; display:grid; gap: 10px; }
.pause-list li span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.88rem;
}
.section-empty-state {
    margin: 0;
    color: var(--muted);
    font-style: italic;
}
.footer-brand-block { display:grid; gap: 14px; }
.brand-footer { margin-bottom: 2px; }
.footer-brand-block p {
    max-width: 42ch;
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.7;
}
.footer-links-block {
    display:grid;
    gap: 12px;
    align-content: start;
    padding: 20px 22px;
    border-radius: 24px;
    background: rgba(255,255,255,0.66);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.04);
    backdrop-filter: blur(10px);
}
.footer-links-block h4 {
    margin: 0;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #0f6e73;
}
.footer-links-block p,
.footer-brand-block p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}
.footer-lang-list {
    display:flex;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(10px);
}
.footer-bottom-inner {
    display:flex;
    justify-content:space-between;
    gap: 12px;
    padding: 16px 0 18px;
    color: #64748b;
    font-size: 0.88rem;
    flex-wrap: wrap;
}
.empty-state { padding: 34px; text-align:center; }
.admin-shell { display:grid; grid-template-columns: 280px 1fr; min-height: 100vh; background: #0b1120; color: #e5e7eb; }
.admin-sidebar { padding: 24px; background: linear-gradient(180deg, #111827, #0f172a); }
.admin-sidebar nav { display:grid; gap: 10px; margin-top: 24px; }
.admin-sidebar a { padding: 12px 14px; border-radius: 12px; background: rgba(255,255,255,0.04); }
.admin-main { background: #f8fafc; color: #0f172a; }
.admin-topbar { display:flex; justify-content:space-between; gap: 12px; padding: 20px 24px; background: white; border-bottom: 1px solid var(--border); }
.admin-content { padding: 24px; }
.admin-cards { display:grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-bottom: 22px; }
.admin-card { padding: 22px; border-radius: 22px; background: white; border: 1px solid var(--border); }
.admin-card strong { display:block; font-size: 2rem; margin-top: 10px; }
.panel { padding: 22px; }
.panel-head { display:flex; justify-content:space-between; align-items:center; gap: 12px; margin-bottom: 16px; }
.table { width:100%; border-collapse: collapse; }
.table th, .table td { padding: 12px; border-bottom: 1px solid var(--border); text-align:left; vertical-align: top; }
.actions { display:flex; gap: 8px; flex-wrap: wrap; }
.form-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.form-grid label { display:grid; gap: 8px; font-weight: 600; }
.form-grid textarea { min-height: 110px; resize: vertical; }
.settings-toggle-field {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: white;
}
.settings-toggle-field span {
    display: grid;
    gap: 4px;
}
.settings-toggle-field strong {
    font-size: 0.96rem;
}
.settings-toggle-field small {
    color: var(--muted);
    font-weight: 400;
    line-height: 1.4;
}
.settings-toggle-field input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    flex: 0 0 auto;
}
.settings-callout-inline {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.smtp-test-form {
    margin-top: 12px;
}
.auth-card { max-width: 420px; margin: 56px auto; padding: 26px; }
.auth-card form { display:grid; gap: 12px; }
.alert { padding: 12px 14px; border-radius: 14px; margin-bottom: 14px; }
.alert-error { background: #fee2e2; color: #991b1b; }

@media (max-width: 980px) {
    .hero-grid, .feature-grid, .tracking-meta-grid, .admin-shell, .form-grid, .admin-cards, .stats-grid { grid-template-columns: 1fr; }
    .admin-shell { display:block; }
    .admin-sidebar { position: sticky; top: 0; z-index: 10; }
    .header-bar, .footer-shell, .tracking-header, .panel-head {
        flex-direction: column;
        align-items: flex-start;
    }
    .tracking-lower-grid {
        grid-template-columns: 1fr;
    }
    .tracking-meta-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .route-stage { height: 220px; }
    .route-node-start { left: 3%; top: 74%; }
    .route-node-end { right: 3%; top: 28%; }
    .route-legend {
        align-items: flex-start;
        flex-direction: column;
    }
    .route-legend-items {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
    }
    .route-legend-items span { white-space: nowrap; }
    .route-level-marker {
        width: 122px;
        height: 50px;
    }
    .route-level-marker-label {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    .route-level-marker-icon {
        width: 18px;
        height: 18px;
    }
    .tracking-section-head-inline {
        flex-direction: column;
        align-items: flex-start;
    }
    .tracking-section {
        padding: 16px;
        border-radius: 24px;
    }
    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 720px) {
    .tracking-page { padding: 22px 0 44px; }
    .tracking-summary { padding: 16px; border-radius: 24px; }
    .header-bar, .footer-shell { padding: 14px 0; }
    .header-bar {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        gap: 10px;
    }
    .brand {
        align-self: flex-start;
        min-width: 0;
    }
    .brand-mark, .brand-media { width: 38px; height: 38px; border-radius: 12px; }
    .brand-text { font-size: 0.95rem; }
    .brand-subtitle { font-size: 0.76rem; }
    .tracking-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 10px;
    }
    .tracking-header h1 {
        font-size: 1.35rem;
        line-height: 1.05;
        word-break: break-word;
    }
    .status-badge {
        align-self: flex-start;
        font-size: 0.78rem;
        padding: 7px 11px;
    }
    .tracking-status-message {
        margin-top: 14px;
        padding: 14px;
        border-radius: 16px;
    }
    .tracking-section-head {
        margin-bottom: 12px;
    }
    .tracking-section h2 {
        font-size: 1rem;
    }
    .tracking-section-kicker {
        font-size: 0.7rem;
    }
    .tracking-meta-grid {
        margin: 14px 0 12px;
    }
    .tracking-meta-grid div {
        padding: 11px 12px;
    }
    .tracking-meta-grid span {
        font-size: 0.78rem;
    }
    .tracking-meta-grid strong {
        font-size: 0.92rem;
        line-height: 1.3;
    }
    .tracking-lower-grid {
        gap: 12px;
        margin-top: 14px;
    }
    .tracking-section {
        margin-top: 14px;
        padding: 12px;
        border-radius: 18px;
    }
    .tracking-section-route {
        padding-bottom: 14px;
    }
    .tracking-section-head-inline {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .route-labels {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        font-size: 0.82rem;
    }
    .route-legend {
        margin: 10px 0 8px;
    }
    .route-legend-title {
        font-size: 0.74rem;
    }
    .route-legend-items {
        gap: 8px 10px;
        font-size: 0.76rem;
    }
    .route-stage {
        height: 268px;
        border-radius: 22px;
        margin-top: 14px;
    }
    .route-node-start { left: 5%; top: 82%; }
    .route-node-end { right: 5%; top: 28%; }
    .route-node-label {
        font-size: 0.7rem;
        top: -24px;
    }
    .route-node-pin {
        width: 32px;
        height: 32px;
    }
    .route-node-pin svg {
        width: 17px;
        height: 17px;
    }
    .route-marker {
        width: 58px;
        height: 58px;
    }
    .route-marker-icon {
        width: 42px;
        height: 42px;
    }
    .route-marker-trail {
        left: -32px;
        width: 44px;
        transform: translateY(-50%);
    }
    .route-level-marker {
        width: 104px;
        height: 42px;
    }
    .route-level-marker-label {
        font-size: 0.66rem;
        padding: 3px 7px;
    }
    .route-level-marker-icon {
        width: 16px;
        height: 16px;
    }
    .route-pause-callout {
        left: 10px;
        right: 10px;
        bottom: 10px;
        border-radius: 14px;
        padding: 10px 12px;
        font-size: 0.8rem;
    }
    .timeline-day-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
    }
    .timeline-item {
        gap: 10px;
        padding: 11px 12px;
    }
    .timeline-item-head {
        gap: 8px;
    }
    .timeline-item-head strong {
        font-size: 0.9rem;
    }
    .timeline-meta {
        gap: 6px;
        flex-direction: column;
        align-items: flex-start;
    }
    .pause-list li {
        padding: 11px 12px;
    }
    .header-mobile-actions {
        display: flex;
        margin-left: auto;
    }
    .header-mobile-toggle {
        display: inline-flex;
        gap: 8px;
        width: auto;
        height: auto;
        min-height: 38px;
        padding: 6px 12px;
        border-radius: 12px;
    }
    .header-mobile-lang-button {
        display: inline-flex;
    }
    .header-mobile-label {
        display: inline-flex;
        align-items: center;
        font-size: 0.95rem;
        font-weight: 500;
        color: #0f172a;
    }
    .header-nav,
    .lang-switcher {
        display: none;
    }
    .header-mobile-drawer {
        display: block;
        position: fixed;
        top: 70px;
        left: 12px;
        right: 12px;
        width: auto;
        bottom: auto;
        background: #fff;
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 18px;
        box-shadow: 0 24px 42px rgba(15, 23, 42, 0.18);
        transform: translateY(-10px);
        opacity: 0;
        transition: transform .22s ease, opacity .18s ease;
        z-index: 10010;
        overflow-y: auto;
        pointer-events: none;
    }

    .mobile-drawer-open .header-mobile-drawer {
        pointer-events: auto;
    }
    .header-mobile-drawer-inner {
        padding: 18px 18px 22px;
    }
    .header-mobile-nav {
        padding-top: 0;
        gap: 0;
    }
    .header-mobile-nav a {
        padding: 18px 0 14px;
        font-size: 1.03rem;
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    }
    .footer-shell { gap: 18px; }
    .tracking-meta-grid { grid-template-columns: 1fr; gap: 10px; margin: 18px 0 16px; }
    .tracking-lower-grid {
        gap: 14px;
        margin-top: 18px;
    }
    .tracking-section {
        margin-top: 16px;
        padding: 14px;
        border-radius: 20px;
    }
    .tracking-section h2 {
        font-size: 1.08rem;
    }
    .tracking-meta-grid div, .pause-list li, .timeline-item {
        padding: 12px 14px;
        border-radius: 16px;
    }
    .route-visual { padding: 12px 0 6px; }
    .route-stage {
        height: 220px;
        border-radius: 22px;
        margin-top: 14px;
        overflow: hidden;
    }
    .route-stage-svg {
        opacity: 0.96;
    }
    .route-node-start { left: 4.5%; top: 78%; }
    .route-node-end { right: 4.5%; top: 26%; }
    .route-node-label {
        font-size: 0.72rem;
        top: -26px;
        max-width: 96px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .route-node-pin {
        width: 30px;
        height: 30px;
    }
    .route-node-pin svg {
        width: 16px;
        height: 16px;
    }
    .route-marker {
        width: 50px;
        height: 50px;
    }
    .route-marker-icon {
        width: 38px;
        height: 38px;
    }
    .route-marker.is-moving .route-marker-icon {
        animation-duration: 1.2s;
    }
    .route-marker-trail {
        left: -28px;
        width: 38px;
    }
    .route-pause-callout {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
        padding: 9px 11px;
        border-radius: 14px;
    }
    .route-level-marker {
        width: 98px;
        height: 40px;
    }
    .route-level-marker-label {
        top: 22px;
        font-size: 0.64rem;
        padding: 3px 7px;
    }
    .route-level-marker-above .route-level-marker-label {
        top: -34px;
    }
    .route-level-marker-icon {
        top: 10px;
        width: 16px;
        height: 16px;
    }
    .route-level-marker-above .route-level-marker-icon {
        top: 12px;
    }
    .route-labels {
        flex-direction: column;
        gap: 4px;
        font-size: 0.84rem;
    }
    .timeline { gap: 10px; }
    .timeline-item { gap: 10px; }
}

@keyframes marker-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.03); }
}

@keyframes marker-breathe {
    0%, 100% { box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16), 0 0 0 1px rgba(255,255,255,0.72) inset; }
    50% { box-shadow: 0 18px 34px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(255,255,255,0.82) inset; }
}

@keyframes route-dashes {
    from { stroke-dashoffset: 0; }
    to { stroke-dashoffset: -68; }
}

@keyframes plane-swing {
    0%, 100% { transform: translateY(0) rotate(-12deg) scale(1); }
    50% { transform: translateY(-4px) rotate(-8deg) scale(1.03); }
}

@keyframes trail-drift {
    0%, 100% { transform: translateY(-50%) translateX(0); opacity: .55; }
    50% { transform: translateY(-50%) translateX(-6px); opacity: 1; }
}

@keyframes pause-pulse {
    0%, 100% { transform: scale(0.85); opacity: 0.45; }
    50% { transform: scale(1.1); opacity: 0.95; }
}

.public-shell .site-header {
    background: rgba(255, 255, 255, 0.9);
}

.public-shell .header-bar {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.4fr) auto;
}

.public-shell .header-nav {
    justify-content: center;
}

.public-shell .header-nav a {
    font-size: 0.96rem;
    font-weight: 600;
}

.public-shell .brand-text {
    font-size: 1rem;
    letter-spacing: 0.01em;
}

.public-shell .footer-shell {
    grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.85fr) minmax(220px, 0.6fr);
    align-items: stretch;
}

.public-shell .footer-brand-block {
    padding: 8px 4px 8px 0;
}

.public-shell .brand-footer {
    align-items: flex-start;
}

.public-shell .footer-links-block {
    min-height: 100%;
}

.public-shell .footer-lang-list a {
    min-width: 48px;
    background: rgba(255,255,255,0.9);
    border-color: rgba(15, 23, 42, 0.08);
}

.public-shell .footer-lang-list a.active {
    background: linear-gradient(135deg, rgba(15, 110, 115, 0.12), rgba(245, 180, 0, 0.10));
    border-color: rgba(15, 110, 115, 0.18);
    color: #0b1b34;
}

.public-shell .footer-bottom-inner {
    padding-top: 14px;
    padding-bottom: 20px;
}

@media (max-width: 980px) {
    .public-shell .footer-shell {
        grid-template-columns: 1fr 1fr;
    }

    .public-shell .footer-brand-block {
        grid-column: 1 / -1;
    }

    .public-shell .footer-links-block {
        padding: 18px;
    }
}

@media (max-width: 720px) {
    .site-footer {
        margin-top: 16px;
        overflow: visible;
    }

    .public-shell .footer-shell {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 14px 0 10px;
    }

    .public-shell .footer-brand-block {
        grid-column: 1 / -1;
        padding: 0;
        gap: 8px;
    }

    .public-shell .footer-links-block {
        padding: 12px 12px;
        border-radius: 16px;
        gap: 8px;
        min-width: 0;
        width: 100%;
    }

    .public-shell .footer-brand-block p {
        max-width: none;
        font-size: 0.84rem;
        line-height: 1.45;
    }

    .public-shell .footer-links-block h4 {
        font-size: 0.68rem;
    }

    .public-shell .footer-links-block p {
        font-size: 0.83rem;
        line-height: 1.35;
    }

    .public-shell .footer-lang-list {
        gap: 6px;
    }

    .public-shell .footer-lang-list a {
        min-width: 40px;
        min-height: 36px;
        padding: 6px 9px;
        font-size: 0.82rem;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding-top: 10px;
        padding-bottom: 12px;
        font-size: 0.78rem;
    }
}

.tc-home {
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 28%),
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.10), transparent 26%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 38%, #f8fafc 100%);
}

.tc-home section {
    position: relative;
}

.tc-home-hero {
    padding: 64px 0 30px;
}

.tc-home-hero-grid,
.tc-about-grid,
.tc-contact-grid,
.tc-cta-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 28px;
    align-items: center;
}

.tc-home-copy h1 {
    margin: 16px 0 14px;
    font-size: clamp(2.6rem, 5vw, 4.9rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    max-width: 11ch;
}

.tc-home-copy p,
.section-heading p,
.tc-about-card p,
.tc-resource-card p,
.tc-sector-card p,
.tc-news-card p,
.tc-contact-card p,
.tc-home-panel-card p {
    color: #64748b;
    line-height: 1.65;
    font-size: 1rem;
}

.tc-pill,
.section-heading span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.10);
    color: #1d4ed8;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.tc-home-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.82);
    color: var(--primary);
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
}

.tc-home-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}

.tc-home-proof div,
.tc-fact-card,
.tc-info-card,
.tc-sector-card,
.tc-resource-card,
.tc-news-card,
.tc-contact-card,
.tc-about-card,
.tc-lang-card,
.tc-home-panel-card,
.tc-cta-card {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
}

.tc-home-proof div {
    padding: 16px;
}

.tc-home-proof strong,
.tc-fact-card strong,
.tc-home-panel-number {
    display: block;
    font-size: 1.9rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.tc-home-proof span,
.tc-fact-card span {
    display: block;
    margin-top: 6px;
    color: #64748b;
    font-size: 0.92rem;
}

.tc-home-panel-card {
    padding: 28px;
    min-height: 420px;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.22), transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.18), transparent 24%),
        linear-gradient(180deg, #0f172a, #111827 72%, #0f172a);
    color: white;
}

.tc-home-panel-kicker {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    font-weight: 700;
}

.tc-home-panel-number {
    font-size: clamp(4rem, 9vw, 6rem);
    margin: 24px 0 12px;
}

.tc-home-panel-card p,
.tc-home-panel-stats span {
    color: rgba(255, 255, 255, 0.78);
}

.tc-home-panel-stats {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.tc-home-panel-stats div {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tc-home-panel-stats strong {
    display: block;
    font-size: 1.08rem;
    margin-bottom: 4px;
}

.tc-home-languages,
.tc-home-section {
    padding: 16px 0 40px;
}

.tc-home-lang-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.tc-lang-card {
    padding: 16px;
    display: grid;
    gap: 6px;
    text-align: center;
}

.tc-lang-card.is-selected {
    border-color: rgba(37, 99, 235, 0.22);
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.10);
}

.tc-lang-flag {
    width: 48px;
    height: 48px;
    margin: 0 auto 4px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(245, 158, 11, 0.12));
    font-weight: 800;
    color: #0f172a;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 20px;
}

.section-heading h2 {
    margin: 12px 0 10px;
    font-size: clamp(1.2rem, 1.6vw, 1.65rem);
    line-height: 1.1;
    letter-spacing: -0.028em;
}

.section-heading p {
    margin: 0;
}

.section-heading-left {
    margin-bottom: 0;
}

.tc-card-grid {
    display: grid;
    gap: 16px;
}

.tc-card-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tc-card-grid-wide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tc-info-card,
.tc-sector-card,
.tc-resource-card,
.tc-news-card,
.tc-contact-card,
.tc-about-card {
    padding: 22px;
}

.tc-info-card strong {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.10);
    color: #1d4ed8;
    font-weight: 800;
}

.tc-info-card h3,
.tc-sector-card h3,
.tc-resource-card h3,
.tc-news-card h3,
.tc-contact-card h3,
.tc-about-card h3 {
    margin: 14px 0 10px;
    font-size: 0.9rem;
}

.tc-section-muted {
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.92), rgba(255, 255, 255, 0.96));
}

.tc-fact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.tc-fact-card {
    padding: 24px;
    text-align: center;
}

.tc-fact-card strong {
    font-size: 2.1rem;
}

.tc-about-grid,
.tc-contact-grid,
.tc-cta-card {
    align-items: start;
}

.tc-about-card ul {
    margin: 0;
    padding-left: 18px;
    color: #334155;
    line-height: 1.8;
}

.tc-faq-list {
    display: grid;
    gap: 12px;
}

.tc-faq-list details {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 18px 20px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
}

.tc-faq-list summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--primary);
}

.tc-faq-list p {
    margin: 12px 0 0;
    color: #64748b;
    line-height: 1.65;
}

.tc-home-cta {
    padding-bottom: 56px;
}

.tc-cta-card {
    padding: 28px;
    gap: 18px;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.98));
}

.tc-cta-card h2 {
    margin: 14px 0 10px;
    font-size: clamp(1.6rem, 2.6vw, 2.5rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.tc-cta-card p {
    margin: 0;
    max-width: 62ch;
}

@media (max-width: 1100px) {
    .public-shell .header-bar,
    .tc-home-hero-grid,
    .tc-about-grid,
    .tc-contact-grid,
    .tc-cta-card {
        grid-template-columns: 1fr;
    }

    .tc-home-lang-grid,
    .tc-card-grid-3,
    .tc-card-grid-wide,
    .tc-fact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .public-shell .header-nav {
        justify-content: flex-start;
    }

    .tc-home-hero {
        padding-top: 38px;
    }

    .tc-home-copy h1 {
        max-width: none;
    }

    .tc-home-proof,
    .tc-home-lang-grid,
    .tc-card-grid-3,
    .tc-card-grid-wide,
    .tc-fact-grid {
        grid-template-columns: 1fr;
    }

    .tc-home-panel-card {
        min-height: auto;
    }

    .tc-cta-card {
        padding: 22px;
    }

    .tc-trustpilot-wrap {
        grid-template-columns: 1fr;
    }

    .tc-trustpilot-nav {
        display: none;
    }

    .tc-review-card {
        width: 170px;
        min-width: 170px;
    }
}

.tc-homepage {
    background: #ffffff;
}

.tc-homepage .button-primary {
    background: #f2b400;
    color: #0f172a;
    box-shadow: none;
    border: 0;
}

.tc-homepage .button-primary:hover {
    filter: brightness(0.97);
}

.tc-homepage .button-primary-soft {
    background: #f2b400;
    color: #0f172a;
}

.tc-homepage .button-secondary {
    background: #0f6e73;
    color: #ffffff;
    border: 0;
}

.tc-homepage .button-secondary:hover {
    filter: brightness(0.96);
}

.tc-homepage .button-secondary-soft {
    background: #0f6e73;
    color: #ffffff;
    border: 0;
}

.tc-section {
    padding: 30px 0 54px;
}

.tc-section-muted {
    background: #f6f7f8;
}

.tc-hero {
    position: relative;
    min-height: 540px;
    padding: 48px 0 56px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(7, 87, 92, 0.94) 0%, rgba(7, 87, 92, 0.82) 55%, rgba(7, 87, 92, 0.55) 100%),
        radial-gradient(circle at top right, rgba(255, 182, 0, 0.08), transparent 30%);
    overflow: hidden;
}

.tc-hero::before {
    content: '';
    position: absolute;
    inset: -3%;
    background-image:
        linear-gradient(90deg, rgba(7, 87, 92, 0.42) 0%, rgba(7, 87, 92, 0.28) 55%, rgba(7, 87, 92, 0.14) 100%),
        var(--hero-image, none);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.08);
    animation: heroDrift 24s ease-in-out infinite alternate;
    will-change: transform, background-position;
}

.tc-hero::after {
    content: '';
    position: absolute;
    right: -40px;
    bottom: -30px;
    width: 240px;
    height: 240px;
    border: 28px solid #f2b400;
    border-left-color: transparent;
    border-top-color: transparent;
    transform: rotate(45deg);
    opacity: 0.95;
}

.tc-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: end;
    min-height: 480px;
}

.tc-hero-content {
    max-width: 680px;
    padding-top: 34px;
}

.tc-badge,
.tc-small-label,
.section-heading span {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.08);
    color: inherit;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.section-heading span {
    color: #0f6e73;
    border-color: rgba(15, 110, 115, 0.18);
    background: rgba(15, 110, 115, 0.06);
    font-size: 0.68rem;
}

.tc-hero h1 {
    margin: 16px 0 12px;
    color: #ffffff;
    font-size: clamp(2.2rem, 3.4vw, 3.85rem);
    line-height: 0.96;
    max-width: 15.5ch;
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.tc-hero p {
    max-width: 58ch;
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    line-height: 1.62;
}

.tc-hero-box {
    margin-top: 24px;
    max-width: 620px;
    padding: 20px 22px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--primary);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
}

.tc-hero-box p {
    color: #475569;
}

.tc-hero-actions,
.tc-inline-actions,
.tc-faq-actions,
.tc-news-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.button-primary-soft,
.button-secondary-soft {
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
}

.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #ffffff;
    color: var(--primary);
    font-weight: 700;
}

.button-secondary-soft {
    background: rgba(7, 87, 92, 0.92);
    color: #fff;
    border-color: rgba(7, 87, 92, 0.92);
}

.tc-hero-accent {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 32%;
    height: 120px;
    background: transparent;
}

@keyframes heroDrift {
    0% {
        transform: scale(1.08) translate3d(0, 0, 0);
        background-position: center center;
    }
    50% {
        background-position: 54% 48%;
    }
    100% {
        transform: scale(1.12) translate3d(0, -1.2%, 0);
        background-position: 58% 52%;
    }
}

.tc-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 16px;
    align-items: stretch;
}

.tc-intro-image,
.tc-cta-image,
.tc-news-image {
    border-radius: 16px;
    background-color: #dbe4ea;
    background-size: cover;
    background-position: center;
    min-height: 410px;
    overflow: hidden;
    position: relative;
}

.tc-intro-panel {
    border-radius: 16px;
    background: #0f6e73;
    color: #fff;
    min-height: 410px;
    display: grid;
    align-items: center;
    padding: 28px;
}

.tc-intro-panel-inner h3,
.tc-cta-copy h2,
.tc-section-slider h2,
.tc-faq-section h2,
.tc-news-section h2 {
    margin: 0 0 14px;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.tc-intro-panel-inner p,
.tc-cta-copy p,
.tc-news-card p,
.tc-faq-list p,
.tc-benefit-item p {
    color: #475569;
    line-height: 1.65;
}

.tc-intro-panel .tc-intro-panel-inner p {
    color: rgba(255, 255, 255, 0.9);
}

.tc-intro-panel .tc-inline-actions {
    margin-top: 8px;
}

.tc-intro-panel .button-primary-soft,
.tc-intro-panel .button-secondary-soft {
    border-radius: 999px;
}

.tc-image-placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(15, 110, 115, 0.16), rgba(245, 180, 0, 0.14));
    color: #0f172a;
    font-weight: 700;
    text-align: center;
    padding: 18px;
}

.tc-image-placeholder-dark {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    color: #fff;
}

.tc-logo-section {
    padding-top: 30px;
    text-align: center;
}

.tc-logo-marquee {
    position: relative;
    margin-top: 22px;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.tc-logo-marquee-track {
    display: flex;
    align-items: center;
    gap: 56px;
    width: max-content;
    animation: tc-logo-marquee 28s linear infinite;
    will-change: transform;
}

.tc-logo-marquee:hover .tc-logo-marquee-track {
    animation-play-state: paused;
}

.tc-logo-item {
    flex: 0 0 auto;
    min-width: 150px;
    min-height: 72px;
    padding: 6px 12px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: transparent;
    box-shadow: none;
}

.tc-logo-item img {
    max-height: 58px;
    max-width: 180px;
    object-fit: contain;
    width: auto;
}

.tc-logo-item span {
    color: #6b7280;
    font-weight: 700;
    white-space: nowrap;
}

@keyframes tc-logo-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.tc-small-label {
    border-color: rgba(15, 110, 115, 0.18);
    background: rgba(15, 110, 115, 0.05);
    color: #0f6e73;
}

.section-heading-wide {
    max-width: 100%;
}

.section-heading h2 {
    margin: 12px 0 0;
    font-size: clamp(1rem, 1.25vw, 1.35rem);
    line-height: 1.1;
}

.tc-benefits-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 42px;
}

.tc-benefit-item {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.tc-benefit-icon {
    display: inline-flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 34px;
    height: 34px;
    color: #0f6e73;
}

.tc-benefit-icon svg {
    width: 34px;
    height: 34px;
    display: block;
}

.tc-benefit-item h3 {
    margin: 0 0 8px;
    font-size: 0.84rem;
    line-height: 1.25;
}

.tc-benefit-item p {
    margin: 0;
    color: #334155;
    line-height: 1.55;
}

.tc-cta-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 250px minmax(0, 1fr);
    gap: 16px;
    align-items: stretch;
    padding: 18px;
    background: #f2f2f2;
    border-radius: 18px;
}

.tc-cta-copy,
.tc-cta-contact {
    border-radius: 16px;
    background: #fff;
    padding: 26px;
}

.tc-cta-copy {
    display: grid;
    align-content: center;
}

.tc-cta-image {
    min-height: 330px;
    border-radius: 16px;
}

.tc-cta-contact h3 {
    margin: 16px 0 12px;
}

.tc-cta-contact ul {
    margin: 0;
    padding-left: 18px;
    line-height: 1.7;
    color: #475569;
}

.tc-contact-badge {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 18px;
    background: #0f6e73;
    color: #fff;
    font-weight: 700;
    max-width: 260px;
}

.tc-trustpilot-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr) 32px;
    align-items: center;
    gap: 10px;
}

.tc-trustpilot-nav {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(15, 23, 42, 0.14);
    border-radius: 999px;
    background: #fff;
    color: #9ca3af;
    display: grid;
    place-items: center;
    padding: 0;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
}

.tc-trustpilot-nav span {
    font-size: 1.25rem;
    line-height: 1;
    transform: translateY(-1px);
}

.tc-trustpilot-nav-right {
    color: #111827;
}

.tc-testimonial-row {
    margin-top: 18px;
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 0 2px 10px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.tc-review-card {
    min-width: 183px;
    width: 183px;
    flex: 0 0 auto;
    background: #fafafa;
    border: 1px solid #edf0f4;
    border-radius: 0;
    padding: 8px 12px 12px;
    box-shadow: none;
    scroll-snap-align: start;
    color: #111827;
    text-decoration: none;
}

.tc-review-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 6px;
    font-size: 0.66rem;
    color: #6b7280;
}

.tc-review-stars span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #00b67a;
    color: #fff;
    width: 13px;
    height: 13px;
    padding: 0;
    border-radius: 0;
    font-size: 0.6rem;
    letter-spacing: 0;
    font-weight: 800;
    line-height: 1;
}

.tc-review-stars .tc-review-star {
    flex: 0 0 auto;
}

.tc-review-stars em {
    font-style: normal;
    color: #6b7280;
    font-size: 0.65rem;
}

.tc-review-card h3 {
    margin: 0 0 8px;
    font-size: 0.8rem;
    line-height: 1.2;
    color: #111827;
}

.tc-review-card p {
    margin: 0;
    color: #374151;
    line-height: 1.35;
    font-size: 0.78rem;
    min-height: 54px;
}

.tc-review-card footer {
    margin-top: 14px;
    font-size: 0.71rem;
    color: #6b7280;
}

.tc-review-summary {
    margin-top: 8px;
    text-align: center;
    font-size: 0.82rem;
    color: #4b5563;
}

.tc-review-summary strong {
    display: inline;
    margin: 0;
    color: #111827;
    font-size: 0.82rem;
    font-weight: 400;
}

.tc-review-summary a {
    color: inherit;
    text-decoration: none;
}

.tc-review-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 6px;
    color: #111827;
    font-weight: 700;
    font-size: 0.94rem;
}

.tc-review-brand-logo {
    color: #00b67a;
    font-size: 1.05rem;
}

.tc-review-brand a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: inherit;
    text-decoration: none;
}

.tc-mini-card {
    display: none;
}

.tc-stats-section .container {
    display: grid;
    gap: 0;
}

.tc-stat-bar {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding: 22px 24px;
}

.tc-stat-bar span {
    font-size: 1rem;
}

.tc-stat-bar strong {
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 800;
}

.tc-stat-bar-dark {
    background: #0f6e73;
    color: #fff;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.tc-stat-bar-light {
    background: #d4e8ec;
    color: #0f172a;
}

.tc-stat-bar-accent {
    background: #f2b400;
    color: #0f172a;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.tc-faq-section {
    position: relative;
    overflow: hidden;
    background: #f4f5f6;
}

.tc-faq-section::before {
    content: '';
    position: absolute;
    inset: 22px 18px auto auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 110, 115, 0.14), transparent 66%);
    pointer-events: none;
}

.tc-faq-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr);
    gap: 26px;
    align-items: start;
}

.tc-faq-aside {
    position: sticky;
    top: 112px;
    display: grid;
    gap: 16px;
    align-content: start;
    padding: 26px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(15, 110, 115, 0.98), rgba(9, 71, 75, 0.96));
    color: #fff;
    box-shadow: 0 22px 42px rgba(15, 23, 42, 0.14);
    overflow: hidden;
}

.tc-faq-aside::after {
    content: '';
    position: absolute;
    right: -34px;
    bottom: -36px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 180, 0, 0.25), transparent 62%);
    pointer-events: none;
}

.tc-faq-aside > * {
    position: relative;
    z-index: 1;
}

.tc-faq-aside h2 {
    margin: 0;
    font-size: clamp(1.2rem, 1.6vw, 1.45rem);
    line-height: 1;
    letter-spacing: -0.035em;
}

.tc-faq-aside p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.7;
}

.tc-faq-points {
    display: grid;
    gap: 12px;
}

.tc-faq-points div {
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.tc-faq-points strong {
    font-size: 1.5rem;
    line-height: 1;
}

.tc-faq-points span {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.45;
    font-size: 0.92rem;
}

.tc-faq-panel {
    position: relative;
    padding: 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(12px);
}

.tc-faq-section h2,
.tc-news-section h2 {
    margin-top: 12px;
}

.tc-faq-list {
    margin-top: 0;
    display: grid;
    gap: 12px;
}

.tc-faq-list details {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    padding: 18px 20px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
    overflow: hidden;
}

.tc-faq-list details::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary), var(--accent));
    opacity: 0;
    transition: opacity .2s ease;
}

.tc-faq-list details[open]::before {
    opacity: 1;
}

.tc-faq-list summary {
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    color: #0f172a;
    padding-right: 28px;
    position: relative;
}

.tc-faq-list summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(15, 110, 115, 0.08);
    color: #0f6e73;
    font-size: 1rem;
    line-height: 1;
}

.tc-faq-list details[open] summary::after {
    content: '−';
    background: rgba(242, 180, 0, 0.14);
}

.tc-faq-list p {
    margin: 12px 0 0;
    color: #64748b;
    line-height: 1.65;
}

.tc-faq-actions {
    margin-top: 18px;
}

.tc-news-section {
    background: #0f6e73;
    color: #fff;
}

.tc-news-section .section-heading span,
.tc-news-section .tc-small-label {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.tc-news-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.tc-news-card {
    padding: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    color: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

.tc-news-card .tc-news-image {
    min-height: 190px;
    margin-bottom: 14px;
}

.tc-news-card h3 {
    margin: 0 0 8px;
    font-size: 0.82rem;
}

.tc-news-card p {
    color: #475569;
    margin: 0 0 12px;
}

.tc-news-card a {
    color: #0f6e73;
    font-weight: 700;
}

.tc-faq-compact {
    width: min(100%, 860px);
    margin: 0 auto;
    text-align: center;
}

.tc-faq-compact .tc-faq-pill {
    margin: 0 auto 12px;
}

.tc-faq-compact h2 {
    margin: 0 auto 34px;
    font-size: clamp(1rem, 1.15vw, 1.2rem);
    line-height: 1.02;
    color: #0f6e73;
    letter-spacing: -0.035em;
    max-width: none;
    white-space: nowrap;
}

.tc-faq-compact .tc-faq-list {
    text-align: left;
}

.tc-faq-compact .tc-faq-list details {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #d9e4e8;
    border-radius: 0;
    box-shadow: none;
    padding: 20px 0 16px;
}

.tc-faq-compact .tc-faq-list details:first-child {
    border-top: 0;
}

.tc-faq-compact .tc-faq-list details[open] {
    border: 0;
    border-radius: 0;
    margin: 0 0 10px;
    padding: 20px 0 12px;
}

.tc-faq-compact .tc-faq-list details::before {
    display: none;
}

.tc-faq-compact .tc-faq-list summary {
    font-size: 1.06rem;
    color: #0f6e73;
    padding-right: 54px;
}

.tc-faq-compact .tc-faq-list summary::after {
    width: 22px;
    height: 22px;
    right: 0;
    top: 0;
    background: #3b7982;
    color: #fff;
    border-radius: 999px;
    box-shadow: none;
}

.tc-faq-compact .tc-faq-list details[open] summary::after {
    background: #3b7982;
    color: #fff;
}

.tc-faq-compact .tc-faq-list p {
    padding-left: 0;
    margin-top: 18px;
    max-width: 68ch;
    font-size: 1.04rem;
    color: #5f7280;
    line-height: 1.7;
}

.tc-faq-actions-center {
    justify-content: center;
    margin-top: 28px;
}

.button-faq-yellow {
    background: linear-gradient(180deg, #f1c200, #edb100);
    color: #0f172a;
    box-shadow: none;
}

.button-faq-teal {
    background: #0f6e73;
    color: #fff;
    border: 0;
    box-shadow: none;
}

.tc-faq-compact .button-primary,
.tc-faq-compact .button-secondary {
    min-height: 44px;
    padding: 12px 20px;
    border-radius: 999px;
}

.tracking-search-hero {
    margin-top: 40px;
    padding: 28px;
}

.tracking-search-page {
    padding-top: 34px;
    padding-bottom: 72px;
}

.tracking-search-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 22px;
    align-items: stretch;
    padding: 24px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top left, rgba(15, 110, 115, 0.12), transparent 34%),
        radial-gradient(circle at bottom right, rgba(244, 180, 0, 0.10), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,0.96), rgba(249,250,252,0.98));
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.10);
    overflow: hidden;
}

.tracking-search-shell::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), #6fb7ba 52%, var(--accent));
}

.tracking-search-copy {
    padding: 18px 8px 10px 10px;
}

.tracking-search-kicker {
    color: #0f6e73;
    border-color: rgba(15, 110, 115, 0.18);
    background: rgba(15, 110, 115, 0.06);
}

.tracking-search-copy h1 {
    margin: 14px 0 12px;
    font-size: clamp(2rem, 3vw, 3.35rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    max-width: 10.5ch;
    color: #081423;
}

.tracking-search-lead {
    margin: 0;
    max-width: 54ch;
    color: #475569;
    line-height: 1.7;
    font-size: 1rem;
}

.tracking-search-form {
    margin-top: 24px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.tracking-search-form label {
    margin-bottom: 12px;
    color: #0b1b34;
    font-size: 0.98rem;
}

.tracking-search-input-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: stretch;
}

.tracking-search-input-row input {
    min-height: 56px;
    border-radius: 18px;
    background: #fff;
    border-color: rgba(15, 23, 42, 0.10);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.tracking-search-input-row .button-primary {
    min-height: 56px;
    padding-inline: 22px;
    border-radius: 18px;
    font-weight: 800;
    box-shadow: 0 18px 30px rgba(15, 110, 115, 0.18);
}

.tracking-search-note {
    margin: 14px 2px 0;
    color: #64748b;
    font-size: 0.93rem;
}

.tracking-search-points {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.tracking-search-point {
    padding: 16px;
    border-radius: 20px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.tracking-search-point strong {
    display: block;
    margin-bottom: 6px;
    color: #0f6e73;
    font-size: 0.9rem;
}

.tracking-search-point span {
    color: #475569;
    line-height: 1.55;
    font-size: 0.88rem;
}

.tracking-search-visual {
    min-height: 100%;
}

.tracking-search-visual-card {
    position: relative;
    height: 100%;
    padding: 22px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(244,180,0,0.20), transparent 24%),
        radial-gradient(circle at bottom left, rgba(111,183,186,0.18), transparent 28%),
        linear-gradient(160deg, #0f6e73 0%, #0c4f54 100%);
    color: #fff;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.18);
    overflow: hidden;
}

.tracking-search-visual-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, transparent 0 18%, rgba(255,255,255,0.10) 18% 19%, transparent 19% 100%),
        linear-gradient(300deg, transparent 0 45%, rgba(255,255,255,0.06) 45% 46%, transparent 46% 100%);
    pointer-events: none;
}

.tracking-search-visual-top,
.tracking-search-visual-route,
.tracking-search-steps,
.tracking-search-visual-footer {
    position: relative;
    z-index: 1;
}

.tracking-search-visual-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.tracking-search-visual-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.18);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 700;
}

.tracking-search-visual-status {
    font-size: 0.92rem;
    font-weight: 800;
    color: #f4f8fb;
}

.tracking-search-visual-route {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(6px);
}

.tracking-search-visual-route-head,
.tracking-search-visual-locations {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.tracking-search-visual-route-head {
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
    margin-bottom: 12px;
}

.tracking-search-visual-track {
    position: relative;
    height: 7px;
    margin: 0 4px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    overflow: hidden;
}

.tracking-search-visual-track span {
    position: absolute;
    inset: 0;
    width: 55%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--accent), #f7d778);
    box-shadow: 0 0 26px rgba(244, 180, 0, 0.45);
}

.tracking-search-visual-locations {
    margin-top: 14px;
}

.tracking-search-visual-locations div {
    flex: 1 1 0;
}

.tracking-search-visual-locations strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.86rem;
}

.tracking-search-visual-locations span {
    color: rgba(255,255,255,0.74);
    font-size: 0.82rem;
    line-height: 1.45;
}

.tracking-search-steps {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.tracking-search-step {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.08);
}

.tracking-search-step span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.16);
    font-size: 0.75rem;
    font-weight: 800;
}

.tracking-search-step strong {
    display: block;
    font-size: 0.88rem;
    margin-bottom: 2px;
}

.tracking-search-step p {
    margin: 0;
    color: rgba(255,255,255,0.72);
    font-size: 0.84rem;
    line-height: 1.45;
}

.tracking-search-step.is-active {
    background: rgba(255,255,255,0.16);
    border-color: rgba(255,255,255,0.14);
}

.tracking-search-visual-footer {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.12);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.76);
}

/* Premium overrides for shipment tracking */
.tracking-page {
    padding-top: 48px;
    padding-bottom: 84px;
    background:
        radial-gradient(circle at 12% 0%, rgba(37,99,235,0.06), transparent 18%),
        radial-gradient(circle at 88% 0%, rgba(245,180,0,0.05), transparent 16%),
        linear-gradient(180deg, rgba(248,250,252,0.85), rgba(255,255,255,0.98));
}

.tracking-page.container {
    width: min(1180px, calc(100% - 28px));
}

.tracking-summary {
    padding: clamp(24px, 3vw, 40px);
    border-radius: 40px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow:
        0 24px 70px rgba(15, 23, 42, 0.08),
        0 2px 0 rgba(255,255,255,0.7) inset;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.99), rgba(250,251,253,0.97));
}

.tracking-summary::before {
    height: 5px;
    background: linear-gradient(90deg, #2b6cff 0%, #7e7d84 48%, #f6b51d 100%);
}

.tracking-header {
    margin-bottom: 16px;
    gap: 14px;
}

.tracking-header h1 {
    font-size: clamp(1.7rem, 2.2vw, 2.35rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.eyebrow {
    border: 1px solid rgba(37, 99, 235, 0.12);
    background: rgba(37, 99, 235, 0.08);
    color: var(--secondary);
}

.status-badge {
    padding: 10px 14px;
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    color: var(--primary);
    font-weight: 700;
}

.tracking-status-message {
    margin: 18px 0 10px;
    padding: 18px 20px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(245, 180, 0, 0.05));
    border-color: rgba(15, 23, 42, 0.08);
}

.tracking-meta-grid {
    gap: 12px;
    margin: 18px 0 16px;
}

.tracking-meta-grid div {
    padding: 16px 16px 14px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.96));
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.03);
}

.tracking-meta-grid strong {
    margin-top: 4px;
    display: block;
    color: #0b1b34;
}

.tracking-section {
    margin-top: 20px;
    padding: 22px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(245,180,0,0.06), transparent 24%),
        linear-gradient(180deg, rgba(255,255,255,0.97), rgba(249,250,252,0.98));
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow:
        0 20px 40px rgba(15, 23, 42, 0.05),
        0 1px 0 rgba(255,255,255,0.7) inset;
}

.tracking-section::before {
    height: 4px;
    background: linear-gradient(90deg, #2b6cff 0%, #c4a07c 50%, #f6b51d 100%);
    opacity: 0.85;
}

.tracking-section h2 {
    font-size: 1.28rem;
    line-height: 1.14;
    color: #081423;
}

.tracking-section-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: var(--secondary);
}

.tracking-section-head {
    margin-bottom: 14px;
}

.tracking-section-head-inline {
    align-items: center;
}

.route-labels {
    color: #64748b;
    font-size: 0.94rem;
}

.route-legend-title {
    color: #64748b;
}

.route-stage {
    height: 300px;
    margin-top: 16px;
    border-radius: 30px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background:
        radial-gradient(circle at 16% 18%, rgba(43, 108, 255, 0.10), transparent 20%),
        radial-gradient(circle at 84% 24%, rgba(246, 181, 29, 0.12), transparent 18%),
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(241,245,249,0.96));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.9),
        0 18px 34px rgba(15, 23, 42, 0.05);
}

.route-track-line {
    stroke: rgba(15, 23, 42, 0.07);
    stroke-width: 18;
}

.route-track-dash {
    stroke-width: 11;
    stroke-dasharray: 14 16;
}

.route-node-label {
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.route-node-pin {
    box-shadow:
        0 16px 30px rgba(15, 23, 42, 0.10),
        0 0 0 8px rgba(37,99,235,0.06);
}

.route-node-end .route-node-pin {
    box-shadow:
        0 16px 30px rgba(15, 23, 42, 0.10),
        0 0 0 8px rgba(245,180,0,0.08);
}

.route-marker-icon {
    width: calc(var(--route-marker-disc-size) + 4px);
    height: calc(var(--route-marker-disc-size) + 4px);
    box-shadow:
        0 18px 34px rgba(15, 23, 42, 0.14),
        0 0 0 1px rgba(255,255,255,0.78) inset;
}

.route-marker-trail span {
    background: rgba(43, 108, 255, 0.18);
}

.route-pause-callout {
    max-width: 240px;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.10);
}

.tracking-lower-grid {
    gap: 20px;
    margin-top: 24px;
}

.tracking-section-history .timeline-item,
.tracking-section-pause .pause-list li {
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.04);
}

.timeline-item-head strong {
    color: #081423;
}

.timeline-meta {
    color: #64748b;
}

.pause-list li strong {
    color: #081423;
}

@media (max-width: 980px) {
    .tc-intro-grid,
    .tc-cta-split,
    .tc-news-grid,
    .tc-benefits-grid,
    .tc-faq-layout {
        grid-template-columns: 1fr;
    }

    .tracking-search-shell {
        grid-template-columns: 1fr;
        padding: 18px;
        gap: 16px;
    }

    .tc-logo-marquee-track {
        gap: 36px;
        animation-duration: 22s;
    }

    .tc-hero {
        min-height: 470px;
    }

    .tc-hero-inner {
        min-height: 410px;
    }

    .tc-cta-split {
        padding: 14px;
    }

    .tc-faq-aside {
        position: relative;
        top: auto;
    }

    .tc-faq-panel {
        padding: 20px;
    }

    .tracking-search-points {
        grid-template-columns: 1fr;
    }

    .tracking-search-copy h1 {
        max-width: 100%;
        font-size: clamp(1.95rem, 5.5vw, 2.6rem);
    }

    .tracking-search-lead {
        max-width: 100%;
    }

    .tracking-search-visual-card {
        min-height: 320px;
    }
}

@media (max-width: 720px) {
    .tc-section {
        padding: 26px 0 44px;
    }

    .tc-hero {
        min-height: 440px;
        padding-top: 26px;
    }

    .tc-hero h1 {
        max-width: 11.5ch;
        font-size: clamp(1.9rem, 7vw, 2.7rem);
    }

    .tc-hero-box {
        padding: 16px;
    }

    .tracking-search-copy {
        padding: 10px 2px 6px;
    }

    .tracking-search-copy h1 {
        font-size: clamp(1.7rem, 7vw, 2.4rem);
        max-width: 100%;
    }

    .tracking-search-lead {
        font-size: 0.94rem;
    }

    .tracking-search-form {
        padding: 16px;
    }

    .tracking-search-input-row {
        grid-template-columns: 1fr;
    }

    .tracking-search-input-row .button-primary {
        width: 100%;
    }

    .tracking-search-visual-card {
        padding: 18px;
        min-height: auto;
    }

    .tracking-search-visual-top,
    .tracking-search-visual-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .tracking-search-visual-route-head,
    .tracking-search-visual-locations {
        flex-direction: column;
    }

    .tracking-search-step {
        grid-template-columns: 32px minmax(0, 1fr);
    }

    .tracking-search-visual-route {
        padding: 14px;
    }

    .tracking-search-visual-top {
        margin-bottom: 14px;
    }

    .tracking-search-steps {
        margin-top: 12px;
    }

    .tc-logo-marquee-track {
        gap: 24px;
        animation-duration: 18s;
    }

    .tc-logo-item {
        min-width: 120px;
        min-height: 60px;
        padding: 4px 8px;
    }

    .tc-logo-item img {
        max-height: 40px;
        max-width: 120px;
    }

    .tc-stat-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .tc-cta-image {
        min-height: 240px;
    }

    .tc-faq-aside,
    .tc-faq-panel {
        border-radius: 22px;
    }

    .tc-faq-compact {
        width: 100%;
    }

    .tc-faq-compact h2 {
        max-width: none;
        font-size: clamp(1.7rem, 7vw, 2.2rem);
        margin-bottom: 24px;
        white-space: normal;
    }

    .tc-faq-compact .tc-faq-list details {
        padding: 16px 16px 16px 20px;
    }

    .tc-faq-actions-center {
        flex-direction: column;
        align-items: stretch;
    }
}
