.elementor-14298 .elementor-element.elementor-element-3a7f8b2{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-d87b85d */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #1E293B;
    background: #fff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ─── HERO ─── */
.hero {
    background: linear-gradient(135deg, #FF5A1E 0%, #FF7B38 30%, #1A4FCC 75%, #0033AA 100%);
    padding: 0;
    overflow: hidden;
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: stretch;
}

/* ─── ANIMATIONS ─── */
@keyframes scroll-x {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 72px 32px;
    position: relative;
    z-index: 2;
}

.hero-left {
    padding-right: 48px;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #FFD94A;
    border-radius: 50%;
}

.hero h1 {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero h1 .sub {
    display: block;
    font-size: 36px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
    margin-top: 6px;
}

.hero-tagline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
}

.hero-tagline-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 600;
}

.hero-tagline-dot {
    width: 7px;
    height: 7px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.hero-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 36px;
}

.hero-stat-box {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    padding: 14px 20px;
    text-align: center;
}

.hero-stat-box .num {
    font-size: 26px;
    font-weight: 900;
    color: #FFD94A;
    line-height: 1;
}

.hero-stat-box .lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 3px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #FF5A1E;
    font-size: 16px;
    font-weight: 800;
    padding: 15px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    transition: transform 0.15s, box-shadow 0.15s;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

.hero-cta svg {
    width: 18px;
    height: 18px;
}

/* Right side visual */
.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-wrap {
    position: relative;
}

.hero-main-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    border-radius: 24px;
    padding: 28px;
    width: 340px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
}

.doc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.doc-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doc-icon svg {
    width: 24px;
    height: 24px;
}

.doc-title {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.doc-sub {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
}

.doc-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.doc-line {
    height: 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.doc-line.short {
    width: 60%;
}

.doc-line.medium {
    width: 80%;
}

.doc-line.long {
    width: 100%;
}

.sign-area {
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px dashed rgba(255, 255, 255, 0.35);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    margin-bottom: 16px;
}

.sign-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    margin-bottom: 6px;
}

.sign-name {
    color: #fff;
    font-size: 20px;
    font-style: italic;
    font-weight: 700;
    font-family: Georgia, serif;
}

.sign-badge-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.sign-badge {
    background: rgba(0, 255, 150, 0.2);
    border: 1px solid rgba(0, 255, 150, 0.4);
    color: #00FF96;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

.sign-time {
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
}

/* Floating cards */
.float-card {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.float-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.float-label {
    font-size: 11px;
    color: #64748B;
}

.float-val {
    font-size: 13px;
    font-weight: 700;
    color: #1E293B;
}

.fc-1 {
    top: -20px;
    left: -50px;
}

.fc-2 {
    bottom: 30px;
    right: -50px;
}

/* Shield decoration */
.hero-shield {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-shield svg {
    width: 30px;
    height: 30px;
}

/* ─── SERVICES ─── */
.services {
    padding: 72px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 8px;
}

.section-sub {
    text-align: center;
    font-size: 15px;
    color: #64748B;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    border: 1.5px solid #E2EDFF;
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
    cursor: default;
}

.service-card:hover {
    border-color: #FF6B35;
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.12);
    transform: translateY(-3px);
}

.service-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-icon svg {
    width: 36px;
    height: 36px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 13px;
    color: #64748B;
    line-height: 1.6;
}

/* ─── SOLUTIONS ─── */
.solutions {
    padding: 72px 0;
    background: linear-gradient(135deg, #F5F8FF, #FFF5F0);
}

.solution-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 72px;
}

.solution-block:last-child {
    margin-bottom: 0;
}

.solution-block.reverse .sol-image {
    order: 2;
}

.solution-block.reverse .sol-content {
    order: 1;
}

.sol-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.14);
    position: relative;
}

.sol-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.sol-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(0, 102, 255, 0.15));
}

.sol-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sol-icon-wrap svg {
    width: 28px;
    height: 28px;
}

.sol-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.sol-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: #1E293B;
}

.sol-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sol-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
}

.check-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #FFF0EB;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-circle svg {
    width: 13px;
    height: 13px;
}

/* ─── BENEFITS ─── */
.benefits {
    padding: 72px 0;
    background: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefit-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s, transform 0.15s;
}

.benefit-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
    transform: translateY(-4px);
}

.benefit-thumb {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.benefit-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.benefit-card:hover .benefit-thumb img {
    transform: scale(1.07);
}

.benefit-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #1E293B 0%, rgba(30, 41, 59, 0.5) 50%, transparent 100%);
}

.benefit-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: #FF6B35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-badge svg {
    width: 18px;
    height: 18px;
}

.benefit-body {
    padding: 20px;
}

.benefit-body h3 {
    font-size: 15px;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 6px;
    line-height: 1.4;
}

.benefit-body p {
    font-size: 12px;
    color: #64748B;
    line-height: 1.6;
}

/* ─── USE CASES ─── */
.usecases {
    padding: 72px 0;
    background: linear-gradient(135deg, #F5F8FF, #FFF5F0);
}

.usecases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.usecase-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    cursor: default;
    transition: transform 0.2s, box-shadow 0.2s;
}

.usecase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
}

.usecase-thumb {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.usecase-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.usecase-card:hover .usecase-thumb img {
    transform: scale(1.07);
}

.usecase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 41, 59, 0.92) 0%, rgba(30, 41, 59, 0.5) 50%, transparent 100%);
}

.usecase-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
}

/* ─── AWARDS ─── */
.awards {
    padding: 72px 0;
    background: #fff;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 960px;
    margin: 0 auto;
}

.award-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.award-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.16);
}

.award-thumb {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.award-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.award-card:hover .award-thumb img {
    transform: scale(1.06);
}

.award-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255, 107, 53, 0.85) 0%, rgba(255, 107, 53, 0.35) 50%, transparent 100%);
}

.award-icon-wrap {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-icon-wrap svg {
    width: 22px;
    height: 22px;
}

.award-body {
    padding: 24px;
}

.award-body h3 {
    font-size: 18px;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 8px;
}

.award-body p {
    font-size: 13px;
    color: #64748B;
    line-height: 1.6;
}

/* ─── CUSTOMERS ─── */
.customers-title {
    padding: 56px 0 32px;
    background: linear-gradient(90deg, #0066FF, #00AEEF);
    position: relative;
    text-align: center;
}

.customers-title h2 {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    opacity: 0.95;
}

.customers-marquee {
    padding: 32px 0;
    background: #fff;
    /* Nền trắng như hình 1 */
    overflow: hidden;
    border-bottom: 1px solid #f1f5f9;
}

.customers-grid {
    display: flex;
    gap: 64px;
    /* Tăng khoảng cách cho thoáng */
    width: max-content;
    animation: scroll-x 40s linear infinite;
    /* Tốc độ chậm rãi chuyên nghiệp */
    align-items: center;
}

.customers-grid:hover {
    animation-play-state: paused;
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 140px;
    /* Loại bỏ filter để hiện màu gốc của logo */
    opacity: 0.85;
    transition: opacity 0.3s, transform 0.3s;
}

.logo-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.logo-item img {
    max-height: 45px;
    width: auto;
    object-fit: contain;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-right {
        display: none;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero h1 .sub {
        font-size: 26px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .usecases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .awards-grid {
        grid-template-columns: 1fr;
    }

    .customers-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .solution-block {
        grid-template-columns: 1fr;
    }

    .solution-block.reverse .sol-image {
        order: 1;
    }

    .solution-block.reverse .sol-content {
        order: 2;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .usecases-grid {
        grid-template-columns: 1fr;
    }

    .customers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats {
        flex-direction: column;
        gap: 12px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-cd484b4 */:root {
        --blue: #0085FF;
        --blue-dark: #0066FF;
        --blue-light: #00AEEF;
        --text-dark: #0F172A;
        --text-mid: #64748B;
        --bg-light: #F5F8FF;
        --border: rgba(0, 102, 255, 0.1);
        --grad-btn: linear-gradient(90deg, #0066FF, #00AEEF);
    }

    *, *::before, *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body {
        font-family: 'Manrope', sans-serif;
        color: var(--text-dark);
        background: #fff;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }

    /* ===== CONSULTATION ===== */
    .consultation {
        padding: 80px 0;
        background: linear-gradient(180deg, #fff 0%, var(--bg-light) 100%);
    }

    .consultation h2 {
        font-size: clamp(26px, 3vw, 36px);
        font-weight: 800;
        margin-bottom: 12px;
    }

    .consultation-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: center;
        max-width: 1100px;
        margin: 0 auto;
    }

    .consult-img {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 102, 255, 0.1);
        border: 1px solid var(--border);
    }

    .consult-img img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .consult-form-wrap {
        background: #fff;
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 12px 48px rgba(0, 102, 255, 0.08);
        border: 1px solid var(--border);
    }

    .form-group {
        margin-bottom: 24px;
    }

    .form-group label {
        display: block;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .form-group label .req {
        color: #EF4444;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 14px 16px;
        border: 1px solid #E2E8F0;
        border-radius: 10px;
        font-size: 15px;
        font-family: inherit;
        outline: none;
        transition: border-color 0.2s, box-shadow 0.2s;
        background: #fff;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        border-color: var(--blue);
        box-shadow: 0 0 0 3px rgba(0, 133, 255, 0.1);
    }

    /* Hiển thị lỗi */
    .form-group .field-error {
        border-color: #EF4444 !important;
        background-color: #FEF2F2;
    }

    .form-group textarea {
        resize: none;
    }

    .btn-submit {
        width: 100%;
        padding: 18px;
        background: var(--grad-btn);
        color: #fff;
        border: none;
        border-radius: 12px;
        font-weight: 700;
        font-size: 17px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: opacity 0.2s, transform 0.2s;
        font-family: inherit;
        box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
    }

    .btn-submit:hover {
        opacity: 0.9;
        transform: translateY(-2px);
    }

    .btn-submit svg {
        width: 20px;
        height: 20px;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
        .consultation-grid {
            grid-template-columns: 1fr;
        }
    }

    /* ===== TOAST NOTIFICATION ===== */
    .toast-overlay {
        position: fixed;
        inset: 0;
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .toast-overlay.show {
        opacity: 1;
        visibility: visible;
    }

    .toast-box {
        background: #fff;
        border-radius: 24px;
        padding: 48px 40px 36px;
        max-width: 420px;
        width: 90%;
        text-align: center;
        box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
        transform: scale(0.85) translateY(20px);
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .toast-overlay.show .toast-box {
        transform: scale(1) translateY(0);
    }

    .toast-icon {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 32px;
        color: #fff;
    }

    .toast-icon.is-success {
        background: linear-gradient(135deg, #10B981, #34D399);
        box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
    }

    .toast-icon.is-error {
        background: linear-gradient(135deg, #EF4444, #F87171);
        box-shadow: 0 8px 24px rgba(239, 68, 68, 0.35);
    }

    .toast-title {
        font-size: 22px;
        font-weight: 800;
        color: var(--text-dark);
        margin-bottom: 8px;
    }

    .toast-msg {
        font-size: 15px;
        color: var(--text-mid);
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .toast-close-btn {
        padding: 10px 24px;
        border-radius: 8px;
        border: 1px solid #E2E8F0;
        background: #fff;
        cursor: pointer;
        font-weight: 600;
    }/* End custom CSS */