.elementor-13795 .elementor-element.elementor-element-8635bc4{--display:flex;}/* Start custom CSS for html, class: .elementor-element-3b6028e */*,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    :root {
        --blue: #0066FF;
        --cyan: #00AEEF;
        --navy: #0033A0;
        --dark: #0F172A;
        --muted: #64748B;
        --text-mid: var(--muted);
        --light: #F5F8FF;
        --white: #ffffff;
        --border: rgba(0, 102, 255, .1);
        --grad: linear-gradient(135deg, var(--blue), var(--cyan));
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Manrope', sans-serif;
        color: var(--dark);
        background: var(--white);
        line-height: 1.6;
    }

    /* ── Layout ── */
    .container {
        width: 100%;
        max-width: 1200px;
        margin-inline: auto;
        padding-inline: clamp(1rem, 4vw, 2rem);
    }

    .text-center {
        text-align: center;
    }

    .mb-12 {
        margin-bottom: 3rem;
    }

    /* ── Typography ── */
    .section-title {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
        font-weight: 800;
        color: var(--dark);
        margin-bottom: 1rem;
    }

    .section-sub {
        font-size: 1.05rem;
        color: var(--muted);
        max-width: 700px;
        margin-inline: auto;
    }

    .section-label {
        background: var(--grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 700;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: .08em;
        display: inline-block;
        margin-bottom: .75rem;
    }

    /* ── Buttons ── */
    .btn {
        display: inline-flex;
        align-items: center;
        gap: .5rem;
        padding: .75rem 1.5rem;
        border-radius: .5rem;
        font-weight: 600;
        font-size: .95rem;
        cursor: pointer;
        border: none;
        transition: opacity .2s, transform .15s;
        text-decoration: none;
        font-family: inherit;
    }

    .btn:hover {
        opacity: .9;
        transform: translateY(-1px);
    }

    .btn-white {
        background: var(--white);
        color: var(--blue);
    }

    .btn-outline {
        background: transparent;
        border: 2px solid var(--white);
        color: var(--white);
    }

    .btn-outline:hover {
        background: rgba(255, 255, 255, .1);
    }

    .btn-blue {
        background: var(--grad);
        color: var(--white);
    }

    .btn-border {
        background: var(--white);
        border: 2px solid var(--blue);
        color: var(--blue);
    }

    .btn-border:hover {
        background: var(--light);
    }

    .btn-full {
        width: 100%;
        justify-content: center;
    }

    .btn-lg {
        padding: .9rem 2rem;
        font-size: 1rem;
    }

    /* ── Card ── */
    .card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 1rem;
        transition: box-shadow .25s, border-color .25s;
    }

    .card:hover {
        box-shadow: 0 8px 32px rgba(0, 102, 255, .12);
        border-color: rgba(0, 102, 255, .3);
    }

    .card-body {
        padding: 1.5rem;
    }

    /* ── SVG icons ── */
    .ico {
        fill: none;
        stroke: var(--white);
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .ico-blue {
        fill: none;
        stroke: var(--blue);
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    /* ════════════════════════════
       HERO
    ════════════════════════════ */
    #hero {
        background: var(--grad);
        padding: 5rem 0;
        overflow: hidden;
        position: relative;
    }

    #hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 70% 50%, rgba(255, 255, 255, .08) 0%, transparent 70%);
        pointer-events: none;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }

    @media (max-width: 900px) {
        .hero-grid {
            grid-template-columns: 1fr;
        }
    }

    .hero-badge {
        display: inline-block;
        background: rgba(255, 255, 255, .2);
        backdrop-filter: blur(8px);
        padding: .5rem 1.25rem;
        border-radius: 999px;
        font-size: .875rem;
        font-weight: 600;
        color: var(--white);
        margin-bottom: 1.25rem;
    }

    .hero-title {
        font-size: clamp(2rem, 5vw, 3.25rem);
        font-weight: 800;
        color: var(--white);
        line-height: 1.15;
        margin-bottom: 1.25rem;
    }

    .hero-sub {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, .9);
        margin-bottom: 2rem;
    }

    .hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-img {
        width: 100%;
        border-radius: 1.25rem;
        box-shadow: 0 24px 64px rgba(0, 0, 0, .25);
        display: block;
    }

    /* ════════════════════════════
       BENEFITS (4-col)
    ════════════════════════════ */
    #benefits {
        padding: 5rem 0;
        background: var(--white);
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    @media (max-width: 900px) {
        .benefits-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 500px) {
        .benefits-grid {
            grid-template-columns: 1fr;
        }
    }

    .benefit-card {
        text-align: center;
    }

    .benefit-card .card-body {
        padding: 1.75rem 1.25rem;
    }

    .benefit-icon {
        display: inline-flex;
        padding: 1rem;
        border-radius: .75rem;
        background: var(--grad);
        margin-bottom: 1rem;
    }

    .benefit-icon svg {
        width: 2rem;
        height: 2rem;
    }

    .benefit-card h3 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: .4rem;
    }

    .benefit-card p {
        font-size: .85rem;
        color: var(--muted);
    }

    /* ════════════════════════════
       WHY REGISTER (navy cards)
    ════════════════════════════ */
    #why {
        padding: 5rem 0;
        background: linear-gradient(to bottom, var(--white), var(--light));
    }

    .why-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    @media (max-width: 700px) {
        .why-grid {
            grid-template-columns: 1fr;
        }
    }

    .why-card {
        background: var(--navy);
        border: none;
        border-radius: 1rem;
    }

    .why-card:hover {
        box-shadow: 0 12px 40px rgba(0, 0, 0, .25);
        border-color: transparent;
    }

    .why-card .card-body {
        padding: 2rem;
    }

    .why-top {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .why-num {
        font-size: 3.5rem;
        font-weight: 800;
        color: rgba(255, 255, 255, .2);
        line-height: 1;
        flex-shrink: 0;
    }

    .why-card h3 {
        font-weight: 700;
        font-size: 1rem;
        color: var(--white);
        margin-bottom: .5rem;
    }

    .why-card p.content {
        font-size: .85rem;
        color: rgba(255, 255, 255, .8);
    }

    .why-divider {
        border: none;
        border-top: 1px solid rgba(255, 255, 255, .2);
        margin: 1rem 0;
    }

    .why-card p.desc {
        font-size: .875rem;
        color: rgba(255, 255, 255, .9);
    }

    /* ════════════════════════════
       PROCESS (timeline)
    ════════════════════════════ */
    #process {
        padding: 5rem 0;
        background: var(--white);
    }

    .timeline {
        max-width: 820px;
        margin-inline: auto;
    }

    .timeline-item {
        display: flex;
        gap: 1.5rem;
        margin-bottom: 0;
    }

    .timeline-item:last-child .timeline-line {
        display: none;
    }

    .timeline-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .timeline-circle {
        width: 4rem;
        height: 4rem;
        border-radius: 50%;
        background: var(--grad);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        font-weight: 800;
        color: var(--white);
        box-shadow: 0 6px 20px rgba(0, 102, 255, .35);
        flex-shrink: 0;
    }

    .timeline-line {
        width: 2px;
        flex: 1;
        min-height: 3rem;
        background: var(--grad);
        margin-block: .5rem;
    }

    .timeline-card {
        flex: 1;
        margin-bottom: 2rem;
    }

    .timeline-card .card-body {
        padding: 1.25rem 1.5rem;
    }

    .timeline-card h3 {
        font-size: 1.05rem;
        font-weight: 800;
        margin-bottom: .35rem;
    }

    .timeline-card p {
        font-size: .875rem;
        color: var(--muted);
    }

    /* ════════════════════════════
       PRICING (3-col)
    ════════════════════════════ */
    #pricing {
        padding: 5rem 0;
        background: linear-gradient(to bottom, var(--white), var(--light));
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        max-width: 1000px;
        margin-inline: auto;
        align-items: start;
    }

    @media (max-width: 820px) {
        .pricing-grid {
            grid-template-columns: 1fr;
            max-width: 420px;
        }
    }

    .pkg-card {
        border: 2px solid var(--border);
        position: relative;
    }

    .pkg-card.pop {
        border-color: var(--blue);
        box-shadow: 0 16px 48px rgba(0, 102, 255, .2);
        transform: scale(1.05);
    }

    .pop-badge {
        position: absolute;
        top: -1rem;
        left: 50%;
        transform: translateX(-50%);
        background: var(--grad);
        color: var(--white);
        padding: .25rem 1.1rem;
        border-radius: 999px;
        font-size: .8rem;
        font-weight: 700;
        white-space: nowrap;
    }

    .pkg-card .card-body {
        padding: 2rem;
    }

    .pkg-name {
        font-size: 1.4rem;
        font-weight: 800;
        margin-bottom: 1rem;
    }

    .pkg-price-row {
        display: flex;
        align-items: baseline;
        gap: .25rem;
        margin-bottom: 1.5rem;
    }

    .pkg-price {
        font-size: 2.25rem;
        font-weight: 800;
        color: var(--blue);
    }

    .pkg-unit {
        font-size: 1rem;
        color: var(--muted);
    }

    .pkg-features {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: .75rem;
        margin-bottom: 2rem;
    }

    .pkg-features li {
        display: flex;
        align-items: flex-start;
        gap: .5rem;
        font-size: .875rem;
        color: var(--muted);
    }

    .pkg-features svg {
        width: 1.25rem;
        height: 1.25rem;
        flex-shrink: 0;
        margin-top: 2px;
    }

    /* ════════════════════════════
       STATS BAND
    ════════════════════════════ */
    #stats {
        padding: 4rem 0;
        background: var(--grad);
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        text-align: center;
    }

    @media (max-width: 600px) {
        .stats-grid {
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }
    }

    .stat-num {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
        font-weight: 800;
        color: var(--white);
        line-height: 1;
        margin-bottom: .4rem;
    }

    .stat-label {
        font-size: 1.05rem;
        color: rgba(255, 255, 255, .9);
    }

    /* ════════════════════════════
       FAQ
    ════════════════════════════ */
    #faq {
        padding: 5rem 0;
        background: var(--white);
    }

    .faq-list {
        max-width: 760px;
        margin-inline: auto;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .faq-card .card-body {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }

    .faq-badge {
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        background: var(--grad);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: .85rem;
        font-weight: 800;
        color: var(--white);
        flex-shrink: 0;
    }

    .faq-card h3 {
        font-size: .975rem;
        font-weight: 700;
        margin-bottom: .5rem;
    }

    .faq-card p {
        font-size: .85rem;
        color: var(--muted);
    }

    /* ════════════════════════════
       CTA SECTION
    ════════════════════════════ */
    #cta {
        padding: 4rem 0;
        background: linear-gradient(to bottom, var(--white), var(--light));
        text-align: center;
    }

    .cta-inner {
        max-width: 700px;
        margin-inline: auto;
    }

    .cta-award-icon {
        width: 4rem;
        height: 4rem;
        stroke: var(--blue);
        fill: none;
        margin: 0 auto 1.5rem;
        display: block;
    }

    #cta h2 {
        font-size: clamp(1.75rem, 4vw, 2.4rem);
        font-weight: 800;
        margin-bottom: 1rem;
    }

    #cta p {
        font-size: 1.15rem;
        color: var(--muted);
        margin-bottom: 2rem;
    }

    /* ══════════════════════════════
       CONSULTATION SECTION
    ══════════════════════════════ */
    #consultation-form {
        padding: 5rem 0;
        background: linear-gradient(to bottom, var(--white), var(--light));
    }

    .container {
        width: 100%;
        max-width: 1200px;
        margin-inline: auto;
        padding-inline: clamp(1rem, 4vw, 2rem);
    }

    /* ── Header ── */
    .cf-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .cf-header h2 {
        font-size: clamp(1.75rem, 4vw, 2.4rem);
        font-weight: 800;
        color: var(--dark);
        margin-bottom: .6rem;
        line-height: 1.25;
    }

    .cf-header p {
        font-size: 1.05rem;
        color: var(--text-mid);
    }

    /* ── Two-column grid ── */
    .cf-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
        max-width: 1100px;
        margin-inline: auto;
    }

    @media (max-width: 900px) {
        .cf-grid {
            grid-template-columns: 1fr;
        }

        .cf-img-wrap {
            order: 2;
        }

        .cf-form-wrap {
            order: 1;
        }
    }

    /* ── Image ── */
    .cf-img-wrap {
        border-radius: 1.25rem;
        overflow: hidden;
        box-shadow: 0 24px 64px rgba(0, 0, 0, .18);
        border: 1px solid var(--border);
    }

    .cf-img-wrap img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    /* Placeholder khi ảnh không load */
    .cf-img-placeholder {
        width: 100%;
        aspect-ratio: 4/3;
        background: linear-gradient(135deg, #dbeafe, #bfdbfe);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--blue);
        font-size: .9rem;
        font-weight: 600;
    }

    /* ── Form card ── */
    .cf-form-wrap {
        background: var(--white);
        border-radius: 1.25rem;
        padding: clamp(1.5rem, 4vw, 2.5rem);
        box-shadow: 0 20px 48px rgba(0, 0, 0, .1);
        border: 1px solid var(--border);
    }

    /* ── Form fields ── */
    .cf-form {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }

    .cf-group {
        display: flex;
        flex-direction: column;
        gap: .5rem;
    }

    .cf-label {
        font-size: .875rem;
        font-weight: 600;
        color: var(--dark);
    }

    .cf-label .req {
        color: var(--red);
        margin-left: 2px;
    }

    .cf-input,
    .cf-textarea {
        width: 100%;
        padding: .8rem 1rem;
        border: 1.5px solid #D1D5DB;
        border-radius: .5rem;
        font-size: .9rem;
        font-family: inherit;
        color: var(--dark);
        outline: none;
        transition: border-color .2s, box-shadow .2s;
        background: var(--white);
    }

    .cf-input::placeholder,
    .cf-textarea::placeholder {
        color: #9CA3AF;
    }

    .cf-input:focus,
    .cf-textarea:focus {
        border-color: var(--blue);
        box-shadow: 0 0 0 3px rgba(0, 102, 255, .15);
    }

    .cf-textarea {
        resize: none;
        min-height: 110px;
    }

    /* ── Submit button ── */
    .cf-submit {
        width: 100%;
        padding: 1rem 1.5rem;
        background: var(--grad);
        color: var(--white);
        border: none;
        border-radius: .5rem;
        font-size: 1.05rem;
        font-weight: 700;
        font-family: inherit;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: .5rem;
        transition: opacity .2s, transform .15s;
        box-shadow: 0 6px 20px rgba(0, 102, 255, .3);
        margin-top: .25rem;
    }

    .cf-submit:hover {
        opacity: .9;
        transform: translateY(-1px);
    }

    .cf-submit svg {
        width: 1.2rem;
        height: 1.2rem;
        stroke: var(--white);
        fill: none;
    }

    /* ===== CONSULTATION ===== */
    .consultation {
        padding: 80px 0;
        background: linear-gradient(180deg, #fff 0%, #F5F8FF 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 rgba(0, 102, 255, 0.1);
        line-height: 0;
    }

    .consult-img img {
        width: 100%;
        height: auto;
        display: block;
        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 rgba(0, 102, 255, 0.1);
    }

    .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: #0066FF;
        box-shadow: 0 0 0 3px rgba(0, 133, 255, 0.1);
    }

    .form-group textarea {
        resize: none;
    }

    .btn-submit {
        width: 100%;
        padding: 18px;
        background: linear-gradient(90deg, #0066FF, #00AEEF);
        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;
    }

    /* ===== 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: #0F172A;
        margin-bottom: 8px;
    }

    .toast-msg {
        font-size: 15px;
        color: #64748B;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .toast-close-btn {
        padding: 12px 36px;
        border: none;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 700;
        cursor: pointer;
        font-family: inherit;
        transition: opacity 0.2s, transform 0.2s;
        color: #fff;
    }

    .toast-close-btn:hover {
        opacity: 0.9;
        transform: translateY(-1px);
    }

    .toast-close-btn.is-success {
        background: linear-gradient(135deg, #10B981, #34D399);
        box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
    }

    .toast-close-btn.is-error {
        background: linear-gradient(135deg, #EF4444, #F87171);
        box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
    }

    .field-error {
        border-color: #EF4444 !important;
        box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
    }

    @media (max-width: 768px) {
        .consultation-grid {
            grid-template-columns: 1fr;
        }
    }/* End custom CSS */