/* CSS for Thuy May page. Add the page wrapper class in UX Builder, then target it here. */
body {
    font-family: var(--font-sans);
    color: var(--text);
    line-height: 1.55;
    background:
        radial-gradient(circle at top left, rgba(255, 122, 0, 0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, var(--bg) 55%, #ffffff 100%);
}

.section-hero__rental {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.98) 34%, rgba(255, 255, 255, 0.72) 48%, rgba(255, 255, 255, 0.08) 68%, rgba(255, 255, 255, 0) 100%),
        url("http://copiersvn3.ishenseo.com/wp-content/uploads/2026/05/bg_123.png") right top/auto 100% no-repeat;
}

.section-hero__rental::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 22%;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.86) 72%, #fff 100%);
    z-index: 0;
}

.hero-copy h1 {
    font-size: clamp(34px, 5vw, 60px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
}

.hero-copy h1 span {
    color: var(--primary);
}

.hero-copy p {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 24px;
    max-width: 520px;
}

/* benefits =============== */
.benefits-col__rental {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 16px 28px rgba(26, 38, 56, 0.05);
    overflow: hidden;
}

.benefits__rental {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px;
    border-right: 1px solid var(--line);
}

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

.benefit-item strong {
    display: block;
    font-size: 17px;
    margin-bottom: 4px;
}

.benefit-item span {
    color: var(--muted);
    font-size: 14px;
}

.icon-pill {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-soft);
    color: var(--primary);
    flex: 0 0 38px;
}

.icon-pill i {
    font-size: 18px;
}

/* price================ */

.section-title__rental {
    text-align: center;
    margin-bottom: 24px;
}

.section-title__rental h2 {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.section-title__rental p {
    margin-top: 10px;
    font-size: 16px;
    color: var(--muted);
}

.section-title__rental::after {
    content: "";
    display: block;
    width: 72px;
    height: 4px;
    margin: 16px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-dark), #ffb455);
}


/* section row */
.plans__rental {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

/*  */


.plan-card__rental {
    position: relative;
    padding: 28px 24px 24px;
    border-radius: 26px;
    background-color: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 14px 28px rgba(26, 38, 56, 0.5);
}

.plan-card__rental.highlight {
    border-color: rgba(255, 122, 0, 0.4);
    box-shadow: 0 22px 40px rgba(255, 122, 0, 0.12);
    transform: translateY(-6px);
}

.plan-badge {
    position: absolute;
    left: 18px;
    right: 18px;
    top: -14px;
    min-height: 34px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.plan-card__rental h3 {
    text-align: center;
    font-size: 28px;
    line-height: 1.5;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.plan-card__rental .plan-sub {
    text-align: center;
    color: var(--muted);
    margin-bottom: 22px;
}

.plan-card__rental .price {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-dark);
    font-size: 18px;
}

.plan-card__rental .price strong {
    font-size: clamp(34px, 4vw, 48px);
    letter-spacing: -0.04;
    font-weight: 800;
}

.plan-card__rental .check-list {
    list-style: none;
    display: grid;
    gap: 14px;
    margin-bottom: 26px;
}

.plan-card__rental .check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #475467;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}

.plan-card__rental .check-list li i {
    color: var(--primary);
    font-size: 20px;
    flex: 0 0 18px;
    margin-top: 2px;
}

.plan-card__rental .plan-btn {
    width: 100%;
    padding: 10px 0;
    border-radius: 14px;
    border: 1px solid rgba(255, 122, 0, 0.34);
    background: var(--white);
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 16px;
    margin: 0;
}

.highlight .plan-btn {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border: none;
    color: var(--white);
}

.price-note__rental {
    margin-top: 18px;
    text-align: center;
    color: #8b95a7;
    font-size: 14px;
}

/* process-copy============== */
.process-banner__rental {
    align-items: stretch;
}

.process-banner__rental>.col>.col-inner {
    /* .col-inner la lop nam ben trong padding cua column, nen gap giua cac column van con. */
    width: 100%;
    height: 100%;
}


.process-copy__rental {
    padding: 26px 22px 0;
    width: 100%;
    height: 100%;
}

.process-copy__rental h2 {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.process-steps__rental {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.process-step__rental {
    text-align: center;
    position: relative;
}

.process-step__rental:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 30px;
    right: -11px;
    width: 22px;
    height: 2px;
    background: linear-gradient(90deg, #ffca93, var(--primary));
}

.process-step__rental .process-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    color: var(--primary);
    background: linear-gradient(180deg, #fff2e6, #ffffff);
    border: 1px solid rgba(255, 122, 0, 0.16);
    box-shadow: 0 14px 24px rgba(255, 122, 0, 0.08);
}

.process-step__rental .process-icon i {
    font-size: 20px;
}

.process-step__rental .step-no {
    display: block;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 6px;
}

.process-step__rental h3 {
    font-size: 15px;
    margin-bottom: 6px;
}

.process-step__rental p {
    font-size: 13px;
    color: var(--muted);
}

/* right */
.process-visual__rental {
    width: 100%;
    height: 100%;
    border-radius: 0 24px 24px 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.06)),
        url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
}

/* why-card__rental =============== */
.why-card__rental {
    padding: 36px 34px;
    border-radius: 30px;
    background: var(--white);
    box-shadow: 0 16px 30px rgba(26, 38, 56, 0.05);
    border: 1px solid var(--line);
}

/* tái sử dụng */
.reason-grid__rental {
    display: flex;
    align-items: stretch;
    gap: 16px;
}

.reason-item__rental {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 16px;
    border-radius: 22px;
    background: #fffdfa;
    border: 1px solid rgba(255, 122, 0, 0.12);
}

.reason-item__rental i {
    font-size: 18px;
}

.reason-item__rental strong {
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
}

.reason-item__rental span {
    color: var(--muted);
    font-size: 14px;
}

/* Brands */
.brands__rental {
    padding-top: 22px;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    align-items: center;
}

.brands__rental .brand-box {
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #384456;
    min-height: 86px;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    box-shadow: 0 10px 22px rgba(26, 38, 56, 0.04);
}

.brands__rental .brand-box:nth-child(2),
.brands__rental .brand-box:nth-child(4) {
    color: #cf2026;
}








@media (max-width:1024px) {

    /*  */
    .section-hero__rental {
        background:
            linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.85)),
            url("http://copiersvn.local/wp-content/uploads/2026/04/ChatGPT-Image-Apr-22-2026-01_31_15-PM.png") center/cover no-repeat;
    }
}





@media (max-width: 860px) {

    /* benefits__rental, reason-grid__rental */
    .reason-grid__rental {
        flex-wrap: wrap;
    }

    .benefits__rental {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }


    /* brands__rental */
    .brands__rental {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .benefit-item,
    .reason-item__rental {
        min-width: calc(50% - 8px);
    }

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

    .process-visual__rental {
        min-height: 320px;
        border-radius: 0 0 24px 24px;
    }

    /* plans__rental ------------------*/
    .plans__rental {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* process-steps__rental -------------------------*/
    .process-steps__rental {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    /*  */
    .process-step__rental:nth-child(3)::after {
        display: none;
    }
}

@media (max-width: 560px) {
    .benefit-item {
        min-width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--line);
    }

    /*  */
    .reason-item__rental {
        min-width: 100%;
    }

    /*  */
    .reason-grid__rental {
        flex-direction: column;
        align-items: stretch;
    }

    /*  */
    .benefits__rental {
        display: grid;
        grid-template-columns: 1fr;
    }


    /* brands__rental */
    .brands__rental {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    /*  process-steps__rental */
    .process-steps__rental {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step__rental::after {
        display: none;
    }

    .process-visual__rental {
        border-radius: 0 0 24px 24px;
    }
}