
/* =========================================
   TB JERSEY - CUSTOMIZATION PROCESS
========================================= */

.tb-custom-process,
.tb-custom-process *{
    box-sizing:border-box;
}

.tb-custom-process{
    --tb-red:#d71920;
    --tb-dark:#111111;
    --tb-text:#333333;
    --tb-muted:#686868;
    --tb-line:#e8e8e8;
    --tb-light:#f6f6f6;
    --tb-white:#ffffff;

    width:100%;
    max-width:1240px;
    margin:80px auto;
    padding:0 24px;
    color:var(--tb-text);
    font-family:Arial, Helvetica, sans-serif;
}


/* =========================================
   HEADER
========================================= */

.tb-process-header{
    max-width:850px;
    margin:0 auto 38px;
    text-align:center;
}

.tb-process-eyebrow{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    margin-bottom:18px;
    padding:8px 15px;
    border:1px solid rgba(215,25,32,.18);
    border-radius:999px;
    background:rgba(215,25,32,.055);
    color:var(--tb-red);
    font-size:13px;
    line-height:1.3;
    font-weight:700;
    letter-spacing:1.1px;
    text-transform:uppercase;
}

.tb-process-eyebrow::before{
    content:"";
    width:7px;
    height:7px;
    border-radius:50%;
    background:var(--tb-red);
    flex-shrink:0;
}

.tb-process-header h1{
    margin:0 0 18px;
    color:var(--tb-dark);
    font-size:42px;
    line-height:1.16;
    font-weight:750;
    letter-spacing:-1.2px;
}

.tb-process-header p{
    max-width:790px;
    margin:0 auto;
    color:var(--tb-muted);
    font-size:17px;
    line-height:1.8;
}



/* =========================================
   SEO INTRO
========================================= */

.tb-seo-intro{
    max-width:900px;
    margin:0 auto 42px;
    padding:30px 32px;
    border:1px solid var(--tb-line);
    border-radius:16px;
    background:var(--tb-light);
}

.tb-seo-intro h2{
    margin:0 0 14px;
    color:var(--tb-dark);
    font-size:26px;
    line-height:1.3;
}

.tb-seo-intro p{
    margin:0 0 12px;
    color:var(--tb-muted);
    font-size:15px;
    line-height:1.75;
}

.tb-seo-intro p:last-of-type{
    margin-bottom:0;
}

.tb-seo-links{
    display:flex;
    flex-wrap:wrap;
    gap:12px 18px;
    margin-top:18px;
}

.tb-seo-links a{
    color:var(--tb-red);
    font-size:14px;
    font-weight:700;
    text-decoration:underline;
    text-underline-offset:3px;
}


/* =========================================
   TRUST BAR
========================================= */

.tb-trust-bar{
    display:grid;
    grid-template-columns:repeat(4, minmax(0,1fr));
    margin:42px 0 82px;
    border:1px solid var(--tb-line);
    border-radius:18px;
    background:var(--tb-white);
    box-shadow:0 15px 50px rgba(0,0,0,.055);
    overflow:hidden;
}

.tb-trust-item{
    min-height:150px;
    padding:27px 22px;
    text-align:center;
    border-right:1px solid var(--tb-line);
}

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

.tb-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:44px;
    height:44px;
    margin:0 auto 15px;
    border-radius:50%;
    background:rgba(215,25,32,.08);
    color:var(--tb-red);
}

.tb-icon svg{
    width:21px;
    height:21px;
    fill:none;
    stroke:currentColor;
    stroke-width:2;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.tb-trust-item h3{
    margin:0 0 8px;
    color:var(--tb-dark);
    font-size:15px;
    line-height:1.42;
    font-weight:700;
}

.tb-trust-item p{
    margin:0;
    color:var(--tb-muted);
    font-size:13px;
    line-height:1.58;
}


/* =========================================
   PROCESS TIMELINE
========================================= */

.tb-process-list{
    position:relative;
}

.tb-process-list::before{
    content:"";
    position:absolute;
    top:40px;
    bottom:40px;
    left:50%;
    width:1px;
    background:linear-gradient(
        to bottom,
        transparent,
        var(--tb-line) 7%,
        var(--tb-line) 93%,
        transparent
    );
    transform:translateX(-50%);
}

.tb-process-step{
    position:relative;
    display:grid;
    grid-template-columns:minmax(0,1fr) 84px minmax(0,1fr);
    align-items:center;
    margin-bottom:88px;
}

.tb-process-step:last-child{
    margin-bottom:66px;
}

.tb-step-image{
    grid-column:1;
}

.tb-step-content{
    grid-column:3;
}

.tb-process-step:nth-child(even) .tb-step-image{
    grid-column:3;
    grid-row:1;
}

.tb-process-step:nth-child(even) .tb-step-content{
    grid-column:1;
    grid-row:1;
    text-align:right;
}


/* =========================================
   TIMELINE MARKER
========================================= */

.tb-step-marker{
    position:relative;
    z-index:3;
    grid-column:2;
    grid-row:1;
    display:flex;
    align-items:center;
    justify-content:center;
    width:48px;
    height:48px;
    margin:auto;
    border:7px solid var(--tb-white);
    border-radius:50%;
    background:var(--tb-red);
    color:var(--tb-white);
    font-size:14px;
    line-height:1;
    font-weight:700;
    box-shadow:0 0 0 1px rgba(215,25,32,.16);
}


/* =========================================
   PROCESS IMAGES
   图片完整展示，不裁切
========================================= */

.tb-step-image{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    aspect-ratio:4 / 3;
    padding:10px;
    border:1px solid #ededed;
    border-radius:18px;
    background:#f5f5f5;
    box-shadow:0 18px 48px rgba(0,0,0,.09);
    overflow:hidden;
}

.tb-step-image::after{
    content:"";
    position:absolute;
    inset:0;
    z-index:2;
    border-radius:inherit;
    pointer-events:none;
    background:linear-gradient(
        180deg,
        rgba(255,255,255,.025),
        rgba(0,0,0,.012)
    );
}

.tb-step-image img{
    position:relative;
    z-index:1;
    display:block;
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
    border-radius:12px;
    transition:transform .45s ease;
}

.tb-step-image:hover img{
    transform:scale(1.008);
}


/* =========================================
   PROCESS CONTENT
========================================= */

.tb-step-content{
    padding:22px 10px 22px 38px;
}

.tb-process-step:nth-child(even) .tb-step-content{
    padding:22px 38px 22px 10px;
}

.tb-step-label{
    display:inline-block;
    margin-bottom:12px;
    color:var(--tb-red);
    font-size:12px;
    line-height:1.3;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
}

.tb-step-content h3{
    margin:0 0 14px;
    color:var(--tb-dark);
    font-size:29px;
    line-height:1.25;
    font-weight:750;
    letter-spacing:-.45px;
}

.tb-step-content p{
    margin:0;
    color:var(--tb-muted);
    font-size:16px;
    line-height:1.8;
}

.tb-step-detail{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:18px;
    padding:9px 13px;
    border-radius:8px;
    background:var(--tb-light);
    color:#444444;
    font-size:13px;
    line-height:1.45;
    font-weight:700;
    text-align:left;
}

.tb-process-step:nth-child(even) .tb-step-detail{
    justify-content:flex-end;
}

.tb-step-detail svg{
    width:17px;
    height:17px;
    flex-shrink:0;
    fill:none;
    stroke:var(--tb-red);
    stroke-width:2;
    stroke-linecap:round;
    stroke-linejoin:round;
}


/* =========================================
   CUSTOMER BENEFITS
========================================= */

.tb-quality-panel{
    margin-top:18px;
    padding:58px 44px;
    border-radius:22px;
    background:var(--tb-dark);
    color:var(--tb-white);
}

.tb-quality-heading{
    max-width:730px;
    margin:0 auto 40px;
    text-align:center;
}

.tb-quality-heading span{
    display:block;
    margin-bottom:12px;
    color:#ff777c;
    font-size:12px;
    line-height:1.4;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
}

.tb-quality-heading h2{
    margin:0 0 14px;
    color:var(--tb-white);
    font-size:32px;
    line-height:1.25;
}

.tb-quality-heading p{
    margin:0;
    color:rgba(255,255,255,.67);
    font-size:15px;
    line-height:1.75;
}

.tb-quality-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:18px;
}

.tb-quality-card{
    padding:29px 24px;
    border:1px solid rgba(255,255,255,.1);
    border-radius:15px;
    background:rgba(255,255,255,.055);
}

.tb-quality-check{
    display:flex;
    align-items:center;
    justify-content:center;
    width:36px;
    height:36px;
    margin-bottom:17px;
    border-radius:50%;
    background:var(--tb-red);
    color:var(--tb-white);
}

.tb-quality-check svg{
    width:19px;
    height:19px;
    fill:none;
    stroke:currentColor;
    stroke-width:2.5;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.tb-quality-card h3{
    margin:0 0 10px;
    color:var(--tb-white);
    font-size:18px;
    line-height:1.35;
}

.tb-quality-card p{
    margin:0;
    color:rgba(255,255,255,.66);
    font-size:14px;
    line-height:1.7;
}



/* =========================================
   FAQ
========================================= */

.tb-process-faq{
    max-width:900px;
    margin:68px auto 0;
}

.tb-process-faq-header{
    margin-bottom:24px;
    text-align:center;
}

.tb-process-faq-header h2{
    margin:0 0 10px;
    color:var(--tb-dark);
    font-size:30px;
    line-height:1.3;
}

.tb-process-faq-header p{
    margin:0;
    color:var(--tb-muted);
    font-size:15px;
    line-height:1.7;
}

.tb-process-faq details{
    margin-bottom:12px;
    border:1px solid var(--tb-line);
    border-radius:12px;
    background:var(--tb-white);
}

.tb-process-faq summary{
    position:relative;
    padding:19px 48px 19px 20px;
    color:var(--tb-dark);
    font-size:16px;
    line-height:1.45;
    font-weight:700;
    cursor:pointer;
    list-style:none;
}

.tb-process-faq summary::-webkit-details-marker{display:none;}

.tb-process-faq summary::after{
    content:"+";
    position:absolute;
    top:50%;
    right:20px;
    color:var(--tb-red);
    font-size:24px;
    transform:translateY(-50%);
}

.tb-process-faq details[open] summary::after{content:"−";}

.tb-process-faq details p{
    margin:0;
    padding:0 20px 20px;
    color:var(--tb-muted);
    font-size:14px;
    line-height:1.75;
}


/* =========================================
   FOOTER CTA
========================================= */

.tb-process-footer{
    padding:56px 20px 8px;
    text-align:center;
}

.tb-process-footer h2{
    margin:0 0 13px;
    color:var(--tb-dark);
    font-size:30px;
    line-height:1.25;
}

.tb-process-footer p{
    max-width:680px;
    margin:0 auto 27px;
    color:var(--tb-muted);
    font-size:15px;
    line-height:1.75;
}

.tb-process-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:50px;
    padding:14px 27px;
    border:1px solid var(--tb-dark);
    border-radius:8px;
    background:var(--tb-dark);
    color:var(--tb-white) !important;
    font-size:15px;
    line-height:1;
    font-weight:700;
    text-decoration:none !important;
    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.tb-process-button:hover{
    border-color:var(--tb-red);
    background:var(--tb-red);
    transform:translateY(-2px);
}


/* =========================================
   TABLET
========================================= */

@media(max-width:960px){

    .tb-process-header h1{
        font-size:36px;
    }

    .tb-trust-bar{
        grid-template-columns:repeat(2, minmax(0,1fr));
    }

    .tb-trust-item:nth-child(2){
        border-right:none;
    }

    .tb-trust-item:nth-child(-n+2){
        border-bottom:1px solid var(--tb-line);
    }

    .tb-process-list::before{
        left:28px;
    }

    .tb-process-step,
    .tb-process-step:nth-child(even){
        grid-template-columns:56px minmax(0,1fr);
        align-items:start;
        margin-bottom:64px;
    }

    .tb-step-marker,
    .tb-process-step:nth-child(even) .tb-step-marker{
        grid-column:1;
        grid-row:1;
        width:44px;
        height:44px;
        margin:17px auto 0 0;
    }

    .tb-step-image,
    .tb-process-step:nth-child(even) .tb-step-image{
        grid-column:2;
        grid-row:1;
    }

    .tb-step-content,
    .tb-process-step:nth-child(even) .tb-step-content{
        grid-column:2;
        grid-row:2;
        padding:26px 4px 0;
        text-align:left;
    }

    .tb-process-step:nth-child(even) .tb-step-detail{
        justify-content:flex-start;
    }

    .tb-quality-grid{
        grid-template-columns:1fr;
    }
}


/* =========================================
   MOBILE
========================================= */

@media(max-width:600px){

    .tb-custom-process{
        margin:55px auto;
        padding:0 15px;
    }

    .tb-process-header{
        margin-bottom:28px;
    }

    .tb-process-eyebrow{
        margin-bottom:15px;
        padding:7px 12px;
        font-size:11px;
        letter-spacing:.8px;
    }

    .tb-process-header h1{
        font-size:29px;
        letter-spacing:-.6px;
    }

    .tb-process-header p{
        font-size:15px;
        line-height:1.7;
    }

    .tb-trust-bar{
        grid-template-columns:1fr;
        margin:31px 0 57px;
        border-radius:14px;
    }

    .tb-trust-item{
        min-height:auto;
        padding:22px 18px;
        border-right:none;
        border-bottom:1px solid var(--tb-line);
    }

    .tb-trust-item:nth-child(2){
        border-bottom:1px solid var(--tb-line);
    }

    .tb-trust-item:last-child{
        border-bottom:none;
    }

    .tb-process-list::before{
        display:none;
    }

    .tb-process-step,
    .tb-process-step:nth-child(even){
        display:flex;
        flex-direction:column;
        margin-bottom:52px;
    }

    .tb-step-marker,
    .tb-process-step:nth-child(even) .tb-step-marker{
        order:1;
        display:flex;
        width:auto;
        height:auto;
        margin:0 0 12px;
        border:0;
        border-radius:0;
        background:transparent;
        color:var(--tb-red);
        box-shadow:none;
        justify-content:flex-start;
        font-size:12px;
        letter-spacing:1.5px;
    }

    .tb-step-marker::before{
        content:"STEP ";
    }

    .tb-step-image,
    .tb-process-step:nth-child(even) .tb-step-image{
        order:2;
        width:100%;
        aspect-ratio:auto;
        min-height:0;
        padding:6px;
        border-radius:13px;
    }

    .tb-step-image img{
        width:100%;
        height:auto;
        max-height:none;
        object-fit:contain;
        border-radius:9px;
    }

    .tb-step-content,
    .tb-process-step:nth-child(even) .tb-step-content{
        order:3;
        width:100%;
        padding:22px 2px 0;
        text-align:left;
    }

    .tb-step-label{
        display:none;
    }

    .tb-step-content h3{
        margin-bottom:10px;
        font-size:23px;
    }

    .tb-step-content p{
        font-size:15px;
        line-height:1.72;
    }

    .tb-step-detail{
        margin-top:15px;
        font-size:12px;
    }

    .tb-quality-panel{
        padding:43px 18px 21px;
        border-radius:16px;
    }

    .tb-quality-heading{
        margin-bottom:28px;
    }

    .tb-quality-heading h2{
        font-size:25px;
    }

    .tb-quality-card{
        padding:23px 20px;
    }


    .tb-seo-intro{
        margin-bottom:30px;
        padding:22px 18px;
    }

    .tb-seo-intro h2{
        font-size:22px;
    }

    .tb-seo-links{
        flex-direction:column;
        gap:10px;
    }

    .tb-process-faq{
        margin-top:48px;
    }

    .tb-process-faq-header h2{
        font-size:25px;
    }

    .tb-process-footer{
        padding:44px 5px 0;
    }

    .tb-process-footer h2{
        font-size:25px;
    }

    .tb-process-button{
        width:100%;
    }
}
