:root{

    --purple: #6D4CFF;
    --indigo: #7B5CFF;
    --blue: #4F7BFF;

    --gradient: linear-gradient(
        135deg,
        #3b12ee 0%,
        #5c3fdd 45%,
        #4F7BFF 100%
    );

    --gradient-hover: linear-gradient(
        135deg,
        #5B3DF5 0%,
        #6D4CFF 45%,
        #3F68F4 100%
    );

    --text-dark: #1D2433;
    --text-muted: #6B7280;
    --border: #E9ECF5;
    --bg: #F7F8FC;
    --white: #FFFFFF;

}
html{
    scroll-behavior:smooth;
}
body{
    margin:0;
    font-family: "Plus Jakarta Sans", sans-serif;
    background:#F7F7FB;
    color: var(--text-dark);
}

        /* ============================================================ */
        /* ===== NAVBAR - STICKY ===== */
        /* ============================================================ */
        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 40px;
            background: #fff;
            border-bottom: 1px solid var(--border);
            box-shadow: 0 2px 12px rgba(80, 70, 180, 0.05);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            animation: navDrop 0.6s ease;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 10px 40px;
            box-shadow: 0 4px 24px rgba(80, 70, 180, 0.12);
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
        }

        @keyframes navDrop {
            from {
                transform: translateY(-16px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* ===== LOGO ===== */
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            text-decoration: none;
        }

        .logo-icon {
            width: 180px;
            transition: transform 0.35s ease;
            flex-shrink: 0;
            display: block;
            object-fit: contain;
        }

        .logo:hover .logo-icon {
            transform: scale(1.05);
        }

        /* ===== NAV LINKS ===== */
        .nav-links {
            display: flex;
            align-items: center;
            gap: 34px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-links li a {
            text-decoration: none;
            color: var(--text-dark);
            font-size: 15px;
            font-weight: 500;
            position: relative;
            padding-bottom: 6px;
            transition: color 0.25s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-links li a i {
            font-size: 1.1rem;
            color: var(--purple);
            transition: transform 0.3s ease;
        }

        .nav-links li a:hover i {
            transform: translateY(-2px);
        }

        .nav-links li a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0%;
            height: 2.5px;
            background: var(--gradient);
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .nav-links li a:hover {
            color: var(--purple);
        }

        .nav-links li a:hover::after {
            width: 100%;
        }

        .nav-links li a.active {
            color: var(--purple);
            font-weight: 600;
        }

        .nav-links li a.active::after {
            width: 100%;
        }

        /* ===== NAV ACTIONS (Desktop) ===== */
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .btn {
            font-size: 14px;
            font-weight: 600;
            border-radius: 8px;
            padding: 9px 22px;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
            white-space: nowrap;
            font-family: inherit;
        }

        .btn-login {
            background: #fff;
            color: var(--purple);
            border: 1.5px solid var(--purple);
        }

        .btn-login:hover {
            background: var(--purple);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(109, 76, 255, 0.3);
        }

        .btn-signup {
            background: var(--gradient);
            color: #fff;
            box-shadow: 0 4px 16px rgba(108, 76, 241, 0.35);
        }

        .btn-signup:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(108, 76, 241, 0.45);
            background: var(--gradient-hover);
        }

        .btn:active {
            transform: translateY(0) scale(0.97);
        }

        /* ===== HAMBURGER ===== */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 110;
            padding: 4px;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            border-radius: 3px;
            background: var(--text-dark);
            transition: all 0.35s ease;
            transform-origin: center;
        }

        .hamburger.open span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .hamburger.open span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        .hamburger.open span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        /* ===== OVERLAY ===== */
        .overlay {
            position: fixed;
            inset: 0;
            background: rgba(15, 10, 40, 0.5);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.35s ease;
            z-index: 999;
            backdrop-filter: blur(4px);
        }

        .overlay.show {
            opacity: 1;
            pointer-events: auto;
        }

        /* ===== MOBILE-ACTIONS (hidden on desktop) ===== */
        .mobile-actions {
            display: none;
        }

        /* ===== CLOSE BUTTON IN MOBILE MENU ===== */
        .close-btn {
            display: none;
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 2rem;
            color: var(--text-dark);
            cursor: pointer;
            z-index: 111;
            transition: transform 0.3s ease;
            padding: 8px;
            line-height: 1;
        }

        .close-btn:hover {
            transform: rotate(90deg);
        }

        /* ============================================================ */
        /* ===== RESPONSIVE ===== */
        /* ============================================================ */
        @media (max-width: 992px) {
            .close-btn {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 80%;
                max-width: 360px;
                background: #fff;
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;
                padding: 100px 32px 32px;
                gap: 28px;
                box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
                transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                z-index: 1005;
                overflow-y: auto;
            }

            .nav-links.open {
                right: 0;
            }

            .nav-links li {
                opacity: 0;
                transform: translateX(30px);
                transition: all 0.4s ease;
                width: 100%;
            }

            .nav-links.open li {
                opacity: 1;
                transform: translateX(0);
            }

            .nav-links.open li:nth-child(1) {
                transition-delay: 0.06s;
            }
            .nav-links.open li:nth-child(2) {
                transition-delay: 0.12s;
            }
            .nav-links.open li:nth-child(3) {
                transition-delay: 0.18s;
            }
            .nav-links.open li:nth-child(4) {
                transition-delay: 0.24s;
            }
            .nav-links.open li:nth-child(5) {
                transition-delay: 0.30s;
            }
            .nav-links.open li:nth-child(6) {
                transition-delay: 0.36s;
            }
            .nav-links.open li:nth-child(7) {
                transition-delay: 0.42s;
            }

            .nav-links li a {
                font-size: 1.1rem;
                padding: 8px 0;
                width: 100%;
            }

            .nav-links li a i {
                font-size: 1.2rem;
                width: 28px;
            }

            .nav-actions {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .navbar {
                padding: 14px 20px;
            }

            .navbar.scrolled {
                padding: 10px 20px;
            }

            .mobile-actions {
                display: flex !important;
                flex-direction: column;
                gap: 12px;
                margin-top: 16px;
                width: 100%;
                padding-top: 16px;
                border-top: 1px solid var(--border);
            }

            .mobile-actions .btn {
                width: 100%;
                text-align: center;
                padding: 12px;
                font-size: 1rem;
            }

            .logo-icon {
                width: 150px;
            }
        }

        @media (max-width: 576px) {
            .navbar {
                padding: 12px 16px;
            }

            .navbar.scrolled {
                padding: 8px 16px;
            }

            .logo-icon {
                width: 130px;
            }

            .nav-links {
                padding: 80px 24px 24px;
                width: 85%;
                gap: 20px;
            }

            .close-btn {
                top: 16px;
                right: 16px;
                font-size: 1.8rem;
            }

            .nav-links li a {
                font-size: 1rem;
            }

            .hero {
                padding: 30px 20px;
            }

            .hero h1 {
                font-size: 2rem;
            }
        }
  /* ================= HERO SECTION (reusable) ================= */
  .hero-section {
    position: relative;
    width: 100%;
    min-height: 700px;
    background-image: url('../img/hero-bg.png'); /* apni bg image is path par daalein */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 60px 0;
    margin-top: 5rem;
  }
 
  .hero-section .row {
    align-items: center;
    min-height: 520px;
  }
 
  /* ---------- LEFT CONTENT ---------- */
  .hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 6px;
  }
 .typing-text{
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.cursor{
    color: var(--purple);
    animation: blink .8s infinite;
}

@keyframes blink{
    50%{
        opacity:0;
    }
}
  .hero-content h1 .highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
 
  .hero-content p.subtext {
    color: var(--text-muted);
    font-size: 1.4rem;
    margin: 18px 0 26px 0;
    max-width: 640px;
    line-height: 1.6;
  }
 
  .hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 32px;
  }
 
  .hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
  }
 
  .hero-features .feature-item .check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
  }
 
  .hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
  }
  .hero-cta a{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    font-weight:600;
    transition:.3s ease;
}
.wave-btn{
    position:relative;
}

.wave-btn span,
.wave-btn i{
    position:relative;
    z-index:2;
}

.wave-btn .shine{
    display:none;
}

.wave-btn::marker{
    display:none;
}

.wave-btn::before,
.wave-btn::after{
    pointer-events:none;
}

.wave-btn{
    overflow:hidden;
}

.wave-btn::after{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:60%;

    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );

    transform:skewX(-25deg);

    animation:shine 3s infinite;

}

@keyframes shine{

    100%{

        left:160%;

    }

}
.hero-cta a i{
    font-size:18px;
    transition:.3s ease;
}

.hero-cta a:hover i{
    transform:translateX(4px);
}
 
  .btn-gradient {
    background: var(--gradient);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: opacity .2s ease, transform .2s ease;
    white-space: nowrap;
  }
  .btn-gradient:hover { opacity: .92; color:#fff; transform: translateY(-1px); }
 
  .btn-outline-gradient {
    background: #fff;
    color: var(--purple);
    border: 1.5px solid var(--purple);
    padding: 13px 26px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
    white-space: nowrap;
  }
  .btn-outline-gradient:hover { background: #f5f3ff; color: var(--purple); transform: translateY(-1px); }
 
  .hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
  }
 
  .avatar-stack { display: flex; }
  .avatar-stack img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
    margin-left: -12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  }
  .avatar-stack img:first-child { margin-left: 0; }
 
  .trust-text { font-size: 1rem; color: var(--text-dark); font-weight: 600; }
  .trust-rating { color: #FFB020; font-size: 1rem; font-weight: 700; }
  .trust-rating span.muted { color: var(--text-muted); font-weight: 500; }
 /* ---------- MOBILE MOCKUP COL ---------- */

.hero-mobile-col {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1500px;
}

/* Fixed single area for all images */
.mobile-slider {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* Every image occupies EXACTLY the same position */
.mobile-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    width: 100%;
    max-width: 500px;
    height: auto;

    margin: 0 auto;
    display: block;

    opacity: 0;
    transform-origin: center center;

    animation: phoneEntry 40s cubic-bezier(.18,.9,.25,1) infinite;
}

/* Image 1 */
.mobile-slide:nth-child(1) {
    animation-delay: 0s;
}

/* Image 2 */
.mobile-slide:nth-child(2) {
    animation-delay: -10s;
}

/* Image 3 */
.mobile-slide:nth-child(3) {
    animation-delay: -20s;
}

/* Image 4 */
.mobile-slide:nth-child(4) {
    animation-delay: -30s;
}


/* ---------- SINGLE IMAGE ANIMATION ---------- */

@keyframes phoneEntry {

    /* Start - Right Side */
    0% {
        opacity: 0;
        transform:
            translateX(450px)
            translateY(-180px)
            rotateY(-80deg)
            rotateZ(35deg)
            scale(.45);
    }

    /* Enter */
    5% {
        opacity: 1;
        transform:
            translateX(40px)
            translateY(10px)
            rotateY(8deg)
            rotateZ(-4deg)
            scale(1.04);
    }

    /* Final Position */
    10% {
        opacity: 1;
        transform:
            translateX(0)
            translateY(0)
            rotateY(0)
            rotateZ(0)
            scale(1);
    }

    /* Stay */
    20% {
        opacity: 1;
        transform:
            translateX(0)
            translateY(-8px)
            rotateZ(1deg)
            scale(1);
    }

    /* Back to Normal */
    22% {
        opacity: 1;
        transform:
            translateX(0)
            translateY(0)
            rotateZ(0)
            scale(1);
    }

    /* Exit */
    25% {
        opacity: 0;
        transform:
            translateX(-80px)
            translateY(0)
            rotateZ(-3deg)
            scale(.98);
    }

    /* Hidden until next turn */
    100% {
        opacity: 0;
        transform:
            translateX(450px)
            translateY(-180px)
            rotateY(-80deg)
            rotateZ(35deg)
            scale(.45);
    }
}
@media (min-width: 225px) and (max-width: 325px) {
  .mobile-slider {
    height: 250px !important;
}
#downloadQrBtn {
  font-size: 8px !important;
  display: flex !important;
}
#qrcode-container {
  width: 80px !important;
  height: 80px !important;
  justify-self: center !important;
}
.profile-card-media {
    height: 80px !important;
}
.profile-avatar {
    width: 44px !important;
    height: 44px !important;
    bottom: -22px !important;
}
.profile-card-body {
    padding: 22px 10px 16px !important;
}
.profile-card-body h3 {
    font-size: 0.62rem !important;
}
.hero-content {
    margin-bottom: 0px !important;
}
.plan-name {
    font-size: 1.15rem !important;
}
.plan-price .amount {
    font-size: 1.2rem !important;
}
.plan-features li {
    gap: 10px !important;
    font-size: 0.8rem !important;
}
.mobile-login {
    width: 35px !important;
    height: 35px !important;
    border-radius: 7px !important;
}
}
@media (min-width: 326px) and (max-width: 476px) {
  .mobile-slider {
    height: 350px !important;
}
#downloadQrBtn {
  font-size: 10px !important;
  display: flex !important;
}
#qrcode-container {
  width: 100px !important;
  height: 100px !important;
  justify-self: center !important;
}
.qr-card {
    padding: 10px !important;
    width: 180px !important;
}
.mobile-login {
    width: 35px !important;
    height: 35px !important;
    border-radius: 7px !important;
}
}
  /* ---------- QR COL ---------- */
  .hero-qr-col {
    display: flex;
    justify-content: center;
    align-items: center;
  }
 
  .qr-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    width: 220px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(31,36,48,0.18);
  }
 
  .qr-card p.qr-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 16px;
  }
 
  .qr-card img.qr-img {
    width: 100%;
    max-width: 170px;
    height: auto;
    margin-bottom: 18px;
  }
 
  .qr-card .btn-outline-gradient {
    width: 100%;
    justify-content: center;
    padding: 10px 20px;
    font-size: 0.85rem;
  }
 
  /* =========================================================
     RESPONSIVE — desktop (lg, 992px+) untouched above.
     Tablet (md, 768–991px) and mobile (below 768px) tuned here.
     ========================================================= */
 
  /* ---- TABLET: 768px – 991px ---- */
  @media (max-width: 991.98px) {
    .hero-section { padding: 50px 0; min-height: auto; }
     .hero-section { margin-top: 3rem; }
    .hero-section .row { min-height: auto; }
 
    .hero-content { text-align: center; margin-bottom: 40px; }
    .hero-content h1 { font-size: 2.3rem; }
    .hero-content p.subtext { font-size: 1.1rem; max-width: 560px; margin-left: auto; margin-right: auto; }
    .hero-features .feature-item { font-size: 1.1rem; }
    .hero-features, .hero-cta, .hero-trust { justify-content: center; }
 
    .hero-mobile-col { order: 2; margin-bottom: 0; }
    .hero-mobile-col img { max-width: 260px; margin-bottom: 0; }
 
    .hero-qr-col { order: 3; }
    .qr-card { width: 100%; max-width: 200px; }
  }
 
  /* ---- MOBILE: below 768px ---- */
  /* mobile-mockup col + qr col sit side by side in one row */
  @media (max-width: 767.98px) {
    .hero-section { padding: 36px 0; }
    
 
    .hero-content h1 { font-size: 1.7rem; line-height: 1.3; }
    .hero-content p.subtext { font-size: 0.98rem; margin: 12px 0 20px 0; }
 
    .hero-features { gap: 12px 16px; margin-bottom: 22px; justify-content: center; }
    .hero-features .feature-item { font-size: 0.9rem; }
    .hero-features .feature-item .check-icon { width: 17px; height: 17px; font-size: 10px; }
 
    .hero-cta { gap: 12px; margin-bottom: 24px; flex-direction: column; align-items: stretch; }
    .btn-gradient, .btn-outline-gradient { justify-content: center; padding: 12px 20px; font-size: 0.88rem; }
 
    .hero-trust { justify-content: center; text-align: left; }
    .avatar-stack img { width: 34px; height: 34px; margin-left: -10px; }
    .trust-text { font-size: 0.82rem; }
    .trust-rating { font-size: 0.82rem; }
 
 
 
    .hero-mobile-col img { max-width: 190px; }
 
    /* .qr-card { width: 100%; max-width: 160px; padding: 14px; margin: 0 auto; } */
    .qr-card p.qr-title { font-size: 0.72rem; margin-bottom: 10px; }
    .qr-card img.qr-img { max-width: 100px; margin-bottom: 10px; }
    .qr-card .btn-outline-gradient { padding: 7px 10px; font-size: 0.68rem; }
  }
 
  /* ---- SMALL MOBILE: below 420px ---- */
  @media (max-width: 576px) {
    .hero-content h1 { font-size: 1.45rem; }
    .hero-content p.subtext { font-size: 0.92rem; }
 
    .hero-mobile-col img { max-width:305px; }
    /* .qr-card { max-width: 130px; padding: 10px; } */
    .qr-card p.qr-title { font-size: 0.62rem; margin-bottom: 8px; }
    .qr-card img.qr-img { max-width: 80px; margin-bottom: 8px; }
    .qr-card .btn-outline-gradient { padding: 6px 8px; font-size: 0.6rem; }
     .hero-section { margin-top: 3rem; }
      .typing-text{
    font-size: 1.2rem;
}
  }


  .mobile-nav{
    display:none;
    align-items:center;
    gap:12px;
}

.mobile-login{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    background:var(--gradient);
    border-radius:12px;
    box-shadow:0 8px 20px rgba(108,76,241,.25);
    transition:.3s ease;
}

.mobile-login i{
    font-size:20px;
}

.mobile-login:hover{

    box-shadow:0 12px 30px rgba(108,76,241,.35);

}
@media (max-width:991px){

    .nav-actions{
        display:none;
    }

    .mobile-nav{
        display:flex;
    }

}
  /* ================= FEATURES SECTION ================= */
  .features-section {
    width: 100%;
    padding: 70px 0;
    background: #fff;
  }
 
  .features-tag {
    display: block;
    text-align: center;
    color: var(--purple);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
 
  .features-title {
    text-align: center;
    color: var(--text-dark);
    font-weight: 800;
    font-size: 2.1rem;
    margin-bottom: 44px;
  }
 
  .features-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
  }
 
  .feature-card {
    background: #F4F3FC;
    border-radius: 14px;
    padding: 26px 16px 22px;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(108,76,241,0.14);
  }
 
.feature-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2.5rem;
    line-height: 1;
    /* ✅ gradient applied to icon */
    background: linear-gradient(
        135deg,
        #3b12ee 0%,
        #5c3fdd 45%,
        #4F7BFF 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; /* fallback for older browsers */
}
 
  .feature-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px 0;
  }
 
  .feature-card p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
  }
 
  /* ---- TABLET: 768–991px : 4 per row ---- */
  @media (max-width: 991.98px) {
    .features-section { padding: 55px 0; }
    .features-title { font-size: 1.7rem; margin-bottom: 34px; }
    .features-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
  }
 
  /* ---- MOBILE: below 768px : 2 per row ---- */
  @media (max-width: 767.98px) {
    .features-section { padding: 40px 0; }
    .features-tag { font-size: 0.72rem; }
    .features-title { font-size: 1.35rem; margin-bottom: 26px; padding: 0 10px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
 
    .feature-card { padding: 20px 12px 18px; border-radius: 12px; }
    .feature-icon { width: 36px; height: 36px; margin-bottom: 12px; }
    .feature-icon i { font-size: 1.5rem; }
    .feature-card h3 { font-size: 0.85rem; }
    .feature-card p { font-size: 0.74rem; }
  }


  /*======================================
HOW IT WORKS
======================================*/

.how-it-works{
    width:100%;
    padding:50px 0;
    background:#F4F3FC;
    overflow:hidden;
}

.section-heading{
    text-align:center;
    margin-bottom:70px;
}

.section-tag{

    display:inline-block;

    color:var(--purple);

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:15px;

}

.section-heading h2{

    font-size:48px;

    font-weight:800;

    color:var(--text-dark);

    line-height:1.25;

}

.section-heading h2 span{

    background:var(--gradient);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.steps-wrapper{

    position:relative;

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:40px;

    max-width:1400px;

    margin:auto;

}

.steps-wrapper .line{

    position:absolute;

    top:75px;

    left:15%;

    right:15%;

    height:2px;

    border-top:2px dashed #DADCF8;

    z-index:0;

}

.step-box{

    width:33.333%;

    text-align:center;

    position:relative;

    z-index:2;

}

.icon-circle{

    width:150px;

    height:150px;

    margin:auto;

    border-radius:50%;

    background:#fff;

    border:2px solid #ECEBFA;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 15px 45px rgba(0,0,0,.05);

}

.icon-circle i{

    font-size:58px;

    background:var(--gradient);

    -webkit-background-clip:text;

    

}

.step-number{

    width:70px;

    height:70px;

    border-radius:50%;

    background:var(--gradient);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:-35px auto 30px;

    font-size:30px;

    font-weight:700;

    border:6px solid #fff;

    box-shadow:0 15px 35px rgba(108,76,241,.25);

}

.step-box h3{

    font-size:30px;

    margin-bottom:18px;

    color:var(--text-dark);

    font-weight:700;

}

.step-box p{

    width:80%;

    margin:auto;

    color:var(--text-muted);

    line-height:1.8;

    font-size:17px;

}

/* Hover */

.step-box:hover .icon-circle{

    transform:translateY(-10px);

    transition:.35s;

    box-shadow:0 20px 55px rgba(108,76,241,.15);

}

.step-box:hover .step-number{

    transform:scale(1.08);

    transition:.35s;

}

/* Responsive */
@media (max-width:767px){

.how-it-works{
    padding:35px 15px;
}

.section-heading h2{
    font-size:30px;
    line-height:1.35;
}

.steps-wrapper{
    display:flex;
    flex-direction:column;
    gap:35px;
    position:relative;
}

.steps-wrapper .line{
    display:none;
}

/* Vertical Timeline */

.steps-wrapper::before{
    content:"";
    position:absolute;
    left:52px;
    top:40px;
    bottom:40px;
    border-left:2px dashed #DADCF8;
    z-index:0;
}

.step-box{

    width:100%;
    max-width:100%;

    display:flex;
    align-items:flex-start;
    gap:20px;

    text-align:left;

    position:relative;
    z-index:2;

}

.left-step{

    width:105px;
    flex-shrink:0;

    display:flex;
    flex-direction:column;
    align-items:center;

}

.icon-circle{

    width:80px;
    height:80px;
    margin:0;

}

.icon-circle i{

    font-size:32px;

}

.step-number{

    width:45px;
    height:45px;

    margin-top:-18px;

    margin-left:0;

    font-size:18px;

    border-width:4px;

}

.right-step{

    flex:1;
    padding-top:10px;

}

.step-box h3{

    font-size:22px;
    margin-bottom:8px;

}

.step-box p{

    width:100%;
    font-size:15px;
    line-height:1.7;

}
.section-heading {
    margin-bottom: 20px;
}

}


  
  /* ================= DEMO PROFILES SECTION ================= */
  .demo-section {
    width: 100%;
    padding: 50px 0;
    background: var(--bg);
    position: relative;
    overflow: hidden;
  }

 
  @keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
  }
 
  .demo-tag {
    display: block;
    text-align: center;
    color: var(--purple);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    animation: fadeSlideUp .6s ease both;
  }
 
  .demo-title {
    text-align: center;
    color: var(--text-dark);
    font-weight: 800;
    font-size: 2.1rem;
    margin-bottom: 44px;
    animation: fadeSlideUp .6s ease .1s both;
  }
 
  .demo-slider-wrap {
    position: relative;
    /* max-width: 1500px; */
    margin: 0 auto;
    padding: 0 60px;
  }
 
  .demo-swiper { overflow: hidden; padding: 6px 0 10px; }
  .demo-swiper .swiper-wrapper { display: flex; }
  .demo-swiper .swiper-slide {
    flex-shrink: 0;
    height: auto;
  }
 
  /* ---- nav arrows ---- */
  .demo-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient);
    background-size: 160% 160%;
    background-position: 0% 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    border: none;
    box-shadow: 0 8px 20px rgba(109,76,255,0.3);
    transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease, background-position .4s ease;
  }
  .demo-nav:hover {
    background: var(--gradient-hover);
    background-position: 100% 50%;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 26px rgba(91,61,245,0.42);
  }
  .demo-nav:active { transform: translateY(-50%) scale(0.95); }
  .demo-nav.swiper-button-disabled { opacity: 0.35; cursor: default; transform: translateY(-50%) scale(1); box-shadow: none; }
  .demo-nav i { font-size: 1.1rem; transition: transform .2s ease; }
  .demo-nav:hover i.bi-chevron-left { transform: translateX(-2px); }
  .demo-nav:hover i.bi-chevron-right { transform: translateX(2px); }
  .demo-prev { left: 0; }
  .demo-next { right: 0; }
 
  /* ---- card ---- */
  .profile-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(31,36,48,0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(28px);
    transition: transform .45s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, border-color .35s ease, opacity .45s ease;
  }
  .profile-card.in-view { opacity: 1; transform: translateY(0); }
 
  .profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(109,76,255,0.18);
    border-color: transparent;
  }
 
  .profile-media-wrap {
    position: relative;
  }
 
  .profile-card-media {
    position: relative;
    height: 200px;
    width: 100%;
    overflow: hidden;
  }
  .profile-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s cubic-bezier(.22,1,.36,1);
  }
  .profile-card:hover .profile-card-media img { transform: scale(1.1); }
 
  .profile-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.18) 100%);
    opacity: 0;
    transition: opacity .35s ease;
  }
  .profile-card:hover .profile-card-media::after { opacity: 1; }
 
  .profile-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: transform .35s cubic-bezier(.34,1.56,.64,1);
    z-index: 2;
  }
  .profile-card:hover .profile-badge { transform: scale(1.15) rotate(-8deg); }
 
  /* avatar sits in the wrap (not the clipped media box) so it's never cut off */
  .profile-avatar {
    width: 106px;
    height: 106px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #fff;
    box-shadow: 0 4px 14px rgba(31,36,48,0.18);
    position: absolute;
    left: 50%;
    bottom: -53px;
    transform: translateX(-50%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: box-shadow .35s ease, transform .35s cubic-bezier(.34,1.56,.64,1);
  }
  .profile-card:hover .profile-avatar {
    box-shadow: 0 8px 22px rgba(109,76,255,0.35);
    transform: translateX(-50%) scale(1.06);
  }
  .profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
 
  .profile-card-body {
    padding: 62px 16px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
  }
 
  .profile-card-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 4px 0;
  }
 
  .profile-category {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0 0 10px 0;
  }
 
  .profile-rating {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
  }
  .profile-rating i { color: #FFB020; margin-left: 3px; }
 
  .btn-view-profile {
    width: 100%;
    background: #fff;
    color: var(--purple);
    border: 1.5px solid var(--purple);
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color .35s ease, border-color .35s ease, transform .25s ease;
  }
  .btn-view-profile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gradient-hover);
    transform: scaleX(0);
    transform-origin: left;
    z-index: -1;
    transition: transform .4s cubic-bezier(.65,0,.35,1);
  }
  .btn-view-profile:hover {
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
  }
  .btn-view-profile:hover::before { transform: scaleX(1); }
 
  /* ---- view all button ---- */
  .demo-cta-wrap {
    text-align: center;
    margin-top: 46px;
  }
 
  .btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient);
    background-size: 180% 180%;
    background-position: 0% 50%;
    color: #fff;
    border: none;
    padding: 15px 8px 15px 30px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(109,76,255,0.28);
    transition: background .5s ease, background-position .5s ease, box-shadow .35s ease, transform .3s cubic-bezier(.34,1.56,.64,1);
  }
  .btn-view-all i { font-size: 1rem; }
  .btn-view-all:hover {
    color: #fff;
    background: var(--gradient-hover);
    background-position: 100% 50%;
    box-shadow: 0 16px 34px rgba(91,61,245,0.4);
    transform: translateY(-3px);
  }
  .btn-view-all:active { transform: translateY(-1px); }
  .btn-view-all:hover .icon-circle i { transform: translateX(4px); }
  .btn-view-all .icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: background .3s ease;
  }
  .btn-view-all .icon-circle i { transition: transform .3s ease; }
  .btn-view-all:hover .icon-circle { background: rgba(255,255,255,0.35); }
 
  /* ---- TABLET ---- */
  @media (max-width: 991.98px) {
    .demo-section { padding: 55px 0; }
    .demo-title { font-size: 1.7rem; margin-bottom: 34px; }
    .demo-slider-wrap { padding: 0 46px; }
    .profile-avatar { width: 84px; height: 84px; bottom: -42px; }
    .profile-card-body { padding: 52px 16px 20px; }
  }
 
  /* ---- MOBILE: 2 per row ---- */
  @media (max-width: 767.98px) {
    .demo-section { padding: 40px 0; }
    .demo-tag { font-size: 0.72rem; }
    .demo-title { font-size: 1.35rem; margin-bottom: 26px; padding: 0 10px; }
 
    .demo-slider-wrap { padding: 0 38px; }
    .demo-nav { width: 34px; height: 34px; }
    .demo-nav i { font-size: 0.9rem; }
 
    .profile-card-media { height: 110px; }
    .profile-avatar { width: 64px; height: 64px; bottom: -32px; }
    .profile-card-body { padding: 42px 10px 16px; }
    .profile-card-body h3 { font-size: 0.82rem; }
    .profile-category { font-size: 0.68rem; margin-bottom: 6px; }
    .profile-rating { font-size: 0.78rem; margin-bottom: 12px; }
    .btn-view-profile { padding: 8px 10px; font-size: 0.72rem; }
 
    .demo-cta-wrap { margin-top: 30px; }
    .btn-view-all { font-size: 0.82rem; padding: 12px 6px 12px 22px; gap: 8px; }
    .btn-view-all .icon-circle { width: 26px; height: 26px; font-size: 0.72rem; }
  }
  @media (max-width: 576px) {
     .demo-section .container-fluid {
    padding: 0 10px !important;
  }
    .demo-nav {
    display: none;
  }
  .demo-slider-wrap {
    padding: 0 8px;
}
.steps-wrapper {
    gap: 10px;
}
.icon-circle {
    width: 70px;
    height: 70px;
}
.step-box h3 {
    font-size: 20px;
    margin-bottom: 5px;
}
.step-box p {
    font-size: 13px;
    line-height: 1.6;
}
  }


  /* ================= PRICING SECTION ================= */
  .pricing-section {
    width: 100%;
    padding: 50px 0;
    background: #F4F3FC;
    position: relative;
    overflow: hidden;
  }
 
  .pricing-section::before,
  .pricing-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
  }
  .pricing-section::before {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, #8f6dff 0%, transparent 70%);
    top: -160px;
    left: -120px;
  }
  .pricing-section::after {
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, #6fa0ff 0%, transparent 70%);
    bottom: -200px;
    right: -140px;
  }
 
  .pricing-section .container-fluid { position: relative; z-index: 1; }
 
  @keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
  }
 
  .pricing-tag {
    display: block;
    text-align: center;
    color: var(--purple);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    animation: fadeSlideUp .6s ease both;
  }
 
  .pricing-title {
    text-align: center;
    color: var(--text-dark);
    font-weight: 800;
    font-size: 2.3rem;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    animation: fadeSlideUp .6s ease .1s both;
  }
 
  .pricing-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto 54px;
    animation: fadeSlideUp .6s ease .15s both;
  }
 
  .pricing-slider-wrap {
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 54px;
  }
 
  .pricing-swiper { overflow: visible; padding: 10px 2px 26px; }
  .pricing-swiper .swiper-wrapper { display: flex; }
  .pricing-swiper .swiper-slide { flex-shrink: 0; height: auto; }
 
  /* ---- nav arrows (reused style) ---- */
  .pricing-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient);
    background-size: 160% 160%;
    background-position: 0% 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 46%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    border: none;
    box-shadow: 0 8px 20px rgba(109,76,255,0.3);
    transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease, background-position .4s ease;
  }
  .pricing-nav:hover {
    background: var(--gradient-hover);
    background-position: 100% 50%;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 26px rgba(91,61,245,0.42);
  }
  .pricing-nav.swiper-button-disabled { opacity: 0.3; cursor: default; transform: translateY(-50%) scale(1); box-shadow: none; }
  .pricing-nav i { font-size: 1.1rem; }
  .pricing-prev { left: 0; }
  .pricing-next { right: 0; }
 
  /* Desktop: no slider — plain 4-column row, arrows hidden */
  @media (min-width: 992px) {
    .pricing-nav { display: none; }
    .pricing-slider-wrap { padding: 0; }
    .pricing-swiper .swiper-wrapper {
      cursor: default;
    }
  }
 
  /* ---- card ---- */
  .pricing-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 0 30px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(28px);
    box-shadow: 0 4px 18px rgba(31,36,48,0.05);
    transition: transform .45s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, border-color .35s ease, opacity .45s ease;
  }
  .pricing-card.in-view { opacity: 1; transform: translateY(0); }
 
  .pricing-card::before {
    content: "";
    display: block;
    height: 6px;
    margin: 0 -30px 30px;
    background: var(--border);
    transition: background .35s ease;
  }
  .pricing-card.featured::before,
  .pricing-card:hover::before {
    background: var(--gradient);
  }
 
  .pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 26px 48px rgba(109,76,255,0.18);
    border-color: transparent;
  }
 
  .pricing-card.featured {
    border-color: var(--purple);
    box-shadow: 0 20px 50px rgba(109,76,255,0.22);
  }
  @media (min-width: 992px) {
    .pricing-card.featured.in-view { transform: translateY(-14px); }
    .pricing-card.featured:hover { transform: translateY(-22px); }
  }
  .pricing-card.featured:hover {
    box-shadow: 0 30px 58px rgba(109,76,255,0.3);
  }
 
  .plan-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #F1EDFF, #EAF0FF);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform .35s cubic-bezier(.34,1.56,.64,1), background .35s ease;
  }
  .plan-icon i {
    font-size: 1.4rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .pricing-card:hover .plan-icon { transform: rotate(-6deg) scale(1.08); }
  .pricing-card.featured .plan-icon {
    background: var(--gradient);
  }
  .pricing-card.featured .plan-icon i {
    -webkit-background-clip: unset;
    background-clip: unset;
    color: #fff;
  }
 
  .pricing-badge-pill {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 6px 18px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 8px 18px rgba(109,76,255,0.4);
    z-index: 2;
  }
  .pricing-badge-pill i { font-size: 0.75rem; }
 
  .plan-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 4px 0;
  }
 
  .plan-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0 0 0px 0;
  }
 
  .plan-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 0px;
  }
  .plan-price .amount {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
  }
  .pricing-card.featured .plan-price .amount {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .plan-price .period {
    font-size: 0.9rem;
    color: var(--text-muted);
  }
 
  .plan-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 22px;
  }
 
  .plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    flex: 1;
  }
  .plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-dark);
    padding: 4px 0;
  }
  .plan-features li .chk {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #F1EDFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .3s ease, background .3s ease;
  }
  .plan-features li .chk i {
    font-size: 0.68rem;
    color: var(--purple);
  }
  .plan-features li i {
    color: var(--purple);
  }
  .pricing-card.featured .plan-features li .chk { background: var(--gradient); }
  .pricing-card.featured .plan-features li .chk i { color: #fff; }
  .pricing-card:hover .plan-features li .chk { transform: scale(1.12); }
 
  .btn-plan {
    width: 100%;
    text-align: center;
    background: #fff;
    color: var(--purple);
    border: 1.5px solid var(--purple);
    padding: 13px 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: color .35s ease, border-color .35s ease, transform .25s ease;
  }
  .btn-plan i { transition: transform .3s ease; }
  .btn-plan:hover i { transform: translateX(3px); }
  .btn-plan::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gradient-hover);
    transform: scaleX(0);
    transform-origin: left;
    z-index: -1;
    transition: transform .4s cubic-bezier(.65,0,.35,1);
  }
  .btn-plan:hover {
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
  }
  .btn-plan:hover::before { transform: scaleX(1); }
 
  .btn-plan.filled {
    background: var(--gradient);
    background-size: 180% 180%;
    background-position: 0% 50%;
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 24px rgba(109,76,255,0.32);
    transition: background .5s ease, background-position .5s ease, box-shadow .35s ease, transform .25s ease;
  }
  .btn-plan.filled::before { content: none; }
  .btn-plan.filled:hover {
    background: var(--gradient-hover);
    background-position: 100% 50%;
    box-shadow: 0 16px 34px rgba(91,61,245,0.4);
    transform: translateY(-2px);
  }
 
  /* ---- trust row ---- */
  .pricing-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 10px;
    flex-wrap: wrap;
  }
  .pricing-trust .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    background: #fff;
    border: 1px solid var(--border);
    padding: 9px 18px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(31,36,48,0.04);
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .pricing-trust .trust-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(109,76,255,0.15);
  }
  .pricing-trust .trust-item i {
    color: var(--purple);
    font-size: 1rem;
  }
 
  /* ---- TABLET: 2-3 per view ---- */
  @media (max-width: 991.98px) {
    .pricing-section { padding: 55px 0; }
    .pricing-title { font-size: 1.7rem; margin-bottom: 38px; }
    .pricing-slider-wrap { padding: 0 42px; }
  }
 
  /* ---- MOBILE: 1 per view, swipeable ---- */
  @media (max-width: 767.98px) {
    .pricing-section { padding: 44px 0; }
    .pricing-tag { font-size: 0.72rem; }
    .pricing-title { font-size: 1.4rem; margin-bottom: 10px; padding: 0 10px; }
    .pricing-subtitle { font-size: 0.85rem; margin-bottom: 34px; padding: 0 14px; }
 
    .pricing-slider-wrap { padding: 0 20px; }
    .pricing-nav { width: 36px; height: 36px; }
    .pricing-nav i { font-size: 0.95rem; }
 
    .pricing-card { padding: 0 20px 24px; margin-top: 14px; }
    .pricing-card::before { margin: 0 -20px 24px; }
    .plan-icon { width: 44px; height: 44px; border-radius: 12px; margin-bottom: 16px; }
    .plan-icon i { font-size: 1.2rem; }
    .plan-name { font-size: 2.15rem; }
    .plan-price .amount { font-size: 1.8rem; }
    .pricing-badge-pill { font-size: 0.65rem; padding: 5px 14px; }
 
    .pricing-trust { gap: 12px; margin-top: 34px; }
    .pricing-trust .trust-item { font-size: 0.78rem; padding: 8px 14px; }
  }
  @media (max-width: 576px) {
      .pricing-nav {
    display: none;
  }
  .pricing-section .container-fluid {
    padding: 0 0px !important;
  }
  .plan-desc {
    margin: 0 0 5px 0;
}
.plan-features {
    margin: 0 0 0px 0;
}
  }


   .cta-section{
    position: relative;
    background: var(--gradient);
    overflow: hidden;
    padding: 30px 5vw;
    isolation: isolate;
    width: 100%;
  }
 
  /* ambient glow blobs */
  .cta-section .glow{
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    z-index: 0;
    pointer-events: none;
  }
  .glow-1{
    width: 320px; height: 320px;
    top: -120px; left: 10%;
    background: rgba(123, 92, 255, 0.45);
  }
  .glow-2{
    width: 360px; height: 360px;
    bottom: -160px; right: 8%;
    background: rgba(79, 123, 255, 0.4);
  }
 
  /* dotted pattern - top left */
  .cta-section::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 220px;
    height: 220px;
    background-image: radial-gradient(rgba(255,255,255,0.35) 1.6px, transparent 1.6px);
    background-size: 16px 16px;
    -webkit-mask-image: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, transparent 70%);
    mask-image: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
  }
 
  /* dotted pattern - bottom right, mirrored */
  .cta-section::after{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 260px;
    height: 260px;
    background-image: radial-gradient(rgba(255,255,255,0.28) 1.6px, transparent 1.6px);
    background-size: 18px 18px;
    -webkit-mask-image: radial-gradient(circle at bottom right, rgba(0,0,0,0.9) 0%, transparent 65%);
    mask-image: radial-gradient(circle at bottom right, rgba(0,0,0,0.9) 0%, transparent 65%);
    z-index: 0;
    pointer-events: none;
  }
 
  .cta-wrap{
    position: relative;
    z-index: 2;
    /* max-width: 1280px; */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 1fr 0.9fr;
    align-items: center;
    gap: 32px;
  }
 
  /* ---------- entrance animation ---------- */
  .reveal{
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
  }
  .cta-content.reveal{ animation-delay: 0.05s; }
  .cta-action.reveal{ animation-delay: 0.2s; }
  .cta-visual.reveal{ animation-delay: 0.35s; }
 
  @keyframes fadeUp{
    from{ opacity: 0; transform: translateY(18px); }
    to{ opacity: 1; transform: translateY(0); }
  }
 
  /* ---------- Column 1: content ---------- */
  .eyebrow{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 7px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
  }
  .eyebrow i{ font-size: 13px; color: #C9FFB0; }
 
  .cta-content h2{
    color: var(--white);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
  }
 
  .cta-content p{
    margin-top: 16px;
    color: rgba(255,255,255,0.78);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 380px;
  }
 
  .mini-stats{
    display: flex;
    gap: 22px;
    margin-top: 26px;
  }
  .mini-stats div{
    display: flex;
    flex-direction: column;
  }
  .mini-stats strong{
    color: var(--white);
    font-size: 19px;
    font-weight: 800;
  }
  .mini-stats span{
    color: rgba(255,255,255,0.65);
    font-size: 12px;
    font-weight: 500;
    margin-top: 2px;
  }
 
  /* ---------- Column 2: button ---------- */
  .cta-action{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
 
  .cta-btn{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--white);
    color: var(--purple);
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    text-decoration: unset;
    padding: 17px 30px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 10px 25px rgba(15, 9, 60, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    overflow: hidden;
  }
 
  .cta-btn i{
    font-size: 13px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
  }
 
  .cta-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(15, 9, 60, 0.35);
    background: #F5F3FF;
  }
 
  .cta-btn:hover i{ transform: translateX(3px); }
 
  .cta-btn:focus-visible{
    outline: 3px solid var(--white);
    outline-offset: 3px;
  }
 
  .cta-note{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
  }
  .cta-note i{ font-size: 13px; color: #C9FFB0; }
 
  /* ---------- Column 3: phone mockup (image) ---------- */
  .cta-visual{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
  }
 
  .phone-frame{
    position: relative;
    z-index: 3;
    width: 250px;
    filter: drop-shadow(0 24px 40px rgba(5, 3, 30, 0.45));
    animation: floatPhone 5s ease-in-out infinite;
  }
 
  .phone-frame img{
    width: 100%;
    height: auto;
    display: block;
    border-radius: 28px;
  }
 
  @keyframes floatPhone{
    0%, 100%{ transform: translateY(0); }
    50%{ transform: translateY(-10px); }
  }
 
  /* floating icon orbs */
  .orb{
    position: absolute;
    z-index: 4;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(10, 6, 50, 0.25);
    animation: float 4.5s ease-in-out infinite;
    transition: transform 0.3s ease, background 0.3s ease;
  }
 
  .orb:hover{
    background: rgba(255,255,255,0.24);
    transform: scale(1.08);
  }
 
  .orb i{
    font-size: 18px;
    color: var(--white);
  }
 
  .orb-1{ top: 4%;  left: 4%;  animation-delay: 0s; }
  .orb-2{ top: 44%; left: -12%; animation-delay: 0.6s; }
  .orb-3{ bottom: 2%; left: 8%; animation-delay: 1.2s; }
  .orb-4{ top: 0%;  right: 2%; animation-delay: 0.3s; }
  .orb-5{ top: 44%; right: -12%; animation-delay: 0.9s; }
  .orb-6{ bottom: 4%; right: 6%; animation-delay: 1.5s; }
 
  @keyframes float{
    0%, 100%{ transform: translateY(0); }
    50%{ transform: translateY(-9px); }
  }
 
  @media (prefers-reduced-motion: reduce){
    .orb, .phone-frame, .reveal{ animation: none; opacity: 1; }
    .cta-btn{ transition: none; }
  }
 
  /* ---------------- Responsive ---------------- */
  @media (max-width: 980px){
    .cta-wrap{
      grid-template-columns: 1fr 1fr;
      grid-template-areas:
        "content content"
        "action  visual";
      row-gap: 40px;
    }
    .cta-content{ grid-area: content; text-align: center; }
    .cta-content p{ margin-left: auto; margin-right: auto; }
    .mini-stats{ justify-content: center; }
    .cta-action{ grid-area: action; align-items: flex-start; }
    .cta-visual{ grid-area: visual; }
     
  .orb-1{ top: 4%;  left: 4%;  animation-delay: 0s; }
  .orb-2{ top: 44%; left: 12%; animation-delay: 0.6s; }
  .orb-3{ bottom: 2%; left: 8%; animation-delay: 1.2s; }
  .orb-4{ top: 0%;  right: 2%; animation-delay: 0.3s; }
  .orb-5{ top: 44%; right: 12%; animation-delay: 0.9s; }
  .orb-6{ bottom: 4%; right: 6%; animation-delay: 1.5s; }
  }
 
  @media (max-width: 620px){
    .cta-section{ padding: 48px 22px; }
    .cta-wrap{
      grid-template-columns: 1fr;
      grid-template-areas:
        "content"
        "visual"
        "action";
      row-gap: 32px;
      text-align: center;
    }
    .eyebrow{ margin-left: auto; margin-right: auto; }
    .cta-content p{ margin-left: auto; margin-right: auto; }
    .mini-stats{ justify-content: center; }
    .cta-action{ align-items: center; }
    .cta-visual{ min-height: 240px; }
    .phone-frame{ width: 150px; }
    .orb{ width: 40px; height: 40px; }
    .orb i{ font-size: 16px; }
    .section-heading h2 {
    font-size: 18px;
}
  }

          /* ===== FOOTER ===== */
        .footer {
            width: 100%;
            background: #111820;
            padding: 55px 50px 30px;
            color: #e8ecf2;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
        }

        .container-fluid {
            width: 100%;
            padding: 0;
        }

        /* ===== GRID: 4 Columns (desktop) ===== */
        .footer-grid {
            display: grid;
            grid-template-columns: 2.2fr 1.2fr 1.2fr 1.8fr;
            gap: 30px 45px;
            padding: 10px 0 30px;
            /* border-bottom: 1px solid rgba(255, 255, 255, 0.06); */
            margin-bottom: 25px;
        }

        /* ---- Column 1: Logo + Tagline + Social ---- */
        .footer-col-brand {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-brand {
            
        }

        .footer-brand img {
           width: 200px;
          background-color: var(--bg);
            padding: 10px;
            border-radius: 10px;
        }

        .footer-brand span {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-tagline {
            font-size: 0.92rem;
            color: #b0b8c8;
            line-height: 1.6;
            margin: 2px 0 6px;
            max-width: 400px;
        }

        .footer-social {
            display: flex;
            gap: 16px;
            margin-top: 6px;
        }

        .footer-social a {
            color: #7a8499;
            font-size: 1.3rem;
            transition: color 0.2s, transform 0.2s;
            text-decoration: none;
        }

        .footer-social a:hover {
            color: #ffffff;
            transform: translateY(-3px);
        }

        /* ---- Columns 2, 3, 4: Headings + Lists ---- */
        .footer-col h4 {
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            color: #d0d8e6;
            margin-bottom: 18px;
            position: relative;
        }

        .footer-col h4::after {
            content: '';
            display: block;
            width: 30px;
            height: 2px;
            background: var(--gradient);
            margin-top: 8px;
            border-radius: 2px;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-col ul li a {
            color: #b0b8c8;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s, padding-left 0.2s;
        }

        .footer-col ul li a:hover {
            color: #ffffff;
            padding-left: 4px;
        }

        /* ---- Contact List (Column 4) ---- */
        .contact-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 2px;
        }

        .contact-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #b0b8c8;
            font-size: 0.9rem;
        }

        .contact-list li i {
            color: var(--purple);
            font-size: 1.1rem;
            width: 20px;
            text-align: center;
        }

        /* ---- Newsletter inside Column 4 ---- */
        .newsletter-wrap {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 16px;
        }

        .newsletter-wrap p {
            color: #b0b8c8;
            font-size: 0.85rem;
            margin: 0;
        }

        .newsletter-form {
            display: flex;
            background: #1f2836;
            border-radius: 40px;
            padding: 4px 4px 4px 20px;
            border: 1px solid #2d3648;
            transition: border 0.2s;
        }

        .newsletter-form:focus-within {
            border-color: var(--purple);
        }

        .newsletter-form input {
            background: transparent;
            border: none;
            padding: 11px 0;
            flex: 1;
            color: #fff;
            font-size: 0.85rem;
            outline: none;
        }

        .newsletter-form input::placeholder {
            color: #7a8499;
        }

        .newsletter-form button {
            background: var(--gradient);
            border: none;
            color: #fff;
            padding: 9px 24px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.8rem;
            cursor: pointer;
            transition: all 0.25s;
            white-space: nowrap;
        }

        .newsletter-form button:hover {
            transform: scale(1.04);
            box-shadow: 0 4px 18px rgba(109, 76, 255, 0.4);
        }

        /* ===== BOTTOM BAR ===== */
   .footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding:20px 15px;
    text-align:center;
    color:#B8B8C7;
    font-size:15px;
}

.footer-bottom a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s ease;
}

.footer-bottom a:hover{
    color:#6D4CFF;
}
    .footer   ul  {
               padding-left: 0 !important;
            }


        /* ============================================================ */
        /* ===== MOBILE: Accordion (collapsible) ===== */
        /* ============================================================ */
        @media (max-width: 991.98px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 30px 35px;
            }

            .footer-col-brand {
                grid-column: 1 / -1;
            }

            .footer-tagline {
                max-width: 100%;
            }
        }

        @media (max-width: 767.98px) {
            .footer {
                padding: 32px 16px 22px;
                /* border-radius: 20px; */
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 4px;
                padding: 10px 0 20px;
            }

            .footer-col-brand {
                grid-column: 1;
                padding-bottom: 10px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
                margin-bottom: 6px;
            }

            .footer-brand span {
                font-size: 1.5rem;
            }

       

            .footer-tagline {
                font-size: 0.82rem;
            }

            .footer-social {
                gap: 18px;
            }

            .footer-social a {
                font-size: 1.2rem;
            }

            /* accordion styling */
            .footer-col {
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
                padding: 4px 0;
            }
       
            .footer-col h4 {
                display: flex;
                justify-content: space-between;
                align-items: center;
                cursor: pointer;
                margin-bottom: 4px;
                padding: 10px 0 6px;
                font-size: 0.82rem;
                letter-spacing: 0.5px;
                user-select: none;
            }

            .footer-col h4::after {
                display: none;
            }

            .footer-col h4 .accordion-icon {
                font-size: 0.9rem;
                color: var(--purple);
                transition: transform 0.3s ease;
            }

            .footer-col h4 .accordion-icon.open {
                transform: rotate(180deg);
            }

            .footer-col ul,
            .contact-list,
            .newsletter-wrap {
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease, padding 0.3s ease;
                padding: 0 0 0 4px;
                margin: 0;
            }

            .footer-col ul.open,
            .contact-list.open,
            .newsletter-wrap.open {
                max-height: 500px;
                padding: 8px 0 18px 4px;
            }

            .contact-list {
                gap: 12px;
            }

            .contact-list li {
                font-size: 0.85rem;
            }

            .newsletter-wrap p {
                font-size: 0.82rem;
            }

            .newsletter-form {
                padding: 3px 3px 3px 14px;
            }

            .newsletter-form input {
                font-size: 0.78rem;
                padding: 8px 0;
            }

            .newsletter-form button {
                padding: 6px 16px;
                font-size: 0.72rem;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 14px;
                padding-top: 4px;
            }
        }

        @media (max-width: 400px) {
            .footer-brand span {
                font-size: 1.2rem;
            }
         
        }

                /* ============================================================ */
        /* ===== BACK TO TOP BUTTON - Bottom Right ===== */
        /* ============================================================ */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: var(--gradient);
            color: #fff;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 4px 24px rgba(109, 76, 255, 0.4);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px) scale(0.8);
            text-decoration: none;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        .back-to-top:hover {
            transform: translateY(-4px) scale(1.08);
            box-shadow: 0 8px 32px rgba(109, 76, 255, 0.6);
            background: var(--gradient-hover);
        }

        .back-to-top:active {
            transform: scale(0.95);
        }

        .back-to-top i {
            animation: bounceArrow 2s infinite ease-in-out;
        }

        @keyframes bounceArrow {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-4px);
            }
        }

        /* ===== MOBILE RESPONSIVE ===== */
        @media (max-width: 768px) {
            .back-to-top {
                width: 44px;
                height: 44px;
                font-size: 1.1rem;
                bottom: 20px;
                right: 20px;
            }

            .content {
                padding: 30px 20px;
            }

            .content h1 {
                font-size: 2rem;
            }
        }

        @media (max-width: 400px) {
            .back-to-top {
                width: 40px;
                height: 40px;
                font-size: 1rem;
                bottom: 15px;
                right: 15px;
            }
        }

        /* ========================================
   PROFILY CUSTOM SCROLLBAR
======================================== */

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F4F3FC;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(
        180deg,
        #6C4CF1 0%,
        #5B5CF0 50%,
        #4C6EF1 100%
    );

    border-radius: 20px;

    border: 2px solid #F4F3FC;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
        180deg,
        #5A3DE0 0%,
        #4C4DE0 50%,
        #3D5FE0 100%
    );
}


/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #5D5CF0 #F4F3FC;
}


 