﻿:root {
    --primary: #1A56DB;
    --primary-hover: #1447C0;
    --primary-light: #E8F0FE;
    --secondary: #111827;
    --accent: #F59E0B;
    --neutral-900: #111827;
    --neutral-700: #374151;
    --neutral-500: #6B7280;
    --neutral-300: #D1D5DB;
    --neutral-100: #F3F4F6;
    --neutral-50: #F9FAFB;
    --white: #fff;
    --dark-bg: #0F172A;
    --dark-surface: #1E293B;
    --dark-border: #334155;
    --dark-text: #F1F5F9;
    --shadow-card: 0 4px 16px rgba(0, 0, 0, .08);
    --shadow-hover: 0 8px 32px rgba(0, 0, 0, .14);
    --container: 1280px
}

* {
    box-sizing: border-box
}

html {
    font-size: 14px;
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: 'Be Vietnam Pro', Inter, sans-serif;
    color: var(--neutral-700);
    line-height: 1.65;
    background: #fff
}

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

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

.container {
    width: min(calc(100% - 32px), var(--container));
    margin-inline: auto
}

.section {
    padding: 80px 0
}

.section--muted {
    background: var(--neutral-50)
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 36px
}

.eyebrow {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: .82rem
}

h1,
h2,
h3 {
    color: var(--neutral-900);
    line-height: 1.25;
    margin: 0 0 14px
}

h1 {
    font-size: clamp(3rem, 8vw, 7rem)
}

h2 {
    font-size: clamp(1.7rem, 3vw, 2.6rem)
}

h3 {
    font-size: 1.1rem
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff6a18 0%, #ea790f 45%, #ffb321 100%);
    color: #fff;
    font-weight: 800;
    border: 0;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(234, 121, 15, .28);
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease
}

.btn:hover {
    filter: brightness(1.05) saturate(1.08);
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(234, 121, 15, .36)
}

.center {
    text-align: center;
    margin-top: 32px
}

.topbar {
    height: 40px;
    background: var(--neutral-50);
    border-bottom: 1px solid var(--neutral-100);
    font-size: .9rem
}

.topbar__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.topbar__social,
.lang-switch {
    display: flex;
    gap: 14px;
    align-items: center
}

.site-header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 50;
    transition: .25s ease
}

.site-header.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1)
}

.nav {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    display: flex;
    gap: 10px;
    align-items: center
}

.logo__mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: var(--primary);
    color: #fff;
    font-weight: 800
}

.logo small {
    display: block;
    color: var(--neutral-500);
    font-size: .72rem
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px
}

.nav-item>a {
    display: block;
    padding: 26px 10px;
    font-weight: 700;
    font-size: .92rem
}

.nav-toggle {
    display: none
}

.mega {
    position: absolute;
    left: 50%;
    top: 116px;
    transform: translateX(-50%) translateY(12px);
    width: min(1120px, calc(100% - 32px));
    background: #fff;
    border: 1px solid var(--neutral-100);
    box-shadow: var(--shadow-hover);
    border-radius: 8px;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: .25s ease
}

.nav-item:hover .mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0)
}

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

.mega h3 {
    font-size: .96rem
}

.mega a {
    display: block;
    color: var(--neutral-500);
    padding: 4px 0
}

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

.mega-tile {
    min-height: 88px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary-light), #fff);
    padding: 16px;
    font-weight: 700
}

.hero {
    position: relative;
    min-height: 90vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: #fff
}

.hero__slides,
.hero__slide {
    position: absolute;
    inset: 0
}

.hero__slide {
    background: linear-gradient(rgba(0, 0, 0, .58), rgba(0, 0, 0, .58)), var(--hero) center/cover;
    opacity: 0;
    transition: opacity .8s ease
}

.hero__slide.is-active {
    opacity: 1
}

.hero__content {
    position: relative;
    text-align: center
}

.hero h1,
.hero p {
    color: #fff
}

.hero .eyebrow {
    color: #fff
}

.hero-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 26px
}

.hero-links a {
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 999px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, .08)
}

.split {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: center
}

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

.mini-cards article,
.subcat-grid article,
.solution-card {
    border: 1px solid var(--neutral-100);
    border-radius: 8px;
    padding: 18px;
    background: #fff;
    box-shadow: var(--shadow-card)
}

.mini-cards span {
    display: block;
    color: var(--neutral-500);
    font-size: .9rem
}

.image-stack {
    position: relative;
    min-height: 460px
}

.image-stack img {
    position: absolute;
    width: 68%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-hover)
}

.image-stack img:nth-child(1) {
    right: 0;
    top: 0
}

.image-stack img:nth-child(2) {
    left: 0;
    top: 120px
}

.image-stack img:nth-child(3) {
    right: 8%;
    bottom: 0
}

.stats {
    position: relative;
    overflow: hidden;
    background: linear-gradient(100deg, #120b08 0%, #6f2c10 48%, #e26f14 100%);
    color: #fff;
    padding: 0
}

.stats::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 50%, rgba(255, 190, 92, .28), transparent 26%), linear-gradient(90deg, rgba(255, 255, 255, .1), transparent 22%, rgba(255, 255, 255, .12));
    pointer-events: none
}

.stats .container {
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0
}

.stats__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    min-height: 118px;
    text-align: center
}

.stats__grid>div {
    display: grid;
    place-items: center;
    align-content: center;
    min-height: 118px;
    border-left: 1px solid rgba(255, 255, 255, .16)
}

.stats__grid>div:last-child {
    border-right: 1px solid rgba(255, 255, 255, .16)
}

.stats strong {
    display: block;
    font-size: clamp(2.35rem, 4vw, 3.55rem);
    line-height: 1;
    color: #fff;
    font-weight: 900;
    text-shadow: 0 12px 28px rgba(0, 0, 0, .28)
}

.stats span {
    display: block;
    margin-top: 10px;
    color: rgba(255, 244, 228, .88);
    font-size: .9rem;
    font-weight: 800;
    letter-spacing: .02em
}

.card-grid {
    display: grid;
    gap: 24px
}

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

.card-grid--3 {
    grid-template-columns: repeat(3, 1fr)
}

.card-grid--4 {
    grid-template-columns: repeat(4, 1fr)
}

.field-card,
.project-card,
.news-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: .25s ease
}

.field-card:hover,
.project-card:hover,
.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover)
}

.field-card img,
.project-card img,
.news-card img {
    height: 230px;
    width: 100%;
    object-fit: cover;
    transition: .25s ease
}

.field-card:hover img,
.project-card:hover img {
    transform: scale(1.05)
}

.field-card span {
    display: block;
    padding: 18px;
    font-weight: 800;
    color: var(--neutral-900)
}

.project-card div,
.news-card div {
    padding: 18px
}

.project-card small,
time {
    color: var(--primary);
    font-weight: 700
}

.project-card a {
    color: var(--primary);
    font-weight: 700
}

.why__list {
    display: grid;
    gap: 22px
}

.why-item {
    display: grid;
    grid-template-columns: 90px 1fr 280px;
    gap: 24px;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--neutral-100)
}

.why-item span {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary)
}

.why-item img {
    height: 170px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px
}

.news-layout {
    display: grid;
    grid-template-columns: 1.5fr .8fr;
    gap: 24px
}

.news-featured {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
}

.news-small {
    display: grid;
    gap: 14px
}

.news-row {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 14px;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    padding: 12px;
    box-shadow: var(--shadow-card)
}

.news-row span {
    height: 62px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary), var(--accent))
}

/* EasyNet news page redesign */
.news-hero {
    background:
        linear-gradient(90deg, rgba(6, 22, 39, .82), rgba(126, 43, 7, .58)),
        url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=82") center/cover;
}

.news-page {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fff 0%, #fff7ef 100%);
}

.news-page::before {
    content: "";
    position: absolute;
    right: -160px;
    top: 120px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 126, 31, .16), transparent 66%);
    pointer-events: none;
}

.news-page__head {
    max-width: 780px;
    margin-bottom: clamp(30px, 4vw, 48px);
}

.news-page__head span,
.news-archive-head span {
    display: inline-flex;
    margin-bottom: 10px;
    color: #ff651f;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.news-page__head h2,
.news-archive-head h2 {
    margin: 0;
    color: #9f1d20;
    font-size: clamp(2rem, 3.7vw, 3.2rem);
    font-weight: 900;
}

.news-page__head p {
    max-width: 680px;
    color: #475569;
    font-size: clamp(1rem, 1.25vw, 1.16rem);
    font-weight: 600;
    line-height: 1.65;
}

.news-latest-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(22px, 3vw, 34px);
    align-items: stretch;
}

.news-page .news-card div {
    padding: 0;
}

.news-page .news-card {
    position: relative;
    display: grid;
    overflow: hidden;
    border: 1px solid rgba(255, 126, 31, .15);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 24px 58px rgba(15, 23, 42, .12);
    transition: transform .34s ease, box-shadow .34s ease, border-color .34s ease;
}

.news-page .news-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 103, 31, .42);
    box-shadow: 0 32px 70px rgba(255, 103, 31, .18);
}

.news-card--latest {
    border-radius: 26px;
    min-height: 100%;
}

.news-card--compact {
    flex: 0 0 calc((100% - 72px) / 4);
    min-width: 245px;
    border-radius: 20px;
    scroll-snap-align: start;
}

.news-card__media {
    display: block;
    overflow: hidden;
    color: inherit;
}

.news-card--latest .news-card__media {
    height: clamp(270px, 26vw, 390px);
}

.news-card--compact .news-card__media {
    height: 160px;
}

.news-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform .46s ease, filter .46s ease;
}

.news-page .news-card:hover .news-card__media img {
    transform: scale(1.07);
    filter: saturate(1.08);
}

.news-card__body {
    display: grid;
    gap: 14px;
    padding: clamp(20px, 2.4vw, 30px);
}

.news-card--compact .news-card__body {
    gap: 10px;
    padding: 18px;
}

.news-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #64748b;
    font-size: .84rem;
    font-weight: 800;
}

.news-card__meta span {
    color: #ff651f;
}

.news-card__body h3 {
    margin: 0;
    color: #172033;
    font-size: clamp(1.35rem, 2vw, 1.88rem);
    font-weight: 900;
    line-height: 1.25;
}

.news-card--compact .news-card__body h3 {
    display: -webkit-box;
    overflow: hidden;
    font-size: 1rem;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-card__body p {
    margin: 0;
    color: #475569;
    font-weight: 600;
    line-height: 1.62;
}

.news-card__link {
    color: #c2410c;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.news-archive-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-top: clamp(48px, 7vw, 82px);
    margin-bottom: 22px;
}

.news-carousel-controls {
    display: flex;
    gap: 12px;
}

.news-carousel-controls button {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 103, 31, .38);
    border-radius: 50%;
    color: #ff651f;
    background: #fff;
    font-size: 1.7rem;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
    transition: transform .28s ease, color .28s ease, background .28s ease;
}

.news-carousel-controls button:hover {
    color: #fff;
    background: linear-gradient(135deg, #ff5d2e, #ffb21d);
    transform: translateY(-3px);
}

.news-carousel {
    overflow: hidden;
}

.news-carousel-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 8px 2px 18px;
    scrollbar-width: none;
}

.news-carousel-track::-webkit-scrollbar {
    display: none;
}

@media (max-width: 1024px) {
    .news-card--compact {
        flex-basis: calc((100% - 48px) / 3);
    }
}

@media (max-width: 768px) {
    .news-latest-grid {
        grid-template-columns: 1fr;
    }

    .news-archive-head {
        align-items: start;
        flex-direction: column;
    }

    .news-card--compact {
        flex-basis: min(78vw, 340px);
    }
}

@media (max-width: 520px) {
    .news-card--latest .news-card__media {
        height: 235px;
    }

    .news-card__meta {
        align-items: start;
        flex-direction: column;
        gap: 6px;
    }
}

/* End EasyNet news page redesign */

.marquee {
    overflow: hidden;
    border-block: 1px solid var(--neutral-100);
    padding: 18px 0
}

.marquee__track {
    display: flex;
    gap: 18px;
    min-width: max-content;
    animation: marquee 26s linear infinite
}

.marquee:hover .marquee__track {
    animation-play-state: paused
}

.marquee span,
.logo-grid span {
    display: grid;
    place-items: center;
    min-width: 150px;
    height: 78px;
    border: 1px solid var(--neutral-100);
    border-radius: 8px;
    background: #fff;
    font-weight: 800;
    color: var(--neutral-500)
}

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

.footer {
    background: var(--dark-bg);
    color: var(--dark-text);
    padding-top: 56px
}

.footer h2 {
    font-size: 1rem;
    color: #fff
}

.footer a {
    display: block;
    color: var(--dark-text);
    margin: 7px 0
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1.3fr 1fr 1fr;
    gap: 30px
}

.logo--light strong {
    color: #fff
}

.map-wrap iframe {
    width: 100%;
    height: 260px;
    border: 0;
    border-radius: 8px;
    margin: 28px 0
}

.copyright {
    text-align: center;
    border-top: 1px solid var(--dark-border);
    padding: 16px;
    color: #cbd5e1
}

.float-zalo {
    position: fixed;
    right: 18px;
    bottom: 82px;
    z-index: 60;
    display: flex;
    gap: 8px;
    align-items: center;
    background: #0ea5e9;
    color: #fff;
    border-radius: 999px;
    padding: 12px 16px;
    box-shadow: var(--shadow-hover);
    font-weight: 800
}

.back-top {
    position: fixed;
    right: 18px;
    bottom: 24px;
    z-index: 60;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: 0;
    background: var(--primary);
    color: #fff;
    opacity: 0;
    pointer-events: none
}

.back-top.show {
    opacity: 1;
    pointer-events: auto
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    z-index: 80;
    background: #fff;
    border-radius: 8px;
    padding: 14px 18px;
    box-shadow: var(--shadow-hover)
}

.toast--success {
    border-left: 4px solid #16A34A
}

.toast--error {
    border-left: 4px solid #DC2626
}

.page-hero {
    min-height: 320px;
    display: grid;
    place-items: center;
    background: linear-gradient(rgba(15, 23, 42, .74), rgba(15, 23, 42, .74)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=80') center/cover;
    color: #fff
}

.page-hero h1,
.page-hero p {
    color: #fff
}

.prose {
    max-width: 920px
}

.content-sidebar {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 28px
}

.sidebar {
    border: 1px solid var(--neutral-100);
    border-radius: 8px;
    padding: 18px;
    align-self: start
}

.sidebar a {
    display: block;
    padding: 8px 0;
    color: var(--primary)
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px
}

.filter-tabs button {
    border: 1px solid var(--neutral-300);
    background: #fff;
    border-radius: 8px;
    padding: 10px 14px;
    font-weight: 700;
    cursor: pointer
}

.filter-tabs .is-active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary)
}

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

.gallery-item {
    border: 0;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer
}

.gallery-item img {
    height: 220px;
    width: 100%;
    object-fit: cover
}

.gallery-item span {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: rgba(15, 23, 42, .8);
    color: #fff;
    border-radius: 8px;
    padding: 6px 10px
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .82);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100
}

.lightbox.open {
    display: flex
}

.lightbox img {
    max-width: 90vw;
    max-height: 82vh;
    border-radius: 8px
}

.lightbox button {
    position: absolute;
    right: 22px;
    top: 18px;
    font-size: 2rem;
    background: #fff;
    border: 0;
    border-radius: 8px
}

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 28px
}

.contact-box,
.contact-form {
    border: 1px solid var(--neutral-100);
    border-radius: 8px;
    padding: 24px;
    box-shadow: var(--shadow-card)
}

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

.contact-form label {
    display: grid;
    gap: 6px;
    font-weight: 700
}

.contact-form textarea,
.contact-form label:nth-child(5) {
    grid-column: 1/-1
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--neutral-300);
    border-radius: 8px;
    padding: 12px;
    font: inherit
}

.hp {
    position: absolute;
    left: -9999px
}

.solution-card span {
    font-weight: 800;
    color: var(--neutral-900)
}

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

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

@keyframes marquee {
    to {
        transform: translateX(-50%)
    }
}

@media (max-width:1024px) {
    .nav-toggle {
        display: block;
        border: 0;
        background: var(--secondary);
        color: #fff;
        border-radius: 8px;
        padding: 10px 12px
    }

    .nav-menu {
        position: fixed;
        right: 0;
        top: 0;
        bottom: 0;
        width: min(360px, 88vw);
        background: #fff;
        display: block;
        padding: 76px 22px;
        box-shadow: var(--shadow-hover);
        transform: translateX(105%);
        transition: .25s ease;
        overflow: auto
    }

    .nav-menu.open {
        transform: none
    }

    .nav-item>a {
        padding: 12px 0
    }

    .mega {
        position: static;
        transform: none;
        width: 100%;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: 0;
        padding: 8px 0;
        display: none
    }

    .nav-item.open .mega {
        display: block
    }

    .mega-columns,
    .mega-grid {
        grid-template-columns: 1fr
    }

    .split,
    .news-layout,
    .content-sidebar,
    .contact-grid {
        grid-template-columns: 1fr
    }

    .card-grid--3,
    .card-grid--4,
    .logo-grid,
    .gallery {
        grid-template-columns: repeat(2, 1fr)
    }

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

    .why-item {
        grid-template-columns: 70px 1fr
    }

    .why-item img {
        grid-column: 1/-1
    }

    .image-stack {
        min-height: 380px
    }
}

@media (max-width:640px) {

    .about-layout,
    .about-page-layout {
        gap: 26px
    }

    .about-value-card {
        min-height: auto;
        padding: 16px
    }

    .about-page-panel {
        border-radius: 18px
    }

    .section {
        padding: 40px 0
    }

    .topbar__social a:nth-child(n+2) {
        display: none
    }

    .hero {
        min-height: 82vh
    }

    .hero-links {
        display: none
    }

    .mini-cards,
    .stats__grid,
    .card-grid--2,
    .card-grid--3,
    .card-grid--4,
    .news-featured,
    .logo-grid,
    .gallery,
    .footer__grid,
    .contact-form {
        grid-template-columns: 1fr
    }

    .image-stack {
        min-height: 310px
    }

    .image-stack img {
        height: 180px
    }

    .stats__grid {
        min-height: 0
    }

    .stats__grid>div {
        min-height: 96px;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, .14)
    }

    .stats__grid>div:last-child {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .14)
    }

    .stats strong {
        font-size: 2.4rem
    }

    .float-zalo span {
        display: none
    }

    .why-item {
        grid-template-columns: 1fr
    }

    .why-item span {
        font-size: 2rem
    }

    .contact-form label:nth-child(5) {
        grid-column: auto
    }
}

/* EasyNet demo-inspired header and hero */
:root {
    --demo-orange: #f47b20;
    --demo-red: #a83a46;
    --demo-dark: #080b12
}

.topbar {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: 38px;
    background: #fff;
    border: 0;
    font-size: .86rem;
    z-index: 90
}

.topbar__inner {
    justify-content: space-between
}

.topbar__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    height: 100%;
    margin-left: auto
}

.topbar__social {
    gap: 8px
}

.topbar__link {
    font-size: .78rem;
    font-weight: 700;
    color: #111827;
    white-space: nowrap
}

.lang-switch {
    font-size: .78rem;
    font-weight: 800;
    gap: 7px
}

.globe {
    width: 18px;
    height: 18px;
    color: var(--demo-orange);
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto
}

.social-pill {
    display: grid;
    place-items: center;
    min-width: 26px;
    height: 24px;
    padding: 0 7px;
    border-radius: 999px;
    background: #ea790f;
    color: #fff;
    font-weight: 800;
    font-size: .58rem;
    line-height: 1;
    box-shadow: 0 3px 8px rgba(234, 121, 15, .14)
}

.social-pill--icon {
    width: 24px;
    min-width: 24px;
    padding: 0;
    font-size: .76rem
}

.site-header {
    top: 38px;
    background: rgba(6, 9, 15, .94);
    box-shadow: none;
    z-index: 70
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 35% 20%, rgba(36, 85, 130, .28), transparent 34%), linear-gradient(90deg, rgba(0, 0, 0, .3), rgba(0, 0, 0, .05));
    pointer-events: none
}

.site-header.scrolled {
    box-shadow: 0 10px 22px rgba(0, 0, 0, .18)
}

.nav {
    height: 80px;
    position: relative
}

.logo {
    gap: 12px;
    color: #fff;
    min-width: 180px
}

.logo__image {
    display: block;
    width: auto;
    height: 58px;
    max-width: 190px;
    object-fit: contain
}

.logo__burst {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: repeating-conic-gradient(from -28deg, var(--demo-orange) 0 8deg, transparent 8deg 15deg);
    position: relative;
    display: block
}

.logo__burst::after {
    content: "";
    position: absolute;
    inset: 22px;
    border-radius: 50%;
    background: var(--demo-dark)
}

.logo__text strong {
    font-size: 2rem;
    line-height: 1;
    color: #b2333f;
    letter-spacing: 0
}

.logo__text strong span {
    color: var(--demo-orange)
}

.nav-menu {
    gap: 28px;
    margin-left: auto
}

.nav-item>a {
    color: #fff;
    font-size: .94rem;
    font-weight: 800;
    padding: 30px 0
}

.search-btn {
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    position: relative;
    cursor: pointer
}

.search-btn::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 3px;
    width: 18px;
    height: 18px;
    border: 3px solid #fff;
    border-radius: 50%
}

.search-btn::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 3px;
    background: #fff;
    transform: rotate(45deg);
    left: 21px;
    top: 24px;
    border-radius: 3px
}

.mega {
    top: 118px;
    background: #fff
}

.mega h3 {
    color: var(--neutral-900)
}

.hero {
    min-height: calc(100vh - 60px);
    place-items: start center;
    padding-top: 130px;
    background: #07101d
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 180px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 78%);
    z-index: 2;
    pointer-events: none
}

.hero__slide {
    background: linear-gradient(rgba(4, 9, 18, .36), rgba(4, 9, 18, .18)), var(--hero) center 35%/cover;
    filter: saturate(1.05) contrast(1.03)
}

.hero__content {
    z-index: 3;
    margin-top: 12px
}

.hero h1 {
    font-size: clamp(2.7rem, 4.2vw, 4.1rem);
    font-weight: 900;
    color: var(--demo-orange);
    letter-spacing: 0;
    margin-bottom: 10px
}

.hero__content p {
    font-size: clamp(2rem, 3.7vw, 3.35rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.14;
    max-width: 960px;
    margin: 0 auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .25)
}

.hero-side {
    position: fixed;
    right: clamp(18px, 2.2vw, 34px);
    top: 50%;
    z-index: 45;
    display: grid;
    justify-items: end;
    gap: 12px;
    width: min(280px, calc(100vw - 36px));
    text-align: right;
    font-weight: 800;
    transform: translateY(-50%)
}

.hero-side a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    max-width: 100%;
    padding: 8px 42px 8px 14px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    color: #fff;
    background: rgba(7, 11, 18, .28);
    font-size: .84rem;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .45);
    backdrop-filter: blur(8px) saturate(115%);
    -webkit-backdrop-filter: blur(8px) saturate(115%);
    transition: color .24s ease, background .24s ease, border-color .24s ease, box-shadow .24s ease, transform .24s ease
}

.hero-side.is-on-light a {
    color: #182233;
    background: rgba(255, 255, 255, .82);
    border-color: rgba(24, 34, 51, .12);
    text-shadow: none;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .1)
}

.hero-side.is-on-dark a {
    color: #fff;
    background: rgba(7, 11, 18, .32);
    border-color: rgba(255, 255, 255, .18)
}

.hero-side a:hover {
    transform: translateX(-4px)
}

.hero-side a.is-active {
    color: #fff;
    background: linear-gradient(135deg, #ff6a18, #ea790f 54%, #ffb321);
    border-color: rgba(255, 226, 172, .58);
    box-shadow: 0 16px 34px rgba(234, 121, 15, .34);
    text-shadow: 0 2px 10px rgba(78, 23, 4, .35)
}

.hero-side a.is-active::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform: translateY(-50%)
}

.about--demo {
    position: relative;
    overflow: hidden;
    padding-top: 70px
}

.about-layout,
.about-page-layout {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: clamp(34px, 5vw, 68px);
    align-items: center
}

.about-page-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(310px, .9fr);
    align-items: stretch
}

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

.about-copy h2 {
    font-size: clamp(2rem, 3.2vw, 3.3rem);
    color: #b24955;
    font-weight: 900;
    margin-bottom: 18px
}


.about-copy p,
.about-page-copy p {
    font-size: .96rem;
    color: #6f7684;
    font-weight: 600;
    line-height: 1.75
}

.about-signature {
    color: #b24955 !important;
    font-weight: 900 !important
}

.about-values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 28px 0
}

.about-values--page {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 38px
}

.about-value-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: start;
    min-height: 156px;
    padding: 18px;
    border: 1px solid rgba(234, 121, 15, .18);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(255, 248, 240, .88));
    box-shadow: 0 16px 36px rgba(15, 23, 42, .08)
}

.about-value-card strong {
    display: block;
    margin-bottom: 8px;
    color: #243044;
    font-size: 1.02rem;
    font-weight: 900
}

.about-value-card span:not(.about-icon) {
    color: #6f7684;
    font-size: .88rem;
    font-weight: 700;
    line-height: 1.6
}

.about-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, #ff7b20, #b24955);
    box-shadow: 0 14px 24px rgba(234, 121, 15, .24)
}

.about-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round
}

.about-page {
    background: linear-gradient(180deg, #fff 0%, #fff8f2 100%)
}

.about-page-copy {
    padding: 34px 0
}

.about-page-copy h2 {
    color: #b24955;
    font-size: clamp(2rem, 3.2vw, 3.25rem);
    font-weight: 900;
    margin-bottom: 18px
}

.about-page-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(26px, 4vw, 40px);
    border-radius: 24px;
    color: #fff;
    background: radial-gradient(circle at 82% 10%, rgba(255, 188, 88, .32), transparent 34%), linear-gradient(145deg, #211016, #b24955 58%, #ea790f);
    box-shadow: 0 24px 60px rgba(84, 30, 18, .24)
}

.about-page-panel::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 210px;
    height: 210px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%
}

.about-panel-badge {
    display: inline-flex;
    margin-bottom: 28px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    color: #fff;
    font-size: .8rem;
    font-weight: 900
}

.about-page-panel h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    color: #fff;
    font-size: 1.8rem
}

.about-page-panel ul {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none
}

.about-page-panel li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800
}

.about-page-panel li::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ffd37a;
    box-shadow: 0 0 14px rgba(255, 211, 122, .72)
}

.about-mark {
    position: absolute;
    right: 7%;
    top: 16px;
    width: 270px;
    height: 270px;
    opacity: .28;
    background: repeating-conic-gradient(from -20deg, #f4b342 0 12deg, transparent 12deg 25deg);
    border-radius: 50%;
    z-index: 1
}

.about-mark::after {
    content: "";
    position: absolute;
    inset: 70px;
    background: #fff;
    border-radius: 50%
}

.about-visual {
    position: relative;
    min-height: 520px;
    isolation: isolate
}

.about-visual::before {
    content: "";
    position: absolute;
    left: 12%;
    top: 10%;
    z-index: -1;
    width: 72%;
    height: 76%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(234, 121, 15, .18), transparent 68%);
    filter: blur(4px)
}

.about-visual img {
    position: absolute;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, .72);
    box-shadow: 0 26px 58px rgba(15, 23, 42, .2);
    transition: transform .45s ease, box-shadow .45s ease
}

.about-visual img:nth-child(1) {
    left: 0;
    top: 72px;
    z-index: 2;
    width: 68%;
    height: 360px;
    border-radius: 32px 12px 32px 12px
}

.about-visual img:nth-child(2) {
    right: 0;
    top: 12px;
    z-index: 3;
    width: 48%;
    height: 246px;
    border-radius: 18px 34px 18px 34px
}

.about-visual img:nth-child(3) {
    right: 9%;
    bottom: 18px;
    z-index: 4;
    width: 56%;
    height: 220px;
    border-radius: 34px 18px 34px 18px
}

.about-visual:hover img:nth-child(1) {
    transform: translate3d(-6px, -8px, 0)
}

.about-visual:hover img:nth-child(2) {
    transform: translate3d(8px, -10px, 0)
}

.about-visual:hover img:nth-child(3) {
    transform: translate3d(4px, 8px, 0)
}

.back-top {
    background: #ff4b31;
    border-radius: 50%;
    width: 58px;
    height: 58px;
    font-size: 1.9rem;
    right: 34px;
    bottom: 36px
}

.float-zalo {
    display: none
}

@media (max-width:1180px) {
    .nav-menu {
        gap: 16px
    }

    .nav-item>a {
        font-size: .88rem
    }

    .hero-side {
        display: none
    }

    .logo {
        min-width: 150px
    }

    .logo__burst {
        width: 64px;
        height: 64px
    }

    .logo__image {
        height: 48px;
        max-width: 160px
    }

    .logo__text strong {
        font-size: 1.65rem
    }
}

@media (max-width:1024px) {
    .topbar {
        height: 34px;
        padding: 0
    }

    .topbar__right {
        gap: 16px;
        flex-wrap: wrap
    }

    .site-header {
        top: 34px
    }

    .nav {
        height: 84px
    }

    .nav-menu {
        background: #090d15
    }

    .nav-item>a {
        color: #fff;
        padding: 12px 0
    }

    .search-btn {
        display: none
    }

    .mega {
        background: transparent
    }

    .mega h3,
    .mega a {
        color: #fff
    }

    .hero {
        padding-top: 84px;
        min-height: 760px
    }

    .hero__content {
        margin-top: 60px
    }

    .about-layout,
    .about-page-layout {
        grid-template-columns: 1fr
    }

    .about-values {
        grid-template-columns: 1fr
    }

    .about-visual {
        order: 2
    }
}

@media (max-width:640px) {
    .topbar__link {
        display: none
    }

    .topbar__right {
        justify-content: flex-end;
        gap: 10px
    }

    .social-pill {
        width: 24px;
        min-width: 24px;
        height: 24px;
        padding: 0
    }

    .logo__image {
        height: 40px;
        max-width: 132px
    }

    .logo__burst {
        width: 52px;
        height: 52px
    }

    .logo__text strong {
        font-size: 1.35rem
    }

    .hero {
        min-height: 640px
    }

    .hero__content p {
        font-size: 1.8rem
    }

    .about-visual {
        min-height: 460px
    }

    .about-visual img:nth-child(1) {
        top: 64px;
        width: 76%;
        height: 280px
    }

    .about-visual img:nth-child(2) {
        width: 52%;
        height: 178px
    }

    .about-visual img:nth-child(3) {
        right: 0;
        bottom: 24px;
        width: 66%;
        height: 178px
    }

    .about-mark {
        right: -80px
    }
}

.projects-showcase {
    position: relative;
    overflow: hidden;
    background: #fff;
    color: #1f2937
}

.projects-showcase::before {
    content: "";
    position: absolute;
    left: -70px;
    top: -120px;
    width: 330px;
    height: 330px;
    opacity: .62;
    background:
        radial-gradient(circle at 50% 50%, transparent 0 52%, rgba(255, 185, 96, .42) 53% 59%, transparent 60%),
        repeating-conic-gradient(from 8deg, rgba(255, 173, 70, .48) 0 8deg, transparent 8deg 18deg);
    border-radius: 50%;
    transform: rotate(-18deg);
    pointer-events: none
}

.projects-showcase .section-head {
    max-width: 760px;
    margin-bottom: 46px
}

.projects-showcase .section-head h2 {
    color: #9f1d20;
    font-size: clamp(2.1rem, 4vw, 3.25rem);
    font-weight: 900;
    text-transform: capitalize;
    letter-spacing: 0;
    margin-bottom: 18px
}

.projects-showcase .section-head p {
    color: #344052;
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    font-weight: 500;
    line-height: 1.55
}

.projects-grid {
    gap: clamp(24px, 3vw, 34px);
    align-items: start
}

#du-an .project-card {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    transition: transform .28s ease
}

#du-an .project-card:hover {
    transform: translateY(-6px);
    box-shadow: none
}

.project-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.34;
    border-radius: 0 26px 26px 0;
    box-shadow: 0 22px 48px rgba(15, 23, 42, .16);
    transition: box-shadow .32s ease
}

.project-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform .4s ease, filter .4s ease
}

#du-an .project-card:hover .project-media img {
    transform: scale(1.06);
    filter: saturate(1.08)
}

.project-media-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 88px;
    display: flex;
    align-items: center;
    padding: 18px 22px;
    background: rgba(255, 255, 255, .68);
    backdrop-filter: blur(10px) saturate(120%);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    transition: background .32s ease, color .32s ease
}

.project-card.is-featured .project-media-title {
    background: linear-gradient(135deg, rgba(255, 101, 24, .94), rgba(232, 169, 31, .94));
    color: #fff
}

#du-an .project-card:hover .project-media {
    box-shadow: 0 28px 58px rgba(255, 112, 26, .28)
}

#du-an .project-card:hover .project-media-title {
    background: linear-gradient(135deg, rgba(255, 101, 24, .94), rgba(232, 169, 31, .94));
    color: #fff
}

#du-an .project-card:hover .project-more {
    color: #ff6a1a
}

.project-media-title h3 {
    margin: 0;
    color: inherit;
    font-size: clamp(1.05rem, 1.45vw, 1.35rem);
    font-weight: 900;
    line-height: 1.35
}

.project-summary {
    display: -webkit-box;
    min-height: 62px;
    margin: 20px 0 12px;
    overflow: hidden;
    color: #4b5563;
    font-size: clamp(.96rem, 1.2vw, 1.12rem);
    font-weight: 600;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2
}

.project-more {
    color: #4b5563;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .28s ease
}

.project-more:hover {
    color: #c2410c
}

.projects-more-actions {
    display: flex;
    justify-content: center;
    margin-top: clamp(34px, 5vw, 56px)
}

.projects-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    min-height: 52px;
    padding: 14px 28px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #ff5d2e, #ffb21d);
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 18px 38px rgba(255, 102, 24, .28);
    transition: transform .28s ease, box-shadow .28s ease, filter .28s ease
}

.projects-more-btn:hover {
    transform: translateY(-4px);
    filter: saturate(1.08);
    box-shadow: 0 24px 48px rgba(255, 102, 24, .36)
}

@media (max-width: 768px) {
    .projects-showcase::before {
        left: -160px;
        top: -150px;
        opacity: .42
    }

    .project-media {
        border-radius: 0 22px 22px 0
    }

    .project-media-title {
        min-height: 76px;
        padding: 16px 18px
    }
}

/* Spec frames: fields, accordion, shop, project, library */
.why {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        linear-gradient(115deg, rgba(255, 134, 39, .13) 0 16%, transparent 16% 100%),
        radial-gradient(circle at 8% 2%, rgba(255, 150, 45, .4), transparent 27%),
        radial-gradient(circle at 92% 88%, rgba(255, 179, 56, .18), transparent 32%),
        linear-gradient(110deg, #a84613 0%, #8d3b14 46%, #6d2d13 100%);
    color: #fff
}

.why::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(30deg, rgba(255, 188, 86, .14) 12%, transparent 12.5%, transparent 87%, rgba(255, 188, 86, .14) 87.5%, rgba(255, 188, 86, .14)),
        linear-gradient(150deg, rgba(255, 188, 86, .14) 12%, transparent 12.5%, transparent 87%, rgba(255, 188, 86, .14) 87.5%, rgba(255, 188, 86, .14));
    background-size: 46px 80px;
    opacity: .22;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, .65), transparent 42%, rgba(0, 0, 0, .55))
}

.why::after {
    content: "";
    position: absolute;
    right: -18vw;
    top: -18%;
    z-index: -1;
    width: min(720px, 56vw);
    height: min(540px, 44vw);
    background: linear-gradient(135deg, rgba(255, 171, 58, .22), rgba(255, 255, 255, .08));
    clip-path: polygon(14% 0, 100% 18%, 82% 100%, 0 72%);
    transform: perspective(900px) rotateX(62deg) rotateZ(-13deg);
    box-shadow: -42px 44px 80px rgba(50, 18, 4, .25)
}

.why-layout {
    display: grid;
    grid-template-columns: minmax(320px, .78fr) minmax(520px, 1.22fr);
    gap: clamp(42px, 6vw, 82px);
    align-items: start
}

.why-intro h2 {
    color: #ff7c28;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    margin-bottom: 16px;
    letter-spacing: 0
}

.why-intro p {
    color: rgba(255, 255, 255, .94);
    font-weight: 800;
    max-width: 520px;
    margin-bottom: 42px
}

.why-main-image {
    width: 100%;
    height: clamp(260px, 33vw, 360px);
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 28px 70px rgba(34, 12, 3, .4)
}

.why-panels {
    display: grid;
    gap: 0
}

.why-panel {
    border: 0;
    border-bottom: 1px solid rgba(255, 219, 166, .2);
    background: transparent;
    box-shadow: none;
    overflow: visible
}

.why-panel summary {
    list-style: none;
    display: grid;
    grid-template-columns: 52px 1fr 46px;
    align-items: center;
    gap: 0;
    min-height: 92px;
    padding: 20px 0;
    cursor: pointer;
    color: #fff
}

.why-panel summary::-webkit-details-marker {
    display: none
}

.why-index {
    color: #ff6524;
    font-size: 1.05rem;
    font-weight: 900
}

.why-panel summary strong {
    font-size: clamp(1.08rem, 1.8vw, 1.35rem);
    line-height: 1.28;
    color: #fff
}

.why-panel summary b {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    justify-self: end;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6924, #ffc21c);
    box-shadow: 0 12px 24px rgba(64, 20, 3, .24)
}

.why-panel summary b::before {
    content: "";
    width: 9px;
    height: 9px;
    border-right: 2px solid #111;
    border-bottom: 2px solid #111;
    transform: rotate(45deg) translateY(-2px)
}

.why-panel[open] summary b {
    opacity: 0
}

.why-panel-body {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: clamp(24px, 4vw, 58px);
    align-items: start;
    padding: 0 0 30px 52px
}

.why-panel-body p {
    margin: 0;
    color: rgba(255, 255, 255, .9);
    font-weight: 800;
    max-width: 560px
}

.why-panel-body img {
    width: min(225px, 22vw);
    aspect-ratio: 1.22;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 22px 46px rgba(24, 8, 2, .28);
    transition: transform .32s ease, box-shadow .32s ease
}

.why-panel[open] .why-panel-body {
    cursor: pointer;
    animation: whyPanelBodyReveal .72s cubic-bezier(.2, .8, .2, 1) both
}

.why-panel[open] .why-panel-body p {
    animation: whyPanelBodyItemIn .82s cubic-bezier(.2, .8, .2, 1) .08s both
}

.why-panel[open] .why-panel-body img {
    animation: whyPanelBodyImageIn .88s cubic-bezier(.2, .8, .2, 1) .14s both
}

.why-panel[open] .why-panel-body:hover img {
    transform: scale(1.035);
    box-shadow: 0 28px 56px rgba(24, 8, 2, .36)
}

@keyframes whyPanelBodyReveal {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0)
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

@keyframes whyPanelBodyItemIn {
    from {
        opacity: 0;
        transform: translate3d(0, 18px, 0)
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

@keyframes whyPanelBodyImageIn {
    from {
        opacity: 0;
        transform: translate3d(26px, 12px, 0) scale(.94)
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1)
    }
}

#linh-vuc-hoat-dong {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    perspective: 1200px;
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 215, 133, .42), transparent 28%),
        radial-gradient(circle at 88% 20%, rgba(255, 123, 32, .4), transparent 30%),
        radial-gradient(circle at 72% 88%, rgba(107, 29, 4, .5), transparent 36%),
        linear-gradient(126deg, #2a0a03 0%, #7c2608 34%, #e86616 68%, #ffb34b 100%);
    color: #fff
}

#linh-vuc-hoat-dong::before,
#linh-vuc-hoat-dong::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: -1;
    transform-style: preserve-3d
}

#linh-vuc-hoat-dong::before {
    right: -12%;
    top: 2%;
    width: min(820px, 62vw);
    height: min(520px, 42vw);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .34), rgba(255, 196, 86, .1) 42%, rgba(255, 96, 24, .26)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .14) 0 1px, transparent 1px 48px);
    clip-path: polygon(14% 0, 100% 16%, 84% 100%, 0 72%);
    transform: rotateX(62deg) rotateZ(-13deg) translateZ(-20px);
    box-shadow: -42px 46px 90px rgba(45, 10, 2, .42), inset 0 1px 0 rgba(255, 255, 255, .48);
    opacity: .9
}

#linh-vuc-hoat-dong::after {
    left: -10%;
    bottom: -14%;
    width: min(820px, 64vw);
    height: min(390px, 38vw);
    background:
        radial-gradient(circle at 16% 30%, rgba(255, 224, 140, .24), transparent 28%),
        linear-gradient(145deg, rgba(255, 152, 52, .38), rgba(86, 22, 4, .06));
    clip-path: polygon(0 24%, 74% 0, 100% 70%, 18% 100%);
    transform: rotateX(66deg) rotateZ(9deg) translateZ(-45px);
    box-shadow: 30px -24px 80px rgba(78, 22, 2, .25);
    opacity: .78
}

#linh-vuc-hoat-dong .section-head,
#linh-vuc-hoat-dong .card-grid {
    position: relative;
    z-index: 1
}

#linh-vuc-hoat-dong .section-head {
    max-width: 860px
}

#linh-vuc-hoat-dong .eyebrow {
    display: none
}

#linh-vuc-hoat-dong h2 {
    color: #fff;
    text-shadow: 0 18px 36px rgba(61, 12, 2, .34)
}

#linh-vuc-hoat-dong p {
    color: rgba(255, 244, 228, .88)
}

#linh-vuc-hoat-dong .field-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(31, 12, 7, .84), rgba(119, 37, 9, .68));
    border: 1px solid rgba(255, 206, 126, .28);
    box-shadow: 0 24px 54px rgba(49, 12, 2, .34), inset 0 1px 0 rgba(255, 255, 255, .12);
    backdrop-filter: blur(8px) saturate(118%);
    -webkit-backdrop-filter: blur(8px) saturate(118%);
    transform: translateZ(0);
    transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease
}

#linh-vuc-hoat-dong .field-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .18), transparent 34%, rgba(255, 177, 76, .16));
    opacity: .55;
    pointer-events: none
}

#linh-vuc-hoat-dong .field-card:hover {
    transform: translateY(-8px) rotateX(2deg);
    border-color: rgba(255, 218, 151, .72);
    box-shadow: 0 34px 76px rgba(55, 13, 2, .46), inset 0 1px 0 rgba(255, 255, 255, .2)
}

#linh-vuc-hoat-dong .field-card img {
    filter: saturate(1.12) contrast(1.04);
    opacity: .88
}

#linh-vuc-hoat-dong .field-card span {
    position: relative;
    z-index: 1;
    color: #fff;
    text-shadow: 0 8px 18px rgba(0, 0, 0, .32)
}

#linh-vuc-hoat-dong .field-card:hover span {
    color: #ffd38a
}

.shop-hero,
.library-hero,
.project-hero {
    background: linear-gradient(rgba(7, 11, 18, .72), rgba(7, 11, 18, .72)), url('https://images.unsplash.com/photo-1519501025264-65ba15a82390?auto=format&fit=crop&w=1800&q=85') center/cover
}

.shop-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 32px
}

.shop-sidebar {
    display: grid;
    gap: 18px;
    align-self: start;
    position: sticky;
    top: 210px
}

.shop-search {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden
}

.shop-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    padding: 13px;
    font: inherit
}

.shop-search button,
.library-search button {
    border: 0;
    background: #c0392b;
    color: #fff;
    padding: 0 18px;
    font-weight: 900
}

.tree-box {
    border: 1px solid #ececec;
    border-radius: 8px;
    background: #fff;
    padding: 18px;
    box-shadow: var(--shadow-card)
}

.tree-box h2 {
    font-size: 1rem;
    color: #c0392b
}

.tree-box button,
.tree-box a {
    display: block;
    width: 100%;
    border: 0;
    background: #fff;
    text-align: left;
    padding: 10px 0;
    color: #374151;
    font-weight: 700
}

.tree-box .is-open {
    color: #c0392b
}

.tree-box a {
    padding-left: 18px;
    font-weight: 500;
    color: #6b7280
}

.shop-title h2 {
    font-size: 2rem
}

.shop-title span {
    display: block;
    width: 90px;
    height: 4px;
    background: #e67e22;
    border-radius: 999px
}

.category-desc {
    margin: 18px 0;
    padding: 16px;
    border: 1px solid #eee;
    border-radius: 8px
}

.category-desc summary {
    font-weight: 800;
    color: #c0392b;
    cursor: pointer
}

.shop-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin: 20px 0
}

.shop-filter select {
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px
}

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

.product-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-card)
}

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

.product-card div {
    padding: 16px
}

.product-card a {
    color: #c0392b;
    font-weight: 800
}

.library-head {
    text-align: center;
    max-width: 900px
}

.library-head h2 span {
    color: #e04a1f
}

.library-search {
    display: flex;
    margin-top: 24px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-card)
}

.library-search input {
    flex: 1;
    border: 0;
    padding: 16px;
    font: inherit
}

.table-wrap {
    overflow: auto
}

.download-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: var(--shadow-card);
    border-radius: 8px;
    overflow: hidden
}

.download-table th {
    background: #c0392b;
    color: #fff;
    text-align: left;
    padding: 16px;
    white-space: nowrap
}

.download-table td {
    padding: 16px;
    border-bottom: 1px solid #eee
}

.pdf-icon {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: #ffe8e3;
    color: #c0392b;
    font-weight: 900;
    margin-right: 10px
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #c0392b;
    font-weight: 900
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 36px
}

.article-main {
    background: #fff;
    border-radius: 8px;
    padding: 34px;
    box-shadow: var(--shadow-card)
}

.post-badge {
    display: inline-flex;
    background: #c0392b;
    color: #fff;
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 900;
    font-size: .82rem
}

.article-main h2 {
    font-size: 2.45rem;
    margin-top: 18px
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    color: #6b7280;
    font-weight: 700;
    margin: 18px 0
}

.logo-dot {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f47b20;
    color: #fff
}

.article-cover {
    height: 420px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    margin: 24px 0
}

.article-main li {
    margin: 8px 0
}

.article-sidebar {
    display: grid;
    gap: 22px;
    align-self: start;
    position: sticky;
    top: 210px
}

.article-sidebar section {
    background: #151923;
    color: #fff;
    border-radius: 8px;
    padding: 20px
}

.article-sidebar h2 {
    color: #fff;
    font-size: 1rem
}

.article-sidebar details {
    border-bottom: 1px solid #333b4c;
    padding: 10px 0
}

.article-sidebar summary {
    cursor: pointer;
    font-weight: 800
}

.article-sidebar a {
    display: block;
    color: #d7dce8;
    padding: 8px 0
}

.solution-row {
    display: flex !important;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid #333b4c
}

.solution-row b {
    background: #c0392b;
    border-radius: 999px;
    min-width: 28px;
    height: 24px;
    text-align: center
}

.phone-float {
    position: fixed;
    left: 24px;
    bottom: 28px;
    z-index: 70;
    background: #c0392b;
    color: #fff;
    border-radius: 999px;
    padding: 14px 20px;
    font-weight: 900;
    box-shadow: var(--shadow-hover)
}

.zalo-widget {
    position: fixed;
    right: 24px;
    bottom: 104px;
    z-index: 70;
    background: #0ea5e9;
    color: #fff;
    border-radius: 50%;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    font-weight: 900;
    box-shadow: var(--shadow-hover)
}

@media (max-width:1024px) {

    .why-layout,
    .shop-layout,
    .article-layout {
        grid-template-columns: 1fr
    }

    .shop-sidebar,
    .article-sidebar {
        position: static
    }

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

    .why-main-image {
        height: 360px
    }

    .why-panel-body {
        grid-template-columns: 1fr;
        padding-left: 0
    }

    .why-panel-body img {
        width: min(280px, 100%)
    }
}

@media (max-width:640px) {
    .why {
        padding: 64px 0
    }

    .why-layout {
        gap: 30px
    }

    .why-intro h2 {
        font-size: 2.1rem
    }

    .why-intro p {
        margin-bottom: 28px
    }

    .why-panel summary {
        grid-template-columns: 40px 1fr 38px;
        min-height: 78px
    }

    .why-panel summary b {
        width: 36px;
        height: 36px
    }

    .why-panel-body {
        padding-bottom: 24px
    }

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

    .shop-filter,
    .library-search {
        display: grid
    }

    .download-table {
        min-width: 760px
    }

    .article-main {
        padding: 22px
    }

    .article-main h2 {
        font-size: 1.8rem
    }

    .article-cover {
        height: 260px
    }

    .phone-float {
        left: 14px;
        bottom: 20px;
        padding: 12px 14px
    }

    .zalo-widget {
        right: 16px;
        bottom: 92px
    }
}

/* EasyNet refinements */
.site-header.scrolled {
    top: 38px;
    background: rgba(6, 9, 15, .58);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .22);
    backdrop-filter: blur(16px) saturate(130%);
    -webkit-backdrop-filter: blur(16px) saturate(130%);
}

.site-header.scrolled::before {
    opacity: .35;
}

.site-header.scrolled .nav-item>a {
    color: #fff;
    text-shadow: 0 1px 10px rgba(0, 0, 0, .28);
}

.site-header.scrolled .logo__burst::after {
    background: rgba(6, 9, 15, .72);
}

.site-header.scrolled .search-btn::before {
    border-color: #fff;
}

.site-header.scrolled .search-btn::after {
    background: #fff;
}

.nav-item>a {
    display: flex;
    align-items: center;
    gap: 7px;
    line-height: 1;
    white-space: nowrap;
}

.nav-item>a>span:first-child {
    display: inline-flex;
    align-items: center;
}

.nav-arrow {
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    opacity: .86;
    transition: transform .2s ease, opacity .2s ease;
}

.nav-item:hover .nav-arrow,
.nav-item.open .nav-arrow {
    transform: rotate(225deg);
    margin-top: 4px;
    opacity: 1;
}

.clients-marquee {
    padding: 22px 0;
}

.clients-marquee .marquee__track {
    align-items: stretch;
    gap: 16px;
}

.client-card {
    width: 196px;
    min-width: 196px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(26, 86, 219, .12);
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--shadow-card);
}

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

.client-card figcaption {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    color: var(--neutral-900);
    font-weight: 800;
    font-size: .9rem;
    text-align: center;
}

.tech-head {
    margin-top: 54px;
}

.tech-logo-grid {
    align-items: stretch;
}

.tech-marquee {
    margin-top: 18px;
    padding: 20px 0;
}

.tech-marquee .marquee__track {
    align-items: stretch;
    gap: 16px;
    animation-duration: 32s;
}

.tech-marquee .tech-logo-grid {
    display: flex;
    grid-template-columns: none;
    min-width: max-content;
}

.tech-marquee .tech-logo {
    flex: 0 0 178px;
    min-width: 178px;
}

.tech-logo {
    display: grid;
    place-items: center;
    gap: 10px;
    min-height: 104px;
    border: 1px solid var(--neutral-100);
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--shadow-card);
    padding: 16px 12px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.tech-logo:hover {
    transform: translateY(-3px);
    border-color: rgba(26, 86, 219, .26);
    box-shadow: var(--shadow-hover);
}

.tech-logo img {
    width: 82px;
    height: 34px;
    object-fit: contain;
}

.tech-logo span {
    display: block;
    min-width: 0;
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--neutral-700);
    font-size: .82rem;
    line-height: 1.2;
    text-align: center;
}

.tree-box {
    padding: 16px;
}

.tree-box h2 {
    margin-bottom: 12px;
}

.tree-group {
    border-top: 1px solid #f0f0f0;
}

.tree-group:first-of-type {
    border-top: 0;
}

.tree-group summary {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 22px;
    align-items: center;
    gap: 10px;
    padding: 11px 0;
    color: #374151;
    font-weight: 800;
    cursor: pointer;
}

.tree-group summary::-webkit-details-marker {
    display: none;
}

.tree-group summary i {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    position: relative;
    background: #fff1e8;
}

.tree-group summary i::before,
.tree-group summary i::after {
    content: "";
    position: absolute;
    left: 5px;
    right: 5px;
    top: 8px;
    height: 2px;
    border-radius: 999px;
    background: #c0392b;
}

.tree-group summary i::after {
    transform: rotate(90deg);
    transition: transform .2s ease;
}

.tree-group[open] summary {
    color: #c0392b;
}

.tree-group[open] summary i::after {
    transform: rotate(0deg);
}

.tree-children {
    display: grid;
    gap: 2px;
    padding: 0 0 10px 12px;
    border-left: 2px solid #ffe0d3;
    margin-left: 8px;
}

.tree-box .tree-children a {
    display: block;
    padding: 7px 0 7px 12px;
    color: #6b7280;
    font-weight: 600;
    border-radius: 6px;
}

.tree-box .tree-children a:hover {
    color: #c0392b;
    background: #fff7f2;
}

@media (max-width: 1024px) {
    .site-header.scrolled {
        top: 34px;
        background: rgba(9, 13, 21, .74);
    }

    .site-header.scrolled .nav-item>a {
        color: #fff;
    }

    .nav-item>a {
        justify-content: space-between;
    }
}

@media (max-width: 640px) {
    .client-card {
        width: 166px;
        min-width: 166px;
    }

    .client-card img {
        height: 92px;
    }
}

/* EasyNet footer redesign */
.footer-easynet {
    position: relative;
    overflow: hidden;
    padding-top: 46px;
    color: #fff;
    isolation: isolate;
    background:
        linear-gradient(90deg, rgba(236, 103, 30, 0.96) 0%, rgba(165, 76, 25, 0.96) 42%, rgba(91, 37, 15, 0.98) 100%);
}

.footer-easynet::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(153deg, rgba(255, 255, 255, 0.13) 0 18%, transparent 18% 100%) 0 0 / 260px 140px,
        linear-gradient(27deg, transparent 0 49%, rgba(0, 0, 0, 0.22) 49% 63%, transparent 63% 100%) 0 0 / 260px 140px,
        linear-gradient(153deg, transparent 0 43%, rgba(255, 255, 255, 0.08) 43% 68%, transparent 68% 100%) 130px 0 / 260px 140px;
    opacity: 0.85;
}

.footer-easynet::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(255, 115, 28, 0.1), rgba(30, 11, 5, 0.45));
    pointer-events: none;
}

.footer-easynet a {
    color: inherit;
    text-decoration: none;
}

.footer-easynet * {
    text-transform: none;
}

.footer-logo-row {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.footer-brand img {
    display: block;
    width: min(390px, 68vw);
    height: auto;
}

.footer-rule {
    position: relative;
    z-index: 1;
    height: 1px;
    margin-top: 28px;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.72);
}

.footer-main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(260px, 1.45fr) minmax(130px, 0.75fr) minmax(180px, 0.95fr) minmax(250px, 1.25fr);
    gap: clamp(24px, 3.2vw, 52px);
    padding-bottom: 54px;
}

.footer-main h2 {
    margin: 0 0 22px;
    color: #ff7b36;
    font-size: clamp(1rem, 1.15vw, 1.18rem);
    font-weight: 900;
    line-height: 1.2;
}

.footer-contact {
    display: grid;
    gap: 17px;
}

.footer-contact__item {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    align-items: center;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.55;
}

.footer-contact__item span:last-child {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
}

.footer-contact__item span:last-child br {
    display: none;
}

.footer-contact__item strong {
    color: #fff;
    font-weight: 900;
}

.footer-contact__icon {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    color: #c65d22;
    box-shadow: 0 8px 22px rgba(69, 25, 7, 0.26);
}

.footer-contact__icon svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links a {
    display: inline-flex;
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.28;
    transition: color 0.22s ease, transform 0.22s ease;
}

.footer-links a:hover,
.footer-contact__item:hover {
    color: #fff3dc;
}

.footer-links a:hover {
    transform: translateX(4px);
}

.footer-map iframe {
    display: block;
    width: 100%;
    min-height: 200px;
    border: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.24);
    box-shadow: 0 20px 46px rgba(40, 13, 3, 0.26);
}


.footer-easynet .copyright {
    position: relative;
    z-index: 1;
    border-top: 0;
    background: #eeeeee;
    color: #a50808;
    padding: 10px 16px;
    text-align: center;
    font-size: 1.08rem;
    font-weight: 900;
    line-height: 1.35;
}

.phone-float {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    left: 16px;
    bottom: 18px;
    padding: 9px 13px;
    background: #ef2d2a;
    color: #fff;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 900;
    box-shadow: 0 18px 36px rgba(123, 19, 16, 0.3);
}

.phone-float::before {
    content: "";
    width: 12px;
    height: 12px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.5 3 3.6 5.1 6.6 6.6l2.2-2.2c.3-.3.8-.4 1.2-.3 1.3.4 2.6.6 4 .6.7 0 1.2.5 1.2 1.2v3.5c0 .7-.5 1.2-1.2 1.2C10.4 22 2 13.6 2 3.4 2 2.7 2.5 2 3.2 2h3.6C7.5 2 8 2.5 8 3.2c0 1.4.2 2.8.6 4 .1.4 0 .9-.3 1.2l-2.1 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.zalo-widget {
    right: 20px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    background: #2e7af0;
    box-shadow: 0 18px 36px rgba(20, 72, 160, 0.34);
}

.back-top {
    right: 22px;
    bottom: 90px;
    background: linear-gradient(135deg, #ff4d2d, #ff8d24);
    color: #fff;
    border: 0;
    box-shadow: 0 16px 36px rgba(120, 38, 10, 0.28);
}


@media (max-width: 1100px) {
    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .footer-easynet {
        padding-top: 34px;
    }

    .footer-brand img {
        width: min(280px, 78vw);
    }

    .footer-rule {
        margin-top: 20px;
        margin-bottom: 28px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 38px;
    }

    .footer-contact__item,
    .footer-links a {
        font-size: 0.95rem;
    }

    .footer-map iframe {
        min-height: 180px;
    }

    .footer-easynet .copyright {
        padding-bottom: 72px;
        font-size: 0.95rem;
    }

    .phone-float {
        left: 10px;
        bottom: 12px;
        padding: 8px 10px;
        font-size: 0.78rem;
    }

    .zalo-widget {
        right: 14px;
        bottom: 14px;
        width: 52px;
        height: 52px;
        font-size: 0.86rem;
    }

    .back-top {
        right: 16px;
        bottom: 76px;
    }
}

/* EasyNet mega navigation */
.mega {
    max-height: calc(100vh - 142px);
    overflow-y: auto;
    overscroll-behavior: contain;
}

.mega--me,
.mega--ict,
.mega--smart {
    width: min(1320px, calc(100% - 32px));
}

.mega--me .mega-columns,
.mega--ict .mega-columns,
.mega--smart .mega-columns {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px 20px;
    align-items: start;
}

.mega--me section,
.mega--ict section,
.mega--smart section {
    min-width: 0;
    padding-left: 14px;
    border-left: 2px solid rgba(237, 104, 33, 0.16);
}

.mega--me h3,
.mega--ict h3,
.mega--smart h3 {
    margin-bottom: 8px;
    color: var(--neutral-900);
    font-size: 0.92rem;
    font-weight: 900;
    line-height: 1.32;
}

.mega--me a,
.mega--ict a,
.mega--smart a {
    padding: 3px 0;
    color: var(--neutral-600);
    font-size: 0.86rem;
    line-height: 1.32;
}

.mega--me .mega-more,
.mega--ict .mega-more,
.mega--smart .mega-more {
    display: inline-flex;
    align-items: center;
    margin-top: 4px;
    color: var(--demo-orange);
    font-weight: 900;
}

.mega--me .mega-more::after,
.mega--ict .mega-more::after,
.mega--smart .mega-more::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 7px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
}

@media (max-width: 1024px) {
    .mega {
        max-height: none;
        overflow: visible;
    }

    .mega--me .mega-columns,
    .mega--ict .mega-columns,
    .mega--smart .mega-columns {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .mega--me section,
    .mega--ict section,
    .mega--smart section {
        padding-left: 12px;
    }
}

.mega--projects .mega-grid {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    max-width: 760px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .mega--projects .mega-grid {
        grid-template-columns: 1fr;
        max-width: none;
    }
}

/* EasyNet about page redesign */
.about-hero-v2 {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 430px;
    padding: 120px 0 96px;
    overflow: hidden;
    text-align: center;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(2, 27, 45, 0.28), rgba(2, 18, 32, 0.62)),
        linear-gradient(90deg, rgba(6, 62, 92, 0.8), rgba(6, 24, 43, 0.72)),
        url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=1900&q=82") center 42% / cover;
}

.about-hero-v2::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, transparent 0 17%, rgba(108, 220, 255, 0.22) 17.2% 17.55%, transparent 17.8% 100%),
        linear-gradient(42deg, transparent 0 58%, rgba(108, 220, 255, 0.2) 58.2% 58.55%, transparent 58.8% 100%),
        radial-gradient(circle at 18% 26%, rgba(153, 235, 255, 0.3) 0 3px, transparent 4px),
        radial-gradient(circle at 82% 34%, rgba(153, 235, 255, 0.24) 0 3px, transparent 4px);
    pointer-events: none;
}

.about-hero-v2 .container {
    position: relative;
    z-index: 1;
}

.about-hero-v2 h1 {
    margin: 0 0 8px;
    color: #ff8618;
    font-size: clamp(2.8rem, 5vw, 4.3rem);
    font-weight: 900;
    text-transform: uppercase;
}

.about-breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(1.05rem, 1.5vw, 1.35rem);
    font-weight: 700;
}

.about-breadcrumb span:nth-child(2) {
    color: rgba(255, 255, 255, 0.42);
}

.about-anchor-nav {
    position: sticky;
    top: 96px;
    z-index: 42;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    background: linear-gradient(90deg, #b5561b 0%, #7a2f0e 100%);
}

.about-anchor-nav .container {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
}

.about-anchor-nav a {
    position: relative;
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    color: rgba(255, 255, 255, 0.78);
    text-align: center;
    font-size: clamp(0.95rem, 1.15vw, 1.14rem);
    font-weight: 900;
}

.about-anchor-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: transparent;
}

.about-anchor-nav a:hover,
.about-anchor-nav a.is-active {
    color: #ff6840;
}

.about-anchor-nav a.is-active::after {
    background: #ff6840;
}

.about-page-v2 {
    background: #fff;
}

.about-network-bg {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(100deg, #ab4d16 0%, #6a260b 100%);
}

.about-network-bg::before {
    content: "";
    position: absolute;
    inset: -12% -5%;
    opacity: 0.32;
    background:
        radial-gradient(circle at 8% 72%, rgba(255, 255, 255, 0.48) 0 9px, transparent 10px),
        radial-gradient(circle at 24% 8%, rgba(255, 255, 255, 0.42) 0 9px, transparent 10px),
        radial-gradient(circle at 45% 24%, rgba(255, 255, 255, 0.32) 0 9px, transparent 10px),
        radial-gradient(circle at 72% 58%, rgba(255, 255, 255, 0.36) 0 9px, transparent 10px),
        radial-gradient(circle at 92% 32%, rgba(255, 255, 255, 0.36) 0 9px, transparent 10px),
        linear-gradient(26deg, transparent 0 16%, rgba(255, 255, 255, 0.26) 16.15% 16.32%, transparent 16.48% 100%),
        linear-gradient(134deg, transparent 0 31%, rgba(255, 255, 255, 0.22) 31.1% 31.28%, transparent 31.45% 100%),
        linear-gradient(7deg, transparent 0 63%, rgba(255, 255, 255, 0.2) 63.1% 63.25%, transparent 63.42% 100%);
    pointer-events: none;
}

.about-overview {
    padding: clamp(80px, 8vw, 120px) 0;
}

.about-overview__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
    gap: clamp(44px, 6vw, 90px);
    align-items: center;
}

.about-overview__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
}

.about-overview__brand img {
    width: min(520px, 100%);
    filter: brightness(0) invert(1);
}

.about-overview__copy h2,
.about-values-section h2,
.about-history-section h2,
.about-events-section h2 {
    color: #ff8921;
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 900;
}

.about-overview__copy p {
    max-width: 860px;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    font-weight: 700;
    line-height: 1.75;
}

.about-profile-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    margin-top: 28px;
    padding: 0 13px 0 26px;
    border-radius: 999px;
    color: #101010;
    background: linear-gradient(90deg, #ff5c2b 0%, #ff8f1f 55%, #ffd72f 100%);
    font-weight: 900;
    box-shadow: 0 18px 36px rgba(53, 16, 4, 0.25);
}

.about-profile-btn svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-profile-btn b {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    font-size: 1.8rem;
    line-height: 1;
}

.about-values-section {
    padding: 82px 0 92px;
}

.about-values-section .section-head,
.about-history-section .section-head,
.about-events-section .section-head {
    position: relative;
    z-index: 1;
}

.about-values-section .section-head p,
.about-history-section .section-head p,
.about-events-section .section-head p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.08rem;
    font-weight: 800;
}

.about-value-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(22px, 3vw, 34px);
}

.about-v2-card {
    min-height: 360px;
    padding: clamp(28px, 3vw, 42px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.about-v2-card:nth-child(2) {
    border-color: rgba(255, 153, 28, 0.86);
}

.about-v2-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    color: #ff7d2b;
}

.about-v2-icon svg {
    width: 54px;
    height: 54px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-v2-card h3 {
    color: #ff6935;
    font-size: clamp(1.45rem, 2vw, 1.85rem);
    font-weight: 900;
}

.about-v2-card p,
.about-v2-card li {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 750;
    line-height: 1.68;
}

.about-v2-card ul {
    display: grid;
    gap: 12px;
    padding: 18px 0 0;
    margin: 18px 0 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.about-v2-card li {
    position: relative;
    padding-left: 28px;
}

.about-v2-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.42em;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff5e2d, #ffa51f);
}

.about-fields-section {
    position: relative;
    overflow: hidden;
    padding: 78px 0 82px;
    background: #f7f7f7;
}

.about-fields-section .section-head h2,
.about-clients-section .section-head h2 {
    color: #a31218;
    font-size: clamp(2.1rem, 3.4vw, 3.25rem);
    font-weight: 900;
}

.about-fields-section .section-head p,
.about-clients-section .section-head p {
    color: #2a3547;
    font-weight: 650;
}

.about-watermark {
    position: absolute;
    left: -70px;
    top: -110px;
    width: 330px;
    height: 330px;
    opacity: 0.28;
    background: repeating-conic-gradient(from -20deg, #ff8f1d 0 10deg, transparent 10deg 22deg);
    border-radius: 50%;
}

.about-watermark::after {
    content: "";
    position: absolute;
    inset: 86px;
    border-radius: 50%;
    background: #f7f7f7;
}

.about-field-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.about-field-tabs a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 68px;
    padding: 0 26px;
    border-radius: 24px;
    color: #3d4554;
    background: #fff;
    font-weight: 900;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.about-field-tabs a.is-active {
    color: #111;
    background: linear-gradient(135deg, #ff5d2e 0%, #ff9b18 70%, #ffc326 100%);
    box-shadow: 0 20px 34px rgba(238, 100, 23, 0.26);
}

.about-tab-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 2px solid currentColor;
}

.about-fields-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
    gap: clamp(34px, 5vw, 64px);
    align-items: start;
}

.about-field-image {
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.14);
}

.about-field-image img {
    width: 100%;
    aspect-ratio: 1.12 / 1;
    object-fit: cover;
}

.about-field-list {
    display: grid;
    gap: 14px;
    max-height: 500px;
    overflow: auto;
    padding-right: 12px;
}

.about-field-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 14px 18px;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    color: #161616;
    background: #fff;
    font-size: 1.05rem;
    font-weight: 900;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}

.about-field-list a span {
    width: 6px;
    height: 32px;
    border-radius: 999px;
    background: #d3d3d3;
}

.about-history-section {
    padding: 76px 0 82px;
}

.about-history-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: clamp(34px, 5vw, 70px);
    align-items: stretch;
}

.about-timeline {
    position: relative;
    display: grid;
    align-content: space-between;
    min-height: 360px;
    padding: 20px 0 20px 38px;
    border-left: 4px solid rgba(255, 255, 255, 0.46);
    border-right: 4px solid #ff841b;
}

.about-timeline a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    color: rgba(255, 255, 255, 0.44);
    font-size: 1.35rem;
    font-weight: 900;
}

.about-timeline a span {
    position: absolute;
    left: -50px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.44);
}

.about-timeline a.is-active {
    color: #fff;
    font-size: 1.65rem;
}

.about-timeline a.is-active span {
    left: -53px;
    width: 22px;
    height: 22px;
    background: #fff;
}

.about-history-card {
    padding: clamp(26px, 3vw, 34px);
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 16px;
    background: rgba(60, 19, 2, 0.16);
}

.about-history-card h3 {
    color: #fff;
    font-size: clamp(1.6rem, 2.4vw, 2rem);
    font-weight: 900;
}

.about-history-card h3 span {
    color: #ff8b1f;
}

.about-history-card p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 800;
}

.about-history-card img {
    width: 100%;
    margin-top: 22px;
    aspect-ratio: 2.35 / 1;
    object-fit: cover;
    border-radius: 8px;
}

.about-clients-section {
    padding: 80px 0;
    background: #fff;
}

.about-client-grid,
.about-event-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.about-client-card,
.about-event-card {
    min-height: 170px;
    padding: 28px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

.about-client-card h3,
.about-event-card h3 {
    color: #a31218;
    font-size: 1.22rem;
    font-weight: 900;
}

.about-client-card p,
.about-event-card p {
    color: #4b5563;
    font-weight: 700;
}

.about-events-section {
    padding: 78px 0 86px;
}

.about-event-grid {
    position: relative;
    z-index: 1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-event-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.about-event-card h3 {
    color: #ff8921;
}

.about-event-card p {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1100px) {
    .about-anchor-nav {
        top: 82px;
    }

    .about-anchor-nav .container {
        grid-template-columns: repeat(5, minmax(160px, 1fr));
        overflow-x: auto;
    }

    .about-overview__grid,
    .about-fields-layout,
    .about-history-layout {
        grid-template-columns: 1fr;
    }

    .about-value-grid,
    .about-client-grid,
    .about-event-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-overview__brand {
        min-height: 220px;
    }

    .about-overview__brand img {
        max-width: 420px;
    }
}

@media (max-width: 700px) {
    .about-hero-v2 {
        min-height: 300px;
        padding: 84px 0 64px;
    }

    .about-anchor-nav {
        position: relative;
        top: auto;
    }

    .about-anchor-nav a {
        min-height: 50px;
        font-size: 0.88rem;
    }

    .about-overview,
    .about-values-section,
    .about-fields-section,
    .about-history-section,
    .about-clients-section,
    .about-events-section {
        padding: 56px 0;
    }

    .about-overview__copy p,
    .about-v2-card p,
    .about-v2-card li {
        font-size: 0.95rem;
    }

    .about-value-grid,
    .about-client-grid,
    .about-event-grid {
        grid-template-columns: 1fr;
    }

    .about-v2-card {
        min-height: auto;
    }

    .about-field-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        margin-bottom: 34px;
    }

    .about-field-tabs a {
        flex: 0 0 auto;
        min-height: 58px;
        padding: 0 18px;
    }

    .about-field-list {
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }

    .about-timeline {
        min-height: auto;
        gap: 24px;
    }

    .about-history-card img {
        aspect-ratio: 1.35 / 1;
    }
}

/* EasyNet about partners and events */
.about-clients-section {
    position: relative;
    overflow: hidden;
    padding: 78px 0 70px;
    background: #fff;
}

.about-watermark--clients {
    left: -92px;
    top: -98px;
    opacity: 0.26;
}

.about-trust-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.about-trust-head h2 {
    margin: 0;
    color: #1d2535;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 900;
    line-height: 1.25;
}

.about-trust-head span {
    display: block;
    width: min(100%, 1040px);
    height: 1px;
    margin-top: 18px;
    background: #ff5f42;
}

.about-slider-controls {
    display: flex;
    gap: 12px;
    flex: 0 0 auto;
}

.about-slider-controls button,
.about-event-arrow {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid #ff5f42;
    border-radius: 50%;
    color: #ff5f42;
    background: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.about-slider-controls button:hover,
.about-event-arrow:hover {
    color: #fff;
    background: #ff8d18;
    transform: translateY(-2px);
}

.about-logo-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px 20px;
}

.about-logo-card {
    display: grid;
    place-items: center;
    min-height: 122px;
    border: 1px solid #d6d6d6;
    border-radius: 0 0 18px 0;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.about-logo-card span {
    font-size: clamp(1.15rem, 2.5vw, 2rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
}

.about-logo-card--sino span {
    color: #ed1c24;
    font-style: italic;
}

.about-logo-card--sony span {
    color: #111;
    font-family: Georgia, serif;
    letter-spacing: 0.05em;
}

.about-logo-card--grandstream span {
    color: #5d83bf;
    font-size: 0.88rem;
    letter-spacing: 0.03em;
}

.about-logo-card--zkteco span {
    color: #4f4f4f;
}

.about-logo-card--zkteco span::first-letter {
    color: #59bd31;
}

.about-logo-card--fujifilm span {
    color: #0c0c0c;
    font-size: 1.25rem;
    letter-spacing: 0.04em;
}

.about-logo-card--brother span {
    color: #0573bd;
    font-size: 1.55rem;
}

.about-logo-card--bosch span {
    color: #e31e24;
    font-size: 1.35rem;
}

.about-logo-card--hikvision span {
    color: #e3232e;
    font-size: 1.2rem;
    font-style: italic;
}

.about-logo-card--hp span {
    width: 80px;
    height: 80px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #0096d6;
    font-size: 2rem;
    font-style: italic;
}

.about-application-partners {
    margin-top: 48px;
    text-align: center;
}

.about-application-partners h2 {
    margin-bottom: 42px;
    color: #a6171d;
    font-size: clamp(1.7rem, 3vw, 2.45rem);
    font-weight: 900;
}

.about-mini-logo-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
    gap: 34px;
}

.about-mini-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    color: #0f4b82;
    font-size: 0.78rem;
    font-weight: 900;
    text-align: center;
}

.about-mini-logo--agri {
    color: #1f9b42;
    font-style: italic;
}

.about-mini-logo--times {
    color: #d4ae55;
    font-family: Georgia, serif;
}

.about-mini-logo--igc {
    color: #304195;
    font-size: 1.5rem;
}

.about-mini-logo--ysmiles {
    color: #0bb6c8;
    font-size: 1.2rem;
}

.about-events-section {
    padding: 62px 0 90px;
    background: #f3f3f3;
}

.about-events-section .section-head h2 {
    color: #a31218;
    font-size: clamp(2rem, 3.4vw, 3.2rem);
    font-weight: 900;
}

.about-events-section .section-head p {
    color: #334155;
    font-weight: 650;
}

.about-events-stage {
    position: relative;
    max-width: 1120px;
}

.about-event-collage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 190px);
    gap: 8px;
}

.about-event-photo {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #ddd;
}

.about-event-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.about-event-photo:hover img {
    transform: scale(1.04);
}

.about-event-photo--1 {
    grid-column: 1;
    grid-row: 1;
}

.about-event-photo--2 {
    grid-column: 2;
    grid-row: 1;
}

.about-event-photo--3 {
    grid-column: 3;
    grid-row: 1 / span 2;
}

.about-event-photo--4 {
    grid-column: 4;
    grid-row: 1;
}

.about-event-photo--5 {
    grid-column: 1;
    grid-row: 2;
}

.about-event-photo--6 {
    grid-column: 2;
    grid-row: 2;
}

.about-event-photo--7 {
    grid-column: 4;
    grid-row: 2;
}

.about-event-arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    width: 44px;
    height: 44px;
    border: 0;
    color: #fff;
    background: linear-gradient(135deg, #ff5a2d, #ff9a16);
    box-shadow: 0 12px 28px rgba(214, 78, 9, 0.32);
}

.about-event-arrow--prev {
    left: -56px;
}

.about-event-arrow--next {
    right: -56px;
}

@media (max-width: 1100px) {
    .about-logo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .about-mini-logo-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .about-event-arrow--prev {
        left: -20px;
    }

    .about-event-arrow--next {
        right: -20px;
    }
}

@media (max-width: 760px) {
    .about-trust-head {
        display: grid;
    }

    .about-logo-grid,
    .about-mini-logo-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-logo-card {
        min-height: 96px;
    }

    .about-event-collage {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .about-event-photo,
    .about-event-photo--1,
    .about-event-photo--2,
    .about-event-photo--3,
    .about-event-photo--4,
    .about-event-photo--5,
    .about-event-photo--6,
    .about-event-photo--7 {
        grid-column: auto;
        grid-row: auto;
        height: 210px;
    }

    .about-event-arrow {
        display: none;
    }
}

/* About page chrome handoff */
.topbar,
.site-header,
.about-anchor-nav {
    transition: transform 0.28s ease, opacity 0.22s ease, top 0.28s ease;
}

body.about-nav-only .topbar,
body.about-nav-only .site-header {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-130%);
}

body.about-nav-only .about-anchor-nav {
    top: 0;
    z-index: 92;
}

.about-page-v2 section[id] {
    scroll-margin-top: 88px;
}

@media (max-width: 700px) {
    body.about-nav-only .about-anchor-nav {
        position: sticky;
        top: 0;
    }

    .about-page-v2 section[id] {
        scroll-margin-top: 64px;
    }
}

/* EasyNet library page redesign */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.library-page-v2 {
    min-height: 100vh;
    padding-bottom: 70px;
    background: #fff;
}

.library-breadcrumb {
    margin-top: 118px;
    background: #f0f1f4;
    box-shadow: inset 0 1px 0 rgba(15, 23, 42, 0.06);
}

.library-breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 56px;
    color: #64748b;
    font-size: 1.08rem;
    font-weight: 650;
}

.library-breadcrumb a {
    color: #000;
    font-weight: 750;
}

.library-content-v2 {
    padding-top: 40px;
}

.library-intro-v2 h1 {
    position: relative;
    display: inline-block;
    margin: 0 0 58px;
    color: #07152b;
    font-size: clamp(2.45rem, 4.4vw, 3.65rem);
    font-weight: 900;
    line-height: 1.1;
}

.library-intro-v2 h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -18px;
    width: 100px;
    height: 5px;
    border-radius: 999px;
    background: #ff5b2e;
}

.library-intro-v2 p {
    max-width: none;
    margin: 0 0 30px;
    color: #050b16;
    font-size: 1.12rem;
    font-weight: 500;
    line-height: 1.78;
}

.library-intro-v2 strong {
    color: #020817;
    font-weight: 900;
}

.library-search-v2 {
    display: grid;
    grid-template-columns: 1fr 128px;
    gap: 10px;
    margin: 28px 0 20px;
}

.library-search-v2 input {
    min-width: 0;
    height: 52px;
    padding: 0 20px;
    border: 1px solid #ccd2dc;
    border-radius: 7px;
    color: #0f172a;
    background: #fff;
    font: inherit;
    font-size: 1.05rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.library-search-v2 input::placeholder {
    color: #9ba3b4;
    font-weight: 650;
}

.library-search-v2 input:focus {
    border-color: #ff5b2e;
    box-shadow: 0 0 0 4px rgba(255, 91, 46, 0.12);
}

.library-search-v2 button {
    height: 52px;
    border: 0;
    border-radius: 7px;
    color: #fff;
    background: #ff4f33;
    font-size: 1.08rem;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.library-search-v2 button:hover {
    filter: brightness(1.04);
    transform: translateY(-1px);
}

.library-table-card {
    overflow-x: auto;
    border: 1px solid #e0e5ec;
    border-radius: 8px 8px 0 0;
    background: #fff;
}

.download-table-v2 {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
    background: #fff;
}

.download-table-v2 th {
    padding: 20px 30px;
    color: #fff;
    background: #ff4f33;
    text-align: left;
    font-size: 1.02rem;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}

.download-table-v2 th:nth-child(2),
.download-table-v2 th:nth-child(3),
.download-table-v2 th:nth-child(4),
.download-table-v2 th:nth-child(5) {
    text-align: center;
}

.download-table-v2 td {
    padding: 20px 30px;
    border-bottom: 1px solid #e6e9ef;
    color: #5f6b7d;
    font-size: 1.08rem;
    font-weight: 600;
    vertical-align: middle;
}

.download-table-v2 td:nth-child(2),
.download-table-v2 td:nth-child(3),
.download-table-v2 td:nth-child(4),
.download-table-v2 td:nth-child(5) {
    text-align: center;
}

.download-table-v2 td:first-child {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #12213a;
}

.download-table-v2 td:first-child strong {
    font-size: 1.08rem;
    font-weight: 750;
}

.pdf-icon-v2 {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 60px;
    height: 60px;
    border: 1px solid #dfe4eb;
    border-radius: 4px;
    color: #cc1717;
    background: #fff;
    font-size: 0.9rem;
    font-weight: 900;
}

.download-btn-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ff4f33;
    font-size: 1.02rem;
    font-weight: 900;
    white-space: nowrap;
}

.download-btn-v2 svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 1024px) {
    .library-breadcrumb {
        margin-top: 100px;
    }

    .library-intro-v2 h1 {
        margin-bottom: 44px;
    }
}

@media (max-width: 700px) {
    .library-breadcrumb {
        margin-top: 92px;
    }

    .library-content-v2 {
        padding-top: 30px;
    }

    .library-intro-v2 h1 {
        margin-bottom: 34px;
    }

    .library-intro-v2 h1::after {
        bottom: -13px;
        width: 78px;
        height: 4px;
    }

    .library-intro-v2 p {
        font-size: 1rem;
    }

    .library-search-v2 {
        grid-template-columns: 1fr;
    }

    .library-search-v2 button {
        width: 100%;
    }

    .download-table-v2 {
        min-width: 820px;
    }

    .download-table-v2 th,
    .download-table-v2 td {
        padding: 16px 18px;
    }
}


/* EasyNet social icons, contact page, and global reveal cards */
.social-pill {
    display: inline-grid;
    place-items: center;
    width: 28px;
    min-width: 28px;
    height: 28px;
    padding: 0;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.social-pill svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.social-pill span {
    font-size: .52rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.03em;
}

.social-pill--zalo {
    background: #0b83ff;
}

.social-pill--youtube {
    background: #ff0033;
}

.social-pill--facebook {
    background: #1877f2;
}

.social-pill:hover {
    transform: translateY(-2px) scale(1.06);
    filter: saturate(1.12);
    box-shadow: 0 12px 24px rgba(255, 95, 28, .24);
}

.zalo-widget {
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(145deg, #2f8cff, #0969e8);
    color: #fff;
    font-size: .7rem;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(15, 104, 233, .34);
}


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

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal.reveal-from-left {
    transform: translate3d(-64px, 0, 0);
}

.reveal.reveal-from-right {
    transform: translate3d(64px, 0, 0);
}

.reveal.reveal-up {
    transform: translate3d(0, 56px, 0);
}

.reveal.reveal-from-left.is-visible,
.reveal.reveal-from-right.is-visible,
.reveal.reveal-up.is-visible {
    transform: translate3d(0, 0, 0);
}

.contact-hero-v2 {
    min-height: 360px;
    display: grid;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(6, 22, 39, .78), rgba(141, 63, 16, .55)),
        radial-gradient(circle at 75% 20%, rgba(255, 150, 24, .28), transparent 34%);
}

.contact-hero-v2__inner {
    max-width: 980px;
}

.contact-hero-v2 p,
.section-kicker {
    margin: 0 0 12px;
    color: #ff7a1a;
    font-weight: 800;
    letter-spacing: .05em;
}

.contact-hero-v2 h1 {
    margin: 0 0 16px;
    color: #fff;
    font-size: clamp(2.45rem, 5vw, 4.85rem);
    line-height: .95;
}

.contact-hero-v2 span {
    display: block;
    max-width: 720px;
    color: rgba(255, 255, 255, .86);
    font-size: 1.08rem;
    line-height: 1.7;
}

.contact-page-v2 {
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 132, 25, .16), transparent 30%),
        linear-gradient(135deg, #fffaf4 0%, #fff 46%, #f7fbff 100%);
}

.contact-layout-v2 {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 26px;
    align-items: stretch;
}

.contact-info-v2,
.contact-form-v2,
.contact-map-v2 {
    border: 1px solid rgba(176, 83, 24, .18);
    border-radius: 28px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 28px 70px rgba(52, 28, 12, .09);
}

.contact-info-v2,
.contact-form-v2 {
    padding: 34px;
}

.contact-info-v2 h2,
.contact-form-v2 h2 {
    margin: 0 0 14px;
    color: #9c171b;
    font-size: clamp(1.75rem, 3vw, 2.7rem);
    line-height: 1.05;
}

.contact-lead-v2 {
    margin: 0 0 26px;
    color: #334155;
    line-height: 1.75;
}

.contact-card-list-v2 {
    display: grid;
    gap: 14px;
}

.contact-card-v2 {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 86px;
    padding: 16px;
    border: 1px solid rgba(255, 123, 24, .2);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(255, 245, 235, .72));
    color: #1f2937;
    text-decoration: none;
}

.contact-card-v2__icon {
    display: inline-grid;
    place-items: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ff4d2e, #ffb21a);
    color: #fff;
    box-shadow: 0 14px 24px rgba(255, 98, 28, .24);
}

.contact-card-v2__icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.contact-card-v2 strong,
.contact-card-v2 em {
    display: block;
    font-style: normal;
}

.contact-card-v2 strong {
    margin-bottom: 4px;
    color: #7f1d1d;
    font-size: .82rem;
}

.contact-card-v2 em {
    color: #243244;
    font-weight: 700;
    line-height: 1.45;
}

.contact-form-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact-form-v2 label {
    display: grid;
    gap: 8px;
    color: #12345b;
    font-weight: 800;
}

.contact-form-v2 label span {
    color: #12345b;
    font-size: .78rem;
    letter-spacing: .02em;
}

.contact-form-v2 input,
.contact-form-v2 textarea {
    width: 100%;
    border: 1.5px solid rgba(122, 80, 49, .28);
    border-radius: 16px;
    background: rgba(255, 255, 255, .82);
    color: #111827;
    font: inherit;
    padding: 14px 16px;
    outline: none;
    transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.contact-form-v2 input::placeholder,
.contact-form-v2 textarea::placeholder {
    color: rgba(17, 24, 39, .52);
}

.contact-form-v2 input:focus,
.contact-form-v2 textarea:focus {
    border-color: #ff7a1a;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 122, 26, .13);
}

.contact-message-v2 {
    margin-top: 16px;
}

.contact-submit-v2 {
    margin-top: 20px;
    background: linear-gradient(135deg, #ff4d2e, #ffb21a);
    border: 0;
}

.contact-map-v2 {
    grid-column: 1 / -1;
    overflow: hidden;
    min-height: 360px;
    padding: 8px;
}

.contact-map-v2 iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
    border-radius: 22px;
    filter: saturate(1.08) contrast(1.02);
}

@media (max-width: 900px) {

    .contact-layout-v2,
    .contact-form-grid-v2 {
        grid-template-columns: 1fr;
    }

    .contact-info-v2,
    .contact-form-v2 {
        padding: 24px;
    }

    .contact-map-v2 iframe {
        height: 340px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


.social-pill img,
.zalo-widget img {
    display: block;
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.zalo-widget img {
    width: 34px;
    height: 34px;
}

/* EasyNet about fields interactive effects */
.about-fields-enhanced {
    --field-mouse-x: 0;
    --field-mouse-y: 0;
    isolation: isolate;
    background:
        radial-gradient(circle at calc(50% + var(--field-mouse-x) * 12%) calc(24% + var(--field-mouse-y) * 10%), rgba(255, 147, 30, 0.22), transparent 34%),
        linear-gradient(135deg, #fff7ef 0%, #f8f8f8 44%, #eef6ff 100%);
}

.about-fields-enhanced::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        linear-gradient(115deg, transparent 0 42%, rgba(255, 121, 31, 0.12) 48%, transparent 56%),
        radial-gradient(circle at 78% 72%, rgba(20, 92, 180, 0.14), transparent 34%);
    transform: translate3d(calc(var(--field-mouse-x) * 10px), calc(var(--field-mouse-y) * 8px), 0);
    transition: transform 0.2s ease;
    pointer-events: none;
}

.about-field-orbit {
    position: absolute;
    z-index: 0;
    border: 1px solid rgba(255, 126, 28, 0.22);
    border-radius: 50%;
    pointer-events: none;
    animation: aboutFieldOrbit 18s linear infinite;
}

.about-field-orbit--one {
    width: 420px;
    height: 420px;
    right: -160px;
    top: 28px;
}

.about-field-orbit--two {
    width: 260px;
    height: 260px;
    left: 8%;
    bottom: 36px;
    border-style: dashed;
    animation-duration: 24s;
    animation-direction: reverse;
}

.about-fields-enhanced .container {
    position: relative;
    z-index: 1;
}

.about-field-tabs button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 68px;
    padding: 0 26px;
    border: 0;
    border-radius: 24px;
    color: #3d4554;
    background: rgba(255, 255, 255, 0.86);
    font: inherit;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
    transform: translateY(0);
    transition: transform 0.32s ease, color 0.32s ease, box-shadow 0.32s ease, background 0.32s ease;
    overflow: hidden;
}

.about-field-tabs button::after {
    content: "";
    position: absolute;
    inset: auto 18px 10px;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0;
    transform: scaleX(0.25);
    transition: opacity 0.32s ease, transform 0.32s ease;
}

.about-field-tabs button:hover,
.about-field-tabs button.is-active {
    color: #111;
    transform: translateY(-5px);
    background: linear-gradient(135deg, #ff5d2e 0%, #ff9b18 70%, #ffc326 100%);
    box-shadow: 0 24px 44px rgba(238, 100, 23, 0.28);
}

.about-field-tabs button.is-active::after {
    opacity: 0.82;
    transform: scaleX(1);
}

.about-tab-icon {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.34);
    box-shadow: inset 0 0 0 2px currentColor;
}

.about-tab-icon::before,
.about-tab-icon::after {
    content: "";
    position: absolute;
    border-radius: inherit;
}

.about-tab-icon--gear::before {
    width: 16px;
    height: 16px;
    border: 3px solid currentColor;
    border-radius: 50%;
}

.about-tab-icon--gear::after {
    width: 24px;
    height: 4px;
    background: currentColor;
    box-shadow: 0 -8px 0 -1px currentColor, 0 8px 0 -1px currentColor;
}

.about-tab-icon--cloud::before {
    width: 20px;
    height: 12px;
    border: 3px solid currentColor;
    border-top-color: transparent;
    border-radius: 999px;
    transform: translateY(3px);
}

.about-tab-icon--cloud::after {
    width: 10px;
    height: 10px;
    border: 3px solid currentColor;
    border-bottom: 0;
    border-radius: 50% 50% 0 0;
    transform: translate(-2px, -4px);
}

.about-tab-icon--bulb::before {
    width: 15px;
    height: 18px;
    border: 3px solid currentColor;
    border-bottom: 0;
    border-radius: 50% 50% 38% 38%;
    transform: translateY(-2px);
}

.about-tab-icon--bulb::after {
    width: 12px;
    height: 4px;
    background: currentColor;
    transform: translateY(10px);
    box-shadow: 0 5px 0 -1px currentColor;
}

.about-field-stage {
    position: sticky;
    top: 132px;
    display: grid;
    min-height: 520px;
    perspective: 1100px;
}

.about-field-stage .about-field-image {
    grid-area: 1 / 1;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-26px, 24px, 0) rotateY(-9deg) rotateX(3deg) scale(0.96);
    transition: opacity 0.55s ease, transform 0.75s cubic-bezier(.2, .8, .2, 1), filter 0.55s ease;
    filter: saturate(0.86) contrast(0.96);
}

.about-field-stage .about-field-image.is-active {
    opacity: 1;
    pointer-events: auto;
    transform:
        translate3d(calc(var(--field-mouse-x) * 10px), calc(var(--field-mouse-y) * 8px), 0) rotateY(calc(var(--field-mouse-x) * -6deg)) rotateX(calc(var(--field-mouse-y) * 5deg)) scale(1);
    filter: saturate(1.08) contrast(1.03);
}

.about-field-stage .about-field-image::before {
    content: "";
    position: absolute;
    inset: 12px;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 16px;
    pointer-events: none;
}

.about-field-stage .about-field-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 120, 29, 0.2), transparent 45%, rgba(13, 81, 161, 0.2));
    pointer-events: none;
}

.about-field-stage .about-field-image img {
    min-height: 520px;
    transform: scale(1.04);
    transition: transform 1.1s ease;
}

.about-field-stage .about-field-image.is-active img {
    transform: scale(1.08);
}

.about-field-panels {
    display: grid;
    min-height: 520px;
}

.about-field-panel {
    grid-area: 1 / 1;
    opacity: 0;
    pointer-events: none;
    transform: translateX(28px) scale(0.98);
    transition: opacity 0.45s ease, transform 0.58s cubic-bezier(.2, .8, .2, 1);
}

.about-field-panel.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) scale(1);
}

.about-field-panel__head {
    margin-bottom: 18px;
}

.about-field-panel__head h3 {
    margin: 0 0 10px;
    color: #9d1419;
    font-size: clamp(1.65rem, 2.8vw, 2.35rem);
    line-height: 1.08;
}

.about-field-panel__head p {
    max-width: 620px;
    margin: 0;
    color: #314155;
    font-weight: 700;
    line-height: 1.7;
}

.about-field-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.about-field-metrics span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid rgba(255, 111, 30, 0.28);
    border-radius: 999px;
    color: #9d1419;
    background: rgba(255, 255, 255, 0.76);
    font-size: 0.86rem;
    font-weight: 900;
}

.about-field-panel.is-active .about-field-list a {
    animation: aboutFieldItemIn 1.58s cubic-bezier(.2, .8, .2, 1) both;
    animation-delay: calc(var(--item-index) * 65ms);
}

.about-field-list a {
    position: relative;
    overflow: hidden;
    border-color: rgba(24, 35, 52, 0.08);
    background: rgba(255, 255, 255, 0.86);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, color 0.28s ease;
}

.about-field-list a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 126, 30, 0.12), transparent 58%);
    opacity: 0;
    transition: opacity 0.28s ease;
}

.about-field-list a:hover {
    color: #9d1419;
    border-color: rgba(255, 126, 30, 0.42);
    box-shadow: 0 18px 34px rgba(111, 48, 12, 0.12);
    transform: translateX(8px);
}

.about-field-list a:hover::after {
    opacity: 1;
}

.about-field-list a span {
    flex: 0 0 auto;
    background: linear-gradient(180deg, #ff5d2e, #ffbc25);
    box-shadow: 0 0 0 4px rgba(255, 127, 31, 0.12);
    transition: height 0.28s ease, background 0.28s ease;
}

.about-field-list a:hover span {
    height: 40px;
}

@keyframes aboutFieldOrbit {
    to {
        transform: rotate(360deg);
    }
}

@keyframes aboutFieldItemIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
    }

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

@media (max-width: 900px) {
    .about-field-tabs button {
        flex: 0 0 auto;
        min-height: 58px;
        padding: 0 18px;
    }

    .about-field-orbit {
        display: none;
    }

    .about-field-stage {
        position: relative;
        top: auto;
        min-height: 320px;
    }

    .about-field-stage .about-field-image img {
        min-height: 320px;
    }

    .about-field-panels {
        min-height: auto;
    }

    .about-field-panel {
        display: none;
        grid-area: auto;
    }

    .about-field-panel.is-active {
        display: block;
    }
}

@media (prefers-reduced-motion: reduce) {

    .about-field-orbit,
    .about-field-panel.is-active .about-field-list a {
        animation: none;
    }

    .about-field-stage .about-field-image,
    .about-field-panel,
    .about-field-list a,
    .about-field-tabs button {
        transition: none;
    }
}

/* End EasyNet about fields interactive effects */

/* EasyNet about history timeline */
.about-history-section .section-head p {
    max-width: 760px;
    margin: 10px auto 0;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 700;
}

.about-timeline {
    align-content: start;
    gap: 18px;
    min-height: 520px;
}

.about-timeline button {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 18px;
    row-gap: 3px;
    width: 100%;
    padding: 0 16px 0 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.46);
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: color 0.28s ease, transform 0.28s ease;
}

.about-timeline button span {
    position: absolute;
    left: -50px;
    top: 0.32em;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.44);
    transition: width 0.28s ease, height 0.28s ease, left 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.about-timeline button strong {
    grid-column: 1 / -1;
    font-size: 1.22rem;
    font-weight: 900;
    line-height: 1;
}

.about-timeline button em {
    grid-column: 1 / -1;
    max-width: 170px;
    color: currentColor;
    font-size: 0.82rem;
    font-style: normal;
    font-weight: 800;
    line-height: 1.28;
    opacity: 0.72;
}

.about-timeline button:hover,
.about-timeline button.is-active {
    color: #fff;
    transform: translateX(6px);
}

.about-timeline button.is-active strong {
    color: #fff;
    font-size: 1.58rem;
}

.about-timeline button.is-active em {
    color: #ffbc4d;
    opacity: 1;
}

.about-timeline button.is-active span {
    left: -54px;
    width: 24px;
    height: 24px;
    background: #fff;
    box-shadow: 0 0 0 8px rgba(255, 132, 27, 0.18), 0 0 24px rgba(255, 179, 54, 0.52);
}

.about-history-panels {
    display: grid;
    min-height: 520px;
}

.about-history-panels .about-history-card {
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(26px) scale(0.985);
    transition: opacity 0.82s ease, visibility 0.82s ease, transform 0.82s cubic-bezier(.2, .8, .2, 1);
}

.about-history-panels .about-history-card.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.about-history-panels .about-history-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 126, 30, 0.18), transparent 48%);
    pointer-events: none;
}

.about-history-card {
    position: relative;
    overflow: hidden;
}

.about-history-card img {
    position: relative;
    z-index: 1;
    min-height: 320px;
    transition: transform 1.2s ease, filter 1.2s ease;
}

.about-history-card.is-active img {
    transform: scale(1.035);
    filter: saturate(1.05) contrast(1.02);
}

.about-history-card h3,
.about-history-card p {
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .about-timeline {
        min-height: auto;
        display: flex;
        gap: 18px;
        overflow-x: auto;
        padding: 12px 0 18px;
        border: 0;
        scroll-snap-type: x mandatory;
    }

    .about-timeline button {
        flex: 0 0 170px;
        min-height: 94px;
        padding: 16px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.08);
        scroll-snap-align: start;
    }

    .about-timeline button span {
        display: none;
    }

    .about-history-panels {
        min-height: 430px;
    }

    .about-history-card img {
        min-height: 260px;
        aspect-ratio: 1.35 / 1;
    }
}

@media (prefers-reduced-motion: reduce) {

    .about-history-panels .about-history-card,
    .about-history-card img,
    .about-timeline button,
    .about-timeline button span {
        transition: none;
    }
}

/* End EasyNet about history timeline */

/* EasyNet auto scrolling partner logos */
.about-logo-marquee,
.about-mini-logo-marquee {
    position: relative;
    overflow: hidden;
    width: min(100%, 1180px);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.about-logo-track,
.about-mini-logo-track {
    display: flex;
    width: max-content;
    gap: 20px;
    will-change: transform;
    animation: aboutLogoScroll 34s linear infinite;
}

.about-mini-logo-track {
    gap: 42px;
    animation-name: aboutMiniLogoScroll;
    animation-duration: 42s;
    animation-direction: reverse;
}

.about-logo-track.is-boosted,
.about-mini-logo-track.is-boosted {
    animation-duration: 14s;
}

.about-logo-marquee:hover .about-logo-track,
.about-logo-marquee:focus-within .about-logo-track,
.about-mini-logo-marquee:hover .about-mini-logo-track,
.about-mini-logo-marquee:focus-within .about-mini-logo-track {
    animation-play-state: paused;
}

.about-logo-set,
.about-mini-logo-set {
    display: flex;
    flex: 0 0 auto;
    gap: 20px;
    align-items: center;
}

.about-logo-card {
    flex: 0 0 clamp(210px, 20vw, 248px);
    min-height: 122px;
    transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.about-logo-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 95, 66, 0.45);
    box-shadow: 0 20px 42px rgba(30, 41, 59, 0.11);
}

.about-mini-logo-set {
    gap: 42px;
}

.about-mini-logo {
    flex: 0 0 clamp(150px, 16vw, 220px);
    min-height: 70px;
    padding: 0 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.about-mini-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 38px rgba(30, 41, 59, 0.12);
}

@keyframes aboutLogoScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 10px));
    }
}

@keyframes aboutMiniLogoScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-33.333% - 28px));
    }
}

@media (max-width: 760px) {

    .about-logo-track,
    .about-logo-set {
        gap: 14px;
    }

    .about-logo-card {
        flex-basis: 190px;
        min-height: 96px;
    }

    .about-mini-logo-track,
    .about-mini-logo-set {
        gap: 18px;
    }

    .about-mini-logo {
        flex-basis: 148px;
        min-height: 58px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .about-logo-marquee,
    .about-mini-logo-marquee {
        overflow-x: auto;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .about-logo-track,
    .about-mini-logo-track {
        animation: none;
    }
}

/* End EasyNet auto scrolling partner logos */


/* EasyNet reusable card hover effects */
@media (hover: hover) and (pointer: fine) {

    :where(.field-card,
        .project-card,
        .news-card,
        .product-card,
        .solution-card,
        .mega-tile,
        .tree-box,
        .client-card,
        .partner-card,
        .why-item,
        .about-v2-card,
        .about-logo-card,
        .about-mini-logo,
        .about-history-card,
        .about-event-photo,
        .about-field-list a,
        .contact-card-v2,
        .library-table-card,
        .footer-contact__item) {
        position: relative;
        overflow: hidden;
        transform: translateY(0) scale(1);
        transition:
            transform 0.42s cubic-bezier(.2, .8, .2, 1),
            border-color 0.42s ease,
            box-shadow 0.42s ease,
            background 0.42s ease,
            filter 0.42s ease,
            color 0.42s ease;
        will-change: transform;
    }

    :where(.field-card,
        .project-card,
        .news-card,
        .product-card,
        .solution-card,
        .mega-tile,
        .tree-box,
        .client-card,
        .partner-card,
        .why-item,
        .about-v2-card,
        .about-logo-card,
        .about-mini-logo,
        .about-history-card,
        .about-event-photo,
        .contact-card-v2,
        .library-table-card,
        .footer-contact__item)::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        background: linear-gradient(115deg, transparent 0 34%, rgba(255, 190, 94, 0.18) 44%, rgba(255, 255, 255, 0.28) 50%, transparent 62%);
        opacity: 0;
        transform: translateX(-120%);
        transition: opacity 0.34s ease, transform 0.78s cubic-bezier(.2, .8, .2, 1);
    }

    :where(.field-card,
        .project-card,
        .news-card,
        .product-card,
        .solution-card,
        .mega-tile,
        .tree-box,
        .client-card,
        .partner-card,
        .why-item,
        .about-v2-card,
        .about-logo-card,
        .about-mini-logo,
        .about-history-card,
        .about-event-photo,
        .about-field-list a,
        .contact-card-v2,
        .library-table-card,
        .footer-contact__item):hover {
        transform: translateY(-8px) scale(1.012);
        border-color: rgba(255, 128, 31, 0.52);
        box-shadow: 0 26px 58px rgba(87, 38, 10, 0.18), 0 0 0 1px rgba(255, 135, 36, 0.18);
        filter: saturate(1.08);
    }

    :where(.field-card,
        .project-card,
        .news-card,
        .product-card,
        .solution-card,
        .mega-tile,
        .tree-box,
        .client-card,
        .partner-card,
        .why-item,
        .about-v2-card,
        .about-logo-card,
        .about-mini-logo,
        .about-history-card,
        .about-event-photo,
        .contact-card-v2,
        .library-table-card,
        .footer-contact__item):hover::after {
        opacity: 1;
        transform: translateX(120%);
    }

    :where(.field-card,
        .project-card,
        .news-card,
        .product-card,
        .about-event-photo):hover img {
        transform: scale(1.06);
        filter: saturate(1.08) contrast(1.02);
    }

    .about-field-list a:hover {
        transform: translateX(10px) translateY(-3px);
    }

    .footer-contact__item:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.08);
    }
}

@media (prefers-reduced-motion: reduce) {

    :where(.field-card,
        .project-card,
        .news-card,
        .product-card,
        .solution-card,
        .mega-tile,
        .tree-box,
        .client-card,
        .partner-card,
        .why-item,
        .about-v2-card,
        .about-logo-card,
        .about-mini-logo,
        .about-history-card,
        .about-event-photo,
        .about-field-list a,
        .contact-card-v2,
        .library-table-card,
        .footer-contact__item),
    :where(.field-card,
        .project-card,
        .news-card,
        .product-card,
        .solution-card,
        .mega-tile,
        .tree-box,
        .client-card,
        .partner-card,
        .why-item,
        .about-v2-card,
        .about-logo-card,
        .about-mini-logo,
        .about-history-card,
        .about-event-photo,
        .contact-card-v2,
        .library-table-card,
        .footer-contact__item)::after {
        transition: none;
    }
}

/* End EasyNet reusable card hover effects */


/* EasyNet about values reveal timing */
.about-values-section .about-v2-card.reveal {
    transition: opacity 1s ease, transform 1s cubic-bezier(.2, .8, .2, 1);
}

/* End EasyNet about values reveal timing */


/* EasyNet dropdown menu orange hover */
.mega-columns a,
.mega-grid .mega-tile {
    position: relative;
    border-radius: 8px;
    transition: color 0.24s ease, background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.mega-columns a:not(.mega-more) {
    padding: 7px 10px;
    margin-left: -10px;
}

.mega-columns a:not(.mega-more)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, #ff5d2e, #ffb21a);
    transform: translateY(-50%);
    transition: height 0.24s ease;
}

.mega-columns a:not(.mega-more):hover,
.mega-columns a:not(.mega-more):focus-visible {
    color: #f47b20;
    background: linear-gradient(90deg, rgba(244, 123, 32, 0.13), rgba(255, 178, 26, 0.06));
    transform: translateX(6px);
    box-shadow: inset 0 0 0 1px rgba(244, 123, 32, 0.16);
}

.mega-columns a:not(.mega-more):hover::before,
.mega-columns a:not(.mega-more):focus-visible::before {
    height: 70%;
}

.mega-columns .mega-more:hover,
.mega-columns .mega-more:focus-visible {
    color: #ff5d2e;
    transform: translateX(6px);
    text-shadow: 0 10px 22px rgba(244, 123, 32, 0.26);
}

.mega-grid .mega-tile:hover,
.mega-grid .mega-tile:focus-visible {
    color: #f47b20;
    border-color: rgba(244, 123, 32, 0.38);
    background: linear-gradient(135deg, rgba(255, 247, 239, 0.98), rgba(255, 178, 26, 0.18));
    box-shadow: 0 18px 40px rgba(120, 54, 14, 0.15), inset 0 0 0 1px rgba(244, 123, 32, 0.18);
    transform: translateY(-4px);
}

@media (max-width: 1024px) {

    .mega-columns a:not(.mega-more):hover,
    .mega-columns a:not(.mega-more):focus-visible,
    .mega-grid .mega-tile:hover,
    .mega-grid .mega-tile:focus-visible {
        color: #ffb21a;
        background: rgba(244, 123, 32, 0.14);
        box-shadow: inset 0 0 0 1px rgba(255, 178, 26, 0.22);
    }
}

/* End EasyNet dropdown menu orange hover */


/* EasyNet product detail page */
.product-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.product-card-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #ff5d2e, #ff9d19);
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(244, 123, 32, 0.18);
}

.product-card-actions a+a {
    color: #f47b20;
    background: rgba(244, 123, 32, 0.1);
    box-shadow: inset 0 0 0 1px rgba(244, 123, 32, 0.24);
}

.product-detail-page {
    padding: 24px 0 86px;
    background: #fff;
}

.product-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 0 34px;
    color: #5f6b7d;
    font-weight: 700;
}

.product-breadcrumb a {
    color: #111827;
}

.product-breadcrumb strong {
    color: #5f6b7d;
    font-weight: 700;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.94fr) minmax(0, 1.06fr);
    gap: clamp(36px, 6vw, 78px);
    align-items: start;
}

.product-gallery {
    display: grid;
    gap: 22px;
}

.product-image-main {
    display: grid;
    place-items: center;
    height: clamp(360px, 54vw, 600px);
    min-height: clamp(360px, 54vw, 600px);
    border-radius: 22px;
    background: linear-gradient(135deg, #fff, #f8fafc);
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.05);
}

.product-image-main img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    filter: none;
}

.product-thumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.product-thumb-arrow {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    color: #cbd5e1;
    background: #fff;
    font-size: 2rem;
    line-height: 1;
}

.product-thumb {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    padding: 0;
    border: 0;
    border-bottom: 2px solid transparent;
    background: transparent;
    cursor: pointer;
}

.product-thumb.is-active {
    border-color: #9ca3af;
}


.product-thumbs img {
    width: 44px;
    height: 54px;
    object-fit: cover;
    border-radius: 8px;
}

.product-detail-info h1 {
    margin: 0 0 20px;
    color: #172033;
    font-size: clamp(2rem, 3.4vw, 3rem);
    line-height: 1.15;
}

.product-code {
    color: #111827;
    font-weight: 700;
}

.product-detail-info hr {
    margin: 26px 0;
    border: 0;
    border-top: 1px solid #e5e7eb;
}

.product-summary {
    color: #1f2937;
    font-size: 1.06rem;
    font-weight: 800;
    line-height: 1.7;
}

.product-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.product-feature-list li {
    position: relative;
    padding-left: 22px;
    color: #374151;
    font-weight: 700;
}

.product-feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff5d2e;
}


.product-contact-box {
    padding: 24px;
    border-radius: 14px;
    background: #f8fafc;
}

.product-contact-box h2 {
    margin: 0 0 18px;
    color: #111827;
    font-size: 1.18rem;
}

.product-contact-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.product-contact-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    border-radius: 8px;
    color: #fff;
    font-weight: 900;
}

.product-contact-actions img {
    width: 22px;
    height: 22px;
}

.product-zalo,
.product-facebook {
    background: #1677f2;
}

.product-phone {
    background: #12b886;
}

.product-share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid #e5e7eb;
    color: #111827;
    font-weight: 700;
}

.product-share button,
.product-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #111827;
    background: #fff;
    font: inherit;
    font-weight: 800;
}

@media (max-width: 980px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
    }

    .product-contact-actions,
    .product-feature-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .product-detail-page {
        padding-top: 12px;
    }

    .product-breadcrumb {
        font-size: 0.86rem;
    }

    .product-image-main {
        height: 320px;
        min-height: 320px;
    }
}

/* End EasyNet product detail page */


/* EasyNet product zoom and lightbox */
.product-image-main {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
}

.product-image-main::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 18px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.product-image-main.is-zooming::after {
    opacity: 1;
}

.product-zoom-preview {
    position: fixed;
    left: auto;
    top: 50%;
    right: clamp(24px, 4vw, 56px);
    bottom: auto;
    z-index: 80;
    width: min(72vw, 480px);
    aspect-ratio: 1 / 1;
    border: 2px solid rgba(255, 122, 26, 0.72);
    border-radius: 18px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: 240%;
    box-shadow: 0 26px 58px rgba(15, 23, 42, 0.28);
    opacity: 0;
    transform: translateY(-50%) scale(0.9);
    transition: opacity 0.22s ease, transform 0.22s ease;
    pointer-events: none;
}

.product-image-main.is-zooming .product-zoom-preview {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.product-thumb,
.product-thumb-arrow {
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}

.product-thumb:hover,
.product-thumb.is-active {
    transform: translateY(-3px);
}

.product-thumb-arrow:hover {
    color: #ff5d2e;
    border-color: rgba(255, 93, 46, 0.42);
    box-shadow: 0 10px 24px rgba(255, 93, 46, 0.16);
}

body.is-product-lightbox-open {
    overflow: hidden;
}

.product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: grid;
    place-items: center;
    padding: 28px;
    background: rgba(5, 10, 18, 0.86);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.product-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.product-lightbox__figure {
    display: grid;
    gap: 16px;
    width: min(980px, 86vw);
    margin: 0;
    text-align: center;
}

.product-lightbox__figure img {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.product-lightbox__figure figcaption {
    color: #fff;
    font-weight: 800;
}

.product-lightbox__close,
.product-lightbox__arrow {
    position: absolute;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    cursor: pointer;
    transition: background 0.22s ease, transform 0.22s ease;
}

.product-lightbox__close:hover,
.product-lightbox__arrow:hover {
    background: linear-gradient(135deg, #ff5d2e, #ffb21a);
    transform: scale(1.06);
}

.product-lightbox__close {
    top: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    font-size: 2rem;
}

.product-lightbox__arrow {
    top: 50%;
    width: 56px;
    height: 56px;
    font-size: 3rem;
    line-height: 1;
    transform: translateY(-50%);
}

.product-lightbox__arrow:hover {
    transform: translateY(-50%) scale(1.06);
}

.product-lightbox__arrow--prev {
    left: 28px;
}

.product-lightbox__arrow--next {
    right: 28px;
}

@media (max-width: 760px) {
    .product-zoom-preview {
        display: none;
    }

    .product-lightbox {
        padding: 18px;
    }

    .product-lightbox__arrow {
        width: 44px;
        height: 44px;
        font-size: 2.2rem;
    }

    .product-lightbox__arrow--prev {
        left: 12px;
    }

    .product-lightbox__arrow--next {
        right: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .product-zoom-preview,
    .product-lightbox,
    .product-thumb,
    .product-thumb-arrow,
    .product-lightbox__close,
    .product-lightbox__arrow {
        transition: none;
    }
}

/* End EasyNet product zoom and lightbox */