        :root {
            --primary-color: #021768;
            --secondary-color: #0EACFF;
            --accent-color: #ff6b35;
            --light-bg: #f8f9fa;
            --text-dark: #333;
            --text-muted: #6c757d;
            --radius-xl: 24px;
            --radius: 16px;
            --shadow-sm: 0 6px 18px rgba(2, 23, 104, .08);
            --shadow: 0 14px 36px rgba(2, 23, 104, .12);
            --transition: all .25s ease;
        }


        .color-gray,
        .bullet-gray>li:before,
        .bullet-gray i {
            color: var(--secondary-color) !important;
            font-weight: 900;
        }

        /* ----- Header breadcrumb card ----- */
        .card-car {
            background: linear-gradient(135deg, #021768 0%, #021768 100%);
            color: #fff;
            padding: 27px 24px;
            margin: 100px auto 48px;
            border-radius: 36px;
            box-shadow: var(--shadow);
        }

        .pages {
            max-width: 1200px;
            margin: 0 auto;
        }

        .contnt {
            font-size: 14px;
            color: rgba(255, 255, 255, .85);
        }

        .contnt a {
            color: rgba(255, 255, 255, .85);
            text-decoration: none;
            margin: 0 8px;
            transition: var(--transition);
        }

        .contnt a:hover {
            color: #fff;
        }

        .card-car .page-title {
            color: var(--secondary-color);
            font-weight: 700;
            margin: 0;
        }

        .card-car .lead {
            color: #fff;
            opacity: .95;
            margin: 6px 0 0;
        }

        /* ----- Page wrappers ----- */
        .light-wrapper {
            background: var(--light-bg);
            padding: 36px 0 20px;
        }

        .white-wrapper {
            background: #fff;
            padding: 64px 0;
        }

        /* ----- Pricing grid ----- */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 22px;
        }

        .plan {
            position: relative;
            background: #fff;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid rgba(2, 23, 104, .06);
        }

        .plan:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow);
        }

        .plan-head {
            padding: 24px;
            border-bottom: 1px solid rgba(2, 23, 104, .06);
        }

        .plan-title {
            font-weight: 700;
            color: var(--primary-color);
            margin: 0;
        }

        .price {
            font-size: 40px;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
        }

        .price small {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-muted);
        }

        .popular .plan-head {
            background: linear-gradient(180deg, rgba(14, 172, 255, .08), rgba(2, 23, 104, .04));
        }

        .badge-pop {
            position: absolute;
            top: 16px;
            right: -36px;
            background: var(--secondary-color);
            color: #fff;
            padding: 8px 48px;
            transform: rotate(35deg);
            font-weight: 700;
            box-shadow: var(--shadow-sm);
        }

        .plan-body {
            padding: 10px 24px 8px;
        }

        .feat {
            display: grid;
            grid-template-columns: 20px 1fr;
            align-items: start;
            gap: 10px;
            padding: 10px 0;
            border-bottom: 1px dashed rgba(2, 23, 104, .12);
        }

        .feat:last-child {
            border-bottom: 0;
        }

        .feat i {
            line-height: 1.4;
        }

        .plan-foot {
            padding: 18px 24px 26px;
        }

        .btn-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: var(--primary-color);
            color: #fff;
            border: 0;
            padding: 12px 18px;
            border-radius: 999px;
            font-weight: 700;
            width: 100%;
            transition: var(--transition);
        }

        .btn-cta:hover {
            background: #0b1080;
            transform: translateY(-1px);
            box-shadow: 0 10px 22px rgba(2, 23, 104, .22);
        }

        .btn-ghost {
            background: #fff;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .btn-ghost:hover {
            background: var(--primary-color);
            color: #fff;
        }

        /* price switch (optional) */
        .billing-toggle {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #fff;
            border: 1px solid rgba(2, 23, 104, .08);
            padding: 6px;
            border-radius: 999px;
            box-shadow: var(--shadow-sm);
        }

        .billing-toggle button {
            border: 0;
            padding: 8px 14px;
            border-radius: 999px;
            background: transparent;
            font-weight: 600;
            color: var(--text-muted);
        }

        .billing-toggle button.active {
            background: var(--secondary-color);
            color: #fff;
        }

        /* Why choose */
        .why-card {
            background: #fff;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-sm);
            padding: 24px;
            height: 100%;
            border: 1px solid rgba(2, 23, 104, .06);
        }

        .why-card h4 {
            color: var(--secondary-color);
            font-weight: 600;
        }

        /* --- NEW: Promo banner (top of plan container) --- */
        .promo-card {
            background: #fff;
            border: 1px solid rgba(2, 23, 104, .08);
            border-radius: 24px;
            box-shadow: var(--shadow-sm);
            padding: 24px;
            margin-bottom: 70px;
        }

        .promo-badge {
            display: inline-block;
            font-weight: 800;
            font-size: 12px;
            letter-spacing: .08em;
            text-transform: uppercase;
            background: linear-gradient(90deg, rgba(2, 183, 255, 1) 0%, rgba(235, 188, 74, 1) 100%);
            color: #01204b;
            padding: 6px 10px;
            border-radius: 999px;
            margin-bottom: 10px;
        }

        .promo-title {
            margin: 0 0 6px 0;
            color: var(--primary-color);
            font-weight: 800;
            font-size: 28px;
            line-height: 1.2;
        }

        .promo-text {
            margin: 0;
            font-size: 16px;
            color: var(--text-dark);
        }

        .price-line {
            margin-top: 6px;
            font-size: 16px;
            font-weight: 700;
            color: var(--primary-color);
        }

        .price-line .old {
            text-decoration: line-through;
            color: #a2a5ac;
            font-weight: 600;
            margin-right: 6px;
        }

        .price-line .new {
            color: #0f6fff;
            font-weight: 800;
        }

        /* --- NEW: Join section (after try-plan) --- */
        .join-card {
            background: #fff;
            border: 1px solid rgba(2, 23, 104, .08);
            border-radius: 24px;
            box-shadow: var(--shadow-sm);
            padding: 28px 24px;
            margin-top: 18px;
        }

        .join-title {
            margin: 0 0 6px 0;
            color: var(--primary-color);
            font-weight: 800;
            font-size: 26px;
            line-height: 1.2;
        }

        .join-text {
            margin: 0;
            font-size: 16px;
            color: var(--text-dark);
        }

        /* responsive */
        @media (max-width: 991.98px) {
            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .card-car {
                margin: 98px -7px 1px;
                border-radius: 24px !important;
                padding: 20px 20px;
            }

            .promo-title {
                font-size: 22px;
            }

            .join-title {
                font-size: 22px;
            }

            .page-title {
                font-size: 24px !important;
                line-height: 1.8rem;
                margin-bottom: 1rem;
            }
        }
    
        .content-wrapper {
            background: #f7f7f7;
            border-radius: 1rem;
        }

        #plans-section h1 {
            margin-bottom: 87px !important;
            margin-top: -75px;
        }

        #plan-content-wrapper {
            width: 100%;
            border-radius: 3rem;
            background: radial-gradient(circle at top left, #02b7ff 20%, transparent 50%),
                radial-gradient(circle at top right, #001477 20%, transparent 50%),
                radial-gradient(circle at bottom left, #ebbc4a 30%, transparent 50%),
                radial-gradient(circle at bottom right, #02b7ff 20%, transparent 50%);
        }

        .free-plan-info-card,
        .premium-plan-info-card {
            min-width: 200px;
            border-radius: 1.5rem 1.5rem 0 0;
            margin-top: -30px;
            width: 41%;
            text-wrap: no-wrap;
            line-height: 14px !important;
        }

        .free-plan-info-card {
            background: #E56A68;
            background: linear-gradient(180deg, rgba(229, 106, 104, 1) 51%, rgba(242, 168, 138, 1) 98%);
        }

        .premium-plan-info-card {
            background: #504FF6;
            background: linear-gradient(180deg, rgba(80, 79, 246, 1) 28%, rgba(79, 93, 246, 1) 48%, rgba(79, 112, 246, 1) 77%, rgba(125, 161, 248, 1) 100%);
        }

        .gap {
            gap: 1rem;
        }

        .plan-features {
            border-radius: 1.5rem;
        }

        .features-list li:nth-child(odd) {
            background-color: #f5f5f5;
        }

        .features-list li:nth-child(even) {
            background-color: #ffffff;
        }

        .feature-status {
            width: 100%;
            text-align: center;
        }

        .free-plan-btn button {
            width: 100%;
            border-radius: .6rem;
            background: #E56A68;
            box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
            background: linear-gradient(90deg, rgba(229, 106, 104, 1) 51%, rgba(242, 168, 138, 1) 98%);
        }

        .premium-plan-btn button {
            width: 100%;
            border-radius: .6rem;
            background: #504FF6;
            box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
            background: linear-gradient(90deg, rgba(80, 79, 246, 1) 28%, rgba(79, 93, 246, 1) 48%, rgba(79, 112, 246, 1) 77%, rgba(125, 161, 248, 1) 100%);
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .content-wrapper {
                padding: 0rem !important;
                margin: 0rem !important;
            }

            #plans-section h1 {
                margin-bottom: 47px !important;
                margin-top: -25px;
            }

            #plan-content-wrapper {
                border-radius: 1.5rem;
            }

            .free-plan-info-card,
            .premium-plan-info-card {
                min-width: 80px;
                padding: 0.5rem;
                margin-top: -15px;
                width: 45%;
                line-height: 1.5px !important;
            }
            

            .gap {
                gap: 0.5rem;
            }

            .contnt {
                margin-bottom: -16px;
            }
            .plan-features {
                padding: 0.5rem;
                border-radius: 1rem;
            }

            .features-list {
                font-size: 12px;
                padding: 0;
            }

            .features-list li {
                padding: 1px;
            }

            .feature-number i {
                font-size: 4px;
            }

            h3.mb-4 {
                font-size: 20px;
                margin-bottom: 1rem;
            }

            p.text-black {
                font-size: 14px;
                margin-bottom: 1rem;
            }

            .fs-24 {
                font-size: 18px;
            }

            .free-plan-info-card h3,
            .premium-plan-info-card h3 {
                font-size: 12px;
            }

            .free-plan-info-card h2,
            .premium-plan-info-card h2 {
                font-size: 18px;
            }

            .free-plan-info-card div,
            .premium-plan-info-card div {
                font-size: 8px;
            }

            .fs-18 {
                font-size: 14px;
            }

            .px-8 {
                padding-left: 1rem !important;
                padding-right: 1rem !important;
            }

            .px-6 {
                padding-left: 0.5rem !important;
                padding-right: 0.5rem !important;
            }

            .pb-6 {
                padding-bottom: 0.5rem !important;
            }

            .feature-status img {
                width: 12px;
                height: 12px;
            }

            .feature-key {
                line-height: 18px;
            }

            .plan-content-wrapper .row.d-flex.flex-row.align-items-center.justify-content-around {
                flex-direction: column;
                gap: 1rem;
            }

            .plan-content-wrapper .row.d-flex.flex-row.align-items-center.justify-content-around .col-6:first-child {
                text-align: center;
                order: 2;
            }

            .plan-content-wrapper .row.d-flex.flex-row.align-items-center.justify-content-around .col-6:last-child {
                flex-direction: column;
                gap: 0.5rem;
                order: 1;
                width: 100%;
            }

            .free-plan-info-card,
            .premium-plan-info-card {
                width: 100%;
                max-width: 200px;
                margin: 0 auto;
            }

            .features-list li.row.d-flex.flex-row {
                flex-direction: column;
                gap: 0.5rem;
                text-align: center;
            }

            .features-list li .col-6:first-child {
                order: 1;
            }

            .features-list li .col-6:last-child {
                order: 2;
                flex-direction: column;
                gap: 0.25rem;
            }

            .features-list li .col-6:last-child .feature-status {
                width: auto;
            }

            .try-plan {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
                padding: 1rem;
            }

            .try-plan .d-flex.align-items-center.justify-content-between:last-child {
                flex-direction: column;
                gap: 0.5rem;
                width: 100%;
            }

            .try-plan .btn-1,
            .try-plan .btn-2 {
                width: 100%;
                margin: 0;
                padding: 0.75rem;
                font-size: 16px;
            }

            .plan-section h1 {
                font-size: 2.2rem;
            }
        }

        .plan-content-wrapper {
            padding: 3rem !important;
        }

        @media (max-width: 576px) {
            .features-list {
                font-size: 11px;
            }

            .feature-key fs-16.fs-md-16 {
                font-size: 14px;
            }

            .feature-status span.fs-16.fs-md-16 {
                font-size: 14px;
            }

            .plan-features h3 {
                font-size: 16px;
            }

            .free-plan-info-card h2,
            .premium-plan-info-card h2 {
                font-size: 16px;
            }

            .try-plan h1 {
                font-size: 24px;
            }
        }

        @media (min-width: 900px) and (max-width: 1180px) {
            p.col-6.m-0.fs-14.fs-md-24.px-1.px-md-2.text-white.text-left {
                font-size: 13px !important;
                padding-left: 0px !important;
                margin-top: -4px !important;
                margin-right: -11px !important;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .plan-content-wrapper .row.d-flex.flex-row.align-items-center.justify-content-around {
                padding: 0 1rem;
            }

            .free-plan-info-card,
            .premium-plan-info-card {
                min-width: 150px;
                width: 35%;
            }

            .features-list li.row.d-flex.flex-row {
                padding: 0.5rem 0;
            }

            .features-list {
                font-size: 14px;
            }

            .try-plan {
                padding: 1.5rem;
            }

            .plan-section h1 {
                font-size: 36px;
            }
        }

        .faq-item {
            border-radius: 1rem;
            margin-bottom: 1rem;
            box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
        }

        .faq-question {
            padding: 0.5rem 1.5rem 0.5rem 1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
        }

        .faq-answer {
            padding: 1rem 1.5rem;
            list-style: none;
            display: none;
            font-size: 1rem;
        }

        .faq-answer.active {
            display: block;
        }

        .faq-question i {
            margin-right: 0.5rem;
            font-size: 0.375rem;
        }

        .faq-question h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #6c757d;
        }

        @media (max-width: 768px) {
            .faq-question h3 {
                font-size: 1rem !important;
            }

            .try-plan {
                border-radius: 1.2rem !important;
                padding-inline: 13px 13px !important;
            }

            .try-plan .btn-1 {
                background: #f56a6a;
                padding: 8px 12px !important;
                margin-right: -4px !important;
                border-radius: 22px;
                color: white;
                font-weight: 700;
                font-size: 13px !important;
                text-transform: capitalize;
                letter-spacing: 1px;
                box-shadow: 0 1px 7px rgb(0 0 0 / 22%), inset 9px -27px 14px rgb(0 0 0 / 20%), inset 0 4px 8px rgb(0 0 0 / 51%);
                transition: box-shadow 0.3s ease, transform 0.3s ease;
            }

            .try-plan .btn-2 {
                background: linear-gradient(90deg, rgba(80, 79, 246, 1) 28%, rgba(79, 93, 246, 1) 48%, rgba(79, 112, 246, 1) 77%, rgba(125, 161, 248, 1) 100%);
                padding: 7px 21px !important;
                margin-right: 9px !important;
                border-radius: 22px;
                color: white;
                font-weight: 700;
                font-size: 13px !important;
                text-transform: capitalize;
                letter-spacing: 1px;
                transition: box-shadow 0.3s ease, transform 0.3s ease;
            }

            .plan-content-wrapper {
                padding: 0rem !important;
            }

            .faq-question {
                padding: 0.3rem 1rem 0.3rem 1rem !important;
            }

            .faq-answer {
                padding: .8rem 1rem !important;
            }
        }

        .feature-key-div {
            color: #3b3b3b;
            padding-block: 5px;
        }

        .plan-btn-div {
            color: white;
            width: 100%;
            border-radius: 3rem;
            background: linear-gradient(90deg, rgba(2, 183, 255, 1) 0%, rgba(156, 186, 136, 1) 30%, rgba(235, 188, 74, 1) 100%);
            background-size: 100% 100%;
            background-repeat: no-repeat;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-around;
            padding: 1rem 1.5rem;
            margin-top: 1rem;
            z-index: 999;
            transition: bottom 0.5s ease-in-out;
        }

        .try-plan {
            color: white;
            width: 100%;
            border-radius: 30px;
            background: linear-gradient(90deg, rgba(2, 183, 255, 1) 0%, rgba(156, 186, 136, 1) 30%, rgba(235, 188, 74, 1) 100%);
            padding: 13px 38px;
            margin-top: 1rem;
            transition: bottom 0.5s ease-in-out;
        }

        .free-plan {
            color: white;
            width: 100%;
            border-radius: 24px;
            background: linear-gradient(90deg, rgba(2, 183, 255, 1) 0%, rgba(156, 186, 136, 1) 30%, rgba(235, 188, 74, 1) 100%);
            padding: 43px 38px;
            margin-top: 1rem;
            transition: bottom 0.5s ease-in-out;
        }

        .try-plan h1 {
            color: white;
            margin-bottom: 4px;
            font-size: 31px;
            font-weight: 400;
        }

        .try-plan .btn-1,
        .try-plan .btn-2 {
            padding: 8px 34px;
            margin-right: 9px;
            border-radius: 22px;
            color: white;
            font-weight: 700;
            font-size: 18px;
            text-transform: capitalize;
            letter-spacing: 1px;
            transition: box-shadow 0.3s ease, transform 0.3s ease;
        }

        .try-plan .btn-1 {
            background: #f56a6a;
        }

        .try-plan .btn-2 {
            background: linear-gradient(90deg, rgba(80, 79, 246, 1) 28%, rgba(79, 93, 246, 1) 48%, rgba(79, 112, 246, 1) 77%, rgba(125, 161, 248, 1) 100%);
        }

        .plan-btn-div.visible {
            bottom: 1rem;
        }

        .premium-plan-btn button {
            width: 100%;
            min-width: 300px;
            border-radius: 2rem;
            font-size: 1rem;
            font-weight: 500;
        }

        @media (max-width: 576px) {
            .plan-btn-div {
                bottom: -100px;
                padding: 0.5rem 1rem;
                font-size: 0.9rem;
                font-weight: 400;
                flex-direction: column;
                position: fixed;
                left: 50%;
                background-color: transparent;
                background: transparent;
                box-shadow: none !important;
                transform: translateX(-50%);
                max-width: 90%;
            }

            .plan-content-wrapper {
                padding: 0rem !important;
            }

            .plan-btn-div.visible {
                bottom: 1rem;
            }

            .plan-btn-div .fs-14,
            .plan-btn-div .fs-md-20 {
                font-size: 0.9rem !important;
            }

            .premium-plan-btn button {
                font-size: 0.9rem;
                min-width: 250px;
                padding: 0.5rem 0.75rem;
            }
        }

        @keyframes vibrate {
            0% {
                transform: translateX(0);
            }

            10% {
                transform: translateX(-3px);
            }

            20% {
                transform: translateX(3px);
            }

            30% {
                transform: translateX(-3px);
            }

            40% {
                transform: translateX(3px);
            }

            50% {
                transform: translateX(-2px);
            }

            60% {
                transform: translateX(2px);
            }

            70% {
                transform: translateX(-2px);
            }

            80% {
                transform: translateX(2px);
            }

            90% {
                transform: translateX(-1px);
            }

            100% {
                transform: translateX(0);
            }
        }

        .plan-btn-div.vibrate {
            animation: vibrate 1.2s ease-in-out;
        }

        .title-plan {
            font-size: 27px !important;
            transform: translate(83px, 6px);
        }

        .footer-image2 {
            width: 66%;
            left: 0;
            margin-left: -93px;
        }

        p.col-6.m-0.fs-14.fs-md-24.px-1.px-md-2.text-white.text-left {
            font-size: 31px !important;
            padding-left: 46px !important;
            margin-bottom: -3px !important;
        }

        h3.text-white.mb-1.fs-10.fs-md-18 {
            font-size: 14px !important;
            margin-bottom: -1px !important;
        }

        h2.text-white.mb-1.fs-14.fs-md-24 {
            font-size: 33px !important;
            margin-bottom: 5px !important;
        }

        .text-white.mb-1.fs-8.fs-md-10 {
            font-size: 18px !important;
            margin-top: 2px;
        }

        .free-plan-info-card,
        .premium-plan-info-card {
            min-width: 178px;
            border-radius: 1.5rem 1.5rem 0 0;
            margin-top: -30px;
            width: 43% !important;
            text-wrap: no-wrap;
            line-height: 14px !important;
        }

        .try-plan span {
            color: white;
            margin-bottom: 4px;
            font-size: 24px !important;
            font-weight: 400;
        }

        .plan-content-wrapper {
            padding: 0rem 2rem 2rem 2rem !important;
        }

        @media (max-width: 768px) {
            .container {
                padding-right: 1px !important;
                padding-left: 1px !important;
            }

            .try-plan span {
                margin-bottom: 2px !important;
                margin-top: 1px !important;
                font-size: 19px !important;
            }

            .features-list li.row.d-flex.flex-row {
                flex-direction: column;
                gap: 0rem !important;
                align-items: center !important;
            }

            .free-plan-info-card,
            .premium-plan-info-card {
                min-width: 200px;
                width: 42% !important;
            }

            p.col-6.m-0.fs-14.fs-md-24.px-1.px-md-2.text-white.text-left {
                font-size: 15px !important;
                padding-left: 7px !important;
                margin-top: -18px !important;
                margin-right: -27px !important;
            }

            h3.text-white.mb-1.fs-10.fs-md-18 {
                font-size: 13px !important;
                margin-bottom: -1px !important;
                line-height: 1;
            }

            h2.text-white.mb-1.fs-14.fs-md-24 {
                font-size: 12px !important;
            }

            .text-white.mb-1.fs-8.fs-md-10 {
                font-size: 10px !important;
                margin-top: -6px;
            }

            .plan-content-wrapper {
                padding: 0rem 0rem 0rem 0rem !important;
            }

            .plan-content-wrapper .row.d-flex.flex-row.align-items-center.justify-content-around {
                flex-direction: column;
                gap: 0 !important;
            }

            .plan-content-wrapper .row.d-flex.flex-row.align-items-center.justify-content-around .col-6:first-child {
                text-align: center;
                order: 1 !important;
                align-items: center !important;
                justify-content: center;
                display: flex;
                padding-bottom: 0px;
                margin-block: 8px;
            }

            .plan-content-wrapper .row.d-flex.flex-row.align-items-center.justify-content-around .col-6:last-child {
                flex-direction: column;
                gap: 2px !important;
                order: 1;
                width: 95%;
            }
        }

        .fs-12 {
            font-size: 17px !important;
            font-weight: 600;
            color: #4e5153;
            line-height: 18px !important;
        }

        h3.text-uppercase,
        .h3.text-uppercase {
            font-size: 1rem !important;
            line-height: 1.3rem;
        }

        @media (max-width: 768px) {
            .fs-12 {
                font-size: 13px !important;
                font-weight: 600;
                color: #4e5153;
                line-height: 14px !important;
                text-align: left;
            }
        }

        hr {
            border: 0;
            padding: 0;
            margin: 0;
            border-bottom: 1px solid rgb(255 255 255 / 37%) !important;
            padding-top: 3.5rem;
            margin-bottom: 3.5rem;
        }
    