        /* Keep the tracking component isolated from the shared site shell. */
.yl-track,
.yl-track * { box-sizing: border-box; }

/* ── Section ── */
        .yl-track {
            padding: 60px 0 50px;
            background: #f5f0eb;
            min-height: 100vh;
            position: relative;
        }
        .yl-track::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 95% 20%, rgba(255,107,53,0.06) 0%, transparent 55%),
                radial-gradient(ellipse at 5% 80%, rgba(255,107,53,0.04) 0%, transparent 50%);
            pointer-events: none;
        }

        .yl-track > .container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 1; }

        /* ── Brand Header ── */
        .yl-track__brand {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.5rem 0 1.5rem;
            border-bottom: 2px solid rgba(255,107,53,0.12);
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .yl-track__brand-left {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .yl-track__logo {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            overflow: hidden;
            flex-shrink: 0;
            background: #0d0f14;
            box-shadow: 0 4px 12px rgba(0,0,0,0.12);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .yl-track__logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .yl-track__brand-name {
            font-size: 1.3rem;
            font-weight: 800;
            color: #0d0f14;
            letter-spacing: -0.02em;
            font-family: 'Outfit', sans-serif;
        }
        .yl-track__brand-name span {
            color: #ff6b35;
        }
        .yl-track__brand-tag {
            font-size: 0.65rem;
            font-weight: 600;
            color: #ff6b35;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            background: rgba(255,107,53,0.1);
            padding: 0.2rem 0.8rem;
            border-radius: 100px;
            display: inline-block;
            margin-top: 0.15rem;
            font-family: 'Outfit', sans-serif;
        }
        .yl-track__brand-tag i {
            margin-right: 0.3rem;
        }
        .yl-track__brand-right {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            font-size: 0.78rem;
            color: #6b7280;
            flex-wrap: wrap;
            font-family: 'Outfit', sans-serif;
        }
        .yl-track__brand-right i {
            color: #ff6b35;
            margin-right: 0.3rem;
        }
        .yl-track__brand-right a {
            color: #6b7280;
            text-decoration: none;
            transition: color 0.2s;
        }
        .yl-track__brand-right a:hover {
            color: #ff6b35;
        }

        /* ── Header ── */
        .yl-track__header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 2.5rem;
        }
        .yl-track__eyebrow {
            display: flex; align-items: center; justify-content: center;
            gap: 0.75rem; font-size: 0.7rem; font-weight: 700;
            letter-spacing: 0.15em; text-transform: uppercase;
            color: #ff6b35; margin-bottom: 1rem;
            font-family: 'Outfit', sans-serif;
        }
        .yl-track__eyebrow-line {
            display: block; width: 40px; height: 2px;
            background: #ff6b35; opacity: 0.3; border-radius: 2px;
        }
        .yl-track__title {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2rem, 3.8vw, 3.2rem);
            font-weight: 800; line-height: 1.1;
            letter-spacing: -0.03em; color: #0d0f14;
            margin-bottom: 0.75rem;
        }
        .yl-track__title em {
            font-style: normal;
            color: #ff6b35;
            position: relative;
        }
        .yl-track__title em::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 0;
            right: 0;
            height: 4px;
            background: rgba(255,107,53,0.2);
            border-radius: 2px;
        }
        .yl-track__sub {
            font-size: 1rem;
            color: #6b7280;
            line-height: 1.7;
            font-family: 'Outfit', sans-serif;
        }

        /* ── Panel ── */
        .yl-track__panel {
            display: grid;
            grid-template-columns: 480px 1fr;
            gap: 2rem;
            align-items: start;
        }

        /* ── LEFT Card ── */
        .yl-track__left {
            background: #ffffff;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 8px 32px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,0,0,0.04);
            display: flex;
            flex-direction: column;
            gap: 0;
            max-height: calc(100vh - 180px);
            overflow-y: auto;
        }
        .yl-track__left::-webkit-scrollbar { width: 4px; }
        .yl-track__left::-webkit-scrollbar-track { background: rgba(0,0,0,0.03); border-radius: 4px; }
        .yl-track__left::-webkit-scrollbar-thumb { background: rgba(255,107,53,0.3); border-radius: 4px; }

        /* ── Search Form ── */
        .yl-track__form-label {
            display: block;
            font-size: 0.7rem; font-weight: 700;
            letter-spacing: 0.1em; text-transform: uppercase;
            color: #6b7280;
            margin-bottom: 0.6rem;
            font-family: 'Outfit', sans-serif;
        }
        .yl-track__form-label i {
            color: #ff6b35;
            margin-right: 0.3rem;
        }

        .yl-track__input-wrap {
            display: flex; align-items: center;
            background: #f8f6f3;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            padding: 0.15rem 0.15rem 0.15rem 1rem;
            gap: 0.5rem;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
            position: relative;
        }
        .yl-track__input-wrap:focus-within {
            border-color: #ff6b35;
            box-shadow: 0 0 0 4px rgba(255,107,53,0.08);
        }
        .yl-track__input-wrap.yl-shake { animation: ylShake 0.4s ease; }
        @keyframes ylShake {
            0%,100% { transform: translateX(0); }
            25% { transform: translateX(-8px); }
            75% { transform: translateX(8px); }
        }

        .yl-track__input-icon {
            color: #ff6b35;
            flex-shrink: 0;
            font-size: 1rem;
        }
        .yl-track__input {
            flex: 1; background: transparent; border: none; outline: none;
            color: #1a1a1a; font-family: 'Outfit', sans-serif;
            font-size: 0.95rem; font-weight: 500;
            padding: 0.7rem 0; min-width: 0;
            letter-spacing: 0.02em;
        }
        .yl-track__input::placeholder { color: #9ca3af; font-weight: 400; }

        .yl-track__clear-btn {
            background: none; border: none;
            color: #9ca3af;
            cursor: pointer;
            padding: 0.3rem 0.3rem 0.3rem 0;
            display: none;
            align-items: center;
            justify-content: center;
            transition: color 0.2s;
            flex-shrink: 0;
            font-size: 0.9rem;
        }
        .yl-track__clear-btn:hover { color: #4b5563; }
        .yl-track__clear-btn.visible { display: flex; }

        .yl-track__submit {
            display: flex; align-items: center; gap: 0.5rem;
            background: #ff6b35; color: #ffffff;
            border: none; border-radius: 8px;
            padding: 0.6rem 1.2rem;
            font-family: 'Outfit', sans-serif;
            font-size: 0.85rem; font-weight: 600;
            cursor: pointer; flex-shrink: 0;
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .yl-track__submit:hover:not(:disabled) {
            background: #e55a2b;
            transform: scale(1.02);
            box-shadow: 0 4px 16px rgba(255,107,53,0.35);
        }
        .yl-track__submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

        .yl-track__hint {
            display: flex; align-items: center; gap: 0.4rem;
            margin-top: 0.75rem; font-size: 0.7rem;
            color: #9ca3af; flex-wrap: wrap;
            font-family: 'Outfit', sans-serif;
        }
        .yl-track__hint-label { font-weight: 500; color: #6b7280; }
        .yl-track__sample {
            background: #f3f4f6;
            border: 1px solid #e5e7eb;
            color: #4b5563;
            padding: 0.2rem 0.7rem;
            border-radius: 100px;
            font-size: 0.7rem;
            font-family: 'Outfit', monospace;
            cursor: pointer;
            transition: all 0.2s;
        }
        .yl-track__sample:hover {
            background: #ff6b35;
            color: #ffffff;
            border-color: #ff6b35;
        }

        .yl-track__divider {
            height: 1px;
            background: #e5e7eb;
            margin: 1.2rem 0;
        }

        /* ── Idle State ── */
        .yl-track__idle {
            display: flex; flex-direction: column;
            align-items: center; justify-content: center;
            text-align: center; gap: 1rem;
            padding: 2rem 0;
        }
        .yl-track__idle-icon {
            font-size: 3rem;
            color: #d1d5db;
            background: #f3f4f6;
            width: 72px;
            height: 72px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .yl-track__idle-icon i {
            background: linear-gradient(135deg, #d1d5db, #9ca3af);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .yl-track__idle-text {
            font-size: 0.88rem;
            color: #6b7280;
            line-height: 1.6;
            max-width: 280px;
            margin: 0;
            font-family: 'Outfit', sans-serif;
        }
        .yl-track__idle-chips {
            display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center;
        }
        .yl-track__idle-chips span {
            font-size: 0.75rem;
            font-weight: 600;
            color: #1a1a1a;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            padding: 0.3rem 0.9rem;
            border-radius: 100px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.04);
            font-family: 'Outfit', sans-serif;
        }

        /* ── Result ── */
        .yl-track__result {
            display: flex; flex-direction: column; gap: 1rem;
            animation: ylFadeUp 0.5s cubic-bezier(.22,.68,0,1.1) forwards;
        }
        @keyframes ylFadeUp {
            from { opacity: 0; transform: translateY(16px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .yl-track__mob-map-wrap { display: none; }

        /* Result Header */
        .yl-track__result-head {
            display: flex; align-items: center;
            justify-content: space-between; gap: 0.75rem; flex-wrap: wrap;
        }
        .yl-track__result-badge {
            display: inline-flex; align-items: center; gap: 0.5rem;
            background: #ecfdf5;
            border: 1px solid #6ee7b7;
            color: #059669;
            font-size: 0.7rem; font-weight: 700;
            letter-spacing: 0.06em; text-transform: uppercase;
            padding: 0.3rem 0.9rem;
            border-radius: 100px;
            font-family: 'Outfit', sans-serif;
        }
        .yl-track__result-badge i { color: #059669; font-size: 0.8rem; }
        .yl-track__result-id {
            font-family: 'Outfit', monospace;
            font-size: 0.8rem; font-weight: 600;
            color: #6b7280;
            letter-spacing: 0.06em;
            background: #f3f4f6;
            padding: 0.2rem 0.8rem;
            border-radius: 6px;
        }

        /* Stats Grid */
        .yl-track__result-stats {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            background: #faf8f6;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            overflow: hidden;
        }
        .yl-track__result-stat {
            display: flex; flex-direction: column;
            gap: 0.25rem; padding: 0.8rem 1rem;
        }
        .yl-track__result-stat-div {
            width: 1px; background: #e5e7eb;
        }
        .yl-track__stat-label {
            font-size: 0.6rem; font-weight: 700;
            letter-spacing: 0.08em; text-transform: uppercase;
            color: #6b7280;
            font-family: 'Outfit', sans-serif;
        }
        .yl-track__stat-val {
            font-size: 0.85rem; font-weight: 600;
            color: #1a1a1a;
            font-family: 'Outfit', sans-serif;
            line-height: 1.2;
        }
        .yl-track__stat-val--accent {
            color: #ff6b35;
        }

        /* Customer Info */
        .yl-track__customer-info {
            background: #faf8f6;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 0.85rem 1rem;
        }
        .yl-track__customer-info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.4rem 1.5rem;
            font-size: 0.82rem;
            color: #6b7280;
            font-family: 'Outfit', sans-serif;
        }
        .yl-track__customer-info-grid strong {
            color: #1a1a1a;
            font-weight: 600;
            margin-right: 0.3rem;
        }
        .yl-track__customer-info-grid .full-width {
            grid-column: 1 / -1;
        }
        .yl-track__customer-info-grid i {
            color: #ff6b35;
            width: 1.2rem;
            margin-right: 0.2rem;
        }
        .yl-track__route-display {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .yl-track__route-display .origin-dest {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 500;
            color: #1a1a1a;
        }
        .yl-track__route-display .arrow {
            color: #d1d5db;
            font-size: 0.8rem;
        }
        .yl-track__route-display .flag {
            font-size: 1.1rem;
            line-height: 1;
        }

        /* ── Timeline ── */
        .yl-track__timeline-header {
            display: flex; justify-content: space-between; align-items: center;
            margin-bottom: 0.6rem;
        }
        .yl-track__timeline-header span:first-child {
            font-size: 0.7rem; font-weight: 700;
            text-transform: uppercase; letter-spacing: 0.08em;
            color: #6b7280;
            font-family: 'Outfit', sans-serif;
        }
        .yl-track__timeline-header span:last-child {
            font-size: 0.7rem; font-weight: 700;
            color: #ff6b35;
            background: rgba(255,107,53,0.1);
            padding: 0.15rem 0.7rem;
            border-radius: 100px;
            font-family: 'Outfit', sans-serif;
        }

        .yl-track__timeline {
            display: flex; flex-direction: column;
            padding: 0.25rem 0;
            position: relative;
        }
        .yl-track__timeline::before {
            content: '';
            position: absolute;
            left: 11px;
            top: 20px;
            bottom: 20px;
            width: 2px;
            background: #e5e7eb;
            border-radius: 2px;
        }

        .yl-tl-step {
            display: flex; gap: 1rem;
            padding: 0.5rem 0;
            position: relative;
            align-items: flex-start;
        }
        .yl-tl-step:last-child { padding-bottom: 0; }

        .yl-tl-spine {
            display: flex; flex-direction: column;
            align-items: center; flex-shrink: 0;
            width: 24px;
            position: relative; z-index: 1;
        }
        .yl-tl-dot {
            width: 20px; height: 20px;
            border-radius: 50%;
            flex-shrink: 0;
            border: 2.5px solid #d1d5db;
            background: #ffffff;
            transition: all 0.4s ease;
            position: relative; z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.5rem;
            box-shadow: 0 2px 4px rgba(0,0,0,0.04);
        }
        .yl-tl-dot--done {
            background: #059669;
            border-color: #059669;
            color: #ffffff;
            box-shadow: 0 0 0 4px rgba(5,150,105,0.15);
        }
        .yl-tl-dot--active {
            background: #ff6b35;
            border-color: #ff6b35;
            color: #ffffff;
            box-shadow: 0 0 0 6px rgba(255,107,53,0.2);
            animation: ylPulseDot 2s ease-in-out infinite;
        }
        .yl-tl-dot--pending {
            background: #f3f4f6;
            border-color: #d1d5db;
        }
        @keyframes ylPulseDot {
            0%,100% { box-shadow: 0 0 0 4px rgba(255,107,53,0.2); }
            50% { box-shadow: 0 0 0 10px rgba(255,107,53,0.08); }
        }

        .yl-tl-content { flex: 1; padding-top: 0.05rem; }
        .yl-tl-name {
            font-size: 0.82rem; font-weight: 600;
            color: #6b7280;
            font-family: 'Outfit', sans-serif;
            transition: color 0.3s;
        }
        .yl-tl-name--done { color: #1a1a1a; }
        .yl-tl-name--active { color: #ff6b35; }
        .yl-tl-name--pending { color: #9ca3af; }

        .yl-tl-description {
            font-size: 0.68rem;
            color: #9ca3af;
            margin-top: 0.05rem;
            transition: color 0.3s;
            font-family: 'Outfit', sans-serif;
        }
        .yl-tl-description--done { color: #6b7280; }
        .yl-tl-description--active { color: #ff6b35; }
        .yl-tl-description--pending { color: #d1d5db; }

        .yl-tl-date {
            font-size: 0.6rem;
            color: #9ca3af;
            margin-top: 0.1rem;
            font-family: 'Outfit', monospace;
        }

        .yl-tl-status-badge {
            display: inline-block;
            font-size: 0.55rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            padding: 0.1rem 0.5rem;
            border-radius: 100px;
            margin-top: 0.1rem;
            font-family: 'Outfit', sans-serif;
        }
        .yl-tl-status-badge--done {
            background: #ecfdf5;
            color: #059669;
            border: 1px solid #6ee7b7;
        }
        .yl-tl-status-badge--active {
            background: #fff7ed;
            color: #ff6b35;
            border: 1px solid #ffd9c2;
            animation: ylPulseBadge 1.5s ease-in-out infinite;
        }
        .yl-tl-status-badge--pending {
            background: #f3f4f6;
            color: #9ca3af;
            border: 1px solid #e5e7eb;
        }
        @keyframes ylPulseBadge {
            0%,100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        /* ── Right Map ── */
        .yl-track__right {
            display: flex; flex-direction: column; gap: 1rem;
        }
        .yl-track__map-wrap {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.06);
            box-shadow: 0 8px 32px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.03);
            background: #e8e4dc;
            min-height: 400px;
        }
        .yl-track__map {
            height: 480px;
            width: 100%;
            display: block;
            background: #e8e4dc;
        }

        .yl-track__map-legend {
            position: absolute;
            bottom: 16px; left: 16px;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(0,0,0,0.06);
            border-radius: 100px;
            padding: 0.4rem 1.2rem;
            display: flex; align-items: center; gap: 1.2rem;
            z-index: 400;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            flex-wrap: wrap;
        }
        .yl-track__map-legend span {
            display: flex; align-items: center; gap: 0.4rem;
            font-size: 0.7rem; font-weight: 600;
            color: #1a1a1a;
            white-space: nowrap;
            font-family: 'Outfit', sans-serif;
        }
        .yl-track__legend-dot {
            width: 10px; height: 10px;
            border-radius: 50%;
            display: inline-block; flex-shrink: 0;
        }
        .yl-track__legend-dot--pulse {
            animation: ylLegendPulse 1.8s ease-in-out infinite;
        }
        @keyframes ylLegendPulse {
            0%,100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.5); }
        }

        .yl-track__map-idle {
            position: absolute; inset: 0;
            background: rgba(255,255,255,0.94);
            backdrop-filter: blur(4px);
            display: flex; flex-direction: column;
            align-items: center; justify-content: center;
            gap: 0.75rem; z-index: 500;
            transition: opacity 0.5s ease;
        }
        .yl-track__map-idle.is-hidden { opacity: 0; pointer-events: none; }
        .yl-track__map-idle i {
            font-size: 3rem;
            color: #d1d5db;
            background: #f3f4f6;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .yl-track__map-idle p {
            font-size: 0.9rem;
            color: #6b7280;
            text-align: center;
            line-height: 1.6;
            margin: 0;
            font-family: 'Outfit', sans-serif;
        }

        .yl-track__map-cta {
            display: flex; align-items: center;
            justify-content: space-between; gap: 1rem;
            background: #ffffff;
            border-radius: 16px;
            padding: 1rem 1.5rem;
            border: 1px solid rgba(0,0,0,0.04);
            box-shadow: 0 4px 16px rgba(0,0,0,0.04);
            flex-wrap: wrap;
        }
        .yl-track__map-cta-text strong {
            font-size: 0.9rem; font-weight: 700; color: #1a1a1a;
            font-family: 'Outfit', sans-serif;
        }
        .yl-track__map-cta-text span {
            font-size: 0.78rem; color: #6b7280;
            font-family: 'Outfit', sans-serif;
        }
        .yl-btn {
            display: inline-flex; align-items: center; gap: 0.5rem;
            padding: 0.5rem 1.2rem; border-radius: 100px;
            text-decoration: none; font-weight: 600; font-size: 0.8rem;
            transition: all 0.2s ease; border: none; cursor: pointer;
            font-family: 'Outfit', sans-serif;
        }
        .yl-btn--wa {
            background: #25D366;
            color: #ffffff;
            box-shadow: 0 4px 12px rgba(37,211,102,0.3);
        }
        .yl-btn--wa:hover {
            background: #20bd5a;
            transform: scale(1.02);
            box-shadow: 0 6px 20px rgba(37,211,102,0.4);
        }
        .yl-btn i { font-size: 1rem; }

        /* ── Leaflet ── */
        .yl-track__map .leaflet-tile { filter: saturate(0.85) brightness(0.98); }
        .yl-track__map .leaflet-control-attribution {
            background: rgba(255,255,255,0.85) !important;
            color: #6b7280 !important;
            font-size: 9px !important;
            border-radius: 4px 0 0 0 !important;
            padding: 2px 6px !important;
        }
        .yl-track__map .leaflet-control-attribution a { color: #ff6b35 !important; }
        .yl-track__map .leaflet-control-zoom {
            border: none !important;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
        }
        .yl-track__map .leaflet-control-zoom a {
            background: #ffffff !important;
            color: #1a1a1a !important;
            border-color: #e5e7eb !important;
        }
        .yl-track__map .leaflet-control-zoom a:hover {
            background: #f3f4f6 !important;
        }

        /* ── Responsive ── */
        @media (max-width: 1200px) {
            .yl-track__panel { grid-template-columns: 420px 1fr; gap: 1.5rem; }
        }
        @media (max-width: 991px) {
            .yl-track__panel { grid-template-columns: 1fr; gap: 1.5rem; }
            .yl-track__map { height: 380px; }
            .yl-track__left { max-height: none; }
            .yl-track__brand { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
            .yl-track__brand-right { font-size: 0.75rem; gap: 1rem; }
        }
        @media (max-width: 767px) {
            .yl-track { padding: 30px 0 25px; }
            .yl-track__brand { padding: 0.3rem 0 1rem; margin-bottom: 1.5rem; }
            .yl-track__brand-name { font-size: 1rem; }
            .yl-track__logo { width: 40px; height: 40px; border-radius: 10px; }
            .yl-track__brand-tag { font-size: 0.55rem; padding: 0.15rem 0.6rem; }
            .yl-track__brand-right { font-size: 0.65rem; gap: 0.5rem; }
            .yl-track__brand-right i { font-size: 0.7rem; }
            .yl-track__header { margin-bottom: 1.5rem; }
            .yl-track__sub { font-size: 0.88rem; }
            .yl-track__panel { gap: 1rem; padding: 0 0.5rem; }
            .yl-track__left { padding: 1.25rem; border-radius: 16px; }

            .yl-track__input { font-size: 0.85rem; padding: 0.6rem 0; }
            .yl-track__submit { padding: 0.5rem 1rem; font-size: 0.78rem; }
            .yl-track__hint { font-size: 0.65rem; gap: 0.3rem; }
            .yl-track__sample { font-size: 0.65rem; padding: 0.15rem 0.6rem; }

            .yl-track__result-stats { grid-template-columns: 1fr 1fr; }
            .yl-track__result-stat-div { display: none; }
            .yl-track__result-stat {
                padding: 0.6rem 0.7rem;
                border-right: 1px solid #e5e7eb;
                border-bottom: 1px solid #e5e7eb;
            }
            .yl-track__result-stat:nth-child(2) { border-right: none; }
            .yl-track__result-stat:nth-child(3) { border-bottom: none; }
            .yl-track__result-stat:nth-child(4) { border-right: none; border-bottom: none; }
            .yl-track__result-stat:last-child { grid-column: span 2; border-top: 1px solid #e5e7eb; }
            .yl-track__stat-label { font-size: 0.55rem; }
            .yl-track__stat-val { font-size: 0.78rem; }

            .yl-track__customer-info-grid {
                grid-template-columns: 1fr;
                gap: 0.2rem;
                font-size: 0.75rem;
            }
            .yl-track__customer-info-grid .full-width { grid-column: 1; }
            .yl-track__customer-info { padding: 0.7rem 0.8rem; }
            .yl-track__route-display .origin-dest { font-size: 0.8rem; }

            .yl-track__mob-map-wrap {
                display: block;
                border-radius: 12px;
                overflow: hidden;
                border: 1px solid #e5e7eb;
            }
            .yl-track__mob-map { height: 200px; width: 100%; display: block; }
            .yl-track__right { display: none; }

            .yl-track__idle { padding: 1.2rem 0; gap: 0.8rem; }
            .yl-track__idle-icon { width: 56px; height: 56px; font-size: 2.2rem; }
            .yl-track__idle-text { font-size: 0.8rem; max-width: 100%; }
            .yl-track__idle-chips span { font-size: 0.65rem; padding: 0.2rem 0.7rem; }

            .yl-tl-step { padding: 0.35rem 0; }
            .yl-tl-dot { width: 16px; height: 16px; font-size: 0.4rem; }
            .yl-tl-name { font-size: 0.75rem; }
            .yl-tl-description { font-size: 0.62rem; }
            .yl-tl-status-badge { font-size: 0.5rem; padding: 0.05rem 0.4rem; }
            .yl-track__timeline::before { left: 8px; }
            .yl-tl-spine { width: 18px; }
            .yl-track__timeline-header span { font-size: 0.6rem; }

            .yl-track__result-head { gap: 0.4rem; }
            .yl-track__result-badge { font-size: 0.6rem; padding: 0.2rem 0.7rem; }
            .yl-track__result-id { font-size: 0.7rem; padding: 0.15rem 0.6rem; }
        }
        @media (max-width: 400px) {
            .yl-track__left { padding: 0.8rem; }
            .yl-track__input-wrap { padding-left: 0.6rem; }
            .yl-track__input { font-size: 0.78rem; padding: 0.5rem 0; }
            .yl-track__submit { padding: 0.4rem 0.7rem; font-size: 0.72rem; }
            .yl-track__submit i { font-size: 0.7rem; }
            .yl-track__mob-map { height: 150px; }
            .yl-track__result-stats { grid-template-columns: 1fr; }
            .yl-track__result-stat {
                border-right: none;
                border-bottom: 1px solid #e5e7eb;
            }
            .yl-track__result-stat:last-child {
                grid-column: 1;
                border-bottom: none;
                border-top: none;
            }
            .yl-track__map-cta { flex-direction: column; align-items: stretch; text-align: center; }
            .yl-btn { justify-content: center; }
            .yl-track__brand-name { font-size: 0.9rem; }
            .yl-track__logo { width: 34px; height: 34px; }
            .yl-track__brand-right { font-size: 0.6rem; gap: 0.3rem; }
        }
        @media (prefers-reduced-motion: reduce) {
            .yl-tl-dot--active,
            .yl-track__legend-dot--pulse,
            .yl-tl-status-badge--active { animation: none !important; }
        }

