.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slides {
    position: relative;
    display: flex;
    width: 100%;
    z-index: 1;
}

.slide {
    display: none;
    width: 100%;
    transition: opacity 2s ease-in-out;
}

.slide img {
    width: 100%;
    height: auto; 
    object-fit: cover;
    z-index: 1;
}

.active {
    display: block;
    animation: fadeIn 2s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Main title section animation */
@keyframes mainTitleAccent {
    0%, 72%, 100% {
        transform: translateY(0) scale(1);
        letter-spacing: 0;
        text-shadow: 0 0 0 rgba(13, 94, 166, 0);
        background-position: 0% 50%;
        filter: brightness(1);
    }
    80% {
        transform: translateY(-2px) scale(1.012);
        letter-spacing: 0.01em;
        text-shadow: 0 12px 30px rgba(13, 94, 166, 0.15);
        filter: brightness(1.06);
    }
    88% {
        transform: translateY(0) scale(1.03);
        letter-spacing: 0.02em;
        text-shadow: 0 18px 36px rgba(13, 94, 166, 0.2);
        background-position: 100% 50%;
        filter: brightness(1.08);
    }
}

@keyframes mainTitleUnderline {
    0%, 72%, 100% {
        transform: scaleX(0.3);
        opacity: 0.15;
    }
    84% {
        transform: scaleX(1);
        opacity: 0.9;
    }
}

.main-title-section {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 14px 0 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
    text-align: center;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.main-title-wrapper {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 clamp(18px, 4vw, 56px);
}

.main-title-animate {
    position: relative;
    display: inline-block;
    font-size: clamp(1.35rem, 2.2vw, 2.1rem);
    font-weight: 800;
    line-height: 1.18;
    margin: 0;
    color: #1f2937;
    animation: mainTitleAccent 5s ease-in-out infinite;
    background: linear-gradient(90deg, #1f2937 0%, #0d5ea6 45%, #1f2937 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 220% auto;
}

.main-title-animate::after {
    content: '';
    position: absolute;
    left: -8%;
    right: -8%;
    bottom: -8px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, rgba(13, 94, 166, 0.85), transparent);
    transform-origin: center;
    animation: mainTitleUnderline 5s ease-in-out infinite;
}

@media (max-width: 768px) {
    .main-title-section {
        padding: 12px 0 16px;
    }

    .main-title-animate {
        font-size: 1.2rem;
        padding: 0;
    }
}

/* Nút điều hướng */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 5px;
    z-index: 10;
    transition: 0.3s;
}

.prev:hover, .next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 10px;
}
.next {
    right: 10px;
}

/* Dấu chấm chỉ số */
.dots {
    text-align: center;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background-color: #ffcc00;
    transform: scale(1.2);
}
/* Bảng giá */
.pricing-section {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 60px 0;
    background: url('image/bg-banggia2.webp') no-repeat bottom center/cover;
    text-align: center;
    color: white;
}

.pricing-shell {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 clamp(18px, 4vw, 56px);
}

/* Lớp phủ đen */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

/* Nội dung tiêu đề và mô tả */
.content_bgia {
    position: relative;
    max-width: 800px;
    margin: 0 auto 40px;
    z-index: 1;
}

.content_bgia h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.content_bgia p {
    font-size: 18px;
}

/* Grid hiển thị giá */
.pricing-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: none;
    margin: 0 auto;
    z-index: 1;
    padding: 0;
}

/* Mỗi cột giá */
.pricing-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.pricing-item h3 {
    margin-top: 15px;
    font-size: 18px;
    color: #fff;
}
.pricing-item h3:hover {
    color: #ffe600;
}

.home-congtrinh-carousel {
    position: relative;
    width: 100%;
    padding: 0 52px;
}

.home-congtrinh-carousel__viewport {
    overflow: hidden;
    width: 100%;
}

.home-congtrinh-carousel__track {
    display: flex;
    align-items: stretch;
    transition: transform 0.6s ease;
    will-change: transform;
}

.home-congtrinh-carousel__item {
    flex: 0 0 25%;
    min-width: 25%;
    padding: 0 10px;
}

.home-congtrinh-carousel__item.pricing-item {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.home-congtrinh-carousel__item a {
    display: block;
    height: 100%;
    text-decoration: none;
}

.home-congtrinh-carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 1.1rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease;
    z-index: 2;
}

.home-congtrinh-carousel__arrow:hover {
    background: rgba(249, 148, 11, 0.88);
}

.home-congtrinh-carousel__arrow:disabled {
    opacity: 0.35;
    cursor: default;
}

.home-congtrinh-carousel__arrow.is-prev {
    left: 0;
}

.home-congtrinh-carousel__arrow.is-next {
    right: 0;
}

/* Hiệu ứng hình ảnh */
.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 7px;
}

.image-container img {
    width: 100%;
    height: 268px;
    display: block;
    transition: transform 0.3s ease;
}

/* Hiệu ứng ánh sáng */
.hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease-in-out;
}

/* Hiệu ứng khi hover vào ảnh */
.image-container:hover img {
    transform: scale(1.1);
}

.image-container:hover .hover-effect {
    left: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-congtrinh-carousel__item {
        flex-basis: 50%;
        min-width: 50%;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .home-congtrinh-carousel {
        padding: 0 42px;
    }

    .home-congtrinh-carousel__item {
        flex-basis: 100%;
        min-width: 100%;
        padding: 0 6px;
    }

    .content_bgia h2 {
        font-size: 28px;
    }

    .content_bgia p {
        font-size: 16px;
    }
}

.home-project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.home-projects-section,
.home-products-section {
    background: #fff;
    color: #333;
    padding: 56px 0 68px;
}

.home-projects-section::before,
.home-products-section::before {
    display: none;
}

.home-projects-shell {
    width: 100%;
    padding: 0 clamp(18px, 4vw, 56px);
    position: relative;
    z-index: 2;
}

.home-projects-section h2,
.home-products-section h2 {
    color: #333;
    font-size: 2em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.home-projects-section > .home-projects-shell > p,
.home-products-section > .home-projects-shell > p {
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

.home-product-tabs {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
}

.home-product-tabs__scroller {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.home-product-tabs__scroller::-webkit-scrollbar {
    display: none;
}

.home-product-tabs__tab,
.home-product-tabs__arrow {
    border: 1px solid #d7dde5;
    background: #fff;
    color: #333;
    border-radius: 999px;
    transition: all 0.25s ease;
}

.home-product-tabs__tab {
    flex: 0 0 auto;
    padding: 10px 20px;
    font-size: 0.96rem;
    font-weight: 600;
    white-space: nowrap;
}

.home-product-tabs__tab.is-active,
.home-product-tabs__tab:hover {
    background: #0060F0;
    border-color: #0060F0;
    color: #fff;
}

.home-product-tabs__arrow {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}

.home-product-tabs__arrow:hover {
    background: #333;
    border-color: #333;
    color: #fff;
}

.home-product-panel {
    display: none;
}

.home-product-panel.is-active {
    display: block;
}

.home-product-panel__empty {
    margin: 0;
    text-align: center;
    color: #666;
}

.home-project-card {
    position: relative;
    display: flex;
    height: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 26px rgba(15, 23, 42, 0.08);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid #e6ebf1;
}

.home-project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
    border-color: rgba(13, 94, 166, 0.28);
}

.home-project-card a {
    display: flex;
    flex: 1;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.home-project-card__media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 11px;
    background: #f4f4f4;
    box-shadow: none;
    position: relative;
}

.home-project-card__media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 2;
}

.home-project-card__media::after {
    content: '';
    position: absolute;
    top: -32%;
    left: -44%;
    width: 28%;
    height: 180%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.72) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(24deg) translateX(-220%);
    transition: transform 0.85s ease;
    z-index: 3;
    pointer-events: none;
}

.home-project-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.home-project-card:hover .home-project-card__media img {
    transform: scale(1.08) rotateZ(0.5deg);
}

.home-project-card:hover .home-project-card__media::before {
    opacity: 1;
}

.home-project-card:hover .home-project-card__media::after {
    transform: rotate(24deg) translateX(560%);
}

.home-project-card h3 {
    margin: 14px 0 0;
    padding: 0 18px 20px;
    min-height: calc(1.5em * 2);
    max-height: calc(1.5em * 2);
    color: #333;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-commitments-section {
    width: 100%;
    padding: 56px 0 68px;
    background: #f7f7f7;
}

.vp18h_section-explore.home-commitments-section > .home-commitments-shell {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 clamp(18px, 2.2vw, 30px);
}

.home-commitments-section h2 {
    padding-top: 0;
}

.home-commitments-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    max-width: none;
    gap: 24px;
    justify-content: stretch;
    align-items: stretch;
}

.home-commitment-card {
    width: 100%;
    min-width: 0;
    display: flex;
    background: #fff;
    border: 1px solid #e7ebef;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.home-commitment-card a {
    display: flex;
    flex: 1;
    flex-direction: column;
    width: 100%;
}

.home-commitment-card:hover {
    transform: translateY(-6px);
    border-color: rgba(13, 94, 166, 0.22);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.home-commitment-card img {
    border-radius: 10px;
    margin-bottom: 14px;
}

.home-commitment-card h3 {
    margin: 6px 0 0;
    color: #333;
}

.partner-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
}

.partner-marquee__track {
    display: flex;
    align-items: stretch;
    gap: 0;
    will-change: transform;
}

.partner-marquee__item {
    flex: 0 0 20%;
    min-width: 20%;
    padding: 12px;
    box-sizing: border-box;
}

.partner-marquee__item a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.partner-marquee__frame {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 148px;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
    overflow: hidden;
}

.partner-marquee__frame img {
    width: 100%;
    max-width: 160px;
    max-height: 82px;
    object-fit: contain;
    display: block;
    transition: transform 0.35s ease;
}

.partner-marquee__title {
    position: absolute;
    inset: auto 12px 12px;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.88);
    color: #fff;
    font-size: 0.92rem;
    line-height: 1.4;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.partner-marquee__item:hover .partner-marquee__frame img {
    transform: scale(1.04);
}

.partner-marquee__item:hover .partner-marquee__title {
    opacity: 1;
    transform: translateY(0);
}

.home-feedback-section {
    padding: 30px 0 30px;
    background:
        radial-gradient(circle at top left, rgba(249, 148, 11, 0.12), transparent 26%),
        linear-gradient(180deg, #fffaf3 0%, #ffffff 100%);
}

.home-feedback-section__lead {
    max-width: 820px;
    margin: 0 auto 34px;
    text-align: center;
    color: #5c6570;
    padding: 0 12px;
}

.home-feedback-stage {
    position: relative;
    min-height: 1px;
}

.home-feedback-page {
    position: absolute;
    inset: 0;
    display: grid;
    gap: 22px;
}

.home-feedback-page[data-cols="3"] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-feedback-page[data-cols="1"] {
    grid-template-columns: 1fr;
}

.home-feedback-page.is-current {
    position: relative;
}

.home-feedback-page.is-next {
    transform: translateY(54px);
    opacity: 0;
}

.home-feedback-page.animate-in {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.55s ease, opacity 0.55s ease;
}

.home-feedback-page.animate-out {
    transform: translateY(-54px);
    opacity: 0;
    transition: transform 0.55s ease, opacity 0.55s ease;
}

.home-feedback-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    padding: 0;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.home-feedback-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(249, 148, 11, 0.12), transparent 46%);
    pointer-events: none;
}

.home-feedback-card__quote-mark {
    position: absolute;
    top: -6px;
    right: 20px;
    font-size: 4.2rem;
    line-height: 1;
    color: rgba(249, 148, 11, 0.14);
    font-weight: 800;
}

.home-feedback-card__surface {
    position: relative;
    padding: 30px 24px 18px;
}

.home-feedback-card__quote {
    margin: 0;
    color: #4b5563;
    line-height: 1.85;
    font-size: 0.98rem;
    position: relative;
    z-index: 1;
}

.home-feedback-card__person {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px 24px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    background: linear-gradient(180deg, rgba(249, 148, 11, 0.03) 0%, rgba(255, 255, 255, 0.88) 100%);
}

.home-feedback-card__avatar {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f9940b 0%, #ffb84d 100%);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(249, 148, 11, 0.22);
}

.home-feedback-card__avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.home-feedback-card__meta {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.home-feedback-card h3 {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.5;
    color: #1f2937;
}

.home-feedback-card__company {
    margin: 0;
    color: #f9940b;
    font-weight: 700;
    font-size: 0.92rem;
    line-height: 1.5;
}

.feedback-page-section {
    min-height: calc(100vh - 180px);
}

.feedback-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

@media (max-width: 1024px) {
    .home-project-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-commitment-card {
        width: 100%;
    }

    .partner-marquee__item {
        flex-basis: 33.3333%;
        min-width: 33.3333%;
    }

    .feedback-page-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .home-commitments-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .home-project-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .home-projects-section,
    .home-products-section {
        padding: 46px 0 56px;
    }

    .home-projects-shell {
        padding: 0 15px;
    }

    .pricing-shell {
        padding: 0 15px;
    }

    .home-project-card__media {
        aspect-ratio: 16 / 10;
    }

    .home-project-card h3 {
        min-height: calc(1.5em * 2);
        max-height: calc(1.5em * 2);
        padding: 0 14px 18px;
    }

    .home-commitments-section {
        padding: 46px 0 56px;
    }

    .vp18h_section-explore.home-commitments-section > .home-commitments-shell {
        padding: 0 15px;
    }

    .home-commitment-card {
        padding: 10px;
    }

    .home-commitments-grid {
        grid-template-columns: 1fr;
    }

    .partner-marquee__item {
        flex-basis: 50%;
        min-width: 50%;
        padding: 8px;
    }

    .partner-marquee__frame {
        min-height: 116px;
        padding: 16px;
    }

    .partner-marquee__title {
        opacity: 1;
        transform: none;
        inset: auto 8px 8px;
        font-size: 0.82rem;
        padding: 8px 10px;
    }

    .home-product-tabs {
        grid-template-columns: auto 1fr auto;
        gap: 10px;
    }

    .home-product-tabs__tab {
        padding: 9px 16px;
        font-size: 0.9rem;
    }

    .home-feedback-section {
        padding: 46px 0 56px;
    }

    .home-feedback-page[data-cols="3"],
    .feedback-page-grid {
        grid-template-columns: 1fr;
    }

    .home-feedback-card__surface {
        padding: 26px 18px 16px;
    }

    .home-feedback-card__person {
        padding: 16px 18px 18px;
        gap: 12px;
    }

    .home-feedback-card__avatar {
        width: 56px;
        height: 56px;
        flex-basis: 56px;
    }
}

/* Home page refinements */
.vp18h_section-gthieu {
    background:
        radial-gradient(circle at top left, rgba(249, 148, 11, 0.14), transparent 28%),
        linear-gradient(135deg, #fffaf3 0%, #ffffff 42%, #f5f9ff 100%);
    color: #333;
    padding: 60px 0 70px;
}

.vp18h_section-gthieu::before {
    top: -80px;
    right: -60px;
    left: auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(13, 94, 166, 0.08);
    filter: blur(4px);
    z-index: 0;
}

.home-about {
    display: grid;
    grid-template-columns: minmax(290px, 0.6fr) minmax(0, 1.25fr);
    align-items: stretch;
    gap: 20px;
}

.home-about__media {
    display: flex;
}

.home-about__image-card {
    position: relative;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, #0d5ea6 0%, #1f2937 100%);
}

/* .home-about__image-card::after {
    content: '';
    position: absolute;
    inset: auto 22px 22px;
    height: 110px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.48));
    pointer-events: none;
} */

.home-about__image-card img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: block;
    object-fit: cover;
}

.home-about__image-card--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: 0.08em;
}

.home-about__content {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 34px clamp(22px, 4vw, 36px);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
}

.home-about__eyebrow {
    margin: 0 0 8px;
    color: #f9940b;
    font-size: 0.82rem;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.home-about__content h2 {
    margin: 0 0 14px;
    color: #0f172a;
    text-align: left;
    font-size: clamp(1.75rem, 2.8vw, 2rem);
    line-height: 1.18;
}

.home-about__quote {
    margin: 0 0 22px;
    color: #475569;
    font-size: 1rem;
    line-height: 1.9;
    text-align: left;
}

.home-about__tabs {
    margin-bottom: 20px;
}

.home-about__panels {
    flex: 1;
    min-height: 120px;
}

.home-about__copy {
    color: #334155;
    line-height: 1.9;
}

.home-about__copy p,
.home-about__copy li {
    color: inherit;
}

.home-about__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-width: 180px;
    margin-top: 20px;
    padding: 14px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0d5ea6 0%, #1e40af 100%);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
    box-shadow: 0 18px 32px rgba(13, 94, 166, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-about__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 38px rgba(13, 94, 166, 0.28);
}

.category-wrapper .category-inner .category-single-item {
    position: relative;
    width: 100%;
    height: 100%;
}

.category-wrapper .category-inner .category-single-item img {
    position: relative;
    z-index: 2;
    transform: translateY(14px);
}

.category-ring-text {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.category-ring-text text {
    fill: #474747;
    font-family: "Raleway", sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.35px;
    text-transform: uppercase;
}

.category-wrapper .category-inner .category-single-item .title {
    display: none !important;
}

.category-wrapper .category-inner:hover .category-ring-text text {
    fill: #ff7004;
}

.home-feedback-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-feedback-section .vp18h-title-container {
    width: 100%;
    margin-top: 0;
    text-align: center;
}

.home-feedback-stage,
.home-feedback-source {
    width: 100%;
}

@media (max-width: 768px) {
    .vp18h_section-gthieu {
        padding: 44px 0 54px;
    }

    .home-about {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .home-about__image-card img {
        min-height: 280px;
    }

    .home-about__content {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .home-about__button {
        width: 100%;
    }

    .category-wrapper .category-inner .category-single-item img {
        transform: translateY(12px);
    }
}
