/**
 * 'Điều trị tàn nhang' Landing Page Styles
 */

/* ═══════════ REUSABLE HEADING SYSTEM ═══════════ */
.sol-title-top {
    font-family: var(--font-accent-art);
    color: #B69655;
    font-weight: 300;
    display: block;
}

.sol-title-middle {
    display: inline-block;
    vertical-align: middle;
    /* Căn giữa theo trục dọc với chữ bên cạnh */
    margin-right: 15px;
    /* Thêm khoảng cách với chữ gradient bên cạnh */
    font-family: var(--font-heading-lux);
    color: #7F6337;
    border: 1px solid var(--color-primary);
    border-radius: 99px;
    padding: 8px 30px;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(191, 147, 78, 0.1);
    font-weight: 300;
}

.sol-title-bottom {
    display: inline-block;
    vertical-align: middle;
    font-family: var(--font-heading-lux);
    background: linear-gradient(360deg, #b69655 0%, #e3c871 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 400;
}

/* ═══════════ SECTION: HERO BANNER ═══════════ */
.tan-nhang-hero {
    position: relative;
    background-color: #f5f5f5;
    padding-top: 40px;
    overflow: hidden;
}

.tan-nhang-hero__grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    gap: 40px;
}

.tan-nhang-hero__title {
    flex: 0 0 40%;
}

.tan-nhang-hero__title img {
    width: 100%;
    height: auto;
}

.tan-nhang-hero__doctor {
    flex: 0 0 60%;
}

.tan-nhang-hero__doctor img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Hero Deal Banner (Form Box) --- */
.tan-nhang-hero__deal {
    position: relative;
    max-width: 1200px;
    margin: 60px auto 40px;
    background: var(--color-white);
    border-radius: 42px;
    padding: 40px 60px;
    box-shadow: 0px 8px 12px rgb(191 147 78 / 27%);
    border: 1px solid var(--color-primary);
    z-index: 10;
}

/* Ẩn <br> do CF7 tự chèn giữa các field */
.tan-nhang-deal__form .wpcf7-form br {
    display: none;
}

/* Loại bỏ margin mặc định của <p> bọc ngoài mỗi field */
.tan-nhang-deal__form .wpcf7-form p {
    margin: 0;
}

.deal-deco {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.deal-deco--ribbon {
    top: 0;
    left: 50%;
    transform: translate(-50%, -100%);
    max-width: 200px;
}

.deal-deco--gift-left {
    bottom: -20px;
    left: -50px;
    max-width: 110px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.deal-deco--gift-right {
    top: -75px;
    right: -108px;
    max-width: 180px;
    filter: blur(4px);
    opacity: 0.8;
}

.tan-nhang-deal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Column Left: Price & Timer */
.tan-nhang-deal__banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid #eee;
    padding-right: 20px;
}

.deal-price-img {
    max-width: 280px;
    height: auto;
    margin-bottom: 25px;
}

.tan-nhang-deal__timer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.timer-label {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: 0.5px;
}

.timer-countdown {
    display: flex;
    align-items: center;
    gap: 8px;
}

.time-box {
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 20px;
    border-radius: 8px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.time-sep {
    color: var(--color-primary);
    font-weight: bold;
    font-size: 20px;
}



/* Column Right: CF7 Form Customization */
.tan-nhang-deal__form .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tan-nhang-deal__form input[type="text"],
.tan-nhang-deal__form input[type="email"],
.tan-nhang-deal__form input[type="tel"],
.tan-nhang-deal__form select {
    width: 100%;
    padding: 14px 21px;
    border: none;
    border-radius: 99px;
    font-family: 'roboto';
    font-size: 15px;
    margin-top: 12px;
    color: #333;
    background: #E8E8E8;
    outline: none;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: var(--transition-normal);
}

.tan-nhang-deal__form input:focus,
.tan-nhang-deal__form select:focus {
    background: #f0f0f0;
}

.tan-nhang-deal__form .deal-form-submit-wrapper {
    text-align: center;
}

.tan-nhang-deal__form .wpcf7-submit {
    display: inline-block;
    font-family: 'Geomanist', var(--font-body);
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(90deg, #A88143 0%, #D4AE70 50%, #A88143 100%);
    background-size: 200% auto;
    border: none;
    border-radius: 99px;
    padding: 14px 30px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(127, 99, 55, 0.3), inset 1px 1px 2px #E8D9A8, inset -1px -1px 2px #E8D9A8;
    text-transform: uppercase;
    margin-top: 5px;
}

.tan-nhang-deal__form .wpcf7-submit:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(168, 129, 67, 0.6), inset 1px 1px 2px #E8D9A8, inset -1px -1px 2px #E8D9A8;
}

/* ═══════════ SECTION: PHƯƠNG PHÁP CẢI THIỆN TÀN NHANG ═══════════ */
.tn-methods-science {
    padding: 30px 0;
    background-color: #f5f5f5;
    overflow: hidden;
    margin-top: -30px;
}

.tn-methods-science__header {
    margin-bottom: 60px;
}

.tn-methods-science__title .sol-title-top {
    font-size: 100px;
    margin-bottom: 8px;
}

.tn-methods-science__title .sol-title-middle {
    font-size: 35px;
    vertical-align: middle;
}

.tn-methods-science__title .sol-title-bottom {
    font-size: 60px;
    margin-top: 0px;
}

.tn-methods-science__subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    color: #7F6337;
    margin: 20px auto 0;
}

/* Grid Layout */
.tn-methods-science__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 30px;
}

/* Card Styling */
.tn-method-card {
    position: relative;
    flex: 0 0 calc(33.33% - 20px);
    min-width: 320px;
    height: 180px;
    background: linear-gradient(90deg, rgba(191, 147, 78, 1) 0%, rgba(245, 245, 245, 1) 71%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    padding: 20px 40px 20px 140px;
    overflow: visible;
    transition: var(--transition-normal);
}


/* Breakout Image */
.tn-method-card__image {
    position: absolute;
    left: -20px;
    top: -20px;
    width: 170px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 5;
}

.tn-method-card__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

/* Card Content */
.tn-method-card__content {
    width: 100%;
}

.tn-method-card__name-badge {
    display: inline-block;
    background: linear-gradient(90deg, #A88143 0%, #D4AE70 100%);
    box-shadow: 0 8px 20px rgba(191, 147, 78, 0.45), inset 2px 2px 5px rgba(255, 255, 255, 0.5), inset -3px -3px 8px rgb(255 255 255 / 40%);
    padding: 4px 18px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.tn-method-card__name-badge h3 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.3rem;
}

.tn-method-card__desc {
    font-family: var(--font-body);
    font-size: 18px;
    color: #7F6337;
    line-height: 1.5;
    margin: 0;
}

/* Center last row (Handled by justify-content: center) */

/* Footer & CTA */
.tn-methods-science__footer {
    margin-top: 30px;
}

/* --- CTA Bevel Button --- */
.cta-btn-bevel {
    display: inline-block;
    padding: 8px 35px;
    background: linear-gradient(90deg, #A88143 0%, #D4AE70 50%, #A88143 100%);
    color: #fff;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    border-radius: 99px;
    transition: all 0.4s ease;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(160, 113, 74, 0.3),
        inset 0 -4px 0 rgba(0, 0, 0, 0.1),
        inset 0 4px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: pulse-gentle 2s infinite ease-in-out;
}

.tn-methods-science__footer .cta-btn-bevel:hover,
.nam-doctor__cta button:hover,
.tn-offer-card__btn-wrap .cta-btn--offer:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(168, 129, 67, 0.6);
}

@keyframes pulse-gentle {
    0% {
        box-shadow: 0 0 0 0 rgba(200, 149, 106, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(200, 149, 106, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(200, 149, 106, 0);
    }
}

/* ═══════════ MOBILE RESPONSIVE (≤ 768px): HERO BANNER ═══════════ */
@media (max-width: 768px) {
    .tan-nhang-hero {
        padding-top: 20px;
    }

    .tan-nhang-deal__form {
        position: relative;
        top: -25px;
    }

    .tan-nhang-hero__grid {
        flex-direction: column;
        gap: 20px;
        padding-top: 4.5rem;
    }

    .tan-nhang-hero__title {
        max-width: 90%;
        margin: 0 auto;
    }

    .tan-nhang-hero__doctor {
        max-width: 100%;
        margin-bottom: -40px;
        /* Overlap model with form */
    }

    .tan-nhang-hero__deal {
        margin: 50px 15px 80px;
        padding: 27px 20px 17px;
        border-radius: 20px;
    }

    .tan-nhang-deal__form .wpcf7-submit {
        font-size: 21px;
        padding: 12px 36px;
        white-space: nowrap;
        font-weight: 400;
        margin-top: 0;
        position: relative;
        top: -9px;
    }

    .tan-nhang-deal__form .deal-form-submit-wrapper {
        position: absolute;
        bottom: -73px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
    }

    .deal-deco--ribbon {
        max-width: 150px;
    }

    .deal-deco--gift-left {
        left: -20px;
        bottom: -15px;
        max-width: 70px;
    }

    .deal-deco--gift-right {
        right: -32px;
        top: -42px;
        max-width: 100px;
    }

    .tan-nhang-deal-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tan-nhang-deal__banner {
        border-right: none;
        border-bottom: 2px dashed #eee;
        padding-right: 0;
        padding-bottom: 25px;
    }

    .deal-price-img {
        max-width: 187px;
    }

    .tan-nhang-deal__timer {
        gap: 10px;
    }

    .timer-label {
        font-size: 14px;
    }

    .time-box {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    /* Utility to hide/show */
    .mobile-only {
        display: block !important;
    }
}

/* ═══════════ MOBILE RESPONSIVE (≤ 768px): TN METHODS ═══════════ */
@media (max-width: 768px) {
    .tn-methods-science {
        padding: 60px 0;
    }

    .tn-methods-science__header {
        margin-bottom: 40px;
    }

    .tn-methods-science__title {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .tn-methods-science__title .sol-title-top {
        font-size: 50px;
        margin-bottom: 0;
    }

    .tn-methods-science__title .sol-title-middle {
        font-size: 24px;
        padding: 6px 20px;
        order: 2;
    }

    .tn-methods-science__title .sol-title-bottom {
        font-size: 36px;
        order: 3;
        margin-top: 0;
    }

    .tn-methods-science__subtitle {
        font-size: 15px;
        padding: 0 20px;
    }

    /* Zigzag Grid */
    .tn-methods-science__grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .tn-method-card {
        flex: 0 0 auto;
        width: 100%;
        max-width: 380px;
        height: auto;
        min-height: 140px;
        padding: 25px 30px 25px 120px;
        border-radius: 30px;
        /* Less rounded for better text space on mobile mobile */
    }

    /* Card Lẻ (1, 3, 5): Ảnh Phải, Chữ Trái */
    .tn-method-card:nth-child(odd) {
        flex-direction: row-reverse;
        padding: 25px 120px 25px 30px;
        background: linear-gradient(270deg, rgba(191, 147, 78, 1) 0%, rgba(245, 245, 245, 1) 71%)
    }

    .tn-method-card:nth-child(odd) .tn-method-card__image {
        left: auto;
        right: -10px;
        top: 37px;
        transform: scale(1.2);
    }

    /* Card Chẵn (2, 4): Ảnh Trái, Chữ Phải */
    .tn-method-card:nth-child(even) {
        flex-direction: row;
        padding: 25px 30px 25px 120px;
    }

    .tn-method-card:nth-child(even) .tn-method-card__image {
        left: -4px;
        right: auto;
        top: 31px;
        transform: scale(1.2);
    }

    .tn-method-card__image {
        width: 130px;
        height: 150px;
        top: 50%;
        transform: translateY(-50%);
    }

    .tn-method-card__name-badge {
        padding: 3px 14px;
    }

    .tn-method-card__name-badge h3 {
        font-size: 14px;
    }

    .tn-methods-science__footer {
        margin-top: 40px;
    }

    .cta-btn-bevel {
        font-size: 16px;
        padding: 14px 25px;
        width: 100%;
        max-width: 320px;
    }
}

/* ═══════════ IPHONE 14promax trở lên ═══════════ */
@media screen and (min-width:391px) and (max-width:430px) {
    .tn-methods-science__grid .tn-method-card:first-child .tn-method-card__image {
        right: 5px;
        top: -2px;
    }

    .tn-methods-science__grid .tn-method-card:nth-child(2) .tn-method-card__image {
        top: 4px;
    }

    .tn-methods-science__grid .tn-method-card:nth-child(3) .tn-method-card__image {
        right: 13px;
        top: 20px;
    }

    .tn-methods-science__grid .tn-method-card:nth-child(4) .tn-method-card__image {
        left: 1px;
        right: auto;
        top: 31px;
    }
}


/* ═══════════ MOBILE RESPONSIVE (≤ 576px) ═══════════ */
@media (max-width: 576px) {
    .tn-method-card {
        padding: 20px 20px 20px 110px;
    }

    .tn-method-card:nth-child(odd) {
        padding: 20px 110px 20px 20px;
    }

    .tn-method-card__image {
        width: 110px;
        height: 130px;
    }
}

/* ═══════════ SECTION: KHÁCH HÀNG THỰC TẾ ═══════════ */
.tn-customers {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.tn-customers__header {
    margin-bottom: 50px;
}

.tn-customers__header .sol-title-top {
    font-size: 100px;
    margin-bottom: 6px;
}

.tn-customers__header .sol-title-middle {
    font-size: 35px;
    padding: 6px 25px;
}

.tn-customers__header .sol-title-bottom {
    font-size: 60px;
    margin-top: 0px;
}

/* --- Customer Result Card (Modified) --- */
.da-result-card {
    background: linear-gradient(176deg, rgb(255 255 255 / 31%) 0%, rgb(255 255 255 / 32%) 100%);
    border: 1px solid rgb(255, 255, 255);
    border-radius: var(--radius-xl);
    overflow: visible;
    box-shadow: 0 2px 5px rgba(127, 99, 55, 0.3);
    transition: var(--transition-normal);
}

@media screen and (min-width:768px) {
    .da-result-card {
        height: 523px;
        margin-bottom: 43px;
    }
}

.da-result-card__single-img {
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.da-result-card__single-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: contain;
}

.da-result-card__info {
    padding: 20px;
    text-align: center;
}

.da-result-client {
    font-family: 'SVN-famous';
    font-size: 32px;
    color: #7F6337;
    margin-bottom: 0;
    line-height: 1.2;
}

.da-result-name {
    font-family: 'SVN-famous';
    font-size: 32px;
    color: #BF934E;
    line-height: 1.2;
    font-weight: 300;
    background: #fff;
    border-radius: 999px;
    padding: 2px 36px 2px 36px;
    width: max-content;
    margin: 0 auto;
}

.da-result-desc ul {
    list-style: none;
    padding: 0;
    margin-top: 25px;
    text-align: left;
}

.da-result-desc li {
    font-family: var(--font-body);
    font-size: 18px;
    color: #7F6337;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}

.da-result-desc li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #BF934E;
    font-weight: bold;
}

/* --- Splide Customization --- */
.tn-customers-slider-wrapper {
    position: relative;
    padding: 0 50px;
    margin-bottom: 60px;
}

/* --- Splide Customization: Nút Prev/Next Dark Glow --- */
.tn-slider__arrows .splide__arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff, #f7f4ed);
    border: 1px solid rgba(255, 255, 255, 0.9);
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow:
        0 8px 20px rgba(191, 147, 78, 0.15),
        inset 0 4px 6px rgba(255, 255, 255, 1);
}

/* Định dạng Icon mũi tên đậm và bo góc (Round) */
.tn-slider__arrows .splide__arrow svg path {
    stroke: #B69655;
    stroke-width: 3.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s ease;
}


/* Vị trí 2 nút (Desktop) - Giữ nguyên hoặc điều chỉnh theo layout thực tế */
.tn-slider__arrows .splide__arrow--prev {
    left: -26px;
    transform: scaleX(-1) !important;
}

.tn-slider__arrows .splide__arrow--next {
    right: -26px;
}

/* --- Video Shorts (Cloned from Da Page) --- */
.tn-video-shorts {
    margin-top: 40px;
}

.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;
}

.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, #fdfaf5, 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: var(--font-body);
    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) {

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

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

/* ═══════════ MOBILE RESPONSIVE (≤ 768px): TN CUSTOMERS ═══════════ */
@media (max-width: 768px) {
    .tn-customers {
        padding: 5px 0;
    }

    .tn-customers__header .sol-title-top {
        font-size: 48px;
    }

    .tn-customers__header .sol-title-middle {
        font-size: 22px;
        padding: 5px 20px;
    }

    .tn-customers__header .sol-title-bottom {
        font-size: 32px;
    }

    .tn-customers-slider-wrapper {
        padding: 0 10px;
    }

    /* 1. Biến khung chứa mũi tên thành Flexbox và căn giữa */
    /* 1. Xóa lệnh nằm đáy, chuyển sang canh giữa chiều dọc (top: 50%) và đẩy ra 2 mép (space-between) */
    .tn-slider__arrows {
        position: absolute;
        top: 50%;
        /* Đẩy xuống giữa khung */
        transform: translateY(-50%);
        bottom: auto;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 0;
        z-index: 10;
        pointer-events: none;
    }

    /* 2. Ép các nút hiển thị đúng trong Flexbox và nhận lại sự kiện click */
    .tn-slider__arrows .splide__arrow {
        position: static !important;
        transform: none !important;
        margin: 0;
        pointer-events: auto;
        /* Kích hoạt lại click cho riêng 2 nút */
    }

    /* 3. Tinh chỉnh cho nút lòi ra mép một chút (để không lẹm vào text/ảnh) */
    .tn-slider__arrows .splide__arrow--prev {
        margin-left: -5px;
    }

    .tn-slider__arrows .splide__arrow--next {
        margin-right: -5px;
    }

    /* Mobile Slide Stacking Logic */
    .tn-customers-slider .splide__slide {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .da-result-card {
        max-width: 100%;
    }

    .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: ƯU ĐÃI DÀNH CHO BẠN ═══════════ */
.tn-offers {
    padding: 167px 0;
    background-color: #f5f5f5;
}

.tn-offers__glass-box {
    position: relative;
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    padding: 60px 40px 80px 380px;
    box-shadow: 0 30px 60px rgba(191, 147, 78, 0.12);
    z-index: 5;
    max-width: 1396px;
    margin: 0 auto;
}

/* Hiệu ứng vệt sáng vàng chìm */
.tn-offers__blur {
    position: absolute;
    width: 400px;
    height: 400px;
    background-color: #BF934E;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.6;
    z-index: -1;
    pointer-events: none;
}

.tn-offers__blur--left {
    top: -100px;
    left: -150px;
}

.tn-offers__blur--right {
    bottom: -100px;
    right: -150px;
}

.tn-offers__deco-gift {
    position: absolute;
    bottom: 514px;
    left: 90%;
    width: 242px;
    z-index: 2;
    filter: blur(8px);
}

.tn-offers__layout {
    position: relative;
}

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

/* Hình mẫu (Desktop): Đè lên viền trái */
.tn-offers__model {
    position: absolute;
    left: -480px;
    /* Overlap mạnh ra ngoài glass box */
    bottom: -80px;
    width: 650px;
    z-index: 11;
    pointer-events: none;
}

@media screen and (min-width:1919px) {
    .tn-offers__content .tn-offers__model {
        left: -555px;
        width: 840px;
    }
}

.tn-offers__model img {
    width: 100%;
    height: auto;
    display: block;
}

.tn-offers__title-wrap {
    margin-bottom: 75px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.tn-offers__title-img {
    max-width: 450px;
    height: auto;
}

/* Grid Offer Cards */
.tn-offers__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 717px;
    align-items: end;
    position: relative;
    right: -108px;
}

.tn-offer-card {
    position: relative;
    background: #ffffff;
    border-radius: 25px;
    padding: 40px 15px 50px;
    /* Padding bottom rộng để nút 'đè' lên */
    text-align: center;
    box-shadow: 0 10px 25px rgba(127, 99, 55, 0.08);
    transition: var(--transition-normal);
    border: 1px solid rgba(191, 147, 78, 0.15);
}

/* Card so le (Desktop) */
.tn-offer-card--elevated {
    transform: translateY(-40px);
}

.tn-offer-card__ribbon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 70px;
    z-index: 2;
}

.tn-offer-card__image {
    margin-bottom: 10px;
}

.tn-offer-card__image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Nút CTA: Đè lên cạnh dưới của thẻ (Floating) */
.tn-offer-card__btn-wrap {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.tn-offer-card__deal-icon {
    position: absolute;
    left: -15px;
    top: 0;
    max-width: 45px;
    z-index: 11;
    animation: pulse-mini 2s infinite ease-in-out;
}

.cta-btn--offer {
    font-size: 15px;
    font-weight: 500;
    padding: 10px 20px 10px 35px;
    width: 100%;
    border-radius: 99px;
    white-space: nowrap;
}

@keyframes pulse-mini {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* ═══════════ MOBILE RESPONSIVE (≤ 768px): TN OFFERS ═══════════ */
@media (max-width: 768px) {
    .tn-offers {
        padding: 125px 0;
    }

    .tn-offers__glass-box {
        padding: 18px 15px 60px;
        border-radius: 30px;
    }

    .tn-offers__content {
        flex-direction: column;
    }

    .tn-offers__deco-gift {
        position: absolute;
        bottom: -86px;
        left: -1%;
        width: 118px;
        z-index: 2;
        filter: blur(8px);
    }

    /* Thứ tự Mobile (Hình 3): Tiêu đề -> Hình mẫu -> Cards */
    .tn-offers__title-wrap {
        order: 1;
        margin-bottom: 30px;
        position: absolute;
        top: -132px;
    }

    .tn-offers__title-img {
        max-width: 85%;
    }

    .tn-offers__model {
        position: relative;
        left: 0;
        bottom: 0;
        width: 100%;
        max-width: 320px;
        margin: 0 auto 40px;
        order: 2;
        pointer-events: auto;
    }

    .tn-offers__grid {
        order: 3;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 15px;
        right: 0;
    }

    .tn-offer-card--elevated {
        transform: none;
    }

    .tn-offer-card:last-child {
        grid-column: 1 / span 2;
        width: 60%;
        margin: 0 auto;
    }

    .tn-offer-card {
        padding: 16px 10px 29px;
    }

    .cta-btn--offer {
        font-size: 13px;
        padding: 8px 10px 8px 25px;
    }

    .tn-offer-card__deal-icon {
        max-width: 43px;
        left: -24px;
    }
}

@media (max-width: 480px) {
    .tn-offers__grid {
        gap: 45px 12px;
        align-items: stretch;
    }
}



/* ═══════════ SECTION: NHỮNG CON SỐ BIẾT NÓI ═══════════ */
.tn-numbers {
    padding: 30px 0;
    position: relative;
    background-color: #f5f5f5;
    overflow: hidden;
}

/* Background dải lụa chìm (Hình 4) */
.tn-numbers__bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
}

.tn-numbers__bg img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.8;
    /* Làm mờ ảnh để không tranh chấp với text */
}

/* Kéo container nội dung nổi lên trên nền lụa */
.tn-numbers .container {
    position: relative;
    z-index: 2;
}

/* --- Xử lý Header Tiêu đề --- */
.tn-numbers__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.tn-numbers__title .sol-title-top {
    font-size: 100px;
    line-height: 0.8;
    margin-bottom: 43px;
}

.tn-numbers__title .sol-title-middle {
    font-size: 35px;
    padding: 8px 35px;
    margin-top: -10px;
    box-shadow: 0 10px 20px rgba(191, 147, 78, 0.15);
}

/* --- Bố cục Desktop (Layout 2 cột) --- */
.tn-numbers__layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.tn-numbers__stats-container {
    flex: 0 0 45%;
    max-width: 500px;
}

.tn-numbers__image {
    flex: 0 0 52%;
}

.tn-numbers__image img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
}

/* --- Lưới Thống Kê (Grid) --- */
.tn-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 14px;
    position: relative;
    padding-bottom: 25px;
}

/* --- Decor: Các đường gạch chéo & Ngôi sao (Hình 3) --- */
.tn-grid-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.tn-line-h {
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 1px;
    /* Hiệu ứng đường kẻ vàng mờ dần ở 2 đầu */
    background: linear-gradient(90deg, transparent, rgba(191, 147, 78, 0.5), transparent);
}

.tn-grid-decor .tn-line-v {
    position: absolute;
    top: 5%;
    bottom: 5%;
    left: 50%;
    width: 1px;
    background: linear-gradient(0deg, transparent, rgba(191, 147, 78, 0.5), transparent);
}

.tn-star-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    padding: 4px;
}

.tn-stat-divider {
    position: relative;
    height: 30px;
    margin-bottom: 10px;
}

.tn-stat-divider .tn-line-h {
    left: 15%;
    right: 15%;
}

/* --- Typoraphy các thông số --- */
.tn-stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 1.4rem;
}

.tn-stat-prefix {
    font-family: var(--font-body);
    font-size: 18px;
    color: #7F6337;
    margin-bottom: -5px;
    z-index: 2;
}

.tn-stat-num {
    font-size: 75px;
    color: #B69655;
    line-height: 0.9;
    display: inline-block;
    vertical-align: middle;
    font-family: var(--font-heading-lux);
    background: linear-gradient(360deg, #b69655 0%, #e3c871 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
}

.tn-stat-desc {
    font-family: var(--font-body);
    font-size: 18px;
    color: #7F6337;
    margin-top: 5px;
    line-height: 1.3;
}

/* Item cuối "12 cơ sở" có font to hơn */
.tn-stat-item--full .tn-stat-num {
    font-size: 85px;
}

.tn-stat-num-text {
    font-family: var(--font-heading-lux);
    font-size: 38px;
    margin-left: 5px;
}

/* ═══════════ MOBILE RESPONSIVE (<768px) ═══════════ */
@media screen and (max-width: 768px) {
    .tn-numbers {
        padding: 20px 0;
    }

    .tn-numbers__title {
        margin-bottom: 30px;
    }

    .tn-numbers__title .sol-title-top {
        font-size: 60px;
    }

    .tn-numbers__title .sol-title-middle {
        font-size: 30px;
        padding: 2px 25px 0 25px;
        margin-top: -15px;
    }

    .tn-numbers__layout {
        flex-direction: column;
        gap: 30px;
    }

    /* Đảo vị trí: Hình ảnh lên trên, Số liệu xuống dưới (Theo hình 2) */
    .tn-numbers__image {
        order: 1;
    }

    .tn-numbers__stats-container {
        order: 2;
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
    }

    /* Thu nhỏ kích thước font chữ trên Mobile */
    .tn-stats-grid {
        gap: 30px 10px;
        padding-bottom: 20px;
    }

    .tn-stat-num {
        font-size: 50px;
    }

    .tn-stat-prefix {
        font-size: 14px;
        margin-bottom: -10px;
    }

    .tn-stat-desc {
        font-size: 16px;
        max-width: 160px;
    }

    .tn-stat-item--full .tn-stat-num {
        font-size: 65px;
    }

    .tn-stat-num-text {
        font-size: 30px;
    }

    /* Kéo dài các đường viền decor trên mobile */
    .tn-line-h {
        left: 0;
        right: 0;
    }

    .tn-grid-decor .tn-line-v {
        top: 0;
        bottom: 0;
    }
}

/* ═══════════ SECTION: DỊCH VỤ CHẤT LƯỢNG CAO ═══════════ */
.tn-services {
    padding: 80px 0;
    background-color: #f5f5f5;
    position: relative;
    overflow: hidden;
}

/* 1. Hình ảnh Background Decor chìm 2 bên (Desktop) */
.tn-services__decor {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
    max-width: 250px;
}

.tn-services__decor--left {
    left: -5%;
}

.tn-services__decor--right {
    right: -5%;
}

/* Khung nội dung chính đè lên trên Decor */
.tn-services .container {
    position: relative;
    z-index: 2;
}

/* 2. Tiêu đề (Header) */
.tn-services__header {
    margin-bottom: 50px;
}

.tn-services__title {
    display: block;
    /* Đổi từ flex sang block để tự dàn hàng */
    text-align: center;
}

.tn-services__title .sol-title-top {
    display: inline-block;
    vertical-align: middle;
    font-size: 100px;
    margin-bottom: 0;
    margin-right: 15px;
    /* Thêm khoảng cách với khung viền */
    line-height: 0.9;
}

.tn-services__title .sol-title-middle {
    display: inline-block;
    vertical-align: middle;
    font-size: 35px;
    padding: 8px 30px;
    margin-top: 0;
    bottom: -23px;
    left: -19px;
}

.tn-services__title .sol-title-bottom {
    display: block;
    /* Ép chữ 'tại Linh Anh' rớt xuống dòng 2 */
    font-size: 60px;
    margin-top: 15px;
}

.tn-services__subtitle {
    text-align: center;
    font-family: var(--font-body);
    font-size: 15px;
    color: #7F6337;
    max-width: 750px;
    margin: 20px auto 0;
    line-height: 1.5;
    font-weight: 500;
}

/* ═══════════ 3. LAYOUT GRID & CARDS (DESKTOP) ═══════════ */
.tn-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.tn-service-card {
    background-color: #e8e8e8;
    border-radius: 30px;
    padding: 20px;
    display: flex;
    box-shadow: 0 10px 30px rgba(127, 99, 55, 0.05);
}

.tn-service-card__image {
    border-radius: 12px;
    overflow: hidden;
}

.tn-service-card__content p {
    font-family: var(--font-body);
    font-size: 18px;
    color: #7F6337;
    margin: 0;
    line-height: 1.5;
}

/* Logic Ẩn/Hiện Hình Ảnh theo thiết bị */
.tn-service-card .img-mobile {
    display: none;
}

.tn-service-card .img-desktop {
    display: block;
    width: 100%;
    height: auto;
}

/* --- Bố cục cụ thể từng Card trên Desktop --- */

/* Card 1: 1 cột. Ảnh Trên - Chữ Dưới */
.tn-service-card--1 {
    grid-column: span 1;
    flex-direction: column;
    gap: 15px;
}

/* Card 2 (Spa): 2 cột. Chữ Trái - Ảnh Phải */
.tn-service-card--2 {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    gap: 25px;
}

.tn-service-card--2 .tn-service-card__content {
    width: 45%;
}

.tn-service-card--2 .tn-service-card__image {
    width: 55%;
}

/* Card 3, 4, 5: 1 cột. Ảnh Trên - Chữ Dưới */
.tn-service-card--3,
.tn-service-card--4,
.tn-service-card--5 {
    grid-column: span 1;
    flex-direction: column;
    gap: 15px;
}

.tn-services__desc {
    font-size: 18px;
    color: #7F6337;
    font-weight: 500;
    margin-top: 30px;
}

/* ═══════════ 4. MOBILE RESPONSIVE (<768px) ═══════════ */
@media screen and (max-width: 768px) {
    .tn-services {
        padding: 50px 0;
    }

    /* Ẩn hình nền Decor 2 bên */
    .tn-services__decor {
        display: none !important;
    }

    /* Thu nhỏ Tiêu đề */
    .tn-services__header {
        margin-bottom: 30px;
    }

    .tn-services__title {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .tn-services__title .sol-title-top {
        font-size: 60px;
        margin-right: 0;
    }

    .tn-services__title .sol-title-middle {
        font-size: 30px;
        padding: 6px 20px;
        margin-top: 0;
        left: 0;
        bottom: -7px;
    }

    .tn-services__title .sol-title-bottom {
        margin-top: 0;
        font-size: 40px;
    }

    .tn-services__subtitle {
        font-size: 13px;
        padding: 0 15px;
    }

    /* Kích hoạt ảnh Mobile, ẩn ảnh Desktop */
    .tn-service-card .img-desktop {
        display: none !important;
    }

    .tn-service-card .img-mobile {
        display: block !important;
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    /* Lưới Mobile 2 cột bất đối xứng */
    .tn-services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .tn-service-card {
        padding: 12px;
    }

    .tn-service-card__content p {
        font-size: 16px;
        line-height: 1.4;
    }

    /* --- Đảo chiều & Định vị Layout theo chuẩn Figma Mobile --- */

    /* Card 1: Full 2 cột. Ảnh Trái - Chữ Phải */
    .tn-service-card--1 {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }

    .tn-service-card--1 .tn-service-card__image {
        width: 40%;
        flex-shrink: 0;
    }

    .tn-service-card--1 .tn-service-card__content {
        width: 60%;
    }

    /* Card 2 (Spa): Nằm cột trái, cao bằng 2 hàng. Chữ Trên - Ảnh Dưới */
    .tn-service-card--2 {
        grid-column: 1;
        grid-row: 2 / span 2;
        flex-direction: column;
        gap: 10px;
        display: flex;
        justify-content: space-around;
    }

    .tn-service-card--2 .tn-service-card__content {
        width: 100%;
    }

    .tn-service-card--2 .tn-service-card__image {
        width: 100%;
    }

    /* Card 4 (Laser): Nằm cột phải, hàng 2. Ảnh Trên - Chữ Dưới */
    .tn-service-card--4 {
        grid-column: 2;
        grid-row: 2;
        flex-direction: column;
        gap: 10px;
    }

    /* Card 5 (Visia): Nằm cột phải, hàng 3. Ảnh Trên - Chữ Dưới */
    .tn-service-card--5 {
        grid-column: 2;
        grid-row: 3;
        flex-direction: column;
        gap: 10px;
    }

    /* Card 3 (Luxury): Nằm full 2 cột dưới cùng. Chữ Trái - Ảnh Phải 
       (Dùng row-reverse để đảo ngược vị trí HTML từ Ảnh->Chữ thành Chữ->Ảnh) */
    .tn-service-card--3 {
        grid-column: 1 / -1;
        grid-row: 4;
        flex-direction: row-reverse;
        align-items: center;
        gap: 15px;
    }

    .tn-service-card--3 .tn-service-card__image {
        width: 40%;
        flex-shrink: 0;
    }

    .tn-service-card--3 .tn-service-card__content {
        width: 60%;
        text-align: left;
    }
}

/* ══════════════════════════════════════════════════════════
   QUY TRÌNH TRỊ NÁM CHUẨN Y KHOA
   ══════════════════════════════════════════════════════════ */
.nam-process {
    padding-block: 80px;
    background-color: #f5f5f5;
    position: relative;
    overflow: hidden;
}

/* ── Background Decorations ── */
.npc-bg-decor {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 460px;
    height: 782px;
    z-index: 0;
    pointer-events: none;
    /* Không cản trở click */
}

.npc-bg-decor--left {
    left: 0;
}

.npc-bg-decor--right {
    right: 0;
}

.npc-bg-decor img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.6;
    /* Làm mờ nhẹ để không quá gắt */
}

/* ── Header ── */
.npc-header {
    text-align: center;
    margin-bottom: 50px;
}

.npc-title-script {
    font-family: var(--font-accent-art);
    font-size: 100px;
    color: #B69655;
    line-height: 0.6;
    margin-bottom: -15px;
    font-weight: 300;
    z-index: 1;
    position: relative;
}

.npc-title-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.npc-title-pill {
    display: inline-block;
    font-family: var(--font-heading-lux);
    font-size: 35px;
    color: #7F6337;
    border: 1px solid #BF934E;
    border-radius: 999px;
    padding: 0px 33px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 15px rgba(127, 99, 55, 0.05);
    margin-top: 52px;
    font-weight: 500;
}

.npc-title-text {
    font-family: var(--font-heading-lux);
    font-size: 60px;
    color: #BF934E;
    margin-top: 59px;
    background: linear-gradient(360deg, rgba(182, 150, 85, 1) 0%, rgba(227, 200, 113, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ── Main Illustration ── */
.npc-main-illu {
    margin-bottom: 60px;
}

.npc-main-illu img {
    max-width: 70%;
    height: auto;
    display: block;
    margin: 0 auto;
    transform: scale(1.5);
}

/* ── Steps Grid ── */
.npc-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* Thẻ Step Card (Hình con nhộng) */
.npc-step-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 999px;
    border: 1.5px solid transparent;
    background: linear-gradient(#fff, #ffffff26) padding-box, linear-gradient(to bottom, #bf934e26 0%, rgba(191, 147, 78, 0) 100%) border-box;
    padding: 24px;
    width: 221px;
    height: 558px;
}

/* Layout So le (Staggered Layout) cho Desktop */
@media (min-width: 769px) {
    .npc-step-card:nth-child(even) {
        flex-direction: column-reverse;
        background: linear-gradient(#ffffff26, #fff) padding-box, linear-gradient(to bottom, #bf934e26 0%, rgba(191, 147, 78, 0) 100%) border-box;
    }

    .npc-steps {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        position: relative;
        top: -116px;
    }
}

.npc-step-card__img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
}

.npc-step-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Nội dung Text */
.npc-step-card__content {
    /* Khoảng cách 28px từ hình đến chữ như design */
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-label {
    font-family: 'Geomanist', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #7F6337;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.step-desc {
    font-family: 'Geomanist', sans-serif;
    font-size: 18px;
    color: #7F6337;
    line-height: 1.4;
    margin: 0;
}

/* ── Mobile Responsive ── */
@media (max-width: 768px) {
    .npc-main-illu img {
        max-width: 100%;
    }

    .nam-process {
        padding-block: 30px;
    }

    .npc-bg-decor {
        display: none;
    }

    /* Resize Headers */
    .npc-header {
        margin-bottom: 40px;
    }

    .npc-title-script {
        font-size: 70px;
        margin-bottom: -5px;
    }

    .npc-title-main {
        flex-direction: column;
        /* Rớt hàng chữ 'tại Linh Anh' */
        gap: 8px;
    }

    .npc-title-pill {
        font-size: 28px;
        padding: 6px 20px;
        margin-top: 40px;
    }

    .npc-title-text {
        font-size: 52px;
        margin-top: -9px;
        width: 100%;
    }

    .npc-main-illu {
        margin-bottom: 40px;
    }

    /* Wrap Steps in 3 - 2 Grid */
    .npc-steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 11px;
    }

    .npc-step-card {
        flex: 0 0 calc(33.333% - 10px);
        max-width: 140px;
        height: 280px;
        flex-direction: column !important;
        padding: 15px 8px;
        border-radius: 100px;
        background: linear-gradient(#fff, #ffffff26) padding-box, linear-gradient(to bottom, #bf934e26 0%, rgba(191, 147, 78, 0) 100%) border-box;
    }

    /* Tăng kích thước typography lên 16px */
    .npc-step-card__content {
        padding: 15px 5px;
    }

    .step-label {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .step-desc {
        font-size: 16px;
        line-height: 1.4;
    }
}

/* ══════════════════════════════════════════════════════════
   BÁO CHÍ NÓI VỀ LINH ANH
   ══════════════════════════════════════════════════════════ */
.nam-press {
    padding-top: 30px;
    /* Bỏ padding bottom để podium chạm đáy */
    background-color: #f5f5f5;
    overflow: hidden;
}

/* ── Hàng 1 (Tiêu đề & Slider) ── */
.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: 100px;
    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: 35px;
    color: #7F6337;
    border: 1px solid #BF934E;
    border-radius: 999px;
    padding: 0px 40px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 15px rgba(127, 99, 55, 0.05);
    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;
}

/* ── Slider Báo chí ── */
.nam-press__slider-col {
    flex: 1;
    min-width: 0;
}

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

/* Nút liquid glass Splide */
.js-splide-press .splide__arrow {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    width: 44px;
    height: 44px;
    opacity: 1;
    /* Hiển thị luôn thay vì mờ */
    transition: all 0.3s ease;
}

.js-splide-press .splide__arrow:hover {
    background: rgba(255, 255, 255, 0.9);
}

.js-splide-press .splide__arrow svg {
    fill: #7F6337;
}

/* Kéo nút lùi ra rìa slider */
.js-splide-press .splide__arrow--prev {
    left: -1em;
}

.js-splide-press .splide__arrow--next {
    right: -1em;
}

/* ── Hàng 2 (Chứng nhận & Podium) ── */
.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;
    }
}

/* Podium Background - Container scale ra biên */


.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;
}

/* Ultilities */
.desktop-only {
    display: block;
}

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

/* Ẩn thẻ clone track cho marquee css */

/* ── Mobile Responsive ── */
@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: 70px;
        margin-bottom: 29px;
    }

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

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

    /* Trên mobile slider giãn rộng full */
    .nam-press__slider-col {
        width: 100%;
    }

    /* Đưa nút slider vào lồng bên trong viền */
    .js-splide-press .splide__arrow--prev {
        left: 0.5em;
    }

    .js-splide-press .splide__arrow--next {
        right: 0.5em;
    }

    /* ── Marquee CSS cho phần Chứng nhận Mobile ── */
    .npr-awards {
        overflow: hidden;
        /* Áp dụng mờ lề trái/phải 10% như section đối tác */
        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;
        /* Giảm gap chứng nhận trên mobile */
        padding-right: 15px;
        /* Cân bằng loop */
        flex: 0 0 auto;
    }

    .npr-award-item img {
        height: 200px;
        /* Thu nhỏ chứng nhận */
    }

    /* Keyframe Loop vô hạn */
    @keyframes npr-marquee {
        0% {
            transform: translateX(0);
        }

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

    }
}

/* ══════════════════════════════════════════════════════════
   PARTNERS SECTION — "Đối tác của Linh Anh"
   ══════════════════════════════════════════════════════════ */
.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: 60px;
    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 Implementation */
.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: 70px;
    }

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

    .marquee__item {
        width: 120px;
    }

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

/* ═══════════════════════════════════════════════════════════
   ĐỘI NGŨ BÁC SĨ — Section (Task 1)
   Copied & scoped from home.css — safe on dieu-tri-da page
   ═══════════════════════════════════════════════════════════ */
.da-doctor-section {
    background-color: #f5f5f5;
    overflow: hidden;
    position: relative;
}

/* ── Title typography ───────────────────────────────────── */
.da-doctor-section .doctor-team__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    line-height: 1;
}

.da-doctor-section .dt-title-top {
    font-family: var(--font-accent-art);
    font-size: 100px;
    font-weight: normal;
    color: var(--color-primary);
    margin-bottom: -50px;
    margin-right: 79px;
    opacity: 0.9;
}

.da-doctor-section .dt-title-middle {
    font-family: var(--font-heading-lux);
    font-size: 35px;
    color: #7F6337;
    border: 1px solid var(--color-primary);
    border-radius: 999px;
    padding: 0.8rem 30px;
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    font-weight: 500;
    position: relative;
    left: 14%;
    top: -5px;
    box-shadow: 0 5px 13px 2px rgba(191, 147, 78, 0.23);
}

.da-doctor-section .dt-title-bottom {
    font-family: var(--font-heading-lux);
    font-size: 60px;
    background: linear-gradient(360deg, #B69655 0%, #E3C871 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 6px;
    margin-left: 80px;
}

.da-doctor-section .doctor-team__header {
    margin-bottom: 20px;
}

/* ── Slider ─────────────────────────────────────────────── */
.da-doctor-section .doctor-slider {
    position: relative;
}

.da-doctor-section .doctor-slider .splide__track {
    overflow: hidden;
    z-index: 1;
}

.da-doctor-section .doctor-slider .splide__slide {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
    opacity: 0.5;
    transform: scale(0.85);
    display: flex;
    justify-content: center;
}

.da-doctor-section .doctor-slider .splide__slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.da-doctor-section .doctor-slider {
    position: relative;
    z-index: 1;
}

/* ── Liquid Glass arrows ─────────────────────────────────── */
.da-doctor-section .doctor-slider__arrows {
    display: flex !important;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 20;
    padding: 0 10px;
}

.da-doctor-section .splide__arrow {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.da-doctor-section .splide__arrow--prev {
    left: 20px;
}

.da-doctor-section .splide__arrow--next {
    right: 20px;
}

.da-doctor-section .liquid-glass-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow:
        inset 0 0 15px rgba(255, 255, 255, 0.4),
        0 8px 32px rgba(0, 0, 0, 0.05);
    font-size: 1.2rem;
}

.da-doctor-section .liquid-glass-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    color: #a07a38;
}

/* --- Tối ưu UX cho Slider Đội ngũ Bác sĩ --- */

/* 1. Đổi con trỏ chuột thành hình bàn tay (kéo thả) khi rê vào vùng slider */
.da-doctor-section .splide__track {
    cursor: grab;
}

/* 2. Đổi thành bàn tay nắm lại khi đang giữ chuột để kéo */
.da-doctor-section .splide__track:active {
    cursor: grabbing;
}

/* 3. Hiển thị con trỏ 'Click' (bàn tay chỉ ngón) khi rê chuột vào các bác sĩ đang bị mờ ở 2 bên */
.da-doctor-section .splide__slide:not(.is-active) {
    cursor: pointer;
}

/* ── Background pattern ──────────────────────────────────── */
.da-doctor-section .doctor-team__bg-pattern {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    max-width: 1400px;
    z-index: 0;
    pointer-events: none;
}

.da-doctor-section .doctor-team__bg-pattern--desktop {
    display: block;
}

.da-doctor-section .doctor-team__bg-pattern--mobile {
    display: none;
}

.da-doctor-section .doctor-team__bg-pattern img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
}

/* ── Doctor Card ─────────────────────────────────────────── */
.da-doctor-section .doctor-card {
    width: 100%;
    max-width: 404px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.da-doctor-section .doctor-card__image-arch {
    width: 100%;
    overflow: hidden;
    margin-bottom: -40px;
    position: relative;
    z-index: 1;
}

.da-doctor-section .doctor-card__image-arch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.da-doctor-section .doctor-card__info-box {
    width: 90%;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 36px;
    padding: 24px 16px;
    box-shadow: -1px 3px 10px 2px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
    margin-bottom: 16px;
}

.da-doctor-section .doctor-card__name {
    font-family: 'Geomanist', sans-serif;
    font-size: 22px;
    color: #B69655;
    margin-bottom: 8px;
    font-weight: 500;
}

.da-doctor-section .doctor-card__title {
    font-size: 21px;
    color: #7F6337;
    line-height: 1.2;
    margin: 0;
    font-family: 'SVN-Famous', serif;
}

.da-doctor-section .doctor-card__career-box {
    width: 85%;
    padding: 0 16px;
    background: #fff;
    box-shadow: -1px 3px 10px 2px rgba(0, 0, 0, 0.05);
    padding-top: 3rem;
    position: relative;
    top: -5%;
    border-radius: 36px;
}

.da-doctor-section .doctor-card__experience {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.da-doctor-section .doctor-card__experience li {
    font-size: 16px;
    color: #7F6337;
    line-height: 1.6;
    margin-bottom: 12px;
    position: relative;
    font-family: 'Geomanist', sans-serif;
    font-weight: 300;
    padding-left: 16px;
}

.da-doctor-section .doctor-card__experience li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

/* ── Pagination ──────────────────────────────────────────── */
.da-doctor-section .doctor-slider .splide__pagination {
    bottom: -10px;
}

.da-doctor-section .doctor-slider .splide__pagination__page {
    width: 8px;
    height: 8px;
    background: #E2E2E2;
    opacity: 1;
    transition: 0.3s;
}

.da-doctor-section .doctor-slider .splide__pagination__page.is-active {
    width: 32px;
    background: var(--color-primary);
    border-radius: 999px;
}

/* ── CTA ─────────────────────────────────────────────────── */
.da-doctor__cta {
    margin-top: 40px;
    margin-bottom: 20px;
}

/* ── Responsive Mobile ───────────────────────────────────── */
@media (max-width: 768px) {
    .da-doctor-section .doctor-team__bg-pattern--desktop {
        display: none;
    }

    .da-doctor-section .doctor-team__bg-pattern--mobile {
        display: block;
        width: 150%;
        top: 50%;
    }

    .da-doctor-section .doctor-slider .splide__slide {
        transform: scale(1);
        opacity: 1;
    }

    .da-doctor-section .doctor-slider .splide__slide.is-active {
        transform: scale(1);
    }

    .da-doctor-section .dt-title-top {
        font-size: 70px;
        margin-bottom: -30px;
    }

    .da-doctor-section .dt-title-middle {
        font-size: 26px;
        left: 122px;
        padding: 10px 27px;
    }

    .da-doctor-section .dt-title-bottom {
        font-size: 40px;
        margin-left: 0;
    }

    .da-doctor-section .doctor-card__name {
        font-size: 18px;
    }

    .da-doctor-section .doctor-card__image-arch {
        margin-bottom: -30px;
    }

    .da-doctor-section .liquid-glass-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   DẢI BẰNG CẤP / CHỨNG CHỈ BÁC SĨ — Section (Task 2)
   Copied & scoped from dieu-tri-nam.css
   ═══════════════════════════════════════════════════════════ */
.da-doctor-section .nam-doctor__certs,
.da-doctor-section .da-doctor__certs {
    margin-top: 60px;
    max-width: 100%;
}

.da-doctor-section .ndc-certs-gallery {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: #BF934E #EBEBEB;
}

.da-doctor-section .ndc-certs-gallery::-webkit-scrollbar {
    height: 8px;
}

.da-doctor-section .ndc-certs-gallery::-webkit-scrollbar-track {
    background: #EBEBEB;
    border-radius: 10px;
}

.da-doctor-section .ndc-certs-gallery::-webkit-scrollbar-thumb {
    background: #BF934E;
    border-radius: 10px;
}

.da-doctor-section .ndc-cert-item {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    flex: 0 0 310px;
    width: 310px;
}

.da-doctor-section .ndc-cert-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.da-doctor-section .ndc-cert-item:hover img {
    transform: scale(1.05);
}

.da-doctor-section .cert-zoom-icon {
    position: absolute;
    inset: 0;
    background: rgba(191, 147, 78, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.da-doctor-section .ndc-cert-item:hover .cert-zoom-icon {
    opacity: 1;
}

/* Mobile — horizontal scroll for certs */
@media (max-width: 768px) {
    .da-doctor-section .da-doctor__certs {
        margin-inline: -20px;
        margin-top: 40px;
    }

    .da-doctor-section .ndc-certs-gallery {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 10px 20px 25px;
        scroll-snap-type: x mandatory;
        gap: 15px;
        scrollbar-width: thin;
        scrollbar-color: #BF934E transparent;
    }

    .da-doctor-section .ndc-certs-gallery::-webkit-scrollbar {
        height: 4px;
    }

    .da-doctor-section .ndc-certs-gallery::-webkit-scrollbar-thumb {
        background: #BF934E;
        border-radius: 10px;
    }

    .da-doctor-section .ndc-cert-item {
        flex: 0 0 260px;
        width: 260px;
        max-width: none;
        scroll-snap-align: center;
    }
}

/**** Nám doctor CTA ***/
.nam-doctor__cta {
    margin-top: 94px;
    display: flex;
    justify-content: center;
}

.nam-doctor__cta button {
    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 2s infinite ease-in-out;
    margin-top: -56px;
    position: relative;
    z-index: 5;
    align-self: center;
}


/* ═══════════ SECTION: BẠN CÓ ĐANG GẶP TÌNH TRẠNG NÀY ═══════════ */
.tn-conditions {
    padding: 80px 0;
    background-color: #f5f5f5;
    position: relative;
}

/* --- Visual Decor --- */
.tn-cond-blur {
    position: absolute;
    width: 400px;
    height: 400px;
    background-color: #BF934E;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
}

.tn-cond-blur--left {
    top: 10%;
    left: -200px;
}

.tn-cond-blur--right {
    bottom: 10%;
    right: -200px;
}

.tn-cond-star {
    position: absolute;
    top: 5%;
    right: 7%;
    max-width: 442px;
    z-index: 2;
}

/* Header */
.tn-conditions__header {
    margin-bottom: 50px;
    position: relative;
    z-index: 3;
}

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

.tn-conditions__title .sol-title-top {
    font-size: 85px;
    margin-bottom: 14px;
}

.tn-conditions__title .sol-title-middle {
    font-size: 35px;
}


/* --- Bố cục Desktop --- */
.tn-conditions__layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    z-index: 3;
    max-width: 1385px;
    margin: 0 auto;
}

/* 1. ĐIỀU CHỈNH CỘT TRÁI (KHẮC PHỤC LỖI VÒNG CUNG) */
.tn-cond-col--left {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
    position: absolute;
    z-index: 5;
    left: 94px;
    top: 73px;
    transform: rotate(200deg);
}

.tn-cond-col--left.js-slide-item.is-animated {
    animation: hex-cluster-rotate 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes hex-cluster-rotate {
    0% {
        transform: rotate(200deg);
        opacity: 0;
    }

    70% {
        transform: rotate(141deg);
        /* Cố tình xoay lố qua một chút để tạo độ nảy (Bounce) mềm mại */
        opacity: 1;
    }

    100% {
        transform: rotate(177deg);
        /* Điểm dừng cuối cùng khớp 100% Figma */
        opacity: 1;
    }
}

/* Độ thụt thò tạo vòng cung ôm sát mặt mẫu theo Figma */
.tn-cond-col--left .tn-cond-hex:nth-child(1) {
    margin-right: 35px;
}

.tn-cond-col--left .tn-cond-hex:nth-child(2) {
    margin-right: -40px;
    /* Thò sâu nhất vào sát má người mẫu */
    margin-top: 15px;
    margin-bottom: 15px;
}

.tn-cond-col--left .tn-cond-hex:nth-child(3) {
    margin-right: 35px;
}

/* Tăng nhẹ size lục giác cho bề thế giống Figma */
.tn-cond-hex {
    width: 146px;
    height: auto;
}

.tn-cond-hex img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

/* 2. ĐIỀU CHỈNH CỘT GIỮA */
.tn-cond-col--center {
    width: 50%;
    text-align: center;
    position: relative;
    z-index: 1;
    /* Nằm dưới để lục giác đè lên */
}

.tn-cond-main-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* 3. ĐIỀU CHỈNH CỘT PHẢI (KÉO TEXT SÁT VÀO HÌNH) */
.tn-cond-col--right {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-left: -30px;
    /* Kéo các thẻ text sát vào khung background vòng tròn */
    position: relative;
    z-index: 5;
}

.tn-cond-text {
    background: linear-gradient(90deg, rgb(212 174 112 / 70%) 0%, rgba(212, 174, 112, 0) 100%);
    border-radius: 50px;
    padding: 14px 25px;
}

.tn-cond-text p {
    font-family: var(--font-body);
    font-size: 18px;
    color: #7F6337;
    margin: 0;
    line-height: 1.4;
}

/* 4. HIỆU ỨNG TRƯỢT 1-2 NHỊP RỒI ĐỨNG YÊN (SLIDE & BOUNCE) */
.js-slide-item {
    opacity: 0;
}

.js-slide-item.is-animated {
    animation: slide-bounce-settle 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

/* Delay cho từng phần tử */
.tn-cond-col--left .js-slide-item:nth-child(1) {
    animation-delay: 0.1s;
}

.tn-cond-col--left .js-slide-item:nth-child(2) {
    animation-delay: 0.2s;
}

.tn-cond-col--left .js-slide-item:nth-child(3) {
    animation-delay: 0.3s;
}

.tn-cond-main-img.js-slide-item {
    animation-delay: 0.4s;
}

.tn-cond-col--right .js-slide-item:nth-child(1) {
    animation-delay: 0.2s;
}

.tn-cond-col--right .js-slide-item:nth-child(2) {
    animation-delay: 0.3s;
    margin-left: 56px;
}

.tn-cond-col--right .js-slide-item:nth-child(3) {
    animation-delay: 0.4s;
    margin-left: 99px;
}

.tn-cond-col--right .js-slide-item:nth-child(4) {
    animation-delay: 0.5s;
    margin-left: 56px;
}

.tn-cond-col--right .js-slide-item:nth-child(5) {
    animation-delay: 0.6s;
}

@keyframes slide-bounce-settle {
    0% {
        transform: translateY(40px);
        opacity: 0;
    }

    40% {
        transform: translateY(-15px);
        opacity: 1;
    }

    70% {
        transform: translateY(8px);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ═══════════ MOBILE RESPONSIVE (<768px) ═══════════ */
@media (max-width: 768px) {
    .tn-cond-col--left.js-slide-item.is-animated {
        animation: none !important;
        opacity: 1;
        transform: rotate(180deg);
    }

    .tn-conditions {
        padding: 30px 0;
    }

    .tn-cond-star {
        display: none !important;
    }

    .tn-cond-blur {
        width: 250px;
        height: 250px;
        filter: blur(80px);
        opacity: 0.2;
    }

    .tn-conditions__header {
        margin-bottom: 30px;
    }

    .tn-conditions__title .sol-title-top {
        font-size: 65px;
        margin-bottom: 8px;
    }

    .tn-conditions__title .sol-title-middle {
        font-size: 28px;
        padding: 6px 20px;
    }

    .tn-conditions__layout {
        flex-direction: column;
        gap: 20px;
    }

    .tn-cond-col--center {
        width: 100%;
        order: 1;
        margin-bottom: -30px;
    }

    /* Reset margin âm từ desktop */
    .tn-cond-col--left {
        width: 100%;
        order: 2;
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        position: relative;
        z-index: 5;
        margin-right: 0;
        left: 4px;
        top: -22px;
    }

    .tn-cond-col--right .js-slide-item:nth-child(2) {
        animation-delay: 0.3s;
        margin-left: 0px;
    }

    .tn-cond-col--right .js-slide-item:nth-child(3) {
        animation-delay: 0.4s;
        margin-left: 0;
    }

    .tn-cond-col--right .js-slide-item:nth-child(4) {
        animation-delay: 0.4s;
        margin-left: 0;
    }

    .tn-cond-col--left .tn-cond-hex:nth-child(1),
    .tn-cond-col--left .tn-cond-hex:nth-child(2),
    .tn-cond-col--left .tn-cond-hex:nth-child(3) {
        margin-right: 0;
        margin-top: 0;
        margin-bottom: 0;
        /* Reset toàn bộ */
    }

    .tn-cond-col--right {
        width: 100%;
        order: 3;
        padding: 0 15px;
        margin-left: 0;
    }

    /* Reset */

    .tn-cond-hex {
        width: 80px;
    }

    .tn-cond-col--right {
        width: 100%;
        order: 3;
        padding: 0 15px;
    }

    .tn-cond-text p {
        font-size: 16px;
    }
}