@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --color-primary: #406ae4;
    --color-primary-light: #5290f4;
    --color-text: #1d1d1d;
    --color-text-muted: #4d585f;
    --color-bg: #fff;
    --color-border: #bbb3;
    --radius-lg: 30px;
    --radius-md: 20px;
    --radius-full: 100px;
    --container-width: calc(100% - 100px);
    --font-display: "Bricolage Grotesque", sans-serif;
    --font-heading: "Inter Display", sans-serif;
    --font-body: "Inter", sans-serif;
    --font-label: "Lexend Deca", sans-serif;
}

* {
    box-sizing: border-box;
}

html.lenis {
    height: auto;
}

    html.lenis.lenis-smooth {
        scroll-behavior: auto;
    }

        html.lenis.lenis-smooth [data-lenis-prevent] {
            overscroll-behavior: contain;
        }

    html.lenis.lenis-stopped {
        overflow: hidden;
    }

html:not(.lenis) {
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

.mb {
    display: none;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.progressive-blur {
    position: fixed;
    left: 0;
    right: 0;
    height: 220px;
    max-height: 220px;
    overflow: hidden;
    pointer-events: none;
    z-index: 10;
    top: -6%;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1.3s cubic-bezier(.2,.8,.2,1), transform 1.3s cubic-bezier(.2,.8,.2,1);
}

    .reveal.is-visible {
        opacity: 1;
        transform: none;
    }

.headline-marquee.reveal {
    will-change: transform;
    opacity: 0;
    transform: translateY(140px);
    transition: opacity 1.5s cubic-bezier(.2,.8,.2,1), transform 1.5s cubic-bezier(.2,.8,.2,1);
}

    .headline-marquee.reveal.is-visible {
        will-change: transform;
        opacity: 1;
        transform: none;
    }

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s cubic-bezier(.2,.8,.2,1), transform .6s cubic-bezier(.2,.8,.2,1);
}

.reveal-stagger.is-visible > * {
    opacity: 1;
    transform: none;
}

    .reveal-stagger.is-visible > *:nth-child(1) {
        transition-delay: .05s;
    }

    .reveal-stagger.is-visible > *:nth-child(2) {
        transition-delay: .12s;
    }

    .reveal-stagger.is-visible > *:nth-child(3) {
        transition-delay: .19s;
    }

    .reveal-stagger.is-visible > *:nth-child(4) {
        transition-delay: .26s;
    }

    .reveal-stagger.is-visible > *:nth-child(5) {
        transition-delay: .33s;
    }

    .reveal-stagger.is-visible > *:nth-child(6) {
        transition-delay: .40s;
    }

    .reveal-stagger.is-visible > *:nth-child(7) {
        transition-delay: .47s;
    }


.divider {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 50px 0;
    opacity: 1;
}

.section-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: -1px;
    color: var(--color-text);
    margin: 0;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 18px;
    line-height: 1.4;
    color: var(--color-text-muted);
    margin: 0;
}

.text-center {
    text-align: center;
}

.text-accent {
    color: #3c7cf1;
}

.site-header {
    width: 100%;
    padding: 20px 24px;
}

.site-header__inner {
    max-width: var(--container-width);
    margin: 0 auto;
}

.site-header__logo {
    height: 32px;
    width: auto;
}

.section-hero {
    position: relative;
    padding: 50px 0 0;
    overflow: hidden;
    height: min-content;
    min-height: 120vh;
}


.hero__logo-mark {
    animation: heroLogoIn 3s cubic-bezier(.22,1,.36,1) .8s both;
}

    .hero__logo-mark.is-pulsing {
        animation: heroLogoPulse 3.8s ease-in-out infinite;
    }

.hero__tagline .word {
    display: inline-block;
    opacity: 0.001;
    filter: blur(10px);
    transform: translateY(10px);
    will-change: transform;
    animation: wordIn .6s cubic-bezier(.22,1,.36,1) both;
}

.hero__cover {
    animation: heroFadeIn 5s cubic-bezier(.2,.8,.2,1) .8s both;
}

.hero__bg-item {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    top: 6%
}

    .hero__bg-item img {
        position: absolute;
        height: auto;
        max-height: 450px;
        width: auto;
        animation: cloudDrift linear infinite;
    }

        .hero__bg-item img:nth-child(1) {
            animation-duration: 42s;
        }

        .hero__bg-item img:nth-child(2) {
            animation-duration: 46s;
            animation-delay: -8s;
        }

        .hero__bg-item img:nth-child(3) {
            animation-duration: 40s;
            animation-delay: -15s;
        }

.hero__bg-anim {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) scale(1);
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    will-change: transform, opacity;
    animation: heroBgAnimIn 2s ease 4.5s forwards;
}

    .hero__bg-anim img {
        max-width: 1920px;
    }

.hero__container {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero__top {
    margin-bottom: 40px;
}

.hero__logo-mark {
    max-width: 550px;
    width: 100%;
}

.hero__bottom {
    padding: 0 0 100px;
    margin: 0 auto;
}

.hero__cover {
    overflow: hidden;
}

    .hero__cover img {
        max-width: 1200px;
    }

.hero__tagline {
    max-width: 800px;
    font-family: var(--font-label);
    font-size: 18px;
    text-align: justify;
    line-height: 1.3;
    color: #004f80;
    text-shadow: 2px 2px 3px #fffc;
    margin: -90px auto 0;
    position: relative;
    z-index: 3;
    padding: 90px 80px 60px;
}

    .hero__tagline:before {
        content: "";
        position: absolute;
        inset: 0;
        background: url(../img/box-quote.png) no-repeat center top;
        background-size: 100%;
        opacity: 0;
        animation: fadeInSlow 2s ease 1.5s forwards;
        z-index: -1;
    }


.hero__author {
    font-weight: 600;
    font-size: 20px;
    animation: heroFadeIn 2s cubic-bezier(.2, .8, .2, 1) 4.7s both;
    color: #004f80;
    text-shadow: 2px 2px 3px #fffc;
    margin-top: -44px;
}

    .hero__author span {
        display: block;
    }

    .hero__author .second {
        font-size: 15px;
        font-weight: 500;
    }

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

    .hero__bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
    }

.hero__bg-fade {
    background: linear-gradient( 180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 25%, var(--color-bg) 50% );
    z-index: 2;
    flex: none;
    position: absolute;
    bottom: -7%;
    height: 300px;
    left: -10px;
    right: -10px;
    overflow: visible;
}

.blog {
}

.blog__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px 10px;
    font-size: 13px;
    letter-spacing: 0;
    text-transform: uppercase;
    border-bottom: 1px solid #bbb3;
}

.blog__meta-source {
    color: #009fdb;
}

.blog__meta-year {
    color: #525252;
}

.blog__meta-left {
    display: flex;
    gap: 350px;
}

.blog__meta-right {
    color: #525252;
}

.headline-marquee {
    width: 100%;
    overflow: hidden;
}

.headline-marquee__track {
    display: flex;
    align-items: center;
    gap: 100px;
    width: max-content;
    animation: headlineMarqueeRTL 20s linear infinite;
}

.blog__headline {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 100px;
    letter-spacing: -3px;
    line-height: 1.5;
    color: #009fdb;
    white-space: nowrap;
    margin: 20px 0;
}

.article-grid {
    background-color: #2b52b1;
    flex-flow: column;
    flex: none;
    place-content: flex-start;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
    height: min-content;
    padding: 0 24px;
    display: flex;
    position: relative;
    overflow: visible;
}

.article-card {
    z-index: 1;
    display: flex;
    flex-flow: column;
    gap: 20px;
    width: 100%;
    height: min-content;
    padding: 0;
    position: sticky;
    top: 20px;
}

    .article-card:hover .article-card__thumb img {
        transform: scale(1.03);
    }

.article-card__inner {
    display: flex;
    align-items: stretch;
    min-height: 420px;
}

.article-card__cover {
    flex: 1 1 50%;
    overflow: hidden;
    height: 600px;
    border-radius: 10px;
}

    .article-card__cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

.article-card__panel {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    padding: 40px 24px;
    background: linear-gradient(180deg, #0d3069 32%, var(--color-primary) 89%);
    color: #fff;
}

.article-card__title {
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: .5px;
}

.article-card__thumb {
    width: 390px;
    height: 225px;
    overflow: hidden;
}

    .article-card__thumb img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        transition: .5s all;
    }

.article-card__date {
    font-weight: 600;
    font-size: 50px;
    line-height: 1;
    margin: 0;
}

.article-card__caption {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    margin: 20px auto 0;
    max-width: 450px;
    text-align: justify;
}

.stats {
    padding: 0;
    background: #fff;
}

.stats__container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 30px;
    height: 960px;
    position: relative;
}

.stats__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.stats__deco-img {
    max-width: 480px;
    margin-bottom: 20px;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    align-items: flex-start;
    width: 280px;
    height: 280px;
    padding: 30px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    color: #fff;
    z-index: 1;
    flex: none;
    position: absolute;
    opacity: 0;
}

.stat-card--yellow {
    background: linear-gradient(#ffe500 0%, #826a0a 100%);
    top: 130px;
    left: 50px;
}

.stat-card--orange {
    background: linear-gradient(180deg, #ec8c27 0%, #a35400 100%);
    top: 120px;
    right: 0;
}

.stat-card--teal {
    background: linear-gradient(#38d9d6 0%, #0a8280 100%);
    bottom: 90px;
    right: 0;
}

.stat-card--blue {
    background: linear-gradient(90deg, #406ae4 0%, #3b82f6 100%);
    bottom: 0;
    left: 40%;
}

    .stat-card--blue .stat-card__number {
        font-size: 70px;
    }

.stat-card--green {
    background: linear-gradient(135deg, #7dcd44 0%, #3c6b1a 100%);
    bottom: 60px;
    left: 20px;
}

.stat-card__label {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    opacity: .9;
}

.stat-card__number {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 97px;
    letter-spacing: -1.4px;
    line-height: 1;
    margin: 0;
    text-align: center;
    width: 100%;
}

    .stat-card__number span {
        font-size: 40px;
        display: block;
    }

.stat-card__desc {
    font-family: var(--font-heading);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 500;
    margin: 17px 0 0;
    text-align: center;
    width: 100%;
}

.tab-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: -1px;
    color: var(--color-text);
    text-align: center;
    margin: 0 0 20px;
}

.usecases__tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.usecases__tab {
    padding: 8px 0;
    border: none;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: var(--color-text-muted);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: .3s ease;
}

    .usecases__tab.is-active {
        transform: translateY(-5px);
        border-bottom-color: var(--color-primary);
        color: var(--color-text);
    }

.usecases__panels {
    width: 100%;
}

.story-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    width: 360px;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.story-card__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-card__overlay {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(6px);
    background: rgba(255,255,255,.2);
}

.story-card__panel {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(17px);
    background: rgba(255, 255, 255,.7);
    border-radius: 20px;
    opacity: 1;
    padding: 24px;
}

.story-card__thumb {
    width: 310px;
    height: 180px;
    overflow: hidden;
    clear: both;
}

    .story-card__thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 10%;
        transition: .5s all;
    }

.story-card__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    margin: 15px 0 0;
    transition: .3s all;
}

.story-card__description {
    color: var(--color-text-muted);
    max-height: 95px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    line-clamp: 4;
}

.story-card__cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    background: linear-gradient(90deg, #406ae4 0%, #3b82f6 100%);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    position: absolute;
    left: 24px;
    bottom: 24px;
}

.story-card:hover .story-card__title {
    color: var(--color-primary);
}

.story-card:hover .story-card__thumb img {
    transform: scale(1.03);
}

.feature-grid .story-card,
.media-grid .story-card {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    overflow: visible;
}

.feature-grid .story-card__bg,
.media-grid .story-card__bg,
.feature-grid .story-card__overlay,
.media-grid .story-card__overlay,
.feature-grid .story-card__description,
.media-grid .story-card__description,
.feature-grid .story-card__cta,
.media-grid .story-card__cta {
    display: none;
}

.feature-grid .story-card__panel,
.media-grid .story-card__panel {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    height: auto;
    padding: 0;
    background: none;
    backdrop-filter: none;
    border-radius: 0;
}

.feature-grid .story-card__thumb {
    width: 100%;
    height: 150px;
    border-radius: var(--radius-md);
}

.media-grid .story-card__thumb {
    width: 100%;
    height: 220px;
    border-radius: var(--radius-md);
}

.feature-grid .story-card__title,
.media-grid .story-card__title {
    font-size: 16px;
    margin-top: 5px;
}

.feature-grid__col > .story-card:first-child {
    overflow: hidden;
}

    .feature-grid__col > .story-card:first-child:before {
        content: '';
        position: absolute;
        width: 100%;
        height: 70%;
        left: 0;
        bottom: 0;
        z-index: 1;
        background: #003571;
        background: linear-gradient(0deg, rgba(0, 53, 113, 1) 0%, rgba(0, 53, 113, 0) 78%);
        border-radius: var(--radius-md);
    }

    .feature-grid__col > .story-card:first-child .story-card__title {
        position: absolute;
        bottom: 20px;
        left: 20px;
        right: 50px;
        color: #fff;
        font-size: 23px;
        line-height: 1.15;
        z-index: 3;
    }

    .feature-grid__col > .story-card:first-child .story-card__thumb {
        height: 450px;
    }

.media-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 24px;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.feature-grid__col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-grid__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

    .feature-grid__row .story-card {
        min-width: 0;
    }

.load-more-btn {
    display: block;
    margin: 15px auto 0;
    padding: 10px 30px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    color: var(--color-primary);
    background: #fff;
    border: 1.5px solid var(--color-primary);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: .3s ease;
}

    .load-more-btn:hover {
        background: var(--color-primary);
        color: #fff;
    }

    .load-more-btn.is-hidden {
        display: none;
    }

.usecases__empty {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 18px;
    padding: 60px 0;
    margin: 0;
}


.section__container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 80px 80px 0;
}

.section--da-qua {
    background: url('../img/bg-daqua--left.jpg')no-repeat left center, url('../img/bg-daqua--rightt.jpg')no-repeat right center;
}

.section--can-tam-long {
    background: url('../img/bg-nhungtamlong.jpg')no-repeat center center;
    background-size: 100%;
}

.ticker {
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
}

.ticker__track {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
    width: max-content;
}

.ticker__track--draggable {
    cursor: grab;
    user-select: none;
}

#ticker-buoc-tiep .ticker__track--draggable {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='20' r='19' fill='%23009fdb' fill-opacity='0.8'/%3E%3Cg fill='none' stroke='%23fff' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 19v-5.5a1.5 1.5 0 0 1 3 0V18'/%3E%3Cpath d='M17 18v-6.5a1.5 1.5 0 0 1 3 0V18'/%3E%3Cpath d='M20 18v-6a1.5 1.5 0 0 1 3 0v7'/%3E%3Cpath d='M23 19.5v-3.5a1.5 1.5 0 0 1 3 0V22c0 4-2 7-6 7h-2c-2.5 0-4-1-5.3-3l-2.2-3.6c-.6-1-.3-2 .6-2.5.9-.5 2-.2 2.6.7l1.3 2'/%3E%3C/g%3E%3C/svg%3E") 20 20, grab;
}

    #ticker-buoc-tiep .ticker__track--draggable.is-dragging {
        cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='20' r='19' fill='%23009fdb' fill-opacity='0.8'/%3E%3Cg fill='none' stroke='%23fff' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 21v-2a1.3 1.3 0 0 1 2.6 0v1.3'/%3E%3Cpath d='M16.6 20.3v-1.6a1.3 1.3 0 0 1 2.6 0v1.6'/%3E%3Cpath d='M19.2 20.3v-1.6a1.3 1.3 0 0 1 2.6 0v2'/%3E%3Cpath d='M21.8 21v-1a1.3 1.3 0 0 1 2.6 0v4.5c0 3.5-2 6-5.5 6h-1.8c-2.2 0-3.6-.9-4.8-2.7l-1.6-2.4c-.6-.9-.3-1.8.5-2.3.8-.5 1.8-.2 2.4.6l1 1.4'/%3E%3C/g%3E%3C/svg%3E") 20 20, grabbing;
    }

.ticker__track--draggable.is-dragging {
    cursor: grabbing;
}

.ticker__track--align-end {
    align-items: flex-end;
}

.ticker__item {
    flex: none;
}

.ticker__img {
    height: 420px;
    width: 380px;
    border-radius: var(--radius-lg);
    object-fit: cover;
}


.usecases__footer {
    max-width: 720px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 0 auto 20px;
}

.usecases__footer-text {
    font-size: 20px;
    color: var(--color-text-muted);
    margin: 0 auto;
    max-width: 660px;
    width: 100%;
    font-weight: 500;
    line-height: 1.35;
}

.usecases__footer-logo {
    width: 156px;
}

.partners {
    position: relative;
    padding: 0 0 30px;
    overflow: hidden;
}

    .partners .divider {
        position: absolute;
        top: -11px;
        left: 0;
        width: 100%;
        z-index: 0;
    }

.partners__badge {
    width: 500px;
    height: 80px;
    margin: 0 auto 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    border-radius: var(--radius-full);
    background: linear-gradient(180deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    border: 1px solid #e3effa;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 28px;
}

.ticker--logos .ticker__track {
    gap: 70px;
}

.partner-logo {
    height: 45px;
    width: auto;
    opacity: .8;
}

.testimonials {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    min-height: 1800px;
    background: url('../img/testimonials-bg.jpg')no-repeat right top;
    background-size: cover;
}

.testimonials__container {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.quote-card {
    width: 400px;
    min-height: 420px;
    padding: 40px;
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
    display: flex;
    flex-direction: column;
}

.quote-card__stars {
    width: 110px;
    margin-bottom: 16px;
}

.quote-card__text {
    font-size: 18px;
    line-height: 1.3;
    color: var(--color-text);
    margin: 0 0 40px;
    flex: 1;
}

.quote-card__author {
    font-weight: 600;
    font-size: 20px;
    color: #009fdb;
    margin: 0;
}

.quote-card__role {
    font-size: 14px;
    color: var(--color-text-muted);
    margin: 2px 0 0;
}

.cta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    text-align: center;
}

.cta__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 48px;
    color: #fff;
    margin: 0 0 20px;
    flex: 0 0 100%;
}

    .cta__title img {
        max-width: 800px;
        width: 100%;
        margin: 0 auto;
    }

.cta__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.cta__list-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.cta__list-icon {
    height: 18px;
    width: auto;
}

.cta__left {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.cta__right {
    position: relative;
}

    .cta__right:before {
        content: '';
        position: absolute;
        height: calc(100% + 14px);
        width: calc(100% + 14px);
        border-radius: var(--radius-full);
        border: 1px solid #fff;
        top: -7px;
        left: -7px;
    }

.cta__wrapper {
    background: linear-gradient(110deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    width: 325px;
    height: 50px;
    box-shadow: inset 4px 4px 8px rgba(255, 255, 255, .2), inset -4px -4px 8px rgba(255, 255, 255, .2), 0 8px 16px rgba(29, 29, 29, .3);
    padding: 10px 6px 10px 24px;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 1px solid #fff;
    backdrop-filter: blur(5px);
    position: relative;
}

    .cta__wrapper .btn {
        display: inline-flex;
        align-items: center;
        gap: 14px;
        font-weight: 600;
        font-size: 16px;
        border: none;
        background: none;
        color: #fff;
        gap: 15px;
        padding: 0;
        width: 100%;
        height: 50px;
        left: -14px;
        top: 0;
        position: absolute;
        transition: transform .6s ease;
    }

    .cta__wrapper .btn__icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: none;
        width: 31px;
        height: 31px;
        border-radius: 50%;
        background: #fff;
        color: var(--color-primary);
        transition: transform .6s ease;
    }

    .cta__wrapper .btn__icon-front {
        transform: translateX(-20px);
    }

    .cta__wrapper .btn__icon .icon {
        stroke: currentColor;
        stroke-width: 2;
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .cta__wrapper:hover .btn {
        color: #fff;
        transform: translateX(30px);
    }

    .cta__wrapper:hover .btn__icon {
        transform: translateX(50px);
    }

    .cta__wrapper:hover .btn__icon-front {
        transform: translateX(0);
    }

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

    .testimonials__bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
    }
.media-carousel {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

    .media-carousel .media-carousel__source {
        display: none;
    }

    .media-carousel .media-carousel__viewport {
        overflow: hidden;
        width: 100%;
    }

    .media-carousel .media-carousel__track {
        display: flex;
        will-change: transform;
    }

        .media-carousel .media-carousel__track .story-card {
            flex: 0 0 20%;
            box-sizing: border-box;
            padding: 0 12px;
            display: block;
            position: relative;
            overflow: visible;
            height: auto;
            overflow: hidden;
            transition: transform .6s cubic-bezier(.22,1,.36,1), opacity .6s cubic-bezier(.22,1,.36,1);
        }

    .media-carousel .story-card__thumb {
        width: 100%;
        height: 325px;
        border-radius: var(--radius-md);
        overflow: hidden;
        background: #002b5c;
        background: linear-gradient(180deg, rgba(0, 43, 92, 1) 55%, rgba(0, 53, 113, 1) 76%, rgba(0, 53, 113, 0.98) 99%);
        position: relative;
        display: block;
    }

        .media-carousel .story-card__thumb img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center top;
            border-radius: var(--radius-md);
        }

        .media-carousel .story-card__thumb::after {
            content: "";
            position: absolute;
            top: 50px;
            left: 50%;
            transform: translateX(-50%);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            border: 1px solid #fff;
            background-color: rgba(0, 0, 0, .45);
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpolygon points='6,3 6,17 17,10' fill='white'/%3E%3C/svg%3E");
            background-size: 20px 20px;
            background-position: center;
            background-repeat: no-repeat;
            pointer-events: none;
        }


    .media-carousel .media-carousel__track .story-card__title {
        color: #fff;
        font-size: 18px;
        position: absolute;
        top: 155px;
        right: 15px;
        left: 15px;
        padding: 15px;
    }



@media (max-width:1600px) and (max-height:900px) {
    .testimonials {
        min-height: 1600px;
        background: url(../img/testimonials-bg.jpg) no-repeat center top;
        background-size: cover;
    }

    .media-carousel .media-carousel__track .story-card {
        flex: 0 0 25%;
      
    }
    .media-carousel .media-carousel__track .story-card__title {
        top: 150px;
    }
    .section__container {
        padding: 80px 40px 0;
    }

    .feature-grid__col > .story-card:first-child .story-card__thumb {
        height: 235px;
        border-radius: 10px;
    }

    .feature-grid .story-card__thumb {
        width: 100%;
        height: 115px;
        border-radius: 10px;
    }

    .media-grid .story-card__thumb {
        height: 170px;
        border-radius: 10px;
    }
}

@media (max-width: 1280px) {

    .section-hero {
        padding: 50px 0 0;
        min-height: 90vh;
    }

    .hero__cover img {
        max-width: 100%;
    }

    .blog__meta-left {
        gap: 100px;
    }

    .blog__headline {
        font-size: 100px;
        letter-spacing: -5px;
        margin: 0;
    }

    .stats__container {
        max-width: 95%;
        height: 850px;
    }

    .stat-card__number {
        font-size: 40px;
    }

    .stat-card {
        width: 250px;
        height: 230px;
        padding: 20px;
        border-radius: 15px;
    }

    .stat-card--yellow {
        left: 0;
    }

    .stat-card--blue {
        left: 38%;
    }

    .article-grid {
        grid-template-columns: 1fr;
    }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials {
        padding: 50px 0;
        min-height: 165vw;
        background: url(../img/testimonials-bg.jpg) no-repeat center center;
        background-size: cover;
    }

    .section__container {
        padding: 50px 0 0;
    }

    .feature-grid__col > .story-card:first-child .story-card__thumb {
        height: 185px;
        border-radius: 10px;
    }

    .feature-grid .story-card__thumb {
        height: 85px;
        border-radius: 5px;
    }

    .media-grid .story-card__thumb {
        width: 100%;
        height: 135px;
        border-radius: 10px;
    }

    .cta {
        padding: 0 20px;
    }
}

@media (max-width: 767px) {
    .desk {
        display: none;
    }

    .mb {
        display: block;
    }

    .progressive-blur {
        height: 100px;
        max-height: 100px;
    }

    .section-hero {
        padding: 50px 0 0;
        min-height: 105vh;
    }

    .section-title {
        font-size: 11vw;
    }

    .hero__top {
        padding: 0 20px;
    }

    .hero__container {
        padding: 0;
    }

    .hero__bottom {
        margin-top: 30px;
    }

    .hero__tagline {
        font-size: 4vw;
        padding: 65px 40px 66px;
    }

        .hero__tagline:before {
            content: "";
            background: url(../img/box-quote-mb.png) no-repeat center top;
            background-size: 100%;
        }

    .hero__cover img {
        max-width: 1200px;
        width: 100%;
    }

    .hero__bg-fade {
        height: 200px;
    }

    .blog__meta {
        padding: 0 20px 10px;
        font-size: 10px;
    }

    .blog__meta-left {
        gap: 20px;
    }

    .blog__headline {
        font-size: 80px;
        letter-spacing: -3px;
    }

    .blog {
        margin-bottom: 50px;
    }

        .blog .divider {
            display: none;
        }

    .article-grid {
        padding: 0 20px 50px;
    }

    .article-card__cover {
        display: none;
    }

    .article-card__panel {
        flex: 0 0 100%;
        padding: 50px 0 100px;
        border-radius: 10px;
        border: 1px solid var(--color-border);
        min-height: 100vh;
    }

    .article-card__thumb {
        width: 100%;
    }

    .article-card__date {
        font-size: 8vw;
    }

    .article-card__caption {
        font-weight: 500;
        font-size: 14px;
        max-width: 320px;
    }

    .article-card__title {
        font-size: 17px;
    }

    .usecases__tabs__wrapper {
        width: 100%;
        overflow-x: scroll;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }

    .usecases__tabs {
        gap: 30px;
        justify-content: flex-start;
        margin: 0;
        flex-wrap: nowrap;
        padding-left: 20px;
        width: 600px;
    }

    .stats__container {
        padding: 0 20px;
        height: auto;
        max-width: 100%;
    }

    .stats .section-title {
        line-height: 1.15;
    }

        .stats .section-title .text-accent {
            display: block;
        }

    .stats .section-subtitle {
        font-size: 4.3vw;
    }

    .stats__deco-img {
        max-width: 330px;
    }

    .stats__grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .stat-card {
        opacity: 1 !important;
        transform: none !important;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transition: none !important;
        width: 100%;
        height: 200px;
        padding: 20px;
        border-radius: 10px;
    }

    .stat-card__desc {
        margin: 10px 0 0;
        line-height: 1.2;
    }

    .stat-card__number {
        font-size: 60px;
    }

        .stat-card__number span {
            margin-left: 0;
        }

    .tab-title {
        font-size: 9vw;
        margin-bottom: 0;
        padding: 0;
    }

    .ticker__track {
        gap: 25px;
    }

    .section__container {
        padding: 50px 15px 0;
    }

    .story-card {
        width: 260px;
        height: 370px;
        border-radius: 10px;
    }

    .story-card__panel {
        border-radius: 10px;
        padding: 15px;
    }

    .story-card__title {
        font-size: 18px;
    }

    .story-card__thumb {
        width: 230px;
        height: 150px;
    }

    .story-card__description {
        display: none;
    }

    .section--can-tam-long {
        background: url(../img/bg-nhungtamlong-mb.jpg) no-repeat center top;
        background-size: 100%;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: initial;
    }

    .media-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: initial;
        gap: 15px;
    }

        .feature-grid .story-card__title,
        .media-grid .story-card__title {
            font-size: 15px;
        }

    .feature-grid .story-card__thumb {
        height: 115px;
        border-radius: 10px;
    }

    .media-grid .story-card__thumb {
        height: 125px;
        border-radius: 10px;
    }

    .feature-grid__col > .story-card:first-child .story-card__thumb {
        height: 240px;
    }

    .usecases__footer-text {
        font-size: 18px;
        padding: 0 20px;
    }

    .section--bao-tro .tab-title {
        font-size: 7.2vw;
    }

    .quote-card {
        width: 260px;
        min-height: 370px;
        padding: 20px;
        border-radius: 10px;
    }

    .quote-card__text {
        font-size: 15px;
        margin: 0;
    }

    .quote-card__author {
        font-size: 17px;
    }

    .testimonials {
        padding: 80px 0;
        background: url(../img/testimonials-bg-mb.jpg) no-repeat center top;
        background-size: cover;
        min-height: 1235px;
    }

        .testimonials .ticker {
            mask-image: none;
        }

    .cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding: 0;
    }

    .cta__title {
        font-size: 8vw;
        padding: 0 20px;
    }

    .cta__list {
        padding: 0 20px;
    }

    .cta__list-item {
        font-size: 3.7vw;
    }

    .cta__right {
        margin: 0 auto;
    }
    .media-carousel .media-carousel__track .story-card__title {
        top: 120px;
    }
    .media-carousel .story-card__thumb {
        height: 305px;
    }
}

@keyframes heroLogoIn {
    0% {
        opacity: 0;
        transform: translateY(-150px) scale(.5);
    }

    60% {
        opacity: 1;
        transform: translateY(8px) scale(1.04);
    }

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

@keyframes heroLogoPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03685);
    }
}

@keyframes wordIn {
    0% {
        opacity: 0.001;
        filter: blur(10px);
        transform: translateY(10px);
    }

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

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(54px) scale(0);
    }

    50% {
        opacity: 1;
        transform: translateY(0) scale(1.03);
    }

    70% {
        transform: translateY(0) scale(1);
    }

    75% {
        transform: translateY(0) scale(1.005);
    }

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

@keyframes cloudDrift {
    0% {
        left: -30%;
    }

    100% {
        left: 120%;
    }
}

@keyframes heroBgAnimIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: .9;
    }
}

@keyframes fadeInSlow {
    to {
        opacity: 1;
    }
}

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

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


@media (max-width: 767px) {
    .media-carousel .media-carousel__track .story-card {
        flex: 0 0 70%;
        padding: 0 6px;
    }

    .media-carousel .media-carousel__arrow {
        width: 36px;
        height: 36px;
    }
}