.pql-home-landing {
    --navy: #0d1b3e;
    --navy-2: #122452;
    --red: #c8102e;
    --red-dark: #a30d26;
    --ink: #1a2540;
    --muted: #5b6478;
    --line: #e5e8ef;
    --bg-soft: #f6f7fa;
    --white: #ffffff;
    --radius: 6px;
    --section-gutter: clamp(24px, 2.85vw, 54px);
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow-x: hidden;
    color: var(--ink);
    background: var(--white);
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.55;
}

/* Reset scoped cho nội dung trang chủ. */
.pql-home-landing *,
.pql-home-landing *::before,
.pql-home-landing *::after {
    box-sizing: border-box;
}

.pql-home-landing img {
    max-width: 100%;
    display: block;
}

.pql-home-landing a {
    color: inherit;
    text-decoration: none;
}

.pql-home-landing ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pql-home-landing svg {
    stroke: currentColor;
}

.pql-home-landing .container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 var(--section-gutter);
}

.pql-home-landing .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    border-radius: var(--radius);
    padding: 14px 26px;
    cursor: pointer;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: .2s;
}

.pql-home-landing .rfq .btn {
    border-radius: 0;
    padding: 9px 24px;
    font-size: .9rem;
}

.pql-home-landing .btn-red {
    background: var(--red);
    color: #fff;
}

.pql-home-landing .btn-red:hover {
    background: var(--red-dark);
    color: #fff;
}

.pql-home-landing .btn-outline {
    border: 1.5px solid rgba(255, 255, 255, .7);
    background: transparent;
    color: #fff;
}

.pql-home-landing .btn-outline:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.pql-home-landing .section-title {
    color: var(--navy);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.25;
}

.pql-home-landing .section-sub {
    margin-top: 12px;
    color: var(--muted);
    font-size: .9rem;
}

.pql-home-landing .link-red {
    color: var(--red);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.pql-home-landing .link-red:hover {
    text-decoration: underline;
}

.pql-home-landing .pql-home-link-row {
    margin-top: 22px;
}

.pql-home-landing #capabilities,
.pql-home-landing #services,
.pql-home-landing #projects,
.pql-home-landing #about,
.pql-home-landing #contact {
    scroll-margin-top: 90px;
}

.pql-home-landing .pql-home-anchor {
    position: relative;
    top: -90px;
    height: 0;
}

/* Hero trang chủ. */
.pql-home-landing .hero {
    position: relative;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(4, 10, 25, .9) 0%, rgba(4, 10, 25, .72) 34%, rgba(4, 10, 25, .24) 64%, rgba(4, 10, 25, .04) 100%),
        linear-gradient(180deg, rgba(4, 10, 25, .08) 0%, rgba(4, 10, 25, .42) 100%),
        var(--pql-hero-bg-image, radial-gradient(circle at 78% 40%, #ff9a3c 0%, transparent 18%)),
        radial-gradient(circle at 70% 55%, #2c3e60 0%, #101a33 60%);
    background-color: #101a33;
    background-position: center, center, center, center;
    background-repeat: no-repeat;
    background-size: cover, cover, cover, cover;
}

.pql-home-landing .hero-inner {
    max-width: 640px;
    padding: 88px 0 40px;
}

.pql-home-landing .hero h1 {
    margin: 0;
    font-size: 2.7rem;
    font-weight: 800;
    letter-spacing: .01em;
    line-height: 1.15;
}

.pql-home-landing .hero p {
    max-width: 460px;
    margin: 18px 0 0;
    color: #d6dbe6;
    font-size: 1rem;
}

.pql-home-landing .hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.pql-home-landing .hero-meta {
    display: flex;
    flex-wrap: wrap;
    width: fit-content;
    max-width: 100%;
    margin-top: 46px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.pql-home-landing .hero-meta div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 22px;
    border-right: 1px solid rgba(255, 255, 255, .18);
    font-size: .85rem;
    font-weight: 600;
}

.pql-home-landing .hero-meta div:first-child {
    padding-left: 0;
}

.pql-home-landing .hero-meta div:last-child {
    border-right: none;
}

.pql-home-landing .hero-meta svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
}

/* Icon Font Awesome trong hero meta đồng bộ kích thước và màu với SVG. */
.pql-home-landing .hero-meta i {
    width: 20px;
    color: #fff;
    font-size: 18px;
    text-align: center;
}

/* Dải USP dưới hero. */
.pql-home-landing .usp {
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.pql-home-landing .usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
    padding-top: 44px;
    padding-bottom: 44px;
}

.pql-home-landing .usp-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.pql-home-landing .usp-item .ic {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex: 0 0 52px;
    height: 52px;
    color: var(--navy);
}

.pql-home-landing .usp-item .ic svg,
.pql-home-landing .usp-item .ic img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.pql-home-landing .usp-item h3 {
    margin: 0;
    color: var(--navy);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: .02em;
    line-height: 1.25;
    text-transform: uppercase;
}

.pql-home-landing .usp-item p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.45;
}

.pql-home-landing .flag {
    position: relative;
    width: 40px;
    height: 26px;
    border: 1px solid var(--line);
    border-radius: 2px;
    background:
        linear-gradient(#b22234 0 0) 0 0 / 100% 7.7% no-repeat,
        repeating-linear-gradient(#b22234 0 7.7%, #fff 7.7% 15.4%);
}

.pql-home-landing .flag::before {
    content: "";
    position: absolute;
    width: 45%;
    height: 54%;
    background: #3c3b6e;
}

/* Quy trình lắp ráp và đóng gói: 6 bước tuần tự từ ACF Repeater. */
.pql-home-landing .pql-home-assembly {
    padding: 64px 0;
    border-top: 1px solid var(--line);
    background: #fff;
}

.pql-home-landing .pql-home-assembly__head {
    max-width: 920px;
    margin: 0 auto 52px;
    text-align: center;
}

.pql-home-landing .pql-home-assembly__kicker {
    display: block;
    margin-bottom: 8px;
    color: #398b42;
    font-size: clamp(.9rem, 1.3vw, 1.2rem);
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.pql-home-landing .pql-home-assembly__head h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(1.65rem, 2.6vw, 2.6rem);
    font-weight: 800;
    line-height: 1.12;
    text-transform: uppercase;
}

.pql-home-landing .pql-home-assembly__head h2::after {
    display: block;
    width: 52px;
    height: 2px;
    margin: 16px auto 0;
    background: #398b42;
    content: "";
}

.pql-home-landing .pql-home-assembly__head p {
    max-width: 760px;
    margin: 16px auto 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.55;
}

.pql-home-landing .pql-home-assembly__steps {
    overflow: hidden;
    padding: 34px 2px 2px;
}

.pql-home-landing .pql-home-assembly__steps .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
}

.pql-home-landing .pql-home-assembly__step {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 420px;
    flex-direction: column;
    align-items: center;
    padding: 38px 10px 14px;
    border: 1px solid #dfe5df;
    border-radius: 8px;
    background: #fff;
    text-align: center;
}

.pql-home-landing .pql-home-assembly__number {
    position: absolute;
    top: -18px;
    left: 50%;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #398b42;
    box-shadow: 0 2px 8px rgba(57, 139, 66, .2);
    color: #fff;
    font-size: .88rem;
    font-weight: 800;
    transform: translateX(-50%);
}

.pql-home-landing .pql-home-assembly__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
    object-fit: contain;
}

.pql-home-landing .pql-home-assembly__step h3 {
    min-height: 2.7em;
    margin: 0 0 12px;
    color: var(--navy);
    font-size: clamp(.82rem, 1vw, 1rem);
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
}

.pql-home-landing .pql-home-assembly__image {
    width: 100%;
    height: 178px;
    border-radius: 7px;
    object-fit: cover;
}

.pql-home-landing .pql-home-assembly__step > p {
    margin: 12px 4px 0;
    color: var(--muted);
    font-size: .84rem;
    line-height: 1.4;
}

.pql-home-landing .pql-home-assembly__step--no-image {
    min-height: 220px;
    justify-content: center;
}

.pql-home-landing .pql-home-assembly__navigation {
    position: absolute;
    display: none;
    right: 2px;
    bottom: 0;
    left: 2px;
    justify-content: center;
    gap: 10px;
}

.pql-home-landing .pql-home-assembly__navigation button {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid #398b42;
    border-radius: 50%;
    background: #fff;
    color: #398b42;
    cursor: pointer;
    transition: background .2s, color .2s, opacity .2s;
}

.pql-home-landing .pql-home-assembly__navigation button:hover,
.pql-home-landing .pql-home-assembly__navigation button:focus-visible {
    background: #398b42;
    color: #fff;
}

.pql-home-landing .pql-home-assembly__navigation button:focus-visible {
    outline: 2px solid var(--navy);
    outline-offset: 3px;
}

.pql-home-landing .pql-home-assembly__navigation .swiper-button-disabled {
    opacity: .35;
    cursor: default;
}

/* Dự án tiêu biểu. */
.pql-home-landing .projects {
    padding: 42px 0;
    border-top: 1px solid var(--line);
    background: #fff;
}

.pql-home-landing .proj-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
    align-items: start;
}

.pql-home-landing .proj-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.pql-home-landing .proj-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.pql-home-landing .proj-thumb {
    position: relative;
    /* display: flex;
    align-items: center;
    justify-content: center; */
    overflow: hidden;
    height: 220px;
    background: linear-gradient(135deg, #3a4257, #171d2c);
    color: #8b93a7;
}

.pql-home-landing .proj-thumb svg {
    width: 48px;
    height: 48px;
}

.pql-home-landing .proj-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pql-home-landing .proj-body {
    padding: 16px 10px;
}

.pql-home-landing .proj-body h3 {
    margin: 0;
    color: var(--navy);
    font-size: 1rem;
    font-weight: 800;
}

.pql-home-landing .proj-body dl {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: .8rem;
}

.pql-home-landing .proj-body dl div {
    display: flex;
    gap: 6px;
}

.pql-home-landing .proj-body dt {
    color: var(--ink);
    font-weight: 600;
}

.pql-home-landing .proj-body dd {
    margin: 0;
}

/* Khối báo giá: dùng container chung và chia 3 cột như mẫu. */
.pql-home-landing .quote-band {
    background: #fff;
    box-shadow: none;
    color: #fff;
}

.pql-home-landing .quote-band-grid {
    display: grid;
    grid-template-columns: 32% 40% 28%;
    align-items: stretch;
    padding-right: 0;
    padding-left: 0;
}

.pql-home-landing .rfq input,
.pql-home-landing .rfq textarea {
    box-shadow: none;
}

.pql-home-landing .why {
    display: flex;
    flex-direction: column;
    padding: 48px;
    background: var(--navy);
}

.pql-home-landing .why h2 {
    display: block;
    margin: 0;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: .02em;
}

/* Danh sách lý do mặc định 1 cột trên mobile. */
.pql-home-landing .why ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px 24px;
    margin-top: 18px;
}

/* Danh sách lý do chỉ chia 2 cột trên iPad. */
@media (min-width: 768px) and (max-width: 1024px) {
    .pql-home-landing .why ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.pql-home-landing .why li {
    display: flex;
    gap: 10px;
    color: #d6dbe6;
    font-size: 1rem;
    line-height: 1.35;
}

.pql-home-landing .why li::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 18px;
    height: 18px;
    border: 1.5px solid rgba(255, 255, 255, .5);
    border-radius: 50%;
    font-size: .62rem;
}

.pql-home-landing .rfq {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 28px;
    background: #fff;
    box-shadow: 0 0 18px rgba(13, 27, 62, .14);
    color: var(--ink);
}

.pql-home-landing .rfq h2 {
    margin: 0;
    color: var(--navy);
    font-size: 1.5rem;
    font-weight: 800;
}

.pql-home-landing .rfq > p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 1rem;
}

.pql-home-landing .rfq form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 14px;
    margin-top: 12px;
}

.pql-home-landing .rfq input,
.pql-home-landing .rfq textarea {
    width: 100%;
    border: 1px solid #eef1f6;
    border-radius: 0;
    padding: 7px 10px;
    background: #fff;
    color: var(--ink);
    font-family: inherit;
    font-size: .9rem;
}

.pql-home-landing .rfq textarea {
    grid-column: 1 / -1;
    min-height: 92px;
    resize: vertical;
}

/* Trường tải bản vẽ RFQ: giao diện tiếng Anh đồng nhất trên mọi trình duyệt. */
.pql-home-landing .rfq .file-row {
    grid-column: 1 / span 1;
    display: block;
    min-width: 0;
    color: var(--muted);
    font-size: .9rem;
    cursor: pointer;
}

.pql-home-landing .rfq .file-row__label {
    display: block;
    margin-bottom: 6px;
    color: var(--ink);
    font-weight: 600;
}

.pql-home-landing .rfq .file-row__label small {
    color: var(--muted);
    font-size: .82rem;
    font-weight: 400;
}

.pql-home-landing .rfq .file-control {
    display: flex;
    align-items: center;
    overflow: hidden;
    min-height: 42px;
    border: 1px solid #dce2eb;
    border-radius: 4px;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
}

.pql-home-landing .rfq .file-control:focus-within {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(13, 27, 62, .1);
}

.pql-home-landing .rfq .file-row input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.pql-home-landing .rfq .file-button {
    align-self: stretch;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    padding: 0 16px;
    background: var(--navy);
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .02em;
    transition: background .2s;
}

.pql-home-landing .rfq .file-row:hover .file-button {
    background: var(--red);
}

.pql-home-landing .rfq .file-name {
    overflow: hidden;
    min-width: 0;
    padding: 0 12px;
    color: var(--muted);
    font-size: .82rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Turnstile và nút gửi RFQ đứng cùng hàng trên desktop. */
.pql-home-landing .rfq .pql-inquiry-turnstile {
    grid-column: 1 / span 1;
}

.pql-home-landing .rfq .submit-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    grid-column: 2 / span 1;
}

.pql-home-landing .pql-home-form-note {
    grid-column: 1 / -1;
    margin: 0;
    color: #fff;
    font-size: .85rem;
}

.pql-home-landing .contact-side {
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    min-height: 235px;
    background: linear-gradient(180deg, rgba(13, 27, 62, .04), rgba(13, 27, 62, .04)), var(--pql-quote-contact-bg, url('../pioneer/contact.jpg')) center / cover no-repeat;
}

.pql-home-landing .contact-card {
    position: absolute;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    gap: 10px;
    width: 60%;
    min-width: 220px;
    margin: 0;
    padding: 12px 16px;
    background: rgba(13, 27, 62, .95);
}

.pql-home-landing .contact-card > div {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .8rem;
}

.pql-home-landing .contact-card > div > div {
    display: block;
}

.pql-home-landing .contact-card svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.pql-home-landing .contact-card b {
    display: block;
    font-size: .82rem;
}

.pql-home-landing .contact-card span {
    color: #c4cbdd;
}

/* Logo khách hàng. */
.pql-home-landing .logos {
    padding: 48px 0;
    background: #fff;
    text-align: center;
}

.pql-home-landing .logos h2 {
    margin: 0;
    color: var(--navy);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pql-home-landing .pql-logo-swiper {
    margin-top: 32px;
    overflow: hidden;
}

.pql-home-landing .pql-logo-swiper .swiper-wrapper {
    align-items: center;
    transition-timing-function: linear;
}

.pql-home-landing .pql-logo-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 190px;
    min-height: 82px;
    border: 1px solid var(--line);
    background: #fff;
}

.pql-home-landing .pql-logo-swiper img {
    max-width: 140px;
    max-height: 44px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .72;
    transition: .2s;
}

.pql-home-landing .pql-logo-swiper .swiper-slide:hover img,
.pql-home-landing .pql-logo-swiper .swiper-slide:focus-within img {
    filter: grayscale(0);
    opacity: 1;
}

@media (max-width: 1024px) {
    /* Assembly & Packaging dùng slider tự chạy trên tablet và mobile. */
    .pql-home-landing .pql-home-assembly__steps {
        padding-top: 34px;
        padding-bottom: 58px;
    }

    .pql-home-landing .pql-home-assembly__steps .swiper-wrapper {
        display: flex;
        gap: 0;
    }

    .pql-home-landing .pql-home-assembly__navigation {
        display: flex;
    }

    /* Dải USP và logo chuyển 2 cột trên tablet để không bó nội dung. */
    .pql-home-landing .usp-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }

    .pql-home-landing .pql-logo-swiper .swiper-slide {
        width: 170px;
    }

    /* Hero meta trên iPad xếp 2 cột cân đối, không ngắt chữ giữa item. */
    .pql-home-landing .hero-meta {
        display: grid;
        grid-template-columns: repeat(2, max-content);
        row-gap: 8px;
    }

    .pql-home-landing .hero-meta div {
        padding-top: 4px;
        padding-bottom: 4px;
        white-space: nowrap;
    }

    .pql-home-landing .hero-meta div:nth-child(odd) {
        padding-left: 0;
    }

    .pql-home-landing .hero-meta div:nth-child(even) {
        border-right: none;
    }

    .pql-home-landing .proj-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .pql-home-landing .quote-band-grid {
        grid-template-columns: 1fr;
    }

    /* Form RFQ giữ 2 cột, các dòng dài full width. */
    .pql-home-landing .rfq form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pql-home-landing .rfq textarea,
    .pql-home-landing .rfq .file-row {
        grid-column: 1 / -1;
    }

    /* Tablet giữ Turnstile và nút gửi trên cùng một hàng. */
    .pql-home-landing .rfq .pql-inquiry-turnstile {
        grid-column: 1 / span 1;
    }

    .pql-home-landing .rfq .submit-row {
        grid-column: 2 / span 1;
        justify-content: flex-end;
    }

    .pql-home-landing .contact-side {
        min-height: 220px;
    }
}

@media (max-width: 720px) {
    /* Assembly & Packaging hiển thị một card mỗi lượt trên mobile. */
    .pql-home-landing .pql-home-assembly {
        padding: 48px 0;
    }

    .pql-home-landing .pql-home-assembly__head {
        margin-bottom: 42px;
    }

    .pql-home-landing .pql-home-assembly__step {
        min-height: 0;
    }

    .pql-home-landing .pql-home-assembly__step::after {
        display: none;
    }

    .pql-home-landing .pql-home-assembly__step h3 {
        min-height: 0;
    }

    .pql-home-landing .pql-home-assembly__image {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .pql-home-landing .hero h1 {
        font-size: 2rem;
    }

    .pql-home-landing .usp-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pql-home-landing .pql-logo-swiper .swiper-slide {
        width: 150px;
        min-height: 72px;
    }

    .pql-home-landing .pql-logo-swiper img {
        max-width: 112px;
        max-height: 38px;
    }

    .pql-home-landing .proj-cards {
        grid-template-columns: 1fr;
    }

    .pql-home-landing .why ul {
        grid-template-columns: 1fr;
    }

    /* Ảnh liên hệ cao hơn trên mobile để bố cục thoáng hơn. */
    .pql-home-landing .contact-side {
        min-height: 320px;
        background-position: center;
    }

    .pql-home-landing .contact-card {
        right: auto;
        box-sizing: border-box;
        width: max-content;
        min-width: 0;
        max-width: calc(100% - 36px);
    }

    .pql-home-landing .rfq {
        padding: 32px 18px;
    }

    .pql-home-landing .rfq input,
    .pql-home-landing .rfq textarea {
        min-height: 42px;
    }

    /* Mobile xếp Turnstile và nút gửi dọc để không tràn chiều ngang. */
    .pql-home-landing .rfq .pql-inquiry-turnstile,
    .pql-home-landing .rfq .submit-row {
        grid-column: 1 / -1;
    }

    .pql-home-landing .rfq .submit-row .btn {
        width: 100%;
    }

    /* Hero meta trên mobile xếp 1 cột để thứ tự rõ ràng, không chen item. */
    .pql-home-landing .hero-meta {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 2px;
    }

    .pql-home-landing .hero-meta div {
        border-right: none;
        padding: 5px 0;
    }
}
