.slider_section {
    border-bottom: 1px solid #e8e8e8;
    margin: 10px 0;
}
.slider_section .item {
    position: relative;
    line-height: 0;
}
.slider_section .item > img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
}
.slider_section .sliderSwiper {
    position: relative;
    cursor: grab;
}
.slider_section .sliderSwiper:active {
    cursor: grabbing;
}
/* Mũi tên mảnh, hai bên */
.slider_section .sliderSwiper .button_navigation {
    position: absolute;
    z-index: 12;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.92);
    background: transparent;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.45;
    transition: opacity 0.2s ease, color 0.2s ease;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
    visibility: visible;
}
.slider_section .sliderSwiper:hover .button_navigation {
    opacity: 0.75;
}
.slider_section .sliderSwiper .button_navigation:hover {
    opacity: 1;
    color: #fff;
}
.slider_section .sliderSwiper .slider-next {
    right: 8px;
}
.slider_section .sliderSwiper .slider-prev {
    left: 8px;
}
@media screen and (max-width: 575px) {
    .slider_section .sliderSwiper .button_navigation {
        width: 36px;
        height: 36px;
        font-size: 22px;
    }
    .slider_section .slider-pagination-bar {
        padding: 10px 12px 12px;
    }
}
@media screen and (min-width: 992px) {
    .slider_section .sliderSwiper .slider-next {
        right: 20px;
    }
    .slider_section .sliderSwiper .slider-prev {
        left: 20px;
    }
}
/* Paging dưới banner (nền trắng), bấm chấm để chuyển slide */
.slider_section .slider-pagination-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 16px 14px;
    background: #fff;
}
.slider_section .slider-pagination {
    position: static !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    width: auto !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0;
    z-index: 2;
}
.slider_section .slider-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 5px !important;
    padding: 0;
    background: #c4c4c4;
    border: none;
    opacity: 1;
    vertical-align: middle;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}
.slider_section .slider-pagination .swiper-pagination-bullet-active {
    background: #1a1a1a;
    transform: scale(1.1);
}
.slider_section .slider-pagination .swiper-pagination-bullet:focus-visible {
    outline: 2px solid #1a1a1a;
    outline-offset: 2px;
}
/* Legacy slide layout (nếu còn chỗ khác dùng) */
.slide-left {
    position: relative;
    padding-left: 3%;
    width: 50%;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}
.slide-left h2 {
    color: #ed7d31;
    font-weight: 700;
    font-size: 100px;
}
.slide-left .des {
    padding: 1rem 0;
    font-size: 24px;
    font-weight: 700;
}
.slide-right {
    width: 90%;
}
/* home content */
/* ══ HERO BANNER ══ */
.hero-banner {
    /* background: linear-gradient(135deg, #dde8ff 0%, #ead8ff 45%, #f6e8ff 70%, #ddeeff 100%); */
    background-color: #edf1f4;
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 70px rgba(80, 60, 200, 0.16);
    min-height: 480px;
}

.hero-banner::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(150,110,255,.17) 0%, transparent 70%);
    top: -120px; right: 220px;
    pointer-events: none;
}
.hero-banner::after {
    content: '';
    position: absolute;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(70,150,255,.13) 0%, transparent 70%);
    bottom: -80px; left: 40px;
    pointer-events: none;
}

/* ══ LEFT ══ */
.hero-left {
    padding: 50px 36px 50px 60px;
    position: relative;
    z-index: 2;
    animation: fromLeft .7s cubic-bezier(.16,1,.3,1) both;
}

@keyframes fromLeft {
    from { opacity:0; transform:translateX(-36px); }
    to   { opacity:1; transform:none; }
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(100,80,240,.22);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 12.5px;
    font-weight: 700;
    color: #5046d8;
    backdrop-filter: blur(6px);
}

.badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #5046d8;
    animation: blink 1.8s ease-in-out infinite;
}

@keyframes blink {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:.4; transform:scale(1.5); }
}

.hero-title {
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 900;
    color: #12153d;
    line-height: 1.18;
    letter-spacing: -.6px;
}
.hero-title .text-blue { color: #2563eb; }

/* problem list */
.section-label {
    font-size: 18px;
    font-weight: 800;
    color: #12153d;
}

.problem-list {
    list-style: none;
    padding: 0; margin: 0;
}
.problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #2e3a5e;
    line-height: 1.55;
    padding: 4px 0;
}
.prob-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: #2563eb;
    flex-shrink: 0;
    margin-top: 6px;
}

.section-divider {
    border: none;
    border-top: 1.5px solid rgba(37,99,235,.18);
}

.solution-label {
    font-size: 18px;
    font-weight: 800;
    color: #12153d;
}

.sol-title {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 16px;
    font-weight: 800;
    color: #2563eb;
}

.sol-num {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f8ef7, #8b5cf6);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sub-list {
    list-style: none;
    padding-left: 33px;
    margin: 0;
}
.sub-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 15px;
    color: #2e3a5e;
    line-height: 1.55;
    padding: 3px 0;
}
.sub-list li::before {
    content: '▪';
    color: #4f8ef7;
    font-size: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* CTA buttons */
.btn-cta-red {
    background: linear-gradient(135deg, #e84040, #ff5a30);
    color: #fff !important;
    border: none;
    border-radius: 100px;
    font-weight: 800;
    font-size: 14px;
    padding: 12px 26px;
    box-shadow: 0 6px 22px rgba(232,64,64,.35);
    transition: transform .18s, filter .18s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-cta-red:hover { transform: translateY(-2px); filter: brightness(1.08); }

.btn-cta-orange {
    background: linear-gradient(135deg, #ff8c35, #ff5c18);
    color: #fff !important;
    border: none;
    border-radius: 100px;
    font-weight: 800;
    font-size: 14px;
    padding: 12px 26px;
    box-shadow: 0 6px 22px rgba(255,140,53,.32);
    transition: transform .18s, filter .18s;
    text-decoration: none;
    margin-left: 15px;
}
.btn-cta-orange:hover { transform: translateY(-2px); filter: brightness(1.08); }

.hero-response-note {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13.5px;
    color: #3c4b68;
    background: linear-gradient(90deg, #eef4ff 0%, #f5fff8 100%);
    border: 1px solid #c8d8f8;
    border-radius: 999px;
    padding: 0.38rem 1rem 0.38rem 0.75rem;
    box-shadow: 0 2px 8px rgba(37,68,132,0.07);
}
.hero-response-note i {
    color: #254484;
    font-size: 13px;
    flex: 0 0 auto;
}
.hero-response-note strong {
    color: #1a3670;
    font-weight: 700;
}
/* Animated green pulse dot */
.response-pulse {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #27ae60;
    flex: 0 0 9px;
    position: relative;
    box-shadow: 0 0 0 0 rgba(39,174,96, 0.5);
    animation: respPulse 1.8s ease-out infinite;
}
@keyframes respPulse {
    0%   { box-shadow: 0 0 0 0   rgba(39,174,96, 0.55); }
    70%  { box-shadow: 0 0 0 7px rgba(39,174,96, 0);    }
    100% { box-shadow: 0 0 0 0   rgba(39,174,96, 0);    }
}

.btn-cta-outline {
    background: rgba(255,255,255,.78);
    color: #2e3a6e !important;
    border: 1.5px solid rgba(80,100,210,.22);
    border-radius: 100px;
    font-weight: 800;
    font-size: 14px;
    padding: 12px 26px;
    backdrop-filter: blur(6px);
    transition: transform .18s;
    text-decoration: none;
}
.btn-cta-outline:hover { transform: translateY(-2px); }

.btn-ghost-play {
    background: transparent;
    border: none;
    color: #2563eb;
    font-weight: 800;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    cursor: pointer;
    font-family: 'Be Vietnam Pro', sans-serif;
    transition: opacity .18s;
}
.btn-ghost-play:hover { opacity: .75; }

.play-btn {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f8ef7, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ══ RIGHT ══ */
.hero-right {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 480px;
    overflow: visible;
    animation: fromRight .7s .15s cubic-bezier(.16,1,.3,1) both;
}

@keyframes fromRight {
    from { opacity:0; transform:translateX(36px); }
    to   { opacity:1; transform:none; }
}

.ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.ring-1 {
    width: 460px; height: 460px;
    border: 2.5px solid rgba(90,130,255,.14);
    bottom: -90px; right: -90px;
}
.ring-2 {
    width: 340px; height: 340px;
    border: 2px solid rgba(150,100,255,.11);
    bottom: -50px; right: -50px;
}

.figure-glow {
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 260px; height: 380px;
    background: linear-gradient(170deg, rgba(100,150,255,.22), rgba(150,80,255,.18));
    border-radius: 50% 50% 0 0;
    pointer-events: none;
}

.person-svg {
    position: relative;
    z-index: 2;
    width: 230px;
}

/* floating tags */
.float-tag {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 9px;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px 16px 8px 9px;
    font-size: 12.5px;
    font-weight: 700;
    color: #1e2a5e;
    box-shadow: 0 8px 28px rgba(70,80,200,.12);
    border: 1px solid rgba(255,255,255,.9);
    white-space: nowrap;
    z-index: 5;
}

.tag-icon {
    width: 30px; height: 30px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}
.tag-check-icon {
    font-size: 16px;
    font-weight: 700;
    color: #1a56db;
    line-height: 1;
}

.tag-1 { top: 55px;  left: 0;    animation: floatA 3s ease-in-out infinite; }
.tag-2 { top: 30px;  right: 10px; animation: floatA 3s .5s ease-in-out infinite; }
.tag-3 { top: 175px; left: -10px; animation: floatA 3s 1s ease-in-out infinite; }
.tag-4 { top: 165px; right: 5px;  animation: floatA 3s 1.5s ease-in-out infinite; }
.tag-5 { bottom: 135px; left: 5px; animation: floatA 3s 2s ease-in-out infinite; }
.girl-img{
    position: absolute;
    right: -100px;
    bottom: -160px;
    width: 450px;
    max-width: 100%;
}
@keyframes floatA {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-7px); }
}

.stamp {
    position: absolute;
    bottom: 145px; left: 18px;
    width: 88px; height: 88px;
    border-radius: 50%;
    background: radial-gradient(#fff6f6, #ffe6e6);
    border: 3px dashed #e84040;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 8px;
    font-weight: 900;
    color: #c00;
    line-height: 1.4;
    animation: spin 14s linear infinite;
    z-index: 5;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* side social */
.social-side {
    position: absolute;
    left: 16px; top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.social-circle {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 19px;
    color: #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,.18);
    transition: transform .2s;
}
.social-circle:hover { transform: scale(1.12); color:#fff; }
.sc-zalo  { background: #0068ff; }
.sc-phone { background: #e84040; }

/* ── Tablet (≤ 991px) ── */
@media (max-width: 991px) {
    .hero-left { padding: 36px 28px 28px; }
    /* Ẩn panel phải (ảnh trang trí) từ tablet trở xuống */
    .hero-right { display: none; }
    .social-side { display: none; }

    /* Slider text */
    .slide-left h2 { font-size: 60px; }
    .slide-left .des { font-size: 18px; }
}
/* product home */
.product_list {
    padding: 2rem 0 0;
}
.product_list h2{
    margin: 0px;
    font-size: 20px;
    font-weight: 700;
    height: 45px;
    line-height: 45px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    color: #254484;
}
.product_list h2 a{
    font-size: 14px;
    font-weight: 700;
    color: #000;
    text-transform: none;
}
.product_list h2 a:hover{
    color: #254484;
}
.product_list .item {
    margin-top: 10px;
    background-color: #FFF;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    transition: all 0.5s linear;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgb(var(--sel-blue-20));
}
/* .product_list .item:hover {
    -webkit-box-shadow: 0px 5px 10px 0px rgb(138 138 145 / 80%);
    -moz-box-shadow: 0px 5px 10px 0px rgba(138, 138, 145, 0.8);
    box-shadow: 0px 5px 10px 0px rgb(138 138 145 / 80%);
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    transition: all 0.5s linear;
} */
.product_list .item img {
    width: 100%;
}
.product_list .item .info {
    padding: 10px;
}
.product_list .item .info a{
    color: #000;
}
.product_list .item .info a:hover{
    color: #2F2F8B;
}
.product_list .item .info .code_pro{
    text-align: center;
    font-size: 18px;
}
.product_list .item .info h3{
    font-size: 16px;
    margin: 0 0 5px;
    font-weight: 700;
    text-align: center;
}
.product_new .swiper-slide {
    padding-bottom: 10px;
}
/* lexbiz intro */
.lexbiz_intro {
    padding: 2rem 0 0;
}
.lexbiz_intro .lexbiz_intro__box {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(37, 68, 132, 0.10);
    border: 1px solid #dce5f8;
}
/* ---- Left panel ---- */
.lexbiz_intro .lexbiz_intro__left {
    background: #ffffff;
    height: 100%;
    padding: 1.75rem 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.lexbiz_intro .lexbiz_intro__block {
    padding: 0;
}
.lexbiz_intro .li_block_title {
    margin: 0 0 0.85rem;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    line-height: 1.3;
}
.lexbiz_intro .li_block_title i {
    font-size: 16px;
    flex: 0 0 auto;
}
.lexbiz_intro .li_problem {
    color: #c0392b;
}
.lexbiz_intro .li_problem i {
    color: #e74c3c;
}
.lexbiz_intro .li_solution {
    color: #1a6b35;
}
.lexbiz_intro .li_solution i {
    color: #27ae60;
}
/* Problem list */
.lexbiz_intro .li_list--problem {
    margin: 0;
    padding: 0;
    list-style: none;
}
.lexbiz_intro .li_list--problem > li {
    position: relative;
    padding-left: 1.1rem;
    margin-bottom: 0.55rem;
    color: #3c3c3c;
    line-height: 1.5;
    font-size: 15.5px;
}
.lexbiz_intro .li_list--problem > li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e74c3c;
    position: absolute;
    left: 0;
    top: 0.55rem;
}
/* Divider */
.lexbiz_intro .li_sep {
    height: 1px;
    background: linear-gradient(to right, #dce5f8, transparent);
    margin: 1.1rem 0;
}
/* Solution ordered list */
.lexbiz_intro .li_list--solution {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: sol-counter;
}
.lexbiz_intro .li_list--solution > li {
    counter-increment: sol-counter;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
}
.lexbiz_intro .li_list--solution > li::before {
    content: counter(sol-counter);
    min-width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #254484;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
    margin-top: 2px;
}
.lexbiz_intro .li_list--solution > li > div,
.lexbiz_intro .li_list--solution > li strong {
    display: block;
    font-size: 15.5px;
    font-weight: 700;
    color: #1f2f57;
    line-height: 1.35;
    margin-bottom: 0.3rem;
}
.lexbiz_intro .li_list--solution > li ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.lexbiz_intro .li_list--solution > li ul li {
    position: relative;
    padding-left: 1rem;
    font-size: 14.5px;
    color: #4f5f7f;
    line-height: 1.5;
    margin-bottom: 0.2rem;
}
.lexbiz_intro .li_list--solution > li ul li::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ed7d31;
    position: absolute;
    left: 0;
    top: 0.55rem;
}
.lexbiz_intro .li_list--solution > li > * {
    flex: 1;
}
/* ---- Right panel (CTA) ---- */
.lexbiz_intro .lexbiz_intro__cta {
    background: linear-gradient(160deg, #1a3670 0%, #2b55a8 55%, #1f4390 100%);
    color: #ffffff;
    height: 100%;
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.lexbiz_intro .li_cta__header {
    margin-bottom: 0.9rem;
}
.lexbiz_intro .li_cta__badge {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.40);
    border-radius: 30px;
    padding: 0.2rem 0.85rem;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.lexbiz_intro .li_cta__title {
    margin: 0 0 1.35rem;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
}
.lexbiz_intro .li_cta__phone_block {
    background: rgba(255,255,255,0.10);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    margin-bottom: 0.85rem;
    text-align: center;
}
.lexbiz_intro .li_cta__phone_label {
    font-size: 13px;
    opacity: 0.85;
    margin-bottom: 0.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.lexbiz_intro .li_cta__phone {
    display: block;
    color: #ffe066;
    font-size: 28px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 1px;
    line-height: 1;
    transition: color 0.2s;
}
.lexbiz_intro .li_cta__phone:hover {
    color: #ffd700;
}
.lexbiz_intro .li_cta__or {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    opacity: 0.7;
    margin: 0.15rem 0 0.7rem;
    letter-spacing: 0.5px;
}
.lexbiz_intro .li_cta__book {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #ffe066;
    color: #1a3670;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    text-align: center;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    line-height: 1.3;
}
.lexbiz_intro .li_cta__book:hover {
    background: #ffd700;
    color: #1a3670;
    transform: translateY(-2px);
}
.lexbiz_intro .li_cta__book i {
    font-size: 15px;
    flex: 0 0 auto;
}
.lexbiz_intro .li_cta__note {
    margin-top: auto;
    padding-top: 1rem;
    text-align: center;
    font-size: 13.5px;
    opacity: 0.88;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    line-height: 1.4;
}
.lexbiz_intro .li_cta__note i {
    font-size: 14px;
    flex: 0 0 auto;
}
/* Tin tức trang chủ — thanh tiêu đề xanh, lưới 2 cột */
.news_home {
    padding: 2rem 0 3rem;
    background: #fff;
}
.news_home__head-bar {
    background-color: #000080;
    padding: 0.85rem 0;
    margin-bottom: 1.75rem;
}
.news_home__head-inner {
    position: relative;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
}
.news_home__heading {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    font-style: italic;
    color: #fff;
    letter-spacing: 0.02em;
}
.news_home__view-all {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    font-weight: 600;
    font-style: normal;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    white-space: nowrap;
}
.news_home__view-all:hover {
    color: #fff;
    text-decoration: underline;
}
.news_home__view-all i {
    font-size: 0.85em;
    vertical-align: middle;
}
.news_home__body {
    padding-bottom: 0.5rem;
}
/* Mỗi hàng 2 bài (desktop), 1 cột mobile */
.news_home__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1.5rem;
    align-items: stretch;
}
.news_home__card {
    text-align: left;
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 2px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}
.news_home__media {
    display: block;
    line-height: 0;
    overflow: hidden;
    margin: 0;
}
.news_home__img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}
.news_home__media:hover .news_home__img {
    transform: scale(1.04);
}
.news_home__text {
    padding: 1rem 1.15rem 1.2rem;
}
.news_home__title {
    margin: 0 0 0.5rem;
    font-size: clamp(1rem, 1.85vw, 1.12rem);
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
}
/* Thứ tự chẵn: DOM là chữ rồi ảnh — gạch ngăn giữa hai khối */
.news_home__card--content-first:not(.news_home__card--text) .news_home__text {
    border-bottom: 1px solid #ebebeb;
}
@media screen and (min-width: 768px) {
    .news_home__card {
        height: 100%;
    }
    .news_home__card:not(.news_home__card--text) {
        display: flex;
        flex-direction: column;
    }
    .news_home__card:not(.news_home__card--text) .news_home__media {
        display: block;
        width: 100%;
        flex: 0 0 auto;
        line-height: 0;
    }
    .news_home__card:not(.news_home__card--text) .news_home__img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        object-fit: cover;
        display: block;
    }
    .news_home__card:not(.news_home__card--text) .news_home__text {
        flex: 1 1 auto;
        padding: 1.25rem 1.35rem 1.4rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        border-top: 1px solid #ebebeb;
        min-width: 0;
    }
    .news_home__card--content-first:not(.news_home__card--text) .news_home__text {
        border-top: none;
        border-bottom: 1px solid #ebebeb;
    }
    .news_home__card--text {
        display: flex;
        flex-direction: column;
    }
    .news_home__card--text .news_home__text {
        flex: 1 1 auto;
        padding: 1.25rem 1.35rem 1.4rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        min-width: 0;
    }
}
.news_home__title a {
    color: #111;
    text-decoration: none;
}
.news_home__title a:hover {
    color: #000080;
}
.news_home__summary {
    margin: 0 0 0.55rem;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.5;
    color: #333;
}
.news_home__summary::before {
    content: '➤';
    display: inline-block;
    margin-right: 0.45em;
    font-weight: 700;
    color: #222;
}
.news_home__more {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #1a4fd4;
    text-decoration: none;
}
.news_home__more:hover {
    color: #000080;
    text-decoration: underline;
}
@media screen and (max-width: 767px) {
    .news_home__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        align-items: start;
    }
    .news_home__card {
        height: auto;
    }
    .news_home__view-all {
        position: static;
        transform: none;
        display: inline-block;
        margin-top: 0.5rem;
    }
    .news_home__head-inner {
        padding-bottom: 0.25rem;
    }
}

/* ══ Banner quảng cáo Toyota Veloz (gradient + khung ảnh trắng, Bootstrap 2 cột) ══ */
.veloz-promo-banner {
    background: linear-gradient(to right, #0033cc, #0055ff);
    padding: 2.5rem 0 3rem;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.veloz-promo-banner__img-box {
    padding: 18px 22px 14px;
    line-height: 0;
    max-width: 100%;
}
.veloz-promo-banner__img {
    width: 100%;
    max-width: 720px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 14px;
    object-fit: contain;
}
@media screen and (min-width: 768px) {
    .veloz-promo-banner__img {
        max-width: none;
        margin: 0;
    }
}
.veloz-promo-banner__content {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.35rem 0;
    min-width: 0;
}
.veloz-promo-banner__model {
    margin: 0;
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    font-weight: 300;
    letter-spacing: 0.02em;
}
.veloz-promo-banner__tagline {
    margin: 0.25rem 0 0;
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.35;
}
.veloz-promo-banner__price {
    margin: 0.35rem 0 1rem;
    font-size: clamp(1.85rem, 5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.1;
}
.veloz-promo-banner__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.85rem;
    background: #fff;
    color: #0a1744;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 999px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35), 0 4px 24px rgba(255, 255, 255, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.veloz-promo-banner__cta:hover,
.veloz-promo-banner__cta:focus-visible {
    color: #0033cc;
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5), 0 8px 28px rgba(255, 255, 255, 0.45);
}
@media screen and (max-width: 767px) {
    .veloz-promo-banner {
        padding: 1.75rem 0 2rem;
    }
    .veloz-promo-banner__img-box {
        padding: 12px 14px 10px;
    }
    .veloz-promo-banner__cta {
        min-height: 44px;
        padding: 0.65rem 1.5rem;
    }
}

/* ══ Home: xe đã qua sử dụng (nền trắng, 2 cột Bootstrap) ══ */
.home-used-cars {
    background: #fff;
    padding:1rem 0 2rem;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.home-used-cars__img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
.home-used-cars__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 0;
}
.home-used-cars__title {
    margin: 0;
    font-size: clamp(1.15rem, 4.2vw, 32px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.35;
    color: #111;
}
.home-used-cars__title .d-block + .d-block {
    margin-top: 0.2em;
}
.home-used-cars__actions {
    width: 100%;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    gap: 1.25rem;
}
@media screen and (min-width: 576px) {
    .home-used-cars__actions {
        gap: 0 2.25rem;
    }
}
.home-used-cars__btn {
    flex: 1 1 auto;
    min-width: min(100%, 200px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.25rem;
    background-color: #eb0a1e;
    color: #fff !important;
    font-weight: 700;
    font-size: clamp(0.78rem, 2.4vw, 18px);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-align: center;
    border-radius: 2px;
    border: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.home-used-cars__btn:hover,
.home-used-cars__btn:focus-visible {
    background-color: #c90e1f;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
    transform: translateY(-1px);
}
@media screen and (max-width: 575px) {
    .home-used-cars {
        padding: 2rem 0 2.5rem;
    }
    .home-used-cars__btn {
        width: 100%;
    }
}

/* ══ Home: 2 banner cạnh nhau — mỗi cột 1 ảnh (Bootstrap) ══ */
.home-sure-dual-banners {
    padding: 0;
    background: #fff;
}
.home-sure-dual-banners__hit {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    line-height: 0;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.home-sure-dual-banners__hit:hover {
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.14);
    transform: translateY(-2px);
}
.home-sure-dual-banners__hit:focus-visible {
    outline: 3px solid #0056b3;
    outline-offset: 3px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.14);
}
.home-sure-dual-banners__img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: top;
}
@media screen and (max-width: 767px) {
    .home-sure-dual-banners {
        padding: 0.5rem 0 0.25rem;
    }
    .home-sure-dual-banners .row.g-3 {
        row-gap: 0.75rem !important;
    }
    /* Khoảng cách khi Bootstrap 4 không hỗ trợ gutter g-* */
    .home-sure-dual-banners .col-12.col-md-6:not(:first-child) {
        margin-top: 0.75rem;
    }
}
@media screen and (min-width: 768px) {
    .home-sure-dual-banners .col-12.col-md-6:not(:first-child) {
        margin-top: 0;
    }
}

/* ══ Home: danh sách dòng xe (CÁC DÒNG XE ĐANG BÁN) ══ */
.home_models {
    padding: 2rem 0 2.5rem;
    background: #fff;
}
.home_models__quick-wrap {
    width: 1000px;
    max-width: 100%;
    margin: 0 auto 1.75rem;
}
.home_models__quickbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    gap: 0.5rem 0.25rem;
    padding: 1.65rem 1.25rem 1.4rem;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.1);
}
.home_models__quick-item {
    flex: 1 1 0;
    min-width: 5.5rem;
    max-width: 11rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    padding: 0.35rem 0.5rem;
    text-align: center;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 700;
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
    line-height: 1.25;
    border-radius: 10px;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.home_models__quick-item:hover,
.home_models__quick-item:focus-visible {
    background: #f5f7f9;
    color: #000;
    outline: none;
}
.home_models__quick-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    color: #1a1a1a;
}
.home_models__quick-icon svg {
    width: auto;
    height: 100%;
    max-width: 88px;
}
.home_models__quick-icon--bus svg {
    max-width: 100px;
}
.home_models__quick-label {
    display: block;
}
.home_models__title {
    margin: 0 0 2rem;
    padding-bottom: 0.65rem;
    font-size: clamp(1.125rem, 2.2vw, 1.35rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #1a1a1a;
    display: inline-block;
    border-bottom: 3px solid #0056b3;
    line-height: 1.3;
}
.home_models__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem 1.25rem;
    align-items: stretch;
}
.home_models__card {
    text-align: center;
}
.home_models__card-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    color: inherit;
    text-decoration: none;
    padding: 0.5rem 0.35rem 1rem;
    border-radius: 12px;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.home_models__card-link:hover,
.home_models__card-link:focus-visible {
    background: #fafbfc;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
    outline: none;
}
.home_models__img-wrap {
    width: 100%;
    max-width: 280px;
    margin: 0 auto 1rem;
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f6f8;
    border-radius: 10px;
    overflow: hidden;
}
.home_models__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}
.home_models__name {
    margin: 0 0 0.35rem;
    font-size: clamp(1rem, 2.6vw, 24px);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.35;
}
.home_models__price-label {
    margin: 0 0 0.4rem;
    color: #888;
    font-weight: 400;
}
.home_models__price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 9.5rem;
    padding: 9px 29px;
    font-size: 21px;
    /* 700 = Semibold trong bộ Toyota Type; mockup giá dùng nét Black */
    font-weight: 900;
    letter-spacing: -0.035em;
    font-variant-numeric: tabular-nums;
    font-synthesis: none;
    border-radius: 999px;
    border: 1px solid #06f;
    color: #06f;
    background: #fff;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.home_models__card--featured .home_models__price,
.home_models__card:not(.home_models__card--featured) .home_models__card-link:hover .home_models__price,
.home_models__card:not(.home_models__card--featured) .home_models__card-link:focus-visible .home_models__price {
    background: #06f;
    color: #fff;
    border-color: #06f;
}
.home_models__footer {
    margin-top: 2.25rem;
    text-align: center;
}
.home_models__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px clamp(1rem, 4vw, 2rem);
    min-width: min(100%, 22rem);
    font-size: clamp(0.95rem, 3.5vw, 22px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    background: #0056b3;
    border-radius: 999px;
    border: 2px solid #0056b3;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}
.home_models__cta:hover,
.home_models__cta:focus-visible {
    background: #FFF;
    border-color: #004494;
    color: #004494;
    outline: none;
}
@media screen and (max-width: 992px) {
    .home_models__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem 1rem;
    }
    .home_models__quick-icon {
        height: 42px;
    }
}
@media screen and (max-width: 480px) {
    .home_models {
        padding: 2rem 0 2rem;
    }
    .home_models__quick-wrap {
        margin-bottom: 1.25rem;
    }
    .home_models__quickbar {
        padding: 1.25rem 0.75rem 1.1rem;
    }
    .home_models__quick-item {
        flex: 1 1 42%;
        max-width: none;
    }
    .home_models__grid {
        grid-template-columns: 1fr;
    }
    .home_models__img-wrap {
        max-width: 100%;
    }
}

/* ══ Home: Vinh Danh ══ */
.home_honors {
    padding: 3.5rem 0 3.75rem;
    background: #0020c2;
    color: #fff;
}
.home_honors__head {
    text-align: center;
    margin-bottom: 2.25rem;
}
.home_honors__head svg{
    fill: #FFF;
    height: 126px;
}
.home_honors__crown {
    display: block;
    width: 72px;
    height: auto;
    margin: 0 auto 1rem;
    color: #fff;
}
.home_honors__spark {
    opacity: 0.95;
}
.home_honors__spark--sm {
    opacity: 0.85;
}
.home_honors__title {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}
.home_honors__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    align-items: stretch;
}
.home_honors__card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.home_honors__photo {
    aspect-ratio: 4 / 3.5;
    background: #f0f2f5;
    overflow: hidden;
}
.home_honors__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.home_honors__body {
    padding: 1.15rem 1rem 1.35rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.home_honors__name {
    margin: 0 0 0.25rem;
    font-size: 22px;
    font-weight: 700;
    color: #111;
    line-height: 1.35;
    font-synthesis: none;
}
.home_honors__meta {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 400;
    color: #333;
    line-height: 1.45;
}
@media screen and (max-width: 992px) {
    .home_honors__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 576px) {
    .home_honors {
        padding: 2.5rem 0 2.75rem;
    }
    .home_honors__head svg {
        height: 72px;
    }
    .home_honors__name {
        font-size: clamp(1rem, 4.5vw, 22px);
    }
    .home_honors__grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media screen and (min-width: 577px) and (max-width: 991px) {
    .home_honors__head svg {
        height: 96px;
    }
}

/* Form liên hệ trang chủ */
.home_contact__container {
    width: 100%;
    max-width: 1000px;
}
.home_contact #home-contact-heading {
    font-size: clamp(1.15rem, 3.5vw, 26px);
    line-height: 1.3;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

/* Form liên hệ trang chủ: placeholder & “placeholder” của select */
.home_contact .form-control::placeholder {
    color: #9e9e9e;
    opacity: 1;
}
.home_contact .form-control::-webkit-input-placeholder {
    color: #9e9e9e;
}
.home_contact .form-control::-moz-placeholder {
    color: #9e9e9e;
    opacity: 1;
}
.home_contact .form-control:-ms-input-placeholder {
    color: #9e9e9e;
}
.home_contact select.form-control:invalid {
    color: #9e9e9e;
}
.home_contact select.form-control:valid {
    color: #212529;
}
.home_contact select.form-control option {
    color: #212529;
}

/* ── Tablet large (≤ 1024px) ── */
@media screen and (max-width: 1024px) {
    .hero-left { padding: 40px 30px 40px 40px; }
}

/* ── Tablet (≤ 992px) ── */
@media screen and (max-width: 992px) {
    .slide-left { width: 80%; }
    .hero-banner { min-height: 400px; }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
    .news_home { padding: 2rem 0; }
}

/* ── Mobile (≤ 668px) ── */
@media screen and (max-width: 668px) {
    /* Hero: hide right decorative panel on mobile */
    .hero-right {
        display: none;
    }
    .hero-left {
        padding: 24px 16px 28px;
    }
    .hero-banner {
        min-height: auto;
    }
    /* Slider text */
    .slide-left {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    .slide-left h2 {
        font-size: 32px;
    }
    .slide-left .des {
        font-size: 15px;
        padding: 0.5rem 0;
    }
    .slider_section .item .content .box {
        width: 100%;
    }
    /* Hero title */
    .hero-title {
        font-size: 22px;
    }
    /* CTA buttons stack properly */
    .btn-cta-orange {
        margin-left: 0;
    }
    /* lexbiz_intro */
    .lexbiz_intro {
        padding-top: 1.25rem;
    }
    .lexbiz_intro .lexbiz_intro__left {
        padding: 1.25rem 1rem;
    }
    .lexbiz_intro .li_block_title {
        font-size: 16px;
    }
    .lexbiz_intro .li_list--problem > li {
        font-size: 14.5px;
    }
    .lexbiz_intro .li_list--solution > li strong {
        font-size: 14.5px;
    }
    .lexbiz_intro .lexbiz_intro__cta {
        padding: 1.25rem 1rem;
        border-radius: 0 0 14px 14px;
    }
    .lexbiz_intro .li_cta__title { font-size: 17px; }
    .lexbiz_intro .li_cta__phone { font-size: 24px; }
    .lexbiz_intro .li_cta__book { font-size: 14px; }
    .news_home__heading { font-size: 1.15rem; }
}

@media screen and (max-width: 480px) {
    .hero-title { font-size: 20px; }
    .badge-pill { font-size: 11px; }
}

/* ========== Trang đăng ký lái thử (/dang-ky-lai-thu) — bám layout toyotatancang testdrive ========== */
.thtc-td-hero {
    width: 100%;
    background: #fff;
    padding: 1.25rem 0 0;
}
.thtc-td-hero__wrap {
    max-width: 100%;
}
.thtc-td-hero__media {
    position: relative;
    width: 100%;
    min-height: clamp(260px, 38vw, 440px);
    max-height: 520px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(13, 42, 69, 0.08);
}
.thtc-td-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}
.thtc-td-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.12) 0%,
        rgba(0, 0, 0, 0.28) 45%,
        rgba(0, 0, 0, 0.55) 100%
    );
    pointer-events: none;
    border-radius: inherit;
}
.thtc-td-hero__content {
    position: relative;
    z-index: 2;
    min-height: clamp(260px, 38vw, 440px);
    max-height: 520px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 1.75rem 1.5rem 2.25rem;
    box-sizing: border-box;
}
.thtc-td-hero__copy {
    text-align: right;
    color: #fff;
    font-family: "Roboto", system-ui, -apple-system, sans-serif;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}
.thtc-td-hero__line1 {
    display: block;
    font-size: clamp(1.1rem, 2.8vw, 1.65rem);
    font-weight: 700;
    letter-spacing: 0.28em;
    line-height: 1.2;
    margin-bottom: 0.15rem;
}
.thtc-td-hero__line2 {
    display: block;
    font-size: clamp(2.4rem, 9vw, 4.75rem);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: 0.02em;
}
.thtc-td-hero__line3 {
    display: block;
    font-family: "Dancing Script", "Brush Script MT", cursive;
    font-size: clamp(2rem, 5.5vw, 3.5rem);
    font-weight: 600;
    line-height: 0.85;
    margin-top: -0.2em;
    padding-right: 0.15em;
    letter-spacing: 0.02em;
}
.thtc-td-page {
    padding: 2.75rem 0 4rem;
    background: #fff;
}
.thtc-td-page__inner {
    width: 580px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}
@media screen and (max-width: 619px) {
    .thtc-td-page__inner {
        width: 100%;
    }
}
.thtc-td-card {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}
.thtc-td-card__title {
    margin: 0 0 1.75rem;
    font-size: 1.35rem;
    font-weight: 700;
    text-align: left;
    text-transform: none;
    letter-spacing: 0;
    color: #37474f;
    font-family: "Roboto", system-ui, -apple-system, sans-serif;
}

/* Partial _testdrive_below (#thtc-news-testdrive-block): tiêu đề căn giữa, gạch xanh dưới rộng hơn chữ */
#thtc-news-testdrive-block .thtc-td-card__title {
    text-align: center;
    margin: 0 auto 1.75rem;
    padding: 0 0 0.1rem;
    font-size: clamp(1.2rem, 2.2vw, 1.45rem);
    font-weight: 700;
    color: #000000;
    border-bottom: none;
    box-sizing: border-box;
}

#thtc-news-testdrive-block .thtc-td-card__title::after {
    content: "";
    display: block;
    width: min(22rem, 88%);
    height: 2px;
    margin: 0.7rem auto 0;
    background: #0033a0;
    border-radius: 1px;
}
.thtc-td-form__row {
    margin-bottom: 1.25rem;
}
.thtc-td-form__label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #455a64;
}
.thtc-td-form__label .thtc-required-mark {
    color: #c62828;
    margin-left: 0.2em;
    font-weight: 700;
}
.thtc-td-form__input {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #d5dce3;
    border-radius: 6px;
    padding: 0.72rem 1rem;
    font-size: 0.9375rem;
    font-family: "Roboto", system-ui, -apple-system, sans-serif;
    color: #263238;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.thtc-td-form__input::placeholder {
    color: #90a4ae;
}
.thtc-td-form__input:focus {
    outline: none;
    border-color: #1976d2;
    box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.2);
}
.thtc-td-form__select-wrap {
    position: relative;
}
.thtc-td-form__select {
    width: 100%;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid #d5dce3;
    border-radius: 6px;
    padding: 0.72rem 2.5rem 0.72rem 1rem;
    font-size: 0.9375rem;
    font-family: "Roboto", system-ui, -apple-system, sans-serif;
    color: #263238;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.thtc-td-form__select:focus {
    outline: none;
    border-color: #1976d2;
    box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.2);
}
.thtc-td-form__select-icon {
    position: absolute;
    right: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #78909c;
    font-size: 0.9rem;
}
.thtc-td-form__date-wrap {
    position: relative;
}
.thtc-td-form__input--date {
    padding-right: 2.65rem;
    color-scheme: light;
}
.thtc-td-form__input--date::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.thtc-td-form__date-icon {
    position: absolute;
    right: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #78909c;
    font-size: 1rem;
}
.thtc-td-form__actions {
    margin-top: 1.75rem;
}
.thtc-td-form__submit {
    width: 100%;
    border: none;
    border-radius: 6px;
    padding: 0.85rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.04em;
    color: #fff;
    background: #1976d2;
    cursor: pointer;
    transition: background 0.2s, transform 0.12s;
    font-family: "Roboto", system-ui, -apple-system, sans-serif;
}
.thtc-td-form__submit:hover {
    background: #1565c0;
}
.thtc-td-form__submit:active {
    transform: scale(0.995);
}
.thtc-td-form__msg {
    margin: 1rem 0 0;
    min-height: 1.35em;
    font-size: 0.875rem;
    text-align: left;
}
@media screen and (max-width: 767px) {
    .thtc-td-hero__content {
        justify-content: center;
        padding-top: 2.5rem;
        padding-bottom: 2rem;
    }
    .thtc-td-hero__copy {
        text-align: center;
    }
    .thtc-td-hero {
        padding-top: 0.75rem;
    }
}
@media screen and (max-width: 575px) {
    .thtc-td-card__title {
        font-size: 1.2rem;
        margin-bottom: 1.35rem;
    }
    .thtc-td-page {
        padding: 1.75rem 0 2.5rem;
    }
}