.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-34605294 *//* =========================
   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 SaaS)
========================= */
:root {
    --brand-blue: #007AFF;       /* Xanh dương chuẩn SaaS */
    --brand-dark: #004B9E;       /* Xanh dương đậm khi hover */
    --brand-bg: #F2F8FF;         /* Nền xanh lam cực nhạt */
    
    --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, 46px);
    font-weight: 800;
    margin-bottom: 16px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.section p,
.section-desc {
    text-align: center;
    font-size: 17px;
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

/* =========================
   SECTION TAG (Tag bo tròn trên tiêu đề)
========================= */
.section-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; 
    width: fit-content; 
    margin: 0 auto 16px auto; 
    background: #EBF4FF; 
    color: #4B6382; 
    padding: 10px 28px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-tag i {
    color: var(--brand-blue);
    font-size: 16px;
}

/* =========================
   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 & ICONS
========================= */
.card {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 32px; 
    padding: 40px 32px;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.03);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-align: left; 
    position: relative;
    z-index: 1;
}

/* HIỆU ỨNG HOVER CARD */
.card:hover {
    transform: translateY(-8px);
    border-color: #BEE0FF;
    box-shadow: 0 24px 48px rgba(0, 122, 255, 0.12);
    z-index: 2;
}

.card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--text-main);
    line-height: 1.3;
    transition: 0.3s ease;
}

.card p {
    font-size: 16px;
    color: var(--text-muted);
    text-align: left;
    margin-bottom: 0;
}

.card:hover h3 {
    color: var(--brand-blue); /* Tiêu đề sáng lên khi hover */
}

/* KHỐI ICON TRONG CARD */
.card-icon {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px; 
    background: var(--brand-blue); 
    color: #fff;
    font-size: 32px;
    margin-bottom: 24px; 
    box-shadow: 0 10px 20px rgba(0, 122, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); 
}

/* HIỆU ỨNG ICON KHI HOVER CARD */
.card:hover .card-icon {
    transform: scale(1.1) rotate(-8deg); /* Phóng to và nghiêng nhẹ */
    background: var(--brand-dark);
    box-shadow: 0 15px 30px rgba(0, 122, 255, 0.35);
}

/* =========================
   LIST TRONG CARD (SO SÁNH TRƯỚC SAU)
========================= */
.card ul {
    list-style-type: none;
    margin-top: 16px;
}

.card ul li {
    padding: 14px 0;
    border-bottom: 1px solid #F2F8FF;
    position: relative;
    padding-left: 32px;
    color: var(--text-muted);
    transition: 0.3s ease;
}

.card ul li:last-child {
    border-bottom: none;
}

.card ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--brand-blue);
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s ease;
}

.card ul li:hover {
    color: var(--text-main);
    transform: translateX(6px);
}
.card ul li:hover::before {
    color: var(--brand-dark);
}

/* =========================
   HERO SECTION
========================= */
.hero {
    background: linear-gradient(180deg, #EAF4FF 0%, #F6FAFF 100%); 
    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; 
    color: var(--brand-blue); 
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hero h1 {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.15;
    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: 600;
    line-height: 1.6;
    color: var(--text-main);
    max-width: 900px;
    margin: 0 auto 24px;
}

.hero-text {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* =========================
   HERO METRICS
========================= */
.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);
    transition: 0.3s ease;
}

.hero-metrics div:hover {
    transform: translateY(-3px);
    border-color: #BEE0FF;
    color: var(--brand-blue);
    box-shadow: 0 12px 25px rgba(0, 122, 255, 0.1);
}

/* =========================
   BUTTONS
========================= */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--brand-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);
    background: var(--brand-dark);
}

.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; 
    max-width: 900px;
}
.cta p { 
    color: #E1F5FE; 
    max-width: 800px;
}
.cta .btn { 
    background: #ffffff; 
    color: var(--brand-blue); 
}
.cta .btn:hover { 
    background: #EAF4FF; 
    color: var(--brand-dark); 
}
.cta .btn-outline { 
    border-color: rgba(255,255,255,0.4); 
    background: transparent; 
    color: #fff;
}
.cta .btn-outline:hover { 
    background: rgba(255,255,255,0.1); 
    border-color: #fff; 
    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: 24px; }
    
    .hero, .cta {
        margin: 16px;
        padding: 80px 20px 60px;
        border-radius: 32px;
    }

    .hero-metrics {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto 40px;
    }

    .hero-metrics div { width: 100%; text-align: center; }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .btn { width: 100%; }
    .section { padding: 60px 0; }
    
    .card { padding: 32px 24px; }
}/* End custom CSS */