/**
 * NukeViet Content Management System
 * @version 4.x
 * @author VINADES.,JSC <contact@vinades.vn>
 * @copyright (C) 2009-2021 VINADES.,JSC. All rights reserved
 * @license GNU/GPL version 2 or any later version
 * @see https://github.com/nukeviet The NukeViet CMS GitHub project
 */

/* Các tùy chỉnh CSS của giao diện nên để vào đây */
.nav-login {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 16px;
    border: 1px solid rgba(64, 247, 177, 0.42);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(112, 236, 255, 0.94), rgba(64, 247, 177, 0.92));
    color: #03111a;
    font-family: var(--font-tech);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08) inset,
        0 10px 26px rgba(64, 247, 177, 0.16);
    transition:
        transform 180ms ease,
        filter 180ms ease,
        box-shadow 180ms ease,
        opacity 180ms ease;
}

.nav-login:hover,
.nav-login:focus-visible {
    transform: translateY(-2px);
    filter: brightness(1.12) saturate(1.05);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.14) inset,
        0 15px 34px rgba(64, 247, 177, 0.24);
}

.nav-login:active {
    transform: translateY(0);
    opacity: 0.76;
}

.customer-login-modal[hidden] {
    display: none;
}

.portlet .customer-login-modal[hidden] {
    display: block !important;
    position: relative !important;
    inset: auto !important;
    z-index: auto !important;
    height: 80px;
    min-height: 80px;
    overflow: hidden;
    background: #071120 !important;
    border: 2px dashed #ff6600 !important;
    padding: 10px !important;
    margin: 10px 0 !important;
    border-radius: 8px;
}

.portlet .customer-login-modal[hidden]>* {
    display: none !important;
}

.portlet .customer-login-modal[hidden]::after {
    content: "BLOCK: CUSTOMER LOGIN (Ẩn trên giao diện - Chỉ hiển thị khung quản lý block)";
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #ff6600;
    font-weight: bold;
    font-size: 13px;
    text-transform: uppercase;
}

.portlet:has(.customer-login-modal) .tool {
    left: 70px !important;
    top: 10px !important;
}

.customer-login-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: clamp(10px, 2vw, 30px);
}

.customer-login-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 32%, rgba(112, 236, 255, 0.1), transparent 44%),
        rgba(2, 6, 14, 0.88);
    backdrop-filter: blur(16px) saturate(1.1);
}

.customer-login-panel {
    position: relative;
    width: min(1000px, 95vw);
    max-height: 85vh !important;
    overflow-y: auto !important;
    display: grid;
    grid-template-columns: 1.15fr 1.35fr;
    border: 1px solid rgba(112, 236, 255, 0.2);
    border-radius: 20px;
    background:
        radial-gradient(circle at 10% 10%, rgba(112, 236, 255, 0.12), transparent 40%),
        linear-gradient(160deg, rgba(5, 14, 28, 0.98), rgba(2, 6, 15, 0.99));
    box-shadow:
        0 40px 120px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        inset 0 -1px 0 rgba(112, 236, 255, 0.05);
    color: var(--text);
    animation: modalReveal 400ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalReveal {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.customer-login-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 200ms, border-color 200ms, transform 200ms;
}

.customer-login-close:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(112, 236, 255, 0.5);
    transform: rotate(90deg);
}

.customer-login-close::before,
.customer-login-close::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 2px;
    background: #ffffff;
}

.customer-login-close::before {
    transform: rotate(45deg);
}

.customer-login-close::after {
    transform: rotate(-45deg);
}

.customer-login-left {
    padding: clamp(16px, 2.5vw, 24px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(112, 236, 255, 0.08);
}

.customer-login-eyebrow {
    color: #d9bd7c;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    font-family: var(--font-tech), sans-serif;
}

.customer-login-panel h2 {
    font-size: clamp(18px, 2.8vw, 20px);
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
    margin: 0 0 12px;
    text-transform: uppercase;
    font-family: var(--font-tech), sans-serif;
    text-shadow: 0 0 20px rgba(112, 236, 255, 0.15);
}

#customer-login-desc {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 16px;
}

.customer-demo-box {
    background: rgba(217, 189, 124, 0.02);
    border: 1px solid rgba(217, 189, 124, 0.1);
    border-radius: 8px;
    padding: 10px 14px;
    margin-top: 10px;
    margin-bottom: 10px;
    box-shadow: inset 0 0 20px rgba(217, 189, 124, 0.01);
}

.demo-tag {
    display: inline-block;
    background: rgba(217, 189, 124, 0.1);
    border: 1px solid rgba(217, 189, 124, 0.2);
    color: #d9bd7c;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    font-family: var(--font-tech), sans-serif;
}

.customer-demo-box h3 {
    font-size: 11px;
    font-weight: 800;
    color: #d9bd7c;
    margin: 0 0 6px;
    text-transform: uppercase;
    font-family: var(--font-tech), sans-serif;
    letter-spacing: 0.5px;
    white-space: normal !important;
}

.customer-demo-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 6px 16px;
}

@media (max-width: 600px) {
    .customer-demo-box ul {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

.customer-demo-box li {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
    position: relative;
    padding-left: 0;
    line-height: 1.35;
}

.customer-demo-box li::before {
    display: none;
}

.customer-login-status:empty {
    display: none !important;
}

.customer-login-status {
    font-size: 12.5px !important;
    padding: 8px 12px !important;
    border-radius: 6px !important;
    margin-bottom: 14px !important;
    text-align: left !important;
    line-height: 1.45 !important;
    font-family: var(--font-tech), sans-serif !important;
}

.customer-login-status.is-error {
    background: rgba(239, 68, 68, 0.08) !important;
    border: 1px solid rgba(239, 68, 68, 0.2) !important;
    color: #ef4444 !important;
}

.customer-login-status.is-success {
    background: rgba(34, 197, 94, 0.08) !important;
    border: 1px solid rgba(34, 197, 94, 0.2) !important;
    color: #22c55e !important;
}

.form-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.input-label {
    font-size: 10px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-tech), sans-serif;
}

.customer-login-form input {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(112, 236, 255, 0.2);
    border-radius: 8px;
    background: rgba(2, 6, 14, 0.6);
    color: #ffffff;
    font-size: 14px;
    font-family: var(--font-tech), sans-serif;
    outline: none;
    transition: border-color 200ms, box-shadow 200ms;
}

.customer-login-form input:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 15px rgba(112, 236, 255, 0.25);
}

.customer-login-form input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.customer-login-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.customer-register-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.register-hint {
    font-size: 11px;
    line-height: 1.35;
    margin-bottom: 4px;
    text-align: center;
    margin: 10px 0px;
}

.customer-login-status {
    min-height: 20px;
    font-size: 12.5px;
    margin-top: 8px;
    text-align: center;
}

.customer-login-status.is-error {
    color: #ffd1dc;
}

.customer-login-status.is-success {
    color: #b8ffe5;
}

.customer-login-right {
    padding: clamp(16px, 2.5vw, 23px);
    background:
        radial-gradient(circle at 50% 50%, rgba(112, 236, 255, 0.04), transparent 75%),
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        #020713;
    background-size: 100% 100%, 20px 20px, 20px 20px;
    border-left: 1px solid rgba(112, 236, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.showcase-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.showcase-preview {
    position: relative;
    border-radius: 10px;
    border: 1px solid rgba(112, 236, 255, 0.18);
    background: rgba(2, 6, 14, 0.7);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.6),
        0 0 25px rgba(112, 236, 255, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    aspect-ratio: 16 / 12;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.showcase-preview-frame {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 9px;
    font-family: var(--font-tech), monospace;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

.showcase-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.showcase-dot:nth-child(1) {
    background: #ff5f56;
}

.showcase-dot:nth-child(2) {
    background: #ffbd2e;
}

.showcase-dot:nth-child(3) {
    background: #27c93f;
}

.showcase-title {
    margin-left: 6px;
}

.showcase-images {
    position: relative;
    flex-grow: 1;
    overflow: hidden;
}

.showcase-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;

}

.showcase-img.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.showcase-features-tabs {
    display: flex;
    flex-direction: row;
    gap: 6px;
    justify-content: space-between;
    width: 100%;
}

.showcase-tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
    padding: 6px 4px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    cursor: pointer;
    transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
    color: rgba(255, 255, 255, 0.45);
}

.showcase-tab-item i {
    font-size: 14px;
    transition: color 200ms;
}

.showcase-tab-item span {
    font-size: 9.5px;
    font-weight: 700;
    font-family: var(--font-tech), sans-serif;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 100%;
}

.showcase-tab-item:hover {
    background: rgba(112, 236, 255, 0.03);
    border-color: rgba(112, 236, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
}

.showcase-tab-item.active {
    background: rgba(112, 236, 255, 0.08);
    border-color: rgba(112, 236, 255, 0.25);
    color: #70ecff;
    box-shadow: 0 0 10px rgba(112, 236, 255, 0.1);
}

.showcase-description {
    position: relative;
    min-height: 36px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px dashed rgba(255, 255, 255, 0.06);
    padding-top: 10px;
}

.description-text {
    position: absolute;
    margin: 0;
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(4px);
    transition: opacity 300ms, transform 300ms;
}

.description-text.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Responsive constraints */
@media (max-width: 900px) {
    .customer-login-panel {
        grid-template-columns: 1fr !important;
        width: min(480px, 95vw) !important;
        max-height: 95vh !important;
        display: flex !important;
        flex-direction: column !important;
        overflow-y: auto !important;
    }

    .customer-login-right {
        display: flex !important;
        order: -1 !important;
        padding: 16px 16px !important;
        min-height: auto !important;
        max-height: none !important;
        background:
            radial-gradient(circle at 50% 50%, rgba(112, 236, 255, 0.03), transparent 75%),
            #020713 !important;
        border-left: none !important;
        border-bottom: 1px solid rgba(112, 236, 255, 0.08) !important;
    }

    .showcase-container {
        max-width: 100% !important;
        gap: 12px !important;
    }

    .showcase-preview {
        aspect-ratio: 16 / 12 !important;
    }

    .showcase-features-tabs {
        gap: 4px !important;
    }

    .showcase-tab-item {
        padding: 6px 2px !important;
    }

    .showcase-tab-item span {
        font-size: 8px !important;
    }

    .showcase-tab-item i {
        font-size: 11px !important;
    }

    .showcase-description {
        min-height: auto !important;
        padding-top: 6px !important;
    }

    .description-text {
        font-size: 10px !important;
    }

    .customer-login-left {
        border-right: none !important;
        padding: 20px 16px !important;
    }

    .customer-login-close {
        top: 12px;
        right: 12px;
        z-index: 100;
        background: rgba(2, 7, 18, 0.85);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
}

body.customer-login-open {
    overflow: hidden;
}

.hero-copy::before {
    content: "X-IRIS / DIGITAL WATER INTELLIGENCE PLATFORM" !important;
    color: rgba(112, 236, 255, 1) !important;
}

.hero-proof {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 12px !important;
    width: 1200px !important;
    max-width: max-content !important;
    flex-wrap: nowrap !important;
    gap: 16px !important
}

.hero-proof>span {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 4px !important;
    height: auto !important;
    min-height: 82px !important;
    padding: 12px 16px !important;
    text-align: center;
    text-wrap: wrap !important;
}

@media (min-width: 992px) {


    .hero-proof>span {
        text-wrap: nowrap !important;
    }
}

.customer-register-prompt {
    text-align: center !important;
    font-size: 13px !important;
    color: rgba(222, 239, 250, 0.7) !important;
    font-family: var(--font-tech), sans-serif !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
}

.customer-register-link {
    background: none !important;
    border: none !important;
    color: var(--green) !important;
    font-weight: 800 !important;
    text-decoration: underline !important;
    cursor: pointer !important;
    padding: 0 4px !important;
    font-family: var(--font-tech), sans-serif !important;
    text-transform: uppercase !important;
    transition: color 150ms ease !important;
}

.customer-register-link:hover {
    color: var(--cyan) !important;
}

.industry-grid {
    display: grid !important;
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
    gap: 18px !important;
}

@media (min-width: 768px) {
    .industry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 20px !important;
    }


}

@media (min-width: 992px) {
    .industry-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 24px !important;
    }

}

@media (min-width: 1025px) {
    .hero-proof {
        max-width: none !important;
    }
}

.industry-card {
    position: relative !important;
    overflow: hidden !important;
    border: 1px solid var(--line) !important;
    border-radius: var(--radius) !important;
    background: #01060b !important;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24) !important;
    transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease !important;
    aspect-ratio: 16 / 10 !important;
    display: block !important;
}

.industry-card:hover {
    transform: translateY(-4px) !important;
    border-color: var(--line-strong) !important;
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34), 0 0 24px rgba(112, 236, 255, 0.12) !important;
}

.industry-media-placeholder {
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1 !important;
    overflow: hidden !important;
    transition: transform 400ms cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.industry-card:hover .industry-media-placeholder {
    transform: scale(1.08) !important;
}

.industry-media-placeholder::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: repeating-linear-gradient(0deg, rgba(112, 236, 255, 0.03) 0px, rgba(112, 236, 255, 0.03) 1px, transparent 1px, transparent 8px) !important;
    z-index: 2 !important;
}

.industry-media-placeholder::after {
    content: "IMAGE CONTAINER" !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    font-family: var(--font-tech) !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    color: var(--muted) !important;
    letter-spacing: 2px !important;
    opacity: 0.4 !important;
    z-index: 2 !important;
    display: none !important;
}

.industry-content {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 3 !important;
    padding: 24px !important;
    background: linear-gradient(to top, rgba(1, 6, 11, 0.95) 0%, rgba(1, 6, 11, 0.8) 50%, transparent 100%) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    transition: background 300ms ease !important;
}

.industry-content h3 {
    margin: 0 !important;
    color: var(--white) !important;
    font-family: var(--font-tech) !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.industry-content p {
    margin: 0 !important;
    color: var(--muted) !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    max-height: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
    transition: max-height 300ms cubic-bezier(0.4, 0, 0.2, 1), opacity 300ms ease, margin-top 300ms ease !important;
}

.industry-card:hover .industry-content p {
    margin-top: 10px !important;
    max-height: 80px !important;
    opacity: 1 !important;
}

#industries {
    padding: 0% !important;
}

@media (max-width: 991.98px) {
    .trust-ribbon {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        width: calc(100% - 36px) !important;
        max-width: 100% !important;
        margin: 10px auto 20px !important;
        gap: 8px 12px !important;
        padding: 12px 8px !important;
        overflow-x: visible !important;
        text-align: center !important;
    }

    .trust-ribbon span {
        display: block !important;
        width: 100% !important;
        margin-bottom: 4px !important;
        color: var(--muted) !important;
    }

    .trust-ribbon strong {
        display: inline-block !important;
        white-space: nowrap !important;
        font-size: 11px !important;
        padding: 6px 12px !important;
    }
}

.trust-ribbon strong {
    padding: 13px 10px !important;
    border-radius: 10px !important;
    width: 160px !important;
    height: 50px !important;
    text-align: center !important;
    display: block !important;
    align-content: center !important;
}

.trust-ribbon strong i.fa {
    margin-right: 6px;
    font-size: 1.1em;
}

.trust-ribbon strong:nth-child(1) i {
    color: #f59e0b;
}

.trust-ribbon strong:nth-child(2) i {
    color: #6366f1;
}

.trust-ribbon strong:nth-child(3) i {
    color: #06b6d4;
}

.trust-ribbon strong:nth-child(4) i {
    color: #3b82f6;
}

.trust-ribbon strong:nth-child(5) i {
    color: #22c55e;
}

.trust-ribbon strong:nth-child(6) i {
    color: #a855f7;
}

.faq-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

.faq-item {
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-item summary {
    padding: 18px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    margin-left: 20px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
}

.faq-item p {
    padding: 0 24px 24px 24px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
    font-size: 13px;
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating-contact-bar {
    position: fixed !important;
    bottom: 24px !important;
    right: 24px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    z-index: 9999 !important;
}

.floating-btn {
    position: relative !important;
    width: 46px !important;
    height: 46px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35) !important;
    transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 300ms ease !important;
    background-color: #ffffff !important;
    overflow: visible !important;
}

.floating-btn:hover {
    transform: scale(1.08) translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45) !important;
}

.floating-btn img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: 5 !important;
    border-radius: 50% !important;
}

.floating-btn .mobile-svg,
.floating-btn .btn-label {
    display: none !important;
}

.floating-btn .desktop-img {
    display: block !important;
}

.btn-phone {
    background-color: #4cf100 !important;
}

.btn-phone svg {
    width: 24px !important;
    height: 24px !important;
    object-fit: contain !important;
    color: #ffffff !important;
}

.btn-zalo .zalo-text-icon {
    color: #0068ff !important;
}

.btn-fb svg {
    width: 24px !important;
    height: 24px !important;
    object-fit: contain !important;
    color: #0084ff !important;
}

.ripple {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    border-radius: 50% !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

.btn-phone .ripple {
    border: 3px solid rgba(76, 241, 0, 0.75) !important;
}

.btn-zalo .ripple {
    border: 3px solid rgba(0, 104, 255, 0.75) !important;
}

.btn-fb .ripple {
    border: 3px solid rgba(0, 132, 255, 0.75) !important;
}

.ripple1 {
    animation: gentle-ripple 2.4s cubic-bezier(0.1, 0.8, 0.3, 1) infinite !important;
}

.ripple2 {
    animation: gentle-ripple 2.4s cubic-bezier(0.1, 0.8, 0.3, 1) infinite !important;
    animation-delay: 1.2s !important;
}

@keyframes gentle-ripple {
    0% {
        transform: scale(1);
        opacity: 0.85;
    }

    50% {
        opacity: 0.45;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}


.metric-strip {
    position: relative !important;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    
    margin: 0 auto clamp(46px, 6vw, 76px) !important;
    border-radius: 12px !important;
    background: rgba(112, 236, 255, 0.15) !important;
    box-shadow: 0 8px 32px rgba(112, 236, 255, 0.15) !important;
    gap: 0 !important;
    overflow: hidden !important;
}

.metric-strip::before {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 250% !important;
    height: 250% !important;
    pointer-events: none !important;
    z-index: 1 !important;
    opacity: 1 !important;
    background: conic-gradient(from 0deg, var(--cyan), var(--cyan) 20%, transparent 40%, transparent) !important;
    transform-origin: center !important;
    transform: translate(-50%, -50%) rotate(0deg);
    animation: spinBorder 4s linear infinite !important;
}

.metric-strip::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    inset: 7px !important;
    background: #07121f !important;
    border-radius: 5px !important;
    z-index: 2 !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

@keyframes spinBorder {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.metric-strip article {
    text-align: center !important;
    position: relative !important;
    padding: 40px 20px !important;
    border-right: 3px solid rgba(112, 236, 255, 0.15) !important;
    background: none !important;
    border-top: none !important;
    border-left: none !important;
    border-bottom: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    animation: none !important;
    z-index: 3 !important;
}

.metric-strip article:last-child {
    border-right: none !important;
}

.metric-strip strong {
    color: var(--green) !important;
    font-size: clamp(34px, 4vw, 50px) !important;
    text-align: center !important;
    display: block !important;
    margin-bottom: 8px !important;
    text-shadow: 0 0 10px rgba(112, 236, 255, 0.4) !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    animation: none !important;

}

@keyframes borderGlowFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.metric-strip {
    margin-top: clamp(45px, 6vw, 76px) !important;
}

@media (max-width: 700px) {

    .hero,
    .section,
    .metric-strip,
    .cta-band {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media (max-width: 768px) {
    .metric-strip {
        grid-template-columns: 1fr !important;
        border-radius: 8px !important;
    }

    .metric-strip article {
        border-right: none !important;
        border-bottom: 1px solid rgba(112, 236, 255, 0.15) !important;
        padding: 18px 16px !important;
    }

    .metric-strip article:last-child {
        border-bottom: none !important;
    }

    .metric-strip::before {
        border-radius: 8px !important;
    }

    .timeline {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

}
body {
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.blue-band {
    padding: 0px !important;
    background: none !important;
}

.site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    box-sizing: border-box !important;
    transition: background 300ms ease, box-shadow 300ms ease, min-height 300ms ease !important;
}

.site-header.scrolled {
    background: rgba(2, 8, 21, 0.98) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    border-bottom-color: rgba(112, 236, 255, 0.35) !important;
}

body {
    padding-top: 66px !important;
}

@media (max-width: 700px) {
    body {
        padding-top: 74px !important;
    }
}

html {
    scroll-behavior: smooth !important;
}

.back-to-top.mobile-back-to-top {
    display: none !important;
}

.back-to-top {
    position: relative !important;
    width: 46px !important;
    height: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    outline: none !important;
    margin-bottom: -18px !important;
    overflow: hidden !important;
    border: 0 solid var(--line-strong) !important;
    padding: 0 !important;

    background: linear-gradient(135deg, rgba(112, 236, 255, 0.08), rgba(217, 189, 124, 0.035)), rgba(255, 255, 255, 0.04) !important;
    color: var(--text) !important;
    box-shadow: inset 0 0 22px rgba(112, 236, 255, 0.08) !important;

    transition:
        opacity 300ms ease,
        visibility 300ms ease,
        height 300ms ease,
        margin-bottom 300ms ease,
        border-width 300ms ease,
        transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 300ms ease,
        border-color 300ms ease,
        background 300ms ease,
        color 300ms ease !important;
}

.back-to-top.show {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    height: 46px !important;
    margin-bottom: 0 !important;
    border-width: 1px !important;
}

.back-to-top:hover {
    border-color: rgba(112, 236, 255, 0.78) !important;
    background: linear-gradient(135deg, rgba(112, 236, 255, 0.14), rgba(91, 143, 255, 0.08)), rgba(255, 255, 255, 0.065) !important;
    color: #f7fcff !important;
    box-shadow:
        inset 0 0 24px rgba(112, 236, 255, 0.13),
        0 0 24px rgba(112, 236, 255, 0.14),
        0 16px 36px rgba(9, 38, 76, 0.22) !important;
    transform: translateY(-3px) !important;
}

.back-to-top:active {
    transform: translateY(-1px) scale(0.98) !important;
}

.back-to-top svg {
    transition: transform 300ms ease !important;
    color: currentColor !important;
}

.back-to-top:hover svg {
    transform: translateY(-2px) !important;
}

.site-nav a::after {
    display: none !important;
}

.challenges-section {
    width: min(var(--max), calc(100% - 36px)) !important;
}

.challenges-header {
    margin-bottom: 40px !important;
}

.challenges-section h2 {
    font-size: clamp(20px, 2.5vw, 30px) !important;
    font-weight: 800 !important;
    line-height: 1.4 !important;
    color: #ffffff !important;
    margin-bottom: 24px !important;
    text-transform: uppercase !important;
    text-shadow: 0 0 20px rgba(112, 236, 255, 0.2) !important;
    font-family: var(--font-tech), sans-serif !important;
}

.challenges-intro p {
    font-size: 17px !important;
    line-height: 1.7 !important;
    color: rgba(255, 255, 255, 0.75) !important;
    margin-bottom: 16px !important;
}

.challenges-intro p:last-child {
    margin-bottom: 0 !important;
}

.challenges-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
    margin-top: 40px !important;
}

.challenge-col {
    border-left: 2px solid var(--cyan) !important;
    padding-left: 18px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.challenge-col h3 {
    font-size: clamp(14px, 1.6vw, 16px) !important;
    font-weight: 800 !important;
    color: var(--cyan) !important;
    text-transform: uppercase !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    font-family: var(--font-tech), sans-serif !important;
    letter-spacing: 0.5px !important;
    text-align: center !important;
}

.challenge-col p {
    font-size: clamp(12.5px, 1.4vw, 13.5px) !important;
    color: rgba(255, 255, 255, 0.65) !important;
    margin: 0 !important;
    text-align: justify !important;
    text-align-last: left !important;
    line-height: 1.7 !important;
    hyphens: auto !important;
}

@media (max-width: 992px) {
    .challenges-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 28px !important;
    }
}

@media (max-width: 576px) {
    .challenges-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
}

@media (max-width: 768px) {
    .hero-proof {
        display: grid !important;
        grid-template-columns: auto !important;
        gap: 10px !important;
        margin-top: 24px !important;
        justify-items: center !important;
        justify-content: center !important;
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 12px !important;
        width: 100% !important;
        max-width: 100% !important;

    }

    .hero {
        padding: clamp(0px, 0px, 0px) 0 !important
    }
}

.hero-proof span {
    width: 300px !important;
    text-wrap: wrap !important;
}

.hero-proof span {
    font-weight: 100 !important;
}


.hero-home .hero-media {
    min-height: auto !important;
    align-self: start !important;
}

.hero-copy p.eyebrow {
    white-space: wrap !important;
}

.xiris-block-slot {
    width: auto !important;
}

.about-section .video-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr) !important;
    gap: 40px !important;
    align-items: start !important;
    margin-top: 30px !important;
}

.about-value-item {
    display: flex !important;
    gap: 16px !important;
    align-items: flex-start !important;
    text-align: left !important;
    margin-bottom: 24px !important;
}

.about-icon-wrapper {
    width: 44px !important;
    height: 44px !important;
    border-radius: 10px !important;
    background: rgba(112, 236, 255, 0.06) !important;
    border: 1px solid rgba(112, 236, 255, 0.18) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #70ecff !important;
    font-size: 16px !important;
    flex-shrink: 0 !important;
    box-shadow: 0 0 15px rgba(112, 236, 255, 0.03) !important;
    transition: all 0.3s ease !important;
}

.about-value-item:hover .about-icon-wrapper {
    background: rgba(112, 236, 255, 0.12) !important;
    border-color: rgba(112, 236, 255, 0.35) !important;
    box-shadow: 0 0 20px rgba(112, 236, 255, 0.1) !important;
    transform: translateY(-2px) !important;
}

.about-value-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
}

.about-value-content h3 {
    margin: 0 !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    font-family: var(--font-tech), sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    line-height: 1.2 !important;
}

.about-value-content p {
    margin: 0 !important;
    color: var(--muted) !important;
    font-size: 13.5px !important;
    line-height: 1.5 !important;
}

@media (max-width: 768px) {
    .about-section .video-layout {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .industries-ribbon-container {
        margin: 0% !important;
    }

    .about-value-item {
        gap: 12px !important;
        margin-bottom: 16px !important;
    }

    .about-icon-wrapper {
        width: 36px !important;
        height: 36px !important;
        font-size: 14px !important;
        border-radius: 8px !important;
    }

    .about-value-content h3 {
        font-size: 15px !important;
    }

    .about-value-content p {
        font-size: 12.5px !important;
    }
}

.industries-tab-section {
    margin: 40px auto !important;
}

.industries-ribbon-container {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    gap: 12px !important;
    margin: -18px auto 30px !important;
}

.industries-tabs-ribbon {
    flex: 1 !important;
    min-width: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 12px 16px !important;
    margin: 0 !important;
    padding: 12px 0 !important;
    border-block: 1px solid rgba(122, 219, 255, 0.16) !important;
    color: var(--muted) !important;
    font-family: var(--font-tech), sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    scrollbar-width: none !important;
}

.industries-tabs-ribbon::-webkit-scrollbar {
    display: none !important;
}

@media (min-width: 992px) {
    .industries-tabs-ribbon {
        justify-content: safe center !important;
    }
}

.ribbon-arrow {
    position: relative !important;
    z-index: 10 !important;
    background: rgba(112, 236, 255, 0.04) !important;
    border: 1px solid rgba(112, 236, 255, 0.2) !important;
    border-radius: 50% !important;
    color: #70ecff !important;
    width: 32px !important;
    height: 32px !important;
    font-size: 12px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    outline: none !important;
    flex-shrink: 0 !important;
}

.ribbon-arrow:hover {
    background: rgba(112, 236, 255, 0.12) !important;
    border-color: #70ecff !important;
    color: #ffffff !important;
    box-shadow: 0 0 10px rgba(112, 236, 255, 0.3) !important;
}

.ribbon-arrow.disabled {
    opacity: 0.2 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}

.tab-trigger {
    background: rgba(112, 236, 255, 0.04) !important;
    border: 1px solid rgba(112, 236, 255, 0.18) !important;
    border-radius: 999px !important;
    padding: 8px 18px !important;
    color: #dffaff !important;
    font-family: var(--font-tech), sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    outline: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.tab-trigger:hover {
    background: rgba(112, 236, 255, 0.08) !important;
    border-color: rgba(112, 236, 255, 0.4) !important;
    color: #ffffff !important;
    box-shadow: 0 0 15px rgba(112, 236, 255, 0.05) !important;
    transform: translateY(-1px) !important;
}

.tab-trigger.active {
    background: rgba(112, 236, 255, 0.12) !important;
    border-color: #70ecff !important;
    color: #70ecff !important;
    box-shadow: 0 0 20px rgba(112, 236, 255, 0.15) !important;
    font-weight: 700 !important;
}

.tab-trigger:nth-child(1) i {
    color: #f59e0b !important;
}

.tab-trigger:nth-child(2) i {
    color: #6366f1 !important;
}

.tab-trigger:nth-child(3) i {
    color: #06b6d4 !important;
}

.tab-trigger:nth-child(4) i {
    color: #3b82f6 !important;
}

.tab-trigger:nth-child(5) i {
    color: #22c55e !important;
}

.tab-trigger:nth-child(6) i {
    color: #a855f7 !important;
}

/* Active layout */
.industries-tab-contents .tab-pane {
    display: none !important;
}

.industries-tab-contents .tab-pane.active {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 48px !important;
    align-items: stretch !important;
    animation: tabReveal 500ms cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}

.industries-tab-contents .media-card {
    height: 100% !important;
    margin: 0 !important;
    display: flex !important;
}

.industries-tab-contents .media-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.industries-tab-contents .section-copy {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    height: 100% !important;
}

.industries-tab-contents .tab-action {
    margin-top: auto !important;
}

@media (max-width: 991.98px) {
    .industries-tab-contents .tab-pane.active {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
        align-items: start !important;
    }

    .industries-tab-contents .media-card {
        height: auto !important;
    }

    .industries-tab-contents .section-copy {
        height: auto !important;
    }

    .industries-tab-contents .tab-action {
        margin-top: 24px !important;
    }
}

@keyframes tabReveal {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.99);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 991.98px) {
    .industries-tabs-ribbon {
        width: 100% !important;
        margin: 0 !important;
        gap: 8px 12px !important;
        padding: 12px 0 !important;
    }

    .tab-trigger {
        font-size: 11px !important;
        padding: 6px 12px !important;
    }
}

.mini-list {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

.btn-learn-more {
    display: flex !important;
    justify-content: center !important;
    padding: 10px 64px !important;
    border: 1px solid rgba(112, 236, 255, 0.4) !important;
    border-radius: 8px !important;
    background: transparent !important;
    color: #70ecff !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
    width: fit-content !important;
    margin: 0 auto;
}

.btn-learn-more:hover {
    background: rgba(112, 236, 255, 0.08) !important;
    border-color: #70ecff !important;
    color: #ffffff !important;
    box-shadow: 0 0 15px rgba(112, 236, 255, 0.15) !important;
    transform: translateY(-1px) !important;
    text-decoration: none !important;
}

@media (max-width: 767.98px) {
    .btn-learn-more {
        margin-left: 0 !important;
        width: 100% !important;
    }
}

.hud-live,
.hud-score {
    display: none !important;
}

.site-footer {
    background: #020815 !important;
    padding: 60px 0 30px !important;
    color: var(--muted) !important;
    font-family: var(--font-base), sans-serif !important;
    border-top: 1px solid rgba(112, 236, 255, 0.1) !important;
    display: block !important;
}

.footer-grid {
    max-width: 1550px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    display: grid !important;
    grid-template-columns: 1.1fr 1.3fr 1fr 1.2fr !important;
    gap: 40px !important;
}

@media (min-width: 768px) {
    .footer-grid {
        padding: 0 70px 0 10px !important;
    }
}

.footer-brand-col {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
}

.footer-logo {
    max-height: 100px !important;
    width: auto !important;
    align-self: flex-start !important;
}

.footer-social-icons {
    display: flex !important;
    gap: 12px !important;
    margin-top: 10px !important;
}

.social-icon-btn {
    width: 36px !important;
    height: 36px !important;
    border-radius: 6px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    font-size: 16px !important;
    transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease !important;
    text-decoration: none !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) !important;
}

.social-icon-btn:hover {
    transform: translateY(-2px) !important;
    filter: brightness(1.15) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4) !important;
}

.social-icon-btn.linkedin {
    background: #0077b5 !important;
}

.social-icon-btn.facebook {
    background: #1877f2 !important;
}

.social-icon-btn.zalo {
    background: #ffffff !important;
}

.social-icon-btn.zalo span {
    font-family: var(--font-tech), sans-serif !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    color: #1877f2;
}

.social-icon-btn.tiktok {
    background: #000000 !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.footer-menu-col {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
}

.footer-menu-col h4 {
    color: #ffffff !important;
    font-family: var(--font-tech), sans-serif !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin: 0 !important;
}

.footer-menu-col ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.footer-menu-col ul li a {
    color: var(--muted) !important;
    text-decoration: none !important;
    font-size: 13.5px !important;
    transition: color 0.2s ease !important;
}

.footer-menu-col ul li a:hover {
    color: var(--cyan) !important;
    text-decoration: none !important;
}

.contact-info-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    color: var(--muted) !important;
    font-size: 13.5px !important;
    line-height: 1.5 !important;
}

.contact-info-item i {
    color: var(--white) !important;
    margin-top: 3px !important;
    width: 14px !important;
    text-align: center !important;
    flex-shrink: 0 !important;
}

.footer-divider {
    border: 0 !important;
    height: 2px !important;
    background: #fff !important;
    margin: 40px 0 25px !important;
    width: 100% !important;
}

.footer-bottom {
    max-width: 1550px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    font-size: 12.5px !important;
    color: var(--muted) !important;
}

.footer-policies {
    display: flex !important;
    gap: 24px !important;
}

.footer-policies a {
    color: var(--muted) !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.footer-policies a:hover {
    color: var(--cyan) !important;
    text-decoration: none !important;
}

@media (max-width: 991.98px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 30px !important;
    }
}

@media (max-width: 575.98px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .footer-brand-col {
        align-items: center !important;
        text-align: center !important;
    }

    .footer-logo {
        align-self: center !important;
    }

    .footer-bottom {
        flex-direction: column-reverse !important;
        gap: 16px !important;
        text-align: center !important;
    }

    .footer-policies {
        justify-content: center !important;
    }
}

@media (max-width: 767.98px) {
    .floating-contact-bar {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: calc(54px + env(safe-area-inset-bottom)) !important;
        flex-direction: row !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        padding: 0 !important;
        background: #020815 !important;
        border-top: 1px solid rgba(112, 236, 255, 0.15) !important;
        border-radius: 0 !important;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4) !important;
        gap: 0 !important;
    }

    .floating-btn {
        flex: 1 !important;
        height: 100% !important;
        max-width: none !important;
        border-radius: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: none !important;
        padding: 4px 0 !important;
        padding-bottom: env(safe-area-inset-bottom) !important;
        margin: 0 !important;
        gap: 4px !important;
        transition: opacity 0.2s ease !important;
        text-decoration: none !important;
    }

    .floating-btn:hover {
        transform: none !important;
        opacity: 0.9 !important;
    }

    .floating-btn .contact-icon {
        width: 22px !important;
        height: 22px !important;
        display: block !important;
    }

    .floating-btn .btn-label {
        font-size: 11px !important;
        font-weight: 600 !important;
        color: #ffffff !important;
        letter-spacing: 0.3px !important;
        display: block !important;
        line-height: 1.2 !important;
    }

    .floating-btn .desktop-img {
        display: none !important;
    }

    .floating-btn .mobile-svg {
        display: block !important;
    }

    .floating-btn.btn-phone {
        background-color: #2ecc71 !important;
        border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .floating-btn.btn-zalo {
        background-color: #0068ff !important;
        border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .floating-btn.btn-fb {
        background-color: #0084ff !important;
    }

    .desktop-back-to-top {
        display: none !important;
    }

    .back-to-top.mobile-back-to-top {
        position: fixed !important;
        bottom: calc(70px + env(safe-area-inset-bottom)) !important;
        left: auto !important;
        right: 16px !important;
        z-index: 99999 !important;
        width: 44px !important;
        height: 44px !important;
        border-radius: 50% !important;
        background: rgba(2, 8, 21, 0.85) !important;
        border: 1px solid rgba(112, 236, 255, 0.4) !important;
        color: var(--cyan) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
        display: none !important;
        align-items: center !important;
        justify-content: center !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        margin: 0 !important;
        padding: 0 !important;
        transition: opacity 300ms ease, visibility 300ms ease, transform 300ms ease !important;
    }

    .back-to-top.mobile-back-to-top.show {
        display: flex !important;
        height: 44px !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    .back-to-top.mobile-back-to-top:hover {
        transform: translateY(-2px) !important;
        background: rgba(2, 8, 21, 0.95) !important;
    }

    .floating-contact-bar .ripple {
        display: none !important;
    }

    body {
        padding-bottom: calc(54px + env(safe-area-inset-bottom)) !important;
    }
}

.image-link img {
    object-fit: contain !important;
}

.section-heading>.eyebrow {
    padding-top: 20px !important;
}

.cta-band h2 {
    font-size: 33px !important;
}

.cta-band.cta-band-image {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    
    overflow: hidden !important;
    border-radius: 0 !important;
    background-color: #02070a !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    color: #fff !important;
    gap: 210px !important;
}

.cta-band.cta-band-image::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(90deg, rgba(0, 6, 10, 0.02) 0%, rgba(0, 7, 12, 0.35) 42%, rgba(0, 5, 10, 0.88) 100%) !important;
    pointer-events: none !important;
}

.cta-band.cta-band-image .cta-content,
.cta-band.cta-band-image .button {
    position: relative !important;
    z-index: 1 !important;
}

.cta-band.cta-band-image .cta-content {
    max-width: 530px !important;
    margin-left: 350px !important;
    text-align: left !important;
}

.cta-band.cta-band-image h2 {
    color: #fff !important;
    text-shadow: 0 12px 36px rgba(0, 0, 0, 0.55) !important;
}

@media (max-width: 768px) {
    .cta-band.cta-band-image {
        align-items: flex-end !important;
        justify-content: flex-start !important;
        min-height: 420px !important;
        background-position: 28% center !important;
    }

    .cta-band.cta-band-image::before {
        background: linear-gradient(180deg, rgba(0, 6, 10, 0.1) 0%, rgba(0, 5, 10, 0.82) 72%, rgba(0, 5, 10, 0.94) 100%) !important;
    }

    .cta-band.cta-band-image .cta-content {
        max-width: 100% !important;
        margin-left: 0 !important;
    }
}
