.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for text-editor, class: .elementor-element-24867f92 *//* =========================
   GOOGLE FONT & RESET
========================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* =========================
   ROOT SYSTEM (Màu thương hiệu chuẩn hình)
========================= */
:root {
    --brand-blue: #007AFF;       /* Màu xanh y hệt trong ảnh bạn gửi */
    --brand-dark: #005C8F;       
    --brand-bg: #F2F8FF;         /* Nền xanh lam cực nhạt chuẩn SaaS */
    
    --text-main: #0f172a;        /* Đen than */
    --text-muted: #526077;       /* Xám mô tả */
    --card-border: #E5EEF8;      /* Viền nhạt */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: var(--text-main); 
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* =========================
   GLOBAL LAYOUT
========================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section.gray {
    background-color: var(--brand-bg); 
}

/* =========================
   TYPOGRAPHY
========================= */
h1, h2, h3 {
    letter-spacing: -0.03em;
    color: var(--text-main);
}

.section h2 {
    text-align: center;
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section p,
.section-desc {
    text-align: center;
    font-size: 17px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

/* =========================
   GRIDS
========================= */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 48px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }

/* =========================
   CARD SYSTEM (Chuẩn Hình 2 - Canh trái, Icon Solid)
========================= */
.card,
.industry-card,
.platform-card {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 32px; /* Bo góc to mềm mại như hình */
    padding: 40px 32px;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.03);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    color: var(--text-muted);
    font-size: 16px;
    text-align: left; /* Bắt buộc canh trái theo hình */
}

.card:hover,
.industry-card:hover,
.platform-card:hover {
    transform: translateY(-8px);
    border-color: #BEE0FF;
    box-shadow: 0 20px 40px rgba(0, 122, 255, 0.1);
}

/* KHỐI ICON BÊN TRONG CARD (Y hệt hình 2) */
.card::before,
.industry-card::before,
.platform-card::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 32px;
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px; /* Bo góc vuông mềm (Squircle) */
    background: var(--brand-blue); /* Màu xanh Solid */
    color: #fff;
    margin-bottom: 24px; /* Khoảng cách xuống text */
    box-shadow: 0 10px 20px rgba(0, 122, 255, 0.2);
}

/* Gán Icon động cho các Card (Dùng FontAwesome) */
.card:nth-child(1)::before { content: "\f5dc"; } /* Hình bộ não AI */
.card:nth-child(2)::before { content: "\f086"; } /* Hình bong bóng chat */
.card:nth-child(3)::before { content: "\f201"; } /* Biểu đồ */
.card:nth-child(4)::before { content: "\f0e8"; } /* Mạng lưới */
.card:nth-child(5)::before { content: "\f080"; } /* Thống kê */
.card:nth-child(6)::before { content: "\f3ed"; } /* Khiên bảo mật */

/* Tiêu đề Card */
.card h3,
.industry-card h3,
.platform-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-main);
    line-height: 1.3;
}

/* =========================
   HERO SECTION (Chuẩn Hình 1 - Sáng & Chữ Xanh Lớn)
========================= */
.hero {
    background: linear-gradient(180deg, #EAF4FF 0%, #F6FAFF 100%); /* Nền xanh lam cực nhạt */
    margin: 24px;
    border-radius: 40px;
    padding: 120px 24px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid #DDF0FF;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #DDF0FF; /* Nền tag xanh nhạt */
    color: var(--brand-blue); /* Chữ xanh đậm */
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

/* Tiêu đề siêu to khổng lồ màu xanh (Theo Hình 1) */
.hero h1 {
    font-size: clamp(48px, 7vw, 84px);
    font-weight: 900;
    line-height: 1.05;
    max-width: 1000px;
    margin: 0 auto 24px;
    color: var(--brand-blue); 
    letter-spacing: -0.04em;
}

.hero h2 {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 700;
    line-height: 1.5;
    color: var(--text-main);
    max-width: 800px;
    margin: 0 auto 24px;
}

.hero-text {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
}

/* =========================
   HERO METRICS (Chỉnh lại cho nền sáng)
========================= */
.hero-metrics {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-metrics div {
    background: #ffffff;
    border: 1px solid var(--card-border);
    padding: 14px 24px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

/* =========================
   BUTTONS
========================= */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--brand-blue); /* Nút Solid Blue */
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 122, 255, 0.25);
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 122, 255, 0.4);
}

.btn-outline {
    background: #ffffff;
    color: var(--text-main);
    border: 1px solid var(--card-border);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.btn-outline:hover {
    background: var(--brand-bg);
    border-color: #BEE0FF;
    color: var(--brand-blue);
}

/* =========================
   CTA SECTION
========================= */
.cta {
    background: var(--brand-blue);
    margin: 24px;
    border-radius: 40px;
    padding: 100px 24px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 122, 255, 0.25);
}

.cta h2 { color: #ffffff; }
.cta p { color: #E1F5FE; }
.cta .btn { background: #ffffff; color: var(--brand-blue); }
.cta .btn-outline { border-color: rgba(255,255,255,0.4); background: transparent; color: #fff;}

/* =========================
   RESPONSIVE DESIGN
========================= */
@media (max-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 20px; }
    
    .hero, .cta {
        margin: 16px;
        padding: 80px 20px 60px;
        border-radius: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .btn { width: 100%; }
    .section { padding: 60px 0; }
}/* End custom CSS */