/*
 * Bilin Framework
 * Translation Request Tracking
 * Complete UI / Layout CSS
 *
 * Version B
 * Navy + Green + White
 * Orange + Red Accents
 *
 * @package Bilin_Framework
 */


/* =========================================================
   PAGE BASE
========================================================= */

#translation-tracking {
    --tt-navy: #16324f;
    --tt-navy-dark: #0d2742;
    --tt-navy-soft: #24496b;

    --tt-green: #008f72;
    --tt-green-dark: #00745d;
    --tt-green-light: #eaf7f3;

    --tt-orange: #f05a28;
    --tt-orange-dark: #d94a1f;
    --tt-orange-light: #fff4ec;

    --tt-red: #e45535;
    --tt-red-light: #fff0eb;

    --tt-bg: #f8fbfb;
    --tt-white: #ffffff;

    --tt-text: #17324d;
    --tt-muted: #667788;
    --tt-light-muted: #81909b;

    --tt-border: #dfe8e7;
    --tt-border-light: #e5eceb;

    direction: rtl;
    background: var(--tt-bg);
    color: var(--tt-text);
    overflow: hidden;
    isolation: isolate;
}


#translation-tracking *,
#translation-tracking *::before,
#translation-tracking *::after {
    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
========================================================= */

#translation-tracking .tt-container {
    width: min(1180px, calc(100% - 40px));
    margin-right: auto;
    margin-left: auto;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

#translation-tracking h1,
#translation-tracking h2,
#translation-tracking h3,
#translation-tracking p {
    margin-top: 0;
}

#translation-tracking h1,
#translation-tracking h2,
#translation-tracking h3 {
    line-height: 1.55;
}

#translation-tracking p {
    line-height: 2;
}


/* =========================================================
   EYEBROW
========================================================= */

#translation-tracking .tt-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--tt-green);
    font-size: 0.9rem;
    font-weight: 700;
}

#translation-tracking .tt-eyebrow::before {
    content: "";
    width: 28px;
    height: 3px;
    flex: 0 0 28px;
    border-radius: 10px;
    background: var(--tt-orange);
}


/* =========================================================
   HERO
========================================================= */

#translation-tracking .tt-hero {
    padding: 75px 0 60px;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(240, 90, 40, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 10%,
            rgba(0, 143, 114, 0.08),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f5faf9 100%
        );
}

#translation-tracking .tt-hero-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

#translation-tracking .tt-hero-content .tt-eyebrow {
    justify-content: center;
}

#translation-tracking .tt-hero h1 {
    margin-bottom: 18px;
    color: var(--tt-navy);
    font-size: clamp(2.1rem, 4vw, 3.6rem);
    font-weight: 800;
}

#translation-tracking .tt-hero p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--tt-muted);
    font-size: 1.05rem;
}


/* =========================================================
   GENERAL SECTION
========================================================= */

#translation-tracking .tt-section {
    padding: 75px 0;
}


/* =========================================================
   TRACKING CARD
========================================================= */

#translation-tracking .tt-tracking-card {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    border: 1px solid var(--tt-border);
    border-radius: 26px;
    background: var(--tt-white);
    box-shadow:
        0 18px 45px rgba(22, 50, 79, 0.08);
}


/* =========================================================
   CARD HEADING
========================================================= */

#translation-tracking .tt-card-heading {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 30px;
}

#translation-tracking .tt-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: var(--tt-green-light);
    font-size: 1.5rem;
    line-height: 1;
}

#translation-tracking .tt-card-heading h2 {
    margin-bottom: 8px;
    color: var(--tt-navy);
    font-size: 1.55rem;
}

#translation-tracking .tt-card-heading p {
    margin-bottom: 0;
    color: var(--tt-muted);
}

#translation-tracking .tt-card-heading strong {
    color: var(--tt-green);
}


/* =========================================================
   FORM
========================================================= */

#translation-tracking .tt-form {
    width: 100%;
}

#translation-tracking .tt-form-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 16px;
}

#translation-tracking .tt-form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

#translation-tracking .tt-form-field label {
    color: var(--tt-navy);
    font-size: 0.92rem;
    font-weight: 700;
}

#translation-tracking .tt-form-field input,
#translation-tracking .tt-form-field textarea,
#translation-tracking .tt-feedback-form input[type="text"],
#translation-tracking .tt-feedback-form textarea {
    width: 100%;
    border: 1px solid var(--tt-border);
    border-radius: 13px;
    outline: none;
    background: var(--tt-white);
    color: var(--tt-text);
    font-family: inherit;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

#translation-tracking .tt-form-field input {
    min-height: 52px;
    padding: 12px 16px;
    font-size: 1rem;
    direction: ltr;
    text-align: left;
}

#translation-tracking .tt-form-field input::placeholder,
#translation-tracking .tt-feedback-form input::placeholder,
#translation-tracking .tt-feedback-form textarea::placeholder {
    color: #9aa7b2;
}

#translation-tracking .tt-form-field input:focus,
#translation-tracking .tt-feedback-form input[type="text"]:focus,
#translation-tracking .tt-feedback-form textarea:focus {
    border-color: var(--tt-green);
    box-shadow: 0 0 0 3px rgba(0, 143, 114, 0.10);
}


/* =========================================================
   BUTTONS
========================================================= */

#translation-tracking .ot-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 12px 26px;
    border: 0;
    border-radius: 14px;
    text-decoration: none;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

#translation-tracking .ot-button:hover {
    transform: translateY(-2px);
}

#translation-tracking .ot-button-primary {
    background: var(--tt-orange);
    color: #ffffff;
    box-shadow:
        0 8px 20px rgba(240, 90, 40, 0.18);
}

#translation-tracking .ot-button-primary:hover {
    background: var(--tt-orange-dark);
    color: #ffffff;
}

#translation-tracking .ot-button-secondary {
    border: 1px solid var(--tt-green);
    background: var(--tt-white);
    color: var(--tt-green-dark);
}

#translation-tracking .ot-button-secondary:hover {
    background: var(--tt-green-light);
}


/* =========================================================
   ERROR / SUCCESS MESSAGE
========================================================= */

#translation-tracking .tt-message {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 22px;
    padding: 16px 18px;
    border-radius: 14px;
    line-height: 1.9;
}

#translation-tracking .tt-message-error {
    border: 1px solid #f1c7bd;
    background: #fff4f1;
    color: #9d3c29;
}

#translation-tracking .tt-message-success {
    border: 1px solid #bfe3d8;
    background: #f1faf7;
    color: var(--tt-green-dark);
}

#translation-tracking .tt-message strong {
    font-weight: 800;
}


/* =========================================================
   RESULT SECTION
========================================================= */

#translation-tracking .tt-result-section {
    padding-top: 25px;
    padding-bottom: 75px;
    background: var(--tt-bg);
}


/* =========================================================
   RESULT CARD
========================================================= */

#translation-tracking .tt-result-card {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 42px;
    border: 1px solid var(--tt-border);
    border-radius: 28px;
    background: var(--tt-white);
    box-shadow:
        0 18px 50px rgba(22, 50, 79, 0.08);
}


/* =========================================================
   RESULT HEADER
========================================================= */

#translation-tracking .tt-result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 30px;
}

#translation-tracking .tt-result-header > div:first-child {
    min-width: 0;
}

#translation-tracking .tt-result-header h2 {
    margin-bottom: 0;
    color: var(--tt-navy);
    font-size: 1.9rem;
}


/* =========================================================
   STATUS
========================================================= */

#translation-tracking .tt-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    flex: 0 0 auto;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 700;
}

#translation-tracking .tt-status-dot {
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    border-radius: 50%;
    background: currentColor;
}

#translation-tracking .tt-status.is-new {
    background: var(--tt-green-light);
    color: var(--tt-green);
}

#translation-tracking .tt-status.is-reviewing {
    background: #fff6df;
    color: #9a6810;
}

#translation-tracking .tt-status.is-quote,
#translation-tracking .tt-status.is-quoted {
    background: var(--tt-orange-light);
    color: #d95c38;
}

#translation-tracking .tt-status.is-waiting {
    background: #fff6df;
    color: #9a6810;
}

#translation-tracking .tt-status.is-translating {
    background: #edf5ff;
    color: #24679b;
}

#translation-tracking .tt-status.is-certification,
#translation-tracking .tt-status.is-certifying {
    background: #f4efff;
    color: #7653a8;
}

#translation-tracking .tt-status.is-ready {
    background: var(--tt-green-light);
    color: var(--tt-green-dark);
}

#translation-tracking .tt-status.is-completed {
    background: var(--tt-green-light);
    color: var(--tt-green-dark);
}

#translation-tracking .tt-status.is-cancelled {
    background: var(--tt-red-light);
    color: #b33d2c;
}


/* =========================================================
   REQUEST NUMBER
========================================================= */

#translation-tracking .tt-request-number-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    margin-bottom: 30px;
    padding: 22px 25px;
    border: 1px solid rgba(240, 90, 40, 0.18);
    border-radius: 18px;
    background: #fff8f4;
}

#translation-tracking .tt-request-number-box span {
    color: var(--tt-muted);
    font-size: 0.92rem;
}

#translation-tracking .tt-request-number-box strong {
    color: var(--tt-orange);
    font-family: Arial, sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    direction: ltr;
}


/* =========================================================
   INFO GRID
========================================================= */

#translation-tracking .tt-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
    margin-bottom: 40px;
}

#translation-tracking .tt-info-item {
    min-width: 0;
    padding: 20px;
    border: 1px solid var(--tt-border-light);
    border-radius: 16px;
    background: #fbfdfd;
}

#translation-tracking .tt-info-item span {
    display: block;
    margin-bottom: 7px;
    color: #71808d;
    font-size: 0.84rem;
}

#translation-tracking .tt-info-item strong {
    display: block;
    color: var(--tt-navy);
    font-size: 0.98rem;
    line-height: 1.8;
    overflow-wrap: anywhere;
}


/* =========================================================
   PROGRESS
========================================================= */

#translation-tracking .tt-progress {
    width: 100%;
    padding-top: 10px;
}

#translation-tracking .tt-progress h3 {
    margin-bottom: 28px;
    color: var(--tt-navy);
    font-size: 1.35rem;
}


/*
 * Desktop / Tablet
 *
 * Six steps
 * Five connecting lines
 *
 * IMPORTANT:
 * The whole process remains on ONE horizontal line.
 */

#translation-tracking .tt-progress-list {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(28px, 0.42fr)
        minmax(0, 1fr)
        minmax(28px, 0.42fr)
        minmax(0, 1fr)
        minmax(28px, 0.42fr)
        minmax(0, 1fr)
        minmax(28px, 0.42fr)
        minmax(0, 1fr)
        minmax(28px, 0.42fr)
        minmax(0, 1fr);
    align-items: start;
    width: 100%;
    gap: 0;
}

#translation-tracking .tt-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
    gap: 9px;
    text-align: center;
}

#translation-tracking .tt-progress-step > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border: 2px solid var(--tt-border);
    border-radius: 50%;
    background: var(--tt-white);
    color: var(--tt-light-muted);
    font-size: 0.88rem;
    font-weight: 800;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

#translation-tracking .tt-progress-step strong {
    display: block;
    max-width: none;
    width: 100%;
    padding: 0 2px;
    color: var(--tt-muted);
    font-size: 0.73rem;
    line-height: 1.6;
    white-space: nowrap;
}

#translation-tracking .tt-progress-step.is-active > span {
    border-color: var(--tt-orange);
    background: var(--tt-orange);
    color: #ffffff;
    box-shadow:
        0 6px 15px rgba(240, 90, 40, 0.18);
}

#translation-tracking .tt-progress-step.is-active strong {
    color: var(--tt-navy);
    font-weight: 800;
}

#translation-tracking .tt-progress-step.is-completed > span {
    border-color: var(--tt-green);
    background: var(--tt-green);
    color: #ffffff;
}

#translation-tracking .tt-progress-step.is-completed strong {
    color: var(--tt-green-dark);
}

#translation-tracking .tt-progress-line {
    width: 100%;
    height: 2px;
    margin-top: 20px;
    background: var(--tt-border);
}

#translation-tracking .tt-progress-line.is-completed {
    background: var(--tt-green);
}


/* =========================================================
   QUOTE / COST
========================================================= */

#translation-tracking .tt-quote-card {
    margin-top: 38px;
    padding: 28px;
    border: 1px solid var(--tt-border);
    border-radius: 22px;
    background: #fbfdfd;
}

#translation-tracking .tt-quote-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
}

#translation-tracking .tt-quote-header h3 {
    margin-bottom: 0;
    color: var(--tt-navy);
    font-size: 1.35rem;
}

#translation-tracking .tt-quote-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 14px;
    background: var(--tt-orange-light);
    font-size: 1.35rem;
}

#translation-tracking .tt-quote-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

#translation-tracking .tt-quote-item {
    padding: 18px;
    border: 1px solid var(--tt-border-light);
    border-radius: 15px;
    background: var(--tt-white);
}

#translation-tracking .tt-quote-item span {
    display: block;
    margin-bottom: 7px;
    color: var(--tt-muted);
    font-size: 0.84rem;
}

#translation-tracking .tt-quote-item strong {
    display: block;
    color: var(--tt-navy);
    font-size: 1rem;
    line-height: 1.8;
}

#translation-tracking .tt-quote-item small {
    color: var(--tt-muted);
    font-size: 0.78rem;
    font-weight: 400;
}


/* =========================================================
   QUOTE NOTE
========================================================= */

#translation-tracking .tt-quote-note {
    margin-top: 18px;
    padding: 17px 18px;
    border-right: 3px solid var(--tt-orange);
    border-radius: 10px;
    background: var(--tt-orange-light);
    color: var(--tt-muted);
    line-height: 1.9;
    font-size: 0.9rem;
}


/* =========================================================
   COST CONFIRMATION
========================================================= */

#translation-tracking .tt-cost-confirmation {
    margin-top: 22px;
    padding: 22px;
    border: 1px solid var(--tt-border);
    border-radius: 18px;
    background: var(--tt-white);
}

#translation-tracking .tt-cost-confirmation h4 {
    margin: 0 0 8px;
    color: var(--tt-navy);
    font-size: 1.05rem;
}

#translation-tracking .tt-cost-confirmation p {
    margin-bottom: 18px;
    color: var(--tt-muted);
    font-size: 0.9rem;
}

#translation-tracking .tt-cost-confirmation form {
    display: flex;
    align-items: center;
    gap: 12px;
}


/* =========================================================
   RESULT NOTICE
========================================================= */

#translation-tracking .tt-result-notice {
    margin-top: 38px;
    padding: 20px 22px;
    border-right: 4px solid var(--tt-green);
    border-radius: 12px;
    background: #f1faf7;
}

#translation-tracking .tt-result-notice strong {
    display: block;
    margin-bottom: 5px;
    color: var(--tt-green-dark);
}

#translation-tracking .tt-result-notice p {
    margin-bottom: 0;
    color: var(--tt-muted);
    font-size: 0.9rem;
}

/* =========================================================
   CUSTOMER FEEDBACK — HORIZONTAL STAR RATING
========================================================= */

/* ارتفاع فیلد نام نمایشی */
.tt-feedback-field input[type="text"] {
    min-height: 56px;
    height: 56px;
    padding: 14px 16px;
    line-height: 1.5;
    box-sizing: border-box;
}


.tt-feedback-rating-field > label {
    display: block;
    margin-bottom: 12px;
}

.tt-feedback-rating {
    display: flex;
    direction: rtl;
    width: 100%;
    border: 1px solid #dfe8e7;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(22, 50, 79, 0.08);
}

.tt-feedback-rating input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.tt-feedback-rating label {
    flex: 1 1 20%;
    min-width: 0;
    min-height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;

    padding: 10px 8px;

    background: #ffffff;
    color: var(--tt-navy);

    border-left: 1px solid #e5eceb;

    cursor: pointer;
    user-select: none;

    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.tt-feedback-rating label:last-of-type {
    border-left: 0;
}

/* ستاره */
.tt-feedback-rating .tt-rating-star {
    color: #f3b323;
    font-size: 21px;
    line-height: 1;
    transition: color .2s ease, transform .2s ease;
}

/* شماره */
.tt-feedback-rating .tt-rating-number {
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
}

/* عنوان */
.tt-feedback-rating .tt-rating-text {
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

/* Hover */
.tt-feedback-rating label:hover {
    background: #fff4ec;
    color: var(--tt-orange);
}

.tt-feedback-rating label:hover .tt-rating-star {
    color: var(--tt-orange);
    transform: scale(1.12);
}

/* انتخاب‌شده */
.tt-feedback-rating input:checked + label {
    background: linear-gradient(
        135deg,
        var(--tt-green) 0%,
        #00a884 100%
    );
    color: #ffffff;
    box-shadow:
        inset 0 -4px 0 rgba(0, 0, 0, 0.10);
}

.tt-feedback-rating input:checked + label .tt-rating-star {
    color: #ffd166;
    transform: scale(1.15);
}

.tt-feedback-rating input:focus-visible + label {
    outline: 3px solid rgba(240, 90, 40, 0.35);
    outline-offset: -3px;
}


/* ---------------------------------------------------------
   Mobile
--------------------------------------------------------- */

@media (max-width: 700px) {

    .tt-feedback-rating {
        border-radius: 14px;
    }

    .tt-feedback-rating label {
        min-height: 64px;
        padding: 8px 3px;
        gap: 3px;
    }

    .tt-feedback-rating .tt-rating-star {
        font-size: 17px;
    }

    .tt-feedback-rating .tt-rating-number {
        font-size: 12px;
    }

    .tt-feedback-rating .tt-rating-text {
        font-size: 9px;
    }

    /* نام نمایشی در موبایل */
    .tt-feedback-field input[type="text"] {
        min-height: 52px;
        height: 52px;
        padding: 12px 14px;
    }
}

/* =========================================================
   HELP
========================================================= */

#translation-tracking .tt-help {
    padding: 70px 0;
    background: var(--tt-white);
}

#translation-tracking .tt-help-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 35px 40px;
    border: 1px solid var(--tt-border);
    border-radius: 25px;
    background:
        linear-gradient(
            135deg,
            #f7fbfb,
            #ffffff
        );
}

#translation-tracking .tt-help-box > div:first-child {
    min-width: 0;
}

#translation-tracking .tt-help-box h2 {
    margin-bottom: 10px;
    color: var(--tt-navy);
    font-size: 1.45rem;
}

#translation-tracking .tt-help-box p {
    max-width: 680px;
    margin-bottom: 0;
    color: var(--tt-muted);
}


/* =========================================================
   LINKS
========================================================= */

#translation-tracking a {
    text-decoration: none;
}

#translation-tracking a:hover {
    text-decoration: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    #translation-tracking .tt-container {
        width: min(100% - 32px, 1180px);
    }

    #translation-tracking .tt-result-card {
        padding: 32px;
    }

    /*
     * Keep the process horizontal.
     * Six stages must stay on one line.
     */

    #translation-tracking .tt-progress-list {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(20px, 0.32fr)
            minmax(0, 1fr)
            minmax(20px, 0.32fr)
            minmax(0, 1fr)
            minmax(20px, 0.32fr)
            minmax(0, 1fr)
            minmax(20px, 0.32fr)
            minmax(0, 1fr)
            minmax(20px, 0.32fr)
            minmax(0, 1fr);
    }

    #translation-tracking .tt-progress-step > span {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    #translation-tracking .tt-progress-step strong {
        font-size: 0.66rem;
        white-space: nowrap;
    }

    #translation-tracking .tt-progress-line {
        margin-top: 18px;
    }

    #translation-tracking .tt-feedback-card {
        padding: 28px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    #translation-tracking .tt-container {
        width: min(100% - 28px, 1180px);
    }

    #translation-tracking .tt-hero {
        padding: 55px 0 45px;
    }

    #translation-tracking .tt-section {
        padding: 55px 0;
    }

    #translation-tracking .tt-result-section {
        padding-top: 15px;
        padding-bottom: 55px;
    }

    #translation-tracking .tt-tracking-card,
    #translation-tracking .tt-result-card {
        padding: 25px 20px;
        border-radius: 20px;
    }

    #translation-tracking .tt-card-heading {
        gap: 12px;
    }

    #translation-tracking .tt-card-icon {
        flex-basis: 46px;
        width: 46px;
        height: 46px;
        border-radius: 13px;
    }

    #translation-tracking .tt-card-heading h2 {
        font-size: 1.3rem;
    }

    #translation-tracking .tt-form-row {
        grid-template-columns: 1fr;
    }

    #translation-tracking .tt-form-row .tt-submit {
        width: 100%;
    }

    #translation-tracking .tt-result-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    #translation-tracking .tt-result-header h2 {
        font-size: 1.55rem;
    }

    #translation-tracking .tt-status {
        align-self: flex-start;
    }

    #translation-tracking .tt-request-number-box {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    #translation-tracking .tt-info-grid {
        grid-template-columns: 1fr;
    }

    #translation-tracking .tt-quote-grid {
        grid-template-columns: 1fr;
    }

    #translation-tracking .tt-cost-confirmation form {
        flex-direction: column;
        align-items: stretch;
    }

    /*
     * Mobile progress:
     * Vertical timeline for readability.
     */

    #translation-tracking .tt-progress-list {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    #translation-tracking .tt-progress-step {
        position: relative;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        min-height: 52px;
        gap: 14px;
        text-align: right;
    }

    #translation-tracking .tt-progress-step > span {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
    }

    #translation-tracking .tt-progress-step strong {
        width: auto;
        max-width: none;
        font-size: 0.88rem;
        white-space: normal;
        text-align: right;
    }

    #translation-tracking .tt-progress-line {
        display: block;
        width: 2px;
        height: 18px;
        margin: 0;
        margin-right: 19px;
    }

    #translation-tracking .tt-feedback-card {
        margin-top: 28px;
        padding: 24px 20px;
        border-radius: 20px;
    }

    #translation-tracking .tt-feedback-header {
        gap: 12px;
    }

    #translation-tracking .tt-feedback-icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        border-radius: 13px;
    }

    #translation-tracking .tt-feedback-header h3 {
        font-size: 1.25rem;
    }

    #translation-tracking .tt-feedback-rating {
        gap: 6px;
    }

    #translation-tracking .tt-feedback-rating label {
        width: 46px;
        height: 44px;
    }

    #translation-tracking .tt-feedback-rating-labels {
        width: 256px;
    }

    #translation-tracking .tt-feedback-submit .ot-button {
        width: 100%;
    }

    #translation-tracking .tt-feedback-success {
        padding: 18px;
    }

    #translation-tracking .tt-help {
        padding: 55px 0;
    }

    #translation-tracking .tt-help-box {
        flex-direction: column;
        align-items: stretch;
        padding: 28px 22px;
        text-align: center;
    }

    #translation-tracking .tt-help-box .ot-button {
        width: 100%;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    #translation-tracking .tt-container {
        width: calc(100% - 24px);
    }

    #translation-tracking .tt-hero h1 {
        font-size: 2rem;
    }

    #translation-tracking .tt-hero p {
        font-size: 0.95rem;
    }

    #translation-tracking .tt-status {
        font-size: 0.82rem;
    }

    #translation-tracking .tt-request-number-box {
        padding: 18px;
    }

    #translation-tracking .tt-info-item {
        padding: 17px;
    }

    #translation-tracking .tt-result-notice {
        padding: 18px;
    }

    #translation-tracking .tt-feedback-rating label {
        width: 42px;
        height: 42px;
    }

    #translation-tracking .tt-feedback-rating-labels {
        width: 230px;
        font-size: 0.7rem;
    }
}

```css
/* =========================================================
   FILE EXCHANGE — CUSTOMER
   Translation Request Tracking
========================================================= */

/* ---------------------------------------------------------
   Delivered / Requested File Sections
--------------------------------------------------------- */

#translation-tracking .tt-document-request-files {
    margin-top: 18px;
}

#translation-tracking .tt-document-request-files > span {
    display: block;
    margin-bottom: 10px;
    color: #25323a;
    font-size: .88rem;
    font-weight: 800;
    line-height: 1.7;
}

#translation-tracking .tt-document-request-files ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

#translation-tracking .tt-document-request-files li {
    margin: 0;
    padding: 0;
}

/* ---------------------------------------------------------
   File Item
--------------------------------------------------------- */

#translation-tracking .tt-document-request-files li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 50px;
    padding: 12px 15px;
    border: 1px solid #e8e3dc;
    border-radius: 12px;
    background: #fffdfa;
    color: #25323a;
    font-size: .82rem;
    font-weight: 700;
    line-height: 1.7;
    text-decoration: none;
    transition:
        border-color .2s ease,
        background-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}

#translation-tracking .tt-document-request-files li a::before {
    content: "PDF";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 9px;
    background: #f5eee6;
    color: #c75b45;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .03em;
}

#translation-tracking .tt-document-request-files li a:hover {
    border-color: #d9cec3;
    background: #fffaf5;
    box-shadow: 0 5px 18px rgba(37, 50, 58, .06);
    transform: translateY(-1px);
}

#translation-tracking .tt-document-request-files li a:focus-visible {
    outline: 3px solid rgba(199, 91, 69, .2);
    outline-offset: 2px;
}

/* ---------------------------------------------------------
   Delivered Translation Files
--------------------------------------------------------- */

#translation-tracking .tt-translation-delivery-files {
    margin-top: 28px;
}

#translation-tracking .tt-translation-delivery-files
.tt-document-requests-header {
    margin-bottom: 16px;
}

#translation-tracking .tt-translation-delivery-files
.tt-document-requests-header .tt-eyebrow {
    display: inline-block;
    margin-bottom: 6px;
}

#translation-tracking .tt-translation-delivery-files
.tt-document-requests-header h3 {
    margin: 0;
    color: #25323a;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.8;
}

#translation-tracking .tt-translation-delivery-files
.tt-document-requests-header p {
    margin: 8px 0 0;
    color: #7a858c;
    font-size: .82rem;
    line-height: 1.9;
}

/* ---------------------------------------------------------
   Delivered Files — Green Bilin Accent
--------------------------------------------------------- */

#translation-tracking .tt-translation-delivery-files
.tt-document-request-files li a {
    border-color: #dcece7;
    background: #fbfefd;
}

#translation-tracking .tt-translation-delivery-files
.tt-document-request-files li a::before {
    background: #eaf7f3;
    color: #008f72;
}

#translation-tracking .tt-translation-delivery-files
.tt-document-request-files li a:hover {
    border-color: #b9ddd3;
    background: #f7fcfa;
    box-shadow: 0 5px 18px rgba(0, 143, 114, .07);
}

/* ---------------------------------------------------------
   Mobile
--------------------------------------------------------- */

@media (max-width: 700px) {

    #translation-tracking .tt-document-request-files {
        margin-top: 16px;
    }

    #translation-tracking .tt-document-request-files li a {
        min-height: 48px;
        padding: 10px 12px;
        gap: 10px;
        font-size: .78rem;
    }

    #translation-tracking .tt-document-request-files li a::before {
        flex-basis: 36px;
        width: 36px;
        height: 36px;
        font-size: .58rem;
    }

    #translation-tracking .tt-translation-delivery-files {
        margin-top: 22px;
    }

    #translation-tracking .tt-translation-delivery-files
    .tt-document-requests-header h3 {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {

    #translation-tracking .tt-document-request-files li a {
        padding: 10px;
        font-size: .75rem;
    }

    #translation-tracking .tt-document-request-files li a::before {
        flex-basis: 34px;
        width: 34px;
        height: 34px;
    }

    #translation-tracking .tt-translation-delivery-files
    .tt-document-requests-header h3 {
        font-size: 1rem;
    }

    #translation-tracking .tt-translation-delivery-files
    .tt-document-requests-header p {
        font-size: .76rem;
    }
}
