/* ===== LANDING PAGE STYLES (index.html) ===== */

/* Mobile-friendly form inputs - prevent auto-zoom */
input[type="text"],
input[type="tel"],
input[type="email"],
select,
button {
    font-size: 16px !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.btn,
button {
    min-height: 48px;
    font-size: 16px;
}

.hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Status check container */
.status-check-container {
    margin-top: 4rem;
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
}

.status-check-container h3 {
    color: var(--text-main);
    margin-bottom: 2rem;
    font-size: 1.75rem;
    font-weight: 800;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.status-check-container h3 i {
    color: var(--primary);
    font-size: 1.5rem;
}

.search-box {
    display: flex;
    gap: 12px;
    margin-bottom: 0.5rem;
    background: #f8fafc;
    padding: 8px;
    border-radius: 14px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.search-box:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1);
    background: #fff;
}

.search-box input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
    outline: none;
}

.search-box button {
    padding: 0 24px;
    height: 48px;
    border-radius: 10px;
    font-weight: 700;
}

.complaint-card {
    border: 2px solid #e0e0e0;
    padding: 20px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Hero complaint button */
.btn-complaint-hero {
    flex: 1;
    min-width: 200px;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-complaint-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-complaint-hero:hover::before {
    left: 100%;
}

.btn-complaint-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.5);
}

.btn-complaint-hero:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.btn-complaint-hero i {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ===== MODERN COMPLAINT TICKER ===== */
.ticker-container {
    display: flex;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 25px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ticker-label {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    padding: 0 25px;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
    flex-shrink: 0;
    position: relative;
}

.ticker-label::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #0052a3;
}

.ticker-wrap {
    flex: 1;
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    background: #f8f9fa;
}

.ticker-wrap::before,
.ticker-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    width: 50px;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.ticker-wrap::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa, transparent);
}

.ticker-wrap::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fa, transparent);
}

.ticker {
    display: inline-block;
    animation: marquee 35s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 3rem;
    font-size: 1rem;
    color: #444;
    font-weight: 500;
    border-right: 1px dashed #ccc;
    position: relative;
}

.ticker-item:last-child {
    border-right: none;
}

.ticker-item i {
    color: #0066cc;
    margin-right: 8px;
}

.ticker-item strong {
    color: #333;
    font-weight: 700;
}

.ticker-item .meta-info {
    font-size: 0.85em;
    color: #666;
    margin-left: 8px;
    background: #e9ecef;
    padding: 2px 8px;
    border-radius: 4px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-container:hover .ticker {
    animation-play-state: paused;
}

/* Badge colors */
.badge-pending {
    background-color: #ffc107;
    color: #212529;
    border: 1px solid #e0a800;
}

.badge-active {
    background-color: #17a2b8;
    color: white;
    border: 1px solid #117a8b;
}

.badge-closed {
    background-color: #28a745;
    color: white;
    border: 1px solid #1e7e34;
}

.badge-danger {
    background-color: #dc3545;
    color: white;
    border: 1px solid #bd2130;
}

.ticker-item .badge {
    margin-left: 10px;
    font-size: 0.75rem;
    padding: 0.35em 0.8em;
    vertical-align: middle;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ===== SEARCH RESULTS ===== */
.search-results {
    margin-top: 2rem;
    animation: fadeIn 0.5s ease-out;
}

.search-results .results-heading {
    margin: 2rem 0 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--border);
    padding-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.search-results .results-heading h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.search-results .results-count {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    background: #f1f5f9;
    padding: 0.2rem 0.75rem;
    border-radius: 20px;
}

.search-results .results-page-info {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Result card */
.result-card {
    background: #fff;
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.12);
}

.result-card .result-accent {
    height: 4px;
}
.result-card .result-accent.status-diterima { background: var(--warning); }
.result-card .result-accent.status-dalam-tindakan { background: var(--info); }
.result-card .result-accent.status-selesai { background: var(--success); }
.result-card .result-accent.status-ditolak { background: var(--danger); }

.result-card .result-body {
    padding: 1.35rem;
}

.result-card .result-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.result-card .result-id {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: #f1f5f9;
    padding: 0.2rem 0.55rem;
    border-radius: 5px;
    white-space: nowrap;
}

.result-card .result-badge-group {
    display: flex;
    gap: 0.4rem;
    align-items: center;
}

.result-card .result-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.result-card .result-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
    background: #f8fafc;
    border: 1px solid #e8ecf1;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 0.85rem;
}

.result-card .info-cell {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.result-card .info-cell i {
    width: 15px;
    text-align: center;
    color: var(--primary);
    opacity: 0.7;
    font-size: 0.7rem;
}

.result-card .info-cell.full {
    grid-column: 1 / -1;
}

.result-card .section-block {
    margin-top: 0.85rem;
}

.result-card .section-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.result-card .section-label i {
    font-size: 0.6rem;
}

.result-card .desc-text {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.55;
}

.result-card .reply-box {
    background: #f0f7ff;
    border: 1px solid #dbeafe;
    border-radius: 8px;
    padding: 0.75rem 0.85rem;
    margin-top: 0.85rem;
}

.result-card .reply-box .reply-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.65rem;
    font-weight: 700;
    color: #1e40af;
    background: #dbeafe;
    padding: 0.12rem 0.5rem;
    border-radius: 20px;
    margin-bottom: 0.35rem;
}

.result-card .reply-box .reply-text {
    font-size: 0.84rem;
    color: #1e3a8a;
    line-height: 1.5;
    font-style: italic;
}

.result-card .reply-box.tech-note {
    background: #fefce8;
    border-color: #fde68a;
}

.result-card .reply-box.tech-note .reply-badge {
    background: #fef3c7;
    color: #92400e;
}

.result-card .reply-box.tech-note .reply-text {
    color: #78350f;
}

/* Status Timeline */
.result-card .status-timeline {
    position: relative;
    margin-top: 0.85rem;
    padding: 0.85rem 0.5rem 0.5rem;
    background: #fafbfc;
    border-radius: 8px;
    border: 1px solid #e8ecf1;
}

.result-card .timeline-track {
    position: absolute;
    top: calc(0.85rem + 5px);
    left: 12%;
    right: 12%;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    z-index: 0;
}

.result-card .timeline-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.5s ease;
}

.result-card .timeline-fill.done {
    background: var(--success);
}

.result-card .timeline-fill.rejected {
    background: var(--danger);
}

.result-card .timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.result-card .timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    flex: 1;
    min-width: 0;
}

.result-card .timeline-step .step-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #cbd5e1;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-card .timeline-step .step-dot.done {
    background: var(--success);
    border-color: var(--success);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.result-card .timeline-step .step-dot.done .dot-check {
    color: #fff;
    font-size: 7px;
    line-height: 1;
}

.result-card .timeline-step .step-dot.active {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.2);
}

.result-card .timeline-step .step-dot.rejected {
    background: var(--danger);
    border-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.result-card .timeline-step .step-label {
    font-size: 0.62rem;
    font-weight: 600;
    color: #94a3b8;
    text-align: center;
    line-height: 1.15;
    white-space: nowrap;
}

.result-card .timeline-step .step-label.done { color: var(--success); }
.result-card .timeline-step .step-label.active { color: var(--primary); }
.result-card .timeline-step .step-label.rejected { color: var(--danger); }

.result-card .timeline-status-text {
    text-align: center;
    font-size: 0.68rem;
    font-weight: 700;
    margin-top: 0.5rem;
    color: var(--text-muted);
}

.result-card .timeline-status-text.done { color: var(--success); }
.result-card .timeline-status-text.active { color: var(--primary); }
.result-card .timeline-status-text.rejected { color: var(--danger); }

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 8px;
    margin-top: 0.5rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: transform 0.2s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.gallery-label.before { color: #64748b; }
.gallery-label.after { color: var(--success); }
.gallery-label.complaint { color: var(--primary); }

/* Photo Gallery Component */
.photo-gallery {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    background: #fafbfc;
    margin-top: 0.5rem;
}

.photo-gallery-header {
    padding: 0.45rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-bottom: 1px solid var(--border);
    background: #f1f5f9;
    color: var(--primary);
}

.photo-gallery-header .photo-count {
    margin-left: auto;
    background: rgba(30, 64, 175, 0.1);
    color: var(--primary);
    padding: 0.1rem 0.45rem;
    border-radius: 10px;
    font-size: 0.6rem;
    font-weight: 600;
}

.photo-gallery-body {
    padding: 0.55rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 7px;
}

.photo-thumb {
    aspect-ratio: 1;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background: #fff;
}

.photo-thumb:hover {
    transform: scale(1.05);
    z-index: 5;
    box-shadow: 0 3px 10px rgba(0,0,0,0.12);
    border-color: var(--primary);
}

.photo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-gallery .photo-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0.5rem;
    color: var(--text-muted);
    font-size: 0.78rem;
    gap: 0.4rem;
    grid-column: 1 / -1;
}

/* Before / After Comparison Grid */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.compare-col {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    background: #fafbfc;
}

.compare-col-header {
    padding: 0.45rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-bottom: 1px solid var(--border);
    background: #f1f5f9;
    color: var(--text-muted);
}

.compare-col-header.before { color: #475569; }
.compare-col-header.after { color: var(--success); }

.compare-col-header .compare-count {
    margin-left: auto;
    background: rgba(0,0,0,0.08);
    padding: 0.1rem 0.4rem;
    border-radius: 10px;
    font-size: 0.6rem;
    font-weight: 600;
}

.compare-col-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 6px;
    padding: 0.5rem;
}

.compare-thumb {
    aspect-ratio: 1;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: transform 0.2s ease;
}

.compare-thumb:hover {
    transform: scale(1.06);
    z-index: 5;
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
}

.compare-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.compare-col-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0.5rem;
    color: var(--text-muted);
    font-size: 0.78rem;
    gap: 0.4rem;
}

/* Duration Badge */
.duration-badge {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 0.3rem;
}

.duration-badge i {
    font-size: 0.7rem;
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 1.25rem;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
}

.btn-pagination {
    background: #fff;
    border: 1px solid var(--border);
    padding: 0.55rem 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-pagination:hover:not(:disabled) {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(30, 64, 175, 0.3);
}

.btn-pagination:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f1f5f9;
}

.page-info {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    min-width: 110px;
    text-align: center;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero h1 { font-size: 1.75rem; line-height: 1.3; }
    .hero p { font-size: 1rem; }
    #heroBtnsContainer {
        flex-direction: column;
        gap: 1rem !important;
        padding: 0 1rem;
        width: 95%;
        max-width: 95%;
    }
    #heroBtnsContainer .btn,
    #heroBtnsContainer .btn-complaint-hero {
        min-width: 100% !important;
        width: 100%;
        padding: 1.1rem 2rem;
        font-size: 1.1rem;
    }
    .status-check-container { padding: 2rem 1.5rem; margin-top: 2rem; max-width: 95%; width: 95%; }
    .status-check-container h3 { font-size: 1.35rem; margin-bottom: 1.25rem; text-align: center; }
    .search-box { flex-direction: column; gap: 1rem; }
    .search-box input,
    .search-box button { width: 100%; padding: 14px 16px; font-size: 16px; }
    .search-box button { justify-content: center; text-align: center; min-height: 52px; }
    .result-card .result-body { padding: 1.1rem; }
    .result-card .result-title { font-size: 1rem; }
    .result-card .result-info-grid { grid-template-columns: 1fr; gap: 0.4rem; padding: 0.65rem 0.75rem; }
    .result-card .info-cell { font-size: 0.75rem; }
    .result-card .desc-text { font-size: 0.84rem; }
    .result-card .reply-box { padding: 0.65rem 0.75rem; }
    .result-card .reply-text { font-size: 0.8rem; }
    .results-heading { padding-bottom: 0.5rem !important; }
    .results-heading h3 { font-size: 1.05rem; }
    .image-gallery { grid-template-columns: repeat(auto-fill, minmax(70px, 1fr)); gap: 6px; }
    .photo-gallery-body { grid-template-columns: repeat(auto-fill, minmax(75px, 1fr)); gap: 5px; padding: 0.4rem; }
    .photo-gallery-header { font-size: 0.65rem; padding: 0.35rem 0.6rem; }
    .photo-thumb { border-radius: 4px; }
    .result-card .status-timeline { padding: 0.7rem 0.35rem 0.4rem; }
    .result-card .timeline-track { top: calc(0.7rem + 4px); left: 10%; right: 10%; height: 3px; }
    .result-card .timeline-step .step-dot { width: 11px; height: 11px; }
    .result-card .timeline-step .step-label { font-size: 0.55rem; }
    .result-card .timeline-status-text { font-size: 0.62rem; }
    .compare-grid { grid-template-columns: 1fr; gap: 0.5rem; }
    .compare-col-images { grid-template-columns: repeat(auto-fill, minmax(60px, 1fr)); gap: 4px; padding: 0.4rem; }
    .compare-col-header { font-size: 0.65rem; padding: 0.35rem 0.6rem; }
    .compare-col-empty { padding: 1rem 0.5rem; font-size: 0.72rem; }
    .duration-badge { font-size: 0.7rem; padding: 0.3rem 0.6rem; }
    .container { padding: 1rem; }
    .ticker-label { padding: 0 15px; font-size: 0.8rem; }
    .ticker-item { font-size: 0.9rem; padding: 0 1.5rem; }
    .btn-complaint-hero { min-width: 100%; padding: 0.9rem 1.5rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.5rem; }
    .hero p { font-size: 0.95rem; }
    .status-check-container { padding: 1.75rem 1.25rem; margin-top: 1.5rem; border-radius: 12px; max-width: 95%; width: 95%; }
    .status-check-container h3 { font-size: 1.2rem; }
    .search-box input,
    .search-box button { padding: 10px; font-size: 16px; }
    .result-card .result-body { padding: 0.9rem; }
    .result-card .section-label { font-size: 0.62rem; }
    .result-card .reply-box .reply-badge { font-size: 0.6rem; }
    .result-card .timeline-step .step-dot { width: 8px; height: 8px; }
    .result-card .timeline-step .step-label { font-size: 0.5rem; }
    .result-card .timeline-track { top: calc(0.65rem + 3px); height: 2px; }
    .result-card .timeline-status-text { font-size: 0.58rem; }
    .gallery-label { font-size: 0.65rem; }
    .photo-gallery-body { grid-template-columns: repeat(auto-fill, minmax(65px, 1fr)); gap: 4px; padding: 0.3rem; }
    .photo-gallery-header { font-size: 0.6rem; padding: 0.3rem 0.5rem; }
    .compare-col-header { font-size: 0.6rem; padding: 0.3rem 0.5rem; }
    .compare-col-images { grid-template-columns: repeat(auto-fill, minmax(50px, 1fr)); gap: 3px; padding: 0.3rem; }
    .duration-badge { font-size: 0.65rem; }
}
