/* 
    PAGE: LASER MIIN LANDING PAGE
    SCOPED TO: #laser-co2-landing-wrapper
*/

/* ==========================================================================
   GLOBAL UI COMPONENTS (Dùng chung cho trang Laser Miin)
   ========================================================================== */
.splide__arrow {
    background: rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    width: 44px !important;
    height: 44px !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;

    /* QUAN TRỌNG NHẤT: Đẩy nút lên trên cùng để không bị hình đè */
    z-index: 99 !important;
}

.splide__arrow:hover {
    background: rgba(255, 255, 255, 0.9) !important;
}

/* Màu icon mũi tên bên trong */
.splide__arrow svg {
    fill: #7F6337 !important;
}

/* Vị trí mũi tên trên Desktop (Nằm rìa mép ngoài slider) */
.splide__arrow--prev {
    left: -20px !important;
    /* Đẩy ra ngoài rìa trái */
}

.splide__arrow--next {
    right: -20px !important;
    /* Đẩy ra ngoài rìa phải */
}

/* --- Tinh chỉnh vị trí mũi tên cho Mobile --- */
@media (max-width: 991px) {

    /* Đưa mũi tên nhích vào trong lồng hình ảnh để dễ bấm trên điện thoại */
    .splide__arrow--prev {
        left: 10px !important;
    }

    .splide__arrow--next {
        right: 10px !important;
    }
}

/* Nút CTA chuẩn hệ thống Laser Miin */
.laser-co2-cta {
    display: inline-flex;
    height: 53px;
    padding: 22.714px 30.286px;
    justify-content: center;
    align-items: center;
    gap: 45.429px;
    border-radius: 169.6px;
    border: 0.757px solid rgba(255, 255, 255, 0.90);
    background: linear-gradient(90deg, #A88143 0%, #D4AE70 50%, #A88143 100%);
    background-size: 200% auto;
    box-shadow: 0 4px 15px rgba(127, 99, 55, 0.3), inset 1px 1px 2px #E8D9A8, inset -1px -1px 2px #E8D9A8;
    color: #FFF;
    font-family: 'Geomanist', sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s ease;
    animation: pulse-gentle 2.5s ease-in-out infinite;
}

.laser-co2-cta:hover {
    background-position: right center;
    box-shadow: 0 15px 30px rgba(168, 129, 67, 0.6);
    transform: translateY(-2px);
    color: #FFF;
}

@keyframes pulse-gentle {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(127, 99, 55, 0.3), inset 1px 1px 2px #E8D9A8, inset -1px -1px 2px #E8D9A8, 0 0 0 0 rgba(191, 147, 78, 0.4);
    }

    50% {
        transform: scale(1.04);
        box-shadow: 0 4px 15px rgba(127, 99, 55, 0.3), inset 1px 1px 2px #E8D9A8, inset -1px -1px 2px #E8D9A8, 0 0 0 8px rgba(191, 147, 78, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(127, 99, 55, 0.3), inset 1px 1px 2px #E8D9A8, inset -1px -1px 2px #E8D9A8, 0 0 0 0 rgba(191, 147, 78, 0);
    }
}

strong {
    font-weight: 500;
}

.co2-hero .registration-form-container br {
    display: none;
}

/* ==========================================================================
   SECTION: HERO BANNER
   ========================================================================== */
.co2-hero {
    position: relative;
    width: 100%;
    background: #f3f3f3;
    /* Nền xám nhạt trung tính như thiết kế */
    overflow: hidden;
    padding: 60px 0;
}

.co2-hero__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1401px;
    margin: 0 auto;
}

.co2-hero__left {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    z-index: 2;
}

.co2-hero__right {
    flex: 0 0 60%;
    z-index: 1;
}

.co2-hero__title img {
    max-width: 100%;
    height: auto;
}

.co2-hero__deal-img-wrap {
    position: relative;
    display: inline-block;
}

.co2-hero__deal img {
    max-width: 100%;
    height: auto;
    width: 396px;
}

.co2-hero__deal {
    margin: 0 auto;
}

/* Nút CTA Desktop nằm trên ảnh Deal */
.co2-hero__cta {
    position: absolute;
    bottom: -10%;
    left: 23%;
    transform: translateX(-50%);
    display: inline-flex;
    height: 48px;
    padding: 0 40px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    background: linear-gradient(90deg, #A88143 0%, #D4AE70 50%, #A88143 100%);
    background-size: 200% auto;
    box-shadow: 0 4px 15px rgba(127, 99, 55, 0.4);
    color: #FFF;
    font-family: 'Geomanist', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    animation: pulse-gentle 2.5s ease-in-out infinite;
    white-space: nowrap;
}

.co2-hero__cta:hover {
    background-position: right center;
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 8px 20px rgba(168, 129, 67, 0.5);
}

.co2-hero__media-img {
    width: 100%;
    height: auto;
    display: block;
}

/* --------------------------------------------------
   DESKTOP & TABLET (>= 992px)
-------------------------------------------------- */
@media (min-width: 992px) {
    .co2-hero {
        min-height: 800px;
        display: flex;
        align-items: center;
    }
}

/* --------------------------------------------------
   MOBILE (< 992px)
-------------------------------------------------- */
@media (max-width: 991px) {
    .co2-hero {
        padding: 40px 0 60px 0;
    }

    .co2-hero__container {
        display: flex;
        flex-direction: column;
        gap: 0;
        /* Reset gap để margin tự quản lý khoảng cách */
    }

    /* Thứ tự Mobile: Title -> Media -> Deal -> Form */
    .co2-hero__left {
        display: contents;
        /* Giữ nguyên để sắp xếp order */
    }

    .co2-hero__title {
        order: 1;
        position: relative;
        z-index: 10;
        /* Bắt buộc để nổi lên trên ảnh */
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .co2-hero__title img {
        max-width: 100%;
        padding: 5rem 1rem 0 1rem;
    }

    .co2-hero__right {
        order: 2;
        position: relative;
        z-index: 5;
        /* Chìm xuống dưới để không đè form */
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    .co2-hero__right img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }

    .co2-hero__deal {
        order: 3;
        position: relative;
        z-index: 10;
        /* Nổi lên trên ảnh */
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .co2-hero__deal img {
        max-width: 100%;
        height: auto;
        padding: 0 2rem;
    }

    .co2-hero__form-mb {
        order: 4;
        position: relative;
        z-index: 10;
        /* Nổi lên trên ảnh */
        width: 100%;
    }

    .co2-hero .desktop-only {
        display: none !important;
    }

    .co2-hero__form-inner {
        background: #fff;
        padding: 25px 20px;
        border-radius: 30px;
        border: 1px solid #BF934E;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        position: relative;
        z-index: 10;
        margin: 0 15px;
    }

    /* CSS cho Form CF7 bên trong Hero Mobile */
    .co2-hero__form-inner input[type="text"],
    .co2-hero__form-inner input[type="tel"],
    .co2-hero__form-inner select {
        width: 100%;
        height: 45px;
        border-radius: 30px;
        border: 1px solid #ddd;
        background: #f9f9f9;
        margin-bottom: 15px;
        padding: 0 15px;
        font-size: 15px;
    }

    .co2-hero__form-inner br {
        display: none !important;
    }

    .co2-hero__form-inner .wpcf7-submit {
        width: 100%;
        height: 50px;
        border-radius: 30px;
        background: linear-gradient(90deg, #A88143 0%, #D4AE70 50%, #A88143 100%);
        color: #fff;
        border: none;
        text-transform: uppercase;
        font-weight: 600;
        box-shadow: 0 5px 15px rgba(168, 129, 67, 0.3);
    }
}

/* ==========================================================================
   UI COMPONENT: BỘ TIÊU ĐỀ DÙNG CHUNG (Tái sử dụng cho mọi section)
   ========================================================================== */
.co2-section-title {
    display: flex;
    flex-direction: column;
    z-index: 5;
}

.co2-section-title__row {
    display: flex;
    align-items: center;
    gap: 15px;
    line-height: 1;
}

/* Nút Badge "LASER MIIN" */
.co2-section-title__badge {
    color: #7F6337;
    position: relative;
    font-feature-settings: 'liga' off;
    font-family: 'SVN-Famous', sans-serif;
    font-size: 49px;
    font-weight: 400;
    line-height: 1.33;
    /* 65.17px */
    text-transform: uppercase;
    display: inline-flex;
    height: 55px;
    padding: 4.5px 27px 0 27px;
    justify-content: center;
    align-items: center;
    border-radius: 151.2px;
    border: 0.9px solid #FFF;
    background: rgba(255, 255, 255, 0.20);
    box-shadow: 0 0 12.42px 0 rgba(255, 255, 255, 0.60) inset, 0 4.05px 9.18px 0 rgba(191, 147, 78, 0.39);
}

/* Dòng chữ "cho làn da" */
.co2-section-title__main {
    text-align: center;
    font-family: 'SVN-Famous', sans-serif;
    font-size: 70px;
    font-weight: 400;
    line-height: 1;
    /* Bổ sung màu vàng Gold cho chữ */
    background: linear-gradient(360deg, #B69655 0%, #E3C871 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

/* Dòng chữ "sáng khỏe, mịn màng" */
.co2-section-title__sub {
    color: #B69655;
    text-align: center;
    font-family: "UVN SangSong", serif;
    font-size: 80px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -1.6px;
    padding-top: 10px;
    position: relative;
}

/* ==========================================================================
   UI COMPONENT: BỘ KHUNG TEXT TRẮNG
   ========================================================================== */
.co2-text-box {
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.50);
    box-shadow: 0 0 8px 0 #FFF inset, 0 4px 9.8px 0 rgba(173, 140, 87, 0.26);
    padding: 20px 25px;
    /* Khoảng thở bên trong box */
    backdrop-filter: blur(5px);
    z-index: 5;
}

.co2-text-box__content {
    color: #7F6337;
    text-align: justify;
    font-family: 'Geomanist', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.33;
    /* 23.94px */
    margin: 0;
}


/* ==========================================================================
   SECTION: MÁY LASER CO2 FRACTIONAL (Layout Specifics)
   ========================================================================== */
.co2-machine {
    position: relative;
    width: 100%;
    background-color: #f5f5f5;
    padding: 20px 0;
    overflow: hidden;
}

.co2-machine__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.co2-machine__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Background Text to nằm chèn lên nội dung */
.co2-machine__bg-text {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #FFF;
    font-family: 'Geomanist', sans-serif;
    font-size: 154px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    opacity: 0.6;
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    text-transform: uppercase;
}

.co2-machine__container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
    max-width: 1401px;
    justify-content: center;
}

.co2-machine__left {
    flex: 0 0 29%;
}

.co2-machine__right {
    flex: 0 0 55%;
    display: flex;
    flex-direction: column;
}

.co2-machine__main-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Căn chỉnh cụm Tiêu đề cho Section Machine */
.co2-machine__title {
    align-items: flex-end;
    margin-bottom: 20px;
    text-align: right;
}

.co2-machine__title .co2-section-title__row {
    width: 96%;
}

.co2-machine__title .co2-section-title__main {
    font-size: 70px;
    margin-bottom: -25px;
}

.co2-machine__title .co2-section-title__sub {
    font-size: 100px;
    margin-right: 15px;
}

/* Bộ 3 Icon */
.co2-machine__icons {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    margin-bottom: -38px;
    justify-content: flex-end;
}

.co2-machine__icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.co2-machine__icon-img {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 1px solid #BF934E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 15px;
}

.co2-machine__icon-img img {
    max-width: 100%;
    height: auto;
}

.co2-machine__icon-label {
    font-family: 'Geomanist', sans-serif;
    font-size: 15px;
    color: #BF934E;
    font-weight: 400;
}

/* Hình sóng âm Laser */
.co2-machine__wave {
    margin-bottom: 40px;
    align-self: baseline;
    width: 440px;
}

.co2-machine__wave img {
    max-width: 100%;
    height: auto;
    display: block;
}


.co2-machine__desc p {
    font-family: 'Geomanist', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
	text-align: justify;
    margin-bottom: 20px;
}

/* --------------------------------------------------
   MOBILE LAYOUT (< 992px)
-------------------------------------------------- */
@media (max-width: 991px) {
    .co2-machine {
        padding: 10px 0;
    }

    .co2-machine__container {
        flex-direction: column;
        text-align: center;
    }

    .co2-machine__left {
        display: none;
        /* Ẩn hình máy to trên mobile nếu muốn theo đúng layout stack */
    }

    .co2-machine__right {
        flex: 0 0 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    /* Thứ tự Mobile: Tiêu đề -> Icon -> Mô tả -> Wave */
    .co2-machine__title {
        order: 1;
        align-items: center;
        text-align: center;
        margin-bottom: 30px;
    }

    .co2-machine__title .co2-section-title__row {
        justify-content: center;
    }

    .co2-machine__title .co2-section-title__main {
        font-size: 47px;
    }

    .co2-machine__title .co2-section-title__sub {
        font-size: 45px;
        margin-right: 0;
        bottom: -9px;
        left: 10px;
    }

    .co2-machine__icons {
        order: 2;
        justify-content: center;
        margin-bottom: 40px;
        gap: 15px;
    }

    .co2-machine__desc {
        order: 3;
        text-align: center;
        align-self: center;
        max-width: 100%;
        padding: 0 10px;
    }

    .co2-machine__wave {
        order: 4;
        align-self: center;
        margin-top: 20px;
        width: 100%;
        margin-bottom: 0;
        /* BỔ SUNG DÒNG NÀY: Ép khối này giãn full 100% trên điện thoại */
    }

    .co2-machine__wave img.mobile-only {
        width: 100%;
        height: auto;
        display: block;
    }

    .co2-machine__bg-text {
        font-size: 60px;
        opacity: 0.2;
    }

    .co2-machine .co2-section-title .co2-section-title__badge {
        font-size: 23px;
        height: 45px;
        padding: 12px 20px;
        bottom: -17px;
        right: 0;
    }
}

/* Rescale thông số bộ Tiêu Đề cho Mobile */
.co2-machine .co2-section-title__badge {
    font-size: 44px;
    height: 60px;
    padding: 11px 20px;
    bottom: -20px;
    right: 23px;
}


.co2-section-title__main {
    font-size: 40px;
}

.co2-section-title__sub {
    font-size: 50px;
}

/* 3. 3 tia Laser xuống thứ 3 */
.co2-machine__pulses-mb {
    order: 3;
    width: 100%;
    max-width: 350px;
    display: block;
    margin-bottom: 10px;
}

/* 4. Khối Text hợp nhất ở cuối cùng */
.co2-machine__text-left {
    order: 4;
    width: 100%;
    /* Tắt bo góc và viền đáy để nối vào khối dưới */
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding-bottom: 10px;
    box-shadow: 0 4px 8px 0 rgba(255, 255, 255, 1) inset, 0 -2px 0 0 rgba(255, 255, 255, 0.5) inset;
}

.co2-machine__text-right {
    order: 5;
    width: 100%;
    /* Tắt bo góc trên và kéo đè lên khối trên */
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-top: -20px;
    padding-top: 5px;
    box-shadow: 0 -4px 8px 0 rgba(255, 255, 255, 1) inset, 0 4px 9.8px 0 rgba(173, 140, 87, 0.26);
}

.co2-text-box__content {
    font-size: 20px;
}


/* --- Khung giới hạn nội dung 1200px dùng chung --- */
.co2-container {
    width: 100%;
    max-width: 1300px;
    margin-left: auto !important;
    margin-right: auto !important;
    position: relative;
}


/* ==========================================================================
   SECTION: MỞ KHÓA LÀN DA (UNLOCK)
   ========================================================================== */
.co2-unlock {
    position: relative;
    padding: 40px 0;
    background-color: #f5f5f5;
    overflow: hidden;
}

.co2-unlock__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.co2-unlock__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.co2-unlock__container {
    position: relative;
    z-index: 5;
}

.co2-unlock .co2-section-title__main {
    font-size: 58px;
    margin-top: 13px;
}

.co2-unlock__title {
    margin-bottom: 50px;
    text-align: center;
}

.co2-unlock__title .co2-section-title__row {
    justify-content: center;
}

.co2-unlock__grid-wrapper {
    margin: 0 auto;
    width: 100%;
    max-width: 811px;
    /* Chiều rộng theo yêu cầu */
}

.co2-unlock__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
}

.co2-unlock__card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.co2-unlock__card-img {
    width: 232px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: -25px;
    position: relative;
    z-index: 1;
    border: 1px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.co2-unlock__card-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Khối Card Tình Trạng */
.co2-unlock__card-status {
    display: flex;
    width: 211px;
    height: 67px;
    padding: 4.5px 27px 0 27px;
    justify-content: center;
    align-items: center;
    gap: 9px;
    border-radius: 30px;
    border: 0.9px solid #FFF;
    background: rgba(255, 255, 255, 0.80);
    box-shadow: 0 0 12.42px 0 rgba(255, 255, 255, 0.60) inset, 0 4.05px 9.18px 0 rgba(191, 147, 78, 0.39);
    color: #7F6337;
    text-align: center;
    font-family: 'Geomanist', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    /* 19.8px */

    position: relative;
    z-index: 2;
    margin-bottom: 10px;
}

/* Khối Card Mô Tả */
.co2-unlock__card-desc {
    display: flex;
    width: 211px;
    height: 137px;
    padding: 4.5px 20px 0 20px;
    justify-content: center;
    align-items: center;
    gap: 9px;

    border-radius: 30px;
    border: 0.9px solid #FFF;
    background: rgba(255, 255, 255, 0.50);
    box-shadow: 0 0 12.42px 0 rgba(255, 255, 255, 0.60) inset, 0 4.05px 9.18px 0 rgba(191, 147, 78, 0.39);

    color: #000;
    text-align: justify;
    font-family: 'Geomanist', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    /* 17.6px */

    position: relative;
    z-index: 1;
}

/* --------------------------------------------------
   MOBILE LAYOUT (< 992px)
-------------------------------------------------- */
@media (max-width: 991px) {
    .co2-unlock {
        padding: 10px 0;
    }

    .co2-unlock__title {
        margin-bottom: 5px;
    }

    .co2-unlock__title .co2-section-title__badge {
        font-size: 22px;
        height: 38px;
        padding: 0px 10px;
        position: relative;
        right: -23%;
    }

    .co2-unlock__title .co2-section-title__sub {
        font-size: 55px;
        position: relative;
        bottom: -39px;
        right: 25%;
    }

    .co2-unlock__title .co2-section-title__main {
        font-size: 48px;
        margin-top: 55px;
    }

    .co2-unlock__grid-wrapper {
        overflow-x: auto;
        padding: 20px 0;
        -webkit-overflow-scrolling: touch;
        /* Ẩn thanh cuộn */
        scrollbar-width: none;
    }

    .co2-unlock__grid-wrapper::-webkit-scrollbar {
        display: none;
    }

    .co2-unlock__grid {
        display: flex;
        gap: 10px;
        width: max-content;
        padding: 0 5px;
    }

    .co2-unlock__card {
        flex: 0 0 237px;
    }

    .co2-unlock__card-status {
        font-size: 16px;
    }

    .co2-unlock__card-desc {
        font-size: 16px;
    }
}

/* ==========================================================================
   SECTION: ĐỐI TƯỢNG PHÙ HỢP (TARGET)
   ========================================================================== */
.co2-target {
    position: relative;
    background-color: #f5f5f5;
}

.co2-target .co2-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Background chìm Hexagon */
/* ==========================================================================
   SECTION: ĐỐI TƯỢNG PHÙ HỢP (TARGET)
   ========================================================================== */

.co2-target__bg-desktop {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.co2-target__bg-desktop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.co2-target__container {
    position: relative;
    z-index: 1;
}

.co2-target__title {
    position: absolute;
    bottom: 102px;
    left: 265px;
}

/* --- DESKTOP LAYOUT --- */
.co2-target__desktop-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}

.co2-target__main-img-wrap {
    position: relative;
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: center;
}

.co2-target__main-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.co2-target__label {
    position: absolute;
    width: 194px;
}

.co2-target__label-title {
    color: #000;
    font-family: 'Geomanist', sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
    line-height: 1.2;
}

.co2-target__label-desc {
    color: #000;
    font-family: 'Geomanist', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}

.co2-target__label--lao-hoa {
    top: 29px;
    left: 3%;
    text-align: left;
    width: 255px;
}

.co2-target__label--seo {
    top: 38%;
    left: -120px;
    text-align: right;
    width: 254px;
}

.co2-target__label--sac-to {
    top: 27%;
    right: -47px;
    text-align: left;
}

.co2-target__label--khac {
    bottom: 17%;
    right: -37px;
    text-align: left;
}

.co2-target .co2-section-title__main {
    font-size: 70px;
}

.co2-target .co2-section-title__badge {
    font-size: 30px;
    margin-top: 30px;
    position: relative;
    bottom: -55px;
}

.co2-target .co2-section-title__sub {
    position: relative;
    bottom: -50px;
    font-size: 66px;
    left: -161px;
}

/* --- MOBILE LAYOUT --- */
@media (max-width: 991px) {
    .co2-target {
        padding: 60px 0px 10px 0;
    }

    .co2-target__title {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 30px;
        width: 100%;
        padding: 0 15px;
    }

    /* Đưa 2 dòng text ("Đối tượng" và "phù hợp với") xếp dọc chồng lên nhau như Figma */
    .co2-target__title .co2-section-title__row:first-child {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0 !important;
    }

    /* Đưa Badge về lề trái */
    .co2-target__title .co2-section-title__row:last-child {
        justify-content: flex-start !important;
    }

    /* Ép white-space: nowrap để CẤM tuyệt đối việc rớt chữ (Cấm "Đối" tách khỏi "tượng") */
    .co2-target .co2-section-title__main {
        font-size: 51px !important;
        bottom: 0 !important;
        padding: 0 !important;
        white-space: nowrap !important;
        line-height: 1 !important;
    }

    .co2-target .co2-section-title__sub {
        font-size: 56px !important;
        position: relative !important;
        bottom: 0 !important;
        left: 0 !important;
        margin-left: 42px !important;
        white-space: nowrap !important;
        line-height: 1 !important;
        margin-top: -17px !important;
    }

    .co2-target .co2-section-title__badge {
        font-size: 27px !important;
        position: relative !important;
        bottom: 0 !important;
        margin-top: 10px !important;
        height: 38px !important;
        padding: 8px 20px 0 !important;
    }

    /* Kéo hình biểu đồ vệ tinh lên góc phải và cho chìm xuống dưới chữ */
    .co2-target__title-img-mb {
        width: 183px !important;
        height: auto !important;
        position: absolute !important;
        right: 6px !important;
        top: -46px !important;
        z-index: -1 !important;
    }

    .co2-target__mobile-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }

    .co2-target__card {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 20px;
        border-radius: 40px;
        border: 2px solid #FFF;
        background: #D9D9D9;
        box-shadow: 0 0 30px 0 rgba(255, 255, 255, 0.60) inset;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .co2-target__card--reverse {
        flex-direction: row-reverse;
    }

    .co2-target__card-img {
        flex: 0 0 120px;
        height: 120px;
        border-radius: 50%;
        overflow: hidden;
        border: 2px solid #fff;
    }

    .co2-target__card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .co2-target__card-info {
        flex: 1;
    }

    .co2-target__card-title {
        font-family: 'Geomanist', sans-serif;
        font-size: 18px;
        font-weight: 500;
        color: #000;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .co2-target__card-desc {
        font-family: 'Geomanist', sans-serif;
        font-size: 15px;
        font-weight: 400;
        color: #333;
        line-height: 1.4;
        margin: 0;
    }
}

/* ==========================================================================
   GLOBAL UI COMPONENT: TIÊU ĐỀ DÙNG CHUNG (TÁI SỬ DỤNG)
   ========================================================================== */
.co2-section-title {
    display: flex;
    flex-direction: column;
}

.co2-section-title__row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.co2-section-title__badge {
    color: #7F6337;
    font-family: 'SVN-Famous', sans-serif;
    font-size: 49px;
    height: 55px;
    padding: 0 27px;
    display: inline-flex;
    align-items: center;
    border-radius: 151px;
    border: 0.9px solid #FFF;
    background: rgba(255, 255, 255, 0.20);
    box-shadow: 0 0 12px 0 rgba(255, 255, 255, 0.6) inset, 0 4px 9px 0 rgba(191, 147, 78, 0.39);
}

.co2-tech .co2-section-title__main {
    position: relative;
    bottom: -23px;
    padding: 17px 13px 15px 10px;
}

/* ==========================================================================
   SECTION: 4000+ KHÁCH HÀNG (FEEDBACK)
   ========================================================================== */
.co2-feedback {
    position: relative;
    padding: 20px 0;
    background-color: #f5f5f5;
}

.co2-feedback__title {
    align-items: center;
    margin-bottom: 50px;
}

.co2-feedback__title .co2-section-title__sub {
    font-size: 90px;
}

.co2-feedback__title .co2-section-title__main {
    font-size: 70px;
    margin-top: 36px;
}

.co2-feedback__title .co2-section-title__badge {
    font-size: 33px;
    margin-left: 15px;
    height: 45px;
}

.co2-feedback__title .co2-section-title__row {
    justify-content: center;
    line-height: 0.8;
}

.co2-feedback__title-big {
    font-size: 130px !important;
    margin-bottom: 10px;
}

.co2-feedback__title-text {
    font-size: 70px !important;
}


/* --- Tinh chỉnh cho Mobile --- */
@media (max-width: 991px) {
    .co2-feedback__title-big {
        font-size: 80px !important;
    }

    .co2-feedback__title-text {
        font-size: 42px !important;
    }

    .co2-feedback__title .co2-section-title__badge {
        font-size: 20px;
        height: 38px;
        padding: 8px 20px 0;
        margin-left: 10px;
    }
}

.co2-feedback__title-pill {
    display: inline-flex;
    padding: 10px 40px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    border: 1px solid #BF934E;
    background: #fdfaf4;
    color: #7F6337;
    font-family: 'Geomanist', sans-serif;
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
}

/* --- FEEDBACK CARD --- */
.co2-feedback__card {
    border-radius: 30px;
    padding: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.co2-feedback__card-media {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 10px;
    aspect-ratio: 13/9;
}

.co2-feedback__card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.co2-feedback__card-info-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 94%;
    max-width: 361px;
    height: 67px;
    margin: 0 auto;
    margin-top: -31px;
    margin-bottom: 18px;
    border-radius: 30px;
    background: linear-gradient(180deg, #BF934E 0%, #7F6337 100%);
    box-shadow: 0 0 12.42px 0 rgba(255, 255, 255, 0.60) inset;
    color: #FFF;
    text-align: center;
    font-family: 'Geomanist', sans-serif;
    position: relative;
    z-index: 3;
}

.co2-feedback__name {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.1;
}

.co2-feedback__treatment {
    font-size: 14px;
    font-weight: 400;
}

.co2-feedback__card-detail {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-bottom: 10px;
}

.co2-feedback__detail-col {
    flex: 1;
    background: rgba(255, 255, 255, 0.50);
    box-shadow: 0 0 12.42px 0 rgba(255, 255, 255, 0.60) inset, 0 4.05px 9.18px 0 rgba(191, 147, 78, 0.39);
    padding: 12px 10px;
    border-radius: 20px;
    border: 1px solid rgba(191, 147, 78, 0.1);
}

.co2-feedback__label {
    color: #000;
    text-align: center;
    font-family: 'Geomanist', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 6px;
}

.co2-feedback__text {
    color: #000;
    font-family: 'Geomanist', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    text-align: center;
}

/* --- SLIDER CUSTOM --- */
.co2-feedback__slider {
    position: relative;
    padding: 0 50px;
}

.co2-feedback__arrows .splide__arrow {
    width: 50px;
    height: 50px;
    background: #FFF;
    opacity: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.co2-feedback__arrows .splide__arrow img {
    width: 20px;
}

.co2-feedback__arrows .splide__arrow--prev {
    left: -10px;
}

.co2-feedback__arrows .splide__arrow--next {
    right: -10px;
}

/* --- MOBILE STYLES --- */
@media (max-width: 991px) {
    .co2-feedback {
        padding: 5px 0 40px 0;
    }

    /* Ép 2 dòng "4000+" và "khách hàng..." xếp dọc */
    .co2-feedback__title .co2-section-title__row:first-child {
        flex-direction: column;
        gap: 5px;
        margin-bottom: 20px;
    }

    /* Chỉnh kích thước chữ 4000+ */
    .co2-feedback__title .co2-section-title__sub {
        font-size: 100px !important;
        line-height: 1;
        margin: 0 !important;
    }

    /* Chỉnh kích thước và ép rớt dòng chữ "khách hàng / đã tin chọn" */
    .co2-feedback__title .co2-section-title__main {
        font-size: 57px !important;
        line-height: 1 !important;
        max-width: 250px;
        margin: 0 auto;
        white-space: normal !important;
        margin-top: 2px !important;
    }

    .co2-feedback__title .co2-section-title__badge {
        font-size: 22px !important;
        height: 40px !important;
        background: rgba(255, 255, 255, 0.40) !important;
        border: 0.9px solid #FFF !important;
        box-shadow: 0 0 12px 0 rgba(255, 255, 255, 0.6) inset, 0 4px 9px 0 rgba(191, 147, 78, 0.39) !important;
        margin: 0 auto !important;
        padding: 2px 13px 0 !important;
        width: fit-content;
        letter-spacing: 0.5px;
    }

    .co2-feedback__mobile-items {
        display: flex;
        flex-direction: column;
    }

    .co2-feedback__mobile-items .co2-feedback__card:first-child {
        margin-top: 0;
    }

    .co2-feedback__card {
        margin-top: 30px;
    }
}


.co2-results__title-last-row {
    margin-top: 0;
}

.co2-results__desc {
    text-align: center;
    font-size: 19px;
    margin-top: 15px;
}



/* --------------------------------------------------
   MOBILE RESPONSIVE
-------------------------------------------------- */
@media (max-width: 991px) {
    .co2-clinic {
        padding: 10px 0;
    }

    /* Đổi Grid thành 1 cột dọc */
    .co2-clinic__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .co2-clinic__title-wrapper {
        margin-bottom: 20px;
    }

    /* Đưa Tiêu đề về căn giữa */
    .co2-clinic__title {
        align-items: center;
    }

    .co2-clinic__title .co2-section-title__sub {
        margin-left: 0;
        font-size: 70px;
    }

    .co2-clinic__title .co2-section-title__badge {
        font-size: 33px;
        height: 38px;
        margin-bottom: 15px;
    }

    .co2-clinic__title .co2-section-title__main {
        font-size: 36px;
        text-align: center;
    }
}


/* ═══════════ STYLES START HERE ═══════════ */

/* ══════════════════════════════════════════════════════════
   BÁO CHÍ NÓI VỀ LINH ANH & ĐỐI TÁC (CLONED FROM DIEU TRI NAM)
   ══════════════════════════════════════════════════════════ */

@keyframes pulse-gentle-lp {
    0% {
        transform: scale(1);
        box-shadow:
            inset 1px 1px 2px #E8D9A8,
            inset -1px -1px 2px #E8D9A8,
            0 0 0 0 rgba(191, 147, 78, 0.4);
    }

    50% {
        transform: scale(1.04);
        box-shadow:
            inset 1px 1px 2px #E8D9A8,
            inset -1px -1px 2px #E8D9A8,
            0 0 0 8px rgba(191, 147, 78, 0);
    }

    100% {
        transform: scale(1);
        box-shadow:
            inset 1px 1px 2px #E8D9A8,
            inset -1px -1px 2px #E8D9A8,
            0 0 0 0 rgba(191, 147, 78, 0);
    }
}

.btn-cta-lp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 36px;
    border-radius: 50px;
    border: none;
    white-space: nowrap;
    cursor: pointer;
    font-family: 'Geomanist', 'Inter', sans-serif;
    font-size: 21px;
    font-weight: 400;
    color: #FFFFFF;
    text-decoration: none;
    background: linear-gradient(90deg, #A88143 0%, #D4AE70 50%, #A88143 100%);
    background-size: 200% auto;
    box-shadow:
        0 4px 15px rgba(127, 99, 55, 0.3),
        inset 1px 1px 2px #E8D9A8,
        inset -1px -1px 2px #E8D9A8;
    transition: all 0.4s ease;
    animation: pulse-gentle-lp 2.5s ease-in-out infinite;
    position: relative;
    z-index: 5;
    align-self: center;
}

.btn-cta-lp:hover {
    background-position: right center;
    box-shadow:
        0 15px 30px rgba(168, 129, 67, 0.6),
        inset 1px 1px 2px #E8D9A8,
        inset -1px -1px 2px #E8D9A8;
    transform: translateY(-2px);
    color: #FFFFFF;
}

.nam-press {
    padding-top: 30px;
    background-color: #f5f5f5;
    overflow: hidden;
}

.nam-press__top {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.nam-press__title-col {
    flex: 0 0 400px;
    text-align: center;
}

.npr-title-script {
    font-family: var(--font-accent-art);
    font-size: 115px;
    color: #B69655;
    line-height: 0.6;
    margin-bottom: 33px;
    z-index: 1;
    position: relative;
    font-weight: 400;
}

.npr-title-pill {
    display: inline-block;
    font-family: var(--font-heading-lux);
    font-size: 42px;
    color: #7F6337;
    border-radius: 999px;
    padding: 0px 40px;
    background-color: rgba(255, 255, 255, 0.20);
    box-shadow: 0 0 12px 0 rgba(255, 255, 255, 0.6) inset, 0 4px 9px 0 rgba(191, 147, 78, 0.39);
    font-weight: 500;
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.npr-desc {
    font-family: 'Geomanist', sans-serif;
    font-size: 18px;
    color: #7F6337;
    line-height: 1.5;
}

.nam-press__slider-col {
    flex: 1;
    min-width: 0;
}

.js-splide-press .splide__slide img {
    width: 100%;
    display: block;
}

.nam-press__bottom {
    position: relative;
    padding-bottom: 40px;
}

@media screen and (min-width:768px) {
    .nam-press__bottom .container {
        z-index: 10;
        position: relative;
    }

    .npr-podium-bg {
        position: absolute;
        bottom: -300px;
        left: 50%;
        transform: translateX(-50%);
        width: 1920px;
        max-width: 100%;
        height: auto;
        z-index: 4;
        pointer-events: none;
    }
}

.npr-awards {
    display: flex;
    justify-content: center;
}

.npr-awards__track {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.npr-awards__group {
    display: flex;
    justify-content: space-between;
    flex: 1;
}

.npr-award-item {
    padding: 0 15px;
}

.npr-award-item img {
    height: auto;
    width: auto;
    max-height: 400px;
    object-fit: contain;
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none !important;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: flex !important;
    }

    .nam-press {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .nam-press__top {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }

    .nam-press__title-col {
        flex: auto;
        width: 100%;
    }

    .npr-title-script {
        font-size: 90px;
        margin-bottom: 29px;
    }

    .npr-title-pill {
        font-size: 38px;
        padding: 0px 36px;
        margin-bottom: 20px;
    }

    .npr-desc {
        font-size: 16px;
    }

    .nam-press__slider-col {
        width: 100%;
    }

    .npr-awards {
        overflow: hidden;
        mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    }

    .npr-awards__track {
        display: flex;
        width: max-content;
        flex-wrap: nowrap;
        justify-content: flex-start;
        animation: npr-marquee 10s linear infinite;
    }

    .npr-awards__group {
        display: flex;
        gap: 15px;
        padding-right: 15px;
        flex: 0 0 auto;
    }

    .npr-award-item img {
        height: 200px;
    }

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

        100% {
            transform: translateX(-50%);
        }
    }
}

.container--full {
    width: 100%;
    padding-inline: var(--space-4);
}

.partners {
    padding-block: var(--space-8);
    background-color: #f5f5f5;
    overflow: hidden;
}

.partners__header {
    margin-bottom: var(--space-16);
}

.partners__title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pt-title-top {
    font-family: var(--font-accent-art);
    font-size: 100px;
    font-weight: 400;
    color: #B69655;
    line-height: 0.8;
}

.pt-title-bottom {
    font-family: var(--font-heading-lux);
    font-size: 80px;
    background: linear-gradient(360deg, rgba(182, 150, 85, 1) 0%, rgba(227, 200, 113, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 400;
}

.marquee {
    --marquee-duration: 8s;
    overflow: hidden;
    user-select: none;
    display: flex;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee__content {
    display: flex;
    gap: var(--space-12);
    min-width: 100%;
    padding-block: var(--space-4);
    animation: marquee var(--marquee-duration) linear infinite;
}

.marquee__item {
    flex: 0 0 auto;
    width: 180px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee__item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.6;
    transition: all 0.3s ease;
}

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

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .pt-title-top {
        font-size: 64px;
    }

    .pt-title-bottom {
        font-size: 44px;
    }

    .marquee__item {
        width: 120px;
    }

    .marquee__content {
        gap: var(--space-8);
    }
}

/* ══════════════════════════════════════════════════════════
   VIDEO SHORTS (CLONED FROM DIEU TRI TAN NHANG)
   ══════════════════════════════════════════════════════════ */
.co2-video-shorts {
    margin-top: 0;
    padding-bottom: 80px;
    background-color: #f1f1f1;
}

.video-shorts__grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.video-short-item {
    flex: 0 0 calc(20% - 16px);
    aspect-ratio: 9 / 16;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.video-short-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Show More Logic */
.show-more {
    position: relative;
}

.show-more__content {
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.show-more__fade {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #f5f5f5, transparent);
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.show-more.is-expanded .show-more__fade {
    opacity: 0;
}

.show-more__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 30px auto 0;
    padding: 10px 30px;
    background: #fff;
    border: 1px solid #BF934E;
    border-radius: 99px;
    color: #BF934E;
    font-family: 'Geomanist', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.show-more__btn:hover {
    background: #BF934E;
    color: #fff;
}

.show-more .show-more__label-less {
    display: none;
}

.show-more.is-expanded .show-more__label-more {
    display: none;
}

.show-more.is-expanded .show-more__label-less {
    display: inline;
}

.show-more.is-expanded .show-more__btn svg {
    transform: rotate(180deg);
}

@media (min-width: 769px) {

    .co2-video-shorts .show-more__btn,
    .co2-video-shorts .show-more__fade {
        display: none !important;
    }

    .co2-video-shorts .show-more__content {
        max-height: none !important;
        overflow: visible !important;
    }
}

@media (max-width: 768px) {
    .co2-video-shorts {
        padding-bottom: 40px;
    }

    .video-short-item {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .video-short-item {
        flex: 0 0 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   SECTION: SIÊU ƯU ĐÃI (CO2 DEAL - CHUẨN FIGMA)
   ========================================================================== */
.co2-deal {
    background-color: #f1f1f1;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.co2-deal__container {
    position: relative;
    z-index: 2;
}

/* --- HIỆU ỨNG ĐỒNG TIỀN LƠ LỬNG --- */
.co2-deal__coin {
    position: absolute;
    width: 100px;
    height: auto;
    z-index: 1;
    animation: float-coin 3s ease-in-out infinite;
}

.co2-deal__coin--left {
    top: 25%;
    left: -6%;
    width: 350px;
}

.co2-deal__coin--right {
    top: 10%;
    right: -1%;
    animation-delay: 0.5s;
    width: 200px;
}

@keyframes float-coin {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* --- BỐ CỤC 2 CỘT (DESKTOP) --- */
.co2-deal__content {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

/* Cột Trái */
.co2-deal__left {
    flex: 0 0 30%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Khống chế kích thước hình ảnh để không bị khổng lồ */
.co2-deal__heading {
    width: 100%;
    max-width: 480px;
    height: auto;
}

.co2-deal__img-450k {
    width: 100%;
    max-width: 420px;
    height: auto;
}

/* Cột Phải */
.co2-deal__right {
    flex: 0 0 62%;
    position: relative;
}

.co2-deal__img-model {
    width: 100%;
    max-width: 750px;
    /* Khống chế độ to của hình cô gái */
    height: auto;
    display: block;
    margin-left: auto;
    /* Đẩy sát mép phải */
}

/* --- NÚT CTA BUTTON --- */
.co2-deal__cta-wrap {
    width: 100%;
    text-align: center;
}

/* Vị trí nút CTA trên PC (Đè lên hình cô gái) */
.co2-deal__cta-wrap.desktop-only {
    position: absolute;
    bottom: -5%;
    right: 32%;
    width: auto;
}

.co2-deal__cta-btn {
    min-width: 320px;
    font-size: 18px;
    padding: 16px 30px;
    letter-spacing: 0.5px;
}

/* --------------------------------------------------
   MOBILE RESPONSIVE
-------------------------------------------------- */
@media (max-width: 991px) {
    .co2-deal {
        padding: 40px 0;
    }

    .co2-deal__coin {
        display: none;
        /* Ẩn đồng tiền trên đt cho gọn */
    }

    .co2-deal__content {
        flex-direction: column;
        gap: 20px;
    }

    /* Cột trái căn ra giữa */
    .co2-deal__left {
        flex: 0 0 100%;
        width: 100%;
        align-items: center;
        gap: 15px;
    }

    .co2-deal__right {
        flex: 0 0 100%;
        width: 100%;
    }

    .co2-deal__heading {
        max-width: 100%;
        padding: 0 1.1rem;
    }

    .co2-deal__img-450k {
        max-width: 85%;
    }

    .co2-deal__img-model {
        max-width: 100%;
    }

    /* Vị trí nút CTA trên Mobile (Nằm dưới chữ 450k) */
    .co2-deal__cta-wrap.mobile-only {
        margin-top: 10px;
        justify-content: center;
    }

    .co2-deal__right img {
        display: none;
    }

    .co2-deal__cta-btn {
        min-width: 280px;
        font-size: 16px;
    }
}

/* ==========================================================================
   SECTION: MÔ HÌNH PHÒNG KHÁM (BENTO GRID - FIX FIGMA 100%)
   ========================================================================== */
.co2-clinic-bento {
    position: relative;
    padding: 30px 0 20px 0;
    background-color: #f5f5f5;
}

/* Background Pattern */
.co2-clinic-bento__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.6;
    pointer-events: none;
}

.co2-clinic-bento__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.co2-clinic-bento__container {
    position: relative;
    z-index: 5;
}

/* --- 1. SỬA LỖI KHOẢNG CÁCH TIÊU ĐỀ --- */
.co2-clinic-bento__title {
    align-items: center;
    margin-bottom: 70px !important;
    /* Ép cứng khoảng cách xa ra */
}

.co2-clinic-bento__title .co2-section-title__row {
    justify-content: center;
}

.co2-clinic-bento__title .co2-section-title__main {
    font-size: 65px;
}

.co2-clinic-bento__title .co2-section-title__sub {
    font-size: 80px;
    margin-left: 10px;
    margin-top: 25px;
}

.co2-clinic-bento__title .co2-section-title__badge {
    margin-top: 15px;
    height: 40px;
    font-size: 26px;
    padding: 8px 30px 0;
}

/* --- GRID SYSTEM (DESKTOP) --- */
.co2-clinic-bento__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (min-width: 992px) {
    .card-doc {
        grid-area: 1 / 1 / 3 / 2;
    }

    .card-system-wide {
        grid-area: 1 / 2 / 2 / 4;
        flex-direction: row !important;
        align-items: center;
        padding: 20px 30px;
        gap: 30px;
    }

    .card-laser {
        grid-area: 2 / 2 / 3 / 3;
    }

    .card-room {
        grid-area: 2 / 3 / 3 / 4;
    }

    .card-visia {
        grid-area: 1 / 4 / 3 / 5;
    }

    .card-system-wide__left {
        flex: 0 0 50%;
    }

    .card-system-wide__right {
        flex: 0 0 45%;
    }

    /* SỬA LỖI CARD BẰNG CẤP XẾP DỌC (ÉP NẰM NGANG) */
    .co2-clinic-bento__card.card-system-wide {
        flex-direction: row !important;
        /* Bắt buộc dàn ngang */
        align-items: center;
        justify-content: space-between;
        padding: 9px 12px;
        gap: 18px;
    }

    .card-system-wide__left {
        flex: 0 0 50%;
        /* Trái chiếm 50% */
    }

    .card-system-wide__right {
        flex: 0 0 45%;
        /* Phải chiếm 45% (chừa khoảng trống) */
    }

    .card-system-wide__left img {
        width: 100%;
        height: auto;
        display: block;
    }
}

/* --- UI THẺ CARD CHUNG --- */
.co2-clinic-bento__card {
    background: rgba(255, 255, 255, 0.80);
    border: 0.9px solid #FFF;
    border-radius: 30px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 12.42px 0 rgba(255, 255, 255, 0.60) inset, 0 4.05px 9.18px 0 rgba(191, 147, 78, 0.39);
    overflow: hidden;
}

/* --- 3. SỬA LỖI DẤU TICK BỊ RỚT DÒNG --- */
.co2-clinic-bento__card-text {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    /* Cấm rớt dòng */
    align-items: flex-start !important;
    gap: 12px !important;
}

.co2-clinic-bento__card-text.mt-auto {
    margin-top: auto;
    padding-top: 15px;
}

.co2-clinic-bento__card-text .check-icon {
    width: 18px !important;
    min-width: 18px !important;
    /* Khóa cứng kích thước icon */
    height: auto !important;
    flex-shrink: 0 !important;
    /* Không cho icon bị ép nhỏ */
    margin-top: 3px !important;
    display: block !important;
}

.co2-clinic-bento__card-text p {
    font-family: 'Geomanist', sans-serif;
    font-size: 18px;
    color: #7F6337;
    line-height: 1.4;
    margin: 0 !important;
    text-align: justify;
    flex: 1;
    /* Chữ tự động giãn ra phần không gian còn lại */
}

/* --- XỬ LÝ HÌNH ẢNH TRONG CARD CHUẨN --- */
.img-bottom {
    margin-top: auto;
    padding-top: 0px;
    display: flex;
    align-items: flex-end;
    /* Đẩy ảnh bám sát đáy thẻ */
}

.img-bottom img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.img-top {
    margin-bottom: 15px;
}

.img-top img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* --------------------------------------------------
   MOBILE RESPONSIVE (STACK DỌC)
-------------------------------------------------- */
/* --------------------------------------------------
   MOBILE RESPONSIVE (FIX CHUẨN LƯỚI 2 CỘT FIGMA)
-------------------------------------------------- */
@media (max-width: 991px) {
    .co2-clinic-bento {
        padding: 50px 0;
    }

    .co2-clinic-bento__bg {
        opacity: 0.4;
    }

    /* Căn giữa tiêu đề */
    .co2-clinic-bento__title .co2-section-title__row {
        flex-wrap: wrap;
        justify-content: center;
		padding: 0 1rem 0 1rem;
    }

    .co2-clinic-bento__title .co2-section-title__sub {
        font-size: 66px;
        margin-left: 0;
        text-align: center;
        width: 100%;
        margin-top: -41px;
        position: relative;
        right: -14px;
    }

    .co2-clinic-bento__title .co2-section-title__main {
        font-size: 70px;
        text-align: center;
        width: 100%;
    }

    .co2-clinic-bento__title .co2-section-title__badge {
        font-size: 26px;
        height: 35px;
        padding: 6px 19px 0;
        margin-top: 23px;
    }

    /* --- KHỞI TẠO LƯỚI 2 CỘT CỐ ĐỊNH --- */
    .co2-clinic-bento__grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    /* --- KHÓA TỌA ĐỘ TỪNG CARD THEO FIGMA --- */
    .card-doc {
        grid-area: 1 / 1 / 3 / 2 !important;
        /* Cột 1 (Trái), Kéo dài từ hàng 1 xuống hết hàng 2 */
    }

    .card-room {
        grid-area: 1 / 2 / 2 / 3 !important;
        /* Cột 2 (Phải), Nằm ở hàng 1 */
    }

    .card-laser {
        grid-area: 2 / 2 / 3 / 3 !important;
        /* Cột 2 (Phải), Nằm ở hàng 2 */
    }

    .card-system-wide {
        grid-area: 3 / 1 / 4 / 3 !important;
        /* Chiếm cả 2 cột ở hàng 3 */
    }

    .card-visia {
        grid-area: 4 / 1 / 5 / 3 !important;
        /* Chiếm cả 2 cột ở hàng 4 */
    }

    /* --- TINH CHỈNH BÊN TRONG CARD CHO VỪA ĐIỆN THOẠI --- */
    .co2-clinic-bento__card {
        padding: 12px !important;
        border-radius: 16px;
    }

    /* Ép thẻ Hệ Thống xếp dọc (Hình trên, chữ dưới) */
    .co2-clinic-bento__card.card-system-wide {
        flex-direction: row !important;
        align-items: center !important;
        padding: 11px !important;
        gap: 12px !important;
    }

    .card-system-wide__left {
        flex: 0 0 48%;
        /* Khối hình bằng cấp chiếm 48% chiều ngang */
        width: 48%;
    }

    .card-system-wide__right {
        flex: 1;
        /* Khối chữ chiếm toàn bộ không gian còn lại */
        width: auto;
    }

    /* Thu nhỏ Text và Icon để không vỡ khung 2 cột */
    .co2-clinic-bento__card-text {
        gap: 6px !important;
    }

    .co2-clinic-bento__card-text .check-icon {
        width: 14px !important;
        min-width: 14px !important;
        margin-top: 2px !important;
    }

    .co2-clinic-bento__card-text p {
        font-size: 16px !important;
		line-height: 1;
    }
	.co2-clinic-bento__card.card-doc .co2-clinic-bento__card-text {
		position: relative;
   		bottom: -31px;
	}
    /* Điều chỉnh hình ảnh */
    .img-bottom {
        padding-top: 10px;
        margin-top: auto;
    }

    .img-top {
        margin-bottom: 10px;
    }
	
    .co2-clinic-bento__card-img img,
    .card-system-wide__left img {
        border-radius: 8px;
    }

    /* Ép hình bác sĩ ôm sát đáy và cao lên lấp đầy khoảng trống */
    .card-doc .img-bottom {
        height: 100%;
        display: flex;
        align-items: stretch;
    }
	
    .card-doc .img-bottom img {
        object-position: bottom center;
		max-height: 90%;
    	position: relative;
    	bottom: -44px;
    }
}


/* ==========================================================================
   SECTION: ĐỘI NGŨ BÁC SĨ (TEAM - FIXED 100% FIGMA)
   ========================================================================== */
.co2-team {
    position: relative;
    padding: 70px 0;
    background-color: #f5f5f5;
}

.co2-team__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

.co2-team__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.co2-team__container {
    position: relative;
    z-index: 5;
}

/* --- TIÊU ĐỀ --- */
.co2-team__title {
    align-items: center;
    margin-bottom: 30px;
}

.co2-team__title .co2-section-title__row {
    justify-content: center;
}

.co2-team__title .co2-section-title__badge {
    border: 0.9px solid #FFF;
    border-radius: 151px;
    background: rgba(255, 255, 255, 0.20);
    box-shadow: 0 0 12px 0 rgba(255, 255, 255, 0.6) inset, 0 4px 9px 0 rgba(191, 147, 78, 0.39);
}

.co2-team__title .co2-section-title__sub {
    margin-top: -15px;
    font-size: 85px;
    z-index: 2;
}

/* --- KHỐI BÁC SĨ --- */
/* Kéo Avatar trồi lên trên */
.co2-team__avatar {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* BỔ SUNG QUAN TRỌNG: Ép mọi hình ảnh bám sát đáy */
    height: 330px;
    /* BỔ SUNG QUAN TRỌNG: Khóa cứng chiều cao chung cho cả 3 khối */
    position: relative;
    z-index: 2;
    margin-bottom: -45px;
}

.co2-team__avatar img {
    width: 100%;
    max-width: 280px;
    max-height: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: bottom;
}

/* Khung thông tin màu vàng */
.co2-team__card-header {
    background: #BF934E;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
    position: relative;
    z-index: 3;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.co2-team__slider {
    padding-top: 35px;
    margin-bottom: 60px;
}

.co2-team__card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Thân thẻ trắng */
.co2-team__card-body {
    background: rgba(255, 255, 255, 0.60);
    border: 0.9px solid #FFF;
    border-radius: 30px;
    padding: 44px 10px 27px 10px;
    box-shadow: 0 0 12.42px 0 rgba(255, 255, 255, 0.60) inset, 0 4.05px 9.18px 0 rgba(191, 147, 78, 0.39);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
	 margin-bottom: 12px;
}

/* Kéo Avatar trồi lên trên */


/* Khung thông tin màu vàng */
.co2-team__card-header {
    background: #BF934E;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
    position: relative;
    z-index: 3;
    /* Nổi lên trên áo bác sĩ */
    text-align: left;
    /* Theo đúng Figma */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.co2-team__doc-title {
    color: #FFF;
    font-family: 'SVN-Famous', serif;
    /* Font có chân */
    font-size: 22px;
    margin-bottom: 5px;
    line-height: 1.2;
}

.co2-team__doc-name {
    color: #FFF;
    font-family: 'SVN-Famous', serif;
    /* Font có chân */
    font-size: 32px;
    font-weight: 400;
    margin: 0 0 12px 0;
    line-height: 1.1;
}

.co2-team__doc-badge {
    display: inline-block;
    color: #FFF;
    font-family: 'Geomanist', sans-serif;
    /* Font không chân */
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    padding: 5px 15px;
    background: rgba(255, 255, 255, 0.15);
}

/* Danh sách mô tả (Tạo dấu chấm đen chuẩn) */
.co2-team__card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.co2-team__card-list li {
    font-family: 'Geomanist', sans-serif;
    font-size: 18px;
    color: #000;
    line-height: 1.4;
    position: relative;
    padding-left: 20px;
    text-align: left;
}

.co2-team__card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: #222;
    border-radius: 50%;
}

/* --- CTA & MARQUEE --- */
.co2-team__cta-wrap {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 5;
}

.co2-team__cert-wrapper {
    padding: 20px 0;
}

.co2-team__cert-item {
    width: 250px !important;
    height: 180px !important;
    border: 1px solid rgba(191, 147, 78, 0.3);
    border-radius: 10px;
    overflow: hidden;
    background: #FFF;
    transition: transform 0.3s ease;
}

.co2-team__cert-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

/* --------------------------------------------------
   DESKTOP GRID (TẮT SLIDER)
-------------------------------------------------- */
@media (min-width: 992px) {
    .co2-team__grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .co2-team__slider .splide__arrows,
    .co2-team__slider .splide__pagination {
        display: none !important;
    }
}

/* --------------------------------------------------
   MOBILE RESPONSIVE
-------------------------------------------------- */
@media (max-width: 991px) {
    .co2-team {
        padding: 60px 0;
    }
	.co2-team__card-header {
		padding: 20px 21px 20px 62px;
	}
    .co2-team__title .co2-section-title__badge {
        font-size: 35px;
        height: 37px;
        padding: 7px 16px 0;
    }

    .co2-team__title .co2-section-title__sub {
        font-size: 60px;
        margin-top: 0;
    }

    .co2-team__slider {
        padding-top: 20px;
        padding-bottom: 20px;
        margin-bottom: 30px;
    }

    .co2-team__avatar {
        margin-top: 0;
        margin-bottom: -35px;
        height: auto;
    }

    .co2-team__avatar img {
        max-width: 220px;
    }

    .co2-team__doc-name {
        font-size: 28px;
    }

    .co2-team__doc-title {
        font-size: 20px;
    }

    .co2-team__cert-item {
        width: 160px !important;
        height: 120px !important;
    }
}

/* ==========================================================================
   SECTION: CÔNG NGHỆ LASER CHÍNH HÃNG (TECH)
   ========================================================================== */
.co2-tech {
    position: relative;
    padding: 20px 0;
    background-color: #f5f5f5;
    /* Nền xám nhạt */
    overflow: hidden;
}

/* Background vòng tròn chìm */
.co2-tech__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

.co2-tech__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.co2-tech__container {
    position: relative;
    z-index: 5;
}

/* --- BỐ CỤC 2 CỘT DESKTOP --- */
.co2-tech__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.co2-tech__left {
    flex: 0 0 52%;
}

.co2-tech__main-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.co2-tech__right {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
}

/* --- UI TIÊU ĐỀ CHUYÊN BIỆT --- */

.co2-tech__title {
    align-items: flex-start;
    /* Ép căn trái trên Desktop */
    margin-bottom: 25px;
}

.co2-tech__title .co2-section-title__row {
    justify-content: flex-start;
    margin-bottom: 5px;
}

/* Reset lại padding/bottom và chỉnh size chữ vàng */
.co2-tech__title .co2-section-title__main {
    font-size: 55px;
    text-align: left;
    padding: 0;
    bottom: 0;
}

/* Chỉnh size chữ Script */
.co2-tech__title .co2-section-title__sub {
    font-size: 85px;
    padding-top: 0;
    margin-top: -10px;
    /* Nhích nhẹ lên trên để khoảng cách đẹp hơn */
}

/* Ghi đè Font và style cho Badge theo đúng thiết kế nút Figma */
.co2-tech__title .co2-section-title__badge {
    font-size: 33px;
    font-weight: 500;
    text-transform: uppercase;
    height: 45px;
    padding: 5px 25px 0;
    margin-left: -4px;
    margin-top: 0;
}

/* --- MÔ TẢ TECH --- */
.co2-tech__desc {
    font-family: 'Geomanist', sans-serif;
    font-size: 18px;
    color: #000;
    line-height: 1.6;
    text-align: justify;
    margin: 0;
}

/* --- GALLERY BĂNG CHUYỀN MOBILE --- */
.co2-tech__mobile-gallery {
    margin-top: 30px;
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.co2-tech__gallery-track {
    display: flex;
    width: max-content;
    flex-wrap: nowrap;
    animation: tech-marquee 150s linear infinite;
}

.co2-tech__gallery-group {
    display: flex;
    gap: 15px;
    padding-right: 15px;
    flex: 0 0 auto;
}

.co2-tech__gallery-item {
    width: 240px !important;
    height: 160px !important;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    border: 2px solid #FFF;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.co2-tech__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* --------------------------------------------------
   MOBILE RESPONSIVE
-------------------------------------------------- */
@media (max-width: 991px) {
    .co2-tech {
        padding: 50px 0;
    }

    .co2-tech__desc {
        padding: 0 1rem;
    }

    /* Phá vỡ cấu trúc flex bọc ngoài để xắp xếp lại order các thẻ con */
    .co2-tech__content {
        display: contents;
    }

    .co2-tech__container {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    /* Gỡ bỏ cấu trúc cột của bên phải */
    .co2-tech__right {
        display: contents;
    }

    /* Tinh chỉnh Hệ thống Tiêu đề trên Mobile */
    .co2-tech__title {
        align-items: center;
        margin-bottom: 20px;
    }

    .co2-tech__title .co2-section-title__row {
        justify-content: center;
        flex-wrap: wrap;
        /* Cho phép rớt dòng hàng thứ 3 */
    }

    .co2-tech__title .co2-section-title__main {
        text-align: center;
        font-size: 45px;
    }

    .co2-tech__title .co2-section-title__sub {
        font-size: 55px;
        margin-top: 0;
    }

    .co2-tech__title .co2-section-title__badge {
        font-size: 25px;
        height: 31px;
        padding: 5px 20px 0;
        margin-left: -15px;
    }

    .co2-tech__gallery-item {
        width: 180px !important;
        height: 130px !important;
    }
}

/* ==========================================================================
   SECTION: QUY TRÌNH ĐIỀU TRỊ (PROCESS - ARC LAYOUT)
   ========================================================================== */
.co2-process {
    position: relative;
    padding: 30px 0 65px 0;
    background-color: #f5f5f5;
    overflow: hidden;
}

.co2-process__title {
    align-items: center;
    margin-bottom: 50px;
}

.co2-process__title .co2-section-title__row {
    justify-content: center;
}

.co2-process__title .co2-section-title__main {
    font-size: 55px;
    margin-top: 10px;
}

.co2-process__title .co2-section-title__sub {
    font-size: 75px;
}

/* --- BỐ CỤC 2 CỘT --- */
.co2-process__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.co2-process__left {
    flex: 0 0 57%;
    position: relative;
    left: 120px;
}

.co2-process__main-img {
    width: 100%;
    height: auto;
    display: block;
}

.co2-process__list {
    flex: 0 0 52%;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 51px;
    /* Xóa bỏ gap 15px cũ để các thẻ xích lại gần nhau */
}

/* --- TẠO HÌNH VÒNG CUNG (DESKTOP) --- */
@media (min-width: 992px) {

    /* Đảo ngược vòng cung (Shape < ) để giống Figma */
    .co2-process__item:nth-child(1) {
        margin-left: 0px;
    }

    .co2-process__item:nth-child(2) {
        margin-left: 70px;
    }

    .co2-process__item:nth-child(3) {
        margin-left: 0;
    }

    .co2-process__item:nth-child(4) {
        margin-left: 70px;
    }

    .co2-process__item:nth-child(5) {
        margin-left: 0px;
    }

    .co2-process__item:nth-child(6) {
        margin-left: 66px;
    }

    .co2-process__item+.co2-process__item {
        margin-top: 5px;
        /* Khoảng cách vừa phải */
    }
}

.co2-process__item {
    position: relative;
    width: fit-content;
    display: flex;
    align-items: center;
}

/* Thẻ Pill chứa nội dung */
.co2-process__card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.20);
    border: 0.9px solid rgba(191, 147, 78, 0.38);
    border-radius: 50px;
    padding: 15px 30px 15px 70px;
    /* Padding left lớn nhường chỗ cho ảnh thò ra */
    min-height: 60px;
    /* Thẻ ốm lại chuẩn Figma */
    min-width: 320px;
    position: relative;
    margin-left: 55px;
    /* Chừa không gian bên trái để hình thò ra không bị lẹm */
    box-shadow: 0 0 12.42px 0 rgba(255, 255, 255, 0.60) inset;
    width: max-content;
    max-width: 100%;
}

/* Kéo hình ra khỏi khung trắng giống Figma */
.co2-process__card-img {
    position: absolute;
    left: -55px;
    top: 50%;
    transform: translateY(-50%);
    width: 129px;
    height: auto;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.co2-process__card-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.co2-process__card-text {
    font-family: 'Geomanist', sans-serif;
    font-size: 18px;
    color: #7F6337;
    line-height: 1.2;
    font-weight: 400;
}

/* --- BACKGROUND CHÌM CHO PROCESS --- */
.co2-process__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.5;
    /* Độ mờ của hình nền, bạn có thể chỉnh từ 0.1 đến 1 */
    pointer-events: none;
}

.co2-process__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Đảm bảo container nội dung nổi lên trên background */
.co2-process__container {
    position: relative;
    z-index: 5;
}

/* --------------------------------------------------
   MOBILE RESPONSIVE
-------------------------------------------------- */
@media (max-width: 991px) {
    .co2-process__bg {
        display: none;
    }

    .co2-process {
        padding: 10px 0;
    }

    .co2-process__title .co2-section-title__sub {
        font-size: 51px;
    }

    .co2-process__title .co2-section-title__main {
        font-size: 38px;
    }

    .co2-process__title .co2-section-title__badge {
        font-size: 31px;
        height: 32px;
        padding: 4px 25px 0;
    }

    .co2-process__wrap {
        flex-direction: column;
        gap: 40px;
    }

    .co2-process__left,
    .co2-process__list {
        flex: 0 0 100%;
        width: 100%;
    }

    .co2-process__left {
        left: 0;
    }

    /* Reset vòng cung về thẳng hàng */
    .co2-process__item {
        margin-left: 0 !important;
        width: 100%;
    }

    .co2-process__card {
        width: calc(100% - 35px);
        min-width: auto;
        padding: 10px 18px 10px 85px;
        margin-left: 35px;
    }

    .co2-process__card-text {
        font-size: 16px;
    }

    /* Thu nhỏ kích thước ảnh kèm badge trên Mobile và thò ra ngoài */
    .co2-process__card-img {
        width: 115px;
        left: -26px;
    }
}