:root {
    --navy: #222D6B;
    --navy-2: #33408B;
    --orange: #D95A14;
    --orange-2: #F08B4D;
    --ink: #121826;
    --muted: #667085;
    --line: #E5E7EB;
    --bg: #F7F8FC;
    --card: #FFFFFF;
    --light-navy: #EEF2FF;
    --light-orange: #FFF7ED;
    --shadow: 0 14px 40px rgba(18,24,38,.08);
    --radius: 20px;
    --max: 1200px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter,Arial,sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .45s ease, transform .45s ease;
    overflow-x: hidden
}

body.page-ready {
    opacity: 1;
    transform: none
}

body.page-exit {
    opacity: 0;
    transform: translateY(8px)
}

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

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

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0,0,0,.04)
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 88px;
    gap: 16px
}

.brand {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    max-width: 270px
}

.brand img {
    height: 50px;
    width: auto;
    object-fit: contain
}

.navlinks {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    /* min-width: 0; */
}

.navlinks a {
    font-size: 13px;
    font-weight: 700;
    color: #374151;
    padding: 8px 0;
    position: relative;
    white-space: nowrap
}

.navlinks a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: center;
    transition: .2s ease
}

.navlinks a:hover,.navlinks a.active {
    color: var(--navy)
}

.navlinks a:hover:after,.navlinks a.active:after {
    transform: scaleX(1)
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto
}

.lang-toggle {
    display: inline-flex;
    border: 1px solid var(--line);
    border-radius: 999px;
    overflow: hidden;
    background: #fff
}

.lang-toggle button {
    border: 0;
    background: transparent;
    padding: 8px 13px;
    font-weight: 800;
    cursor: pointer;
    color: var(--muted)
}

.lang-toggle button.active {
    background: var(--navy);
    color: #fff
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 800;
    transition: .2s ease;
    border: 1px solid transparent;
    cursor: pointer;
    text-align: center
}

.btn-primary {
    background: linear-gradient(135deg,var(--orange),var(--orange-2));
    color: #fff;
    box-shadow: 0 14px 30px rgba(217,90,20,.24)
}

.btn-primary:hover {
    transform: translateY(-1px)
}

.btn-secondary {
    background: #fff;
    border-color: var(--line);
    color: var(--navy)
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    height: 44px;
    width: 44px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--navy);
    cursor: pointer;
    font-size: 22px;
    font-weight: 800
}

.mobile-panel {
    display: none;
    background: #fff;
    border-top: 1px solid var(--line)
}

.mobile-panel.open {
    display: block
}

.mobile-panel .inner {
    padding: 16px 24px 22px
}

.mobile-links {
    display: grid;
    gap: 8px;
    margin-bottom: 16px
}

.mobile-links a {
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    font-weight: 700;
    color: #374151;
    background: #fff
}

.mobile-links a.active {
    color: var(--navy);
    border-color: rgba(34,45,107,.2);
    background: var(--light-navy)
}

.mobile-actions {
    display: grid;
    gap: 12px
}

.mobile-actions .lang-toggle {
    width: max-content
}

.hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 88% 8%, rgba(217,90,20,.14), transparent 24%), radial-gradient(circle at 16% 76%, rgba(34,45,107,.10), transparent 20%), linear-gradient(135deg,#fff 0%,#f8f9fe 45%,#eef2ff 100%)
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0,1.02fr) minmax(420px,.98fr);
    align-items: center;
    gap: 48px;
    min-height: calc(100vh - 92px);
    padding: 54px 0 74px
}

.hero-copy {
    position: relative;
    z-index: 2
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(34,45,107,.12);
    color: var(--navy);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
    box-shadow: 0 10px 26px rgba(34,45,107,.06)
}

.hero h1,.page-hero h1 {
    font-size: clamp(38px,5vw,62px);
    line-height: 1.04;
    letter-spacing: -.03em;
    margin: 18px 0 16px;
    color: var(--navy);
    text-wrap: balance
}

.hero p.lead,.page-hero p {
    font-size: 18px;
    color: #475467;
    max-width: 760px;
    margin: 0 0 28px
}

.hero .actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 22px
}

.metrics {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px
}

.metric {
    background: rgba(255,255,255,.78);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34,45,107,.08);
    border-radius: 22px;
    padding: 18px 18px 16px;
    box-shadow: 0 16px 36px rgba(18,24,38,.08)
}

.metric b {
    display: block;
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 6px
}

.metric span {
    display: block;
    font-size: 13px;
    color: var(--muted)
}

.visual-card,.image-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(34,45,107,.08);
    border-radius: 28px;
    box-shadow: var(--shadow);
    overflow: hidden
}

.visual-card {
    padding: 18px
}

.visual-card img,.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-showcase {
    position: relative;
    min-height: 560px
}

.hero-media {
    position: relative;
    min-height: 560px
}

.hero-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
    pointer-events: none
}

.hero-orb-a {
    height: 210px;
    width: 210px;
    top: 24px;
    right: 18px;
    background: rgba(240,139,77,.18)
}

.hero-orb-b {
    height: 170px;
    width: 170px;
    left: 22px;
    bottom: 28px;
    background: rgba(34,45,107,.12)
}

.hero-visual {
    position: relative;
    z-index: 2;
    min-height: 560px;
    padding: 26px;
    background: linear-gradient(180deg,rgba(255,255,255,.98),rgba(248,250,255,.98));
    display: grid;
    grid-template-rows: auto auto;
    gap: 18px
}

.hero-visual-cover {
    display: block;
    padding: 0;
    overflow: hidden
}

.hero-visual-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-media-badge {
    position: absolute;
    top: 22px;
    left: 22px;
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(255,255,255,.48);
    backdrop-filter: blur(8px);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--navy);
    box-shadow: 0 14px 30px rgba(18,24,38,.12)
}

.hero-media-note {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(255,255,255,.54);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 38px rgba(18,24,38,.14)
}

.hero-media-note strong {
    display: block;
    margin-bottom: 6px;
    color: var(--navy);
    font-size: 18px;
    line-height: 1.25
}

.hero-media-note span {
    display: block;
    color: #475467;
    font-size: 14px;
    line-height: 1.55
}

.hero-showcase-top {
    padding: 6px 4px 0
}

.hero-showcase-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px
}

.hero-showcase-label {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    color: #98A2B3;
    text-transform: uppercase;
    margin-bottom: 8px
}

.hero-showcase-head h3 {
    margin: 0;
    font-size: 28px;
    line-height: 1.08;
    color: var(--navy)
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 999px;
    background: var(--light-navy);
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
    border: 1px solid rgba(34,45,107,.08);
    white-space: nowrap
}

.hero-showcase-grid {
    display: grid;
    grid-template-columns: minmax(0,1.2fr) minmax(200px,.8fr);
    gap: 16px
}

.hero-showcase-primary {
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(160deg,#222D6B,#33408B);
    color: #fff;
    box-shadow: 0 18px 36px rgba(34,45,107,.2)
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.14);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase
}

.hero-showcase-primary h4 {
    margin: 14px 0 10px;
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -.03em
}

.hero-showcase-primary p {
    margin: 0;
    color: rgba(255,255,255,.8);
    font-size: 15px;
    line-height: 1.6
}

.hero-showcase-stack {
    display: grid;
    gap: 12px
}

.hero-showcase-mini {
    padding: 18px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(34,45,107,.08);
    box-shadow: 0 12px 26px rgba(18,24,38,.06)
}

.hero-showcase-mini b {
    display: inline-grid;
    place-items: center;
    height: 34px;
    width: 34px;
    margin-bottom: 12px;
    border-radius: 12px;
    background: var(--light-orange);
    color: var(--orange);
    font-size: 14px
}

.hero-showcase-mini span {
    display: block;
    color: #475467;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45
}

.hero-showcase-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 4px
}

.hero-proof-item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(34,45,107,.08)
}

.hero-proof-item span {
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #98A2B3
}

.hero-proof-item b {
    display: block;
    max-width: 280px;
    color: var(--navy);
    font-size: 15px;
    line-height: 1.5;
    text-align: right
}

.page-hero {
    padding: 72px 0 36px;
    background: linear-gradient(180deg,#fff,#f7f8fc)
}

.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(340px,460px);
    gap: 36px;
    align-items: center
}

.page-hero .image-card {
    min-height: 320px
}

.page-hero .reveal:first-child {
    max-width: 700px
}

section {
    padding: 72px 0
}

.section-head {
    margin-bottom: 28px
}

.section-head h2 {
    margin: 0 0 8px;
    font-size: clamp(28px,3vw,40px);
    line-height: 1.12;
    color: var(--navy)
}

.section-head p {
    margin: 0;
    max-width: 780px;
    color: #475467
}

.cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px
}

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

.card {
    background: var(--card);
    border: 1px solid rgba(34,45,107,.08);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    transition: transform .22s ease, box-shadow .22s ease
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(18,24,38,.12)
}

.card.media {
    padding: 0;
    overflow: hidden
}

.card.media .content {
    padding: 22px 24px 24px
}

.card.media img {
    height: 200px;
    width: 100%;
    object-fit: cover
}

.card h3 {
    margin: 12px 0 10px;
    font-size: 22px;
    color: var(--navy)
}

.card p {
    margin: 0;
    color: #475467
}

.icon {
    height: 52px;
    width: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--light-navy);
    color: var(--navy);
    font-size: 22px;
    font-weight: 900
}

.badge {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    font-size: 12px;
    font-weight: 900;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: .06em
}

.logo-strip {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 18px
}

.logo-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    min-height: 84px;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: #9AA3B2;
    box-shadow: var(--shadow);
    text-align: center;
    padding: 10px
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center
}

.feature-list {
    display: grid;
    gap: 14px
}

.feature {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line)
}

.feature:last-child {
    border-bottom: 0
}

.feature b {
    color: var(--navy)
}

.timeline {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 16px
}

.step {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 22px;
    box-shadow: var(--shadow)
}

.step .num {
    height: 36px;
    width: 36px;
    border-radius: 999px;
    background: var(--navy);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900;
    margin-bottom: 14px
}

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

.kpi {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px;
    box-shadow: var(--shadow)
}

.kpi b {
    display: block;
    font-size: 34px;
    color: var(--navy)
}

.kpi span {
    color: #475467
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 999px;
    background: var(--light-navy);
    border: 1px solid rgba(34,45,107,.08);
    color: var(--navy);
    font-size: 13px;
    font-weight: 800
}

.stack {
    display: grid;
    gap: 16px
}

.contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px
}

.contact-list li {
    padding: 16px 18px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid var(--line)
}

.contact-list strong {
    display: block;
    margin-bottom: 4px;
    color: var(--navy);
    font-size: 14px
}

.card .badge {
    margin-bottom: 10px
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line)
}

.table th,.table td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top
}

.table th {
    background: #f8fafc;
    color: var(--navy);
    font-size: 14px
}

.table tr:last-child td {
    border-bottom: 0
}

.list {
    margin: 0;
    padding-left: 20px;
    color: #475467
}

.list li {
    margin-bottom: 8px
}

.cta-band {
    background: linear-gradient(135deg,#222D6B,#2c3886 55%,#D95A14);
    color: #fff;
    border-radius: 28px;
    padding: 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow)
}

.cta-band h3 {
    font-size: 32px;
    line-height: 1.08;
    margin: 0 0 10px
}

.cta-band p {
    margin: 0;
    color: rgba(255,255,255,.84);
    max-width: 680px
}

.cta-band .actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

footer.footer {
    padding: 28px 0 40px;
    background: #fff;
    border-top: 1px solid var(--line)
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 1fr;
    gap: 24px
}

.footer h4 {
    margin: 0 0 12px;
    color: var(--navy)
}

.footer p,.footer a {
    color: #475467;
    font-size: 14px
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px
}

.footer .brand img {
    height: 50px;
}

.notice {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    font-size: 14px
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s ease,transform .7s ease
}

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

.page-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    color: var(--navy)
}

.small {
    font-size: 14px;
    color: #667085
}

@media (max-width: 1320px) {
    .navlinks,.nav-right {
        display:none
    }

    .menu-toggle {
        display: inline-flex
    }
}

@media (max-width: 1200px) {
    .hero-grid,.split,.cards,.cards-4,.timeline,.logo-strip,.footer-grid,.kpis,.page-hero-grid {
        grid-template-columns:1fr 1fr
    }

    .metrics {
        grid-template-columns: 1fr
    }

    .hero-grid {
        grid-template-columns: 1fr
    }

    .hero-showcase,.hero-media {
        min-height: auto
    }

    .hero-visual {
        min-height: auto
    }

    .hero-showcase-grid {
        grid-template-columns: 1fr
    }

    .page-hero-grid {
        align-items: start
    }

    .brand img {
        height: 50px;
    }
}

@media (max-width: 760px) {
    .container {
        padding:0 16px
    }

    .nav {
        min-height: 82px
    }

    .brand img {
        height: 50px;
    }

    .hero-grid,.split,.cards,.cards-4,.timeline,.logo-strip,.footer-grid,.kpis,.metrics,.page-hero-grid {
        grid-template-columns: 1fr
    }

    .hero-grid {
        min-height: auto;
        padding-top: 28px;
        gap: 24px
    }

    .hero p.lead,.page-hero p {
        font-size: 16px
    }

    .hero-showcase-head,.hero-proof-item {
        display: grid
    }

    .hero-proof-item b {
        text-align: left;
        max-width: none
    }

    .hero-visual {
        padding: 18px
    }

    .hero-visual-cover {
        padding: 0
    }

    .hero-media-badge {
        top: 14px;
        left: 14px;
        font-size: 11px;
        padding: 9px 12px
    }

    .hero-media-note {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 14px 16px
    }

    .hero-media-note strong {
        font-size: 16px
    }

    .hero-showcase-primary h4 {
        font-size: 22px
    }

    section {
        padding: 56px 0
    }

    .cta-band {
        padding: 28px;
        display: grid
    }

    .cta-band .actions {
        display: grid
    }

    .btn {
        width: 100%
    }

    .hero .actions {
        display: grid;
        grid-template-columns: 1fr
    }

    .table {
        display: block;
        overflow: auto;
        white-space: nowrap
    }

    .page-hero {
        padding-top: 48px
    }

    .hero-visual {
        min-height: 300px
    }
}

[data-lang="vn"] [data-en] {
    display: none!important
}

[data-lang="en"] [data-vn] {
    display: none!important
}
