/*
 * VGT ID — profile.css
 *
 * Style thuần (không qua Tailwind) cho:
 *   - Các thành phần dùng chung 5 layout: avatar, eyebrow, glass card,
 *     sticky bar, contact buttons, brochure CTA, stats, chips.
 *   - Trang chủ: hero, search bar, member grid.
 *
 * Class đặt prefix .vgt-* và scope theo layout .vgt-layout-{slug} khi cần
 * tránh leak giữa các biến thể (Correctness Property #6).
 *
 * Toàn bộ màu lấy từ biến --vgt-* (khai báo ở style.css :root, có thể bị
 * override bởi inline critical CSS từ options công ty).
 */

/* =========================================================
 * RESET nhẹ + base
 * ========================================================= */
.vgt-body {
    margin: 0;
    font-family: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
    color: var(--vgt-ink, #0F0E2E);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.vgt-skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 1000;
    background: var(--vgt-navy, #1E1B5E);
    color: #fff;
    padding: 10px 16px;
    border-radius: 0 0 8px 0;
}

.vgt-skip-link:focus {
    left: 0;
}

/* =========================================================
 * AVATAR (dùng chung — render trong template-parts/shared/avatar.php)
 * ========================================================= */
.vgt-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    background: linear-gradient(135deg, var(--vgt-navy, #1E1B5E) 0%, var(--vgt-navy-deep, #15124A) 100%);
    color: var(--vgt-orange-soft, #FBB785);
    font-weight: 700;
    letter-spacing: -1px;
}

.vgt-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vgt-avatar--ring {
    box-shadow: 0 0 0 4px var(--vgt-paper, #fff), 0 8px 24px rgba(15, 14, 46, 0.25);
}

/* Initials glow overlay */
.vgt-avatar__initials {
    position: relative;
    z-index: 1;
}

.vgt-avatar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(244, 123, 32, 0.13) 0%, transparent 60%);
    pointer-events: none;
}

/* =========================================================
 * EYEBROW (section title nhỏ)
 * ========================================================= */
.vgt-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: unset;
    text-transform: uppercase;
    color: var(--vgt-navy, #1E1B5E);
    margin-bottom: 12px;
}

.vgt-eyebrow svg {
    flex-shrink: 0;
}

.vgt-logo__img {
    display: block;
}

.vgt-logo__slogan {
    display: block;
    font-size: 8px;
    font-weight: 400;
    font-style: italic;
    color: var(--vgt-navy, #1E1B5E);
    margin-top: 2px;
    line-height: 1.3;
}

/* =========================================================
 * SHARE BUTTON (top chrome — glass pill)
 * ========================================================= */
.vgt-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(15, 14, 46, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.22);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    cursor: pointer;
    transition: background 0.15s ease;
}

.vgt-share-btn:hover {
    background: rgba(15, 14, 46, 0.6);
}

.vgt-share-btn svg {
    flex-shrink: 0;
}

/* =========================================================
 * STATUS PILL ("Sẵn sàng hỗ trợ")
 * ========================================================= */
.vgt-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(15, 14, 46, 0.4);
    backdrop-filter: blur(12px);
    color: #fff;
}

.vgt-status-pill__dot {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: #7DDB85;
    box-shadow: 0 0 8px #7DDB85;
}

/* =========================================================
 * VERIFIED TICK (cạnh tên)
 * ========================================================= */
.vgt-verified {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--vgt-orange, #F47B20);
    color: #fff;
    flex-shrink: 0;
    vertical-align: middle;
}

/* =========================================================
 * GLASS CARD (layout glass)
 * ========================================================= */
.vgt-glass {
    background: rgba(255, 255, 255, 58%);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    backdrop-filter: blur(20px) saturate(1.4);
    border: var(--vgt-border, 1px solid rgba(255, 255, 255, 0.55));
    border-radius: var(--vgt-radius, 18px);
    box-shadow: var(--vgt-shadow, 0 8px 28px rgba(15, 14, 46, 0.16));
}

/* =========================================================
 * STICKY BOTTOM BAR (mobile CTA — dùng chung)
 * ========================================================= */
.vgt-sticky-bar {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    gap: 8px;
    padding: 12px 16px 16px;
}

.vgt-sticky-bar__primary {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--vgt-orange, #F47B20), var(--vgt-orange-deep, #D9650E));
    color: #fff;
    border-radius: 15px;
    padding: 14px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(244, 123, 32, 0.4);
}

.vgt-sticky-bar__secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 15px;
    text-decoration: none;
    background: var(--vgt-navy, #1E1B5E);
    color: #fff;
}

/* =========================================================
 * CONTACT BUTTONS (các biến thể)
 * ========================================================= */
/* variant: card-2x2 */
.vgt-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.vgt-contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: var(--vgt-paper, #fff);
    border: var(--vgt-border, 1px solid var(--vgt-hair, #E8E5DE));
    border-radius: var(--vgt-radius, 14px);
    box-shadow: var(--vgt-shadow, none);
    text-decoration: none;
    color: var(--vgt-ink, #0F0E2E);
}

.vgt-contact-card__icon {
    width: 36px;
    height: 36px;
    border-radius: var(--vgt-radius, 10px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 800;
    font-size: 13px;
}

.vgt-contact-card__text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

.vgt-contact-card__label {
    display: block;
    font-size: 13px;
    font-weight: 600;
}

.vgt-contact-card__sub {
    display: block;
    font-size: 11px;
    color: var(--vgt-muted, #6B6A85);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
}

/* variant: icon-top (hero, glass) */
.vgt-contact-actions {
    display: flex;
}

.vgt-contact-actions__item {
    flex: 1;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    padding: 6px 0;
}

.vgt-contact-actions__divider {
    width: 1px;
    background: rgba(15, 14, 46, 0.1);
}

.vgt-contact-actions__label {
    font-size: 12.5px;
    font-weight: 600;
    color: #2A2A3A;
}

/* =========================================================
 * BROCHURE CTA
 * ========================================================= */
.vgt-brochure {
    display: block;
    text-decoration: none;
    border-radius: var(--vgt-radius, 20px);
    padding: 20px 22px;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(115deg, var(--vgt-orange, #F47B20), var(--vgt-orange-deep, #D9650E) 70%);
    box-shadow: 0 14px 30px rgba(244, 123, 32, 0.3);
}

.vgt-brochure::after {
    content: "";
    position: absolute;
    right: -30px;
    top: -30px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.vgt-brochure__inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.vgt-brochure__icon {
    width: 54px;
    height: 54px;
    border-radius: var(--vgt-radius, 16px);
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

/* variant outline (quiet) */
.vgt-brochure--outline {
    background: transparent;
    border: 1px solid var(--vgt-hair, #E8E5DE);
    color: var(--vgt-ink, #0F0E2E);
    box-shadow: none;
}

.vgt-brochure--outline::after {
    display: none;
}

/* =========================================================
 * STATS (3 cột chia border)
 * ========================================================= */
.vgt-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

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

.vgt-stats__item+.vgt-stats__item {
    border-left: 1px solid var(--vgt-hair, #E8E5DE);
}

.vgt-stats__value {
    font-size: 23px;
    font-weight: 800;
    color: var(--vgt-navy, #1E1B5E);
    letter-spacing: -1px;
}

.vgt-stats__label {
    font-size: 10.5px;
    color: var(--vgt-muted, #6B6A85);
    margin-top: 2px;
}

/* =========================================================
 * CHIPS (fields, partners, certs)
 * ========================================================= */
.vgt-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vgt-chip {
    font-size: 12px;
    font-weight: 700;
    color: var(--vgt-navy, #1E1B5E);
    padding: 7px 11px;
    background: rgba(30, 27, 94, 0.06);
    border-radius: 9px;
}

.vgt-chip--cert {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--vgt-paper, #fff);
    border: 1.5px solid rgba(30, 27, 94, 0.13);
}

/* =========================================================
 * HOME — Hero
 * ========================================================= */
.vgt-home {
    width: 100%;
    max-width: 880px;
    margin-inline: auto;
    background: #EEF0F5;
    min-height: 100vh;
    color: var(--vgt-ink, #0F0E2E);
}

.vgt-home-hero {
    position: relative;
    overflow: hidden;
}

.vgt-home-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.vgt-home-hero__fallback {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(160deg, var(--vgt-navy-soft, #2E2B7A), var(--vgt-navy-deep, #15124A));
}

.vgt-home-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(15, 14, 46, 0.78), rgba(15, 14, 46, 0.55) 40%, rgba(21, 18, 74, 0.92) 100%);
}

.vgt-home-hero__inner {
    position: relative;
    z-index: 2;
    padding: 20px 22px 40px;
}

/* =========================================================
 * HOME — Member grid + card
 * ========================================================= */
.vgt-member-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.vgt-member-card {
    display: block;
    text-decoration: none;
    color: var(--vgt-ink, #0F0E2E);
    background: var(--vgt-paper, #fff);
    border-radius: 18px;
    padding: 18px;
    border: 1px solid var(--vgt-hair, #E8E5DE);
    box-shadow: 0 1px 3px rgba(15, 14, 46, 0.06);
    position: relative;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.vgt-member-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(15, 14, 46, 0.14);
}

.vgt-member-card.is-hidden {
    display: none;
}

.vgt-member-card__row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.vgt-member-card__name {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.2px;
    line-height: 1.25;
}

.vgt-member-card__title {
    font-size: 12.5px;
    color: var(--vgt-navy, #1E1B5E);
    font-weight: 600;
    margin-top: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vgt-member-card__dept {
    font-size: 11.5px;
    color: var(--vgt-muted, #6B6A85);
    margin-top: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* =========================================================
 * HOME — Search + filter
 * ========================================================= */
.vgt-search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-radius: 12px;
    padding: 9px 14px;
    box-shadow: 0 1px 3px rgba(15, 14, 46, 0.08);
    border: 1px solid var(--vgt-hair, #E8E5DE);
    flex: 1 1 240px;
    max-width: 320px;
}

.vgt-search-box input {
    border: none;
    outline: none;
    font-size: 13.5px;
    flex: 1;
    color: var(--vgt-ink, #0F0E2E);
    font-family: inherit;
    background: transparent;
}

.vgt-filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.vgt-filter-pill {
    font-size: 12.5px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid var(--vgt-hair, #E8E5DE);
    background: #fff;
    color: var(--vgt-navy, #1E1B5E);
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.vgt-filter-pill.is-active {
    background: var(--vgt-orange, #F47B20);
    border-color: var(--vgt-orange, #F47B20);
    color: #fff;
}

.vgt-empty-state {
    text-align: center;
    color: var(--vgt-muted, #6B6A85);
    font-size: 14px;
    padding: 40px 0;
}

/* =========================================================
 * TOAST (vCard / copy link feedback)
 * ========================================================= */
.vgt-toast {
    position: fixed;
    left: 50%;
    bottom: 90px;
    transform: translateX(-50%) translateY(20px);
    background: var(--vgt-navy-deep, #15124A);
    color: #fff;
    padding: 11px 20px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(15, 14, 46, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 9999;
}

.vgt-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* =========================================================
 * SR-only
 * ========================================================= */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
}

/* =========================================================
 * PROFILE — base wrapper
 * ========================================================= */
.vgt-profile {
    width: 100%;
    max-width: 440px;
    margin-inline: auto;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

/* =========================================================
 * IDENTITY
 * ========================================================= */
.vgt-identity {
    display: flex;
    align-items: flex-end;
    gap: 14px;
}

.vgt-identity--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.vgt-identity__text {
    flex: 1;
    min-width: 0;
    padding-bottom: 6px;
}

.vgt-identity__name {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.1;
    display: flex;
    align-items: center;
    gap: 6px;
}

.vgt-identity--center .vgt-identity__name {
    justify-content: center;
}

.vgt-identity__title {
    font-size: 13px;
    color: var(--vgt-navy, #1E1B5E);
    font-weight: 600;
    margin-top: 4px;
}

.vgt-identity__company {
    font-size: 12.5px;
    color: var(--vgt-muted, #6B6A85);
}

.vgt-identity__tagline {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--vgt-ink, #0F0E2E);
    opacity: 0.82;
    margin: 16px 0 0;
}

/* =========================================================
 * COVER PHOTO
 * ========================================================= */
.vgt-cover {
    position: relative;
    overflow: hidden;
    /* Nhốt z-index của scrim/chrome bên trong cover, tránh đè lên
       avatar + tên (cụm identity straddle nằm ở sibling kế sau). */
    isolation: isolate;
}

.vgt-cover__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.vgt-cover__fallback {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(160deg, var(--vgt-navy-soft, #2E2B7A), var(--vgt-navy, #1E1B5E));
}

.vgt-cover__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to bottom,
            rgba(15, 14, 46, 0.45) 0%,
            rgba(15, 14, 46, 0) 30%,
            rgba(250, 247, 242, 0) 50%,
            var(--vgt-cream, #FAF7F2) 98%);
}

.vgt-cover__chrome {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vgt-lang {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    background: rgb(255 255 255 / 61%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.vgt-lang__btn {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    line-height: 0;
    cursor: pointer;
    border-radius: 50%;

    transition: opacity 0.15s ease, transform 0.15s ease;
}

.vgt-lang__btn img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: block;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.vgt-lang__btn:hover {
    opacity: 0.85;
}

.vgt-lang__btn.is-active {
    opacity: 1;
}

.vgt-lang__btn.is-active img {
    box-shadow: 0 0 0 2px #fff;
}

.vgt-cover__logo {
    background: rgba(255, 255, 255, 0.92);
    padding: 5px 5px;
    border-radius: 4px;
    box-shadow: 0 4px 14px rgba(15, 14, 46, 0.25);
    display: inline-flex;
}

.vgt-cover__logo img {
    margin: 0 auto 5px;
}

.vgt-cover__logo h3 {
    font-size: 7px;
    line-height: 1;
    font-style: italic;
}

/* =========================================================
 * CONTACT — rows variant (quiet)
 * ========================================================= */
.vgt-contact-rows {
    display: flex;
    flex-direction: column;
}

.vgt-contact-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 15px 0;
    border-bottom: 1px solid var(--vgt-hair, #E8E5DE);
    text-decoration: none;
    color: var(--vgt-ink, #0F0E2E);
}

.vgt-contact-row:first-child {
    border-top: 1px solid var(--vgt-hair, #E8E5DE);
}

.vgt-contact-row__icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--vgt-hair, #E8E5DE);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--vgt-navy, #1E1B5E);
    font-weight: 800;
}

.vgt-contact-row__label {
    font-size: 13px;
    font-weight: 600;
}

.vgt-contact-row__value {
    margin-left: auto;
    font-size: 12.5px;
    color: var(--vgt-muted, #6B6A85);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 50%;
}

/* =========================================================
 * SAVE CONTACT button
 * ========================================================= */
.vgt-save-contact {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 0;
    background: rgb(238 245 254);
    border: 1px solid rgb(184 215 254);
    border-radius: var(--vgt-radius, 15px);
    color: var(--vgt-navy, #1E1B5E);
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.vgt-save-contact:hover {
    background: var(--vgt-navy, #1E1B5E);
    color: #fff;
    transform: translateY(-2px);
}

.vgt-save-contact:hover svg {
    stroke: #fff;
}

.vgt-save-contact svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

/* Glass variant — kính trắng nhẹ */
.vgt-save-contact--glass {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: var(--vgt-navy, #1E1B5E);
}

.vgt-save-contact--glass:hover {
    background: #fff;
    color: var(--vgt-navy, #1E1B5E);
}

.vgt-save-contact--glass:hover svg {
    stroke: var(--vgt-navy, #1E1B5E);
}

/* =========================================================
 * BROCHURE text block
 * ========================================================= */
.vgt-brochure__text {
    flex: 1;
    min-width: 0;
}

.vgt-brochure__eyebrow {
    display: block;
    font-size: 10px;
    opacity: 0.9;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    font-weight: 700;
}

.vgt-brochure__title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-top: 2px;
    letter-spacing: -0.3px;
}

.vgt-brochure__sub {
    display: block;
    font-size: 12px;
    opacity: 0.92;
    margin-top: 2px;
}

.vgt-brochure--outline .vgt-brochure__eyebrow,
.vgt-brochure--outline .vgt-brochure__sub {
    opacity: 0.7;
    color: var(--vgt-muted, #6B6A85);
}

/* =========================================================
 * SERVICES
 * ========================================================= */
.vgt-services__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vgt-service {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid rgba(15, 14, 46, 0.08);
}

.vgt-service:last-child {
    border-bottom: none;
}

.vgt-service__num {
    width: 28px;
    height: 28px;
    border-radius: var(--vgt-radius, 9px);
    flex-shrink: 0;
    background: rgba(244, 123, 32, 0.12);
    color: var(--vgt-orange-deep, #D9650E);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.vgt-service__text {
    min-width: 0;
}

.vgt-service__title {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.vgt-service__desc {
    display: block;
    font-size: 12.5px;
    color: var(--vgt-muted, #6B6A85);
    margin-top: 2px;
    line-height: 1.45;
}

/* variant: grid — lưới 2 cột thẻ (mobile-first) */
.vgt-services__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.vgt-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 14px 12px 12px;
    background: var(--vgt-paper, #fff);
    border: 1px solid rgba(15, 14, 46, 0.08);
    border-radius: var(--vgt-radius, 12px);
    box-shadow: var(--vgt-shadow, none);
}

.vgt-service-card__num {
    font-size: 12px;
    font-weight: 800;
    color: var(--vgt-orange-deep, #D9650E);
    margin-bottom: 6px;
}

.vgt-service-card__title {
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--vgt-ink, #0F0E2E);
}

.vgt-service-card__desc {
    font-size: 11.5px;
    color: var(--vgt-muted, #6B6A85);
    margin-top: 4px;
    line-height: 1.45;
}

/* variant: check — danh sách gọn có dấu tích */
.vgt-services__check {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vgt-service-check {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.vgt-service-check__tick {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--vgt-orange, #F47B20);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.vgt-service-check__text {
    min-width: 0;
}

.vgt-service-check__title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--vgt-ink, #0F0E2E);
}

.vgt-service-check__desc {
    display: block;
    font-size: 12.5px;
    color: var(--vgt-muted, #6B6A85);
    margin-top: 2px;
    line-height: 1.45;
}

/* =========================================================
 * INTRO
 * ========================================================= */
.vgt-intro__text {
    font-size: 14px;
    line-height: 1.6;
}

.vgt-intro__fields {
    margin-top: 14px;
}

/* =========================================================
 * CREDENTIALS
 * ========================================================= */
.vgt-credentials__certs {
    margin-bottom: 14px;
}

.vgt-credentials__partners-label {
    font-size: 11px;
    color: var(--vgt-muted, #6B6A85);
    font-weight: 600;
    margin-bottom: 10px;
}

/* =========================================================
 * ADDRESS
 * ========================================================= */
.vgt-address__row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.vgt-address__text {
    font-size: 13px;
    line-height: 1.55;
    flex: 1;
}

.vgt-address__divider {
    height: 1px;
    background: rgba(15, 14, 46, 0.1);
    margin: 14px 0;
}

.vgt-address__website {
    display: flex;
    gap: 12px;
    align-items: center;
    color: var(--vgt-navy, #1E1B5E);
    text-decoration: none;
}

.vgt-address__website-label {
    font-size: 13px;
    font-weight: 600;
    flex: 1;
}

/* =========================================================
 * BIO (editor content)
 * ========================================================= */
.vgt-bio {
    font-size: 14px;
    line-height: 1.65;
}

.vgt-bio p {
    margin: 0 0 12px;
}

.vgt-bio :last-child {
    margin-bottom: 0;
}

/* =========================================================
 * LAYOUT GLASS
 * ========================================================= */
.vgt-glass-layout {
    background: var(--vgt-navy-deep, #15124A);
    --vgt-radius: 18px;
    --vgt-shadow: 0 8px 28px rgba(15, 14, 46, 0.16);
    --vgt-border: 1px solid rgba(255, 255, 255, 0.55);
}

.vgt-glass-bg {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 440px;
    z-index: 0;
    background: linear-gradient(160deg, var(--vgt-navy-soft, #2E2B7A), var(--vgt-navy-deep, #15124A));
}

.vgt-glass-bg__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vgt-glass-bg__top-scrim {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
    background: linear-gradient(to bottom, rgba(15, 14, 46, 0.35), transparent);
}

.vgt-glass-content {
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.vgt-glass-content a,
.vgt-glass-content button,
.vgt-glass-content .vgt-glass {
    pointer-events: auto;
}

.vgt-glass-chrome {
    padding: 16px 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vgt-glass-chrome__right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vgt-glass-spacer {
    height: 150px;
}

.vgt-glass-section {
    padding: 0 12px 12px;
}

.vgt-glass-card-pad {
    padding: 18px;
}

/* Profile card with straddling avatar */
.vgt-glass-profile {
    border-radius: var(--vgt-radius, 24px);
    padding-bottom: 18px;
}

.vgt-glass-profile__avatar {
    display: flex;
    justify-content: center;
    transform: translateY(-46px);
    margin-bottom: -40px;
}

.vgt-glass-profile__head {
    text-align: center;
    padding: 0 18px;
}

.vgt-glass-profile__name {
    font-size: 23px;
    font-weight: 700;
    letter-spacing: -0.4px;
    color: var(--vgt-ink, #0F0E2E);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.vgt-glass-profile__meta {
    font-size: 13.5px;
    color: #4A4A5C;
    margin-top: 6px;
}

.vgt-glass-profile__meta strong {
    color: var(--vgt-navy, #1E1B5E);
    font-weight: 700;
}

.vgt-glass-profile__company {
    display: block;
    margin-top: 2px;
}

.vgt-glass-profile__tagline {
    font-size: 13px;
    color: #33333F;
    line-height: 1.55;
    margin-top: 10px;
}

.vgt-glass-profile__actions {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(15, 14, 46, 0.1);
}

.vgt-glass-footer {
    padding: 26px 20px 96px;
    text-align: center;
}

.vgt-glass-footer__logo {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 12px;
    border-radius: 10px;
}

.vgt-glass-footer__copy {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 10px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

/* Glass sticky bar override */
.vgt-sticky-bar--glass {
    background: linear-gradient(to top, rgba(15, 14, 46, 0.85) 60%, rgba(15, 14, 46, 0));
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.vgt-sticky-bar--glass .vgt-sticky-bar__secondary {
    background: rgba(255, 255, 255, 0.16);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

/* Icon-top action layout */
.vgt-contact-actions__icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================================
 * HOME — Hero (chi tiết)
 * ========================================================= */
.vgt-home-hero__topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vgt-home-hero__logo {
    background: rgba(255, 255, 255, 0.95);
    padding: 7px 12px;
    border-radius: 11px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    display: inline-flex;
}

.vgt-home-hero__website {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 13px;
    border-radius: 999px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.vgt-home-hero__title-block {
    margin-top: 40px;
    max-width: 560px;
}

.vgt-home-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--vgt-orange-soft, #FBB785);
    background: rgba(244, 123, 32, 0.12);
    border: 1px solid rgba(244, 123, 32, 0.27);
    padding: 6px 12px;
    border-radius: 999px;
}

.vgt-home-hero__eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: var(--vgt-orange, #F47B20);
}

.vgt-home-hero__title {
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.8px;
    line-height: 1.12;
    margin: 16px 0 0;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.vgt-home-hero__desc {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14.5px;
    line-height: 1.6;
    margin-top: 12px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.vgt-home-hero__ctas {
    display: flex;
    gap: 10px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.vgt-home-hero__cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--vgt-orange, #F47B20), var(--vgt-orange-deep, #D9650E));
    color: #fff;
    padding: 13px 20px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(244, 123, 32, 0.33);
    white-space: nowrap;
}

.vgt-home-hero__cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 13px 20px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.vgt-home-hero__stats {
    display: flex;
    gap: 26px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.vgt-home-hero__stat-value {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
}

.vgt-home-hero__stat-label {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
    letter-spacing: 0.3px;
}

/* =========================================================
 * HOME — Toolbar (search + filter)
 * ========================================================= */
.vgt-home-toolbar {
    padding: 26px 18px 8px;
}

.vgt-home-toolbar__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.vgt-home-toolbar .vgt-eyebrow {
    margin-bottom: 0;
}

/* =========================================================
 * HOME — Directory
 * ========================================================= */
.vgt-home-directory {
    padding: 0 18px 8px;
}

.vgt-member-card__info {
    min-width: 0;
    flex: 1;
    padding-right: 14px;
    display: flex;
    flex-direction: column;
}

.vgt-member-card__chevron {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* =========================================================
 * HOME — About strip
 * ========================================================= */
.vgt-home-about {
    padding: 20px 18px 0;
}

.vgt-home-about__card {
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    border: 1px solid var(--vgt-hair, #E8E5DE);
    box-shadow: 0 1px 3px rgba(15, 14, 46, 0.06);
}

.vgt-home-about__intro {
    font-size: 14px;
    line-height: 1.6;
}

.vgt-home-about__chips {
    margin-top: 16px;
}

/* =========================================================
 * HOME — Footer strip
 * ========================================================= */
.vgt-home-footer {
    padding: 30px 20px 40px;
    text-align: center;
}

.vgt-home-footer__address {
    font-size: 12.5px;
    color: var(--vgt-navy, #1E1B5E);
    font-weight: 600;
    margin-top: 12px;
}

.vgt-home-footer__copy {
    font-size: 11px;
    color: var(--vgt-muted, #6B6A85);
    margin-top: 10px;
}

/* =========================================================
 * CARD helper (dùng cho cover/brand/hero)
 * ========================================================= */
.vgt-card {
    background: var(--vgt-paper, #fff);
    border: var(--vgt-border, 1px solid var(--vgt-hair, #E8E5DE));
    border-radius: var(--vgt-radius, 18px);
    box-shadow: var(--vgt-shadow, 0 1px 3px rgba(15, 14, 46, 0.06));
}

.vgt-card--pad {
    padding: 18px;
}

/* =========================================================
 * LAYOUT: COVER SPOTLIGHT
 * ========================================================= */
.vgt-cover-layout {
    background: var(--vgt-cream, #FAF7F2);
    padding-bottom: 0px;
    --vgt-radius: 14px;
    --vgt-shadow: unset;
    --vgt-border: 1px solid var(--vgt-hair, #E8E5DE);
    /* Cho phép cover sticky bám viewport (ghi đè overflow:hidden của .vgt-profile) */
    overflow: clip;
}

/* Banner đứng yên, nội dung scroll đè lên */
.vgt-cover-layout .vgt-cover {
    position: sticky;
    top: 0;
    z-index: 0;
}

.vgt-cover-body {
    position: relative;
    z-index: 1;
    background: var(--vgt-cream, #FAF7F2);
    padding-bottom: 0;
    margin-top: -24px;

}

/* Gradient chuyển tiếp mềm mại ở mép trên (đè lên ảnh banner) */
.vgt-cover-body::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -45px;
    height: 46px;
    pointer-events: none;

    background: linear-gradient(to bottom,
            rgba(250, 247, 242, 0) 0%,
            rgba(250, 247, 242, 0.55) 55%,
            var(--vgt-cream, #FAF7F2) 100%);
}

.vgt-cover-identity {
    padding: 0 20px;
    margin-top: -44px;
    position: relative;
}

.vgt-cover-section {
    padding: 22px 20px 0;
}

.vgt-cover-save {
    margin-top: 10px;
    text-align: center;
}

.vgt-cover-footer {
    padding: 30px 20px 24px;
    text-align: center;
}

.vgt-cover-footer__copy {
    font-size: 11px;
    color: var(--vgt-muted, #6B6A85);
    margin-top: 10px;
}

.vgt-cover-layout .vgt-sticky-bar {
    background: linear-gradient(to top, var(--vgt-cream, #FAF7F2) 65%, rgba(250, 247, 242, 0));
}

/* =========================================================
 * LAYOUT: QUIET LUXURY
 * ========================================================= */
.vgt-quiet-layout {
    background: #FCFBF8;
    font-family: "Roboto", system-ui, sans-serif;
    --vgt-radius: 10px;
    --vgt-shadow: none;
    --vgt-border: 1px solid var(--vgt-hair, #E8E5DE);
    padding-bottom: 90px;
}

.vgt-quiet-hero {
    padding: 0 32px;
    text-align: center;
    margin-top: -52px;
    position: relative;
}

.vgt-quiet-name {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 38px;
    font-weight: 500;
    margin: 24px 0 0;
    line-height: 1.05;
    letter-spacing: -0.5px;
    color: var(--vgt-ink, #0F0E2E);
}

.vgt-quiet-title {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-style: italic;
    font-size: 17px;
    color: var(--vgt-orange-deep, #D9650E);
    margin-top: 6px;
}

.vgt-quiet-company {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--vgt-muted, #6B6A85);
    margin-top: 8px;
    font-weight: 600;
}

.vgt-quiet-tagline {
    margin: 24px auto 0;
    max-width: 290px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--vgt-ink, #0F0E2E);
    opacity: 0.78;
}

.vgt-quiet-ornament {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.vgt-quiet-ornament__line {
    width: 40px;
    height: 1px;
    background: var(--vgt-hair, #E8E5DE);
}

.vgt-quiet-ornament__diamond {
    width: 5px;
    height: 5px;
    transform: rotate(45deg);
    background: var(--vgt-orange, #F47B20);
}

.vgt-quiet-section {
    padding: 32px 32px 0;
}

.vgt-quiet-save {
    margin-top: 18px;
    text-align: center;
}

.vgt-eyebrow--quiet {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--vgt-muted, #6B6A85);
}

.vgt-eyebrow__dash {
    width: 16px;
    height: 1px;
    background: var(--vgt-orange, #F47B20);
}

.vgt-quiet-footer {
    padding: 36px 32px 24px;
    text-align: center;
}

.vgt-quiet-footer__copy {
    font-size: 11px;
    color: var(--vgt-muted, #6B6A85);
    margin-top: 10px;
}

.vgt-quiet-layout .vgt-stats {
    background: transparent;
}

.vgt-quiet-layout .vgt-sticky-bar {
    background: linear-gradient(to top, #FCFBF8 65%, rgba(252, 251, 248, 0));
}

/* =========================================================
 * LAYOUT: BRAND BLOCK
 * ========================================================= */
.vgt-brand-layout {
    background: var(--vgt-cream, #FAF7F2);
    padding-bottom: 0px;
    --vgt-radius: 3px;
    --vgt-shadow: 0 1px 3px rgba(15, 14, 46, 0.06);
    --vgt-border: 1px solid var(--vgt-hair, #E8E5DE);
}

.vgt-brand-header {
    background: var(--vgt-navy, #2e3292);
    padding: 20px 24px 28px;
    position: relative;
    overflow: hidden;
}

.vgt-brand-header__deco1 {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border: 40px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.vgt-brand-header__deco2 {
    position: absolute;
    bottom: -60px;
    left: -20px;
    width: 140px;
    height: 140px;
    background: rgba(0, 0, 0, 0.06);
    transform: rotate(45deg);
}

.vgt-brand-header__top {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vgt-brand-header__logo {
    background: #fff;
    padding: 7px 11px;
    border-radius: var(--vgt-radius, 10px);
    display: inline-flex;
}

.vgt-brand-header__logo img {
    margin: auto;
}

.vgt-brand-header__status {
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.18);
    padding: 6px 12px;
    border-radius: 999px;
}

.vgt-brand-header__status-dot {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: #fff;
}

.vgt-brand-header__identity {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.vgt-brand-header__avatar {
    padding: 4px;
    background: #fff;
    border-radius: 20px;
    flex-shrink: 0;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    display: inline-flex;
}

.vgt-brand-header__text {
    color: #fff;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.vgt-brand-header__name {
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -0.6px;
    line-height: 1.05;
}

.vgt-brand-header__title {
    font-size: 13.5px;
    font-weight: 600;
    margin-top: 6px;
    opacity: 0.95;
}

.vgt-brand-header__company {
    font-size: 12.5px;
    opacity: 0.85;
}

.vgt-brand-header__tagline {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 13.5px;
    line-height: 1.55;
    margin: 18px 0 0;
    opacity: 0.95;
}

.vgt-brand-section {
    padding: 24px 20px 0;
}

.vgt-brand-section-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--vgt-navy, #1E1B5E);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vgt-brand-section-title__bar {
    width: 18px;
    height: 3px;
    background: var(--vgt-orange, #F47B20);
    border-radius: 2px;
}

.vgt-brand-save {
    margin-top: 10px;
    text-align: center;
}

/* Brand: contact grid 1 cột — mỗi nút 1 hàng */
.vgt-brand-layout .vgt-contact-grid {
    grid-template-columns: 1fr;
    gap: 10px;
}

.vgt-brand-footer {
    padding: 30px 20px 24px;
    text-align: center;
}

.vgt-brand-footer__copy {
    font-size: 11px;
    color: var(--vgt-muted, #6B6A85);
    margin-top: 10px;
}

.vgt-brand-layout .vgt-sticky-bar {
    background: linear-gradient(to top, var(--vgt-cream, #FAF7F2) 65%, rgba(250, 247, 242, 0));
}

/* =========================================================
 * LAYOUT: HERO COVER
 * ========================================================= */
.vgt-hero-layout {
    background: var(--vgt-cream, #FAF7F2);
    padding-bottom: 0px;
    --vgt-radius: 13px;
    --vgt-shadow: 0 10px 30px rgba(15, 14, 46, 0.1);
    --vgt-border: 1px solid var(--vgt-hair, #E8E5DE);
}

.vgt-hero-card-wrap {
    padding: 0 16px;
    margin-top: -80px;
    position: relative;
    z-index: 3;
}

.vgt-hero-card {
    padding: 56px 22px 22px;
    text-align: center;
    position: relative;
    border-radius: var(--vgt-radius, 24px);
}

.vgt-hero-card__avatar {
    position: absolute;
    top: -48px;
    left: 50%;
    transform: translateX(-50%);
}

.vgt-hero-card__name {
    font-size: 23px;
    font-weight: 700;
    letter-spacing: -0.4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.vgt-hero-card__meta {
    font-size: 13.5px;
    color: var(--vgt-muted, #6B6A85);
    margin-top: 6px;
}

.vgt-hero-card__meta strong {
    color: var(--vgt-navy, #1E1B5E);
    font-weight: 700;
}

.vgt-hero-card__company {
    display: block;
    margin-top: 2px;
}

.vgt-hero-card__tagline {
    font-size: 13px;
    line-height: 1.55;
    color: var(--vgt-ink, #0F0E2E);
    opacity: 0.82;
    margin: 12px 0 0;
}

.vgt-hero-card__actions {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--vgt-hair, #E8E5DE);
}

.vgt-hero-card__save {
    margin-top: 12px;
}

.vgt-hero-section {
    padding: 16px 16px 0;
}

.vgt-hero-footer {
    padding: 30px 20px 24px;
    text-align: center;
}

.vgt-hero-footer__copy {
    font-size: 11px;
    color: var(--vgt-muted, #6B6A85);
    margin-top: 10px;
}

.vgt-hero-layout .vgt-sticky-bar {
    background: linear-gradient(to top, var(--vgt-cream, #FAF7F2) 65%, rgba(250, 247, 242, 0));
}

/* =========================================================
 * FOOTER INFO (đầy đủ — dùng chung 5 layout)
 * ========================================================= */
.vgt-footer-info {
    padding: 24px 16px 30px;
}

.vgt-footer-info__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-bottom: 14px;
    margin-bottom: 4px;
    border-bottom: 1px solid var(--vgt-hair, #E8E5DE);
}

.vgt-footer-info__company {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--vgt-navy, #1E1B5E);
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.2px;
}

.vgt-footer-info__list {
    list-style: none;
    margin: 0 auto;
    padding: 18px;

    background: var(--vgt-paper, #fff);
    border: var(--vgt-border, 1px solid var(--vgt-hair, #E8E5DE));
    border-radius: var(--vgt-radius, 16px);
    box-shadow: var(--vgt-shadow, 0 1px 3px rgba(15, 14, 46, 0.06));
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vgt-footer-info__list h3 {
    font-weight: bold;
    margin-top: 10px;
}

.vgt-footer-info__row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 13px;
    line-height: 1.5;
    color: var(--vgt-ink, #0F0E2E);
}

.vgt-footer-info__row svg {
    flex-shrink: 0;
    margin-top: 1px;
}

.vgt-footer-info__link {
    color: var(--vgt-navy, #1E1B5E);
    text-decoration: none;
    font-weight: 400;
}

.vgt-footer-info__link:hover {
    color: var(--vgt-orange-deep, #D9650E);
}

.vgt-footer-info__muted {
    color: var(--vgt-navy, #1E1B5E);
    text-decoration: none;
    font-weight: 400;
}

.vgt-footer-info__social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
}

.vgt-footer-info__social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.15s ease;
}

.vgt-footer-info__social-btn:hover {
    transform: translateY(-2px);
}

.vgt-footer-info__social-btn--fb {
    background: #1877F2;
    color: #fff;
}

.vgt-footer-info__social-btn--zalo {
    background: #fff;
    border: 1px solid var(--vgt-hair, #E8E5DE);
}

.vgt-footer-info__social-btn--zalo img {
    width: 22px;
    height: 22px;
    display: block;
}

.vgt-footer-info__copy {
    text-align: center;
    font-size: 11px;
    color: var(--vgt-muted, #6B6A85);
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--vgt-hair, #E8E5DE);
    max-width: 360px;
    margin-inline: auto;
    line-height: 1.5;
}

/* Glass variant — card kính + chữ sáng */
.vgt-footer-info--glass .vgt-footer-info__list {
    background: rgba(255, 255, 255, 58%);
    border-color: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: none;
}

.vgt-footer-info--glass .vgt-footer-info__logo {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}





.vgt-footer-info--glass .vgt-footer-info__copy {
    color: rgba(255, 255, 255, 0.75);
    border-top-color: rgba(255, 255, 255, 0.2);
}


/* =========================================================
 * LAYOUT 6 — AURORA GRADIENT
 * ========================================================= */
.vgt-aurora-layout {
    background: #0E0B2E;
    --vgt-radius: 22px;
    --vgt-shadow: 0 16px 40px rgba(10, 8, 40, 0.28);
    --vgt-border: 1px solid rgba(255, 255, 255, 0.7);
    overflow: clip;
}

.vgt-aurora-bg {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 440px;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(160deg, #1B1248 0%, #2A1B5E 45%, #0E0B2E 100%);
}

.vgt-aurora-bg__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.75;
}

.vgt-aurora-bg__blob--1 {
    width: 280px;
    height: 280px;
    top: -60px;
    left: -80px;
    background: #7C3AED;
}

.vgt-aurora-bg__blob--2 {
    width: 240px;
    height: 240px;
    top: 120px;
    right: -90px;
    background: var(--vgt-orange, #F47B20);
    opacity: 0.55;
}

.vgt-aurora-bg__blob--3 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -40px;
    background: #2E8BC0;
    opacity: 0.5;
}

.vgt-aurora-content {
    position: relative;
    z-index: 2;
    padding-bottom: 8px;
}

.vgt-aurora-chrome {
    padding: 16px 16px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vgt-aurora-section {
    padding: 12px 16px 0;
}

.vgt-aurora-hero {
    background: var(--vgt-paper, #fff);
    border-radius: var(--vgt-radius, 22px);
    box-shadow: var(--vgt-shadow);
    padding: 58px 20px 22px;
    margin-top: 52px;
    text-align: center;
    position: relative;
}

.vgt-aurora-hero__avatar {
    position: absolute;
    top: -52px;
    left: 50%;
    transform: translateX(-50%);
}

.vgt-aurora-hero__name {
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -0.4px;
    margin: 0;
    color: var(--vgt-ink, #0F0E2E);
}

.vgt-aurora-hero__title {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--vgt-navy, #1E1B5E);
    margin-top: 6px;
}

.vgt-aurora-hero__company {
    font-size: 12.5px;
    color: var(--vgt-muted, #6B6A85);
    margin-top: 2px;
}

.vgt-aurora-hero__actions {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--vgt-hair, #E8E5DE);
}

/* =========================================================
 * LAYOUT 7 — MONO EDITORIAL
 * ========================================================= */
.vgt-mono-layout {
    background: #fff;
    color: #111;
    --vgt-radius: 0px;
    --vgt-shadow: none;
    --vgt-border: 1px solid #111;
    padding-bottom: 60px;
}

.vgt-mono-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #111;
}

.vgt-mono-head {
    padding: 28px 20px 24px;
    border-bottom: 1px solid #111;
    position: relative;
}

.vgt-mono-head__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #888;
}

.vgt-mono-head__name {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1px;
    margin: 14px 0 0;
    color: #111;
}

.vgt-mono-head__role {
    margin-top: 12px;
    font-size: 14px;
}

.vgt-mono-head__title {
    font-weight: 700;
    color: #111;
}

.vgt-mono-head__company {
    display: block;
    color: #666;
    margin-top: 2px;
}

.vgt-mono-head__avatar {
    margin-top: 18px;
}

.vgt-mono-head__avatar .vgt-avatar {
    border-radius: 2px;
    background: #111;
}

.vgt-mono-section {
    padding: 22px 20px;
    border-bottom: 1px solid #E2E2E2;
}

.vgt-mono-section__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 14px;
}

.vgt-mono-save {
    margin-top: 16px;
}

/* Mono: contact rows + save vuông, đen trắng */
.vgt-mono-layout .vgt-save-contact {
    background: #111;
    border: 1px solid #111;
    color: #fff;
    border-radius: 0;
}

.vgt-mono-layout .vgt-save-contact:hover {
    background: #fff;
    color: #111;
}

.vgt-mono-layout .vgt-save-contact:hover svg {
    stroke: #111;
}

.vgt-mono-layout .vgt-stats__value {
    color: #111;
}

.vgt-mono-layout .vgt-service-check__tick {
    background: #111;
}

/* =========================================================
 * LAYOUT 8 — WAVE HEADER
 * ========================================================= */
.vgt-wave-layout {
    background: var(--vgt-cream, #FAF7F2);
    --vgt-radius: 16px;
    --vgt-shadow: 0 6px 20px rgba(15, 14, 46, 0.08);
    --vgt-border: 1px solid var(--vgt-hair, #E8E5DE);
    padding-bottom: 40px;
}

.vgt-wave-header {
    position: relative;
    background: linear-gradient(150deg, var(--vgt-navy, #1E1B5E), #2E8BC0);
    padding-bottom: 40px;
}

.vgt-wave-header__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 16px 24px;
}

.vgt-wave-header__wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: 56px;
    display: block;
}

.vgt-wave-identity {
    text-align: center;
    margin-top: -36px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.vgt-wave-identity__avatar {
    display: inline-flex;
    justify-content: center;
}

.vgt-wave-identity__name {
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -0.4px;
    margin: 12px 0 0;
    color: var(--vgt-ink, #0F0E2E);
}

.vgt-wave-identity__title {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--vgt-navy, #1E1B5E);
    margin-top: 6px;
}

.vgt-wave-identity__company {
    font-size: 12.5px;
    color: var(--vgt-muted, #6B6A85);
    margin-top: 2px;
}

.vgt-wave-section {
    padding: 18px 16px 0;
}

.vgt-wave-save {
    margin-top: 10px;
}