﻿/*====== NAVBAR start ======*/
#mainNav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent;
}

/* Navbar height */
.navbar-inner {
    min-height: 92px;
}

/* ============== LOGO===========*/
.navbar-brand img {
    height: 42px;
}

/* ========DESKTOP MENU================ */
.navbar-nav {
    gap: 42px;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: #111827 !important;
    padding: 0 !important;
    transition: .3s ease;
}

    .nav-link:hover,
    .nav-link.active {
        color: #0F4DB8 !important;
    }


/* =====================DESKTOP BUTTON=================== */

.btn-header-started {
    background: #004393;
    color: #fff !important;
    padding: 12px 22px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.header-arrow {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: rgba(255,255,255,.16);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* ==============MOBILE HAMBURGER=================== */

.mobile-menu-btn {
    display: none;
}



/* =============MOBILE =================== */

@media (max-width: 991px) {
    /* Hide desktop navbar menu ONLY ON MOBILE */
    #mainNavbar {
        display: none !important;
    }
    /* Show hamburger */
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 46px;
        height: 46px;
        border: none;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,.08);
        padding: 0;
        transition: .3s ease;
    }
        /* Hamburger lines */
        .mobile-menu-btn span {
            width: 20px;
            height: 2px;
            background: #111827;
            border-radius: 10px;
            transition: .3s ease;
        }
        /* Animate top line */
        .mobile-menu-btn.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        /* Hide middle line */
        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }
        /* Animate bottom line */
        .mobile-menu-btn.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }
    /* ============MOBILE DRAWER WRAPPER======================= */

    .mobile-drawer {
        position: fixed;
        inset: 0;
        z-index: 999999;
        visibility: hidden;
        opacity: 0;
        transition: .3s ease;
    }
        /* Show drawer */
        .mobile-drawer.show {
            visibility: visible;
            opacity: 1;
        }
    /* ===================OVERLAY=================== */

    .mobile-drawer-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,.45);
        backdrop-filter: blur(4px);
    }
    /* =================DRAWER PANEL======================== */

    .mobile-drawer-content {
        position: absolute;
        top: 0;
        right: 0;
        width: 300px;
        max-width: 90%;
        height: 100%;
        background: #fff;
        padding: 24px;
        transform: translateX(100%);
        transition: .35s ease;
        display: flex;
        flex-direction: column;
    }
    /* Slide in */
    .mobile-drawer.show .mobile-drawer-content {
        transform: translateX(0);
    }
    /* =================DRAWER TOP================== */
    .drawer-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 35px;
    }

        .drawer-top img {
            height: 38px;
        }
    /* ===============CLOSE BUTTON ================= */

    .drawer-close {
        width: 40px;
        height: 40px;
        border: none;
        background: #F3F4F6;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: #111827;
    }
    /* ===============MOBILE LINKS================== */

    .mobile-links {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

        .mobile-links a {
            display: flex;
            align-items: center;
            padding: 15px 16px;
            border-radius: 14px;
            text-decoration: none;
            color: #111827;
            font-size: 15px;
            font-weight: 600;
            transition: .3s ease;
        }

            .mobile-links a:hover,
            .mobile-links a.active {
                background: #F1F5FF;
                color: #0F4DB8;
            }
    /* =============MOBILE BUTTON=================== */

    .mobile-drawer-btn {
        margin-top: auto;
        background: #0F4DB8;
        color: #fff !important;
        padding: 15px 20px;
        border-radius: 14px;
        text-decoration: none;
        font-size: 15px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
}
/*====== NAVBAR End ======*/

/*====== Hero Section Start======*/
@keyframes floatY {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    padding: 110px 0 70px;
}

    /* GRID BACKGROUND */
    .hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(15,77,184,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(15,77,184,0.05) 1px, transparent 1px);
        background-size: 72px 72px;
        pointer-events: none;
    }

/* LEFT CONTENT */
.hero-title {
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -2.5px;
    color: #000;
    margin-bottom: 28px;
    max-width: 635px;
}

.hero-platform {
    color: #004393;
    position: relative;
    display: inline-block;
}

    .hero-platform::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 102%;
        height: 16px;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='16' viewBox='0 0 240 16'%3E%3Cpath d='M3 12C55 2 120 2 237 12' stroke='%230F4DB8' stroke-width='4.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center/contain;
    }

.hero-description {
    max-width: 460px;
    font-size: 15px;
    line-height: 1.9;
    color: #111;
    margin-bottom: 38px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-btn-dark,
.hero-btn-blue {
    padding: 14px 32px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    transition: .3s ease;
}

.hero-btn-dark {
    background: #050505;
    color: #fff;
}

.hero-btn-blue {
    background: #0F4DB8;
    color: #fff;
}

    .hero-btn-dark:hover,
    .hero-btn-blue:hover {
        transform: translateY(-3px);
        color: #fff;
    }

/* RIGHT SIDE */
.hero-right {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin-inline: auto;
    aspect-ratio: 1.18 / 1;
}

/* TOP DASHBOARD IMAGE */
.hero-main-img {
    position: absolute;
    width: 63%;
    top: 0;
    left: 6%;
    z-index: 5;
    border-radius: 24px;
    animation: floatY 6s ease-in-out infinite;
    filter: drop-shadow(0 18px 40px rgba(15,77,184,.30));
}

/* BOTTOM TABLE IMAGE */
.hero-sub-img {
    position: absolute;
    width: 61%;
    right: 4%;
    bottom: 6%;
    z-index: 4;
    border-radius: 24px;
    /*
               PREMIUM OVERLAP
               tucked slightly under top image
            */
    transform: translateX(-6%);
    animation: floatY 7s ease-in-out infinite 1.2s;
    filter: drop-shadow(0 16px 38px rgba(0,0,0,.12));
}

/* FLOATING BOXES */
.hero-box {
    position: absolute;
    background: #9CBCEB;
    z-index: 1;
}

/* TOP RIGHT BIG */
.hero-box-1 {
    width: 15%;
    aspect-ratio: 1;
    border-radius: 18px;
    top: 0;
    right: 2%;
}

/* TOP RIGHT SMALL */
.hero-box-2 {
    width: 8%;
    aspect-ratio: 1;
    border-radius: 14px;
    top: 28%;
    right: -1%;
    opacity: .65;
}

/* BOTTOM LEFT SMALL */
.hero-box-3 {
    width: 8%;
    aspect-ratio: 1;
    border-radius: 14px;
    left: 8%;
    bottom: 24%;
    opacity: .5;
}

/* BOTTOM LEFT BIG */
.hero-box-4 {
    width: 13%;
    aspect-ratio: 1;
    border-radius: 18px;
    left: 13%;
    bottom: 0;
    opacity: .85;
}

/* TABLET */
@media (max-width: 991px) {

    .hero-section {
        padding-top: 120px;
        text-align: center;
    }

    .hero-title {
        margin-inline: auto;
        font-size: clamp(40px, 7vw, 64px);
    }

    .hero-description {
        margin-inline: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-right {
        margin-top: 60px;
        max-width: 650px;
    }
}

/* MOBILE */
@media (max-width: 767px) {

    .hero-section {
        padding: 110px 0 70px;
    }

    .hero-title {
        font-size: clamp(34px, 9vw, 48px);
        line-height: 1.15;
        letter-spacing: -1.5px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.8;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn-dark,
    .hero-btn-blue {
        width: 100%;
        max-width: 280px;
    }

    .hero-right {
        max-width: 100%;
        aspect-ratio: 1.08 / 1;
        margin-top: 40px;
    }

    .hero-main-img {
        width: 69%;
        left: 1%;
    }

    .hero-sub-img {
        width: 69%;
        right: 2%;
        bottom: 1%;
        transform: translateX(-10%);
    }
}
/*====== Hero Section End======*/

/*====== PillarsSection Section Start======*/
@keyframes sqFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-13px);
    }
}

.pillars-section {
    background: #fff;
    padding: 90px 0 100px;
    position: relative;
    overflow: hidden;
}

.pillars-deco-chart {
    position: absolute;
    top: 16px;
    right: 24px;
    width: 108px;
    opacity: 0.42;
    pointer-events: none;
}

.pillars-heading {
    font-size: clamp(24px, 3.4vw, 40px);
    font-weight: 900;
    color: #0a1628;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.22;
    margin-bottom: 54px;
}

.pillar-card {
    border-radius: 18px;
    padding: 36px 26px 30px;
    height: 100%;
    transition: transform 0.38s cubic-bezier(.25,.8,.25,1), box-shadow 0.38s cubic-bezier(.25,.8,.25,1);
    cursor: default;
}

    .pillar-card.dark-black {
        background: #111827;
    }

    .pillar-card.dark-blue {
        background: #004393;
    }

    .pillar-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 28px 60px rgba(0,0,0,0.38);
    }

.pillar-card-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin-bottom: 24px;
    transition: background 0.3s, transform 0.38s;
    
}

.pillar-card:hover .pillar-card-icon {
    background: rgba(255,255,255,0.22);
    transform: scale(1.1) rotate(-6deg);
}

.pillar-card-title {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    line-height: 1.4;
    margin-bottom: 14px;
}

.pillar-card-text {
    font-size: 13px;
    color: #FFFFFF;
    line-height: 1.75;
    margin-bottom: 26px;
}

.pillar-learn-link {
    font-size: 11px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.25s, gap 0.25s;
}

    .pillar-learn-link:hover {
        color: #fff;
        gap: 11px;
        text-decoration: none;
    }
/*====== PillarsSection  End======*/

/*====== AllInOneSection Start======*/
.allinone-section {
    background: #fff;
    padding: 90px 0;
    overflow: hidden;
}

.allinone-img-bg {
/*    background: #dbeafe;*/
    border-radius: 24px;
    padding: 48px 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
/*    overflow: hidden;*/
    min-height: 360px;
}

.allinone-laptop {
    width: 100%;
    max-width: 450px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 16px 40px rgba(26,86,219,0.18));
    animation: sqFloat 5s ease-in-out infinite;
}

.allinone-title {
    font-size: clamp(26px, 3.6vw, 44px);
    font-weight: 900;
    color: #0a1628;
    line-height: 1.08;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.allinone-desc {
    font-size: 14px;
    color: #111111;
    line-height: 1.85;
    max-width: 460px;
    margin-bottom: 28px;
}

.allinone-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .allinone-bullets li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        font-weight: 600;
        color: #0a1628;
        padding: 10px 0;
    }

        .allinone-bullets li::before {
            content: '•';
            color: #0a1628;
            font-size: 18px;
            line-height: 1;
            flex-shrink: 0;
        }
/*====== AllInOneSection End======*/

/*====== BrainyBandSection start======*/
.brainy-band-outer {
    background: #f4f4f4;
    padding: 20px 0 80px;
}

.brainy-band-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    min-height: 335px;
    display: flex;
    align-items: center;
    padding: 45px 70px;
    gap: 70px;
    background: url('/Content/Images/branybandsectioncoverImage.png') center center / cover no-repeat;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

    /* LEFT DARK CURVE */
    .brainy-band-card::before {
        content: '';
        position: absolute;
        left: -130px;
        bottom: -160px;
        width: 520px;
        height: 520px;
        background: rgba(0,0,0,0.08);
        border-radius: 50%;
        z-index: 1;
    }

    /* RIGHT TOP SHAPE */
    .brainy-band-card::after {
        content: '';
        position: absolute;
        top: -140px;
        right: -120px;
        width: 360px;
        height: 360px;
        background: rgba(255,255,255,0.05);
        border-radius: 50%;
        z-index: 1;
    }

/* CENTER SOFT SHAPE */
.brainy-wave-blob {
    position: absolute;
    right: 180px;
    bottom: -140px;
    width: 420px;
    height: 420px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    z-index: 1;
}

/* IMAGE AREA */
.brainy-circles-wrap {
    position: relative;
    width: 310px;
    height: 250px;
    flex-shrink: 0;
    z-index: 5;
}

/* MAIN IMAGE */
.brainy-circle-main {
    position: absolute;
    left: 0;
    top: 0;
    width: 170px;
    height: 170px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,0.95);
    z-index: 5;
    animation: floatAnim 5s ease-in-out infinite;
}

/* SECOND IMAGE */
.brainy-circle-second {
    position: absolute;
    left: 95px;
    bottom: 0;
    width: 170px;
    height: 170px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,0.95);
    z-index: 4;
    animation: floatAnim 5s ease-in-out infinite 1.2s;
}

/* BIG WHITE CIRCLE */
.brainy-white-circle-big {
    position: absolute;
    top: 20px;
    right: 15px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    z-index: 7;
    animation: pulseAnim 3s ease-in-out infinite;
}

/* DOTS */
.brainy-dot {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    z-index: 7;
}

.brainy-dot-1 {
    width: 18px;
    height: 18px;
    left: 62px;
    bottom: 55px;
    opacity: .95;
}

.brainy-dot-2 {
    width: 12px;
    height: 12px;
    left: 60px;
    bottom: 25px;
    opacity: .9;
}

.brainy-dot-3 {
    width: 40px;
    height: 40px;
    left: 82px;
    bottom: 0;
    opacity: .96;
}

/* TEXT */
.brainy-band-text-wrap {
    position: relative;
    z-index: 5;
    max-width: 540px;
}

.brainy-band-title {
    color: #fff;
    font-size: 19px;
    line-height: 2;
    font-weight: 400;
    margin: 0;
    letter-spacing: .2px;
}

/* ANIMATIONS */
@keyframes floatAnim {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulseAnim {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.08);
        opacity: .92;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* RESPONSIVE */
@media(max-width:991px) {

    .brainy-band-card {
        flex-direction: column;
        text-align: center;
        padding: 50px 30px;
        gap: 40px;
    }

    .brainy-circles-wrap {
        width: 280px;
        height: 240px;
    }

    .brainy-band-title {
        font-size: 17px;
        line-height: 1.8;
    }
}

@media(max-width:576px) {

    .brainy-band-card {
        border-radius: 22px;
        padding: 40px 20px;
    }

    .brainy-circles-wrap {
        transform: scale(.88);
    }

    .brainy-band-title {
        font-size: 15px;
    }
}

/*====== BrainyBandSection End======*/

/*====== ValueSection Start======*/
.value-section {
    background: #fff;
    padding: 80px 0;
    overflow: hidden;
}

/* Cards — alternating black/blue diagonal pattern matching image */
.value-card {
    border-radius: 16px;
    padding: 22px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    height: 100%;
    transition: all 0.32s ease;
    cursor: default;
}

    .value-card.vc-black {
        background: #111827;
    }

    .value-card.vc-blue {
        background: #1a3a8f;
    }

    .value-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 18px 44px rgba(26,86,219,0.28);
    }

.value-card-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
    transition: transform 0.32s;
}

.value-card:hover .value-card-icon-wrap {
    transform: rotate(-10deg) scale(1.12);
}

.value-card-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.35;
}

.value-card-text {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    margin: 0;
}
/* Pink arrow */
.value-pink-arrow {
    position: absolute;
    top: -50px;
    right: 0;
    width: 70px;
    animation: sqFloat 4s ease-in-out infinite;
}

.value-right-wrap {
    position: relative;
    padding-top: 10px;
}

.value-right-title {
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 800;
    color: #0a1628;
    line-height: 1.2;
    margin-bottom: 18px;
}

.value-right-text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.85;
    margin-bottom: 30px;
}

.btn-try-free {
    background: #004393;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

    .btn-try-free:hover {
        background: #1d4ed8;
        color: #fff;
        text-decoration: none;
        transform: translateY(-2px);
        box-shadow: 0 10px 26px rgba(26,86,219,0.4);
    }
/*====== ValueSection End======*/

/*====== PricingSection Start======*/
.pricing-section {
    background: linear-gradient( 180deg, #004393 0%, #003a80 30%, #002d66 60%, #e8eef8 100% );
    padding: 90px 0 120px;
    position: relative;
    overflow: hidden;
}
/* Decorative 3D coin/arrow icons top-right */
.pricing-deco-icons {
    position: absolute;
    top: 30px;
    right: 40px;
    width: 160px;
    opacity: 0.85;
    pointer-events: none;
    z-index: 1;
}

.pricing-title {
    font-size: clamp(24px,3.2vw,38px);
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.pricing-subtitle {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    text-align: center;
    margin-bottom: 36px;
    position: relative;
    z-index: 2;
}

.pricing-toggle-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 52px;
    position: relative;
    z-index: 2;
}

.toggle-lbl {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    transition: color 0.25s;
}

    .toggle-lbl.active {
        color: #fff;
        font-weight: 600;
    }

.save-pill {
    background: rgba(74,222,128,0.2);
    color: #4ade80;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
}
/* Custom toggle switch matching image */
.price-toggle-wrap {
    width: 52px;
    height: 28px;
    background: #fff;
    border-radius: 14px;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.3s;
}

    .price-toggle-wrap .toggle-thumb {
        width: 22px;
        height: 22px;
        background: #1a56db;
        border-radius: 50%;
        position: absolute;
        top: 3px;
        left: 3px;
        transition: left 0.3s;
        box-shadow: 0 2px 6px rgba(0,0,0,0.18);
    }

    .price-toggle-wrap.is-annual .toggle-thumb {
        left: 27px;
    }

/* Cards */
.pricing-cards-row {
    position: relative;
    z-index: 2;
}

.pricing-card {
    border-radius: 20px;
    padding: 32px 26px;
    height: 100%;
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

    .pricing-card:hover {
        transform: translateY(-8px);
    }

    .pricing-card.card-dark {
        background: #111827;
        border: 1px solid rgba(255,255,255,0.07);
    }

        .pricing-card.card-dark:hover {
            box-shadow: 0 28px 60px rgba(0,0,0,0.45);
        }

    .pricing-card.card-white {
        background: #ffffff;
        box-shadow: 0 24px 64px rgba(0,0,0,0.22);
    }

        .pricing-card.card-white:hover {
            box-shadow: 0 36px 80px rgba(0,0,0,0.3);
        }

.pricing-plan-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.card-dark .pricing-plan-label {
    color: rgba(255,255,255,0.7);
}

.card-white .pricing-plan-label {
    color: #374151;
}

.pricing-amount {
    font-size: 46px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2px;
    display: flex;
    align-items: flex-start;
    gap: 2px;
}

.card-dark .pricing-amount {
    color: #fff;
}

.card-white .pricing-amount {
    color: #0a1628;
}

.pricing-amount sup {
    font-size: 20px;
    font-weight: 700;
    margin-top: 8px;
}

.pricing-amount .price-cents {
    font-size: 20px;
    font-weight: 700;
    align-self: flex-end;
    margin-bottom: 4px;
}

.pricing-per-month {
    font-size: 12px;
    margin-bottom: 4px;
}

.card-dark .pricing-per-month {
/*    color: rgba(255,255,255,0.4);*/
    color:darkgray;
}

.card-white .pricing-per-month {
    color: darkgray;
}

.pricing-free-label {
    font-size: 12px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.card-dark .pricing-free-label {
/*    color: rgba(255,255,255,0.38);*/
    color:darkgray;
    border-bottom-color: rgba(255,255,255,0.08);
}

.card-white .pricing-free-label {
/*    color: #6b7280;*/
    color:darkgray;
    border-bottom-color: #e5e7eb;
}

.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

    .pricing-features-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        padding: 6px 0;
    }

.card-dark .pricing-features-list li {
    color: rgba(255,255,255,0.75);
}

.card-white .pricing-features-list li {
    color: #374151;
}

.feat-icon-yes {
    color: #22c55e;
    font-size: 13px;
}

.feat-icon-no {
    color: #6b7280;
    font-size: 13px;
}

.btn-plan {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.card-dark .btn-plan {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.25);
    color: #fff;
    border-radius: 50px;
}

    .card-dark .btn-plan:hover {
        background: rgba(255,255,255,0.1);
        color: #fff;
        text-decoration: none;
    }

.card-white .btn-plan {
    background: #004393;
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(26,86,219,0.38);
}

    .card-white .btn-plan:hover {
        background: #1d4ed8;
        color: #fff;
        text-decoration: none;
    }
/*====== PricingSection End======*/

/*====== ConnectAppsSection Start======*/
.connect-section {
    background: #fff;
    padding: 80px 0 90px;
}

.connect-title {
    font-size: clamp(22px,2.8vw,36px);
    font-weight: 800;
    color: #0a1628;
    text-align: center;
    margin-bottom: 12px;
}

.connect-desc {
    font-size: 14px;
    color: #6b7280;
    text-align: center;
    max-width: 540px;
    margin: 0 auto 52px;
    line-height: 1.8;
}

.app-icons-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.app-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.app-icon-box {
    width: 72px;
    height: 72px;
    background: #f4f7fb;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    border: 1.5px solid rgba(26,86,219,0.07);
    transition: all 0.32s ease;
    cursor: pointer;
}

    .app-icon-box:hover {
        background: #0a1628;
        transform: translateY(-9px) rotate(-5deg);
        box-shadow: 0 16px 36px rgba(26,86,219,0.24);
        border-color: #0a1628;
    }

        .app-icon-box:hover i {
            color: #60a5fa !important;
        }

.app-icon-label {
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
    letter-spacing: 0.3px;
}
/*====== ConnectAppsSection End======*/

/*====== CtaSection Start======*/
.cta-section {
    background: #004393;
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
/* Wave blob shapes exactly as in image */
.cta-wave-1 {
    position: absolute;
    bottom: -120px;
    right: -80px;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    pointer-events: none;
}

.cta-wave-2 {
    position: absolute;
    top: -80px;
    left: -60px;
    width: 360px;
    height: 360px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    pointer-events: none;
}

.cta-wave-3 {
    position: absolute;
    bottom: -60px;
    left: 30%;
    width: 280px;
    height: 280px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    pointer-events: none;
}

.cta-title {
    font-size: clamp(26px, 3.8vw, 44px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.cta-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.85;
    position: relative;
    z-index: 2;
}

.cta-btns-wrap {
    position: relative;
    z-index: 2;
}

.cta-btn-dark {
    background: #0a1628;
    color: #fff;
    padding: 13px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: none;
}

    .cta-btn-dark:hover {
        background: #1a2e4a;
        color: #fff;
        text-decoration: none;
        transform: translateY(-2px);
    }

.cta-btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.6);
    padding: 13px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

    .cta-btn-outline:hover {
        background: rgba(255,255,255,0.12);
        color: #fff;
        text-decoration: none;
        transform: translateY(-2px);
    }
/*====== CtaSection End======*/

/*====== FAQSection Start======*/
.faq-section {
    background: #f8f8f8;
    padding: 85px 0 90px;
    position: relative;
    overflow: hidden;
}

/* TOP BLUE LINE */
.faq-top-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #1356db;
}

/* QUESTION MARKS */
.faq-qmark-img {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

/* LEFT LIGHT MARK */
.faq-qmark-left {
    width: 82px;
    left: 100px;
    top: 175px;
    opacity: .95;
    transform: rotate(-10deg);
}

/* RIGHT DARK MARK */
.faq-qmark-right {
    width: 92px;
    right: 102px;
    top: 445px;
    opacity: .95;
    transform: rotate(12deg);
}

/* MAIN CONTAINER */
.faq-section .container {
    max-width: 1240px;
    position: relative;
    z-index: 2;
}

/* TITLE */
.faq-title {
    text-align: center;
    font-size: 54px;
    line-height: 1.1;
    font-weight: 800;
    color: #07142d;
    margin-bottom: 52px;
    letter-spacing: -2px;
}

/* FAQ WIDTH */
.faq-box {
    max-width: 840px;
    margin: 0 auto;
}

/* ITEM */
.faq-item {
    background: #fff;
    border: 1px solid #d9dce3;
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all .35s ease;
}

    /* ACTIVE ITEM */
    .faq-item.is-open {
        background: linear-gradient(180deg, #004393 0%, #003a80 100%);
        border-color: #1d57da;
        box-shadow: 0 12px 30px rgba(20,70,200,.18);
    }

/* QUESTION */
.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px;
    cursor: pointer;
}

    /* QUESTION TEXT */
    .faq-q span {
        font-size: 15px;
        font-weight: 600;
        color: #111827;
        transition: .3s;
    }

.faq-item.is-open .faq-q span {
    color: #fff;
}

/* CHEVRON */
.faq-chevron {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #d8dde8;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #1f2937;
    flex-shrink: 0;
    transition: all .35s ease;
}

    .faq-chevron i {
        font-size: 13px;
    }

/* ACTIVE CHEVRON */
.faq-item.is-open .faq-chevron {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.18);
    color: #fff;
    transform: rotate(180deg);
}

/* BODY */
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: all .4s ease;
    padding: 0 24px;
}

    .faq-body.is-open {
        max-height: 200px;
        padding: 0 24px 24px;
    }

    /* ANSWER */
    .faq-body p {
        color: rgba(255,255,255,.9);
        font-size: 14px;
        line-height: 2;
        margin: 0;
        max-width: 95%;
    }

/* BOTTOM DOT */
.faq-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #000;
    margin: 18px auto 0;
}

/* RESPONSIVE */
@media(max-width:991px) {

    .faq-title {
        font-size: 42px;
    }

    .faq-qmark-left {
        left: -10px;
        width: 65px;
    }

    .faq-qmark-right {
        right: -10px;
        width: 72px;
    }
}

@media(max-width:767px) {

    .faq-section {
        padding: 70px 0;
    }

    .faq-title {
        font-size: 32px;
        margin-bottom: 35px;
        letter-spacing: -1px;
    }

    .faq-q {
        padding: 18px;
    }

        .faq-q span {
            font-size: 14px;
        }

    .faq-body p {
        font-size: 13px;
        line-height: 1.8;
    }

    .faq-qmark-img {
        display: none;
    }
}
/*====== FAQSection End======*/

/*====== FooterSection Start======*/
.site-footer {
    background: #004393;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}
/* Wave shapes in footer bg */
.footer-wave-1 {
    position: absolute;
    bottom: -120px;
    right: -80px;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    pointer-events: none;
}

.footer-wave-2 {
    position: absolute;
    top: -80px;
    left: 30%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    pointer-events: none;
}

.footer-wave-3 {
    position: absolute;
    bottom: 0;
    left: -60px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    pointer-events: none;
}

.footer-brand-box {
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 12px;
    padding: 12px 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    text-decoration: none;
}

.footer-brand-box-icon {
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .footer-brand-box-icon span {
        font-size: 14px;
        font-weight: 900;
        color: #fff;
    }

.footer-brand-name {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
}

.footer-powered {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    margin-top: 8px;
}

.footer-col-heading {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        font-size: 13px;
        color: rgba(255,255,255,0.7);
        text-decoration: none;
        transition: color 0.25s;
    }

        .footer-links a:hover {
            color: #fff;
        }
/* Newsletter */
.footer-newsletter-wrap {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    padding: 6px 6px 6px 14px;
    max-width: 300px;
}

    .footer-newsletter-wrap input {
        background: transparent;
        border: none;
        outline: none;
        color: #374151;
        font-size: 13px;
        flex: 1;
        min-width: 0;
    }

        .footer-newsletter-wrap input::placeholder {
            color: #9ca3af;
        }

    .footer-newsletter-wrap button {
        background: #004393;
        border: none;
        color: #fff;
        width: 34px;
        height: 34px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        cursor: pointer;
        flex-shrink: 0;
        transition: background 0.3s;
    }

        .footer-newsletter-wrap button:hover {
            background: #1d4ed8;
        }
/* Scroll to top button */
.footer-scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a56db;
    font-size: 16px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    transition: all 0.3s;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
}

    .footer-scroll-top.visible {
        opacity: 1;
        pointer-events: all;
    }

    .footer-scroll-top:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

.footer-bottom-bar {
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 50px;
    padding: 18px 0;
    position: relative;
    z-index: 2;
}

.footer-col-center {
    text-align: center;
}

/*====== FooterSection End======*/

/*====== ContactUs Start======*/

.callback-section {
    position: relative;
    background: #fff;
    padding: 90px 0 100px;
    overflow: hidden;
}

    .callback-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(15,77,184,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(15,77,184,0.05) 1px, transparent 1px);
        background-size: 64px 64px;
        pointer-events: none;
    }

.cb-title span {
    color: #0F4DB8;
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
}

    .cb-title span::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 100%;
        height: 14px;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='14' viewBox='0 0 200 14'%3E%3Cpath d='M3 10C40 2 100 2 197 10' stroke='%230F4DB8' stroke-width='3.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center/100% 100%;
    }

.callback-card {
    background: #004393;
    border-radius: 24px;
    padding: 36px 32px 32px;
    position: relative;
    top: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(26,86,219,0.30);
}

    .callback-card::before {
        content: '';
        position: absolute;
        bottom: -80px;
        right: -60px;
        width: 300px;
        height: 300px;
        background: rgba(255,255,255,0.07);
        border-radius: 50%;
        pointer-events: none;
    }

    .callback-card::after {
        content: '';
        position: absolute;
        top: -60px;
        right: 60px;
        width: 200px;
        height: 200px;
        background: rgba(255,255,255,0.05);
        border-radius: 50%;
        pointer-events: none;
    }

.cb-label {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 7px;
    display: block;
}

.cb-input, .cb-select {
    width: 100%;
    background: #fff;
    border: none;
    border-radius: 50px;
    padding: 11px 18px;
    font-size: 14px;
    color: #374151;
    outline: none;
}

    .cb-input::placeholder {
        color: #9ca3af;
    }

    .cb-input:focus, .cb-select:focus {
        box-shadow: 0 0 0 3px rgba(255,255,255,0.40);
    }

.cb-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.cb-phone-wrap {
    display: flex;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
}

.cb-phone-code {
    border: none;
    border-right: 1px solid #e5e7eb;
    background: transparent;
    padding: 11px 12px 11px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.cb-phone-input {
    border: none;
    background: transparent;
    padding: 11px 18px;
    font-size: 14px;
    color: #374151;
    outline: none;
    flex: 1;
    min-width: 0;
}

    .cb-phone-input::placeholder {
        color: #9ca3af;
    }

.cb-privacy {
    font-size: 11px;
    color: rgba(255,255,255,0.70);
    line-height: 1.6;
}

    .cb-privacy a {
        color: rgba(255,255,255,0.90);
        text-decoration: underline;
    }

.cb-submit {
    width: 100%;
    background: #fff;
    color: #0F4DB8;
    border: none;
    border-radius: 50px;
    padding: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: box-shadow .25s, transform .25s;
}

    .cb-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(0,0,0,0.15);
    }

/*====== ContactUs End======*/
