:root {
    --navy: #0b2b43;
    --navy-2: #123d58;
    --blue: #087ea9;
    --blue-dark: #086b91;
    --cyan: #26b8c3;
    --yellow: #f5b91d;
    --ink: #142f40;
    --muted: #607482;
    --line: #e1e9ed;
    --canvas: #f5f8f9;
    --white: #fff;
    --success: #167a4b;
    --danger: #b42318;
    --shadow-sm: 0 1px 2px rgba(11, 43, 67, .035), 0 10px 24px rgba(11, 43, 67, .06);
    --shadow: 0 2px 6px rgba(11, 43, 67, .04), 0 26px 60px rgba(11, 43, 67, .12);
    --shadow-soft: 0 1px 3px rgba(11, 43, 67, .03), 0 16px 40px rgba(11, 43, 67, .08);
    --shadow-hover: 0 4px 10px rgba(11, 43, 67, .05), 0 32px 70px rgba(11, 43, 67, .16);
    --radius-sm: 14px;
    --radius: 22px;
    --radius-lg: 30px;
    --container: 1180px;
    --font-sans: "Be Vietnam Pro", "Inter", "Segoe UI", Arial, sans-serif;
    --ease-soft: cubic-bezier(.22, .68, .32, 1);
    --ease-spring: cubic-bezier(.32, 1.28, .56, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink); font-weight: 700; line-height: 1.18; letter-spacing: 0; }
h1 { margin-bottom: 22px; font-size: clamp(2.65rem, 5vw, 4.8rem); }
h2 { margin-bottom: 18px; font-size: clamp(2rem, 3vw, 3.2rem); }
h3 { margin-bottom: 10px; font-size: 1.14rem; }
p { margin-bottom: 1rem; }
ul, ol { margin-top: 0; }

.container, .shell { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; }
.screen-reader-text {
    position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.screen-reader-text:focus, .skip-link:focus {
    z-index: 99999; top: 8px; left: 8px; width: auto; height: auto; clip: auto;
    padding: 10px 15px; color: var(--white); background: var(--navy); border-radius: 8px;
}
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
.eyebrow {
    margin-bottom: 12px; color: var(--blue); font-size: .75rem; font-weight: 760;
    letter-spacing: .13em; line-height: 1.3; text-transform: uppercase;
}
.section-heading { margin-bottom: 42px; }
.section-heading > p { max-width: 590px; color: var(--muted); }
.section-heading--center { max-width: 760px; margin-inline: auto; text-align: center; }
.section-heading--center > p { margin-inline: auto; }
.section-heading--split { display: flex; justify-content: space-between; align-items: end; gap: 48px; }

/* Breadcrumbs */
.breadcrumbs { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; padding: 18px 0 0; }
.breadcrumbs__list {
    display: flex; flex-wrap: wrap; align-items: center; gap: 6px; list-style: none;
    margin: 0; padding: 0; font-size: .82rem; color: var(--muted);
}
.breadcrumbs__item { display: flex; align-items: center; gap: 6px; }
.breadcrumbs__item:not(:first-child)::before { content: "/"; color: var(--line); }
.breadcrumbs__item a { color: var(--muted); text-decoration: none; }
.breadcrumbs__item a:hover { color: var(--blue); text-decoration: underline; }
.breadcrumbs__item span[aria-current] { color: var(--ink); font-weight: 600; }

/* Load more */
.service-tax-list__more { display: flex; justify-content: center; margin-top: 40px; }
.service-tax-list__more .button { min-width: 220px; }

/* 404 search + suggestions */
.error-404 .empty-state { max-width: 640px; }
.error-404__search { display: flex; gap: 10px; margin: 28px 0; }
.error-404__search input[type="search"] {
    flex: 1; padding: 13px 16px; border-radius: var(--radius-sm); border: 1px solid var(--line); font-size: 1rem;
}
.error-404__suggestions { margin-top: 12px; }
.error-404__suggestions h2 { font-size: 1.1rem; margin-bottom: 14px; }
.error-404__suggestions-list { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 0; padding: 0; }
.error-404__suggestions-list a {
    display: inline-flex; padding: 10px 16px; border-radius: 999px; border: 1px solid var(--line);
    color: var(--ink); text-decoration: none; font-weight: 600; font-size: .88rem;
}
.error-404__suggestions-list a:hover { border-color: var(--blue); color: var(--blue); }

/* Contact map embed */
.contact-map { margin-top: 24px; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); }
.contact-map iframe { display: block; width: 100%; height: 280px; border: 0; }
.contact-list__map-link { margin-top: 6px; display: inline-block; font-size: .82rem; color: var(--blue); }

.button {
    display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 24px; border: 1px solid transparent; border-radius: 999px; cursor: pointer;
    font-size: .92rem; font-weight: 720; line-height: 1.2;
    transition: transform .38s var(--ease-soft), box-shadow .38s var(--ease-soft), background .3s var(--ease-soft), color .3s var(--ease-soft), border-color .3s var(--ease-soft);
}
.button:hover { transform: translateY(-3px); }
.button:active { transform: translateY(-1px) scale(.98); transition-duration: .12s; }
.button--primary { color: var(--white); background: var(--blue); box-shadow: 0 12px 28px rgba(8, 126, 169, .24); }
.button--primary:hover { background: var(--blue-dark); }
.button--secondary { color: var(--navy); background: var(--yellow); }
.button--ghost { color: var(--blue); border-color: rgba(8, 126, 169, .24); background: rgba(255,255,255,.72); box-shadow: 0 10px 24px rgba(11,43,67,.08); }
.button--ghost:hover { color: var(--white); border-color: var(--blue); background: var(--blue); }
.button--outline { color: var(--blue); border-color: #9fc9da; background: transparent; }
.button--outline:hover { color: var(--white); border-color: var(--blue); background: var(--blue); }
.button--light { color: var(--navy); background: var(--white); }
.button--ghost-light { color: var(--white); border-color: rgba(255,255,255,.55); }
.button--block { width: 100%; }
.text-link { color: var(--blue); font-size: .88rem; font-weight: 720; }
.text-link span { display: inline-block; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 1000; transition: box-shadow .25s ease; }
body.admin-bar .site-header { top: 32px; }
.site-header.is-scrolled { box-shadow: 0 10px 34px rgba(11,43,67,.13); }
.header-utility { color: #dceaf0; background: var(--navy); }
.header-utility__inner { min-height: 36px; display: flex; align-items: center; gap: 24px; font-size: .75rem; }
.header-utility p { margin: 0; }
.header-utility__area { display: flex; align-items: center; gap: 7px; }
.header-utility__promise { margin-left: auto !important; color: #bcd7e2; }
.header-utility__phone { display: inline-flex; gap: 7px; align-items: center; color: var(--white); }
.header-main { background: rgba(255,255,255,.97); border-bottom: 1px solid rgba(11,43,67,.07); backdrop-filter: blur(12px); }
.header-main__inner { min-height: 74px; display: flex; align-items: center; gap: 18px; }
.site-brand { display: flex; flex: 0 0 196px; align-items: center; height: 74px; overflow: visible; }
.site-brand a { display: flex; align-items: center; height: 100%; }
.site-brand img, .custom-logo { display: block; width: auto; max-height: 68px; object-fit: contain; }
.primary-nav { flex: 1 1 auto; min-width: 0; margin-left: auto; margin-right: clamp(34px, 4vw, 72px); }
.primary-nav__list, .primary-nav__list .sub-menu, .mobile-menu__list, .mobile-menu__list .sub-menu { list-style: none; padding: 0; margin: 0; }
.primary-nav__list { display: flex; flex-wrap: nowrap; align-items: center; justify-content: flex-end; gap: 4px; padding: 0; background: transparent; border: 0; border-radius: 0; box-shadow: none; }
.primary-nav__list > li { position: relative; }
.primary-nav__list > li > a { position: relative; display: flex; min-height: 74px; align-items: center; padding: 0 8px; color: #294856; border-radius: 0; font-size: .88rem; font-weight: 680; letter-spacing: 0; white-space: nowrap; transition: color .2s ease; }
.primary-nav__list > li > a::after { content: ""; position: absolute; left: 50%; right: 50%; bottom: 13px; height: 2px; background: linear-gradient(90deg, var(--cyan), var(--blue)); border-radius: 999px; transition: left .22s ease, right .22s ease; }
.primary-nav__list > li:hover > a, .primary-nav__list > li:focus-within > a, .primary-nav__list > .current-menu-item > a, .primary-nav__list > .current-menu-ancestor > a { color: #047fa6; background: transparent; box-shadow: none; transform: none; }
.primary-nav__list > li:hover > a::after, .primary-nav__list > li:focus-within > a::after, .primary-nav__list > .current-menu-item > a::after, .primary-nav__list > .current-menu-ancestor > a::after { left: 10px; right: 10px; }
.primary-nav .menu-item-has-children > a { gap: 7px; }
.primary-nav .menu-item-has-children > a::before { content: ""; order: 2; width: 6px; height: 6px; margin-top: -3px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); transition: transform .2s ease; }
.primary-nav .menu-item-has-children:hover > a::before, .primary-nav .menu-item-has-children:focus-within > a::before { transform: translateY(3px) rotate(225deg); }
.primary-nav__list .sub-menu { position: absolute; top: calc(100% + 8px); left: 0; z-index: 30; display: block; width: 268px; padding: 10px; visibility: hidden; opacity: 0; pointer-events: none; background: rgba(255,255,255,.98); border: 1px solid rgba(11,43,67,.1); border-radius: 16px; box-shadow: 0 24px 60px rgba(11,43,67,.16); transform: translateY(10px); transition: opacity .18s ease, transform .18s ease, visibility .18s ease; }
.primary-nav__list .sub-menu::before { content: ""; position: absolute; top: -7px; left: 26px; width: 13px; height: 13px; background: var(--white); border-top: 1px solid rgba(11,43,67,.09); border-left: 1px solid rgba(11,43,67,.09); transform: rotate(45deg); }
.primary-nav__list .nav-has-mega > .sub-menu { display: block; width: 286px; }
.primary-nav__list li:hover > .sub-menu, .primary-nav__list li:focus-within > .sub-menu { visibility: visible; opacity: 1; pointer-events: auto; transform: translateY(0); }
.primary-nav__list .sub-menu li { display: block; width: 100%; }
.primary-nav__list .sub-menu a { position: relative; display: flex; min-height: 42px; align-items: center; padding: 10px 12px 10px 34px; color: #294856; border-radius: 10px; font-size: .82rem; font-weight: 650; line-height: 1.35; white-space: normal; transition: color .2s ease, background .2s ease, transform .2s ease; }
.primary-nav__list .sub-menu a::before { content: ""; position: absolute; left: 13px; width: 7px; height: 7px; background: #9bdce5; border-radius: 50%; box-shadow: 0 0 0 4px rgba(42,194,205,.1); transition: background .2s ease, box-shadow .2s ease; }
.primary-nav__list .sub-menu a:hover, .primary-nav__list .sub-menu a:focus { color: #047fa6; background: #eef9fb; transform: translateX(2px); }
.primary-nav__list .sub-menu a:hover::before, .primary-nav__list .sub-menu a:focus::before { background: var(--yellow); box-shadow: 0 0 0 4px rgba(255,196,18,.16); }
.header-call { position: relative; display: flex; flex: 0 0 auto; align-items: center; gap: 9px; overflow: hidden; min-width: 174px; padding: 8px 14px 8px 9px; color: var(--white); background: linear-gradient(115deg, #087ea9 0%, #079fc1 55%, #087ea9 100%); background-size: 180% 100%; border: 1px solid rgba(255,255,255,.34); border-radius: 999px; box-shadow: 0 12px 28px rgba(8,126,169,.28), inset 0 1px rgba(255,255,255,.22); transition: transform .4s var(--ease-soft), box-shadow .4s var(--ease-soft), background-position .5s var(--ease-soft); }
.header-call::before { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, transparent 28%, rgba(255,255,255,.24) 48%, transparent 68%); transform: translateX(-120%); transition: transform .55s ease; }
.header-call:hover { color: var(--white); background-position: 100% 0; box-shadow: 0 16px 34px rgba(8,126,169,.37), 0 0 0 4px rgba(42,194,205,.1); transform: translateY(-2px); }
.header-call:hover::before { transform: translateX(120%); }
.header-call svg { position: relative; z-index: 1; box-sizing: border-box; width: 38px; height: 38px; padding: 9px; color: var(--navy); background: var(--yellow); border-radius: 50%; box-shadow: 0 0 0 5px rgba(255,196,18,.13); }
.header-call span { position: relative; z-index: 1; }
.header-call small, .header-call strong { display: block; line-height: 1.15; }
.header-call small { font-size: .6rem; font-weight: 650; letter-spacing: .03em; opacity: .86; }
.header-call strong { margin-top: 3px; font-size: .94rem; font-weight: 780; letter-spacing: .01em; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 11px; border: 0; border-radius: 12px; background: var(--canvas); }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--navy); }
.mobile-menu, .mobile-menu-backdrop { position: fixed; inset: 0; z-index: 1100; }
.mobile-menu-backdrop { width: 100%; height: 100%; border: 0; background: rgba(5,28,45,.58); }
.mobile-menu { left: auto; width: min(88vw, 340px); padding: 22px; color: var(--ink); background: var(--white); box-shadow: -22px 0 50px rgba(0,0,0,.2); }
.mobile-menu[hidden], .mobile-menu-backdrop[hidden] { display: none; }
.mobile-menu__head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.mobile-menu__close { border: 0; color: var(--navy); background: transparent; font-size: 2rem; line-height: 1; }
.mobile-menu__list { padding: 18px 0; }
.mobile-menu__list > li > a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 4px; color: var(--navy); border-bottom: 1px solid var(--line); font-weight: 800; }
.mobile-menu__list .menu-item-has-children > a::after { content: ""; flex: 0 0 auto; width: 8px; height: 8px; margin-right: 4px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); opacity: .72; }
.mobile-menu__list .sub-menu { display: none; padding: 8px 0 12px 14px; margin: 0 0 2px; border-bottom: 1px solid var(--line); }
.mobile-menu__list .menu-item-has-children.is-submenu-open > .sub-menu,
.mobile-menu__list .current-menu-ancestor > .sub-menu { display: block; }
.mobile-menu__list .menu-item-has-children.is-submenu-open > a::after,
.mobile-menu__list .current-menu-ancestor > a::after { margin-top: 4px; transform: rotate(225deg); }
.mobile-menu__list .sub-menu a { display: flex; min-height: 38px; align-items: center; padding: 8px 10px; color: #456371; background: transparent; border-radius: 9px; font-size: .78rem; font-weight: 700; line-height: 1.35; border-bottom: 0; }
.mobile-menu__list .sub-menu a:hover, .mobile-menu__list .sub-menu a:focus { color: #047fa6; background: #eef9fb; }
.mobile-menu__call { display: block; margin-top: 18px; padding: 15px; color: var(--navy); background: linear-gradient(135deg, var(--yellow), #ffd95d); border-radius: 14px; box-shadow: 0 12px 25px rgba(255,196,18,.24); text-align: center; }

.site-main[class*="site-main--bang-gia"] {
    padding-left: 0;
    padding-right: 0;
}
.site-main[class*="site-main--bang-gia"] > .shell.prose {
    width: 100%;
    max-width: 1420px;
    padding-left: 20px;
    padding-right: 20px;
}
.site-main[class*="site-main--bang-gia"] > .shell.prose > h1 {
    display: none;
}
.dlql-price-page {
    --price-ink: #17212f;
    --price-muted: #657083;
    --price-line: #dbe4ee;
    --price-soft: #f4f8fb;
    --price-brand: #0c8f7f;
    --price-accent: #f6a623;
    --price-deep: #173b57;
    color: var(--price-ink);
}
.dlql-price-shell {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 22px;
}
.dlql-price-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(420px, .8fr);
    gap: 36px;
    align-items: center;
    overflow: hidden;
    padding: 44px;
    background: linear-gradient(135deg, #e8f7f4 0%, #f9fbff 52%, #fff4df 100%);
    border: 1px solid var(--price-line);
    border-radius: 18px;
}
.dlql-price-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    padding: 7px 12px;
    color: var(--price-brand);
    background: #fff;
    border: 1px solid rgba(12,143,127,.18);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}
.dlql-price-hero h1 {
    margin: 0 0 14px;
    color: var(--price-deep);
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.08;
    letter-spacing: 0;
}
.dlql-price-hero p {
    margin: 0;
    color: #3d4a5d;
    font-size: 17px;
    line-height: 1.65;
}
.dlql-price-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}
.dlql-price-btn {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
}
.dlql-price-btn--primary {
    color: #fff;
    background: var(--price-brand);
}
.dlql-price-btn--light {
    color: var(--price-deep);
    background: #fff;
    border-color: var(--price-line);
}
.dlql-price-media {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    background: #d8eef0;
    border-radius: 14px;
}
.dlql-price-media img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dlql-price-note {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 18px 0 0;
}
.dlql-price-note div {
    padding: 14px;
    background: #fff;
    border: 1px solid var(--price-line);
    border-radius: 12px;
}
.dlql-price-note b {
    display: block;
    color: var(--price-deep);
    font-size: 15px;
}
.dlql-price-note span {
    display: block;
    margin-top: 4px;
    color: var(--price-muted);
    font-size: 13px;
}
.dlql-price-section {
    margin-top: 36px;
}
.dlql-price-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
}
.dlql-price-head h2 {
    margin: 0;
    color: var(--price-deep);
    font-size: clamp(24px, 3vw, 34px);
}
.dlql-price-head p {
    max-width: 520px;
    margin: 0;
    color: var(--price-muted);
    line-height: 1.55;
}
.dlql-price-table-wrap {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--price-line);
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(23,59,87,.08);
}
.dlql-price-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
}
.dlql-price-table th {
    padding: 18px 20px;
    color: #fff;
    background: #173b57;
    font-size: 14px;
    text-align: left;
}
.dlql-price-table td {
    padding: 20px;
    color: #314056;
    border-top: 1px solid var(--price-line);
    vertical-align: top;
}
.dlql-price-table td strong {
    display: block;
    margin-bottom: 5px;
    color: #17212f;
}
.dlql-price-table__link {
    color: inherit;
    text-decoration: none;
    text-underline-offset: 4px;
}
.dlql-price-table__link:hover,
.dlql-price-table__link:focus {
    color: var(--price-brand);
    text-decoration: underline;
}
.dlql-price-table td span {
    color: var(--price-brand);
    font-size: 12px;
    font-weight: 700;
}
.dlql-price-table td b {
    color: #d36b00;
}
.dlql-price-grid,
.dlql-price-process {
    display: grid;
    gap: 14px;
}
.dlql-price-grid {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 18px;
}
.dlql-price-card {
    padding: 18px;
    background: var(--price-soft);
    border: 1px solid var(--price-line);
    border-radius: 14px;
}
.dlql-price-card b {
    display: block;
    margin-bottom: 8px;
    color: var(--price-deep);
    font-size: 16px;
}
.dlql-price-card p {
    margin: 0;
    color: var(--price-muted);
    font-size: 14px;
    line-height: 1.55;
}
.dlql-price-process {
    grid-template-columns: repeat(4, 1fr);
    counter-reset: step;
}
.dlql-price-step {
    position: relative;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--price-line);
    border-radius: 14px;
}
.dlql-price-step::before {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    margin-bottom: 12px;
    color: #fff;
    background: var(--price-brand);
    border-radius: 50%;
    content: counter(step);
    counter-increment: step;
    font-weight: 800;
}
.dlql-price-step b {
    display: block;
    color: var(--price-deep);
}
.dlql-price-step p {
    margin: 8px 0 0;
    color: var(--price-muted);
    font-size: 14px;
    line-height: 1.55;
}
.dlql-price-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
    margin-top: 30px;
    padding: 28px;
    color: #fff;
    background: #173b57;
    border-radius: 18px;
}
.dlql-price-cta h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 28px;
}
.dlql-price-cta p {
    margin: 0;
    color: #dce9f2;
    line-height: 1.6;
}
.dlql-price-cta .dlql-price-btn {
    color: #17212f;
    background: var(--price-accent);
}

@media (max-width: 760px) {
  .site-main[class*="site-main--bang-gia"] {
    overflow-x: hidden;
  }
  .site-main[class*="site-main--bang-gia"] > .shell.prose {
    width: 100% !important;
    max-width: none !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .dlql-price-shell {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
  }
  .dlql-price-hero {
    display: block !important;
    grid-template-columns: 1fr !important;
    padding: 20px !important;
    border-radius: 16px !important;
  }
  .dlql-price-kicker {
    display: inline-flex !important;
    max-width: 100% !important;
    white-space: normal !important;
    line-height: 1.35 !important;
  }
  .dlql-price-hero h1 {
    font-size: 30px !important;
    line-height: 1.08 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }
  .dlql-price-hero p {
    font-size: 15px !important;
    line-height: 1.55 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }
  .dlql-price-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }
  .dlql-price-btn {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .dlql-price-media {
    position: relative !important;
    min-height: 190px !important;
    margin-top: 18px !important;
  }
  .dlql-price-note,
  .dlql-price-grid,
  .dlql-price-process {
    grid-template-columns: 1fr !important;
  }
  .dlql-price-head {
    display: block !important;
  }
  .dlql-price-head h2 {
    font-size: 25px !important;
    line-height: 1.16 !important;
  }
  .dlql-price-head p {
    max-width: none !important;
    margin-top: 8px !important;
    font-size: 15px !important;
  }
  .dlql-price-table thead {
    display: none !important;
  }
  .dlql-price-table,
  .dlql-price-table tbody,
  .dlql-price-table tr,
  .dlql-price-table td {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .dlql-price-table tr {
    border-top: 1px solid var(--line) !important;
    padding: 10px 0 !important;
  }
  .dlql-price-table td {
    border: 0 !important;
    padding: 9px 14px !important;
  }
  .dlql-price-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 4px;
    color: var(--brand);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
  }
  .dlql-price-cta {
    display: block !important;
    padding: 22px !important;
  }
  .dlql-price-cta h2 {
    font-size: 24px !important;
    line-height: 1.18 !important;
  }
}

.site-main[class*="site-main--bang-gia"] {
    padding-top: 42px !important;
}
.site-main[class*="site-main--bang-gia"] > .shell.prose {
    max-width: 1420px !important;
}
.site-main[class*="site-main--bang-gia"] .dlql-price-shell {
    max-width: 1380px !important;
}
.site-main[class*="site-main--bang-gia"] .dlql-price-hero {
    padding: 34px 44px !important;
    align-items: center !important;
    gap: 34px !important;
}
.site-main[class*="site-main--bang-gia"] .dlql-price-media {
    min-height: 0 !important;
    height: 292px !important;
    background: #fff !important;
}
.site-main[class*="site-main--bang-gia"] .dlql-price-media img {
    object-fit: contain !important;
    background: #fff !important;
}

@media (max-width: 980px) {
    .site-main[class*="site-main--bang-gia"] {
        padding-top: 28px !important;
    }
    .site-main[class*="site-main--bang-gia"] .dlql-price-hero {
        padding: 24px !important;
    }
    .site-main[class*="site-main--bang-gia"] .dlql-price-media {
        height: 210px !important;
        min-height: 210px !important;
    }
}

/* Hero */
.hero { position: relative; min-height: 660px; overflow: hidden; background: #eef3f3; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, #f4f7f6 0%, rgba(244,247,246,.98) 36%, rgba(244,247,246,.70) 53%, rgba(244,247,246,0) 72%); }
.hero__photo { position: absolute; inset: 0 0 0 auto; width: 68%; background: url('../images/hero-technician-v2.webp') center right / cover no-repeat; }
.hero__grid { position: relative; z-index: 2; min-height: 660px; display: flex; align-items: center; }
.hero__content { width: min(660px, 55%); padding: 64px 0 96px; }
.hero h1 { max-width: 650px; font-size: clamp(2.55rem, 4.25vw, 4rem); line-height: .98; }
.hero h1 span { color: var(--blue); }
.hero__typing { position: relative; display: inline-block; overflow: hidden; vertical-align: bottom; white-space: nowrap; border-right: 3px solid rgba(8, 142, 184, .55); animation: heroTyping 4.6s steps(30, end) infinite alternate, heroCaret .8s step-end infinite; }
.hero__lead { max-width: 625px; color: #3f5967; font-size: 1.02rem; line-height: 1.68; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 24px; }
.hero__microcopy { display: flex; align-items: flex-start; gap: 8px; max-width: 530px; margin: -16px 0 27px; color: #56707c; font-size: .76rem; line-height: 1.55; }
.hero__microcopy span { color: var(--blue); font-weight: 900; }
.hero__proof { display: flex; gap: 0; width: max-content; max-width: 100%; padding: 14px 0; border-top: 1px solid rgba(11,43,67,.14); border-bottom: 1px solid rgba(11,43,67,.14); }
.hero__proof div { min-width: 132px; padding: 0 22px; border-right: 1px solid rgba(11,43,67,.14); }
.hero__proof div:first-child { padding-left: 0; }
.hero__proof div:last-child { border-right: 0; }
.hero__proof strong, .hero__proof span { display: block; }
.hero__proof strong { color: var(--navy); font-size: 1.15rem; line-height: 1.2; }
.hero__proof span { margin-top: 4px; color: var(--muted); font-size: .72rem; }

@keyframes heroTyping {
    0%, 14% { max-width: 0; }
    52%, 100% { max-width: 12.5em; }
}

/* Header dropdown hover bridge - keeps submenu open while moving the cursor downward. */
.primary-nav__list > li.menu-item-has-children::after {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  top: 100%;
  height: 18px;
  z-index: 29;
}

.primary-nav__list .sub-menu {
  top: 100%;
}

@keyframes heroCaret {
    50% { border-color: transparent; }
}

.trust-strip { position: relative; z-index: 4; margin-top: -42px; background: transparent; }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.trust-item { min-height: 112px; padding: 27px 25px; border-right: 1px solid #eef3f4; transition: background .5s var(--ease-soft); }
.trust-item:last-child { border-right: 0; }
.trust-item:hover { background: #f9fcfc; }
.trust-item strong, .trust-item span { display: block; }
.trust-item strong { color: var(--navy); font-size: .96rem; }
.trust-item strong::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 9px; background: var(--cyan); border-radius: 50%; vertical-align: 1px; transition: transform .4s var(--ease-soft), box-shadow .4s var(--ease-soft); }
.trust-item:hover strong::before { transform: scale(1.35); box-shadow: 0 0 0 5px color-mix(in srgb, var(--cyan) 16%, transparent); }
.trust-item span { margin-top: 7px; padding-left: 16px; color: var(--muted); font-size: .8rem; }

/* High-conversion quick booking */
.quick-booking { padding: 64px 0 0; background: var(--white); scroll-margin-top: 122px; }
.quick-booking__shell { position: relative; display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: 44px; overflow: hidden; padding: 44px; color: var(--white); background: linear-gradient(135deg, #082f47 0%, #0b5874 100%); border-radius: 30px; box-shadow: 0 24px 60px rgba(7,43,59,.18); }
.quick-booking__shell::before { content: ""; position: absolute; right: 40%; bottom: -170px; width: 320px; height: 320px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 54px rgba(255,255,255,.025); pointer-events: none; }
.quick-booking__intro { position: relative; z-index: 1; }
.quick-booking__intro .eyebrow { color: var(--yellow); }
.quick-booking__intro h2 { max-width: 430px; color: var(--white); font-size: clamp(2rem, 3.5vw, 3rem); }
.quick-booking__intro > p:not(.eyebrow) { max-width: 480px; color: #c9e0e9; font-size: .9rem; }
.quick-booking__assurances { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 25px; }
.quick-booking__assurances span { padding: 7px 10px; color: #d9eef4; border: 1px solid rgba(255,255,255,.17); border-radius: 999px; font-size: .68rem; font-weight: 700; }
.quick-booking__assurances span::before { content: "✓"; margin-right: 6px; color: var(--yellow); font-weight: 900; }
.quick-booking__form-wrap { position: relative; z-index: 1; padding: 28px; color: var(--ink); background: var(--white); border-radius: 23px; box-shadow: 0 16px 40px rgba(0,0,0,.13); }
.quick-booking__services { margin: 0 0 20px; padding: 0; border: 0; }
.quick-booking__services legend { margin-bottom: 10px; color: #38515f; font-size: .72rem; font-weight: 800; }
.quick-booking__services { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.quick-booking__services legend { grid-column: 1 / -1; }
.quick-booking__services label { position: relative; cursor: pointer; }
.quick-booking__services input { position: absolute; opacity: 0; pointer-events: none; }
.quick-booking__services label span { display: grid; min-height: 44px; place-items: center; padding: 7px; color: #496673; background: #f5f8f9; border: 1px solid #dbe7eb; border-radius: 12px; font-size: .72rem; font-weight: 800; text-align: center; transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease; }
.quick-booking__services input:checked + span { color: var(--white); background: var(--blue); border-color: var(--blue); box-shadow: 0 8px 18px rgba(8,126,169,.2); }
.quick-booking__services input:focus-visible + span { outline: 3px solid rgba(38,184,195,.28); outline-offset: 2px; }
.quick-booking__fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
.quick-booking__fields label span { display: block; margin: 0 0 6px 2px; color: #38515f; font-size: .7rem; font-weight: 800; }
.quick-booking__fields input { width: 100%; min-height: 48px; padding: 11px 13px; color: var(--ink); background: #f9fbfc; border: 1px solid #cfdee6; border-radius: 11px; }
.quick-booking__fields input:focus { outline: 3px solid rgba(38,184,195,.2); border-color: var(--cyan); }
.quick-booking__fields .button { grid-column: 1 / -1; min-height: 50px; justify-content: space-between; padding-left: 19px; }
.quick-booking__fields .button span { display: grid; width: 28px; height: 28px; place-items: center; margin: 0; color: var(--blue); background: var(--white); border-radius: 50%; font-size: 1rem; }
.quick-booking__privacy { margin: 12px 0 0; color: #78909a; font-size: .66rem; text-align: center; }

/* Services: asymmetric dispatch board */
.services-section { position: relative; overflow: hidden; padding-top: 116px; padding-bottom: 100px; background: linear-gradient(180deg, #fff 0%, #f7fbfb 100%); }
.services-section::before { content: ""; position: absolute; top: 45px; right: -110px; width: 340px; height: 340px; background: radial-gradient(circle, rgba(38,184,195,.1), rgba(38,184,195,0) 68%); pointer-events: none; }
.services-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-flow: dense; grid-auto-rows: 205px; gap: 16px; }
.service-card { --service-accent: var(--blue); position: relative; isolation: isolate; min-width: 0; overflow: hidden; padding: 22px; background: linear-gradient(145deg, #fff 0%, #f4f9fa 100%); border: 1px solid #dbe9ed; border-radius: 22px; box-shadow: var(--shadow-soft); transition: transform .5s var(--ease-soft), border-color .5s var(--ease-soft), box-shadow .5s var(--ease-soft); }
.service-card:nth-child(3n+2) { --service-accent: var(--cyan); }
.service-card:nth-child(3n) { --service-accent: #e6a512; }
.service-card::before { content: ""; position: absolute; z-index: -1; right: -42px; bottom: -55px; width: 130px; height: 130px; background: var(--service-accent); border-radius: 50%; opacity: .045; transition: transform .5s var(--ease-soft), opacity .5s var(--ease-soft); }
.service-card:hover { border-color: #a9d4dc; box-shadow: var(--shadow-hover); transform: translateY(-6px); }
.service-card:hover::before { opacity: .1; transform: scale(1.15); }
.service-card:first-child { grid-column: span 6; grid-row: span 2; padding: 34px; color: var(--white); background: linear-gradient(145deg, #07354e 0%, #087ea9 72%, #149eb5 100%); border-color: transparent; box-shadow: 0 20px 50px rgba(7,53,78,.22); }
.service-card:nth-child(n+2):nth-child(-n+9) { grid-column: span 3; }
.service-card:nth-child(n+10) { grid-column: span 4; }
.service-card:first-child::before { right: -95px; bottom: -110px; width: 330px; height: 330px; background: transparent; border: 1px solid rgba(255,255,255,.16); opacity: 1; box-shadow: 0 0 0 46px rgba(255,255,255,.035), 0 0 0 92px rgba(255,255,255,.025); }
.service-card__top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.service-card__icon { display: grid; width: 48px; height: 48px; flex: 0 0 auto; place-items: center; color: var(--service-accent); background: color-mix(in srgb, var(--service-accent) 11%, white); border: 1px solid color-mix(in srgb, var(--service-accent) 14%, white); border-radius: 16px; transition: color .25s ease, background .25s ease, transform .25s ease; }
.service-card:hover .service-card__icon { color: var(--white); background: var(--service-accent); transform: rotate(-4deg) scale(1.05); }
.service-card__icon svg { width: 25px; height: 25px; }
.service-card__number { position: absolute; top: 17px; right: 18px; color: var(--service-accent); font-size: 2.3rem; font-weight: 900; letter-spacing: -.06em; line-height: 1; opacity: .13; }
.service-card__body { padding: 0; }
.service-card__body h3 { margin-bottom: 8px; font-size: 1.02rem; line-height: 1.3; }
.service-card__body p { display: -webkit-box; min-height: 0; overflow: hidden; color: var(--muted); font-size: .79rem; line-height: 1.52; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.service-card:nth-child(n+2):nth-child(-n+9) .service-card__body { padding-right: 34px; }
.service-card:nth-child(n+2):nth-child(-n+9) .text-link { position: absolute; right: 18px; bottom: 17px; display: grid; width: 36px; height: 36px; place-items: center; padding: 0; overflow: hidden; color: var(--white); background: var(--service-accent); border-radius: 50%; font-size: 0; box-shadow: 0 7px 18px color-mix(in srgb, var(--service-accent) 24%, transparent); }
.service-card:nth-child(n+2):nth-child(-n+9) .text-link span { font-size: 1rem; transition: transform .25s ease; }
.service-card:nth-child(n+2):nth-child(-n+9) .text-link:hover span { transform: translateX(2px); }
.service-card:first-child .service-card__top { margin-bottom: 42px; }
.service-card:first-child .service-card__icon { width: 76px; height: 76px; color: var(--navy); background: var(--yellow); border: 0; border-radius: 24px; box-shadow: 0 14px 32px rgba(0,0,0,.14); }
.service-card:first-child:hover .service-card__icon { color: var(--navy); background: var(--yellow); }
.service-card:first-child .service-card__icon svg { width: 38px; height: 38px; }
.service-card:first-child .service-card__number { top: auto; right: 24px; bottom: 5px; color: var(--white); font-size: 8rem; opacity: .06; }
.service-card:first-child .service-card__body { position: relative; z-index: 1; max-width: 440px; }
.service-card:first-child .service-card__body h3 { margin-bottom: 14px; color: var(--white); font-size: clamp(1.7rem, 2.4vw, 2.25rem); }
.service-card:first-child .service-card__body p { display: block; max-width: 390px; margin-bottom: 28px; color: #d8edf3; font-size: .96rem; line-height: 1.7; }
.service-card:first-child .text-link { display: inline-flex; align-items: center; gap: 12px; padding: 11px 15px 11px 18px; color: var(--navy); background: var(--white); border-radius: 999px; }
.service-card:first-child .text-link span { display: grid; width: 28px; height: 28px; place-items: center; color: var(--white); background: var(--blue); border-radius: 50%; }
.service-card:nth-child(n+10) { display: grid; grid-template-columns: 50px minmax(0, 1fr); align-items: start; gap: 16px; }
.service-card:nth-child(n+10) .service-card__top { margin: 0; }
.service-card:nth-child(n+10) .service-card__body p { margin-bottom: 12px; }
.service-card:nth-child(n+10) .text-link { display: inline-flex; align-items: center; min-height: 36px; padding: 8px 0; font-size: .75rem; }

/* Pricing and proof */
.price-section { background: #f4f7f7; border-top: 1px solid #e6eef0; border-bottom: 1px solid #e6eef0; }
.price-section__heading { align-items: end; }
.price-section__heading > p { max-width: 510px; }
.price-grid { overflow: hidden; background: var(--white); border: 1px solid #d7e5e9; border-radius: 24px; box-shadow: 0 18px 46px rgba(7,43,59,.08); }
.price-grid__header, .price-card { display: grid; grid-template-columns: 220px 180px minmax(0, 1fr) 165px; align-items: center; gap: 24px; }
.price-grid__header { min-height: 52px; padding: 0 26px; color: #cfe3eb; background: var(--navy); font-size: .66rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.price-card { --price-accent: var(--blue); position: relative; min-height: 150px; padding: 22px 26px; background: var(--white); border-bottom: 1px solid #e1ebee; transition: background .5s var(--ease-soft); }
.price-card:last-child { border-bottom: 0; }
.price-card::before { content: ""; position: absolute; top: 24px; bottom: 24px; left: 0; width: 3px; background: var(--price-accent); border-radius: 0 999px 999px 0; opacity: 0; transform: scaleY(.4); transition: opacity .4s var(--ease-soft), transform .4s var(--ease-soft); }
.price-card:nth-of-type(2) { --price-accent: var(--cyan); }
.price-card:nth-of-type(3) { --price-accent: #e8a915; }
.price-card:nth-of-type(4) { --price-accent: #17a374; }
.price-card:hover { background: #f7fbfb; }
.price-card:hover::before { opacity: 1; transform: scaleY(1); }
.price-card__head { display: flex; align-items: center; gap: 13px; margin: 0; }
.price-card__icon { display: grid; width: 48px; height: 48px; flex: 0 0 auto; place-items: center; color: var(--price-accent); background: #edf7f8; border: 1px solid #dcebed; border-radius: 15px; }
.price-card__icon svg { width: 25px; height: 25px; }
.price-card__index { display: block; margin-bottom: 2px; color: var(--price-accent); font-size: .66rem; font-weight: 900; letter-spacing: .16em; }
.price-card__label { margin: 0; color: var(--navy); font-size: .82rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.price-card__price { margin: 0; color: var(--navy); font-size: clamp(1.65rem, 2.4vw, 2.15rem); font-weight: 900; letter-spacing: -.045em; line-height: 1; }
.price-card__price span { display: block; margin-bottom: 7px; color: var(--price-accent); font-size: .62rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.price-card ul { min-height: 0; margin: 0; padding: 0; color: var(--muted); font-size: .76rem; list-style: none; }
.price-card li { position: relative; margin: 5px 0; padding-left: 20px; }
.price-card li::before { content: "✓"; position: absolute; top: 0; left: 0; color: var(--price-accent); font-weight: 900; }
.price-card .button { width: 100%; min-width: 0; justify-content: space-between; padding: 10px 11px 10px 15px; color: var(--navy); background: transparent; border-color: #c8dce2; }
.price-card .button span { display: grid; width: 27px; height: 27px; place-items: center; color: var(--white); background: var(--price-accent); border-radius: 50%; }
.price-card .button:hover { color: var(--white); background: var(--price-accent); border-color: var(--price-accent); }
.price-card .button:hover span { color: var(--price-accent); background: var(--white); }
.price-note { margin: 20px 0 0; color: #5c7783; font-size: .76rem; text-align: center; }

.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 72px; }
.about-media { position: relative; }
.about-media::after { content: "Đội ngũ tại TP.HCM"; position: absolute; right: 18px; bottom: 18px; padding: 11px 15px; color: var(--navy); background: rgba(255,255,255,.94); border-radius: 999px; box-shadow: var(--shadow-sm); font-size: .74rem; font-weight: 800; }
.about-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg); }
.about-content > p:not(.eyebrow) { color: var(--muted); font-size: 1.02rem; }
.proof-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 30px 0 24px; }
.proof-grid div { --proof-accent: var(--blue); position: relative; isolation: isolate; min-height: 118px; overflow: hidden; padding: 24px 22px 21px; background: linear-gradient(145deg, #fff 0%, #f3f9fa 100%); border: 1px solid #dcebed; border-radius: 18px; box-shadow: var(--shadow-soft); transition: transform .5s var(--ease-soft), border-color .5s var(--ease-soft), box-shadow .5s var(--ease-soft); }
.proof-grid div:nth-child(2) { --proof-accent: var(--cyan); }
.proof-grid div:nth-child(3) { --proof-accent: #edaa10; }
.proof-grid div:nth-child(4) { --proof-accent: #17a374; }
.proof-grid div::before { content: ""; position: absolute; top: 0; right: 20px; left: 20px; height: 3px; background: linear-gradient(90deg, var(--proof-accent), transparent); border-radius: 0 0 999px 999px; }
.proof-grid div::after { content: ""; position: absolute; z-index: -1; top: -30px; right: -28px; width: 88px; height: 88px; background: var(--proof-accent); border-radius: 50%; opacity: .07; transition: transform .35s ease, opacity .35s ease; }
.proof-grid div:hover { border-color: color-mix(in srgb, var(--proof-accent) 35%, white); box-shadow: 0 16px 36px rgba(7,43,59,.12); transform: translateY(-4px); }
.proof-grid div:hover::after { opacity: .12; transform: scale(1.18); }
.proof-grid strong, .proof-grid span { display: block; }
.proof-grid strong { position: relative; color: var(--navy); font-size: clamp(1.55rem, 2.4vw, 2rem); font-weight: 900; letter-spacing: -.04em; line-height: 1; }
.proof-grid strong::after { content: ""; display: inline-block; width: 7px; height: 7px; margin-left: 8px; background: var(--proof-accent); border-radius: 50%; vertical-align: .18em; box-shadow: 0 0 0 5px color-mix(in srgb, var(--proof-accent) 12%, transparent); }
.proof-grid span { margin-top: 12px; color: #577481; font-size: .82rem; font-weight: 650; line-height: 1.35; }
.about-content > .button { min-width: 256px; justify-content: space-between; padding-right: 19px; box-shadow: 0 12px 28px rgba(8,126,169,.2); }
.about-content > .button::after { content: "\2192"; display: inline-grid; width: 30px; height: 30px; place-items: center; margin-left: 16px; color: var(--blue); background: var(--white); border-radius: 50%; font-size: 1.05rem; transition: transform .25s ease; }
.about-content > .button:hover::after { transform: translateX(3px); }

/* Process and reasons */
.process-section { overflow: hidden; padding-top: 10px; color: var(--ink); background: var(--white); }
.process-section h2, .process-section h3 { color: var(--ink); }
.process-section .eyebrow { color: var(--blue); }
.process-list { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; padding: 0; list-style: none; }
.process-list::before, .process-list::after { content: ""; position: absolute; top: 29px; right: 7%; left: 7%; height: 4px; border-radius: 999px; }
.process-list::before { background: #d9e7eb; }
.process-list::after { z-index: 0; background: linear-gradient(90deg, var(--blue), var(--cyan), var(--yellow), var(--cyan), var(--blue)); background-size: 220% 100%; box-shadow: 0 0 16px rgba(38,184,195,.28); transform: scaleX(1); transform-origin: left center; }
.process-section.process-animate .process-list::after { transform: scaleX(0); }
.process-section.process-animate.is-visible .process-list::after { transform: scaleX(1); transition: transform 1.65s cubic-bezier(.22,.8,.28,1); animation: process-color-flow 5s linear 1.65s infinite; }
.process-list li { position: relative; z-index: 1; min-height: 205px; padding: 0 16px 22px; text-align: center; transition: transform .28s ease, opacity .45s ease; }
.process-section.process-animate .process-list li { opacity: 0; transform: translateY(20px); }
.process-section.process-animate.is-visible .process-list li { opacity: 1; transform: translateY(0); }
.process-section.process-animate.is-visible .process-list li:nth-child(1) { transition-delay: .12s; }
.process-section.process-animate.is-visible .process-list li:nth-child(2) { transition-delay: .34s; }
.process-section.process-animate.is-visible .process-list li:nth-child(3) { transition-delay: .56s; }
.process-section.process-animate.is-visible .process-list li:nth-child(4) { transition-delay: .78s; }
.process-section.process-animate.is-visible .process-list li:nth-child(5) { transition-delay: 1s; }
.process-section.is-visible .process-list li:hover { transform: translateY(-6px); }
.process-list li > span { position: relative; z-index: 2; display: inline-grid; width: 62px; height: 62px; place-items: center; margin-bottom: 22px; color: var(--white); background: linear-gradient(135deg, var(--blue), var(--cyan)); border: 7px solid var(--white); border-radius: 50%; box-shadow: 0 0 0 1px #afd3dc, 0 8px 24px rgba(8,126,169,.18); font-size: .78rem; font-weight: 900; transition: transform .28s ease, box-shadow .28s ease; }
.process-list li > span::after { content: ""; position: absolute; inset: -9px; z-index: -1; border: 1px solid rgba(38,184,195,.44); border-radius: 50%; opacity: 0; }
.process-section.process-animate.is-visible .process-list li:nth-child(1) > span::after { animation: process-node-ring .8s .18s ease-out; }
.process-section.process-animate.is-visible .process-list li:nth-child(2) > span::after { animation: process-node-ring .8s .42s ease-out; }
.process-section.process-animate.is-visible .process-list li:nth-child(3) > span::after { animation: process-node-ring .8s .66s ease-out; }
.process-section.process-animate.is-visible .process-list li:nth-child(4) > span::after { animation: process-node-ring .8s .90s ease-out; }
.process-section.process-animate.is-visible .process-list li:nth-child(5) > span::after { animation: process-node-ring .8s 1.14s ease-out; }
.process-list li:hover > span { transform: scale(1.08); box-shadow: 0 0 0 1px #9bcbd5, 0 12px 30px rgba(8,126,169,.25); }
.process-list p { color: var(--muted); font-size: .82rem; line-height: 1.55; }

@keyframes process-color-flow {
    to { background-position: -220% 0; }
}

@keyframes process-node-ring {
    0% { opacity: 0; transform: scale(.65); }
    35% { opacity: .85; }
    100% { opacity: 0; transform: scale(1.55); }
}

.reasons-section { position: relative; overflow: hidden; background: var(--canvas); }
.reasons-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-flow: dense; grid-auto-rows: 176px; gap: 14px; }
.reasons-grid article { --reason-accent: var(--cyan); position: relative; isolation: isolate; grid-column: span 4; min-width: 0; overflow: hidden; padding: 25px; background: var(--white); border: 1px solid #e3ecef; border-radius: 20px; box-shadow: 0 8px 24px rgba(7,43,59,.04); }
.reasons-grid article:first-child { grid-column: span 5; grid-row: span 2; padding: 34px; color: var(--white); background: linear-gradient(145deg, #082f47, #087ea9); border: 0; box-shadow: 0 20px 48px rgba(8,47,71,.19); }
.reasons-grid article:nth-child(2), .reasons-grid article:nth-child(3) { display: grid; grid-template-columns: 72px minmax(0, 1fr); grid-template-rows: auto 1fr; grid-column: span 7; column-gap: 20px; align-content: center; }
.reasons-grid article::after { content: "✓"; position: absolute; z-index: -1; right: 20px; bottom: 18px; display: grid; width: 42px; height: 42px; place-items: center; color: var(--reason-accent); background: color-mix(in srgb, var(--reason-accent) 10%, white); border-radius: 50%; font-size: .9rem; font-weight: 900; opacity: .8; }
.reasons-grid article:first-child::after { right: -30px; bottom: -30px; width: 190px; height: 190px; color: rgba(255,255,255,.16); background: transparent; border: 34px solid rgba(255,255,255,.055); font-size: 3rem; opacity: 1; }
.reasons-grid article > span { display: block; margin-bottom: 16px; color: var(--reason-accent); font-size: 2.5rem; font-weight: 900; letter-spacing: -.06em; line-height: 1; opacity: .68; }
.reasons-grid article:first-child > span { margin-bottom: 72px; color: var(--yellow); font-size: 4.8rem; opacity: 1; }
.reasons-grid article:first-child h3 { max-width: 330px; color: var(--white); font-size: 1.75rem; }
.reasons-grid article:first-child p { max-width: 330px; color: #cfe6ee; font-size: .94rem; line-height: 1.65; }
.reasons-grid article:nth-child(2) > span, .reasons-grid article:nth-child(3) > span { grid-row: 1 / 3; margin: 3px 0 0; font-size: 3.2rem; }
.reasons-grid article:nth-child(2) h3, .reasons-grid article:nth-child(3) h3 { align-self: end; margin-bottom: 7px; }
.reasons-grid p { margin: 0; padding-right: 45px; color: var(--muted); font-size: .82rem; line-height: 1.55; }

/* FAQ and contact */
.faq-section { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: 76px; }
.faq-intro { position: sticky; top: 145px; }
.faq-intro > p:not(.eyebrow) { color: var(--muted); }
.faq-intro a { color: var(--blue); font-weight: 800; }
.faq-list details { margin-bottom: 10px; background: var(--canvas); border: 1px solid transparent; border-radius: var(--radius-sm); transition: background .5s var(--ease-soft), border-color .5s var(--ease-soft), box-shadow .5s var(--ease-soft); }
.faq-list details[open] { background: var(--white); border-color: var(--line); box-shadow: var(--shadow-sm); }
.faq-list summary { position: relative; padding: 19px 52px 19px 20px; cursor: pointer; font-weight: 750; list-style: none; transition: color .3s var(--ease-soft); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--blue); }
.faq-list summary::after { content: "+"; position: absolute; right: 20px; top: 14px; display: inline-block; color: var(--blue); font-size: 1.5rem; font-weight: 400; transition: transform .45s var(--ease-spring); }
.faq-list details[open] summary::after { transform: rotate(45deg); color: var(--muted); }
.faq-answer { padding: 0 20px 18px; color: var(--muted); animation: faq-reveal .45s var(--ease-soft); }
.faq-answer p { margin: 0; }
@keyframes faq-reveal { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

.contact-section { padding: 28px 0 96px; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: .84fr 1.16fr; gap: 68px; align-items: center; padding: 64px; background: linear-gradient(135deg, var(--navy) 0%, #0d5270 100%); border-radius: var(--radius-lg); }
.contact-content, .contact-content h2 { color: var(--white); }
.contact-content .eyebrow { color: var(--yellow); }
.contact-content > p:not(.eyebrow) { color: #c9e0e9; }
.contact-list { padding: 0; list-style: none; }
.contact-list li { display: grid; grid-template-columns: 92px 1fr; gap: 14px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.contact-list li > span { color: #a9cad7; font-size: .78rem; }
.contact-list a { font-weight: 800; }
.contact-list address { font-style: normal; }
.contact-form-wrap { padding: 32px; background: var(--white); border-radius: 22px; box-shadow: var(--shadow); }
.contact-form p { margin-bottom: 15px; }
.contact-form label { display: block; margin-bottom: 6px; color: #314a59; font-size: .81rem; font-weight: 750; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 12px 14px; color: var(--ink); background: #f9fbfc; border: 1px solid #cfdee6; border-radius: 10px; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: 3px solid rgba(38,184,195,.2); border-color: var(--cyan); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }
.form-row p { margin: 0; }
.form-trap { position: absolute; left: -9999px; }
.form-privacy { margin: 11px 0 0 !important; color: var(--muted); font-size: .72rem; text-align: center; }
.form-notice { margin-bottom: 18px; padding: 12px 14px; border-radius: 10px; font-weight: 700; }
.form-notice--success { color: var(--success); background: #ecfdf3; }
.form-notice--error { color: var(--danger); background: #fef3f2; }

/* Lead popup modal */
.dlql-modal { position: fixed; inset: 0; z-index: 2200; display: grid; place-items: center; padding: 20px; }
.dlql-modal[hidden] { display: none; }
.dlql-modal__backdrop { position: absolute; inset: 0; background: rgba(6,20,32,.6); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); animation: dlql-modal-fade .35s var(--ease-soft); }
.dlql-modal__dialog {
    position: relative; z-index: 1; width: min(540px, 100%); max-height: 88vh; overflow-y: auto;
    padding: 40px 38px; background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover); animation: dlql-modal-pop .45s var(--ease-spring);
}
.dlql-modal__close {
    position: absolute; top: 18px; right: 18px; display: grid; width: 36px; height: 36px; place-items: center;
    color: var(--muted); background: var(--canvas); border: 0; border-radius: 50%; font-size: 1.4rem; line-height: 1;
    cursor: pointer; transition: color .3s var(--ease-soft), background .3s var(--ease-soft), transform .3s var(--ease-soft);
}
.dlql-modal__close:hover { color: var(--navy); background: #e7eef0; transform: rotate(90deg); }
.dlql-modal__title { margin: 0 0 8px; color: var(--navy); font-size: clamp(1.4rem, 2.4vw, 1.85rem); font-weight: 800; line-height: 1.18; letter-spacing: 0; padding-right: 30px; }
.dlql-modal__lead { color: var(--muted); font-size: .88rem; }
.dlql-modal__notice { margin-bottom: 16px; padding: 12px 14px; border-radius: 10px; font-weight: 700; font-size: .88rem; animation: dlql-modal-fade .3s var(--ease-soft); }
.dlql-modal__notice[hidden] { display: none; }
.dlql-modal__notice--success { color: var(--success); background: #ecfdf3; }
.dlql-modal__notice--error { color: var(--danger); background: #fef3f2; }
.dlql-modal__form { display: grid; gap: 4px; margin-top: 18px; }
.dlql-modal__form label { margin: 10px 0 6px; color: #314a59; font-size: .81rem; font-weight: 750; }
.dlql-modal__form input, .dlql-modal__form select, .dlql-modal__form textarea {
    width: 100%; padding: 12px 14px; color: var(--ink); background: #f9fbfc; border: 1px solid #cfdee6;
    border-radius: var(--radius-sm); transition: border-color .3s var(--ease-soft), box-shadow .3s var(--ease-soft);
}
.dlql-modal__form textarea { resize: vertical; }
.dlql-modal__form input:focus, .dlql-modal__form select:focus, .dlql-modal__form textarea:focus { outline: 3px solid rgba(38,184,195,.2); border-color: var(--cyan); }
.dlql-modal__form .button { margin-top: 18px; }
.dlql-modal__form .form-privacy { margin: 11px 0 0 !important; color: var(--muted); font-size: .72rem; text-align: center; }
.dlql-modal__form[data-submitting] .button { pointer-events: none; opacity: .7; }
body.dlql-modal-open { overflow: hidden; }

@keyframes dlql-modal-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes dlql-modal-pop { from { opacity: 0; transform: translateY(26px) scale(.96); } to { opacity: 1; transform: translateY(0) scale(1); } }

@media (max-width: 600px) {
    .dlql-modal__dialog { padding: 30px 22px; border-radius: var(--radius); }
}

/* Posts, CTA and footer */
.latest-posts { padding-top: 42px; background: linear-gradient(180deg, var(--white), #f8fbfb); }
.news-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-flow: dense; gap: 18px; }
.news-card { display: grid; grid-template-columns: 42% 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-soft); transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), border-color .5s var(--ease-soft); }
.news-card:hover { border-color: #c9e2e7; box-shadow: var(--shadow-hover); transform: translateY(-5px); }
.news-card:first-child { grid-row: span 2; display: block; }
.news-card__image { display: block; overflow: hidden; background: var(--canvas); }
.news-card__image img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform .6s var(--ease-soft); }
.news-card:hover .news-card__image img { transform: scale(1.06); }

/* Category archive — "Kiến thức" listing */
.blog-cat { overflow: hidden; background: linear-gradient(180deg, #fff 0%, #f6fbfc 30%, #fff 100%); }
.blog-cat-hero { padding: 48px 0 0; }
.blog-cat-hero__box { padding: 44px; background: linear-gradient(135deg, #083047 0%, #0b6f8f 62%, #10a9b6 100%); border-radius: var(--radius-lg); box-shadow: 0 28px 80px rgba(5,47,80,.18); color: var(--white); }
.blog-cat-hero__box .eyebrow { color: #9ff5ff; }
.blog-cat-hero__box h1 { max-width: 720px; margin-bottom: 16px; color: var(--white); font-size: clamp(2.1rem, 3.6vw, 3.2rem); letter-spacing: -.03em; }
.blog-cat-hero__box > p:not(.eyebrow) { max-width: 680px; margin-bottom: 22px; color: #d6f1f5; font-size: 1rem; line-height: 1.75; }
.blog-cat-hero__meta { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-bottom: 26px; }
.blog-cat-hero__meta span { color: #cdeef2; font-size: .85rem; font-weight: 650; }
.blog-cat-hero__meta strong { color: var(--yellow); font-size: 1.15rem; font-weight: 800; margin-right: 4px; }
.blog-cat-hero__topics { padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); }
.blog-cat-hero__topics-label { display: block; margin-bottom: 12px; color: #9ff5ff; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.blog-cat-hero__topics-list { display: flex; flex-wrap: wrap; gap: 10px; }
.blog-cat-hero__topics-list a { display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px; color: var(--white); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 999px; font-size: .82rem; font-weight: 700; transition: background .35s var(--ease-soft), border-color .35s var(--ease-soft), transform .35s var(--ease-soft); }
.blog-cat-hero__topics-list a:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.32); transform: translateY(-2px); }
.blog-cat-hero__topics-list small { color: #9ff5ff; font-weight: 800; }
.blog-cat-list { padding-bottom: 60px; }
.news-grid--wide { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.news-grid--wide .news-card,
.news-grid--wide .news-card:first-child { display: block; grid-row: auto; }
.blog-cat-cta.service-overview__cta { width: min(calc(100% - 40px), var(--container)); margin: 10px auto 64px; }
.blog-cat-list__more { display: flex; justify-content: center; margin-top: 36px; }
.blog-cat-list__more .button { min-width: 220px; }
.news-card__body { padding: 22px; }
.news-card__body p:last-child { color: var(--muted); }
.image-placeholder { display: grid; min-height: 220px; place-items: center; color: var(--blue); background: var(--canvas); font-size: 2rem; font-weight: 900; }
.posts-fallback { display: grid; grid-template-columns: minmax(220px, .42fr) 1fr; min-height: 300px; overflow: hidden; background: var(--white); border: 1px solid #dce9ec; border-radius: 26px; box-shadow: 0 18px 46px rgba(7,43,59,.08); }
.posts-fallback__visual { position: relative; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; padding: 34px; color: var(--white); background: linear-gradient(145deg, #087ea9, #20b4c1); }
.posts-fallback__visual::before, .posts-fallback__visual::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; }
.posts-fallback__visual::before { right: -70px; bottom: -80px; width: 240px; height: 240px; }
.posts-fallback__visual::after { right: -25px; bottom: -35px; width: 150px; height: 150px; }
.posts-fallback__visual span { position: relative; z-index: 1; font-size: 1.05rem; font-weight: 900; letter-spacing: .15em; line-height: 1.15; }
.posts-fallback__visual strong { position: relative; z-index: 1; color: var(--yellow); font-size: 5.5rem; line-height: .8; }
.posts-fallback__content { align-self: center; max-width: 820px; padding: 42px 48px; }
.posts-fallback__content h3 { max-width: 680px; margin-bottom: 13px; font-size: clamp(1.55rem, 2.7vw, 2.25rem); }
.posts-fallback__content > p:not(.eyebrow) { max-width: 700px; color: var(--muted); }
.posts-fallback__topics { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 25px; }
.posts-fallback__topics span { padding: 8px 12px; color: #315665; background: #eff7f8; border: 1px solid #d9eaed; border-radius: 999px; font-size: .72rem; font-weight: 750; }
.single-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; color: var(--muted); font-size: .78rem; font-weight: 800; }
.single-meta--footer { margin-top: 28px; margin-bottom: 0; padding-top: 18px; border-top: 1px solid #e4eef1; }
.single-meta span { display: inline-flex; align-items: center; min-height: 32px; padding: 6px 11px; background: #f1f7f9; border: 1px solid #dcebef; border-radius: 999px; }
.single-featured-image { width: 100%; margin: 10px 0 30px; border-radius: 24px; box-shadow: var(--shadow-sm); }
.author-box { display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: 18px; align-items: start; margin-top: 42px; padding: 26px; background: linear-gradient(135deg, #f7fbfc, #fff); border: 1px solid #dcebef; border-radius: 24px; box-shadow: var(--shadow-sm); }
.author-box__avatar { display: grid; width: 72px; height: 72px; place-items: center; color: var(--navy); background: var(--yellow); border-radius: 20px; font-weight: 950; }
.author-box .eyebrow { margin-bottom: 7px; }
.author-box__title { margin: 0 0 8px; color: var(--navy); font-size: 1.35rem; font-weight: 800; line-height: 1.18; letter-spacing: 0; }
.author-box p:not(.eyebrow) { margin-bottom: 12px; color: #45606d; }
.author-box a { color: var(--blue); font-weight: 850; }

.location-cta { padding: 34px 0; color: var(--white); background: var(--cyan); }
.location-cta h2 { max-width: 750px; margin-bottom: 6px; color: var(--white); font-size: clamp(1.35rem, 2vw, 1.7rem); }
.location-cta p { margin-bottom: 0; }
.location-cta .eyebrow { margin-bottom: 8px; color: var(--navy); }
.location-cta__inner { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.location-cta__actions { display: flex; flex: 0 0 auto; gap: 12px; }
.location-cta .button--secondary { box-shadow: 0 10px 24px rgba(0,0,0,.14); }

.site-footer { position: relative; margin-top: 0; color: #d5e6ee; background: radial-gradient(circle at 15% 30%, rgba(9,135,172,.18), transparent 28%), linear-gradient(145deg, #061e30 0%, #082d43 100%); }
.site-footer::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px); background-size: 38px 38px; mask-image: linear-gradient(to bottom, #000, transparent 78%); }
.site-footer__main { position: relative; z-index: 1; margin-top: 0; }
.site-footer__masthead { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(380px, .8fr); align-items: center; gap: 52px; padding: 56px 0 34px; }
.site-footer__wordmark { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 22px; color: var(--white); }
.site-footer__wordmark-icon { display: grid; width: 52px; height: 52px; place-items: center; color: var(--navy); background: var(--yellow); border-radius: 50%; box-shadow: 0 0 0 8px rgba(255,196,18,.08); transition: transform .5s var(--ease-spring), box-shadow .5s var(--ease-soft); }
.site-footer__wordmark:hover .site-footer__wordmark-icon { transform: rotate(-8deg) scale(1.06); box-shadow: 0 0 0 10px rgba(255,196,18,.13); }
.site-footer__wordmark > span:last-child { display: grid; line-height: 1; }
.site-footer__wordmark small { margin-bottom: 5px; color: #8fb0be; font-size: .67rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.site-footer__wordmark strong { color: var(--white); font-size: 1.12rem; font-weight: 950; letter-spacing: .1em; }
.site-footer__brand-kicker { margin: 0 0 10px; color: var(--cyan) !important; font-size: .68rem !important; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.site-footer__brand .site-footer__headline { margin: 0; color: var(--white); font-size: clamp(2.4rem, 4vw, 4rem); letter-spacing: -.045em; line-height: .98; }
.site-footer__brand .site-footer__headline span { color: var(--yellow); }
.site-footer__hotline { position: relative; overflow: hidden; padding: 26px 30px; background: linear-gradient(135deg, rgba(18,136,169,.22), rgba(255,255,255,.05)); backdrop-filter: blur(22px) saturate(1.2); -webkit-backdrop-filter: blur(22px) saturate(1.2); border: 1px solid rgba(148,218,231,.16); border-radius: var(--radius); box-shadow: inset 0 1px rgba(255,255,255,.05), var(--shadow-hover); transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), border-color .5s var(--ease-soft); }
.site-footer__hotline:hover { transform: translateY(-3px); border-color: rgba(148,218,231,.3); box-shadow: inset 0 1px rgba(255,255,255,.06), 0 4px 14px rgba(0,0,0,.08), 0 36px 80px rgba(0,0,0,.2); }
.site-footer__hotline::before, .site-footer__hotline::after { content: ""; position: absolute; right: -65px; bottom: -82px; width: 180px; height: 180px; border: 1px solid rgba(42,194,205,.15); border-radius: 50%; pointer-events: none; transition: transform .6s var(--ease-soft); }
.site-footer__hotline::after { right: -21px; bottom: -38px; width: 92px; height: 92px; border-color: rgba(255,196,18,.32); }
.site-footer__hotline:hover::before { transform: scale(1.08) rotate(6deg); }
.site-footer__hotline:hover::after { transform: scale(1.1) rotate(-6deg); }
.site-footer__hotline > * { position: relative; z-index: 1; }
.site-footer__hotline > p { margin: 0 0 8px; color: #87a9b7; font-size: .66rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.site-footer__contact-phone { display: inline-block; margin-bottom: 16px; color: var(--white) !important; font-size: clamp(1.55rem, 2.5vw, 2.35rem); font-weight: 850; letter-spacing: -.01em; line-height: 1; white-space: nowrap; transition: color .4s var(--ease-soft); }
.site-footer__contact-phone:hover { color: var(--yellow) !important; }
.site-footer__quick-contact { display: flex; flex-wrap: wrap; gap: 10px 28px; }
.site-footer__quick-contact a { display: grid; gap: 2px; color: #c4d8e0; font-size: .74rem; font-weight: 750; transition: color .3s var(--ease-soft); }
.site-footer__quick-contact a:hover { color: var(--white); }
.site-footer__quick-contact span { color: #6f92a1; font-size: .61rem; font-weight: 800; text-transform: uppercase; }
.site-footer__socials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.site-footer__socials a { position: relative; display: inline-flex; align-items: center; padding: 9px 16px; color: #b7ccd5; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.09); border-radius: 999px; font-size: .65rem; font-weight: 800; letter-spacing: .02em; transition: color .35s var(--ease-soft), background .35s var(--ease-soft), border-color .35s var(--ease-soft), transform .35s var(--ease-soft); }
.site-footer__socials a:hover { color: var(--navy); background: var(--yellow); border-color: var(--yellow); transform: translateY(-2px); }
.site-footer__ticker { overflow: hidden; margin: 0; color: var(--navy); background: var(--yellow); border: 1px solid rgba(255,255,255,.28); border-radius: var(--radius-sm); box-shadow: 0 14px 34px rgba(0,0,0,.12); }
.site-footer__ticker-track { display: flex; width: max-content; align-items: center; gap: 21px; min-height: 48px; padding-right: 21px; animation: footerTicker 24s linear infinite; }
.site-footer__ticker span { font-size: .68rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.site-footer__ticker i { color: #8d6700; font-size: 1rem; font-style: normal; }
@keyframes footerTicker { to { transform: translateX(-50%); } }
.site-footer__directory { display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr); gap: 0; padding: 0 0 34px; border-top: 1px solid rgba(255,255,255,.1); }
.site-footer__directory > * { position: relative; min-width: 0; }
.site-footer__module-index { position: relative; z-index: 1; margin: 0 0 7px; color: var(--cyan); font-size: .58rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.site-footer__title { position: relative; z-index: 1; margin: 0 0 19px; color: var(--white); font-size: .88rem; font-weight: 850; letter-spacing: -.01em; text-transform: none; }
.site-footer__list { margin: 0; padding: 0; list-style: none; }
.site-footer a { color: var(--white); }
.site-footer__resources { padding: 38px 0 10px 42px; }
.site-footer__resources-primary { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 34px; align-items: start; }
.site-footer__navigation ul, .site-footer__support ul { display: grid; gap: 3px; }
.site-footer__navigation a, .site-footer__support a { display: flex; min-height: 35px; align-items: center; justify-content: space-between; gap: 9px; color: #c9dce3; font-size: .68rem; font-weight: 750; transition: color .35s var(--ease-soft), padding .35s var(--ease-soft); }
.site-footer__navigation a::after, .site-footer__support a::after { content: "→"; flex: 0 0 auto; color: var(--cyan); font-size: .82rem; transition: transform .35s var(--ease-soft), color .35s var(--ease-soft); }
.site-footer__navigation a:hover, .site-footer__support a:hover { padding-left: 6px; color: var(--yellow); }
.site-footer__navigation a:hover::after, .site-footer__support a:hover::after { color: var(--yellow); transform: translateX(4px); }
.site-footer__locations { padding: 38px 42px 10px 0; }
.site-footer__locations::before { content: ""; position: absolute; top: 12%; right: 0; bottom: 12%; width: 1px; background: linear-gradient(180deg, transparent, rgba(255,255,255,.14), transparent); }
.site-footer__locations::after { content: "07"; position: absolute; right: 38px; top: 18px; color: rgba(255,255,255,.035); font-size: 7rem; font-weight: 950; line-height: 1; pointer-events: none; }
.site-footer__locations .site-footer__module-index { color: #b9eff1; }
.site-footer__locations .site-footer__title { font-size: 1.14rem; }
.site-footer__address-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; font-style: normal; }
.site-footer__address { display: grid; grid-template-columns: 36px minmax(0, 1fr); gap: 10px; align-items: start; min-height: 54px; padding: 12px 14px; color: #bad2dc; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.055); border-radius: var(--radius-sm); font-size: .64rem; line-height: 1.55; transition: background .4s var(--ease-soft), border-color .4s var(--ease-soft), transform .4s var(--ease-soft); }
.site-footer__address:hover { background: rgba(255,255,255,.065); border-color: rgba(148,218,231,.22); transform: translateY(-2px); }
.site-footer__address strong { color: var(--yellow); font-size: .56rem; font-weight: 950; letter-spacing: .04em; }
.site-footer__address--primary { grid-column: 1 / -1; min-height: 52px; color: var(--white); font-size: .7rem; font-weight: 750; background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.09); }
.site-footer__map-link { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; color: var(--cyan); font-size: .74rem; font-weight: 700; text-decoration: none; transition: gap .35s var(--ease-soft), color .35s var(--ease-soft); }
.site-footer__map-link:hover { gap: 10px; color: var(--yellow); text-decoration: underline; }
.site-footer__support { margin: 0; padding: 0; border: 0; }
.site-footer__support ul { grid-template-columns: 1fr; }
.site-footer__bottom { position: relative; z-index: 1; border-top: 1px solid rgba(255,255,255,.08); }
.site-footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 62px; }
.site-footer__bottom p { margin: 0; color: #668592; font-size: .65rem; }
.site-footer__tax { display: inline-flex; align-items: center; gap: 8px; line-height: 1.2; white-space: nowrap; }
.site-footer__bct { display: inline-flex; align-items: center; flex: 0 0 auto; height: 24px; line-height: 0; opacity: .92; transition: opacity .25s var(--ease-soft), transform .25s var(--ease-soft); }
.site-footer__bct:hover { opacity: 1; transform: translateY(-1px); }
.site-footer__bct svg { display: block; width: 80px; height: 24px; border-radius: 3px; }
.site-footer__online-dot { display: inline-block; width: 7px; height: 7px; margin-right: 7px; background: #4ee099; border-radius: 50%; box-shadow: 0 0 0 4px rgba(78,224,153,.1); animation: footer-dot-pulse 2.4s var(--ease-soft) infinite; }
@keyframes footer-dot-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(78,224,153,.1); }
    50% { box-shadow: 0 0 0 7px rgba(78,224,153,.16); }
}
.mobile-contact-dock { display: none; }
.super-contact { position: fixed; right: 16px; bottom: 18px; z-index: 1300; display: grid; gap: 10px; justify-items: center; padding: 0; background: transparent; border: 0; border-radius: 0; box-shadow: none; backdrop-filter: none; }
.super-contact__list { display: grid; gap: 12px; justify-items: center; transition: opacity .4s var(--ease-soft), transform .4s var(--ease-soft), visibility .4s; }
.super-contact__item,
.super-contact__toggle { position: relative; display: grid; width: 52px; height: 52px; place-items: center; border: 0; border-radius: 50%; box-shadow: 0 14px 28px rgba(5,47,80,.18); cursor: pointer; transition: transform .4s var(--ease-spring), box-shadow .4s var(--ease-soft), filter .4s var(--ease-soft); }
.super-contact__item:hover,
.super-contact__toggle:hover { transform: translateY(-3px) scale(1.08); box-shadow: 0 18px 34px rgba(5,47,80,.24); filter: saturate(1.08); }
.super-contact__item:focus-visible,
.super-contact__toggle:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }
.super-contact__item--phone { color: #fff; background: linear-gradient(145deg, #1aa3ff, #0876d8); animation: superContactPulse 2.8s ease-in-out infinite; }
.super-contact__item--phone::before { position: absolute; inset: -7px; border: 1px solid rgba(245,185,29,.68); border-radius: inherit; box-shadow: 0 0 0 7px rgba(255,255,255,.58); content: ""; transition: transform .22s ease, opacity .22s ease; }
.super-contact__item:hover::before { transform: scale(1.08); opacity: .86; }
.super-contact__item--zalo { color: #fff; background: linear-gradient(145deg, #10a8ff, #0578d8); }
.super-contact__item--messenger { color: #fff; background: linear-gradient(145deg, #148cff, #0069ef); }
.super-contact__toggle { display: none; background: linear-gradient(145deg, #ec4d5e, #d72f45); }
.super-contact__icon svg { display: block; width: 27px; height: 27px; fill: currentColor; }
.super-contact__zalo-text { color: #fff; font-size: 1rem; font-weight: 950; letter-spacing: 0; line-height: 1; }
.super-contact__toggle span,
.super-contact__toggle span::before { position: absolute; width: 21px; height: 3px; background: #fff; border-radius: 999px; content: ""; }
.super-contact__toggle span { transform: rotate(45deg); }
.super-contact__toggle span::before { inset: 0; transform: rotate(90deg); }
.super-contact.is-collapsed .super-contact__list { visibility: hidden; opacity: 0; transform: translateY(14px) scale(.92); pointer-events: none; }
.super-contact.is-collapsed .super-contact__toggle span { transform: rotate(0); }
.super-contact.is-collapsed .super-contact__toggle span::before { transform: rotate(90deg); }
@keyframes superContactPulse {
    0%, 100% { box-shadow: 0 14px 28px rgba(5,47,80,.18), 0 0 0 0 rgba(8,126,169,.28); }
    50% { box-shadow: 0 18px 34px rgba(5,47,80,.22), 0 0 0 10px rgba(8,126,169,0); }
}
.dlql-ai { right: 96px; bottom: 18px; }

.prose, .content-layout { max-width: 820px; }
.prose img { border-radius: var(--radius); }
.post-card { padding: 28px 0; border-bottom: 1px solid var(--line); }
.empty-state { padding: 70px 0; text-align: center; }

.builder-content { max-width: var(--container); }
.static-page-content { color: #233f50; }
.static-hero { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(330px, .95fr); gap: 44px; align-items: stretch; margin: -22px 0 46px; padding: 44px; overflow: hidden; color: var(--white); background: linear-gradient(135deg, #083047 0%, #0b6f8f 62%, #10a9b6 100%); border-radius: 34px; box-shadow: 0 28px 80px rgba(5,47,80,.18); }
.static-hero__content { position: relative; z-index: 1; align-self: center; }
.static-hero .eyebrow { color: #9ff5ff; }
.static-hero h1 { max-width: 850px; margin-bottom: 20px; color: var(--white); font-size: clamp(2.4rem, 4.7vw, 4.35rem); letter-spacing: -.04em; }
.static-hero__content > p { max-width: 720px; margin-bottom: 28px; color: #d6f1f5; font-size: 1.05rem; line-height: 1.75; }
.static-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.static-hero__actions .button--outline { color: var(--white); border-color: rgba(255,255,255,.45); }
.static-hero__panel { position: relative; display: grid; align-content: end; min-height: 390px; overflow: hidden; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.2); border-radius: 28px; }
.static-hero__panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .82; }
.static-hero__facts { position: relative; z-index: 1; display: grid; gap: 9px; margin: auto 18px 18px; }
.static-hero__facts span { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 10px; align-items: center; min-height: 54px; padding: 10px 14px; color: var(--white); background: rgba(6, 34, 51, .72); border: 1px solid rgba(255,255,255,.16); border-radius: 16px; backdrop-filter: blur(10px); font-size: .86rem; font-weight: 750; }
.static-hero__facts strong { display: inline-grid; place-items: center; width: 34px; height: 34px; color: var(--navy); background: var(--yellow); border-radius: 50%; font-size: .68rem; }
.builder-content > h1 { max-width: 920px; margin: 0 0 34px; }
.static-page-content h2 { margin-top: 48px; padding-top: 6px; font-size: clamp(1.75rem, 2.7vw, 2.75rem); }
.static-page-content h2::after { content: ""; display: block; width: 72px; height: 4px; margin-top: 13px; background: linear-gradient(90deg, var(--yellow), var(--cyan)); border-radius: 99px; }
.static-page-content h3 { margin-top: 28px; font-size: 1.28rem; }
.static-page-content p, .static-page-content li { color: #4d6573; }
.static-page-content a:not(.button):not(.text-link) { color: var(--blue); font-weight: 750; }
.static-page-content table { width: 100%; margin: 24px 0; overflow: hidden; border-collapse: separate; border-spacing: 0; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-sm); }
.static-page-content th, .static-page-content td { padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.static-page-content tr:last-child th, .static-page-content tr:last-child td { border-bottom: 0; }
.static-page-content th { color: var(--navy); background: #eaf8fb; text-align: left; }
.static-page-content ul:not(.primary-nav__list):not(.mobile-menu__list), .static-page-content ol { display: grid; gap: 10px; padding-left: 22px; }
.static-page-content blockquote { margin: 26px 0; padding: 22px 24px; color: var(--navy); background: #fff7df; border-left: 5px solid var(--yellow); border-radius: 16px; }
.dlql-ux-section { margin: 34px 0; padding: 34px; background: var(--ux-bg, transparent); border-radius: 24px; }
.dlql-ux-row { display: flex; flex-wrap: wrap; gap: 24px; align-items: stretch; margin: 22px 0; }
.dlql-ux-col { flex: 1 1 260px; min-width: 0; }
.dlql-ux-col--3 { flex-basis: calc(25% - 18px); }
.dlql-ux-col--4 { flex-basis: calc(33.333% - 16px); }
.dlql-ux-col--6 { flex-basis: calc(50% - 12px); }
.dlql-ux-col--8 { flex-basis: calc(66.666% - 8px); }
.dlql-ux-col--9 { flex-basis: calc(75% - 6px); }
.dlql-ux-col--10 { flex-basis: calc(83.333% - 4px); }
.dlql-ux-col--12 { flex-basis: 100%; }
.dlql-ux-box { position: relative; overflow: hidden; padding: 28px; background: rgba(255,255,255,.94); border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 20px 60px rgba(5,47,80,.07); }
.dlql-ux-box::before { content: ""; position: absolute; inset: 0; z-index: 0; background-image: var(--ux-bg-image); background-size: cover; background-position: center; opacity: .08; pointer-events: none; }
.dlql-ux-box > * { position: relative; z-index: 1; }
.dlql-ux-slider { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(280px, 1fr); gap: 18px; overflow: hidden; margin: -8px 0 34px; border-radius: 24px; }
.dlql-ux-figure { margin: 0; }
.dlql-ux-image, .dlql-ux-card__image, .dlql-ux-slider img { display: block; width: 100%; height: auto; border-radius: 20px; }
.dlql-ux-featured { display: grid; grid-template-columns: 64px minmax(0, 1fr); gap: 16px; align-items: center; height: 100%; padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 14px 36px rgba(5,47,80,.06); }
.dlql-ux-featured h3 { margin: 0 0 6px; font-size: 1.02rem; }
.dlql-ux-featured p { margin: 0; color: var(--muted); }
.dlql-ux-featured-icon { width: 58px; height: 58px; object-fit: contain; border-radius: 16px; background: #eaf8fb; }
.dlql-ux-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; background: transparent; border: 0; box-shadow: none; padding: 0; overflow: visible; }
.dlql-ux-card-grid::before { display: none; }
.dlql-ux-card { display: flex; flex-direction: column; min-height: 100%; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow-soft); transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), border-color .5s var(--ease-soft); }
.dlql-ux-card:hover { transform: translateY(-5px); border-color: rgba(13,142,181,.32); box-shadow: var(--shadow-hover); }
.dlql-ux-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: #e9f5f7; }
.dlql-ux-card__image { height: 100%; object-fit: cover; border-radius: 0; }
.dlql-ux-card__body { display: flex; flex: 1; flex-direction: column; gap: 12px; padding: 24px; }
.dlql-ux-card__body h3 { margin: 0; font-size: 1.22rem; }
.dlql-ux-card__body p:not(.eyebrow) { margin: 0; color: var(--muted); line-height: 1.65; }
.dlql-ux-card__body .text-link { margin-top: auto; }
.dlql-ux-button { display: inline-flex; width: fit-content; margin: 12px 0; }
.dlql-ux-divider { width: 80px; height: 4px; margin: 24px 0; background: var(--blue); border: 0; border-radius: 999px; }
.dlql-ux-title { margin: 34px 0 18px; }
.dlql-ux-post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin: 28px 0; }
.dlql-ux-service-mini { padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: 18px; }
.dlql-ux-service-mini h3 { margin: 0 0 10px; font-size: 1rem; }
.dlql-ux-service-mini p { margin: 0; color: var(--muted); }
.dlql-ux-contact { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; margin: 28px 0; padding: 24px; color: var(--white); background: var(--navy); border-radius: 22px; }
.dlql-ux-contact p { max-width: 720px; margin: 0; color: #d8edf2; }
.contact-studio { margin-top: -48px; isolation: isolate; }
.contact-studio__hero { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 430px); gap: 44px; align-items: center; min-height: 590px; padding: 54px 48px 48px; overflow: hidden; color: var(--white); background: radial-gradient(circle at 18% 18%, rgba(38,184,195,.34), transparent 30%), radial-gradient(circle at 86% 80%, rgba(245,185,29,.24), transparent 25%), linear-gradient(135deg, #061f33 0%, #09364e 48%, #087f9d 132%); border: 1px solid rgba(255,255,255,.14); border-radius: 34px; box-shadow: 0 30px 88px rgba(5,47,80,.2); }
.contact-studio__hero::before { content: ""; position: absolute; inset: 0; opacity: .38; background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px); background-size: 54px 54px; mask-image: radial-gradient(circle at 50% 34%, #000 0%, transparent 72%); }
.contact-studio__hero::after { content: ""; position: absolute; right: 34%; bottom: 70px; width: 138px; height: 138px; border: 28px solid rgba(245,185,29,.78); border-radius: 50%; filter: drop-shadow(0 18px 34px rgba(0,0,0,.14)); }
.contact-studio__hero > * { position: relative; z-index: 1; }
.contact-studio__signal { position: absolute; top: 28px; right: 34px; display: inline-flex; gap: 12px; align-items: center; padding: 10px 14px; color: #cce9ef; background: rgba(2,20,33,.35); border: 1px solid rgba(255,255,255,.12); border-radius: 999px; font-size: .77rem; font-weight: 800; backdrop-filter: blur(12px); }
.contact-studio__live { display: inline-flex; gap: 8px; align-items: center; color: var(--white); }
.contact-studio__live::before { content: ""; width: 8px; height: 8px; background: #45e89c; border-radius: 50%; box-shadow: 0 0 0 7px rgba(69,232,156,.13); }
.contact-studio__copy { max-width: 650px; padding-top: 26px; }
.contact-studio__copy .eyebrow { color: var(--yellow); }
.contact-studio__copy h1 { max-width: 640px; margin-bottom: 18px; color: var(--white); font-size: clamp(2.9rem, 4.6vw, 4.7rem); letter-spacing: -.045em; line-height: 1.06; }
.contact-studio__copy > p:not(.eyebrow) { max-width: 610px; color: #c8e2ea; font-size: 1rem; line-height: 1.72; }
.contact-studio__actions { display: flex; flex-wrap: wrap; align-items: stretch; gap: 12px; margin-top: 26px; }
.contact-studio__call { display: inline-grid; grid-template-columns: 42px minmax(178px, 1fr); gap: 11px; align-items: center; min-width: 256px; min-height: 58px; padding: 8px 22px 8px 8px; color: var(--navy); background: var(--yellow); border: 1px solid rgba(255,255,255,.24); border-radius: 999px; box-shadow: 0 14px 30px rgba(245,185,29,.22); }
.contact-studio__call::before { content: "☎"; display: inline-grid; width: 42px; height: 42px; place-items: center; color: var(--white); background: var(--navy); border-radius: 50%; line-height: 1; }
.contact-studio__call::before { grid-row: 1 / 3; }
.contact-studio__call span, .contact-studio__call strong { grid-column: 2; }
.contact-studio__call span { display: block; align-self: end; margin-bottom: 1px; font-size: .64rem; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; opacity: .74; }
.contact-studio__call strong { display: block; align-self: start; font-size: 1.04rem; line-height: 1; white-space: nowrap; }
.contact-studio__zalo { display: inline-flex; min-width: 198px; min-height: 58px; align-items: center; justify-content: center; padding: 12px 24px; color: var(--white); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.28); border-radius: 999px; font-size: .95rem; font-weight: 850; line-height: 1.2; backdrop-filter: blur(10px); white-space: nowrap; }
.contact-studio__zalo:hover { background: rgba(255,255,255,.17); border-color: rgba(255,255,255,.42); }
.dispatch-board { align-self: center; padding: 22px; background: rgba(255,255,255,.96); border: 1px solid rgba(255,255,255,.44); border-radius: 26px; box-shadow: 0 26px 66px rgba(0,0,0,.2); color: var(--ink); transform: none; }
.dispatch-board__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; color: #67808c; font-size: .75rem; font-weight: 950; letter-spacing: .12em; text-transform: uppercase; }
.dispatch-board__top strong { color: var(--blue); }
.dispatch-board__device { display: grid; grid-template-columns: 56px minmax(0, 1fr); gap: 15px; align-items: center; margin-bottom: 16px; padding: 18px; color: var(--white); background: linear-gradient(135deg, var(--navy), #0f6d86); border-radius: 18px; }
.dispatch-board__icon { display: inline-grid; width: 56px; height: 56px; place-items: center; color: var(--navy); background: var(--yellow); border-radius: 16px; font-size: 1.32rem; }
.dispatch-board__device strong { display: block; font-size: 1.04rem; }
.dispatch-board__device small { display: block; margin-top: 4px; color: #c7e5ec; line-height: 1.5; }
.dispatch-board__fields { display: grid; gap: 10px; margin-bottom: 16px; }
.dispatch-board__fields span { position: relative; padding: 14px 15px 14px 42px; color: #6c828d; background: #f3f8fa; border: 1px solid #dfecef; border-radius: 14px; font-size: .92rem; font-weight: 800; }
.dispatch-board__fields span::before { content: ""; position: absolute; left: 17px; top: 50%; width: 10px; height: 10px; background: var(--cyan); border-radius: 50%; transform: translateY(-50%); box-shadow: 0 0 0 5px rgba(38,184,195,.12); }
.dispatch-board__submit { display: flex; min-height: 54px; align-items: center; justify-content: center; color: var(--white); background: var(--blue); border-radius: 14px; font-size: .95rem; font-weight: 900; box-shadow: 0 12px 24px rgba(8,126,169,.18); }
.contact-quick-section { position: relative; overflow: hidden; padding: 0 0 24px; background: linear-gradient(180deg, #fff 0%, #f6fbfc 100%); }
.contact-quick-section::before { content: ""; position: absolute; inset: 0 0 auto; height: 74px; background: linear-gradient(180deg, rgba(5,47,80,.06), rgba(5,47,80,0)); pointer-events: none; }
.contact-studio__quick { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin: -34px auto 20px; padding: 10px; border: 1px solid rgba(211,233,239,.78); border-radius: 30px; background: rgba(255,255,255,.72); box-shadow: 0 24px 70px rgba(5,47,80,.1); backdrop-filter: blur(14px); }
.contact-studio__quick.reveal-stagger > * { opacity: 1; transform: none; }
.contact-studio__quick a { position: relative; display: grid; grid-template-columns: 58px minmax(0, 1fr); gap: 16px; align-items: center; min-height: 132px; padding: 24px 26px; overflow: hidden; color: var(--navy); background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(246,251,253,.92)); border: 1px solid rgba(219,234,240,.9); border-radius: 23px; box-shadow: 0 12px 34px rgba(11,43,67,.055); transition: transform .32s var(--ease-soft), box-shadow .32s var(--ease-soft), border-color .32s var(--ease-soft); }
.contact-studio__quick a::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; background: linear-gradient(90deg, var(--yellow), var(--cyan)); opacity: .92; }
.contact-studio__quick a::after { content: ""; position: absolute; right: -34px; bottom: -46px; width: 132px; height: 132px; border: 24px solid rgba(38,184,195,.1); border-radius: 50%; transition: transform .32s var(--ease-soft), opacity .32s var(--ease-soft); }
.contact-studio__quick a:nth-child(2)::before { background: linear-gradient(90deg, var(--cyan), var(--blue)); }
.contact-studio__quick a:nth-child(3)::before { background: linear-gradient(90deg, var(--blue), var(--yellow)); }
.contact-studio__quick a:hover { transform: translateY(-5px); border-color: rgba(38,184,195,.36); box-shadow: 0 22px 58px rgba(5,47,80,.12); }
.contact-studio__quick a:hover::after { opacity: .9; transform: translate(-8px, -6px) scale(1.05); }
.contact-studio__quick span { position: relative; z-index: 1; grid-row: 1 / 3; display: inline-grid; width: 58px; height: 58px; place-items: center; color: var(--white); background: linear-gradient(145deg, var(--navy), #0c6b84); border-radius: 20px; box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 12px 26px rgba(5,47,80,.16); font-size: .78rem; font-weight: 950; }
.contact-studio__quick strong { position: relative; z-index: 1; grid-column: 2; align-self: end; display: block; margin-bottom: 2px; color: var(--navy); font-size: 1.05rem; line-height: 1.22; }
.contact-studio__quick em { position: relative; z-index: 1; grid-column: 2; align-self: start; display: block; color: var(--blue); font-size: clamp(1rem, 1.35vw, 1.22rem); font-style: normal; font-weight: 900; line-height: 1.25; overflow-wrap: break-word; }
.contact-studio__quick a:not(:last-child) em { white-space: nowrap; }
.contact-studio__form-section { display: grid; grid-template-columns: minmax(0, .78fr) minmax(360px, 1.22fr); gap: 40px; align-items: center; margin-bottom: 30px; }
.contact-studio__form-copy h2 { margin: 0 0 12px; color: var(--navy); font-size: clamp(1.5rem, 2.1vw, 2.05rem); }
.contact-studio__form-copy p:not(.eyebrow) { margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.75; }
.contact-studio__map-embed { margin-top: 18px; }
.contact-studio__map-embed iframe { height: 220px; }
.contact-studio__body { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 26px; margin-bottom: 28px; }
.contact-studio__company, .contact-studio__flow, .contact-studio__map { background: var(--white); border: 1px solid #dbeaf0; border-radius: 30px; box-shadow: var(--shadow-sm); }
.contact-studio__company, .contact-studio__flow { padding: 34px; }
.contact-studio__section-label { display: block; margin-bottom: 12px; color: var(--cyan); font-size: .73rem; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; }
.contact-studio__company h2, .contact-studio__flow h2, .contact-studio__map h2 { color: var(--navy); }
.contact-studio__company dl { display: grid; gap: 0; margin: 0; }
.contact-studio__company dl div { display: grid; grid-template-columns: 150px minmax(0, 1fr); gap: 18px; padding: 16px 0; border-top: 1px solid #edf3f5; }
.contact-studio__company dt { color: #718895; font-size: .74rem; font-weight: 950; text-transform: uppercase; }
.contact-studio__company dd { margin: 0; font-weight: 800; }
.contact-studio__company a { color: var(--blue); }
.contact-studio__flow ol { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; counter-reset: flow; }
.contact-studio__flow li { counter-increment: flow; position: relative; min-height: 86px; padding: 18px 18px 18px 74px; background: linear-gradient(135deg, #f6fbfd, #fff); border: 1px solid #dfecef; border-radius: 20px; }
.contact-studio__flow li::before { content: counter(flow, decimal-leading-zero); position: absolute; left: 18px; top: 18px; display: inline-grid; width: 40px; height: 40px; place-items: center; color: var(--navy); background: var(--yellow); border-radius: 14px; font-size: .75rem; font-weight: 950; }
.contact-studio__flow strong { display: block; color: var(--navy); }
.contact-studio__flow span { display: block; margin-top: 3px; color: var(--muted); }
.contact-studio__map { display: grid; grid-template-columns: .55fr 1.45fr; gap: 30px; padding: 34px; overflow: hidden; background: linear-gradient(135deg, #fff, #f4fbfd); }
.contact-studio__map-copy { display: flex; flex-direction: column; justify-content: center; }
.contact-studio__map-copy .eyebrow { color: var(--blue); }
.contact-studio__map-copy p:not(.eyebrow) { color: var(--muted); }
.contact-studio__locations { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.contact-studio__location { position: relative; display: grid; grid-template-columns: 54px minmax(0, 1fr); gap: 6px 13px; align-items: center; margin: 0; padding: 16px; background: rgba(255,255,255,.9); border: 1px solid #dcebef; border-radius: 18px; font-style: normal; }
.contact-studio__location::after { content: ""; position: absolute; inset: 12px 12px auto auto; width: 7px; height: 7px; background: #39d994; border-radius: 50%; box-shadow: 0 0 0 5px rgba(57,217,148,.11); }
.contact-studio__location strong { grid-row: span 2; display: inline-grid; width: 46px; height: 46px; place-items: center; color: var(--navy); background: var(--yellow); border-radius: 16px; font-size: .72rem; font-weight: 950; }
.contact-studio__location span { color: var(--blue); font-size: .76rem; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; }
.contact-studio__location em { color: #365160; font-style: normal; font-weight: 740; line-height: 1.45; }

/* Contact page — full-bleed layout */
.contact-page-full { display: block; }
.contact-hero-full { position: relative; overflow: hidden; padding: 76px 0 64px; color: var(--white); isolation: isolate; }
.contact-hero-full__bg { position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 18% 18%, rgba(38,184,195,.34), transparent 30%), radial-gradient(circle at 86% 80%, rgba(245,185,29,.24), transparent 25%), linear-gradient(135deg, #061f33 0%, #09364e 48%, #087f9d 132%); }
.contact-hero-full__bg::before { content: ""; position: absolute; inset: 0; opacity: .38; background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px); background-size: 54px 54px; mask-image: radial-gradient(circle at 40% 34%, #000 0%, transparent 72%); }
.contact-hero-full__bg::after { content: ""; position: absolute; right: 12%; bottom: -60px; width: 220px; height: 220px; border: 28px solid rgba(245,185,29,.5); border-radius: 50%; filter: drop-shadow(0 18px 34px rgba(0,0,0,.14)); }
.contact-hero-full__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, 420px); gap: 44px; align-items: center; }
.contact-hero-full__copy .contact-studio__signal { position: static; display: inline-flex; margin-bottom: 22px; }
.contact-hero-full__copy .eyebrow { color: var(--yellow); }
.contact-hero-full__copy h1 { max-width: 680px; margin-bottom: 18px; color: var(--white); font-size: clamp(2.6rem, 4.4vw, 4.4rem); letter-spacing: -.045em; line-height: 1.06; }
.contact-hero-full__lead { max-width: 580px; color: #c8e2ea; font-size: 1.02rem; line-height: 1.72; }
.contact-studio__zalo--ghost { background: transparent; }
.contact-studio__zalo--ghost:hover { background: rgba(255,255,255,.1); }
.contact-quick-section { position: relative; z-index: 2; padding: 44px 0 8px; background: var(--white); }
.contact-quick-section .contact-studio__quick { margin: 0 auto; }
.contact-form-section-full { background: var(--white); }
.contact-info-section-full { background: var(--canvas); border-top: 1px solid #e6eef0; border-bottom: 1px solid #e6eef0; }
.contact-branches-section-full { background: var(--white); }
.contact-branches-section-full__map { margin: 26px 0; border-radius: var(--radius-lg); box-shadow: var(--shadow-hover); }
.contact-branches-section-full__map iframe { height: 360px; }
.contact-branches-section-full__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.contact-page { margin-top: -36px; }
.contact-page__hero { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr); gap: 28px; align-items: stretch; padding: 42px; background: linear-gradient(135deg, #f7fbfc 0%, #eef7fa 100%); border: 1px solid #dcebef; border-radius: 32px; box-shadow: 0 22px 70px rgba(11,43,67,.08); }
.contact-page__copy { display: flex; flex-direction: column; justify-content: center; max-width: 690px; }
.contact-page__copy h1 { max-width: 670px; margin-bottom: 18px; color: var(--navy); font-size: clamp(2.65rem, 5vw, 5rem); letter-spacing: -.065em; }
.contact-page__copy > p:not(.eyebrow) { max-width: 610px; color: #526a77; font-size: 1.06rem; line-height: 1.75; }
.contact-page__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.contact-card { position: relative; padding: 28px; background: var(--white); border: 1px solid #dcebef; border-radius: 26px; box-shadow: var(--shadow-sm); }
.contact-card--hotline { display: flex; flex-direction: column; justify-content: center; color: var(--white); background: linear-gradient(145deg, var(--navy) 0%, #0b6680 100%); border-color: rgba(255,255,255,.15); overflow: hidden; }
.contact-card--hotline::after { content: ""; position: absolute; right: -48px; bottom: -58px; width: 180px; height: 180px; background: rgba(245,185,29,.22); border-radius: 50%; }
.contact-card--hotline > * { position: relative; z-index: 1; }
.contact-card--hotline > span, .contact-card__label { display: block; margin-bottom: 10px; color: var(--cyan); font-size: .73rem; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; }
.contact-card--hotline > a { display: inline-block; margin-bottom: 10px; color: var(--white); font-size: clamp(2.35rem, 5vw, 4rem); font-weight: 950; letter-spacing: -.06em; line-height: 1; }
.contact-card--hotline p { margin-bottom: 18px; color: #c5e4ed; font-weight: 750; }
.contact-card--hotline p a { color: var(--yellow); }
.contact-card--hotline ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.contact-card--hotline li { position: relative; padding-left: 24px; color: #d9edf2; line-height: 1.5; }
.contact-card--hotline li::before { content: ""; position: absolute; top: 9px; left: 0; width: 9px; height: 9px; background: var(--yellow); border-radius: 50%; box-shadow: 0 0 0 5px rgba(245,185,29,.14); }
.contact-page__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 24px; margin-top: 24px; }
.contact-card h2 { margin-bottom: 18px; color: var(--navy); font-size: clamp(1.55rem, 2.6vw, 2.35rem); }
.contact-details { display: grid; gap: 14px; margin: 0; }
.contact-details div { display: grid; grid-template-columns: 112px minmax(0, 1fr); gap: 16px; padding: 14px 0; border-top: 1px solid #edf3f5; }
.contact-details dt { color: #7c94a1; font-size: .78rem; font-weight: 900; text-transform: uppercase; }
.contact-details dd { margin: 0; color: var(--ink); font-weight: 750; }
.contact-details a { color: var(--blue); }
.contact-card--cta { background: linear-gradient(135deg, #fff8db, #fff); border-color: #f5df8a; }
.contact-steps { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; counter-reset: contactStep; }
.contact-steps li { counter-increment: contactStep; display: grid; grid-template-columns: 38px minmax(0, 1fr); gap: 12px; align-items: center; padding: 13px; background: rgba(255,255,255,.72); border: 1px solid rgba(245,185,29,.28); border-radius: 16px; font-weight: 800; }
.contact-steps li::before { content: counter(contactStep, decimal-leading-zero); display: inline-grid; width: 38px; height: 38px; place-items: center; color: var(--white); background: var(--navy); border-radius: 50%; font-size: .76rem; font-weight: 950; }
.contact-locations { margin-top: 24px; padding: 34px; background: var(--white); border: 1px solid #dcebef; border-radius: 28px; box-shadow: var(--shadow-sm); }
.contact-locations__head { display: grid; grid-template-columns: minmax(260px, .7fr) minmax(0, 1fr); gap: 10px 34px; align-items: end; margin-bottom: 22px; }
.contact-locations__head .eyebrow { grid-column: 1 / -1; margin-bottom: 0; }
.contact-locations__head h2 { margin: 0; color: var(--navy); font-size: clamp(1.8rem, 3vw, 2.8rem); }
.contact-locations__head p:not(.eyebrow) { margin: 0; color: var(--muted); }
.contact-location-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.contact-location { display: grid; grid-template-columns: 58px minmax(0, 1fr); gap: 13px; align-items: center; margin: 0; padding: 15px; background: #f7fbfc; border: 1px solid #e2edf1; border-radius: 18px; font-style: normal; }
.contact-location strong { display: inline-grid; width: 46px; height: 34px; place-items: center; color: var(--navy); background: var(--yellow); border-radius: 999px; font-size: .72rem; font-weight: 950; }
.contact-location span { color: #365160; font-size: .9rem; font-weight: 700; line-height: 1.45; }
.contact-hub { position: relative; margin: -18px 0 50px; padding: 34px; overflow: hidden; color: var(--white); background: radial-gradient(circle at 12% 4%, rgba(38,184,195,.36), transparent 30%), linear-gradient(135deg, #082a40 0%, #0b4560 54%, #0d7991 120%); border: 1px solid rgba(255,255,255,.14); border-radius: 34px; box-shadow: 0 28px 90px rgba(8,42,64,.18); }
.contact-hub::before { content: ""; position: absolute; inset: auto -80px -160px auto; width: 330px; height: 330px; background: rgba(245,185,29,.16); border-radius: 50%; filter: blur(4px); }
.contact-hub::after { content: ""; position: absolute; top: 26px; right: 34px; width: 116px; height: 116px; background: linear-gradient(135deg, rgba(245,185,29,.9), rgba(38,184,195,.05)); border-radius: 32px; transform: rotate(12deg); opacity: .28; }
.contact-hub > * { position: relative; z-index: 1; }
.contact-hub__main { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(310px, .85fr); gap: 30px; align-items: stretch; }
.contact-hub__intro { padding: 10px 0 6px; }
.contact-hub__tag, .contact-hub__branch-head span { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 15px; color: var(--yellow); font-size: .74rem; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; }
.contact-hub__tag::before, .contact-hub__branch-head span::before { content: ""; width: 9px; height: 9px; background: #41e69f; border-radius: 50%; box-shadow: 0 0 0 7px rgba(65,230,159,.12); }
.contact-hub h2 { margin-bottom: 14px; color: var(--white); font-size: clamp(2rem, 3.6vw, 4rem); letter-spacing: -.055em; }
.contact-hub p { max-width: 760px; margin: 0; color: #c7e2ea; font-size: 1.02rem; }
.contact-hub__hotline { display: flex; flex-direction: column; justify-content: center; min-height: 230px; padding: 28px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); border-radius: 28px; box-shadow: inset 0 1px 0 rgba(255,255,255,.12); backdrop-filter: blur(10px); }
.contact-hub__hotline > span { color: #97c7d6; font-size: .72rem; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; }
.contact-hub__hotline > a { margin: 8px 0 12px; color: var(--white); font-size: clamp(2.2rem, 5vw, 4.25rem); font-weight: 950; letter-spacing: -.06em; line-height: 1; }
.contact-hub__hotline small { color: #bbd9e2; font-size: .88rem; font-weight: 750; }
.contact-hub__hotline small a { color: var(--yellow); }
.contact-hub__channels { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 22px; }
.contact-channel { display: grid; grid-template-columns: 52px minmax(0, 1fr); gap: 14px; align-items: center; min-height: 108px; padding: 18px; color: var(--white); background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.14); border-radius: 22px; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.contact-channel:hover { transform: translateY(-3px); background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.28); }
.contact-channel__icon { display: inline-grid; width: 52px; height: 52px; place-items: center; color: var(--navy); background: var(--yellow); border-radius: 18px; font-weight: 950; box-shadow: 0 14px 30px rgba(0,0,0,.18); }
.contact-channel strong { display: block; font-size: 1.02rem; line-height: 1.25; }
.contact-channel small { display: block; margin-top: 3px; color: #bddde5; font-size: .78rem; line-height: 1.45; }
.contact-channel--primary { background: linear-gradient(135deg, var(--yellow), #ffd75f); color: var(--navy); border-color: rgba(255,255,255,.36); }
.contact-channel--primary small { color: #4b4b2f; }
.contact-channel--primary .contact-channel__icon { color: var(--white); background: var(--navy); }
.contact-hub__branches { margin-top: 26px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.13); }
.contact-hub__branch-head { display: grid; grid-template-columns: minmax(220px, .62fr) minmax(0, 1fr); gap: 14px 34px; align-items: end; margin-bottom: 18px; }
.contact-hub__branch-head span { margin-bottom: 0; grid-column: 1 / -1; }
.contact-hub__branch-head h2 { margin: 0; font-size: clamp(1.7rem, 2.7vw, 2.7rem); }
.contact-hub__branch-head p { font-size: .94rem; }
.contact-branches { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.contact-branch { display: grid; grid-template-columns: 58px minmax(0, 1fr); gap: 13px; align-items: center; min-height: 68px; margin: 0; padding: 13px 15px; background: rgba(3,28,43,.36); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; font-style: normal; }
.contact-branch strong { display: inline-grid; width: 46px; height: 34px; place-items: center; color: var(--navy); background: var(--yellow); border-radius: 999px; font-size: .72rem; font-weight: 950; }
.contact-branch span { color: #d8eef3; font-size: .86rem; line-height: 1.45; }
.static-page-content--lien-he .dlql-ux-row { align-items: flex-start; }
.static-page-content--lien-he .dlql-ux-col { padding: 30px; background: linear-gradient(180deg, #fff, #f7fbfc); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow-sm); }
.static-page-content--lien-he .dlql-ux-col h2, .static-page-content--lien-he .dlql-ux-col h3 { color: var(--navy); }
.static-page-content--lien-he .dlql-ux-col a { color: var(--blue); font-weight: 850; }
.static-page-content--dich-vu-dien-lanh .dlql-ux-row { display: block; }
.static-page-content--dich-vu-dien-lanh .dlql-ux-col { width: 100%; max-width: 100%; margin-bottom: 26px; flex: 0 0 100%; }
.static-page-content--dich-vu-dien-lanh .dlql-ux-col--3, .static-page-content--dich-vu-dien-lanh .dlql-ux-col--4, .static-page-content--dich-vu-dien-lanh .dlql-ux-col--6 { flex-basis: 100%; }
.static-page-content--dich-vu-dien-lanh .dlql-ux-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.static-page-content--dich-vu-dien-lanh .dlql-ux-box:not(.dlql-ux-card-grid) { max-width: 980px; margin-inline: auto; }
.static-page-content--dich-vu-dien-lanh .dlql-ux-card__body h3 { font-size: 1.08rem; }
.static-page-content--dich-vu-dien-lanh .dlql-ux-card__body p:not(.eyebrow) { font-size: .92rem; }
.site-main--dich-vu-dien-lanh { padding-top: 0; background: linear-gradient(180deg, #fff 0%, #f6fbfc 38%, #fff 100%); }
.static-page-content--dich-vu-dien-lanh { width: 100%; max-width: none; }
.static-page-content--dich-vu-dien-lanh .static-hero {
    position: relative;
    left: 50%;
    width: 100vw;
    grid-template-columns: minmax(0, .88fr) minmax(430px, .82fr);
    gap: clamp(34px, 5vw, 72px);
    align-items: center;
    margin: 0 0 42px;
    padding: clamp(58px, 5vw, 84px) max(54px, calc((100vw - 1480px) / 2)) clamp(62px, 5.5vw, 92px);
    overflow: hidden;
    border-radius: 0 0 34px 34px;
    background:
        radial-gradient(ellipse at 80% 18%, rgba(76,211,223,.22), transparent 42%),
        radial-gradient(ellipse at 16% 88%, rgba(245,185,29,.14), transparent 38%),
        linear-gradient(132deg, #05283d 0%, #07536b 46%, #0a8ba0 100%);
    box-shadow: 0 24px 70px rgba(5,47,80,.12);
    transform: translateX(-50%);
}
.static-page-content--dich-vu-dien-lanh .static-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
    background-size: 128px 128px;
    opacity: .18;
    pointer-events: none;
}
.static-page-content--dich-vu-dien-lanh .static-hero__content,
.static-page-content--dich-vu-dien-lanh .static-hero__panel { position: relative; z-index: 1; }
.static-page-content--dich-vu-dien-lanh .static-hero h1 {
    max-width: 780px;
    color: var(--white);
    font-size: clamp(2.9rem, 4.45vw, 4.75rem);
    font-weight: 680;
    line-height: 1.08;
    letter-spacing: 0;
}
.static-page-content--dich-vu-dien-lanh .static-hero__content > p {
    max-width: 680px;
    color: rgba(230,250,252,.92);
    font-size: 1.02rem;
    line-height: 1.82;
}
.static-page-content--dich-vu-dien-lanh .static-hero__panel {
    min-height: clamp(350px, 29vw, 470px);
    border: 1px solid rgba(255,255,255,.34);
    border-radius: 30px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 30px 70px rgba(1,20,31,.24);
}
.static-page-content--dich-vu-dien-lanh .static-hero__panel img {
    height: 100%;
    object-fit: cover;
    opacity: .9;
    filter: saturate(.98) contrast(.98);
}
.static-page-content--dich-vu-dien-lanh .static-hero__facts span {
    min-height: 58px;
    background: rgba(6,31,47,.72);
    border-color: rgba(255,255,255,.18);
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(1,20,31,.2);
}
.static-page-content--dich-vu-dien-lanh > .dlql-ux-slider:first-of-type { display: none; }
.static-page-content--dich-vu-dien-lanh > .dlql-ux-section {
    width: min(calc(100% - 80px), 1320px);
    margin: 34px auto;
    padding: 0;
    background: transparent;
    border-radius: 0;
}
.static-page-content--dich-vu-dien-lanh .dlql-ux-box {
    max-width: none !important;
    padding: clamp(24px, 3vw, 38px);
    background: rgba(255,255,255,.76);
    border-color: rgba(217,238,243,.76);
    border-radius: 30px;
    box-shadow: 0 16px 48px rgba(5,47,80,.045);
}
.static-page-content--dich-vu-dien-lanh .dlql-ux-box::before { opacity: .045; }
.static-page-content--dich-vu-dien-lanh .dlql-ux-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.static-page-content--dich-vu-dien-lanh .dlql-ux-card {
    border-color: #e1eef2;
    border-radius: 22px;
    box-shadow: 0 12px 32px rgba(5,47,80,.045);
}
.static-page-content--dich-vu-dien-lanh .dlql-ux-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 46px rgba(5,47,80,.09);
}
.static-page-content--dich-vu-dien-lanh .dlql-ux-card__media { aspect-ratio: 16 / 9; background: #eaf7f9; }
.static-page-content--dich-vu-dien-lanh .dlql-ux-card__media:empty { display: none; }
.static-page-content--dich-vu-dien-lanh .dlql-ux-card__body { gap: 10px; padding: 20px; }
.static-page-content--dich-vu-dien-lanh .dlql-ux-card__body h3 {
    color: var(--navy);
    font-size: 1.08rem;
    font-weight: 680;
    line-height: 1.34;
}
.static-page-content--dich-vu-dien-lanh .dlql-ux-card__body p:not(.eyebrow) {
    color: #5b7280;
    font-size: .88rem;
    line-height: 1.64;
}
.static-page-content--dich-vu-dien-lanh .dlql-ux-title {
    margin: 0 0 22px;
    color: var(--navy);
    font-size: clamp(1.85rem, 2.6vw, 2.75rem);
    font-weight: 650;
    letter-spacing: 0;
}
.static-page-content--dich-vu-dien-lanh .dlql-ux-title::after {
    content: "";
    display: block;
    width: 86px;
    height: 4px;
    margin-top: 13px;
    background: linear-gradient(90deg, var(--yellow), var(--cyan));
    border-radius: 999px;
}
.static-page-content--dich-vu-dien-lanh .dlql-ux-post-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.static-page-content--dich-vu-dien-lanh .dlql-ux-service-mini {
    min-height: 150px;
    border-color: #e1eef2;
    border-radius: 20px;
    box-shadow: 0 10px 28px rgba(5,47,80,.035);
}
.static-page-content--dich-vu-dien-lanh .dlql-ux-box .dlql-ux-box:not(.dlql-ux-card-grid) {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}
.static-page-content--dich-vu-dien-lanh .dlql-service-other-section .dlql-ux-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 22px;
    margin: 0;
}
.static-page-content--dich-vu-dien-lanh .dlql-service-other-section .dlql-ux-col--6 {
    display: contents;
}
.static-page-content--dich-vu-dien-lanh .dlql-service-other-section .dlql-ux-box:not(.dlql-ux-card-grid) {
    max-width: 820px !important;
}
.static-page-content--dich-vu-dien-lanh .dlql-service-other-section .dlql-ux-card-grid {
    width: 100%;
    max-width: none !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}
.static-page-content--dich-vu-dien-lanh .dlql-service-other-section .dlql-ux-col--6:first-child > .dlql-ux-box:first-child p {
    margin: 0;
    color: var(--navy);
    font-size: clamp(1.65rem, 2.3vw, 2.35rem);
    font-weight: 650;
    line-height: 1.2;
    text-align: left !important;
}
.static-page-content--dich-vu-dien-lanh .dlql-service-other-section .dlql-ux-button {
    margin-top: 0;
}
.static-page-content--dich-vu-dien-lanh > .dlql-ux-section:has(.dlql-ux-col--6 .dlql-ux-card-grid) .dlql-ux-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 22px;
    margin: 0;
}
.static-page-content--dich-vu-dien-lanh > .dlql-ux-section:has(.dlql-ux-col--6 .dlql-ux-card-grid) .dlql-ux-col--6 {
    display: contents;
}
.static-page-content--dich-vu-dien-lanh > .dlql-ux-section:has(.dlql-ux-col--6 .dlql-ux-card-grid) .dlql-ux-box:not(.dlql-ux-card-grid) {
    max-width: 820px !important;
}
.static-page-content--dich-vu-dien-lanh > .dlql-ux-section:has(.dlql-ux-col--6 .dlql-ux-card-grid) .dlql-ux-card-grid {
    width: 100%;
    max-width: none !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}
.static-page-content--dich-vu-dien-lanh > .dlql-ux-section:has(.dlql-ux-col--6 .dlql-ux-card-grid) .dlql-ux-col--6:first-child > .dlql-ux-box:first-child p {
    margin: 0;
    color: var(--navy);
    font-size: clamp(1.65rem, 2.3vw, 2.35rem);
    font-weight: 650;
    line-height: 1.2;
    text-align: left !important;
}
.shell--service-overview {
    width: 100%;
    max-width: none;
    padding: 0;
}
.service-overview {
    overflow: hidden;
    background: linear-gradient(180deg, #fff 0%, #f5fbfc 38%, #fff 100%);
}
.service-overview > :not(.static-hero) {
    width: min(calc(100% - 96px), 1320px);
    margin-right: auto;
    margin-left: auto;
}
.service-overview .static-hero {
    position: relative;
    left: 50%;
    width: 100vw;
    grid-template-columns: minmax(0, .9fr) minmax(430px, .8fr);
    gap: clamp(34px, 5vw, 72px);
    align-items: center;
    margin: 0 0 42px;
    padding: clamp(58px, 5vw, 84px) max(54px, calc((100vw - 1480px) / 2)) clamp(62px, 5.5vw, 92px);
    overflow: hidden;
    border-radius: 0 0 34px 34px;
    background:
        linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(132deg, #05283d 0%, #07536b 48%, #0a8ba0 100%);
    background-size: 128px 128px, 128px 128px, auto;
    box-shadow: 0 24px 70px rgba(5,47,80,.12);
    transform: translateX(-50%);
}
.service-overview .static-hero__content,
.service-overview .static-hero__panel {
    position: relative;
    z-index: 1;
}
.service-overview .static-hero h1 {
    max-width: 760px;
    color: var(--white);
    font-size: clamp(2.9rem, 4.4vw, 4.7rem);
    font-weight: 680;
    line-height: 1.08;
    letter-spacing: 0;
}
.service-overview .static-hero__content > p {
    max-width: 680px;
    color: rgba(230,250,252,.92);
    font-size: 1.03rem;
    line-height: 1.82;
}
.service-overview .static-hero .eyebrow {
    color: #8deeff;
}
.service-overview .static-hero__panel {
    min-height: clamp(350px, 29vw, 470px);
    border: 1px solid rgba(255,255,255,.34);
    border-radius: 30px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 30px 70px rgba(1,20,31,.24);
}
.service-overview .static-hero__panel img {
    height: 100%;
    object-fit: cover;
    opacity: .9;
    filter: saturate(.98) contrast(.98);
}
.service-overview .static-hero__facts span {
    min-height: 58px;
    background: rgba(6,31,47,.72);
    border-color: rgba(255,255,255,.18);
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(1,20,31,.2);
}
.service-overview__categories,
.service-overview__group {
    margin-bottom: 34px;
    padding: clamp(26px, 3vw, 38px);
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(217,238,243,.78);
    border-radius: 30px;
    box-shadow: 0 20px 58px rgba(5,47,80,.05);
    backdrop-filter: blur(10px);
}
.service-overview__head {
    max-width: 820px;
    margin-bottom: 24px;
}
.service-overview__head h2,
.service-overview__group-head h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(1.8rem, 2.5vw, 2.55rem);
    font-weight: 650;
    line-height: 1.12;
    letter-spacing: 0;
}
.service-overview__head p:not(.eyebrow),
.service-overview__group-head > p {
    margin: 12px 0 0;
    color: #536d7a;
    font-size: .98rem;
    line-height: 1.74;
}
.service-overview__category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.service-overview__category {
    display: grid;
    gap: 9px;
    min-height: 150px;
    padding: 20px;
    color: var(--navy);
    background: linear-gradient(180deg, #fff, #fbfdfe);
    border: 1px solid #e1eef2;
    border-radius: 22px;
    box-shadow: 0 12px 34px rgba(5,47,80,.04);
    transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), border-color .5s var(--ease-soft);
}
.service-overview__category:hover,
.service-overview-card:hover {
    transform: translateY(-5px);
    border-color: rgba(14,165,183,.32);
    box-shadow: var(--shadow-hover);
}
.service-overview__category span {
    display: inline-grid;
    width: 50px;
    height: 50px;
    place-items: center;
    color: var(--navy);
    background: var(--yellow);
    border-radius: 17px;
    font-weight: 950;
}
.service-overview__category strong {
    font-size: 1.06rem;
    line-height: 1.28;
}
.service-overview__category small {
    color: var(--blue);
    font-size: .78rem;
    font-weight: 850;
}
.service-overview__group-head {
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(320px, 1fr) auto;
    gap: 22px;
    align-items: end;
    margin-bottom: 22px;
}
.service-overview__group-head .button {
    align-self: center;
    white-space: nowrap;
}
.service-overview__cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.service-overview-card {
    display: flex;
    min-width: 0;
    overflow: hidden;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e1eef2;
    border-radius: 22px;
    box-shadow: 0 12px 34px rgba(5,47,80,.045);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-overview-card__media {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, #e8f7fa, #fff7de);
}
.service-overview-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease-soft);
}
.service-overview-card:hover .service-overview-card__media img {
    transform: scale(1.06);
}
.service-overview-card__media span {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: var(--navy);
    font-size: 3rem;
    font-weight: 850;
}
.service-overview-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
}
.service-overview-card__body > span {
    color: var(--blue);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.service-overview-card h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 680;
    line-height: 1.35;
    letter-spacing: 0;
}
.service-overview-card h3 a {
    color: var(--navy);
}
.service-overview-card p {
    margin: 0;
    color: #5b7280;
    font-size: .88rem;
    line-height: 1.64;
}
.service-overview-card .text-link {
    margin-top: auto;
    color: var(--blue);
    font-size: .84rem;
    font-weight: 850;
}
.static-page-content--gioi-thieu,
.static-page-content--ceo-ngo-van-ly { --profile-accent: #0ea5b7; }
.static-page-content--gioi-thieu .static-hero,
.static-page-content--ceo-ngo-van-ly .static-hero { grid-template-columns: minmax(0, .92fr) minmax(360px, .78fr); gap: 48px; align-items: center; margin-top: -18px; padding: 48px; border-radius: 32px; background: linear-gradient(135deg, #062b40 0%, #0b6078 58%, #1795a6 120%); }
.static-page-content--gioi-thieu .static-hero {
    position: relative;
    left: 50%;
    width: 100vw;
    margin: -18px 0 54px;
    padding: clamp(54px, 5vw, 82px) max(48px, calc((100vw - 1480px) / 2));
    border-radius: 0;
    box-shadow: none;
    transform: translateX(-50%);
}
.static-page-content--gioi-thieu .static-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 96px 96px;
    opacity: .35;
    pointer-events: none;
}
.static-page-content--gioi-thieu .static-hero__content,
.static-page-content--gioi-thieu .static-hero__panel {
    position: relative;
    z-index: 1;
}
.static-page-content--gioi-thieu .static-hero h1,
.static-page-content--ceo-ngo-van-ly .static-hero h1 { max-width: 680px; font-size: clamp(2.45rem, 4vw, 4rem); line-height: 1.08; letter-spacing: -.04em; }
.static-page-content--gioi-thieu .static-hero__content > p,
.static-page-content--ceo-ngo-van-ly .static-hero__content > p { max-width: 590px; color: #d9f4f6; font-size: 1rem; }
.static-page-content--gioi-thieu .static-hero__panel,
.static-page-content--ceo-ngo-van-ly .static-hero__panel { min-height: 360px; border-radius: 26px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 24px 60px rgba(1,20,31,.22); }
.static-page-content--gioi-thieu .static-hero__panel::after { content: "Tận nơi • Đúng hẹn • Báo giá rõ"; position: absolute; left: 18px; right: 18px; top: 18px; z-index: 1; padding: 10px 14px; color: var(--navy); background: rgba(255,255,255,.9); border-radius: 999px; font-size: .78rem; font-weight: 900; text-align: center; }
.static-page-content--gioi-thieu .static-hero__facts,
.static-page-content--ceo-ngo-van-ly .static-hero__facts { margin: auto 18px 18px; }
.static-page-content--gioi-thieu .dlql-ux-figure:first-child { display: none; }
.static-page-content--gioi-thieu .dlql-ux-row { display: block; max-width: 1080px; margin: 0 auto 28px; }
.static-page-content--gioi-thieu .dlql-ux-col { position: relative; padding: 0; background: transparent; border: 0; border-radius: 0; box-shadow: none; }
.static-page-content--gioi-thieu .dlql-ux-col > h2:first-of-type { margin-top: 0; }
.static-page-content--gioi-thieu h2 { display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 14px; align-items: center; margin: 58px 0 22px; color: var(--navy); font-size: clamp(2rem, 3.2vw, 3.2rem); }
.static-page-content--gioi-thieu h2::before { content: ""; display: inline-grid; width: 36px; height: 36px; background: linear-gradient(135deg, var(--yellow), var(--profile-accent)); border-radius: 12px; box-shadow: 0 12px 24px rgba(14,165,183,.18); }
.static-page-content--gioi-thieu h2::after { grid-column: 2; width: 96px; margin-top: 3px; }
.static-page-content--gioi-thieu h3 { margin: 20px 0 12px; padding: 18px 20px; background: linear-gradient(135deg, #f3fbfd, #fff); border: 1px solid #d9eef3; border-radius: 16px; color: #123d58; font-size: 1.08rem; box-shadow: 0 14px 34px rgba(5,47,80,.05); }
.static-page-content--gioi-thieu p { max-width: 880px; color: #365160; font-size: 1.02rem; line-height: 1.85; }
.static-page-content--gioi-thieu ul, .static-page-content--gioi-thieu ol { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 22px 0 34px; padding: 0; list-style: none; }
.static-page-content--gioi-thieu li { position: relative; min-height: 72px; padding: 18px 18px 18px 48px; background: #fff; border: 1px solid #dfecef; border-radius: 18px; box-shadow: 0 16px 42px rgba(5,47,80,.06); line-height: 1.6; }
.static-page-content--gioi-thieu li::before { content: ""; position: absolute; left: 20px; top: 25px; width: 10px; height: 10px; background: var(--profile-accent); border: 2px solid #d8f7fa; border-radius: 50%; box-shadow: 0 0 0 5px rgba(38,184,195,.12); }
.static-page-content--gioi-thieu table { overflow: hidden; margin: 26px 0 34px; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-sm); }
.static-page-content--gioi-thieu table td:first-child { width: 32%; color: var(--navy); background: #f4fbfd; font-weight: 850; }
.static-page-content--gioi-thieu .dlql-ux-col > p:last-child { max-width: 100%; padding: 22px 24px; background: linear-gradient(135deg, #082f45, #0a7791); border: 0; border-radius: 20px; color: #d9f4f6; word-break: break-word; box-shadow: 0 20px 54px rgba(5,47,80,.14); }
.static-page-content--gioi-thieu .dlql-ux-col > p:last-child a { display: inline; color: var(--yellow); font-weight: 850; line-height: 1.9; }
.site-main--gioi-thieu { padding-top: 0; }
.site-main--ceo-ngo-van-ly { padding-top: 0; }
.shell--about-page { width: 100%; max-width: none; }
.about-page { margin-top: 0; overflow: hidden; background: linear-gradient(180deg, #fff 0%, #f7fbfc 42%, #fff 100%); }
.about-page > :not(.static-hero) {
    width: min(calc(100% - 96px), 1320px);
    margin-left: auto;
    margin-right: auto;
}
.about-page .static-hero {
    position: relative;
    left: 50%;
    width: 100vw;
    grid-template-columns: minmax(0, .92fr) minmax(420px, .82fr);
    gap: clamp(38px, 5vw, 78px);
    align-items: center;
    margin: 0 0 50px;
    padding: clamp(58px, 5.4vw, 88px) max(54px, calc((100vw - 1500px) / 2)) clamp(64px, 6vw, 96px);
    overflow: hidden;
    border-radius: 0 0 34px 34px;
    background:
        radial-gradient(ellipse at 78% 20%, rgba(76, 211, 223, .24), transparent 42%),
        linear-gradient(132deg, #05283d 0%, #07536b 46%, #0b8d9e 100%);
    box-shadow: 0 24px 70px rgba(5, 47, 80, .12);
    transform: translateX(-50%);
}
.about-page .static-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
    background-size: 128px 128px;
    opacity: .18;
    pointer-events: none;
}
.about-page .static-hero__content,
.about-page .static-hero__panel {
    position: relative;
    z-index: 1;
}
.about-page .static-hero h1 {
    max-width: 780px;
    font-size: clamp(2.85rem, 4.35vw, 4.55rem);
    font-weight: 680;
    line-height: 1.08;
}
.about-page .static-hero__content > p {
    max-width: 690px;
    color: rgba(230, 250, 252, .92);
    font-size: 1.02rem;
    line-height: 1.82;
}
.about-page .static-hero__panel {
    min-height: clamp(400px, 35vw, 540px);
    border: 1px solid rgba(255,255,255,.34);
    border-radius: 30px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 30px 70px rgba(1,20,31,.26);
}
.about-page .static-hero__panel img {
    opacity: .86;
    filter: saturate(.95) contrast(.98);
}
.about-page .static-hero__facts span {
    min-height: 58px;
    background: rgba(6, 31, 47, .72);
    border-color: rgba(255,255,255,.18);
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(1, 20, 31, .2);
}
.about-page__intro { display: grid; grid-template-columns: minmax(0, .82fr) minmax(360px, .7fr); gap: 40px; align-items: center; margin: 28px auto 24px; }
.about-page__intro h2,
.about-page__section-head h2,
.about-page__cta h2 { margin: 0; color: var(--navy); font-size: clamp(1.72rem, 2.3vw, 2.48rem); font-weight: 720; line-height: 1.18; letter-spacing: -.012em; }
.about-page__intro > p { margin: 0; color: #365160; font-size: 1.04rem; line-height: 1.85; }
.about-page__story { display: grid; grid-template-columns: minmax(0, .82fr) minmax(320px, .68fr); gap: 40px; align-items: center; margin: 8px auto 40px; }
.about-page__story-media { position: relative; }
.about-page__story-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-hover); }
.about-page__story-copy h2 { margin: 0 0 12px; color: var(--navy); font-size: clamp(1.5rem, 2.1vw, 2.05rem); }
.about-page__story-copy p:not(.eyebrow) { margin: 0; color: #4d6573; font-size: 1rem; line-height: 1.8; }
.about-page__metrics { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin: 22px auto 54px; }
.about-page__metrics div { min-height: 128px; padding: 22px; color: var(--white); background: linear-gradient(145deg, #073850, #0785a4); border: 1px solid rgba(255,255,255,.3); border-radius: 22px; box-shadow: 0 16px 38px rgba(5,47,80,.09); transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft); }
.about-page__metrics div:hover { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(5,47,80,.15); }
.about-page__metrics div:nth-child(even) { color: var(--navy); background: rgba(255,255,255,.82); border: 1px solid #d9eef3; box-shadow: 0 14px 34px rgba(5,47,80,.055); }
.about-page__metrics div:nth-child(even):hover { box-shadow: 0 20px 46px rgba(5,47,80,.1); }
.about-page__metrics strong { display: block; margin-bottom: 10px; color: var(--yellow); font-size: 2.15rem; font-weight: 760; line-height: 1; letter-spacing: -.01em; }
.about-page__metrics div:nth-child(even) strong { color: var(--blue); }
.about-page__metrics span { display: block; max-width: 210px; font-weight: 680; line-height: 1.48; }
.about-page__values,
.about-page__press { margin: 46px auto; padding: 38px; background: rgba(255,255,255,.72); border: 1px solid rgba(217,238,243,.72); border-radius: 34px; box-shadow: 0 16px 48px rgba(5,47,80,.045); }
.about-page__section-head { display: grid; gap: 10px; max-width: 880px; margin-bottom: 24px; }
.about-page__section-head p:not(.eyebrow) { max-width: 760px; margin: 0; color: #4d6573; font-size: 1rem; line-height: 1.75; }
.about-page__value-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.about-page__value-grid article { min-height: 236px; padding: 24px; background: linear-gradient(180deg, #fff, #fbfdfe); border: 1px solid #e1eef2; border-radius: 22px; box-shadow: 0 12px 32px rgba(5,47,80,.045); transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), border-color .5s var(--ease-soft); }
.about-page__value-grid article:hover { transform: translateY(-5px); border-color: #c9e2e7; box-shadow: var(--shadow-hover); }
.about-page__value-grid span,
.about-page__press-grid span { display: inline-grid; width: 40px; height: 40px; place-items: center; margin-bottom: 18px; color: var(--navy); background: var(--yellow); border-radius: 13px; font-weight: 760; }
.about-page__value-grid h3 { margin: 0 0 14px; color: var(--navy); font-size: 1.04rem; font-weight: 720; line-height: 1.32; }
.about-page__value-grid p { margin: 0; color: #4d6573; line-height: 1.7; }
.about-page__press-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.about-page__press-grid a { display: grid; align-content: start; min-height: 148px; padding: 18px; color: var(--navy); background: linear-gradient(180deg, #fff, #fbfdfe); border: 1px solid #e1eef2; border-radius: 18px; box-shadow: 0 10px 26px rgba(5,47,80,.04); text-decoration: none; transition: transform .5s var(--ease-soft), border-color .5s var(--ease-soft), box-shadow .5s var(--ease-soft); }
.about-page__press-grid a:hover { transform: translateY(-5px); border-color: rgba(8,126,169,.38); box-shadow: var(--shadow-hover); }
.about-page__press-grid small { margin-bottom: 10px; color: var(--blue); font-weight: 700; text-transform: uppercase; font-size: .7rem; letter-spacing: .035em; }
.about-page__press-grid strong { font-size: .98rem; font-weight: 680; line-height: 1.46; }
.about-page__cta,
.service-overview__cta { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: center; margin: 54px auto 22px; padding: 36px 40px; color: var(--white); background: linear-gradient(135deg, #062f46, #0b8296); border-radius: 30px; box-shadow: 0 22px 60px rgba(5,47,80,.13); }
.about-page__cta h2,
.about-page__cta .eyebrow,
.service-overview__cta h2,
.service-overview__cta .eyebrow { color: var(--white); }
.about-page__cta .button,
.service-overview__cta .button { white-space: nowrap; }

/* Typography refinement */
.hero h1,
.static-hero h1,
.service-tax-hero__content h1,
.service-detail__hero-copy h1,
.site-footer__brand .site-footer__headline,
.site-footer__contact-phone {
    font-weight: 700;
    letter-spacing: 0;
}

.section-heading h2,
.static-page-content h2,
.about-page__intro h2,
.about-page__section-head h2,
.about-page__cta h2,
.ceo-profile__section-head h2,
.ceo-profile__contact h2,
.service-detail__content h2 {
    font-weight: 650;
    letter-spacing: 0;
}

.primary-nav__list > li > a,
.button,
.text-link,
.site-footer__navigation a,
.site-footer__support a {
    font-weight: 600;
}
.static-page-content--ceo-ngo-van-ly { --profile-accent: #087ea9; }
.static-page-content--ceo-ngo-van-ly .static-hero { background: linear-gradient(135deg, #071f32 0%, #0a4f68 55%, #0ca0ad 130%); }
.static-page-content--ceo-ngo-van-ly .static-hero__panel { border-radius: 30px 30px 90px 30px; }
.static-page-content--ceo-ngo-van-ly .static-hero__panel::after { content: "Founder Profile"; position: absolute; top: 18px; left: 18px; z-index: 1; padding: 8px 13px; color: var(--navy); background: rgba(255,255,255,.9); border-radius: 999px; font-size: .72rem; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; }
.static-page-content--ceo-ngo-van-ly .dlql-ux-section { max-width: 1180px; margin: 54px auto; padding: 0; background: transparent; border-radius: 0; }
.static-page-content--ceo-ngo-van-ly .dlql-ux-row { display: grid; grid-template-columns: minmax(300px, .36fr) minmax(0, 1fr); gap: 44px; align-items: start; margin: 38px 0; }
.static-page-content--ceo-ngo-van-ly .dlql-ux-col { min-width: 0; max-width: none; flex: none; }
.static-page-content--ceo-ngo-van-ly .dlql-ux-col--3 { align-self: start; padding: 26px; color: #29495b; background: linear-gradient(180deg, #fff, #f5fbfd); border: 1px solid #dcebef; border-radius: 22px; box-shadow: 0 18px 48px rgba(5,47,80,.08); font-size: .97rem; line-height: 1.76; }
.static-page-content--ceo-ngo-van-ly .dlql-ux-col--3 hr { width: 80px; height: 3px; margin: 16px 0; background: linear-gradient(90deg, var(--yellow), var(--profile-accent)); border: 0; border-radius: 999px; }
.static-page-content--ceo-ngo-van-ly .dlql-ux-col--3 hr + hr { display: none; }
.static-page-content--ceo-ngo-van-ly .dlql-ux-col--3 strong { display: inline; font-weight: 900; }
.static-page-content--ceo-ngo-van-ly .dlql-ux-col--9 { padding: 6px 0 0; }
.static-page-content--ceo-ngo-van-ly .dlql-ux-col--12 { grid-column: 1 / -1; }
.static-page-content--ceo-ngo-van-ly .dlql-ux-col .dlql-ux-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin: 22px 0 0; }
.static-page-content--ceo-ngo-van-ly > .dlql-ux-section:first-of-type { position: relative; padding: 34px; background: linear-gradient(135deg, #ffffff 0%, #f4fbfd 62%, #eef8fb 100%); border: 1px solid #dcebef; border-radius: 30px; box-shadow: 0 24px 64px rgba(5,47,80,.09); }
.static-page-content--ceo-ngo-van-ly > .dlql-ux-section:first-of-type::before { content: ""; position: absolute; inset: 0; pointer-events: none; border-top: 5px solid var(--yellow); border-radius: 30px; opacity: .9; }
.static-page-content--ceo-ngo-van-ly > .dlql-ux-section:first-of-type > .dlql-ux-row:first-child { align-items: start; margin: 0; }
.static-page-content--ceo-ngo-van-ly > .dlql-ux-section:first-of-type > .dlql-ux-row:first-child p { position: relative; max-width: 100%; margin: 0; padding-left: 22px; color: #29495b; border-left: 4px solid var(--yellow); font-size: 1.02rem; line-height: 1.82; }
.static-page-content--ceo-ngo-van-ly .dlql-ux-figure { margin: 0; }
.static-page-content--ceo-ngo-van-ly .dlql-ux-figure img { width: 100%; max-height: 420px; object-fit: cover; border-radius: 24px; box-shadow: 0 22px 58px rgba(5,47,80,.14); }
.static-page-content--ceo-ngo-van-ly h2 { margin: 0 0 20px; color: var(--navy); font-size: clamp(2rem, 2.8vw, 3rem); letter-spacing: 0; }
.static-page-content--ceo-ngo-van-ly h2::after { width: 72px; height: 4px; margin-top: 14px; background: linear-gradient(90deg, var(--yellow), var(--profile-accent)); border-radius: 999px; }
.static-page-content--ceo-ngo-van-ly h3 { margin: 0 0 14px; color: var(--blue); font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; }
.static-page-content--ceo-ngo-van-ly p { color: #365160; line-height: 1.78; }
.static-page-content--ceo-ngo-van-ly strong { color: var(--navy); }
.static-page-content--ceo-ngo-van-ly .dlql-ux-col > p:first-child:last-child,
.static-page-content--ceo-ngo-van-ly .dlql-ux-col > p:first-child:not(:last-child) { margin: 0; }
.static-page-content--ceo-ngo-van-ly ul,
.static-page-content--ceo-ngo-van-ly ol { display: grid; gap: 12px; margin: 18px 0 0; padding: 0; list-style: none; }
.static-page-content--ceo-ngo-van-ly li { position: relative; padding: 16px 18px 16px 52px; background: #fff; border: 1px solid #dfecef; border-radius: 16px; box-shadow: 0 12px 34px rgba(5,47,80,.05); }
.static-page-content--ceo-ngo-van-ly li::before { content: ""; position: absolute; left: 22px; top: 24px; width: 10px; height: 10px; background: var(--profile-accent); border-radius: 50%; box-shadow: 0 0 0 5px rgba(8,126,169,.12); }
.static-page-content--ceo-ngo-van-ly .dlql-ux-featured { display: block; height: auto; padding: 24px; background: linear-gradient(180deg, #fff, #f3fbfd); border: 1px solid #dcebef; border-radius: 18px; box-shadow: 0 14px 34px rgba(5,47,80,.05); }
.static-page-content--ceo-ngo-van-ly .dlql-ux-featured > div { min-width: 0; }
.static-page-content--ceo-ngo-van-ly .dlql-ux-featured p { margin: 0 !important; padding: 0 !important; background: transparent !important; }
.static-page-content--ceo-ngo-van-ly .dlql-ux-featured strong { display: block; margin-bottom: 8px; color: var(--navy); font-size: 1.02rem; }
.static-page-content--ceo-ngo-van-ly .dlql-ux-featured span { color: #365160 !important; }
.static-page-content--ceo-ngo-van-ly .news-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.static-page-content--ceo-ngo-van-ly .news-card,
.static-page-content--ceo-ngo-van-ly .news-card:first-child { display: block; grid-row: auto; }

.ceo-profile { margin-top: 0; overflow: hidden; background: linear-gradient(180deg, #fff 0%, #f7fbfc 42%, #fff 100%); color: var(--ink); }
.ceo-profile h1,
.ceo-profile h2,
.ceo-profile h3 { letter-spacing: 0; }
.ceo-profile > :not(.static-hero) { width: min(calc(100% - 96px), 1320px); margin-left: auto; margin-right: auto; }
.ceo-profile .static-hero {
    position: relative;
    left: 50%;
    width: 100vw;
    grid-template-columns: minmax(0, .92fr) minmax(420px, .82fr);
    gap: clamp(30px, 4vw, 60px);
    align-items: center;
    margin: 0 0 40px;
    padding: clamp(36px, 3.6vw, 56px) max(54px, calc((100vw - 1500px) / 2)) clamp(40px, 4vw, 60px);
    overflow: hidden;
    border-radius: 0 0 34px 34px;
    background:
        radial-gradient(ellipse at 78% 20%, rgba(76, 211, 223, .24), transparent 42%),
        linear-gradient(132deg, #05283d 0%, #07536b 46%, #0b8d9e 100%);
    box-shadow: 0 24px 70px rgba(5, 47, 80, .12);
    transform: translateX(-50%);
}
.ceo-profile .static-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px); background-size: 128px 128px; opacity: .18; pointer-events: none; }
.ceo-profile .static-hero__content,
.ceo-profile .static-hero__panel { position: relative; z-index: 1; }
.ceo-profile .static-hero h1 { max-width: 780px; font-size: clamp(2.4rem, 3.5vw, 3.6rem); font-weight: 680; line-height: 1.08; }
.ceo-profile .static-hero__content > p { max-width: 690px; color: rgba(230, 250, 252, .92); font-size: .98rem; line-height: 1.75; }
.ceo-profile .static-hero__panel { min-height: clamp(300px, 24vw, 380px); border: 1px solid rgba(255,255,255,.34); border-radius: 30px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 30px 70px rgba(1,20,31,.26); }
.ceo-profile .static-hero__panel img { opacity: .86; filter: saturate(.95) contrast(.98); }
.ceo-profile .static-hero__facts span { min-height: 58px; background: rgba(6, 31, 47, .72); border-color: rgba(255,255,255,.18); border-radius: 999px; box-shadow: 0 12px 30px rgba(1, 20, 31, .2); }

.ceo-profile__intro { display: grid; grid-template-columns: minmax(0, .82fr) minmax(360px, .7fr); gap: 40px; align-items: center; margin: 28px auto 24px; }
.ceo-profile__intro h2,
.ceo-profile__section-head h2 { margin: 0; color: var(--navy); font-size: clamp(1.72rem, 2.3vw, 2.48rem); font-weight: 720; line-height: 1.18; letter-spacing: -.012em; }
.ceo-profile__intro > p { margin: 0; color: #365160; font-size: 1.04rem; line-height: 1.85; }

.ceo-profile__metrics { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin: 22px auto 54px; }
.ceo-profile__metrics div { min-height: 128px; padding: 22px; color: var(--white); background: linear-gradient(145deg, #073850, #0785a4); border: 1px solid rgba(255,255,255,.3); border-radius: 22px; box-shadow: 0 16px 38px rgba(5,47,80,.09); transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft); }
.ceo-profile__metrics div:hover { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(5,47,80,.15); }
.ceo-profile__metrics div:nth-child(even) { color: var(--navy); background: rgba(255,255,255,.82); border: 1px solid #d9eef3; box-shadow: 0 14px 34px rgba(5,47,80,.055); }
.ceo-profile__metrics div:nth-child(even):hover { box-shadow: 0 20px 46px rgba(5,47,80,.1); }
.ceo-profile__metrics strong { display: block; margin-bottom: 10px; color: var(--yellow); font-size: 2.15rem; font-weight: 760; line-height: 1; letter-spacing: -.01em; }
.ceo-profile__metrics div:nth-child(even) strong { color: var(--blue); }
.ceo-profile__metrics span { display: block; font-weight: 680; line-height: 1.48; }

.ceo-profile__identity { display: grid; grid-template-columns: minmax(280px, .38fr) minmax(0, 1fr); gap: 34px; margin: 8px auto 46px; align-items: stretch; }
.ceo-profile__id-card,
.ceo-profile__story { background: #fff; border: 1px solid #dcebef; border-radius: 24px; box-shadow: 0 18px 46px rgba(5,47,80,.06); }
.ceo-profile__id-card { position: relative; overflow: hidden; padding: 0; border: 0; box-shadow: 0 24px 62px rgba(5,47,80,.11); }
.ceo-profile__id-card::before { position: absolute; inset: 0 0 auto; height: 148px; background: linear-gradient(135deg, #05283d, #087d91); content: ""; }
.ceo-profile__id-card::after { position: absolute; top: 54px; right: 26px; display: grid; width: 76px; height: 76px; place-items: center; color: rgba(255,255,255,.94); background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.24); border-radius: 50%; box-shadow: inset 0 0 0 8px rgba(255,255,255,.06); content: "NL"; font-size: 1.3rem; font-weight: 950; letter-spacing: .04em; pointer-events: none; }
.ceo-profile__id-card > span { position: relative; z-index: 1; display: inline-flex; margin: 22px 26px 10px; padding: 8px 13px; color: var(--navy); background: var(--yellow); border-radius: 999px; font-size: .7rem; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; }
.ceo-profile__id-card h2,
.ceo-profile__story h2 { margin-bottom: 20px; color: var(--navy); font-size: 1.55rem; }
.ceo-profile__id-card h2 { position: relative; z-index: 1; max-width: 230px; margin: 0 26px 38px; color: var(--white); font-size: 1.7rem; letter-spacing: -.02em; }
.ceo-profile__id-card dl { position: relative; z-index: 1; display: grid; gap: 0; margin: 0; padding: 14px 26px 22px; background: #fff; }
.ceo-profile__id-card dl div { position: relative; display: grid; grid-template-columns: 78px minmax(0, 1fr); gap: 12px; align-items: baseline; min-height: 46px; padding: 11px 0; border-bottom: 1px solid #e2eef2; }
.ceo-profile__id-card dl div::before { position: absolute; top: 15px; left: 0; width: 8px; height: 8px; background: var(--yellow); border-radius: 50%; content: ""; }
.ceo-profile__id-card dl div:last-child { border-bottom: 0; }
.ceo-profile__id-card dt { padding-left: 18px; color: #607482; font-size: .68rem; font-weight: 950; letter-spacing: .08em; line-height: 1.25; text-transform: uppercase; }
.ceo-profile__id-card dd { margin: 0; color: var(--navy); font-size: .96rem; font-weight: 900; line-height: 1.4; overflow-wrap: break-word; }
.ceo-profile__id-card a { color: var(--blue); font-size: .88rem; letter-spacing: -.01em; }
.ceo-profile__story { display: flex; flex-direction: column; justify-content: space-between; gap: 16px; padding: 34px; }
.ceo-profile__story p { margin: 0 0 14px; color: #365160; line-height: 1.78; }
.ceo-profile__story p:last-child { margin-bottom: 0; }

.ceo-profile__group,
.ceo-profile__vision { margin: 46px auto; padding: 38px; background: rgba(255,255,255,.72); border: 1px solid rgba(217,238,243,.72); border-radius: 34px; box-shadow: 0 16px 48px rgba(5,47,80,.045); }
.ceo-profile__section-head { display: grid; gap: 10px; max-width: 880px; margin-bottom: 24px; }
.ceo-profile__section-head p:not(.eyebrow) { max-width: 760px; margin: 0; color: #4d6573; font-size: 1rem; line-height: 1.75; }

.ceo-profile__grid { display: grid; gap: 18px; }
.ceo-profile__grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ceo-profile__grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.ceo-profile__grid article { min-height: 200px; padding: 24px; background: linear-gradient(180deg, #fff, #fbfdfe); border: 1px solid #e1eef2; border-radius: 22px; box-shadow: 0 12px 32px rgba(5,47,80,.045); transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), border-color .5s var(--ease-soft); }
.ceo-profile__grid article:hover { transform: translateY(-5px); border-color: #c9e2e7; box-shadow: var(--shadow-hover); }
.ceo-profile__grid h3 { margin: 0 0 12px; color: var(--navy); font-size: 1.04rem; font-weight: 720; line-height: 1.32; }
.ceo-profile__grid p { margin: 0; color: #4d6573; line-height: 1.7; }

/* Chronological timeline strip — used for career/professional-history sections */
.ceo-profile__timeline { position: relative; display: grid; gap: clamp(16px, 2.2vw, 30px); margin-top: 8px; padding-top: 52px; }
.ceo-profile__timeline--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.ceo-profile__timeline--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ceo-profile__timeline::before { content: ""; position: absolute; top: 21px; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--blue), var(--cyan), var(--yellow)); }
.ceo-profile__timeline article { position: relative; }
.ceo-profile__timeline article::before { content: ""; position: absolute; top: -37px; left: 0; width: 16px; height: 16px; background: var(--white); border: 4px solid var(--blue); border-radius: 50%; box-shadow: 0 0 0 6px rgba(8,126,169,.1); }
.ceo-profile__timeline article:nth-child(3n+2)::before { border-color: var(--cyan); box-shadow: 0 0 0 6px rgba(38,184,195,.12); }
.ceo-profile__timeline article:last-child::before { border-color: var(--yellow); box-shadow: 0 0 0 6px rgba(245,185,29,.16); }
.ceo-profile__timeline time { display: inline-flex; min-height: 32px; align-items: center; margin-bottom: 12px; padding: 0 14px; color: var(--white); background: var(--navy); border-radius: 999px; font-size: .82rem; font-weight: 800; }
.ceo-profile__timeline h3 { margin: 0 0 10px; color: var(--navy); font-size: 1.04rem; font-weight: 720; line-height: 1.3; }
.ceo-profile__timeline p { margin: 0; color: #4d6573; font-size: .94rem; line-height: 1.68; }

.ceo-profile__vision { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .42fr); gap: 34px; align-items: stretch; }
.ceo-profile__vision .ceo-profile__section-head { max-width: none; margin: 0; }
.ceo-profile__vision h2 { max-width: 780px; }
.ceo-profile__quote { display: grid; align-content: center; margin: 0; padding: 28px; color: var(--white); background: linear-gradient(145deg, #062b40, #087d91); border-radius: 24px; box-shadow: 0 20px 50px rgba(5,47,80,.14); font-size: 1.06rem; font-weight: 750; line-height: 1.72; }
.ceo-profile__quote cite { display: block; margin-top: 14px; color: #9be7ef; font-size: .82rem; font-weight: 800; font-style: normal; letter-spacing: .02em; }
.ceo-profile__story-quote { margin-top: 0; padding: 18px 22px; font-size: .92rem; line-height: 1.55; }
.ceo-profile__story-quote cite { margin-top: 8px; }
.ceo-profile__story-banner { display: block; margin-top: 0; overflow: hidden; border-radius: 18px; box-shadow: 0 12px 30px rgba(5,47,80,.08); }
.ceo-profile__story-banner img { display: block; width: 100%; aspect-ratio: 1536 / 640; object-fit: cover; }

.ceo-profile__press-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.ceo-profile__press-grid a { display: grid; align-content: start; min-height: 148px; padding: 18px; color: var(--navy); background: linear-gradient(180deg, #fff, #fbfdfe); border: 1px solid #e1eef2; border-radius: 18px; box-shadow: 0 10px 26px rgba(5,47,80,.04); text-decoration: none; transition: transform .5s var(--ease-soft), border-color .5s var(--ease-soft), box-shadow .5s var(--ease-soft); }
.ceo-profile__press-grid a:hover { transform: translateY(-5px); border-color: rgba(8,126,169,.38); box-shadow: var(--shadow-hover); }
.ceo-profile__press-grid small { margin-bottom: 10px; color: var(--blue); font-weight: 700; text-transform: uppercase; font-size: .7rem; letter-spacing: .035em; }
.ceo-profile__press-grid strong { font-size: .98rem; font-weight: 680; line-height: 1.46; }

.ceo-profile__contact { display: grid; grid-template-columns: minmax(280px, .48fr) minmax(0, 1fr); gap: 34px; align-items: center; margin: 34px auto; padding: 36px; background: #fff; border: 1px solid #dcebef; border-radius: 24px; box-shadow: 0 18px 46px rgba(5,47,80,.06); }
.ceo-profile__contact p { margin: 0 0 10px; color: #365160; line-height: 1.78; }
.ceo-profile__contact-list { display: grid; gap: 12px; }
.ceo-profile__contact-list a,
.ceo-profile__contact-list span { display: flex; min-height: 54px; align-items: center; padding: 14px 18px; color: var(--navy); background: #f6fbfc; border: 1px solid #dcebef; border-radius: 14px; font-weight: 800; overflow-wrap: anywhere; }
.ceo-profile__contact-list a { color: var(--blue); }

.ceo-profile__posts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.ceo-profile__posts article { overflow: hidden; background: #fff; border: 1px solid #dcebef; border-radius: 18px; box-shadow: 0 12px 30px rgba(5,47,80,.045); transition: transform .25s ease, box-shadow .25s ease; }
.ceo-profile__posts article:hover { transform: translateY(-4px); box-shadow: 0 20px 42px rgba(5,47,80,.12); }
.ceo-profile__post-media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: #eaf8fb; }
.ceo-profile__post-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.ceo-profile__posts article:hover .ceo-profile__post-media img { transform: scale(1.06); }
.ceo-profile__posts article > div { padding: 20px; }
.ceo-profile__posts time { color: #607482; font-size: .78rem; font-weight: 850; text-transform: uppercase; }
.ceo-profile__posts h3 { margin: 10px 0; font-size: 1.05rem; line-height: 1.35; }
.ceo-profile__posts h3 a { color: var(--navy); }

@media (min-width: 901px) {
    .static-page-content--ceo-ngo-van-ly .dlql-ux-col--9 > .dlql-ux-row > .dlql-ux-col--12:nth-child(n+4) {
        width: calc(100% + 344px);
        margin-left: -344px;
    }
}

@media (max-width: 1250px) and (min-width: 901px) {
    .primary-nav { margin-right: 18px; }
}

@media (max-width: 1100px) {
    .primary-nav { margin-right: 0; }
    .primary-nav__list { gap: 1px; }
    .primary-nav a { font-size: .82rem; }
    .header-call { display: none; }
    .hero__content { width: 58%; }
    .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: auto; }
    .service-card, .service-card:first-child, .service-card:nth-child(n+2):nth-child(-n+9), .service-card:nth-child(n+10) { grid-column: auto; grid-row: auto; min-height: 220px; }
    .service-card:first-child { grid-column: 1 / -1; min-height: 360px; }
    .service-card:nth-child(n+2):nth-child(-n+9) .service-card__body { padding-right: 48px; }
    .service-card:nth-child(n+10) { display: block; }
    .service-card:nth-child(n+10) .service-card__top { margin-bottom: 16px; }
    .price-grid__header, .price-card { grid-template-columns: 180px 155px minmax(0, 1fr) 150px; gap: 18px; }
    .site-footer__masthead { grid-template-columns: minmax(0, 1fr) 360px; gap: 36px; }
    .site-footer__directory { gap: 0; }
    .site-footer__resources-primary { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 38px; }
    .site-footer__support { grid-column: 1 / -1; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); }
    .site-footer__support ul { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 36px; }
}

@media (max-width: 900px) {
    .section { padding: 76px 0; }
    .header-utility { display: none; }
    .header-main__inner { min-height: 68px; }
    .site-brand { flex-basis: 178px; height: 68px; }
    .site-brand img, .custom-logo { max-height: 60px; }
    .primary-nav { display: none; }
    .menu-toggle { display: block; margin-left: auto; }
    .hero, .hero__grid { min-height: 620px; }
    .hero__photo { width: 76%; background-position: 60% center; }
    .hero::before { background: linear-gradient(90deg, #f4f7f6 0%, rgba(244,247,246,.97) 43%, rgba(244,247,246,.64) 64%, rgba(244,247,246,.08) 100%); }
    .hero__content { width: 64%; }
    .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
    .trust-item:nth-child(2) { border-right: 0; }
    .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .blog-cat-hero__box { padding: 32px; }
    .news-grid--wide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .quick-booking__shell { grid-template-columns: 1fr; gap: 30px; padding: 38px; }
    .about-grid, .faq-grid { grid-template-columns: 1fr; gap: 46px; }
    .about-media { max-width: 700px; }
    .faq-intro { position: static; }
    .process-list { grid-template-columns: repeat(2, 1fr); }
    .process-list::before, .process-list::after { display: none; }
    .reasons-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: auto; }
    .reasons-grid article, .reasons-grid article:first-child, .reasons-grid article:nth-child(2), .reasons-grid article:nth-child(3) { grid-column: auto; grid-row: auto; min-height: 190px; }
    .reasons-grid article:first-child { grid-column: 1 / -1; min-height: 330px; }
    .reasons-grid article:nth-child(2), .reasons-grid article:nth-child(3) { display: block; }
    .reasons-grid article:nth-child(2) > span, .reasons-grid article:nth-child(3) > span { margin-bottom: 16px; font-size: 2.5rem; }
    .posts-fallback { grid-template-columns: 190px 1fr; }
    .posts-fallback__content { padding: 34px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; padding: 44px; }
    .location-cta__inner { display: block; }
    .location-cta__actions { margin-top: 24px; }
    .site-footer__masthead { grid-template-columns: 1fr; gap: 30px; align-items: start; padding: 48px 0 30px; }
    .site-footer__brand .site-footer__headline { font-size: 3.25rem; }
    .site-footer__hotline { max-width: 460px; padding: 24px 26px; border-color: rgba(124,210,225,.15); }
    .site-footer__contact-phone { font-size: clamp(1.7rem, 5vw, 2.2rem); }
    .site-footer__directory { grid-template-columns: 1fr; gap: 0; }
    .site-footer__locations { padding: 34px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
    .site-footer__resources { padding: 34px 0 8px; }
    .static-hero { grid-template-columns: 1fr; gap: 28px; padding: 34px; }
    .static-page-content--dich-vu-dien-lanh .static-hero {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 48px max(28px, calc((100vw - 760px) / 2)) 56px;
    }
    .static-page-content--dich-vu-dien-lanh .static-hero h1 { font-size: clamp(2.55rem, 8vw, 4rem); }
    .static-page-content--dich-vu-dien-lanh > .dlql-ux-section { width: min(calc(100% - 56px), 760px); }
    .static-page-content--dich-vu-dien-lanh .dlql-ux-card-grid,
    .static-page-content--dich-vu-dien-lanh .dlql-ux-post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .static-page-content--dich-vu-dien-lanh > .dlql-ux-section:has(.dlql-ux-col--6 .dlql-ux-card-grid) .dlql-ux-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
    .service-overview > :not(.static-hero) { width: min(calc(100% - 56px), 760px); }
    .service-overview .static-hero {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 48px max(28px, calc((100vw - 760px) / 2)) 56px;
    }
    .service-overview .static-hero h1 { font-size: clamp(2.55rem, 8vw, 4rem); }
    .service-overview__category-grid,
    .service-overview__cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .service-overview__group-head {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .service-overview__group-head .button {
        justify-self: start;
    }
    .about-page > :not(.static-hero) { width: min(calc(100% - 56px), 760px); }
    .about-page .static-hero {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 48px max(28px, calc((100vw - 760px) / 2)) 56px;
    }
    .about-page .static-hero h1 { font-size: clamp(2.55rem, 8vw, 4rem); }
    .static-hero__panel { min-height: 320px; }
    .dlql-ux-card-grid, .dlql-ux-post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .dlql-ux-section { padding: 26px; }
    .ceo-profile > :not(.static-hero) { width: min(calc(100% - 56px), 760px); }
    .ceo-profile .static-hero {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 34px max(28px, calc((100vw - 760px) / 2)) 40px;
    }
    .ceo-profile .static-hero h1 { font-size: clamp(2.3rem, 6.5vw, 3.4rem); }
    .ceo-profile__intro,
    .ceo-profile__identity,
    .ceo-profile__vision,
    .ceo-profile__contact { grid-template-columns: 1fr; }
    .ceo-profile__metrics,
    .ceo-profile__grid--3,
    .ceo-profile__grid--4,
    .ceo-profile__press-grid,
    .ceo-profile__posts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ceo-profile__timeline { grid-template-columns: 1fr !important; gap: 0; margin-top: 28px; padding-top: 0; padding-left: 30px; }
    .ceo-profile__timeline::before { top: 8px; bottom: 8px; left: 8px; right: auto; width: 2px; height: auto; background: linear-gradient(180deg, var(--blue), var(--cyan), var(--yellow)); }
    .ceo-profile__timeline article { padding-bottom: 30px; }
    .ceo-profile__timeline article:last-child { padding-bottom: 0; }
    .ceo-profile__timeline article::before { top: 6px; left: -30px; }
}

@media (max-width: 640px) {
    body { padding-bottom: 0; }
    body.admin-bar .site-header { top: 46px; }
    .container, .shell { width: min(calc(100% - 28px), var(--container)); }
    .shell--service-overview { width: 100%; }
    .shell--about-page { width: 100%; }
    .about-page > :not(.static-hero) { width: min(calc(100% - 28px), 520px); }
    .section { padding: 62px 0; }
    .site-main--dich-vu-dien-lanh { padding-top: 0; }
    .site-main--gioi-thieu { padding-top: 0; }
    .static-hero { margin: -20px 0 32px; padding: 26px 18px; border-radius: 22px; }
    .static-page-content--dich-vu-dien-lanh .static-hero {
        margin: 0 0 34px;
        padding: 30px 18px 42px;
        border-radius: 0 0 24px 24px;
    }
    .static-page-content--dich-vu-dien-lanh .static-hero h1 { font-size: 2.28rem; line-height: 1.14; }
    .static-page-content--dich-vu-dien-lanh .static-hero__panel { min-height: 260px; border-radius: 22px; }
    .static-page-content--dich-vu-dien-lanh > .dlql-ux-section { width: min(calc(100% - 28px), 520px); margin: 24px auto; }
    .static-page-content--dich-vu-dien-lanh .dlql-ux-box { padding: 18px; border-radius: 22px; }
    .static-page-content--dich-vu-dien-lanh .dlql-ux-card-grid,
    .static-page-content--dich-vu-dien-lanh .dlql-ux-post-grid { grid-template-columns: 1fr; }
    .static-page-content--dich-vu-dien-lanh .dlql-service-other-section .dlql-ux-card-grid { grid-template-columns: 1fr !important; }
    .static-page-content--dich-vu-dien-lanh > .dlql-ux-section:has(.dlql-ux-col--6 .dlql-ux-card-grid) .dlql-ux-card-grid {
        grid-template-columns: 1fr !important;
    }
    .service-overview > :not(.static-hero) { width: min(calc(100% - 28px), 520px); }
    .service-overview .static-hero {
        margin: 0 0 34px;
        padding: 30px 18px 42px;
        border-radius: 0 0 24px 24px;
    }
    .service-overview .static-hero h1 { font-size: 2.28rem; line-height: 1.14; }
    .service-overview .static-hero__panel { min-height: 260px; border-radius: 22px; }
    .service-overview__categories,
    .service-overview__group {
        margin-bottom: 24px;
        padding: 18px;
        border-radius: 22px;
    }
    .service-overview__category-grid,
    .service-overview__cards { grid-template-columns: 1fr; }
    .service-overview-card__body,
    .service-overview__category { padding: 18px; }
    .about-page .static-hero {
        margin: 0 0 34px;
        padding: 30px 18px 42px;
        border-radius: 0 0 24px 24px;
    }
    .about-page .static-hero h1 { font-size: 2.32rem; line-height: 1.14; }
    .about-page .static-hero__panel { min-height: 285px; border-radius: 22px; }
    .static-hero h1 { font-size: 2.35rem; }
    .static-hero__content > p { font-size: .98rem; }
    .static-hero__actions { display: grid; grid-template-columns: 1fr; }
    .static-hero__panel { min-height: 270px; border-radius: 18px; }
    .static-hero__facts { margin: auto 10px 10px; }
    .static-hero__facts span { grid-template-columns: 38px minmax(0, 1fr); min-height: 48px; padding: 8px 10px; font-size: .78rem; }
    .static-page-content h2 { margin-top: 34px; }
    .static-page-content table { display: block; overflow-x: auto; }
    .ceo-profile > :not(.static-hero) { width: min(calc(100% - 28px), 520px); }
    .ceo-profile .static-hero {
        margin: 0 0 28px;
        padding: 24px 18px 32px;
        border-radius: 0 0 24px 24px;
    }
    .ceo-profile .static-hero h1 { font-size: 2.32rem; line-height: 1.14; }
    .ceo-profile .static-hero__panel { min-height: 285px; border-radius: 22px; }
    .ceo-profile__id-card { padding: 22px 22px 0; border-radius: 20px; }
    .ceo-profile__id-card::before { height: 100%; border-radius: 20px; }
    .ceo-profile__id-card::after { top: 22px; right: 22px; width: 66px; height: 66px; font-size: 1.05rem; }
    .ceo-profile__id-card > span { margin: 0 0 12px; font-size: .62rem; }
    .ceo-profile__id-card h2 { max-width: none; margin: 0 0 40px; font-size: 1.72rem; }
    .ceo-profile__id-card dl { padding: 14px 0 18px; }
    .ceo-profile__id-card dt { font-size: .64rem; }
    .ceo-profile__id-card dd { font-size: .94rem; }
    .ceo-profile__story { padding: 22px; border-radius: 20px; }
    .ceo-profile__metrics,
    .ceo-profile__grid--3,
    .ceo-profile__grid--4,
    .ceo-profile__press-grid,
    .ceo-profile__posts { grid-template-columns: 1fr; }
    .ceo-profile__metrics { margin-top: 18px; }
    .ceo-profile__metrics strong { font-size: 2.05rem; }
    .ceo-profile__group,
    .ceo-profile__vision { padding: 22px; border-radius: 20px; }
    .ceo-profile__section-head h2,
    .ceo-profile__contact h2 { font-size: 2.05rem; }
    .ceo-profile__contact { padding: 22px; border-radius: 20px; }
    .contact-studio { margin-top: -18px; }
    .contact-studio__hero { grid-template-columns: 1fr; min-height: 0; padding: 34px; border-radius: 30px; }
    .contact-studio__copy { align-self: start; max-width: 100%; padding-top: 58px; padding-bottom: 0; }
    .contact-studio__hero::after { right: 26px; bottom: auto; top: 160px; width: 120px; height: 120px; border-width: 24px; opacity: .75; }
    .dispatch-board { max-width: 520px; transform: none; }
    .contact-studio__quick { grid-template-columns: 1fr; margin-top: -28px; }
    .contact-studio__body, .contact-studio__map, .contact-studio__form-section { grid-template-columns: 1fr; }
    .contact-studio__locations { grid-template-columns: 1fr; }
    .contact-hero-full { padding: 56px 0 60px; }
    .contact-hero-full__grid { grid-template-columns: 1fr; }
    .contact-hero-full__bg::after { right: 16px; bottom: auto; top: 20px; width: 120px; height: 120px; border-width: 20px; opacity: .6; }
    .contact-quick-section { padding: 22px 0 4px; }
    .contact-branches-section-full__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .contact-page { margin-top: -12px; }
    .contact-page__hero, .contact-page__grid, .contact-locations__head { grid-template-columns: 1fr; }
    .contact-location-list { grid-template-columns: 1fr; }
    .contact-hub { margin-top: 0; padding: 24px; border-radius: 26px; }
    .contact-hub__main, .contact-hub__branch-head { grid-template-columns: 1fr; }
    .contact-hub__hotline { min-height: auto; }
    .contact-hub__channels { grid-template-columns: 1fr; }
    .contact-branches { grid-template-columns: 1fr; }
    .contact-branches-section-full__grid { grid-template-columns: 1fr; }
    .contact-branches-section-full__map iframe { height: 260px; }
    .contact-hero-full__copy h1 { font-size: 2.28rem; }
    .static-page-content--gioi-thieu .static-hero,
    .static-page-content--ceo-ngo-van-ly .static-hero { grid-template-columns: 1fr; gap: 24px; padding: 26px 18px; border-radius: 22px; }
    .static-page-content--gioi-thieu .static-hero h1,
    .static-page-content--ceo-ngo-van-ly .static-hero h1 { font-size: 2.28rem; }
    .static-page-content--gioi-thieu .static-hero__panel,
    .static-page-content--ceo-ngo-van-ly .static-hero__panel { min-height: 260px; }
    .static-page-content--gioi-thieu .dlql-ux-col { padding: 0; border-radius: 0; }
    .about-page { margin-top: -12px; }
    .about-page__intro,
    .about-page__story,
    .about-page__cta,
    .service-overview__cta { grid-template-columns: 1fr; }
    .about-page__metrics,
    .about-page__value-grid,
    .about-page__press-grid { grid-template-columns: 1fr; }
    .about-page__values,
    .about-page__press,
    .about-page__cta,
    .service-overview__cta { padding: 22px 16px; border-radius: 22px; }
    .about-page__metrics div,
    .about-page__value-grid article,
    .about-page__press-grid a { min-height: auto; }
    .about-page__cta .button,
    .service-overview__cta .button { width: 100%; }
    .static-page-content--gioi-thieu h2 { grid-template-columns: 36px minmax(0, 1fr); gap: 10px; }
    .static-page-content--gioi-thieu h2::before { width: 30px; height: 30px; border-radius: 10px; }
    .static-page-content--gioi-thieu h3 { padding: 15px; }
    .static-page-content--gioi-thieu p { font-size: .97rem; }
    .static-page-content--gioi-thieu ul, .static-page-content--gioi-thieu ol { grid-template-columns: 1fr; }
    .static-page-content--gioi-thieu li { padding-left: 24px; }
    .static-page-content--gioi-thieu li::before { left: 7px; }
    .static-page-content--gioi-thieu table td:first-child { width: auto; }
    .static-page-content--ceo-ngo-van-ly .dlql-ux-row:first-of-type { padding: 18px; border-radius: 20px; }
    .static-page-content--ceo-ngo-van-ly .dlql-ux-section { width: 100%; max-width: 100%; margin: 22px 0; }
    .static-page-content--ceo-ngo-van-ly .dlql-ux-row,
    .static-page-content--ceo-ngo-van-ly .dlql-ux-col .dlql-ux-row { grid-template-columns: 1fr; gap: 18px; margin: 22px 0; }
    .static-page-content--ceo-ngo-van-ly .news-grid { grid-template-columns: 1fr; }
    .static-page-content--ceo-ngo-van-ly h2 { font-size: 2rem; }
    .static-page-content--ceo-ngo-van-ly .dlql-ux-figure img { border-radius: 18px; }
    .builder-content > h1 { margin-bottom: 24px; }
    .dlql-ux-section { margin: 24px 0; padding: 18px; border-radius: 18px; }
    .dlql-ux-row { display: block; margin: 18px 0; }
    .dlql-ux-col { margin-bottom: 16px; }
    .dlql-ux-box { padding: 18px; border-radius: 18px; }
    .dlql-ux-slider { grid-auto-flow: row; grid-auto-columns: auto; margin-bottom: 24px; }
    .dlql-ux-card-grid, .dlql-ux-post-grid { grid-template-columns: 1fr; gap: 16px; }
    .dlql-ux-card, .dlql-ux-featured { border-radius: 18px; }
    .dlql-ux-card__body { padding: 20px; }
    h1 { font-size: clamp(2.4rem, 11vw, 3.2rem); }
    h2 { font-size: 2.05rem; }
    .hero { min-height: 0; padding-top: 240px; background: var(--canvas); }
    .hero__photo { inset: 0 0 auto; width: 100%; height: 270px; background-position: 67% center; }
    .hero::before { background: linear-gradient(180deg, rgba(245,248,249,0) 48%, var(--canvas) 94%); }
    .hero__grid { min-height: 0; align-items: start; }
    .hero__content { width: 100%; padding: 34px 0 68px; }
    .hero h1 { font-size: 2.32rem; }
    .hero__typing { white-space: normal; border-right: 0; animation: none; }
    .hero__lead { font-size: 1rem; }
    .hero__microcopy { margin-top: -12px; }
    .hero__actions, .location-cta__actions { display: grid; grid-template-columns: 1fr; }
    .hero__actions .button { width: 100%; }
    .hero__proof { width: 100%; justify-content: space-between; }
    .hero__proof div { min-width: 0; padding: 0 10px; }
    .hero__proof span { font-size: .64rem; }
    .trust-strip { margin-top: -30px; }
    .trust-item { min-height: 104px; padding: 20px 15px; }
    .trust-item span { padding-left: 0; }
    .quick-booking { padding-top: 42px; }
    .quick-booking__shell { width: min(calc(100% - 20px), var(--container)); gap: 26px; padding: 28px 18px 18px; border-radius: 24px; }
    .quick-booking__intro h2 { font-size: 2rem; }
    .quick-booking__assurances { gap: 6px; }
    .quick-booking__form-wrap { padding: 20px 15px; border-radius: 18px; }
    .quick-booking__services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .quick-booking__fields { grid-template-columns: 1fr; }
    .quick-booking__fields .button { grid-column: auto; }
    .section-heading--split { display: block; }
    .section-heading { margin-bottom: 32px; }
    .services-section { padding-top: 84px; }
    .services-grid, .price-grid, .reasons-grid, .news-grid { grid-template-columns: 1fr; }
    .service-card, .service-card:first-child { min-height: 0; padding: 22px; }
    .service-card:first-child { grid-column: auto; min-height: 350px; padding: 27px; }
    .service-card:first-child .service-card__top { margin-bottom: 32px; }
    .service-card:first-child .service-card__icon { width: 64px; height: 64px; border-radius: 20px; }
    .service-card:first-child .service-card__body h3 { font-size: 1.65rem; }
    .service-card:nth-child(n+2):nth-child(-n+9) { min-height: 185px; }
    .service-card:nth-child(n+2):nth-child(-n+9) .text-link { right: 14px; bottom: 14px; width: 42px; height: 42px; }
    .service-card:nth-child(n+10) .text-link { min-height: 40px; padding: 10px 0; }
    .service-card__body p, .price-card ul { min-height: 0; }
    .price-grid { border-radius: 20px; }
    .price-grid__header { display: none; }
    .price-card { grid-template-columns: minmax(0, 1fr) auto; gap: 18px 12px; min-height: 0; padding: 24px 20px; }
    .price-card__head { grid-column: 1; }
    .price-card__price { grid-column: 2; text-align: right; }
    .price-card ul { grid-column: 1 / -1; }
    .price-card .button { grid-column: 1 / -1; width: 100%; margin-top: 2px; }
    .reasons-grid article, .reasons-grid article:first-child { min-height: 0; padding: 23px; }
    .reasons-grid article:first-child { grid-column: auto; min-height: 330px; padding: 28px; }
    .reasons-grid article:first-child > span { margin-bottom: 58px; }
    .posts-fallback { display: block; }
    .posts-fallback__visual { min-height: 170px; padding: 25px; }
    .posts-fallback__visual strong { font-size: 4rem; }
    .posts-fallback__content { padding: 28px 22px; }
    .news-card, .news-card:first-child { display: block; grid-row: auto; }
    .author-box { grid-template-columns: 1fr; padding: 20px 16px; border-radius: 20px; }
    .author-box__avatar { width: 58px; height: 58px; border-radius: 16px; }
    .about-grid { gap: 36px; }
    .about-media::after { right: 10px; bottom: 10px; }
    .proof-grid { grid-template-columns: repeat(2, 1fr); }
    .process-section { padding-top: 0; }
    .process-list { display: block; }
    .process-list::before, .process-list::after { display: block; top: 24px; right: auto; bottom: 24px; left: 39px; width: 4px; height: auto; }
    .process-list::after { transform: scaleY(1); transform-origin: center top; }
    .process-section.process-animate .process-list::after { transform: scaleY(0); }
    .process-section.process-animate.is-visible .process-list::after { transform: scaleY(1); }
    .process-list li { min-height: 0; margin-bottom: 10px; padding: 17px 18px; background: var(--canvas); border: 1px solid #e8eef0; border-radius: 14px; text-align: left; }
    .process-list li > span { width: 46px; height: 46px; margin: 0 15px 0 0; border-width: 5px; vertical-align: top; }
    .process-list li h3 { display: inline-block; margin-top: 12px; }
    .process-list li p { margin: 10px 0 0 63px; }
    .contact-section { padding-top: 10px; }
    .contact-grid { width: calc(100% - 20px); padding: 34px 18px; border-radius: 22px; }
    .contact-form-wrap { padding: 24px 17px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-list li { grid-template-columns: 80px 1fr; }
    .contact-studio { width: calc(100% + 8px); margin-inline: -4px; }
    .contact-studio__hero { padding: 24px 15px; border-radius: 24px; }
    .contact-studio__hero::after { display: none; }
    .contact-studio__signal { position: relative; top: auto; right: auto; display: grid; width: 100%; justify-content: center; gap: 4px; margin-bottom: 10px; padding: 11px 14px; border-radius: 18px; font-size: .68rem; line-height: 1.25; text-align: center; }
    .contact-studio__live { justify-content: center; }
    .contact-studio__copy { padding-top: 0; }
    .contact-studio__copy h1 { font-size: clamp(2.2rem, 10vw, 2.65rem); line-height: 1.08; letter-spacing: -.035em; }
    .contact-studio__copy > p:not(.eyebrow) { font-size: .95rem; }
    .contact-studio__actions { display: grid; }
    .contact-studio__call, .contact-studio__zalo { width: 100%; min-width: 0; }
    .contact-studio__call { grid-template-columns: 42px minmax(0, 1fr); }
    .dispatch-board { padding: 16px; border-radius: 22px; }
    .dispatch-board__device { grid-template-columns: 50px minmax(0, 1fr); padding: 15px; border-radius: 18px; }
    .dispatch-board__icon { width: 50px; height: 50px; border-radius: 15px; }
    .dispatch-board__fields span { padding: 13px 13px 13px 38px; }
    .contact-studio__quick { margin-inline: 0; padding: 8px; border-radius: 22px; }
    .contact-studio__quick a { grid-template-columns: 46px minmax(0, 1fr); min-height: 96px; padding: 16px; border-radius: 18px; }
    .contact-studio__quick span { width: 46px; height: 46px; border-radius: 15px; }
    .contact-studio__quick strong { margin-bottom: 5px; font-size: .95rem; }
    .contact-studio__quick em { font-size: .98rem; }
    .contact-studio__company, .contact-studio__flow, .contact-studio__map { border-radius: 22px; }
    .contact-studio__company, .contact-studio__flow, .contact-studio__map { padding: 20px 15px; }
    .contact-studio__company dl div { grid-template-columns: 1fr; gap: 3px; }
    .contact-studio__flow li { padding: 15px 15px 15px 64px; }
    .contact-studio__flow li::before { left: 14px; top: 16px; }
    .contact-studio__location { grid-template-columns: 46px minmax(0, 1fr); padding: 13px; }
    .contact-studio__location strong { width: 40px; height: 40px; border-radius: 13px; }
    .contact-page { width: calc(100% + 8px); margin-inline: -4px; }
    .contact-page__hero { padding: 22px 16px; border-radius: 22px; }
    .contact-page__copy h1 { font-size: 2.55rem; }
    .contact-page__copy > p:not(.eyebrow) { font-size: .96rem; }
    .contact-card { padding: 20px 16px; border-radius: 20px; }
    .contact-card--hotline > a { font-size: 2.6rem; }
    .contact-details div { grid-template-columns: 1fr; gap: 4px; }
    .contact-locations { padding: 20px 14px; border-radius: 20px; }
    .contact-location { grid-template-columns: 48px minmax(0, 1fr); padding: 12px; border-radius: 15px; }
    .contact-location strong { width: 40px; height: 31px; }
    .contact-hub { width: calc(100% + 8px); margin-inline: -4px; padding: 20px 14px; border-radius: 22px; }
    .contact-hub h2 { font-size: 2rem; }
    .contact-hub p { font-size: .94rem; }
    .contact-hub__hotline { padding: 22px 16px; border-radius: 22px; }
    .contact-hub__hotline > a { font-size: 2.45rem; }
    .contact-channel { grid-template-columns: 44px minmax(0, 1fr); min-height: 92px; padding: 14px; border-radius: 18px; }
    .contact-channel__icon { width: 44px; height: 44px; border-radius: 14px; }
    .contact-branch { grid-template-columns: 48px minmax(0, 1fr); padding: 12px; border-radius: 16px; }
    .contact-branch strong { width: 40px; height: 31px; }
    .site-footer { margin-top: 0; }
    .site-footer__main { margin-top: 0; }
    .site-footer__masthead { gap: 27px; padding: 40px 0 28px; }
    .site-footer__wordmark { margin-bottom: 20px; }
    .site-footer__wordmark-icon { width: 46px; height: 46px; }
    .site-footer__brand .site-footer__headline { font-size: 2.7rem; }
    .site-footer__hotline { max-width: none; padding: 22px 20px; border-radius: 20px; }
    .site-footer__contact-phone { margin-bottom: 14px; font-size: clamp(1.5rem, 8vw, 2rem); white-space: nowrap; }
    .site-footer__quick-contact { display: grid; gap: 12px; }
    .site-footer__socials { gap: 20px; margin-top: 22px; }
    .site-footer__directory { grid-template-columns: 1fr; gap: 0; padding: 0 0 32px; }
    .site-footer__ticker { margin-inline: 0; border-radius: 12px; }
    .site-footer__ticker-track { min-height: 44px; animation-duration: 18s; }
    .site-footer__locations { padding: 30px 0; }
    .site-footer__resources { padding: 30px 0 0; }
    .site-footer__resources-primary { grid-template-columns: 1fr; gap: 28px; }
    .site-footer__address-grid { grid-template-columns: 1fr; }
    .site-footer__address--primary { grid-column: auto; }
    .site-footer__support ul { grid-template-columns: 1fr; }
    .site-footer__navigation ul { gap: 5px 18px; }
    .site-footer__title { margin-bottom: 14px; }
    .site-footer__bottom-inner { display: block; padding: 17px 0; text-align: center; }
    .site-footer__bottom p + p { margin-top: 5px; }
    .super-contact { right: 10px; bottom: 14px; gap: 0; padding: 0; background: transparent; border: 0; box-shadow: none; }
    .super-contact__list { gap: 10px; }
    .super-contact__item,
    .super-contact__toggle { width: 46px; height: 46px; }
    .super-contact__item--phone { box-shadow: 0 12px 24px rgba(5,47,80,.16); }
    .super-contact__item--phone::before { inset: -5px; box-shadow: 0 0 0 5px rgba(255,255,255,.58); }
    .super-contact__icon svg { width: 23px; height: 23px; }
    .super-contact__zalo-text { font-size: .85rem; }
    .super-contact__toggle span,
    .super-contact__toggle span::before { width: 18px; height: 3px; }
    .dlql-ai { right: 68px; bottom: 12px; }
    .dlql-ai__launcher { max-width: min(72vw, 260px); }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
    .process-section.process-animate .process-list::after { transform: none; }
    .process-section.process-animate .process-list li { opacity: 1; transform: none; }
    .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
}

/* Scroll reveal: soft fade + rise as sections enter view */
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity .85s var(--ease-soft), transform .85s var(--ease-soft);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
    opacity: 0; transform: translateY(26px);
    transition: opacity .7s var(--ease-soft), transform .7s var(--ease-soft);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: .03s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .09s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .15s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .21s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .27s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: .33s; }
.reveal-stagger.is-visible > *:nth-child(n+7) { transition-delay: .38s; }

/* Service category archive */
.service-tax-page {
    overflow: hidden;
    background: linear-gradient(180deg, #f5f9fa 0%, #fff 46%, #f6fafb 100%);
}

.service-tax-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 78px 0 92px;
    color: var(--white);
    background:
        radial-gradient(circle at 72% 24%, rgba(38,184,195,.34), transparent 28%),
        linear-gradient(135deg, #062840 0%, #075675 52%, #0a94a8 100%);
}

.service-tax-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
}

.service-tax-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, .98fr) minmax(360px, .72fr);
    align-items: center;
    gap: 70px;
}

.service-tax-hero__content .eyebrow { color: var(--yellow); }
.service-tax-hero__content h1 {
    max-width: 720px;
    color: var(--white);
    font-size: clamp(3rem, 5vw, 5.1rem);
}
.service-tax-hero__content > p:not(.eyebrow) {
    max-width: 700px;
    color: #d4edf2;
    font-size: 1.08rem;
}

.service-tax-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.service-tax-hero__visual {
    position: relative;
    min-height: 410px;
}

.service-tax-hero__visual::before,
.service-tax-hero__visual::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.service-tax-hero__visual::before {
    inset: 28px -24px -18px 52px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
}

.service-tax-hero__visual::after {
    right: -30px;
    bottom: -30px;
    width: 170px;
    height: 170px;
    border: 30px solid rgba(255,196,18,.22);
}

.service-tax-hero__visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 410px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 30px;
    box-shadow: 0 28px 70px rgba(0,0,0,.22);
}

.service-tax-hero__badge {
    position: absolute;
    z-index: 2;
    left: -26px;
    bottom: 28px;
    display: grid;
    grid-template-columns: auto minmax(0, 112px);
    align-items: center;
    gap: 12px;
    padding: 14px 18px 14px 15px;
    color: var(--navy);
    background: var(--yellow);
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(0,0,0,.2);
}

.service-tax-hero__badge strong {
    font-size: 2.25rem;
    line-height: 1;
}

.service-tax-hero__badge span {
    font-size: .72rem;
    font-weight: 850;
    line-height: 1.25;
    text-transform: uppercase;
}

.service-tax-strip {
    position: relative;
    z-index: 3;
    margin-top: -46px;
}

.service-tax-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    background: var(--white);
    border: 1px solid #dce9ec;
    border-radius: 20px;
    box-shadow: 0 22px 58px rgba(7,43,59,.13);
}

.service-tax-strip__grid div {
    position: relative;
    min-height: 118px;
    padding: 26px 24px 24px 28px;
    border-right: 1px solid #e3eef1;
}

.service-tax-strip__grid div:last-child { border-right: 0; }
.service-tax-strip__grid div::before {
    content: "";
    position: absolute;
    left: 0;
    top: 26px;
    width: 4px;
    height: 38px;
    background: linear-gradient(180deg, var(--cyan), var(--yellow));
    border-radius: 0 999px 999px 0;
}
.service-tax-strip__grid strong,
.service-tax-strip__grid span { display: block; }
.service-tax-strip__grid strong { color: var(--navy); font-size: .98rem; }
.service-tax-strip__grid span {
    margin-top: 7px;
    color: #617885;
    font-size: .8rem;
    line-height: 1.45;
}

.service-tax-list {
    padding-top: 94px;
    background: transparent;
}

.service-tax-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-tax-card {
    position: relative;
    isolation: isolate;
    display: grid;
    min-height: 430px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid #dce9ec;
    border-radius: 24px;
    box-shadow: 0 12px 34px rgba(7,43,59,.06);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.service-tax-card:hover {
    border-color: #a8d5dd;
    box-shadow: 0 24px 54px rgba(7,43,59,.12);
    transform: translateY(-5px);
}

.service-tax-card__media {
    position: relative;
    display: block;
    min-height: 188px;
    overflow: hidden;
    background: #eaf4f6;
}

.service-tax-card__media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 45%;
    background: linear-gradient(180deg, transparent, rgba(7,43,59,.42));
}

.service-tax-card__media img {
    width: 100%;
    height: 100%;
    min-height: 188px;
    object-fit: cover;
    transition: transform .45s ease;
}

.service-tax-card:hover .service-tax-card__media img {
    transform: scale(1.06);
}

.service-tax-card__body {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.service-tax-card__body::before {
    content: "";
    position: absolute;
    right: 24px;
    bottom: 20px;
    width: 86px;
    height: 86px;
    background: var(--cyan);
    border-radius: 50%;
    opacity: .07;
    pointer-events: none;
}

.service-tax-card__icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    margin-top: -57px;
    margin-bottom: 20px;
    color: var(--navy);
    background: var(--yellow);
    border: 6px solid var(--white);
    border-radius: 18px;
    box-shadow: 0 12px 24px rgba(7,43,59,.14);
}

.service-tax-card__icon svg {
    width: 26px;
    height: 26px;
}

.service-tax-card h3 {
    margin-bottom: 12px;
    font-size: clamp(1.16rem, 1.5vw, 1.42rem);
    letter-spacing: -.02em;
}

.service-tax-card h3 a:hover { color: var(--blue); }
.service-tax-card p {
    color: #607783;
    font-size: .92rem;
    line-height: 1.62;
}

.service-tax-card .text-link {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding-top: 12px;
}

.service-tax-empty {
    padding: 44px;
    background: var(--white);
    border: 1px solid #dce9ec;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.service-tax-seo {
    position: relative;
    background: var(--white);
}

.service-tax-seo__grid {
    display: grid;
    grid-template-columns: minmax(260px, .62fr) minmax(0, 1.38fr);
    gap: 64px;
    align-items: start;
    padding: 58px;
    background:
        linear-gradient(135deg, rgba(8,126,169,.06), rgba(38,184,195,.03)),
        var(--white);
    border: 1px solid #dce9ec;
    border-radius: 30px;
    box-shadow: 0 18px 52px rgba(7,43,59,.07);
}

.service-tax-seo__intro {
    position: sticky;
    top: 140px;
}

.service-tax-seo__content {
    display: grid;
    gap: 18px;
    color: #4f6976;
}

.service-tax-seo__content p {
    margin: 0;
    padding-left: 22px;
    border-left: 3px solid #d3e8ee;
}

.service-tax-note {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 20px;
    margin-top: 12px;
    padding: 24px;
    color: var(--white);
    background: linear-gradient(135deg, #07354e, #087ea9);
    border-radius: 20px;
}

.service-tax-note strong {
    color: var(--yellow);
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.service-tax-note span {
    color: #d4edf2;
}

.service-tax-faq {
    background: linear-gradient(180deg, #fff, #f7fbfb);
}

/* Service detail */
.service-detail {
    overflow: hidden;
    background: linear-gradient(180deg, #f5f9fa 0%, #fff 44%, #f7fbfb 100%);
}

.service-detail__hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 46px 0 64px;
    color: var(--white);
    background:
        radial-gradient(circle at 72% 18%, rgba(38,184,195,.32), transparent 28%),
        linear-gradient(135deg, #062840 0%, #075c79 55%, #0c91a6 100%);
}

.service-detail__hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 86%);
}

.service-detail__hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, .75fr);
    gap: 48px;
    align-items: center;
}

.service-detail__hero-copy .eyebrow { color: var(--yellow); }
.service-detail__hero-copy h1 {
    max-width: 720px;
    color: var(--white);
    font-size: clamp(2.35rem, 3.85vw, 3.72rem);
    line-height: 1.03;
}
.service-detail__hero-copy > p:not(.eyebrow) {
    max-width: 690px;
    color: #d7edf3;
    font-size: 1.04rem;
}
.service-detail__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.service-detail__hero-media {
    position: relative;
}
.service-detail__hero-media::before {
    content: "";
    position: absolute;
    inset: 28px -26px -24px 48px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 30px;
}
.service-detail__hero-media img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 340px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 30px;
    box-shadow: 0 28px 70px rgba(0,0,0,.22);
}
.service-detail__status {
    position: absolute;
    z-index: 2;
    left: -24px;
    bottom: 20px;
    max-width: 250px;
    padding: 14px 16px;
    color: var(--navy);
    background: var(--yellow);
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(0,0,0,.2);
}
.service-detail__status strong,
.service-detail__status span { display: block; }
.service-detail__status strong { font-size: 1.32rem; line-height: 1; }
.service-detail__status span { margin-top: 7px; font-size: .72rem; font-weight: 850; line-height: 1.3; text-transform: uppercase; }

.service-detail__trust {
    position: relative;
    z-index: 3;
    margin-top: -34px;
}
.service-detail__trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    background: var(--white);
    border: 1px solid #dce9ec;
    border-radius: 20px;
    box-shadow: 0 22px 58px rgba(7,43,59,.13);
}
.service-detail__trust-grid div {
    min-height: 118px;
    padding: 26px 24px;
    border-right: 1px solid #e3eef1;
}
.service-detail__trust-grid div:last-child { border-right: 0; }
.service-detail__trust-grid strong,
.service-detail__trust-grid span { display: block; }
.service-detail__trust-grid strong { color: var(--navy); }
.service-detail__trust-grid span { margin-top: 7px; color: #617885; font-size: .8rem; line-height: 1.45; }

.service-detail__body {
    padding-top: 92px;
}
.service-detail__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 44px;
    align-items: start;
}
.service-detail__article {
    min-width: 0;
    padding: 38px;
    background: var(--white);
    border: 1px solid #dce9ec;
    border-radius: 28px;
    box-shadow: 0 18px 52px rgba(7,43,59,.07);
}
.service-detail__content {
    max-width: 100%;
}
.service-detail__content > *:first-child { margin-top: 0; }
.service-detail__content h2 {
    margin-top: 44px;
    padding-top: 18px;
    border-top: 1px solid #e1edf1;
    font-size: clamp(1.75rem, 2.5vw, 2.35rem);
}
.service-detail__content h3 {
    margin-top: 30px;
    color: var(--navy);
    font-size: 1.35rem;
}
.service-detail__content p,
.service-detail__content li {
    color: #405c69;
}
.service-detail__content a {
    color: var(--blue);
    font-weight: 800;
}
.article-toc {
    position: relative;
    margin: 0 0 28px;
    padding: 18px 54px 18px 18px;
    background: rgba(255,255,255,.94);
    border: 1px solid #b8c6cc;
    border-radius: 5px;
    box-shadow: none;
}
.article-toc summary {
    display: block;
    cursor: pointer;
    color: var(--navy);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    list-style: none;
}
.article-toc summary::-webkit-details-marker { display: none; }
.article-toc summary::marker { content: ""; }
.article-toc__toggle {
    position: absolute;
    top: 13px;
    right: 12px;
    width: 44px;
    height: 38px;
    border: 1px solid #aebbc1;
    border-radius: 6px;
    background: #fff;
}
.article-toc__toggle::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 17px;
    height: 2px;
    background: #8c9aa1;
    border-radius: 999px;
    box-shadow: 0 6px 0 #8c9aa1, 0 12px 0 #8c9aa1;
}
.article-toc__toggle::after {
    content: "";
    position: absolute;
    top: 10px;
    right: 8px;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid #8c9aa1;
    border-bottom: 1.5px solid #8c9aa1;
    transform: rotate(45deg);
    transition: transform .2s ease;
}
.article-toc[open] .article-toc__toggle::after { top: 14px; transform: rotate(225deg); }
.article-toc ol {
    display: block !important;
    margin: 8px 0 0 !important;
    padding-left: 29px !important;
    list-style: decimal !important;
}
.article-toc li {
    margin: 5px 0 !important;
    padding: 0 !important;
    color: #243f4d;
    line-height: 1.45;
}
.article-toc a {
    color: #243f4d !important;
    text-decoration: none;
    font-size: .96rem;
    font-weight: 450;
}
.article-toc a:hover { color: var(--blue) !important; }
.article-toc__level-3 {
    margin-left: 18px !important;
    font-size: .94rem;
}
.article-toc:not([open]) { padding-bottom: 18px; }
.service-detail__content img {
    width: auto;
    margin: 24px auto;
    border-radius: 20px;
    box-shadow: 0 14px 36px rgba(7,43,59,.09);
}
.service-detail__content .wp-caption {
    max-width: 100%;
    margin: 28px auto;
}
.service-detail__content .wp-caption-text {
    margin-top: -8px;
    color: #6d8290;
    font-size: .84rem;
    text-align: center;
}
.service-detail__content table {
    display: table;
    width: 100% !important;
    max-width: 100% !important;
    margin: 28px 0;
    border: 1px solid #dce9ec;
    border-radius: 16px;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
    overflow: hidden;
}
.service-detail__content colgroup,
.service-detail__content col {
    width: auto !important;
}
.service-detail__content th,
.service-detail__content td {
    box-sizing: border-box;
    width: auto !important;
    max-width: 100%;
    padding: 12px 14px;
    border-bottom: 1px solid #e4eef2;
    border-right: 1px solid #e4eef2;
    vertical-align: middle;
    word-break: break-word;
    overflow-wrap: anywhere;
}
.service-detail__content th:last-child,
.service-detail__content td:last-child { border-right: 0; }
.service-detail__content tr:last-child td { border-bottom: 0; }
.service-detail__content tr:first-child td,
.service-detail__content th {
    color: var(--navy);
    background: #edf8fa;
    font-weight: 850;
}
.dlql-mobile-table-list { display: none; }

.service-detail__sidebar {
    position: sticky;
    top: 120px;
    display: grid;
    gap: 16px;
}
.service-detail__booking,
.service-detail__toc,
.service-detail__steps,
.service-detail__related {
    padding: 24px;
    background: var(--white);
    border: 1px solid #dce9ec;
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
}
.service-detail__booking {
    color: var(--white);
    background: linear-gradient(145deg, #07354e, #087ea9);
    border: 0;
}
.service-detail__booking .eyebrow { color: var(--yellow); }
.service-detail__booking .service-detail__sidebar-title { color: var(--white); font-size: 1.45rem; }
.service-detail__booking p { color: #d6edf3; font-size: .9rem; }
.service-detail__booking .button + .button { margin-top: 10px; }
.service-detail__booking .button--outline { color: var(--white); border-color: rgba(255,255,255,.45); }
.service-detail__steps .service-detail__sidebar-title,
.service-detail__toc h2,
.service-detail__related .service-detail__sidebar-title {
    margin-bottom: 14px;
    font-size: 1.18rem;
}
.service-detail__toc ol {
    display: grid;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.service-detail__toc a {
    display: block;
    padding: 9px 11px;
    color: #365767;
    background: #f4fafb;
    border: 1px solid #e0eef2;
    border-radius: 12px;
    font-size: .82rem;
    font-weight: 800;
    line-height: 1.35;
}
.service-detail__toc a:hover {
    color: var(--blue);
    background: #eef9fb;
    border-color: #bde0e8;
}
.service-detail__toc-level-3 a {
    margin-left: 14px;
    color: #5b7480;
    font-size: .76rem;
    font-weight: 720;
}
.service-detail__steps ol {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: detailStep;
}
.service-detail__steps li {
    position: relative;
    min-height: 42px;
    padding: 0 0 14px 48px;
    color: #536d79;
    font-size: .86rem;
}
.service-detail__steps li::before {
    counter-increment: detailStep;
    content: counter(detailStep, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 0;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: var(--navy);
    background: var(--yellow);
    border-radius: 11px;
    font-size: .7rem;
    font-weight: 950;
}
.service-detail__related-card {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 86px;
    padding: 12px 0;
    color: #284b5c;
    border-top: 1px solid #e4eef2;
    font-size: .88rem;
    font-weight: 800;
    line-height: 1.4;
}
.service-detail__related-card:hover { color: var(--blue); }
.service-detail__related-thumb {
    display: block;
    overflow: hidden;
    width: 72px;
    height: 58px;
    background: #edf8fa;
    border-radius: 14px;
}
.service-detail__related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .28s ease;
}
.service-detail__related-card:hover .service-detail__related-thumb img {
    transform: scale(1.06);
}

/* Post detail (blog/knowledge article) */
.post-detail {
    background: linear-gradient(180deg, #f4fafb 0%, #fff 42%, #fff 100%);
}

.post-detail__hero {
    position: relative;
    overflow: hidden;
    padding: 64px 0 54px;
    background:
        linear-gradient(90deg, rgba(7,122,143,.06) 0 1px, transparent 1px 100%),
        linear-gradient(180deg, rgba(7,122,143,.055) 0 1px, transparent 1px 100%),
        linear-gradient(135deg, #f7fcfd 0%, #eef8fa 52%, #fff 100%);
    background-size: 38px 38px, 38px 38px, auto;
    border-bottom: 1px solid #dcebef;
}
.post-detail__hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 480px);
    gap: 68px;
    align-items: center;
}
.post-detail__hero-copy {
    position: relative;
    padding-left: 24px;
}
.post-detail__hero-copy::before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--cyan), var(--yellow));
    border-radius: 999px;
}
.post-detail__eyebrow-link {
    display: inline-flex;
    color: var(--blue);
    text-decoration: none;
}
.post-detail__eyebrow-link:hover { text-decoration: underline; }
.post-detail__hero-copy h1 {
    max-width: 780px;
    font-size: clamp(2.3rem, 3.6vw, 3.4rem);
}
.post-detail__lead {
    max-width: 640px;
    margin-top: 4px;
    color: #4c6772;
    font-size: 1.08rem;
    line-height: 1.6;
}
.post-detail__hero-media {
    position: relative;
    overflow: hidden;
    padding: 12px;
    background: linear-gradient(145deg, #ffffff 0%, #eef8fa 100%);
    border: 1px solid #cfe4ea;
    border-radius: 24px;
    box-shadow: 0 26px 70px rgba(7,43,59,.14);
}
.post-detail__hero-media img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 330px;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: #fff;
    border-radius: 16px;
}

.post-detail__body {
    padding: 20px 0 92px;
}
.post-detail__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 44px;
    align-items: start;
}
.post-detail__article {
    min-width: 0;
    padding: 38px;
    background: var(--white);
    border: 1px solid #dce9ec;
    border-radius: 28px;
    box-shadow: 0 18px 52px rgba(7,43,59,.07);
}
.post-detail__article > *:first-child { margin-top: 0; }
.post-detail__article h2 {
    margin-top: 44px;
    padding-top: 18px;
    border-top: 1px solid #e1edf1;
    font-size: clamp(1.75rem, 2.5vw, 2.35rem);
}
.post-detail__article h3 {
    margin-top: 30px;
    color: var(--navy);
    font-size: 1.35rem;
}
.post-detail__article p,
.post-detail__article li {
    color: #405c69;
}
.post-detail__article a {
    color: var(--blue);
    font-weight: 800;
}
.post-detail__article img {
    width: auto;
    margin: 24px auto;
    border-radius: 20px;
    box-shadow: 0 14px 36px rgba(7,43,59,.09);
}
.post-detail__article .wp-caption {
    max-width: 100%;
    margin: 28px auto;
}
.post-detail__article .wp-caption-text {
    margin-top: -8px;
    color: #6d8290;
    font-size: .84rem;
    text-align: center;
}
.post-detail__article table {
    display: table;
    width: 100% !important;
    max-width: 100% !important;
    margin: 28px 0;
    border: 1px solid #dce9ec;
    border-radius: 16px;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
    overflow: hidden;
}
.post-detail__article colgroup,
.post-detail__article col {
    width: auto !important;
}
.post-detail__article th,
.post-detail__article td {
    box-sizing: border-box;
    width: auto !important;
    max-width: 100%;
    padding: 12px 14px;
    border-bottom: 1px solid #e4eef2;
    border-right: 1px solid #e4eef2;
    vertical-align: middle;
    word-break: break-word;
    overflow-wrap: anywhere;
}
.post-detail__article th:last-child,
.post-detail__article td:last-child { border-right: 0; }
.post-detail__article tr:last-child td { border-bottom: 0; }
.post-detail__article tr:first-child td,
.post-detail__article th {
    color: var(--navy);
    background: #edf8fa;
    font-weight: 850;
}
.post-detail__related {
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid #e1edf1;
}
.post-detail__related-title {
    position: relative;
    margin: 0 0 22px;
    padding-left: 18px;
    color: var(--blue) !important;
    font-size: 1.08rem;
    font-weight: 900;
    line-height: 1.25;
    text-transform: uppercase;
}
.post-detail__related-title::before {
    content: "";
    position: absolute;
    top: 2px;
    bottom: 2px;
    left: 0;
    width: 4px;
    background: var(--cyan);
    border-radius: 999px;
}
.post-detail__related-list {
    display: grid;
    gap: 20px;
}
.post-detail__related-card {
    display: grid;
    grid-template-columns: 212px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    color: var(--navy) !important;
    text-decoration: none;
}
.post-detail__related-card + .post-detail__related-card {
    padding-top: 20px;
    border-top: 1px solid #eef4f6;
}
.post-detail__related-thumb {
    display: block;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #edf8fa;
    border-radius: 4px;
}
.post-detail__related-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .24s ease;
}
.post-detail__related-card:hover .post-detail__related-thumb img {
    transform: scale(1.04);
}
.post-detail__related-copy {
    display: grid;
    gap: 7px;
    min-width: 0;
}
.post-detail__related-name {
    color: #1b2733;
    font-size: 1rem;
    font-weight: 850;
    line-height: 1.35;
    transition: color .18s ease;
}
.post-detail__related-card:hover .post-detail__related-name {
    color: var(--blue);
}
.post-detail__related-excerpt {
    color: #536d79;
    font-size: .95rem;
    font-weight: 450;
    line-height: 1.55;
}
.post-detail__sidebar {
    position: sticky;
    top: 120px;
    display: grid;
    gap: 16px;
}
.post-detail__booking-title {
    margin: 8px 0 14px;
    color: #fff !important;
    font-size: 1.65rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 0;
}

@media (max-width: 980px) {
    .post-detail__hero-grid,
    .post-detail__layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }
    .post-detail__hero { padding-top: 40px; }
    .post-detail__hero-grid { gap: 28px; }
    .post-detail__hero-media { max-width: 620px; }
    .post-detail__hero-media img { max-height: 360px; }
    .post-detail__sidebar { position: static; grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .post-detail__hero { padding: 30px 0 36px; }
    .post-detail__hero-copy { padding-left: 16px; }
    .post-detail__hero-copy::before { width: 4px; }
    .post-detail__hero-copy h1 { font-size: 2rem; }
    .post-detail__hero-media { padding: 8px; border-radius: 20px; }
    .post-detail__hero-media img { max-height: 240px; border-radius: 14px; }
    .post-detail__body { padding: 8px 0 70px; }
    .post-detail__article { padding: 24px 18px; border-radius: 22px; }
    .post-detail__article h2 { font-size: 1.6rem; }
    .post-detail__related { margin-top: 28px; padding-top: 24px; }
    .post-detail__related-card {
        grid-template-columns: 116px minmax(0, 1fr);
        gap: 12px;
        align-items: start;
    }
    .post-detail__related-name { font-size: .94rem; }
    .post-detail__related-excerpt {
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        font-size: .86rem;
        line-height: 1.45;
    }
    .post-detail__booking-title { font-size: 1.35rem; }
    .post-detail__article th,
    .post-detail__article td { min-width: 190px; }
    .post-detail__article table.dlql-responsive-table,
    .service-detail__content table.dlql-responsive-table {
        display: block;
        min-width: 0;
        overflow: visible;
        border: 0;
        border-radius: 0;
        background: transparent;
    }
    .post-detail__article table.dlql-responsive-table tbody,
    .service-detail__content table.dlql-responsive-table tbody {
        display: block;
    }
    .post-detail__article table.dlql-responsive-table tr,
    .service-detail__content table.dlql-responsive-table tr {
        display: block;
        overflow: hidden;
        margin-bottom: 14px;
        background: #fff;
        border: 1px solid #dce9ec;
        border-radius: 16px;
        box-shadow: 0 12px 28px rgba(7,43,59,.06);
    }
    .post-detail__article table.dlql-responsive-table .dlql-table-header-row,
    .service-detail__content table.dlql-responsive-table .dlql-table-header-row {
        display: none;
    }
    .post-detail__article table.dlql-responsive-table td,
    .post-detail__article table.dlql-responsive-table th,
    .service-detail__content table.dlql-responsive-table td,
    .service-detail__content table.dlql-responsive-table th {
        display: grid;
        grid-template-columns: minmax(96px, .34fr) minmax(0, 1fr);
        gap: 12px;
        min-width: 0;
        padding: 13px 14px;
        border-right: 0;
        border-bottom: 1px solid #e4eef2;
        word-break: normal;
        overflow-wrap: anywhere;
    }
    .post-detail__article table.dlql-responsive-table td:last-child,
    .post-detail__article table.dlql-responsive-table th:last-child,
    .service-detail__content table.dlql-responsive-table td:last-child,
    .service-detail__content table.dlql-responsive-table th:last-child {
        border-bottom: 0;
    }
    .post-detail__article table.dlql-responsive-table td::before,
    .post-detail__article table.dlql-responsive-table th::before,
    .service-detail__content table.dlql-responsive-table td::before,
    .service-detail__content table.dlql-responsive-table th::before {
        content: attr(data-label);
        color: #067f9f;
        font-size: .72rem;
        font-weight: 900;
        line-height: 1.35;
    }
    .post-detail__article table.dlql-responsive-table td:first-child,
    .service-detail__content table.dlql-responsive-table td:first-child {
        background: #edf8fa;
        font-weight: 850;
    }
    .service-detail__content table.dlql-service-price-table tr {
        padding: 0;
        background: linear-gradient(180deg, #fff, #f8fcfd);
    }
    .service-detail__content table.dlql-service-price-table {
        display: none;
    }
    .post-detail__article table.dlql-responsive-table,
    .service-detail__content table.dlql-responsive-table {
        display: none;
    }
    .post-detail__article .dlql-mobile-table-list,
    .service-detail__content .dlql-mobile-table-list {
        display: grid;
        gap: 0;
        overflow: hidden;
        margin: 24px 0 34px;
        background: #fff;
        border: 1px solid #dce9ec;
        border-radius: 18px;
        box-shadow: 0 14px 34px rgba(7,43,59,.07);
    }
    .post-detail__article .dlql-mobile-table-row,
    .service-detail__content .dlql-mobile-table-row {
        display: block;
        padding: 13px 14px;
        border-bottom: 1px solid #e4eef2;
    }
    .post-detail__article .dlql-mobile-table-row:last-child,
    .service-detail__content .dlql-mobile-table-row:last-child {
        border-bottom: 0;
    }
    .post-detail__article .dlql-mobile-table-cell,
    .service-detail__content .dlql-mobile-table-cell {
        display: grid;
        grid-template-columns: minmax(92px, .34fr) minmax(0, 1fr);
        gap: 10px;
        min-width: 0;
        padding: 8px 0;
        border-top: 1px solid #edf3f5;
    }
    .post-detail__article .dlql-mobile-table-cell:first-child,
    .service-detail__content .dlql-mobile-table-cell:first-child {
        display: block;
        padding-top: 0;
        border-top: 0;
    }
    .post-detail__article .dlql-mobile-table-cell span,
    .service-detail__content .dlql-mobile-table-cell span {
        color: #067f9f;
        font-size: .68rem;
        font-weight: 900;
        line-height: 1.35;
        text-transform: uppercase;
    }
    .post-detail__article .dlql-mobile-table-cell strong,
    .service-detail__content .dlql-mobile-table-cell strong {
        min-width: 0;
        color: #29495b;
        font-size: .88rem;
        line-height: 1.45;
        overflow-wrap: anywhere;
    }
    .post-detail__article .dlql-mobile-table-cell:first-child span,
    .service-detail__content .dlql-mobile-table-cell:first-child span {
        display: none;
    }
    .post-detail__article .dlql-mobile-table-cell:first-child strong,
    .service-detail__content .dlql-mobile-table-cell:first-child strong {
        display: block;
        color: var(--navy);
        font-size: .98rem;
        font-weight: 900;
        line-height: 1.4;
    }
    .service-detail__content .dlql-service-price-list {
        display: grid;
        gap: 0;
        overflow: hidden;
        margin: 24px 0 34px;
        background: #fff;
        border: 1px solid #dce9ec;
        border-radius: 18px;
        box-shadow: 0 14px 34px rgba(7,43,59,.07);
    }
    .service-detail__content .dlql-service-price-item {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(98px, auto);
        gap: 8px 14px;
        align-items: center;
        padding: 14px;
        background: #fff;
        border-bottom: 1px solid #e4eef2;
    }
    .service-detail__content .dlql-service-price-item:last-child { border-bottom: 0; }
    .service-detail__content .dlql-service-price-item__field {
        display: block;
        min-width: 0;
        padding: 0;
        border-bottom: 0;
    }
    .service-detail__content .dlql-service-price-item__field span {
        display: none;
        margin-bottom: 3px;
        color: #067f9f;
        font-size: .62rem;
        font-weight: 900;
        line-height: 1.25;
        text-transform: uppercase;
    }
    .service-detail__content .dlql-service-price-item__field strong {
        display: block;
        color: #29495b;
        font-size: .9rem;
        line-height: 1.38;
    }
    .service-detail__content .dlql-service-price-item__field:first-child {
        grid-column: 1 / -1;
        grid-row: 1;
        background: transparent;
    }
    .service-detail__content .dlql-service-price-item__field:first-child strong,
    .service-detail__content .dlql-service-price-item__field:last-child strong {
        color: var(--navy);
        font-weight: 900;
    }
    .service-detail__content .dlql-service-price-item__field:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
        color: #5d7480;
        font-size: .78rem;
        line-height: 1.35;
        text-align: left;
    }
    .service-detail__content .dlql-service-price-item__field:nth-child(2) span,
    .service-detail__content .dlql-service-price-item__field:nth-child(2) strong {
        display: inline;
        color: #5d7480;
        font-size: .78rem;
        font-weight: 750;
    }
    .service-detail__content .dlql-service-price-item__field:nth-child(2) span::after {
        content: ": ";
    }
    .service-detail__content .dlql-service-price-item__field:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
        align-self: center;
        min-width: 98px;
        text-align: right;
    }
    .service-detail__content .dlql-service-price-item__field:nth-child(3) span {
        display: block;
    }
    .service-detail__content .dlql-service-price-item__field:nth-child(3) strong {
        font-size: 1rem;
    }
    .service-detail__content table.dlql-service-price-table td,
    .service-detail__content table.dlql-service-price-table th {
        display: block;
        padding: 12px 14px;
        border-bottom: 0;
    }
    .service-detail__content table.dlql-service-price-table td::before,
    .service-detail__content table.dlql-service-price-table th::before {
        display: block;
        margin-bottom: 4px;
        color: #067f9f;
        font-size: .66rem;
        font-weight: 900;
        text-transform: uppercase;
    }
    .service-detail__content table.dlql-service-price-table td:first-child {
        color: var(--navy);
        background: #edf8fa;
        font-size: .98rem;
        line-height: 1.45;
    }
    .service-detail__content table.dlql-service-price-table td:nth-child(2),
    .service-detail__content table.dlql-service-price-table td:nth-child(3) {
        display: inline-block;
        width: 50%;
        vertical-align: top;
        color: #29495b;
        font-size: .95rem;
    }
    .service-detail__content table.dlql-service-price-table td:nth-child(3) {
        color: var(--navy);
        font-weight: 900;
        text-align: right;
    }
    .post-detail__sidebar { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
    .service-detail__hero-grid,
    .service-detail__layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .service-detail__hero { padding: 44px 0 58px; }
    .service-detail__hero-copy h1 { font-size: clamp(2.15rem, 7.6vw, 3.35rem); }
    .service-detail__hero-media img { height: 290px; }
    .service-detail__trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .service-detail__trust-grid div:nth-child(2) { border-right: 0; }
    .service-detail__trust-grid div:nth-child(-n+2) { border-bottom: 1px solid #e3eef1; }
    .service-detail__sidebar { position: static; grid-template-columns: repeat(3, minmax(0, 1fr)); }

    .service-tax-hero__grid,
    .service-tax-seo__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .service-tax-hero { padding-top: 54px; }
    .service-tax-hero__visual { min-height: 320px; }
    .service-tax-hero__visual img { height: 320px; }
    .service-tax-strip__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .service-tax-strip__grid div:nth-child(2) { border-right: 0; }
    .service-tax-strip__grid div:nth-child(-n+2) { border-bottom: 1px solid #e3eef1; }
    .service-tax-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .service-tax-seo__intro { position: static; }
}

@media (max-width: 640px) {
    .service-detail__hero {
        padding: 38px 0 72px;
    }

    .service-detail__hero-copy h1 {
        font-size: 2.3rem;
    }

    .service-detail__actions {
        display: grid;
    }

    .service-detail__actions .button {
        width: 100%;
    }

    .service-detail__hero-media img {
        height: 260px;
        border-radius: 22px;
    }

    .service-detail__status {
        left: 14px;
        bottom: 14px;
        max-width: calc(100% - 28px);
    }

    .service-detail__trust {
        margin-top: -34px;
    }

    .service-detail__trust-grid,
    .service-detail__sidebar {
        grid-template-columns: 1fr;
    }

    .service-detail__trust-grid div,
    .service-detail__trust-grid div:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid #e3eef1;
    }

    .service-detail__trust-grid div:last-child {
        border-bottom: 0;
    }

    .service-detail__body {
        padding-top: 70px;
    }

    .service-detail__article {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .service-detail__content h2 {
        font-size: 1.72rem;
    }

    .service-detail__content th,
    .service-detail__content td {
        min-width: 190px;
    }

    .service-tax-hero {
        padding: 38px 0 72px;
    }

    .service-tax-hero__content h1 {
        font-size: 2.45rem;
    }

    .service-tax-hero__actions {
        display: grid;
    }

    .service-tax-hero__actions .button {
        width: 100%;
    }

    .service-tax-hero__visual {
        min-height: 260px;
    }

    .service-tax-hero__visual img {
        height: 260px;
        border-radius: 22px;
    }

    .service-tax-hero__badge {
        left: 14px;
        bottom: 14px;
        border-radius: 16px;
    }

    .service-tax-strip {
        margin-top: -34px;
    }

    .service-tax-strip__grid,
    .service-tax-cards {
        grid-template-columns: 1fr;
    }

    .service-tax-strip__grid div,
    .service-tax-strip__grid div:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid #e3eef1;
    }

    .service-tax-strip__grid div:last-child {
        border-bottom: 0;
    }

    .service-tax-list {
        padding-top: 70px;
    }

    .service-tax-card { min-height: 0; border-radius: 20px; }

    .service-tax-card__body {
        padding: 24px 20px;
    }

    .service-tax-seo__grid {
        padding: 26px 18px;
        border-radius: 22px;
    }

    .service-tax-note {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 20px;
    }
}

/* Expert directory page upgrade */
.expert-directory {
    background:
        linear-gradient(180deg, #f5fbfd 0, #ffffff 28%, #f6fafc 100%);
}

.expert-directory .breadcrumbs {
    margin-bottom: 0;
}

.expert-directory-hero {
    position: relative;
    overflow: hidden;
    padding: 76px 0 70px;
    color: #ffffff;
    background:
        radial-gradient(circle at 82% 12%, rgba(250, 188, 26, .28), transparent 28%),
        radial-gradient(circle at 8% 82%, rgba(1, 178, 210, .22), transparent 34%),
        linear-gradient(135deg, #07324d 0%, #095d79 54%, #0b8aad 100%);
}

.expert-directory-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .22;
    background-image:
        linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
    background-size: 44px 44px;
}

.expert-directory-hero::after {
    content: "";
    position: absolute;
    right: max(24px, calc((100vw - 1180px) / 2));
    bottom: -74px;
    width: min(34vw, 410px);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 56px solid rgba(255,255,255,.11);
}

.expert-directory-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 760px) minmax(260px, 1fr);
    gap: 46px;
    align-items: center;
}

.expert-directory-hero__grid::after {
    content: "";
    min-height: 330px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.28), rgba(255,255,255,.08)),
        url("../images/team-service-v2.webp") center / cover no-repeat;
    box-shadow: 0 28px 80px rgba(1, 32, 54, .28);
}

.expert-directory-hero__grid > div {
    max-width: 760px;
}

.expert-directory-hero .eyebrow {
    display: inline-flex;
    width: fit-content;
    margin: 0 0 16px;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    color: #ffe28a;
    background: rgba(255,255,255,.08);
    font-size: .82rem;
    letter-spacing: .08em;
}

.expert-directory-hero h1 {
    max-width: 720px;
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(2.15rem, 4.4vw, 4.35rem);
    line-height: 1.05;
}

.expert-directory-hero p:not(.eyebrow) {
    max-width: 690px;
    margin: 0 0 28px;
    color: #d9f2f7;
    font-size: 1.05rem;
    line-height: 1.75;
}

.expert-directory-hero .button {
    min-height: 54px;
    padding-inline: 28px;
    border-color: #fabc1a;
    color: #082f49;
    background: #fabc1a;
    box-shadow: 0 18px 34px rgba(250, 188, 26, .24);
}

.expert-directory__list {
    padding: 64px 0 82px;
}

.expert-directory__list .container {
    max-width: 1240px;
}

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

.expert-card {
    position: relative;
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    min-height: 236px;
    overflow: hidden;
    border: 1px solid #d8e9ef;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(7, 50, 77, .08);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.expert-card:hover {
    transform: translateY(-4px);
    border-color: rgba(8, 126, 169, .34);
    box-shadow: 0 24px 58px rgba(7, 50, 77, .14);
}

.expert-card__media {
    display: block;
    min-height: 100%;
    background: linear-gradient(180deg, #e8f8fb, #f7fbfc);
}

.expert-card__media img,
.expert-card__media .image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 236px;
    object-fit: cover;
}

.expert-card__media .image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #087ea9;
    font-size: 1.8rem;
    font-weight: 800;
}

.expert-card__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 24px 22px;
}

.expert-badge {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    padding: 7px 12px;
    border-radius: 999px;
    color: #075878;
    background: #e8f8fb;
    font-size: .76rem;
    font-weight: 800;
}

.expert-card__body h3 {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.28;
}

.expert-card__body h3 a {
    color: #102233;
}

.expert-card__body h3 a:hover {
    color: #087ea9;
}

.expert-card__role {
    margin: 0;
    color: #087ea9;
    font-size: .9rem;
    font-weight: 760;
    line-height: 1.45;
}

.expert-card__intro {
    margin: 0;
    color: #5d6d7e;
    font-size: .94rem;
    line-height: 1.62;
}

.expert-card__body .text-link {
    margin-top: auto;
    color: #d46b00;
    font-weight: 800;
}

.expert-card__body .text-link:hover {
    color: #087ea9;
}

.expert-directory .service-tax-empty {
    border: 1px solid #d8e9ef;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(7, 50, 77, .08);
}

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

@media (max-width: 900px) {
    .expert-directory-hero {
        padding: 54px 0 44px;
    }

    .expert-directory-hero__grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .expert-directory-hero__grid::after {
        min-height: 260px;
    }
}

@media (max-width: 640px) {
    .expert-directory-hero {
        padding: 40px 0 34px;
    }

    .expert-directory-hero::after {
        display: none;
    }

    .expert-directory-hero .eyebrow {
        font-size: .74rem;
    }

    .expert-directory-hero h1 {
        font-size: 2.05rem;
    }

    .expert-directory-hero p:not(.eyebrow) {
        font-size: .96rem;
    }

    .expert-directory-hero__grid::after {
        min-height: 210px;
        border-radius: 22px;
    }

    .expert-directory__list {
        padding: 38px 0 58px;
    }

    .expert-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .expert-card {
        grid-template-columns: 104px minmax(0, 1fr);
        min-height: 190px;
        border-radius: 18px;
    }

    .expert-card__media img,
    .expert-card__media .image-placeholder {
        min-height: 190px;
    }

    .expert-card__body {
        padding: 18px 16px;
    }

    .expert-card__body h3 {
        font-size: 1.04rem;
    }

    .expert-card__intro {
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        font-size: .88rem;
    }
}

/* Keep expert directory upgrade above legacy inline CSS. */
.site-main.expert-directory .expert-directory-hero {
    padding: 76px 0 70px;
    background:
        radial-gradient(circle at 82% 12%, rgba(250, 188, 26, .28), transparent 28%),
        radial-gradient(circle at 8% 82%, rgba(1, 178, 210, .22), transparent 34%),
        linear-gradient(135deg, #07324d 0%, #095d79 54%, #0b8aad 100%);
}

.site-main.expert-directory .expert-directory-hero__grid > div {
    max-width: 760px;
}

.site-main.expert-directory .expert-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.site-main.expert-directory .expert-card {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    min-height: 236px;
    overflow: hidden;
    border: 1px solid #d8e9ef;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(7, 50, 77, .08);
}

.site-main.expert-directory .expert-card__media {
    aspect-ratio: auto;
    min-height: 100%;
}

.site-main.expert-directory .expert-card__media img,
.site-main.expert-directory .expert-card__media .image-placeholder {
    height: 100%;
    min-height: 236px;
}

.site-main.expert-directory .expert-card__body {
    padding: 24px 22px;
}

.expert-directory-about,
.expert-directory-standards,
.expert-directory-process,
.expert-directory-faq,
.expert-directory-cta {
    padding: 74px 0;
}

.expert-directory-about {
    background: #ffffff;
}

.expert-directory-about__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 42px;
    align-items: center;
}

.expert-directory-kicker {
    margin: 0 0 12px;
    color: #087ea9;
    font-size: .8rem;
    font-weight: 840;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.expert-directory-about h2,
.expert-directory-section-head h2,
.expert-directory-process h2 {
    margin: 0 0 18px;
    color: #102233;
    font-size: clamp(1.75rem, 3vw, 2.55rem);
    line-height: 1.16;
}

.expert-directory-about__content p:not(.expert-directory-kicker),
.expert-directory-section-head p:not(.expert-directory-kicker),
.expert-directory-cta p {
    color: #526577;
    font-size: 1rem;
    line-height: 1.72;
}

.expert-directory-about__panel {
    padding: 30px;
    border: 1px solid #d8e9ef;
    border-radius: 24px;
    background: linear-gradient(180deg, #f5fbfd, #ffffff);
    box-shadow: 0 18px 42px rgba(7, 50, 77, .08);
}

.expert-directory-panel-title {
    margin: 0 0 18px;
    color: #102233;
    font-size: 1.08rem;
    font-weight: 820;
}

.expert-directory-about__panel ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.expert-directory-about__panel li {
    position: relative;
    padding-left: 26px;
    color: #35475a;
    line-height: 1.55;
}

.expert-directory-about__panel li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fabc1a;
    box-shadow: 0 0 0 5px rgba(250, 188, 26, .18);
}

.expert-directory-standards {
    background: #f5fbfd;
}

.expert-directory-section-head {
    max-width: 760px;
    margin-bottom: 30px;
}

.expert-directory-standard-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.expert-directory-standard-grid article {
    padding: 28px;
    border: 1px solid #d8e9ef;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(7, 50, 77, .06);
}

.expert-directory-standard-grid span {
    display: inline-flex;
    margin-bottom: 18px;
    color: #fabc1a;
    font-size: 1.45rem;
    font-weight: 900;
}

.expert-directory-card-title {
    margin: 0 0 10px;
    color: #102233;
    font-size: 1.08rem;
    font-weight: 820;
}

.expert-directory-standard-grid p:not(.expert-directory-card-title) {
    margin: 0;
    color: #5d6d7e;
    line-height: 1.62;
}

.expert-directory-process {
    background: #ffffff;
}

.expert-directory-process__grid {
    display: grid;
    grid-template-columns: 380px minmax(0, 1fr);
    gap: 46px;
}

.expert-directory-steps {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: expertStep;
}

.expert-directory-steps li {
    position: relative;
    padding: 22px 24px 22px 74px;
    border: 1px solid #d8e9ef;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff, #f7fbfc);
}

.expert-directory-steps li::before {
    counter-increment: expertStep;
    content: counter(expertStep, decimal-leading-zero);
    position: absolute;
    left: 22px;
    top: 22px;
    color: #087ea9;
    font-weight: 900;
}

.expert-directory-steps b {
    display: block;
    margin-bottom: 6px;
    color: #102233;
    font-size: 1.02rem;
}

.expert-directory-steps span {
    display: block;
    color: #5d6d7e;
    line-height: 1.58;
}

.expert-directory-faq {
    background: #f5fbfd;
}

.expert-directory-faq__grid {
    display: grid;
    grid-template-columns: 390px minmax(0, 1fr);
    gap: 42px;
    align-items: start;
}

.expert-directory-faq__items {
    display: grid;
    gap: 12px;
}

.expert-directory-faq details {
    border: 1px solid #d8e9ef;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 26px rgba(7, 50, 77, .05);
}

.expert-directory-faq summary {
    cursor: pointer;
    padding: 20px 24px;
    color: #102233;
    font-weight: 820;
    line-height: 1.45;
}

.expert-directory-faq details[open] summary {
    color: #087ea9;
}

.expert-directory-faq details p {
    margin: 0;
    padding: 0 24px 22px;
    color: #5d6d7e;
    line-height: 1.65;
}

.expert-directory-cta {
    padding-top: 0;
    background: #f5fbfd;
}

.expert-directory-cta__inner {
    display: flex;
    gap: 28px;
    align-items: center;
    justify-content: space-between;
    padding: 34px 38px;
    border-radius: 26px;
    color: #ffffff;
    background: linear-gradient(135deg, #07324d, #087ea9);
    box-shadow: 0 22px 54px rgba(7, 50, 77, .18);
}

.expert-directory-cta__inner .expert-directory-kicker {
    color: #ffe28a;
}

.expert-directory-cta__title {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    font-weight: 880;
    line-height: 1.2;
}

.expert-directory-cta__inner .expert-directory-cta__title {
    color: #ffffff;
}

.expert-directory-cta__inner p:not(.expert-directory-kicker):not(.expert-directory-cta__title) {
    max-width: 760px;
    margin: 0;
    color: #d9f2f7;
}

.expert-directory-cta__inner .button {
    flex: 0 0 auto;
    border-color: #fabc1a;
    color: #082f49;
    background: #fabc1a;
}

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

    .expert-directory-about__grid,
    .expert-directory-process__grid,
    .expert-directory-faq__grid {
        grid-template-columns: 1fr;
    }

    .expert-directory-standard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .site-main.expert-directory .expert-directory-hero {
        padding: 54px 0 44px;
    }
}

@media (max-width: 640px) {
    .site-main.expert-directory .expert-directory-hero {
        padding: 40px 0 34px;
    }

    .site-main.expert-directory .expert-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .site-main.expert-directory .expert-card {
        grid-template-columns: 104px minmax(0, 1fr);
        min-height: 190px;
        border-radius: 18px;
    }

    .site-main.expert-directory .expert-card__media img,
    .site-main.expert-directory .expert-card__media .image-placeholder {
        min-height: 190px;
    }

    .site-main.expert-directory .expert-card__body {
        padding: 18px 16px;
    }

    .expert-directory-about,
    .expert-directory-standards,
    .expert-directory-process,
    .expert-directory-faq,
    .expert-directory-cta {
        padding: 42px 0;
    }

    .expert-directory-about__panel,
    .expert-directory-standard-grid article,
    .expert-directory-steps li {
        border-radius: 18px;
    }

    .expert-directory-about__panel {
        padding: 24px 20px;
    }

    .expert-directory-section-head {
        margin-bottom: 22px;
    }

    .expert-directory-steps li {
        padding: 20px 18px 20px 62px;
    }

    .expert-directory-steps li::before {
        left: 18px;
        top: 20px;
    }

    .expert-directory-faq summary {
        padding: 18px 20px;
    }

    .expert-directory-faq details p {
        padding: 0 20px 20px;
    }

    .expert-directory-cta {
        padding-top: 0;
    }

    .expert-directory-cta__inner {
        display: grid;
        padding: 28px 22px;
        border-radius: 20px;
    }

    .expert-directory-cta__inner .button {
        width: 100%;
    }
}

/* Expert cards: 4 columns with rounded avatars on desktop. */
.site-main.expert-directory .expert-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.site-main.expert-directory .expert-card {
    display: flex;
    min-height: 0;
    padding: 26px 22px 24px;
    text-align: center;
}

.site-main.expert-directory .expert-card__media {
    width: 118px;
    height: 118px;
    min-height: 0;
    margin: 0 auto 18px;
    border-radius: 999px;
    overflow: hidden;
    border: 6px solid #eef8fb;
    background: #f3f8fa;
}

.site-main.expert-directory .expert-card__media img,
.site-main.expert-directory .expert-card__media .image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 0;
    border-radius: inherit;
    object-fit: cover;
}

.site-main.expert-directory .expert-card__body {
    align-items: center;
    padding: 0;
}

.site-main.expert-directory .expert-card__intro {
    min-height: 78px;
}

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

@media (max-width: 640px) {
    .site-main.expert-directory .expert-grid {
        grid-template-columns: 1fr;
    }

    .site-main.expert-directory .expert-card {
        padding: 24px 20px;
    }

    .site-main.expert-directory .expert-card__media {
        width: 108px;
        height: 108px;
    }

    .site-main.expert-directory .expert-card__intro {
        min-height: 0;
    }
}

/* Expert profile assigned services and articles. */
.expert-profile__group--managed {
    padding-top: 8px;
}

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

.expert-managed-card {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid #d8e9ef;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(7, 50, 77, .06);
}

.expert-managed-card__media {
    display: block;
    min-height: 168px;
    background: #f3f8fa;
}

.expert-managed-card__media img,
.expert-managed-card__media .image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 168px;
    object-fit: cover;
}

.expert-managed-card__media .image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #087ea9;
    font-size: 1.7rem;
    font-weight: 900;
}

.expert-managed-card__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 18px;
}

.expert-managed-card__type {
    margin: 0;
    padding: 5px 10px;
    border-radius: 999px;
    color: #087ea9;
    background: #e8f8fb;
    font-size: .72rem;
    font-weight: 820;
}

.expert-managed-card__title {
    margin: 0;
    color: #102233;
    font-size: 1rem;
    font-weight: 820;
    line-height: 1.35;
}

.expert-managed-card__title a {
    color: inherit;
}

.expert-managed-card__title a:hover {
    color: #087ea9;
}

.expert-managed-card__summary {
    margin: 0;
    color: #5d6d7e;
    font-size: .9rem;
    line-height: 1.55;
}

.expert-managed-card .text-link {
    margin-top: auto;
    color: #d46b00;
    font-weight: 800;
}

@media (max-width: 1024px) {
    .expert-managed-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .expert-managed-card {
        grid-template-columns: 1fr;
    }

    .expert-managed-card__media,
    .expert-managed-card__media img,
    .expert-managed-card__media .image-placeholder {
        min-height: 190px;
    }
}

.single-meta .single-meta__expert a {
    color: inherit;
    font-weight: 800;
    margin-left: 4px;
}

.single-meta .single-meta__expert a:hover {
    color: #087ea9;
}
