:root {
    --primary: #6047df;
    --primary-dark: #4932c5;
    --orange: #f06424;
    --orange-dark: #df4e12;
    --navy: #101d45;
    --text: #26314d;
    --muted: #66718b;
    --green: #1b9b59;
    --light-purple: #f5f2ff;
    --border: #e5e7ef;
    --white: #ffffff;
    --bg: #fbfbfe;
}
.ms-auto{
    margin-left: auto !important;
}
.navbar-nav {
    gap: 10px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.trust-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    color: #4f5870;
    font-weight: 600;
}

.trust-icon {
    width: 34px;
    height: 34px;
    border: 1px solid #ddd8ff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--primary);
    font-size: 17px;
}
.trust-icon svg {
    fill: var(--primary);
}


.breadcrumb {
    background: var(--secondary-color)
}

.breadcrumb ul {
    margin: auto;
    padding: 3px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    list-style: none;
    flex-wrap: wrap;
    gap: 15px;
    overflow: hidden
}

.breadcrumb ul li {
    color: var(--white);
    font-size: 18px;
    position: relative
}

.breadcrumb ul li:after {
    content: ">";
    font-family: cursive;
    position: absolute;
    top: 0;
    right: -10px;
    display: flex;
    align-items: center;
    justify-content: center
}

.breadcrumb ul li:nth-last-child(1)::after {
    display: none
}

.breadcrumb ul li a:hover {
    text-decoration: underline
}

.breadcrumb ul li a {
    padding-right: 5px;
    color: var(--white);
    text-decoration: none
}
/* =========================
    HERO
========================= */

.hero {
    padding: 60px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 70% 40%, #f0edff 0, transparent 32%),
        linear-gradient(180deg, #fff 0%, #fbfaff 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 40px;
}

.hero-content h1 {
    font-size: 45px;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 22px;
}

.hero-content h1 .purple {
    color: var(--primary);
}

.hero-content h1 .orange {
    color: var(--orange);
}

.hero-content p {
    max-width: 620px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-feature-icon {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    background: #f1edff;
    border: 1px solid #ddd6ff;
    display: grid;
    place-items: center;
    color: var(--primary);
    font-size: 19px;
}

.hero-feature strong {
    display: block;
    color: var(--navy);
    font-size: 13px;
}

.hero-feature small {
    color: var(--muted);
    font-size: 14px;
}

.hero-product {
    min-height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-circle {
    width: 310px;
    height: 310px;
    border-radius: 50%;
    background: linear-gradient(135deg, #eeeaff, #fff);
    position: absolute;
}

.hero-product::before {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    background: #ffe5d8;
    border-radius: 50%;
    right: 40px;
    top: 5px;
    opacity: .8;
}

.hero-product::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    background: #ded7ff;
    border-radius: 50%;
    right: 20px;
    bottom: 20px;
    opacity: .8;
}

.product-platform {
    position: absolute;
    width: 330px;
    height: 25px;
    bottom: 0;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 15px 30px rgba(40, 30, 90, .14);
}

.product-box {
    position: relative;
    z-index: 2;
    width: 245px;
    max-height: 330px;
    object-fit: contain;
    filter: drop-shadow(15px 20px 15px rgba(0,0,0,.12));
}


/* =========================
    PRICING AREA
========================= */

.pricing-section {
    padding: 25px 0 75px;
}

.pricing-wrapper {
    background: #fff;
    border: 1px solid #e5e3ee;
    border-radius: 16px;
    padding: 0 25px 35px;
    box-shadow: 0 15px 45px rgba(42, 31, 90, .06);
}


/* =========================
    TABS
========================= */

.product-tabs {
    display: flex;
    justify-content: center;
    gap: 2px;
    transform: translateY(-1px);
    margin-bottom: 30px;
    border: none;
}

.product-tab {
    padding: 15px 28px;
    background: #fff;
    border: 1px solid #ddd;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    border-radius: 0 0 7px 7px;
    text-decoration: none;
}

.product-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.product-tab:hover {
    background: var(--primary-dark);
    color: #fff;
}


/* =========================
    PRICING CARDS
========================= */

.plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 20px;
}
.plans4{
    grid-template-columns: repeat(4, 1fr);
}

.plan {
    position: relative;
    border: 1px solid #e4e5ed;
    border-radius: 13px;
    padding: 30px 25px 25px;
    text-align: center;
    background: #fff;
    box-shadow: 0 7px 25px rgba(35, 25, 80, .07);
    transition: .25s ease;
}

.plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(53, 40, 120, .13);
}

.plan.popular {
    border: 2px solid #ff9c6e;
    background: linear-gradient(180deg, #fffaf7, #fff);
}

.popular-label {
    position: absolute;
    left: -2px;
    right: -2px;
    top: -15px;
    background: var(--orange);
    color: #fff;
    padding: 6px;
    border-radius: 10px 10px 0 0;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
}

.plan-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 15px;
}

.bundle-products{
    color: #606779;
    font-size: 14px;
}

.saving {
    display: inline-block;
    background: #eaf8ef;
    color: var(--green);
    border: 1px solid #c8e8d4;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 13px;
}

.old-price {
    text-decoration: line-through;
    color: #606779;
    font-size: 14px;
    margin-bottom: 2px;
}

.price {
    color: var(--navy);
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
}

.license-duration {
    color: var(--muted);
    font-size: 11px;
    margin: 5px 0 20px;
}

.buy-btn {
    width: 100%;
    border: 0;
    border-radius: 5px;
    background: var(--primary);
    color: #fff;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s ease;
    text-decoration: none;
}

.buy-btn:hover {
    background: var(--primary-dark);
}

.plan.popular .buy-btn {
    background: var(--orange);
}

.plan.popular .buy-btn:hover {
    background: var(--orange-dark);
}


/* =========================
    COUPON
========================= */

.coupon {
    margin: 20px;
    border: 1px dashed #a99aff;
    border-radius: 10px;
    background: #fbfaff;
    padding: 12px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
}

.coupon-right {
    background: #fff;
    border: 1px solid #ddd8ff;
    border-radius: 20px;
    padding: 5px 13px;
    white-space: nowrap;
    font-size: 10px;
}


/* =========================
    SECTION HEADING
========================= */

.section-heading {
    text-align: center;
    margin: 25px 0;
}

.section-heading .head {
    font-size: 23px;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.section-heading .head::before,
.section-heading .head::after {
    content: "";
    width: 90px;
    height: 1px;
    background: #ddd;
}

.section-heading .head span {
    color: var(--primary);
}


/* =========================
    COMPARISON TABLE
========================= */

.comparison {
    overflow-x: auto;
    border: 1px solid #e4e5eb;
    border-radius: 8px;
}

.comparison table {
    width: 100%;
    min-width: 850px;
    border-collapse: collapse;
}

.comparison th,
.comparison td {
    border-bottom: 1px solid #e6e7ec;
    border-right: 1px solid #e6e7ec;
    padding: 13px 12px;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
}

.comparison th:last-child,
.comparison td:last-child {
    border-right: 0;
}

.comparison tbody tr:last-child td {
    border-bottom: 0;
}

.comparison th:first-child,
.comparison td:first-child {
    text-align: left;
    width: 29%;
}

.comparison thead th {
    background: #f5f3ff;
    color: var(--primary);
    font-size: 12px;
}

.comparison thead th:nth-child(3) {
    background: #fff3ec;
    color: var(--orange);
}
.comparison4 thead th:nth-child(3) {
    background: #f5f3ff;
    color: var(--primary);
}
.comparison4 thead th:nth-child(4) {
    background: #fff3ec;
    color: var(--orange);
}

.popup {
	position: relative;
	text-align: left !important;
	cursor: pointer;
	display: block
}

.popup .content {
    text-decoration: underline;
    display: inline-block;
}
.popup .popcontent {
	display: none;
	position: absolute;
    border: 1px dashed #a99aff;
    background: #fbfaff;
	z-index: 1;
	margin-top: 10px;
	padding: 10px;
	border-radius: 5px
}

.popup .popcontent:after {
	content: "";
	height: 20px;
	width: 20px;
	top: -11px;
	left: 45%;
	transform: rotate(45deg);
	position: absolute;
	background: #fbfaff;
	border: 1px dashed #a99aff;
	border-bottom: 0;
	border-right: 0;
	z-index: 1
}

.popup:hover .popcontent {
	display: block
}

.feature-title td {
    background: #f5f3ff;
    color: var(--primary);
    font-weight: 700;
}

.check {
    color: var(--green);
    font-weight: 900;
    font-size: 17px;
}

.cross {
    color: #e83d49;
    font-weight: 900;
    font-size: 17px;
}

.table-price {
    font-size: 18px;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 5px;
}

.table-buy {
    display: inline-block;
    padding: 7px 14px;
    background: var(--primary);
    color: #fff;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
}

.comparison tr:last-child td:nth-child(3) .table-buy {
    background: var(--orange);
}
.comparison4 tr:last-child td:nth-child(3) .table-buy {
    background: var(--primary);
}
.comparison4 tr:last-child td:nth-child(4) .table-buy {
    background: var(--orange);
}


/* =========================
    CLIENTS
========================= */

.clients {
    margin-top: 20px;
    border: 1px solid #ddd8ff;
    background: #fcfbff;
    border-radius: 10px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.clients-title {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    width: 100%;
    text-align: center;
}

.client {
    font-size: 12px;
    font-weight: 600;
    color: #46506a;
}


/* =========================
    TRUST SECTION
========================= */

.trust-section {
    background: linear-gradient(110deg, #5037c9, #6949dc);
    color: #fff;
    padding: 40px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.trust-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 35px;
    border-right: 1px solid rgba(255,255,255,.25);
}

.trust-box:last-child {
    border-right: 0;
}

.trust-big-icon {
    width: 65px;
    height: 65px;
    border: 2px solid rgba(255,255,255,.8);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 28px;
    flex-shrink: 0;
}

.trust-box h3 {
    font-size: 17px;
    margin-bottom: 5px;
}

.trust-box p {
    color: rgba(255,255,255,.8);
    font-size: 11px;
    line-height: 1.6;
}


/* =========================
    HELP CTA
========================= */

.help-section {
    padding: 25px 0;
    background: #fff;
}

.help-box {
    border: 1px solid #e3e4eb;
    border-radius: 10px;
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,.04);
}

.help-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.help-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f2efff;
    color: var(--primary);
    display: grid;
    place-items: center;
    font-size: 22px;
}

.help-content h3 {
    color: var(--navy);
    font-size: 15px;
}

.help-content p {
    color: var(--muted);
    font-size: 11px;
}

.chat-btn {
    background: var(--primary);
    color: #fff;
    border: 0;
    padding: 11px 20px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
        text-align: center;
}




/* =========================
    RESPONSIVE
========================= */

@media (max-width: 992px) {

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features {
        justify-content: center;
    }

    .plans {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: auto;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trust-box {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.2);
        padding-bottom: 20px;
    }

    .trust-box:last-child {
        border-bottom: 0;
    }

}


@media (max-width: 768px) {

    .hero {
        padding: 45px 0 25px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-product {
        min-height: 300px;
    }

    .hero-circle {
        width: 240px;
        height: 240px;
    }

    .product-box {
        width: 190px;
    }

    .product-platform {
        width: 260px;
    }

    .pricing-wrapper {
        padding: 0 12px 25px;
        border-radius: 10px;
    }

    .product-tabs {
        flex-direction: column;
        margin-left: 10px;
        margin-right: 10px;
    }

    .product-tab {
        width: 100%;
        text-align: center;
        border-radius: 5px;
    }

    .coupon {
        margin: 20px 5px;
        flex-direction: column;
        align-items: flex-start;
    }

    .coupon-right {
        white-space: normal;
    }

    .section-heading .head::before,
    .section-heading .head::after {
        display: none;
    }

    .comparison {
        border-radius: 5px;
    }

    .clients {
        gap: 13px;
    }

    .help-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .chat-btn {
        width: 100%;
    }

}


@media (max-width: 480px) {

    .hero-content h1 {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .hero-product {
        min-height: 260px;
    }

    .hero-circle {
        width: 200px;
        height: 200px;
    }

    .product-box {
        width: 160px;
    }

    .product-platform {
        width: 220px;
    }

    .plan {
        padding: 28px 18px 20px;
    }

    .trust-box {
        padding-left: 5px;
        padding-right: 5px;
    }
}

@media (max-width: 767px) {
    .breadcrumb ul {
        width:100%;
        overflow-x: auto;
        overflow-y: hidden;
        flex-wrap: nowrap;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch
    }
    .breadcrumb ul li {
        font-size: 15px;
    }

}