/* ==========================
   1. :root - CSS variables
	========================== */
:root {
	--navy:#0a1628;
	--navy2:#0f2044;
	
	--blue:#1a56e8;
	--blue-lt:#3b7eff;
	
	--cyan:#00c2e0;
	--mint:#00e5a0;
	--white:#fff;
	--gray:#f4f6fb;
	--gray2:#edf0f7;
	
	--text:#1a2340;
	--text2:#5a6480;
	
	--border:rgba(26,86,232,.1);
	
	--fh:'Lexend',sans-serif;
	--fb:'Be Vietnam Pro',sans-serif
	
    /* Semantic colors */
    --success-100: #1C843C;
    --error-100: hsl(1, 72%, 45%);
    --warning-100: hsl(21, 75%, 50%);
    --info-100: hsl(211, 95%, 46%);

    /* Neutrals */
    --neutrals-110: hsl(0, 0%,10%);
    --neutrals-100: hsl(0, 0%, 0%);
    --neutrals-90: hsl(0, 0%, 10%);
    --neutrals-10: hsl(0, 0%, 90%);
    --neutrals-5: hsl(0, 0%, 0%);

    --headline-color: #094067;
    --sub-headline-color: #5f6c7b;

    /* Brand / Primary colors */
    --primary-color: #1250dc; /* inferred from usage */
    --fs-color-primary: #1e6fd9; /* keep legacy var usage */
    --obelix-header-color: #161618;

    /* Background colors and palette */
    --nav-background-color: #CAE2EE;
    --blue-50: #f0fbff;
    --blue-100: #eaeffa;
    --blue-150: #c1d0f6;
    --blue-200: #acc0f3;
    --blue-300: #769dea;
    --blue-400: #306de4;
    --blue-500: #1250dc;
    --blue-600: #0037c1;
    --blue-700: #002c9a;
    --blue-800: #002174;
    --blue-900: #00164d;
    --blue-1000: #000b27;

    --black: #000;
    --white: #fff;
    --white-200: #fcfcfc;

    --gray-100: #f6f7f9;
    --gray-150: #edf0f3;
    --gray-200: #e4e8ed;
    --gray-300: #d9dfe5;
    --gray-400: #c1c8d1;
    --gray-500: #a9b2be;
    --gray-600: #657384;
    --gray-700: #4a4f63;
    --gray-800: #2f364a;
    --gray-800-80: rgba(47, 54, 74, 0.8);
    --gray-900: #20283d;
    --gray-1000: #020b27;

    /* Alerts */
    --red-100: #fffbfa; --red-200: #fef3f2; --red-300: #fee4e2; --red-400: #ffcdca; --red-500: #fda29b; --red-600: #fa7066; --red-700: #f04438; --red-800: #d92d20; --red-900: #b42318; --red-1000: #912018;
    --yellow-100: #fffcf5; --yellow-200: #fff3e1; --yellow-300: #fef0c7; --yellow-400: #fedf89; --yellow-500: #fec84b; --yellow-600: #fdb022; --yellow-700: #f79009; --yellow-800: #dc6803; --yellow-900: #b54708; --yellow-1000: #93370d;
    --green-100: #f6fef9; --green-200: #defcea; --green-300: #d1fadf; --green-400: #a6f4c5; --green-500: #6ce9a6; --green-600: #32d583; --green-700: #12b76a; --green-800: #039855; --green-900: #027a48; --green-1000: #05603a;

    /* Gradients */
    --gradient-blue-1: linear-gradient(315deg, var(--blue-500) 0%, var(--blue-400) 100%);
    --gradient-blue-2: linear-gradient(315deg, var(--blue-400) 0%, var(--blue-300) 100%);
    --gradient-blue-3: linear-gradient(315deg, var(--blue-300) 0%, var(--blue-200) 100%);
    --gradient-blue-4: linear-gradient(358deg, #bbcef4 1.63%, #dfe7fb 98.37%);
    --gradient-blue-5: linear-gradient(359deg, #bbcef4 -224.09%, #dfe7fb 111.69%);
    --gradient-green-1: linear-gradient(315deg, var(--green-800) 0%, var(--green-700) 100%);
    --gradient-green-2: linear-gradient(315deg, #039836 0%, #12b75e 100%);
    --gradient-yellow-1: linear-gradient(315deg, var(--yellow-700) 0%, var(--yellow-600) 100%);
    --gradient-red-1: linear-gradient(315deg, var(--red-800) 0%, var(--red-700) 100%);
    --gradient-red-3: linear-gradient(295deg, #CD1A0C 0%, #FF5246 98.45%);

    /* Shadows */
    --shadow-xs: 0px 0px 8px -2px rgba(0, 39, 102, 0.1), 0px 0px 4px -2px rgba(0, 39, 102, 0.06);
    --shadow-sm: 0px 0px 16px -4px rgba(0, 39, 102, 0.08), 0px 0px 6px -2px rgba(0, 39, 102, 0.03);
    --shadow-md: 0px 0px 24px -4px rgba(0, 39, 102, 0.08), 0px 0px 8px -4px rgba(0, 39, 102, 0.03);
    --shadow-lg: 0px 0px 48px -12px rgba(0, 39, 102, 0.18);
    --shadow-xl: 0px 0px 64px -12px rgba(0, 39, 102, 0.14);
    --shadow-2xl: 0px 0px 16px rgba(2, 11, 39, 0.04);
    --shadow-3xl: 0px -4px 16px rgba(2, 11, 39, 0.08);
}

/* ==========================
   2. Base & Elements
   ========================== */
/* list marker color */
li::marker { color: rgb(45, 135, 243); }

/* Headings */
.heading-3 { font-size: 1.3rem; border-bottom: 1px solid #eee; margin-bottom: 1rem; }
.heading-3 h3 { color: #1e6fd9; }

/* Typography utilities */
.fw-bolder { font-weight: bolder !important; }
.text-lowercase { text-transform: lowercase !important; }
.text-uppercase { text-transform: uppercase !important; }
.text-capitalize { text-transform: capitalize !important; }
.text-theme { color: var(--primary-color); }
.text-orange { color: #f7941e; }
.brand { color: #00a7e1; text-transform: uppercase; font-family: sans-serif; }
.brand-medical { background: #f89a29; }
.brand-education { background: #00a7e1; }

/* Blockquote */
blockquote {
    border-left: 4px solid var(--fs-color-secondary) !important !important;
    color: #345 !important;
    font-style: italic !important;
    margin: 1.375rem 0 !important;
    padding: 1rem !important;
    background: rgb(247 148 29 / 10%);
    border-radius: 5px;
    letter-spacing: .5px;
}
blockquote p { margin: 0; line-height: normal; font-size: 15px; }
blockquote ul, blockquote ol { padding-top: 10px !important; margin: 0; font-size: 16px; }

/* Buttons base */
.btn {
    padding: 20px 25px;
    gap: 10px;
    line-height: 1;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
    color: #49515b;
    text-transform: uppercase;
    border: 2px solid rgba(241,89,39,0.5);
    border-radius: 50px;
}
.btn:hover { background: #f15927; color: #fff; }

/* Utility rounded */
.rounded-circle { border-radius: 50%; }

/* Images */
.wp-block-image img, .wp-caption img { border-radius: 10px; border: 1px solid #CAE2EE; }
.wp-block-image figcaption, .wp-caption figcaption { color: var(--gray-700); font-size: 13px; line-height: 16px; font-style: italic; }

/* Tables - common */
table { border-collapse: unset; border-spacing: 4px; border: 1px solid #e1e3e4; margin-bottom: 0px; border-radius: 3px;}
.table > :not(caption) > * > * { padding: 0.5rem 0.5rem; border: 1px solid #eee; border-bottom-width: 1px; box-shadow: inset 0 0 0 9999px transparent;}
.table-1 thead tr th { white-space: nowrap; background-color: #004fb4; color: #fff; text-transform: none;}
.table-1 th, .table-1 td { vertical-align: middle;}
.table-1 tbody td { padding-top: 1rem; padding-bottom: 1rem; vertical-align: top;}
.table-1 .tcol-3 { padding-left: 1rem;}
.table-1 .tcol-6 { width: 1%;}
.table-responsive-flush { margin-bottom: 1rem;}
.table-responsive-inner .tcol { font-size: 13px;}
.table-responsive-inner td a { color: #004fb4;}
.table-responsive-inner td a:hover { color: var(--fs-experimental-link-color-hover);}
td:first-child, th:first-child, td:last-child, th:last-child { padding: 0.5rem 0.5rem; border-bottom-width: 1px; box-shadow: inset 0 0 0 9999px transparent;}
table.table-1 tr:nth-child(even):not(tr.colspan_subthead) { background: #eee;}
.wp-block-table thead { border: 2px solid #004fb4; background: #004fb4; color: #fff;}


/* Breadcrumbs */
.rank-math-breadcrumb { color: #061119; margin: 1rem 0; text-decoration: none; font-size: 0.875rem; letter-spacing: -0.2px; line-height: 1; white-space: nowrap;}
.rank-math-breadcrumb a { color: #1250dc; letter-spacing: .02em;}
.rank-math-breadcrumb a:first-of-type:before { content: "\f015"; font: normal normal normal 14px / 1 FontAwesome; font-size: inherit; text-rendering: auto; -webkit-font-smoothing: antialiased; color: #595959; margin-right: 5px; width: 32px; height: 32px; border-radius: 50%; display: inline-flex; justify-content: center; align-items: center; background-color: #f4f8fe;}
.rank-math-breadcrumb p { display: inline;}
.bg-breadcrumbs { padding-top: 0px; padding-bottom: 0px; background-color: rgb(237, 240, 243);}

/*
* Element Name: Testimonial One
*/
.obelix-testimonial--one .title-wrap>* {
    font-size: inherit;
    line-height: inherit;
}

.obelix-testimonial--one .title-wrap .title {
    margin-bottom: .05em;
    font-weight: bold;
}

.obelix-testimonial--one .title-wrap .subtitle {
    color: var(--fs-color-primary);
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: .4em;
    letter-spacing: 1px;
}

.row.obelix-testimonial--one>.col.large-12 {
    padding-bottom: 0;
}

/* Testimonial box */
.testimonial-box.obelix-testimonial--one {
    --avatar-width: 106px;
    position: relative;
    height: 100%;
    padding: 24px 30px 23px;
    -webkit-box-shadow: 0 4px 60px -1px rgb(0 0 0 / 10%);
    box-shadow: 0 4px 60px -1px rgb(0 0 0 / 10%);
    background-color: #ffffff;
    border-radius: 10px;
    z-index: 1;
}

.testimonial-box.obelix-testimonial--one .icon-box-img {
    position: absolute;
    left: 24px;
    top: 22px;
}

.testimonial-box.obelix-testimonial--one .star-rating span:before,
.testimonial-box.obelix-testimonial--one .star-rating:before {
    color: #ffc107;
}

.testimonial-box.obelix-testimonial--one .star-rating {
    letter-spacing: 3px;
    width: auto;
    left: var(--avatar-width);
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin: 8px 0 14px 0;
}

.testimonial-box.obelix-testimonial--one .icon-box-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 !important;
}

.testimonial-box.obelix-testimonial--one .testimonial-meta {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: var(--avatar-width);
}

.testimonial-box.obelix-testimonial--one .testimonial-name-divider {
    display: none;
}

.testimonial-box.obelix-testimonial--one .testimonial-name {
    font-size: 25px;
    line-height: 1.4;
    margin-bottom: 0;
}

.testimonial-box.obelix-testimonial--one .testimonial-company {
    display: inline-block;
    color: var(--fs-color-primary);
    margin-bottom: 0;
}

.testimonial-box.obelix-testimonial--one .testimonial-text {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    font-size: 15px;
    line-height: 1.6;
    margin-top: 10px;
    font-style: normal !important;
}

.testimonial-box.obelix-testimonial--one::after {
    content: "";
    position: absolute;
    top: 22px;
    right: 30px;
    display: inline-block;
    pointer-events: none;
    opacity: 0.3;
    z-index: 0;
    width: 40px;
    height: 40px;
    background-color: var(--fs-color-secondary);
    -webkit-mask-size: 36px;
    mask-size: 36px;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-image: url("/wp-content/uploads/2025/08/quote-icon.svg");
    mask-image: url("/wp-content/uploads/2025/08/quote-icon.svg");
}

/* Slide style */
.marquee.obelix-testimonial--one .flickity-viewport {
    overflow: visible;
    overflow-x: hidden;
}

.marquee.obelix-testimonial--one .flickity-viewport .col {
    padding-bottom: 0;
}

.marquee.obelix-testimonial--one .flickity-viewport .col {
    margin-top: 40px;
    margin-bottom: 14px;
}

.marquee.obelix-testimonial--one:last-of-type .flickity-viewport .col {
    margin-bottom: 40px;
    margin-top: 14px;
}

.marquee.obelix-testimonial--one .flickity-viewport::before,
.marquee.obelix-testimonial--one .flickity-viewport::after {
    content: "";
    width: 458px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: -o-linear-gradient(left, rgba(255, 255, 255, 1) 22%, rgba(255, 255, 255, 0.5) 68%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(22%, rgba(255, 255, 255, 1)), color-stop(68%, rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 22%, rgba(255, 255, 255, 0.5) 68%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}

.marquee.obelix-testimonial--one .flickity-viewport::after {
    left: auto;
    right: 0;
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 32%, rgba(255, 255, 255, 1) 77%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(32%, rgba(255, 255, 255, 0.5)), color-stop(77%, rgba(255, 255, 255, 1)));
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 32%, rgba(255, 255, 255, 1) 77%);
}
@media screen and (max-width: 849px) {
    .marquee.obelix-testimonial--one .flickity-viewport::before,
    .marquee.obelix-testimonial--one .flickity-viewport::after {
        width: calc(clamp(1.875rem, 19.126vw - 2.918rem, 6.25rem));
        background: -o-linear-gradient(left, rgba(255, 255, 255, 1) 8%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 100%);
        background: -webkit-gradient(linear, left top, right top, color-stop(8%, rgba(255, 255, 255, 1)), color-stop(60%, rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
        background: linear-gradient(90deg, rgba(255, 255, 255, 1) 8%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 100%);
    }

    .marquee.obelix-testimonial--one .flickity-viewport::after {
        background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 40%, rgba(255, 255, 255, 1) 92%);
        background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(40%, rgba(255, 255, 255, 0.5)), color-stop(92%, rgba(255, 255, 255, 1)));
        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 40%, rgba(255, 255, 255, 1) 92%);
    }
}
@media screen and (max-width: 549px) {
    .testimonial-box.obelix-testimonial--one {
        --avatar-width: 90px;
        padding: 15px 20px 13px;
    }

    .testimonial-box.obelix-testimonial--one .icon-box-img {
        width: 66px !important;
        left: 18px;
        top: 20px;
    }

    .testimonial-box.obelix-testimonial--one .star-rating {
        margin-bottom: 2px;
    }

    .testimonial-box.obelix-testimonial--one .testimonial-name {
        font-size: 18px;
    }

    .testimonial-box.obelix-testimonial--one::after {
        top: 12px;
        right: 14px;
        width: 28px;
        height: 28px;
        -webkit-mask-size: 26px;
        mask-size: 26px;
    }
}

/**** End Testimonial One ****/
/*
* Element Name: UX BUilder Marquee
*/
.obelix-marquee-wrapper .obelix-marquee {
    --obelix-text-dark-gray: #555353;
    --marquee-gap: 0px;
    --obelix-duration: 30s;
    --obelix-scroll-distance: calc(100% + var(--marquee-gap));
    --obelix-color-white: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    gap: var(--marquee-gap);
    position: relative;
}

.obelix-marquee-wrapper .obelix-marquee.is-loading .obelix-marquee-group {
    opacity: 0;
}

.obelix-marquee-wrapper .obelix-marquee.is-vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: var(--box-height, 400px);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.obelix-marquee-wrapper .obelix-marquee .obelix-scroll-text {
    line-height: 1.65;
    text-align: center;
}

.obelix-marquee-wrapper .obelix-marquee .obelix-scroll-text, .obelix-marquee-wrapper .obelix-marquee .obelix-marquee-group i {
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}

.obelix-marquee-wrapper .obelix-marquee .obelix-marquee-group svg {
    height: auto;
    width: 2rem;
    fill: currentColor;
}

.obelix-marquee-wrapper .obelix-marquee .obelix-text-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: var(--marquee-gap);
}

.obelix-marquee-wrapper .obelix-marquee.is-vertical.icon-right .obelix-text-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.obelix-marquee-wrapper .obelix-marquee.is-vertical.icon-bottom .obelix-text-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.obelix-marquee-wrapper .marquee-icon {
    --icon-width: 1.5rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* Image icon */
.obelix-marquee-wrapper .marquee-icon.is-image {
    width: calc(var(--icon-width) * 2);
}

.obelix-marquee-wrapper .marquee-icon img {
    /* height: var(--icon-width, 3rem); */
    width: 100%;
    max-width: unset;
}

/* Svg inline icon */
.obelix-marquee-wrapper .marquee-icon.is-image svg {
    width: var(--icon-width);
}

.obelix-marquee-wrapper .marquee-icon.is-image svg > * {
    fill: currentColor!important;
}

/* Library icon */
.obelix-marquee-wrapper i.marquee-icon {
    font-size: var(--icon-width);
}

.obelix-marquee .obelix-scroll-image img {
    height: var(--image-ratio);
    width: auto;
    max-width: unset;
}

.obelix-marquee-wrapper .is-vertical .obelix-scroll-image img {
    width: var(--image-ratio);
    height: auto;
}

@-webkit-keyframes obelix-scroll-x {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(calc(-1 * var(--obelix-scroll-distance)));
        transform: translateX(calc(-1 * var(--obelix-scroll-distance)));
    }
}

@keyframes obelix-scroll-x {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(calc(-1 * var(--obelix-scroll-distance)));
        transform: translateX(calc(-1 * var(--obelix-scroll-distance)));
    }
}

@-webkit-keyframes obelix-scroll-y {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(calc(-1 * var(--obelix-scroll-distance)));
        transform: translateY(calc(-1 * var(--obelix-scroll-distance)));
    }
}

@keyframes obelix-scroll-y {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(calc(-1 * var(--obelix-scroll-distance)));
        transform: translateY(calc(-1 * var(--obelix-scroll-distance)));
    }
}

@-webkit-keyframes fade {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes fade {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* Wrapper Styles */
.obelix-marquee-wrapper .obelix-marquee-group {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    gap: var(--marquee-gap);
    white-space: nowrap;
    -webkit-animation: obelix-scroll-x var(--obelix-duration) linear infinite;
    animation: obelix-scroll-x var(--obelix-duration) linear infinite;
}

.obelix-marquee.is-vertical .obelix-marquee-group {
    -webkit-animation-name: obelix-scroll-y;
    animation-name: obelix-scroll-y;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.obelix-marquee-wrapper .is-vertical.v-align-left .obelix-marquee-group {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: left;
}

.obelix-marquee-wrapper .is-vertical.v-align-right .obelix-marquee-group {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    text-align: right;
}

.obelix-marquee-wrapper .obelix-marquee.reverse .obelix-marquee-group {
    animation-direction: reverse;
    -webkit-animation-delay: -3s;
    animation-delay: -3s;
}

/* Text effect */
.obelix-marquee-wrapper .stroke .obelix-scroll-text.odd {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px;
}

.obelix-marquee-wrapper .gold .obelix-scroll-text {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(18%, #dec58d), color-stop(24%, #d8c08c), color-stop(26%, #cfc09f), color-stop(27%, #cfc09f), color-stop(40%, #ffecb3), color-stop(78%, #af8734));
    background: -o-linear-gradient(top, #dec58d 18%, #d8c08c 24%, #cfc09f 26%, #cfc09f 27%, #ffecb3 40%, #af8734 78%);
    background: linear-gradient(to bottom, #dec58d 18%, #d8c08c 24%, #cfc09f 26%, #cfc09f 27%, #ffecb3 40%, #af8734 78%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #fff;
    position: relative;
}

.obelix-marquee-wrapper .is-vertical.v-align-left {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.obelix-marquee-wrapper .is-vertical.v-align-right {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.obelix-marquee-wrapper .is-vertical.v-align-left .obelix-scroll-text {
    text-align: left;
}

.obelix-marquee-wrapper .is-vertical.v-align-right .obelix-scroll-text {
    text-align: right;
}

/* Shadow */
.obelix-marquee-wrapper .obelix-marquee.has-shadow::before, .obelix-marquee-wrapper .obelix-marquee.has-shadow::after {
    position: absolute;
    content: "";
    z-index: 1;
    pointer-events: none;
}

.obelix-marquee-wrapper .has-shadow.is-vertical::before, .obelix-marquee-wrapper .has-shadow.is-vertical::after {
    width: 100%;
    height: var(--shadow-width, 20%);
}

.obelix-marquee-wrapper .has-shadow.is-horizontal::before, .obelix-marquee-wrapper .has-shadow.is-horizontal::after {
    height: 100%;
    width: var(--shadow-width, 20%);
}

.obelix-marquee-wrapper .has-shadow.is-vertical::before {
    bottom: 0;
    left: 0;
    background-image: -webkit-gradient(linear, left bottom, left top, from(var(--shadow-color, #fff)), to(rgba(255, 255, 255, 0)));
    background-image: -o-linear-gradient(bottom, var(--shadow-color, #fff), rgba(255, 255, 255, 0));
    background-image: linear-gradient(to top, var(--shadow-color, #fff), rgba(255, 255, 255, 0));
}

.obelix-marquee-wrapper .has-shadow.is-vertical::after {
    top: 0;
    left: 0;
    background-image: -webkit-gradient(linear, left top, left bottom, from(var(--shadow-color, #fff)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(top, var(--shadow-color, #fff), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to bottom, var(--shadow-color, #fff), rgba(0, 0, 0, 0));
}

.obelix-marquee-wrapper .has-shadow.is-horizontal::before {
    left: 0;
    top: 0;
    bottom: 0;
    background-image: -webkit-gradient(linear, left top, right top, from(var(--shadow-color, #fff)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(left, var(--shadow-color, #fff), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to right, var(--shadow-color, #fff), rgba(0, 0, 0, 0));
}

.obelix-marquee-wrapper .has-shadow.is-horizontal::after {
    right: 0;
    top: 0;
    bottom: 0;
    background-image: -webkit-gradient(linear, right top, left top, from(var(--shadow-color, #fff)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(right, var(--shadow-color, #fff), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to left, var(--shadow-color, #fff), rgba(0, 0, 0, 0));
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .obelix-marquee-wrapper .obelix-marquee-group {
        -webkit-animation-play-state: paused;
        animation-play-state: paused;
    }
}

/* End UX BUilder Marquee */
/*
* Element Name: Dropdown Menu Three
*/
@media (min-width: 850px) {
    header#header .header-inner .flex-col.hide-for-medium, header#header .header-nav.header-nav-main, header#header .header-nav.header-nav-main > li {
        height: 100%;
    }

    header#header .header-nav.header-nav-main > li > a {
        height: 100%;
        padding-top: 0;
        padding-bottom: 0;
    }

    header#header .header-nav.header-nav-main > li > a:hover, header#header .header-nav.header-nav-main > li.active > a {
        color: var(--fs-color-primary);
    }

    /* All submenu style */
    header#header ul.sub-menu, header#header .nav-dropdown {
        position: absolute;
        left: 0;
        right: 0;
        top: auto;
        margin: 0;
        padding: 0;
        display: none!important;
        min-width: 215px;
        background: white;
        border: 1px solid rgba(13, 23, 32, 0.0784313725);
        text-align: left;
        -webkit-box-shadow: none;
                box-shadow: none;
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
    }

    header#header .nav-right .nav-dropdown {
        left: auto;
        right: auto;
        -webkit-transition: opacity .25s,visibility .25s;
        -o-transition: opacity .25s,visibility .25s;
        transition: opacity .25s,visibility .25s;
    }

    header#header .header-search-dropdown .header-search-form {
        padding: .6em .8em!important;
    }

    header#header .nav-right .current-dropdown .nav-dropdown {
        -webkit-transition-property: opacity, -webkit-transform;
        transition-property: opacity, -webkit-transform;
        -o-transition-property: opacity, transform;
        transition-property: opacity, transform;
        transition-property: opacity, transform, -webkit-transform;
    }

    /* Submenu on hover, active */
    header#header .current-dropdown > .nav-dropdown, header#header .nav-dropdown li:hover > ul.sub-menu {
        display: block!important;
        -webkit-animation: -menu-fade-up 0.45s linear;
                animation: -menu-fade-up 0.45s linear;
    }

    @-webkit-keyframes -menu-fade-up {
        0% {
            opacity: 0;
            -webkit-transform: translateY(10px);
                    transform: translateY(10px);
            visibility: hidden;
        }

        100% {
            opacity: 1;
            -webkit-transform: translateY(0px);
                    transform: translateY(0px);
            visibility: visible;
        }
    }

    @keyframes -menu-fade-up {
        0% {
            opacity: 0;
            -webkit-transform: translateY(10px);
                    transform: translateY(10px);
            visibility: hidden;
        }

        100% {
            opacity: 1;
            -webkit-transform: translateY(0px);
                    transform: translateY(0px);
            visibility: visible;
        }
    }

    header#header .nav-dropdown ul.sub-menu {
        position: absolute;
        left: 100%;
        top: -1px;
        min-width: 180px;
    }

    header#header .nav-dropdown li {
        color: var(--obelix-header-color, #161618);
        white-space: normal;
        width: 100%;
        display: block;
        position: relative;
        margin: 0!important;
        border: none;
        width: auto;
    }

    header#header .nav-dropdown li:hover {
        color: var(--fs-color-primary);
    }

    header#header .nav-dropdown a {
        display: block;
        padding: .8rem 1.6rem;
        margin: 0!important;
        text-transform: unset;
        font-size: .9rem;
        line-height: 1.4;
        -webkit-transition: all 0.4s ease-out 0s;
        -o-transition: all 0.4s ease-out 0s;
        transition: all 0.4s ease-out 0s;
        position: relative;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid rgba(13, 23, 32, 0.0784313725);
        color: var(--obelix-header-color);
    }

    header#header .nav-dropdown a::before {
        content: "";
        position: absolute;
        bottom: -1px;
        left: 0;
        background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(var(--fs-color-primary)), to(#fff));
        background: -o-linear-gradient(left, #fff, var(--fs-color-primary), #fff);
        background: linear-gradient(90deg, #fff, var(--fs-color-primary), #fff);
        width: 100%;
        height: 1px;
        -webkit-transform: scaleX(0);
            -ms-transform: scaleX(0);
                transform: scaleX(0);
        -webkit-transform-origin: left;
            -ms-transform-origin: left;
                transform-origin: left;
        -webkit-transition: 0.4s ease-in;
        -o-transition: 0.4s ease-in;
        transition: 0.4s ease-in;
        z-index: 1;
    }

    header#header .nav-dropdown a:hover::before {
        -webkit-transform: scale(1);
            -ms-transform: scale(1);
                transform: scale(1);
    }

    /* Has submenu icon */
    header#header .nav-dropdown li.menu-item-has-children > a {
        text-transform: unset;
        font-weight: unset;
        padding-right: 2.2rem;
    }

    header#header .nav-dropdown li.menu-item-has-children > a::after {
        font-family: 'fl-icons';
        content: '\f105';
        position: absolute;
        right: 10px;
        top: 50%;
        -webkit-transform: translateY(-44%);
        -ms-transform: translateY(-44%);
        transform: translateY(-44%);
        font-weight: lighter;
    }

    /* Text hover style */
    header#header ul.sub-menu a:hover, header#header .nav-dropdown li.active>a {
        text-transform: none;
        color: var(--fs-color-primary);
    }
}

.nav-vertical li li.menu-item-has-children>a, .nav-vertical li .children > li > a {
    font-weight: bold;
}
/* Mobile menu */
.off-canvas-left .mfp-content, .off-canvas-right .mfp-content {
    background: #fff;
    border-right: 1px solid #eee;
    -webkit-transition: -webkit-transform 0.3s ease-in;
    transition: -webkit-transform 0.3s ease-in;
    -o-transition: transform 0.3s ease-in;
    transition: transform 0.3s ease-in;
    transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
    -webkit-box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.03);
            box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.03);
}

.mfp-wrap.off-canvas-left .mfp-close {
    border-radius: 50%;
    opacity: 1;
    right: 1rem;
    top: 1rem;
    background: var(--obelix-header-color, black);
}

.mfp-wrap.off-canvas-left .mfp-close svg {
    stroke-width: 1px;
}

@media screen and (max-width: 849px) {
    /* Hide scollbar */ .off-canvas-left .mfp-content {
        -ms-overflow-style: none;
        /* Internet Explorer 10+ */
        scrollbar-width: none;
        /* Firefox */
    }

    .off-canvas-left .mfp-content::-webkit-scrollbar {
        display: none;
        /* Safari and Chrome */
    }

    .mobile-sidebar .nav-sidebar.nav-vertical>li.menu-item.active, .mobile-sidebar .nav-sidebar.nav-vertical>li.menu-item:hover {
        background-color: unset;
    }

    .mobile-sidebar .nav-sidebar.nav-vertical>li+li {
        border: none;
    }

    .mobile-sidebar .nav-sidebar.nav-vertical .children {
        padding-bottom: .4rem;
        padding-right: 20px;
        margin-top: -.4rem;
    }

    .mobile-sidebar .sidebar-menu a {
        color: var(--obelix-header-color);
        font-size: 1.05rem;
    }

    .mobile-sidebar .sidebar-menu li li.menu-item-has-children > .sub-menu li:last-child a::before, .mobile-sidebar .sidebar-menu li li.menu-item-has-children > .sub-menu li:first-child a::before {
        content: "";
        position: absolute;
        bottom: -1px;
        left: 0;
        background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(var(--fs-color-primary)), to(#fff));
        background: -o-linear-gradient(left, #fff, var(--fs-color-primary), #fff);
        background: linear-gradient(90deg, #fff, var(--fs-color-primary), #fff);
        width: 100%;
        height: 1px;
        -webkit-transform: scaleX(0);
            -ms-transform: scaleX(0);
                transform: scaleX(0);
        -webkit-transform-origin: left;
            -ms-transform-origin: left;
                transform-origin: left;
        -webkit-transition: 0.4s ease-in;
        -o-transition: 0.4s ease-in;
        transition: 0.4s ease-in;
        -webkit-transition-delay: .1s;
             -o-transition-delay: .1s;
                transition-delay: .1s;
        z-index: 1;
    }

    .mobile-sidebar .sidebar-menu li.menu-item-has-children > .sub-menu li:first-child a::before {
        top: 0px;
    }

    .mobile-sidebar .sidebar-menu .active>a {
        color: var(--fs-color-primary);
        border-color: transparent;
    }

    .mobile-sidebar .sidebar-menu .active > .sub-menu a::before {
        -webkit-transform: scaleX(1)!important;
            -ms-transform: scaleX(1)!important;
                transform: scaleX(1)!important;
    }

    .mobile-sidebar .sidebar-menu .toggle {
        --toggle-line-width: 11px;
        --toggle-color: var(--obelix-header-color, #161618);
    }

    .mobile-sidebar .sidebar-menu .active>.toggle {
        -webkit-transform: none;
            -ms-transform: none;
                transform: none;
        --toggle-color: var(--fs-color-primary);
    }

    .mobile-sidebar .sidebar-menu .toggle i {
        position: relative;
    }

    .mobile-sidebar .sidebar-menu .toggle i::before, .sidebar-menu .toggle i::after {
        content: "";
        position: absolute;
        height: var(--toggle-line-width);
        width: 2px;
        top: calc(50% - var(--toggle-line-width) / 2);
        left: calc(50% - 1px);
        border-radius: 2px;
        background-color: var(--toggle-color);
        -webkit-transition: -webkit-transform 0.3s ease;
        transition: -webkit-transform 0.3s ease;
        -o-transition: transform 0.3s ease;
        transition: transform 0.3s ease;
        transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    }

    .mobile-sidebar .sidebar-menu .toggle i::after {
        width: var(--toggle-line-width);
        height: 2px;
        top: calc(50% - 1px);
        left: calc(50% - var(--toggle-line-width) / 2);
    }

    .mobile-sidebar .sidebar-menu .active>.toggle i::before {
        -webkit-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
                transform: rotate(90deg);
    }

    /* Child sub menu */
    .mobile-sidebar li li.menu-item-has-children:not(:first-child) {
        margin-top: 0;
    }

    .off-canvas:not(.off-canvas-center) .nav-vertical li li {
        padding-left: 1rem;
        margin: 0;
        position: relative;
    }

    s.off-canvas:not(.off-canvas-center) .nav-vertical li a {
        padding-left: 0;
        padding-right: 0;
    }

    .mobile-sidebar .nav-vertical li li.menu-item-has-children>a {
        letter-spacing: 0;
        text-transform: unset;
    }

    .mobile-sidebar .nav-vertical>li>ul li a {
        display: block;
        padding-top: .8rem;
        padding-bottom: .8rem;
        padding-left: 0!important;
        margin: 0 0 0 1rem!important;
        text-transform: unset;
        font-size: .9rem;
        line-height: 1.4;
        -webkit-transition: all 0.4s ease-out 0s;
        -o-transition: all 0.4s ease-out 0s;
        transition: all 0.4s ease-out 0s;
        position: relative;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid rgba(13, 23, 32, 0.0784313725);
    }

    .mobile-sidebar .nav-vertical li li:last-child a {
        border: none;
    }

    /* Child Toggle */
    .mobile-sidebar .nav-vertical .obelix-mobile-has-toggle {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-flow: row wrap;
                flex-flow: row wrap;
    }

    .mobile-sidebar .nav-vertical .obelix-mobile-has-toggle .toggle {
        margin: 0;
        right: -16px;
        position: absolute;
        top: 0;
        height: 46px;
        opacity: 1;
    }

    .mobile-sidebar .nav-vertical li li li a::after {
        content: "";
        display: inline-block;
        position: absolute;
        bottom: 50%;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
        left: -.7em;
        background: black;
        width: 4px;
        height: 1px;
        -webkit-transition: 0.4s ease-in;
        -o-transition: 0.4s ease-in;
        transition: 0.4s ease-in;
        z-index: 1;
    }

    .mobile-sidebar .nav-vertical li li li.active > a::after {
        background: var(--fs-color-primary);
    }
}

/**** End Dropdown Menu Three ****/

/**** Page Price ****/

@keyframes fadeDown{from{opacity:0;transform:translateY(-14px)}to{opacity:1;transform:none}}
@keyframes fadeUp{from{opacity:0;transform:translateY(22px)}to{opacity:1;transform:none}}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.4;transform:scale(.7)}}
@keyframes gridMove{to{transform:translateY(56px)}}
@keyframes ob1{0%,100%{transform:translate(0,0)}50%{transform:translate(26px,-16px)}}
@keyframes ob2{0%,100%{transform:translate(0,0)}50%{transform:translate(-16px,22px)}}

/* HERO */
.price-hero{padding:136px 5% 72px;background:var(--navy);position:relative;overflow:hidden;text-align:center}
.hero-grid{position:absolute;inset:0;background-image:linear-gradient(rgba(26,86,232,.07) 1px,transparent 1px),linear-gradient(90deg,rgba(26,86,232,.07) 1px,transparent 1px);background-size:56px 56px;animation:gridMove 22s linear infinite}
.orb{position:absolute;border-radius:50%;filter:blur(80px);pointer-events:none}
.orb1{width:480px;height:480px;background:radial-gradient(circle,rgba(26,86,232,.28) 0%,transparent 70%);top:-100px;left:-60px;animation:ob1 9s ease-in-out infinite}
.orb2{width:360px;height:360px;background:radial-gradient(circle,rgba(0,194,224,.2) 0%,transparent 70%);bottom:-60px;right:-40px;animation:ob2 11s ease-in-out infinite}
.hero-inner{position:relative;z-index:2}
.hero-badge{display:inline-flex;align-items:center;gap:7px;background:rgba(26,86,232,.2);border:1px solid rgba(26,86,232,.4);border-radius:100px;padding:5px 14px;font-size:.72rem;font-weight:700;letter-spacing:1px;text-transform:uppercase;color:#7eb3ff;margin-bottom:22px;animation:fadeUp .6s .1s ease both}
.bdot{width:5px;height:5px;border-radius:50%;background:var(--cyan);animation:pulse 2s infinite}
.price-hero h1{font-family:var(--fh);font-size:clamp(2.4rem,5vw,4rem);font-weight:800;letter-spacing:-1.5px;line-height:1.1;color:#fff;margin-bottom:16px;animation:fadeUp .6s .25s ease both}
.price-hero h1 span{background:linear-gradient(135deg,var(--blue-lt),var(--cyan));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.price-hero p{font-size:1rem;color:rgba(255,255,255,.55);max-width:480px;margin:0 auto 36px;animation:fadeUp .6s .4s ease both}

/* 
.price-hero{padding:136px 5% 72px;background:var(--navy);position:relative;overflow:hidden;text-align:center}
.hero-grid{position:absolute;inset:0;background-image:linear-gradient(rgba(26,86,232,.07) 1px,transparent 1px),linear-gradient(90deg,rgba(26,86,232,.07) 1px,transparent 1px);background-size:56px 56px;animation:gridMove 22s linear infinite}
.orb{position:absolute;border-radius:50%;filter:blur(80px);pointer-events:none}
.orb1{width:480px;height:480px;background:radial-gradient(circle,rgba(26,86,232,.28) 0%,transparent 70%);top:-100px;left:-60px;animation:ob1 9s ease-in-out infinite}
.orb2{width:360px;height:360px;background:radial-gradient(circle,rgba(0,194,224,.2) 0%,transparent 70%);bottom:-60px;right:-40px;animation:ob2 11s ease-in-out infinite}
.hero-inner{position:relative;z-index:2}
.hero-badge{display:inline-flex;align-items:center;gap:7px;background:rgba(26,86,232,.2);border:1px solid rgba(26,86,232,.4);border-radius:100px;padding:5px 14px;font-size:.72rem;font-weight:700;letter-spacing:1px;text-transform:uppercase;color:#7eb3ff;margin-bottom:22px;animation:fadeUp .6s .1s ease both}
.bdot{width:5px;height:5px;border-radius:50%;background:var(--cyan);animation:pulse 2s infinite}
.price-hero h1{font-family:var(--fh);font-size:clamp(2.4rem,5vw,4rem);font-weight:800;letter-spacing:-1.5px;line-height:1.1;color:#fff;margin:0 0 16px;animation:fadeUp .6s .25s ease both}
.price-hero h1 span{background:linear-gradient(135deg,var(--blue-lt),var(--cyan));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.price-hero p{font-size:1rem;color:rgba(255,255,255,.55);max-width:480px;margin:0 auto 36px;animation:fadeUp .6s .4s ease both}
 */

/* .billing-toggle{display:inline-flex;align-items:center;gap:14px;animation:fadeUp .6s .55s ease both}
.toggle-label{font-size:.875rem;font-weight:500;color:rgba(255,255,255,.5);transition:color .2s}
.toggle-label.on{color:#fff;font-weight:600}
.toggle-track{width:52px;height:28px;background:rgba(255,255,255,.15);border:1px solid rgba(255,255,255,.25);border-radius:100px;position:relative;cursor:pointer;transition:background .25s}
.toggle-track.active{background:var(--blue)}
.toggle-thumb{position:absolute;top:3px;left:3px;width:20px;height:20px;border-radius:50%;background:#fff;transition:transform .25s;box-shadow:0 1px 4px rgba(0,0,0,.2)}
.toggle-track.active .toggle-thumb{transform:translateX(24px)}
.save-badge{background:rgba(0,229,160,.2);border:1px solid rgba(0,229,160,.35);color:var(--mint);font-size:.7rem;font-weight:700;letter-spacing:.5px;padding:3px 10px;border-radius:100px} */

/* BILLING TOGGLE */
.billing-toggle{display:inline-flex;align-items:center;gap:14px;animation:fadeUp .6s .55s ease both}
.toggle-label{font-size:.875rem;font-weight:500;color:rgba(255,255,255,.5);transition:color .2s}
.toggle-label.on{color:#fff;font-weight:600}
.toggle-track{width:52px;height:28px;background:rgba(255,255,255,.15);border:1px solid rgba(255,255,255,.25);border-radius:100px;position:relative;cursor:pointer;transition:background .25s}
.toggle-track.active{background:var(--blue)}
.toggle-thumb{position:absolute;top:3px;left:3px;width:20px;height:20px;border-radius:50%;background:#fff;transition:transform .25s;box-shadow:0 1px 4px rgba(0,0,0,.2)}
.toggle-track.active .toggle-thumb{transform:translateX(24px)}
.save-badge{background:rgba(0,229,160,.2);border:1px solid rgba(0,229,160,.35);color:var(--mint);font-size:.7rem;font-weight:700;letter-spacing:.5px;padding:3px 10px;border-radius:100px}

/* PRICING CARDS */
.pricing-section{padding:72px 5% 96px;background:var(--gray)}
.cards-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;max-width:1180px;margin:0 auto}
.p-card{background:var(--white);border:1.5px solid var(--border);border-radius:22px;padding:32px;position:relative;transition:transform .25s,box-shadow .25s;display:flex;flex-direction:column}
.p-card:hover{transform:translateY(-4px);box-shadow:0 24px 60px rgba(26,86,232,.1)}
.p-card.featured{border-color:var(--blue);box-shadow:0 0 0 4px rgba(26,86,232,.08),0 24px 60px rgba(26,86,232,.12)}
.popular-badge{position:absolute;top:-14px;left:50%;transform:translateX(-50%);background:var(--blue);color:#fff;font-size:.72rem;font-weight:700;letter-spacing:.5px;text-transform:uppercase;padding:5px 16px;border-radius:100px;white-space:nowrap}
.plan-icon{width:44px;height:44px;border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:1.2rem;margin-bottom:16px}
.plan-name{font-family:var(--fh);font-size:.82rem;font-weight:700;letter-spacing:1px;text-transform:uppercase;color:var(--text2);margin-bottom:8px}
.plan-price{display:flex;align-items:flex-end;gap:4px;margin-bottom:4px;line-height:1}
.price-curr{font-size:1.1rem;font-weight:700;color:var(--text);margin-bottom:6px}
.price-num{font-family:var(--fh);font-size:2.8rem;font-weight:800;color:var(--text);letter-spacing:-1.5px}
.price-num.contact{font-size:1.8rem;letter-spacing:-.5px;margin-bottom:8px}
.price-per{font-size:.82rem;color:var(--text2);margin-bottom:6px}
.price-orig{font-size:.78rem;color:var(--text2);text-decoration:line-through}
.price-save{font-size:.72rem;font-weight:600;color:#00a870;background:rgba(0,168,112,.1);padding:2px 8px;border-radius:100px;display:inline-block;margin-top:3px}
.plan-desc{font-size:.84rem;color:var(--text2);line-height:1.6;margin:14px 0;padding-bottom:16px;border-bottom:1px solid var(--border)}
.plan-target{font-size:.78rem;font-weight:600;color:var(--text);margin-bottom:16px;display:flex;align-items:center;gap:7px}
.plan-target::before{content:'👤';font-size:.9rem}
.feat-list{list-style:none;margin-bottom:24px;flex:1}
.feat-li{display:flex;align-items:flex-start;gap:10px;padding:7px 0;border-bottom:1px solid rgba(26,86,232,.05);font-size:.84rem;color:var(--text)}
.feat-li:last-child{border-bottom:none}
.feat-li.no{color:var(--text2)}
.fi-check{width:18px;height:18px;border-radius:5px;flex-shrink:0;display:flex;align-items:center;justify-content:center;font-size:.62rem;font-weight:700;margin-top:1px}
.fi-yes{background:rgba(26,86,232,.1);color:var(--blue)}
.fi-no{background:rgba(90,100,128,.07);color:var(--text2)}

/* ── TOOLTIP ── */
.tt-wrap{position:relative;display:inline-flex;align-items:center;margin-left:auto;padding-left:6px;flex-shrink:0}
.tt-icon{width:16px;height:16px;border-radius:50%;border:1px solid var(--border);display:flex;align-items:center;justify-content:center;font-size:.6rem;font-weight:700;color:var(--text2);cursor:default;transition:border-color .15s,color .15s;line-height:1;user-select:none;flex-shrink:0}
.tt-wrap:hover .tt-icon{border-color:var(--blue);color:var(--blue)}
.tt-box{
  position:absolute;right:calc(100% + 10px);top:50%;
  transform:translateY(-50%) translateX(4px);
  background:var(--white);border:1px solid var(--border);border-radius:12px;
  padding:13px 15px;width:230px;
  opacity:0;pointer-events:none;
  transition:opacity .18s,transform .18s;
  z-index:200;box-shadow:0 8px 28px rgba(10,22,40,.12);
}
.tt-wrap:hover .tt-box{opacity:1;pointer-events:auto;transform:translateY(-50%) translateX(0)}
.tt-arrow{position:absolute;right:-5px;top:50%;width:8px;height:8px;background:var(--white);border-right:1px solid var(--border);border-top:1px solid var(--border);transform:translateY(-50%) rotate(45deg)}
.tt-title{font-size:.8rem;font-weight:700;color:var(--text);margin-bottom:5px}
.tt-desc{font-size:.78rem;color:var(--text2);line-height:1.6}
.tt-tags{display:flex;flex-wrap:wrap;gap:4px;margin-top:8px}
.tt-tag{font-size:.68rem;font-weight:600;padding:2px 8px;border-radius:100px;background:rgba(26,86,232,.07);color:var(--blue)}
.tt-tag.dim{background:rgba(90,100,128,.08);color:var(--text2)}
.feat-li{position:relative}
.plan-btn{width:100%;padding:13px;border-radius:11px;font-family:var(--fb);font-size:.9rem;font-weight:600;cursor:pointer;transition:all .2s;margin-top:auto;text-align: center;}
.btn-outline{background:none;border:1.5px solid var(--border);color:var(--text)}
.btn-outline:hover{border-color:var(--blue);color:var(--blue)}
.btn-fill{background:var(--blue);border:none;color:#fff}
.btn-fill:hover{background:var(--blue-lt);transform:translateY(-1px)}
.btn-navy{background:var(--navy);border:none;color:#fff}
.btn-navy:hover{background:var(--navy2)}
.limit-note{font-size:.72rem;color:var(--text2);text-align:center;margin-top:10px}

/* TRUST STRIP */
.trust-strip{background:var(--white);padding:32px 5%;display:flex;align-items:center;justify-content:center;gap:40px;flex-wrap:wrap;border-bottom:1px solid var(--border)}
.trust-item{display:flex;align-items:center;gap:9px;font-size:.82rem;color:var(--text2)}
.trust-icon{width:30px;height:30px;border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:.85rem;background:var(--gray);flex-shrink:0}


/* .pricing-section{padding:72px 5% 96px;background:var(--gray)}
.cards-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;max-width:1180px;margin:0 auto}
.p-card{background:var(--white);border:1.5px solid var(--border);border-radius:22px;padding:32px;position:relative;transition:transform .25s,box-shadow .25s;display:flex;flex-direction:column}
.p-card:hover{transform:translateY(-4px);box-shadow:0 24px 60px rgba(26,86,232,.1)}
.p-card.featured{border-color:var(--blue);box-shadow:0 0 0 4px rgba(26,86,232,.08),0 24px 60px rgba(26,86,232,.12)}
.popular-badge{position:absolute;top:-14px;left:50%;transform:translateX(-50%);background:var(--blue);color:#fff;font-size:.72rem;font-weight:700;letter-spacing:.5px;text-transform:uppercase;padding:5px 16px;border-radius:100px;white-space:nowrap}
.plan-icon{width:44px;height:44px;border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:1.2rem;margin-bottom:16px}
.plan-name{font-family:var(--fh);font-size:.82rem;font-weight:700;letter-spacing:1px;text-transform:uppercase;color:var(--text2);margin-bottom:8px}
.plan-price{display:flex;align-items:flex-end;gap:4px;margin-bottom:4px;line-height:1}
.price-curr{font-size:1.1rem;font-weight:700;color:var(--text);margin-bottom:6px}
.price-num{font-family:var(--fh);font-size:2.8rem;font-weight:800;color:var(--text);letter-spacing:-1.5px}
.price-num.contact{font-size:1.8rem;letter-spacing:-.5px;margin-bottom:8px}
.price-per{font-size:.82rem;color:var(--text2);margin-bottom:6px}
.price-orig{font-size:.78rem;color:var(--text2);text-decoration:line-through}
.price-save{font-size:.72rem;font-weight:600;color:#00a870;background:rgba(0,168,112,.1);padding:2px 8px;border-radius:100px;display:inline-block;margin-top:3px}
.plan-desc{font-size:.84rem;color:var(--text2);line-height:1.6;margin:14px 0;padding-bottom:16px;border-bottom:1px solid var(--border)}
.plan-target{font-size:.78rem;font-weight:600;color:var(--text);margin-bottom:16px;display:flex;align-items:center;gap:7px}
.plan-target:before{content:"👤";font-size:.9rem}
.feat-list{list-style:none;margin:0 0 24px;padding:0;flex:1}
.feat-li{display:flex;align-items:flex-start;gap:10px;padding:7px 0;border-bottom:1px solid rgba(26,86,232,.05);font-size:.84rem;color:var(--text)}
.feat-li:last-child{border-bottom:none}
.feat-li.no{color:var(--text2)}
.fi-check{width:18px;height:18px;border-radius:5px;flex-shrink:0;display:flex;align-items:center;justify-content:center;font-size:.62rem;font-weight:700;margin-top:1px}
.fi-yes{background:rgba(26,86,232,.1);color:var(--blue)}
.fi-no{background:rgba(90,100,128,.07);color:var(--text2)} */


/* .plan-btn{width:100%;padding:13px;border-radius:11px;font-size:.9rem;font-weight:600;margin-top:auto;text-align: center;}
.btn-outline{background:none;border:1.5px solid var(--border);color:var(--text)}
.btn-outline:hover{border-color:var(--blue);color:var(--blue)}
.btn-fill{background:var(--blue);border:none;color:#fff}
.btn-navy{background:var(--navy);border:none;color:#fff}
.btn-navy:hover{background:var(--navy2)}
.limit-note{font-size:.72rem;color:var(--text2);text-align:center;margin-top:10px} */

/* .trust-strip{background:var(--white);padding:32px 5%;display:flex;align-items:center;justify-content:center;gap:40px;flex-wrap:wrap;border-bottom:1px solid var(--border)}
.trust-item{display:flex;align-items:center;gap:9px;font-size:.82rem;color:var(--text2)}
.trust-icon{width:30px;height:30px;border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:.85rem;background:var(--gray);flex-shrink:0} */

/* .compare-section,.faq-section{padding:96px 5%;background:var(--white)}
.sec-label{font-size:.72rem;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:var(--blue);display:block;margin-bottom:10px}
.sec-h2{font-family:var(--fh);font-size:clamp(1.8rem,3.5vw,2.6rem);font-weight:700;letter-spacing:-.5px;line-height:1.2;color:var(--text);margin:0}
.compare-scroll{overflow-x:auto;-webkit-overflow-scrolling:touch}
.compare-table{width:100%;padding: 10px 0;border-collapse:separate;border-spacing:0;min-width:580px;border: none;}
.compare-table td:first-child, th:first-child {position: sticky;left: 0;background: #fff;z-index: 2;}
.compare-table tbody td:first-child, tbody th:first-child {border-right: 1px solid var(--border);}
.ct-head th{padding:18px 18px 14px;vertical-align:bottom;border-bottom:2px solid var(--border)}
.ct-head th:first-child{text-align:left;font-size:.68rem;font-weight:700;letter-spacing:1px;text-transform:uppercase;color:var(--text2);padding-left:0}
.ct-plan-col{text-align:center;min-width:130px}
.ct-plan-name{font-family:var(--fh);font-size:.78rem;font-weight:700;letter-spacing:1px;text-transform:uppercase;color:var(--text2);display:block;margin-bottom:4px}
.ct-plan-price{font-family:var(--fh);font-size:1.05rem;font-weight:800;color:var(--text);display:block}
.ct-plan-col.hi{background:rgba(26,86,232,.04);border-radius:12px 12px 0 0;border:1.5px solid rgba(26,86,232,.2);border-bottom:none;position:relative}
.ct-plan-col.hi:after{content:"Phổ biến";position:absolute;top:-10px;left:50%;transform:translateX(-50%);background:var(--blue);color:#fff;font-size:.62rem;font-weight:700;letter-spacing:.5px;text-transform:uppercase;padding:3px 10px;border-radius:100px;white-space:nowrap}
.ct-group th{text-align:left;padding:10px 0 6px;font-size:.68rem;font-weight:700;letter-spacing:1px;text-transform:uppercase;color:var(--text2);background:var(--gray);border-top:1px solid var(--border)}
.ct-group td{background:var(--gray);border-top:1px solid var(--border);padding:10px 18px 6px}
.ct-row td{padding:10px 18px;font-size:.83rem;color:var(--text);border-bottom:1px solid rgba(26,86,232,.05);vertical-align:middle;text-align: center;}
.ct-row td:first-child{padding-left:0;font-weight:500;text-align: left;}
.ct-row.lgb td{border-bottom:2px solid var(--border)}
.ct-row td.hi-col{background:rgba(26,86,232,.03);border-left:1.5px solid rgba(26,86,232,.14);border-right:1.5px solid rgba(26,86,232,.14)} */

.ct-foot td{padding:14px 18px;text-align:center;border: none;}
.ct-foot td:first-child{padding-left:0;font-size:.8rem;color:var(--text2);text-align:left}
.ct-foot td.hi-col{background:rgba(26,86,232,.03);border:1.5px solid rgba(26,86,232,.2);border-top:none;border-radius:0 0 12px 12px}
.ct-btn{font-size:.8rem;font-weight:600;padding:9px 18px;border-radius:9px;width:100%;}
.chk{color:var(--blue);font-size:1rem;font-weight:700}
.dsh{color:rgba(26,86,232,.2)}
.val{font-weight:600;color:var(--text);display:block;text-align:center;font-size:.8rem}
.val-sub{font-size:.68rem;color:var(--text2);font-weight:400;display:block}

/* COMPARE TABLE */
.compare-section{padding:96px 5%;background:var(--white)}
.sec-label{font-size:.72rem;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:var(--blue);display:block;margin-bottom:10px}
.sec-h2{font-family:var(--fh);font-size:clamp(1.8rem,3.5vw,2.6rem);font-weight:700;letter-spacing:-.5px;line-height:1.2;color:var(--text);margin:0}
/* .compare-scroll{overflow-x:auto;-webkit-overflow-scrolling:touch} */
.compare-table{width:100%;padding: 10px 0;border-collapse:separate;border-spacing:0;min-width:580px;border: none;}
.compare-table td:first-child, th:first-child {position: sticky;left: 0;background: #fff !important;z-index: 2;}
.compare-table tbody td:first-child, tbody th:first-child {border-right: 1px solid var(--border);}
.ct-head th{padding:18px 18px 14px;vertical-align:bottom;border-bottom:2px solid var(--border)}
.ct-head th:first-child{text-align:left;font-size:.68rem;font-weight:700;letter-spacing:1px;text-transform:uppercase;color:var(--text2);padding-left:0}
.ct-plan-col{text-align:center;min-width:130px}
.ct-plan-name{font-family:var(--fh);font-size:.78rem;font-weight:700;letter-spacing:1px;text-transform:uppercase;color:var(--text2);display:block;margin-bottom:4px}
.ct-plan-price{font-family:var(--fh);font-size:1.05rem;font-weight:800;color:var(--text);display:block}
.ct-plan-col.hi{background:rgba(26,86,232,.04);border-radius:12px 12px 0 0;border:1.5px solid rgba(26,86,232,.2);border-bottom:none;position:relative}
.ct-plan-col.hi::after{content:'Phổ biến';position:absolute;top:-10px;left:50%;transform:translateX(-50%);background:var(--blue);color:#fff;font-size:.62rem;font-weight:700;letter-spacing:.5px;text-transform:uppercase;padding:3px 10px;border-radius:100px;white-space:nowrap}
.ct-group th{text-align:left;padding:10px 0 6px;font-size:.68rem;font-weight:700;letter-spacing:1px;text-transform:uppercase;color:var(--text2);background:var(--gray);border-top:1px solid var(--border)}
.ct-group td{background:var(--gray);border-top:1px solid var(--border);padding:10px 18px 6px}
.ct-row td{padding:10px 18px;font-size:.83rem;color:var(--text);border-bottom:1px solid rgba(26,86,232,.05);vertical-align:middle;text-align: center;}
.ct-row td:first-child{padding-left:0;font-weight:500;text-align: left;}
.ct-row.lgb td{border-bottom:2px solid var(--border)}
.ct-row td.hi-col{background:rgba(26,86,232,.03);border-left:1.5px solid rgba(26,86,232,.14);border-right:1.5px solid rgba(26,86,232,.14)}
.ct-row:hover td{background:rgba(26,86,232,.02)}
.ct-row:hover td.hi-col{background:rgba(26,86,232,.06)}
.ct-foot td{padding:14px 18px;text-align:center}
.ct-foot td:first-child{padding-left:0;font-size:.8rem;color:var(--text2);text-align:left}
.ct-foot td.hi-col{background:rgba(26,86,232,.03);border:1.5px solid rgba(26,86,232,.2);border-top:none;border-radius:0 0 12px 12px}
.ct-btn{font-family:var(--fb);font-size:.8rem;font-weight:600;padding:9px 18px;border-radius:9px;cursor:pointer;transition:all .2s;width:100%}
.chk{color:var(--blue);font-size:1rem;font-weight:700}
.dsh{color:rgba(26,86,232,.2)}
.val{font-weight:600;color:var(--text);display:block;text-align:center;font-size:.8rem}
.val-sub{font-size:.68rem;color:var(--text2);font-weight:400;display:block}

/* .addons-section,.testi-mini{padding:80px 5%;background:var(--gray)}
.addons-grid,.testi-row{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:44px}
.addon-card,.t-card{background:var(--white);border:1px solid var(--border);border-radius:16px;padding:24px;transition:transform .25s,box-shadow .25s,border-color .25s}
.addon-card:hover,.t-card:hover{transform:translateY(-3px);box-shadow:0 14px 36px rgba(26,86,232,.08)}
.addon-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:10px}
.addon-icon{width:38px;height:38px;border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:1rem}
.addon-price-tag{font-family:var(--fh);font-size:.85rem;font-weight:800;color:var(--blue)}
.addon-title{font-size:.92rem;font-weight:700;color:var(--text);margin-bottom:6px}
.addon-desc{font-size:.8rem;color:var(--text2);line-height:1.6} */

/* ADD-ONS */
.addons-section{padding:80px 5%;background:var(--gray)}
.addons-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:44px}
.addon-card{background:var(--white);border:1px solid var(--border);border-radius:16px;padding:22px;transition:transform .25s,box-shadow .25s,border-color .25s}
.addon-card:hover{transform:translateY(-3px);box-shadow:0 16px 40px rgba(26,86,232,.08);border-color:rgba(26,86,232,.25)}
.addon-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:10px}
.addon-icon{width:38px;height:38px;border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:1rem}
.addon-price-tag{font-family:var(--fh);font-size:.85rem;font-weight:800;color:var(--blue)}
.addon-title{font-size:.92rem;font-weight:700;color:var(--text);margin-bottom:6px}
.addon-desc{font-size:.8rem;color:var(--text2);line-height:1.6}

/* 
.faq-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:44px;max-width:960px;margin-left:auto;margin-right:auto}
.faq-item{background:var(--gray);border:1px solid var(--border);border-radius:14px;overflow:hidden}
.faq-q{display:flex;align-items:center;justify-content:space-between;padding:17px 18px;cursor:pointer;gap:12px}
.faq-q-text{font-size:.87rem;font-weight:600;color:var(--text);line-height:1.4}
.faq-chevron{width:20px;height:20px;border-radius:50%;background:var(--white);border:1px solid var(--border);display:flex;align-items:center;justify-content:center;font-size:.6rem;flex-shrink:0;transition:transform .25s;color:var(--blue)}
.faq-item.open .faq-chevron{transform:rotate(180deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .35s ease}
.faq-a-inner{padding:0 18px 16px;font-size:.83rem;color:var(--text2);line-height:1.7}
.faq-item.open .faq-a{max-height:260px} */

/* FAQ */
.faq-section{padding:96px 5%;background:var(--white)}
.faq-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:44px;max-width:960px;margin-left:auto;margin-right:auto}
.faq-item{background:var(--gray);border:1px solid var(--border);border-radius:14px;overflow:hidden}
.faq-q{display:flex;align-items:center;justify-content:space-between;padding:17px 18px;cursor:pointer;gap:12px;transition:background .2s}
.faq-q:hover{background:var(--gray2)}
.faq-q-text{font-size:.87rem;font-weight:600;color:var(--text);line-height:1.4}
.faq-chevron{width:20px;height:20px;border-radius:50%;background:var(--white);border:1px solid var(--border);display:flex;align-items:center;justify-content:center;font-size:.6rem;flex-shrink:0;transition:transform .25s;color:var(--blue)}
.faq-item.open .faq-chevron{transform:rotate(180deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .35s ease}
.faq-a-inner{padding:0 18px 16px;font-size:.83rem;color:var(--text2);line-height:1.7}
.faq-item.open .faq-a{max-height:260px}

/* 
.t-stars{color:#f59e0b;font-size:.82rem;margin-bottom:12px}
.t-quote{font-size:.87rem;color:var(--text);line-height:1.7;margin-bottom:18px;font-style:italic}
.t-quote:before{content:'"';font-size:2.2rem;color:var(--blue);line-height:0;vertical-align:-12px;opacity:.25;margin-right:4px}
.t-author{display:flex;align-items:center;gap:10px}
.t-av{width:38px;height:38px;border-radius:50%;flex-shrink:0;display:flex;align-items:center;justify-content:center;font-size:.78rem;font-weight:700;color:#fff}
.t-name{font-size:.85rem;font-weight:700;color:var(--text)}
.t-role{font-size:.73rem;color:var(--text2)}
.t-plan{display:inline-block;margin-top:3px;margin-left:3px;font-size:.66rem;font-weight:600;color:var(--blue);background:rgba(26,86,232,.07);padding:2px 7px;border-radius:100px}
 */
/* TESTIMONIALS */
.testi-mini{padding:80px 5%;background:var(--gray)}
.testi-row{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:44px}
.t-card{background:var(--white);border:1px solid var(--border);border-radius:16px;padding:24px;transition:transform .25s,box-shadow .25s}
.t-card:hover{transform:translateY(-3px);box-shadow:0 14px 36px rgba(26,86,232,.08)}
.t-stars{color:#f59e0b;font-size:.82rem;margin-bottom:12px}
.t-quote{font-size:.87rem;color:var(--text);line-height:1.7;margin-bottom:18px;font-style:italic}
.t-quote::before{content:'"';font-size:2.2rem;color:var(--blue);line-height:0;vertical-align:-12px;opacity:.25;margin-right:4px}
.t-author{display:flex;align-items:center;gap:10px}
.t-av{width:38px;height:38px;border-radius:50%;flex-shrink:0;display:flex;align-items:center;justify-content:center;font-size:.78rem;font-weight:700;color:#fff}
.t-name{font-size:.85rem;font-weight:700;color:var(--text)}
.t-role{font-size:.73rem;color:var(--text2)}
.t-plan{display:inline-block;margin-top:3px;margin-left:3px;font-size:.66rem;font-weight:600;color:var(--blue);background:rgba(26,86,232,.07);padding:2px 7px;border-radius:100px}

/* .ent-section{padding:80px 5%;background:var(--navy);position:relative;overflow:hidden}
.ent-section:before{content:"";position:absolute;inset:0;background:radial-gradient(ellipse at 20% 50%,rgba(26,86,232,.3) 0%,transparent 55%),radial-gradient(ellipse at 80% 50%,rgba(0,194,224,.15) 0%,transparent 55%)}
.ent-inner{position:relative;z-index:1;display:grid;grid-template-columns:1fr auto;gap:40px;align-items:center;max-width:960px;margin:0 auto}
.ent-title{font-family:var(--fh);font-size:clamp(1.5rem,2.5vw,2rem);font-weight:700;color:#fff;margin:0 0 10px;letter-spacing:-.5px}
.ent-sub{font-size:.92rem;color:rgba(255,255,255,.5);max-width:480px;line-height:1.7}
.ent-perks{display:flex;gap:18px;flex-wrap:wrap;margin-top:16px}
.ent-perk{display:flex;align-items:center;gap:6px;font-size:.78rem;color:rgba(255,255,255,.6)}
.ent-perk:before{content:"✓";color:var(--mint);font-weight:700}
.ent-btns{display:flex;flex-direction:column;gap:10px;min-width:170px}
.btn-ef{font-size:.88rem;font-weight:600;padding:12px 22px;border-radius:10px;border:none;background:var(--blue);color:#fff}
.btn-eg{font-size:.88rem;font-weight:600;padding:12px 22px;border-radius:10px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.2);color:#fff}
.btn-eg:hover{background:rgba(255,255,255,.15)} */

.reveal{opacity:0;transform:translateY(28px);transition:opacity .7s ease,transform .7s ease}
.reveal.visible{opacity:1;transform:none}

/* ENTERPRISE CTA */
.ent-section{padding:80px 5%;background:var(--navy);position:relative;overflow:hidden}
.ent-section::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 20% 50%,rgba(26,86,232,.3) 0%,transparent 55%),radial-gradient(ellipse at 80% 50%,rgba(0,194,224,.15) 0%,transparent 55%)}
.ent-inner{position:relative;z-index:1;display:grid;grid-template-columns:1fr auto;gap:40px;align-items:center;max-width:960px;margin:0 auto}
.ent-title{font-family:var(--fh);font-size:clamp(1.5rem,2.5vw,2rem);font-weight:700;color:#fff;margin-bottom:10px;letter-spacing:-.5px}
.ent-sub{font-size:.92rem;color:rgba(255,255,255,.5);max-width:480px;line-height:1.7}
.ent-perks{display:flex;gap:18px;flex-wrap:wrap;margin-top:16px}
.ent-perk{display:flex;align-items:center;gap:6px;font-size:.78rem;color:rgba(255,255,255,.6)}
.ent-perk::before{content:'✓';color:var(--mint);font-weight:700}
.ent-btns{display:flex;flex-direction:column;gap:10px;min-width:170px}
.btn-ef{font-family:var(--fb);font-size:.88rem;font-weight:600;padding:12px 22px;border-radius:10px;border:none;background:var(--blue);color:#fff;cursor:pointer;transition:all .2s;text-align:center}
.btn-ef:hover{background:var(--blue-lt)}
.btn-eg{font-family:var(--fb);font-size:.88rem;font-weight:600;padding:12px 22px;border-radius:10px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.2);color:#fff;cursor:pointer;transition:all .2s;text-align:center}
.btn-eg:hover{background:rgba(255,255,255,.15)}

/* ══════════════════════════
   TABLET  ≤ 1024px
══════════════════════════ */
@media(max-width:1024px){
  /* Pricing cards — 3 col hơi chật, giảm padding */
  .cards-grid{gap:14px}
  .p-card{padding:24px 20px}
  .price-num{font-size:2.3rem}
 
  /* Compare table */
  .compare-inner{overflow-x:auto}
  .ct-table{min-width:560px}
 
  /* Add-ons 2 cột */
  .addons-grid{grid-template-columns:repeat(2,1fr)}
 
  /* Proof band 2x2 */
  .proof-band .proof-inner{grid-template-columns:repeat(2,1fr)}
  .proof-band .proof-cell:nth-child(2){border-right:none}
  .proof-band .proof-cell:nth-child(3){border-top:1px solid rgba(255,255,255,.08)}
  .proof-band .proof-cell:nth-child(4){border-top:1px solid rgba(255,255,255,.08)}
 
  /* Testimonials 2+1 */
  .testi-row{grid-template-columns:repeat(2,1fr)}
  .testi-row .t-card:last-child{grid-column:span 2;max-width:460px;margin:0 auto}
 
  /* Enterprise */
  .ent-inner{grid-template-columns:1fr;gap:28px}
  .ent-btns{flex-direction:row}
}

/* ══════════════════════════
   MOBILE  ≤ 768px
══════════════════════════ */
@media(max-width:768px){
  /* Hero */
  .price-hero{padding:96px 5% 48px}
  .price-hero h1{font-size:clamp(1.9rem,7.5vw,2.6rem);letter-spacing:-1px}
  .price-hero p{font-size:.9rem}
  .hero-badge{font-size:.65rem;padding:4px 11px}
 
  /* Trust chips — dạng 2 cột grid gọn */
  .trust-chips{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
    max-width:360px;
    margin:0 auto 28px;
  }
  .trust-chip{
    font-size:.72rem;
    padding:7px 10px;
    justify-content:flex-start;
    border-radius:9px;
  }
 
  /* Billing toggle căn giữa, xuống hàng nhãn */
  .billing-toggle{gap:10px;flex-wrap:wrap;justify-content:center}
  .toggle-label{font-size:.82rem}
  .save-tag{font-size:.65rem;padding:3px 8px}
 
  /* Pricing section */
  .pricing-section{padding:0 5% 56px}
 
  /* Cards — 1 cột, featured lên đầu */
  .cards-grid{
     padding: 24px 5% 12px;
     scrollbar-width: none;
     grid-template-columns: 1fr;
     max-width: 440px;
     margin: 0 auto;
     gap: 28px;
     padding-top: 28px;
  }
  .p-card.featured{order:-1}
  .p-card{padding:24px 20px}
  .price-num{font-size:2.4rem}
  .feat-li{font-size:.82rem;padding:6px 0}
 
  /* Trust strip — scroll ngang trên mobile */
  .trust-strip{
    gap:0;
    padding:0;
    overflow-x:auto;
    flex-wrap:nowrap;
    justify-content:flex-start;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
  }
  .trust-strip::-webkit-scrollbar{display:none}
  .trust-item{
    font-size:.78rem;
    padding:14px 16px;
    white-space:nowrap;
    flex-shrink:0;
    border-right:1px solid var(--border);
  }
  .trust-item:last-child{border-right:none}
  .trust-icon{width:26px;height:26px;font-size:.78rem}
	
 /* @media(max-width:768px){.cards-grid,.addons-grid,.faq-grid,.testi-row,.ent-btns,.footer-bottom{flex-direction:column;align-items:stretch;display:flex;padding:10px;}} */
	

  /* Compare — scroll ngang với indicator */
  .compare-section{padding:56px 5%}
  .compare-inner{position:relative}
  .compare-scroll{overflow-x:auto;-webkit-overflow-scrolling:touch}
  .ct-table-wrap{
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    border-radius:12px;
    border:1px solid var(--border);
  }
  .ct-table-wrap::-webkit-scrollbar{height:4px}
  .ct-table-wrap::-webkit-scrollbar-thumb{background:rgba(26,86,232,.2);border-radius:2px}
  .ct-table{min-width:520px;border:none;border-radius:0}
  .ct-foot td{padding:10px}
  .compare-scroll-hint{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:.72rem;
    color:var(--text2);
    margin-bottom:10px;
  }
  .compare-scroll-hint::before{content:'←';font-size:.9rem}
  .compare-scroll-hint::after{content:'→';font-size:.9rem}
 
  /* Add-ons 1 cột */
  .addons-section{padding:56px 5%}
  .addons-grid{grid-template-columns:1fr;gap:12px}
  .addon-card{padding:18px}
  .addon-header{gap:8px}
  .addon-icon{width:36px;height:36px;font-size:1rem}
 
  /* Proof band 2x2 */
  .proof-band{padding:40px 5%}
  .proof-band .proof-inner{
    grid-template-columns:repeat(2,1fr);
    max-width:100%;
    border-radius:14px;
  }
  .proof-band .proof-cell{padding:24px 16px}
  .proof-band .proof-cell:nth-child(2){border-right:none}
  .proof-band .proof-cell:nth-child(3){border-top:1px solid rgba(255,255,255,.08)}
  .proof-band .proof-cell:nth-child(4){border-top:1px solid rgba(255,255,255,.08)}
  .proof-n{font-size:2rem}
  .proof-l{font-size:.74rem}
 
  /* CTA buttons trong card — full width mobile */
  .btn-plan{width:100%;text-align:center}
 
  /* Testimonials 1 cột */
  .testi-section{padding:56px 5%}
  .testi-row{grid-template-columns:1fr;gap:12px}
  .testi-row .t-card:last-child{grid-column:span 1;max-width:100%}
 
  /* FAQ 1 cột */
  .faq-section{padding:56px 5%}
  .faq-grid{grid-template-columns:1fr;gap:8px}
  .faq-q-text{font-size:.86rem}
  .faq-a-inner{font-size:.82rem}
 
  /* Enterprise 1 cột, padding nhỏ hơn */
  .ent-section{padding:56px 5%}
  .ent-inner{
    grid-template-columns:1fr;
    gap:24px;
  }
  .ent-btns{flex-direction:column;width:100%}
  .btn-ent{width:100%;font-size:.85rem;padding:12px}
 
  /* CTA bottom */
  .cta-section{padding:0 4% 56px}
  .cta-box{padding:44px 6%;border-radius:18px}
  .cta-title{font-size:clamp(1.5rem,6vw,2rem)}
  .cta-btns{flex-direction:column;align-items:center;gap:10px}
  .cta-btns button{width:100%;max-width:280px}
}

/* PATCH: bảng so sánh 5 gói */
.compare-scroll{
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:thin;
}
.compare-table{
  width:100%;
  min-width:980px; /* 1 cột tính năng + 5 cột gói */
  table-layout:fixed;
}
.compare-table th:first-child,
.compare-table td:first-child{
  width:32%;
  min-width:220px;
}
.ct-plan-col{
  min-width:136px;
}
.ct-head th{
  padding:18px 12px 14px;
}
.ct-row td,
.ct-group td,
.ct-foot td{
  padding-left:12px;
  padding-right:12px;
}
.ct-plan-name{
  font-size:.72rem;
}
.ct-plan-price{
  font-size:.95rem;
}

/* Nếu phần pricing cards phía trên cũng đổi thành 5 gói */
.cards-grid{
  grid-template-columns:repeat(5,minmax(0,1fr));
  max-width:1380px;
}
.p-card{
  padding:26px 20px;
}
.price-num{
  font-size:2.25rem;
}

@media(max-width:1200px){
  .cards-grid{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:768px){
  .compare-table{min-width:920px}
  .cards-grid{grid-template-columns:1fr}
}
