/* ============ DESIGN TOKENS ============ */
:root {
    --primary: #6C4CF1;
    --primary-soft: #8F73F5;
    --secondary: #FF4D8D;
    --teal: #16C79A;
    --dark: #141034;
    --heading: #17133A;
    --text: #5A5580;
    --muted: #8E89B0;
    --line: #ECE9F8;
    --bg-soft: #F8F7FD;
    --grad: linear-gradient(135deg, #6C4CF1 0%, #A44BF0 50%, #FF4D8D 100%);
    --shadow-soft: 0 24px 60px -24px rgba(23, 19, 58, .18);
    --radius-xl: 1.5rem;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading);
    font-weight: 800;
    letter-spacing: -.02em
}

p {
    line-height: 1.75
}

::selection {
    background: var(--primary);
    color: #fff
}

/* ============ PRELOADER ============ */
#preloader {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 9999;
    display: grid;
    place-items: center;
    transition: opacity .6s ease, visibility .6s
}

#preloader.hide {
    opacity: 0;
    visibility: hidden
}

.loader-ring {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 4px solid var(--line);
    border-top-color: var(--primary);
    border-right-color: var(--secondary);
    animation: spin 1s linear infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

/* ============ BUTTONS / BADGES ============ */
.btn-gradient {
    background: var(--grad);
    color: #fff;
    border: 0;
    border-radius: 2rem;
    padding: .85rem 1.9rem;
    font-weight: 700;
    letter-spacing: .01em;
    box-shadow: 0 14px 32px -10px rgba(108, 76, 241, .55);
    transition: all .35s ease
}

.btn-gradient:hover,
.btn-gradient:focus {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 20px 44px -10px rgba(108, 76, 241, .65);
    filter: saturate(1.2)
}

.btn-outline-ink {
    border: 2px solid var(--line);
    color: var(--heading);
    border-radius: 2rem;
    padding: .85rem 1.9rem;
    font-weight: 700;
    background: #fff;
    transition: all .35s ease
}

.btn-outline-ink:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px)
}

.text-gradient {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(135deg, rgba(108, 76, 241, .1), rgba(255, 77, 141, .12));
    color: var(--primary);
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .5rem 1.1rem;
    border-radius: 2rem;
    margin-bottom: 1.1rem
}

.section-head {
    max-width: 640px;
    margin: 0 auto 3.5rem
}

/* ============ NAVBAR ============ */
.navbar {
    padding: 1.3rem 0;
    transition: all .4s ease;
    background: transparent
}

.navbar.scrolled {
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 40px rgba(23, 19, 58, .08);
    padding: .7rem 0
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -.03em;
    display: flex;
    align-items: center;
    gap: .6rem
}

.brand-dot {
    padding: 10px;
    border-radius: 12px;
    background: var(--grad);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px -6px rgba(108, 76, 241, .5)
}

.brand-dot img {
    width: 22px;
}

.navbar-nav .nav-link {
    color: var(--heading);
    font-weight: 600;
    margin: 0 .55rem;
    position: relative;
    padding: .5rem 0
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2.5px;
    width: 0;
    border-radius: 2px;
    background: var(--grad);
    transition: width .3s ease
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%
}

.navbar-nav .nav-link.active {
    color: var(--primary)
}

.navbar-toggler {
    border: 0;
    font-size: 1.5rem;
    color: var(--heading);
    padding: .25rem .5rem
}

.navbar-toggler:focus {
    box-shadow: none
}

.btn-nav {
    padding: .6rem 1.4rem;
    font-size: .95rem
}

/* ============ HERO ============ */
.hero {
    position: relative;
    padding: 11rem 0 6rem;
    overflow: hidden;
    background-image: radial-gradient(rgba(23, 19, 58, .055) 1px, transparent 1px);
    background-size: 26px 26px
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .45;
    pointer-events: none;
    animation: blobMove 14s ease-in-out infinite
}

.blob-1 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, #8F73F5, transparent 65%);
    top: -140px;
    right: -100px
}

.blob-2 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, #FF4D8D, transparent 65%);
    bottom: -160px;
    left: -120px;
    animation-delay: -5s
}

.blob-3 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, #16C79A, transparent 65%);
    top: 30%;
    left: 38%;
    opacity: .28;
    animation-delay: -9s
}

@keyframes blobMove {

    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }

    33% {
        transform: translate(30px, -40px) scale(1.08)
    }

    66% {
        transform: translate(-25px, 25px) scale(.94)
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 2rem;
    padding: .5rem 1.1rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--heading);
    box-shadow: var(--shadow-soft)
}

.hero-badge .bi {
    color: #FFB020
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.9rem);
    line-height: 1.12;
    margin: 1.4rem 0 1.2rem
}

.hero .lead-text {
    font-size: 1.08rem;
    max-width: 520px
}

.rotator {
    display: inline-block;
    transition: opacity .3s ease, transform .3s ease;
    min-width: 5.2ch;
    color: var(--primary)
}

.hero-stats {
    display: flex;
    gap: 2.4rem;
    flex-wrap: wrap;
    margin-top: 2.2rem
}

.hero-stats h4 {
    font-size: 1.45rem;
    margin-bottom: .1rem
}

.hero-stats span {
    font-size: .85rem;
    color: var(--muted)
}

.divider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary);
    align-self: center
}

/* Store badges */
.store-badges {
    display: flex;
    gap: .9rem;
    flex-wrap: wrap
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    background: var(--dark);
    color: #fff;
    border-radius: 16px;
    padding: .65rem 1.25rem;
    text-decoration: none;
    transition: all .35s ease;
    box-shadow: 0 16px 34px -14px rgba(23, 19, 58, .5)
}

.store-badge i {
    font-size: 1.9rem;
    line-height: 1
}

.store-badge small {
    display: block;
    font-size: .68rem;
    opacity: .75;
    font-weight: 500;
    line-height: 1
}

.store-badge b {
    font-size: .98rem;
    font-weight: 700;
    line-height: 1.2
}

.store-badge:hover {
    transform: translateY(-4px) scale(1.02);
    color: #fff;
    box-shadow: 0 22px 44px -14px rgba(108, 76, 241, .55)
}

.store-badge--light {
    background: #fff;
    color: var(--dark)
}

.store-badge--light small {
    opacity: .6
}

/* ============ PHONE MOCKUP ============ */
.phone {
    width: 300px;
    height: 612px;
    /* background: #14102E; */
    border-radius: 46px;
    padding: 12px;
    position: relative;
    /* box-shadow: 0 50px 100px -24px rgba(23, 19, 58, .5), inset 0 0 0 2px rgba(255, 255, 255, .07); */
    transform: rotate(-4deg)
}

.phone::before {

    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 104px;
    height: 26px;
    background: #14102E;
    border-radius: 0 0 20px 20px;
    z-index: 6
}


.phone-demo .slider-img {
    animation: float 3.5s ease-in-out infinite;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 36px;
    background: linear-gradient(180deg, #F7F5FF, #FFFFFF);
    overflow: hidden;
    position: relative
}

.app {
    padding: 52px 18px 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.app-hello {
    font-size: 10px;
    color: var(--muted);
    font-weight: 600
}

.app-name {
    font-size: 14px;
    font-weight: 800;
    color: var(--heading)
}

.app-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--grad);
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    display: grid;
    place-items: center
}

.ring-wrap {
    display: grid;
    place-items: center;
    gap: 6px;
    margin: 4px 0
}

.ring {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    background: conic-gradient(var(--secondary) 0 96%, #EEEAFB 96% 100%);
    display: grid;
    place-items: center;
    animation: ringPulse 3.5s ease-in-out infinite
}

@keyframes ringPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 77, 141, .28)
    }

    50% {
        box-shadow: 0 0 0 16px rgba(255, 77, 141, 0)
    }
}

.ring-inner {
    width: 94px;
    height: 94px;
    background: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: inset 0 4px 14px rgba(23, 19, 58, .06)
}

.ring-inner b {
    font-size: 22px;
    color: var(--heading);
    font-weight: 800
}

.ring-inner span {
    font-size: 9px;
    color: var(--muted);
    font-weight: 600
}

.app-stats {
    display: flex;
    gap: 8px
}

.mini-stat {
    flex: 1;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 9px 6px;
    text-align: center
}

.mini-stat i {
    font-size: 14px;
    color: var(--primary)
}

.mini-stat b {
    display: block;
    font-size: 12px;
    color: var(--heading);
    margin-top: 2px
}

.mini-stat span {
    font-size: 8.5px;
    color: var(--muted);
    font-weight: 600
}

.app-workout {
    background: var(--grad);
    border-radius: 18px;
    padding: 14px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 14px 28px -10px rgba(255, 77, 141, .5)
}

.app-workout small {
    font-size: 9px;
    opacity: .85;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase
}

.app-workout b {
    display: block;
    font-size: 14px;
    margin: 3px 0
}

.app-workout span {
    font-size: 9.5px;
    opacity: .85
}

.play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .22);
    display: grid;
    place-items: center;
    font-size: 14px;
    backdrop-filter: blur(4px)
}

.app-nav {
    margin-top: auto;
    display: flex;
    justify-content: space-around;
    color: #C9C4E4;
    font-size: 16px;
    border-top: 1px solid var(--line);
    padding-top: 12px
}

.app-nav .active-nav {
    color: var(--primary)
}

/* Floating chips */
.float-chip {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    padding: .7rem .95rem;
    display: flex;
    gap: .7rem;
    align-items: center;
    box-shadow: 0 22px 44px -14px rgba(23, 19, 58, .22);
    animation: float 5.5s ease-in-out infinite;
    z-index: 4
}

.hero-image {
    width: 300px;
    animation: float 3.5s ease-in-out infinite;
    rotate: 2deg;
    box-shadow: 0 28px 44px 2px rgba(23, 19, 58, .22);
    border-radius: 60px;
}

.chip-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.15rem;
    flex-shrink: 0
}

.float-chip b {
    display: block;
    font-size: .95rem;
    color: var(--heading);
    line-height: 1.1
}

.float-chip span {
    font-size: .72rem;
    color: var(--muted);
    font-weight: 600
}

.chip-1 {
    top: 11%;
    right: -14%;
    animation-delay: 0s
}

.chip-2 {
    top: 44%;
    left: -16%;
    animation-delay: -1.8s
}

.chip-3 {
    bottom: 7%;
    right: -9%;
    animation-delay: -3.4s
}

.chip-1 .chip-icon {
    background: linear-gradient(135deg, #FF9A3D, #FF4D6D)
}

.chip-2 .chip-icon {
    background: linear-gradient(135deg, #FF4D8D, #B14BF0)
}

.chip-3 .chip-icon {
    background: linear-gradient(135deg, #16C79A, #0EA5E9)
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-14px)
    }
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center
}

@media (max-width:575px) {
    .float-chip {
        display: none
    }

    .phone {
        transform: rotate(0)
    }
}

/* ============ MARQUEE ============ */
.marquee-section {
    padding: 2.5rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg-soft)
}

.marquee-label {
    text-align: center;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.4rem
}

.marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent)
}

.marquee-track {
    display: flex;
    gap: 4.5rem;
    width: max-content;
    animation: marquee 28s linear infinite;
    align-items: center
}

.marquee-track span {
    font-weight: 800;
    font-size: 1.25rem;
    color: #B9B3DA;
    white-space: nowrap;
    letter-spacing: -.01em;
    display: flex;
    align-items: center;
    gap: .5rem
}

.marquee-track .bi {
    font-size: 1rem;
    opacity: .7
}

@keyframes marquee {
    to {
        transform: translateX(-50%)
    }
}

.marquee:hover .marquee-track {
    animation-play-state: paused
}

/* ============ FEATURES ============ */
.features {
    padding: 7rem 0
}

.feature-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 2rem 1.8rem;
    height: 100%;
    transition: all .4s cubic-bezier(.2, .8, .25, 1);
    position: relative;
    overflow: hidden
}

.feature-card::after {
    content: "";
    position: absolute;
    inset: auto -40% -60% auto;
    width: 200px;
    height: 200px;
    background: var(--grad);
    border-radius: 50%;
    opacity: 0;
    transition: opacity .5s;
    filter: blur(60px)
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
    box-shadow: 0 30px 60px -22px rgba(108, 76, 241, .35)
}

.feature-card:hover::after {
    opacity: .12
}

.f-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(108, 76, 241, .12), rgba(255, 77, 141, .14));
    color: var(--primary);
    font-size: 1.5rem;
    display: grid;
    place-items: center;
    margin-bottom: 1.3rem;
    transition: all .4s ease
}

.feature-card:hover .f-icon {
    background: var(--grad);
    color: #fff;
    transform: rotate(-8deg) scale(1.06);
    box-shadow: 0 12px 24px -8px rgba(108, 76, 241, .5)
}

.feature-card h5 {
    font-size: 1.15rem;
    margin-bottom: .6rem
}

.feature-card p {
    font-size: .94rem;
    margin: 0
}

/* ============ HOW IT WORKS ============ */
.how {
    padding: 7rem 0;
    background: var(--bg-soft);
    position: relative;
    overflow: hidden
}

.step-card {
    text-align: center;
    padding: 1rem
}

.step-num {
    width: 84px;
    height: 84px;
    margin: 0 auto 1.5rem;
    border-radius: 26px;
    background: var(--grad);
    color: #fff;
    font-size: 1.7rem;
    font-weight: 800;
    display: grid;
    place-items: center;
    box-shadow: 0 18px 36px -12px rgba(108, 76, 241, .5);
    position: relative;
    transition: transform .4s ease
}

.step-card:hover .step-num {
    transform: translateY(-8px) rotate(6deg)
}

.step-num::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 32px;
    border: 2px dashed rgba(108, 76, 241, .35)
}

.step-card h5 {
    font-size: 1.15rem;
    margin-bottom: .7rem
}

.step-card p {
    font-size: .94rem;
    max-width: 300px;
    margin: 0 auto
}

/* ============ SCREENS / SHOWCASE ============ */
.screens {
    padding: 7rem 0
}

.phone-demo {
    width: 280px;
    height: 570px;
    margin: 0 auto;
    transform: rotate(3deg)
}

.phone-demo .app {
    padding: 48px 16px 14px;
    gap: 12px
}

.demo-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--heading)
}

.demo-sub {
    font-size: 10px;
    color: var(--muted);
    font-weight: 600
}

.bars {
    display: flex;
    align-items: flex-end;
    gap: 9px;
    height: 120px;
    padding: 0 2px
}

.bar {
    flex: 1;
    border-radius: 8px 8px 4px 4px;
    background: linear-gradient(180deg, var(--primary), #9B7BFF);
    transform-origin: bottom;
    animation: grow 1s cubic-bezier(.2, .8, .25, 1) both
}

.bar.hot {
    background: linear-gradient(180deg, var(--secondary), #FF8FBF);
    animation-delay: .45s
}

@keyframes grow {
    from {
        transform: scaleY(0)
    }
}

.ex-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 10px 12px
}

.ex-row .ex-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 14px;
    color: #fff;
    flex-shrink: 0
}

.ex-row b {
    font-size: 11.5px;
    color: var(--heading);
    display: block
}

.ex-row span {
    font-size: 9px;
    color: var(--muted);
    font-weight: 600
}

.ex-row .play-sm {
    margin-left: auto;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(108, 76, 241, .12), rgba(255, 77, 141, .14));
    color: var(--primary);
    display: grid;
    place-items: center;
    font-size: 11px
}

.badge-row {
    display: flex;
    gap: 8px
}

.badge-pill {
    flex: 1;
    background: linear-gradient(135deg, rgba(108, 76, 241, .1), rgba(255, 77, 141, .12));
    border-radius: 14px;
    padding: 10px 4px;
    text-align: center
}

.badge-pill i {
    font-size: 16px;
    color: var(--primary)
}

.badge-pill b {
    display: block;
    font-size: 10px;
    color: var(--heading);
    margin-top: 3px
}

.badge-pill span {
    font-size: 8px;
    color: var(--muted);
    font-weight: 600
}

.bullets {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0
}

.bullets li {
    display: flex;
    gap: .8rem;
    align-items: flex-start;
    margin-bottom: .9rem;
    font-weight: 600;
    color: var(--heading);
    font-size: 1rem
}

.bullets li .bi {
    color: var(--teal);
    margin-top: .15rem
}

.slide-num {
    font-size: .85rem;
    font-weight: 800;
    color: var(--muted);
    letter-spacing: .15em
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--muted);
    border: 0;
    opacity: .35;
    transition: all .3s
}

.carousel-indicators .active {
    opacity: 1;
    background: var(--primary);
    width: 28px;
    border-radius: 6px
}

.carousel-control-prev,
.carousel-control-next {
    width: 52px;
    height: 52px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--shadow-soft);
    color: var(--heading);
    opacity: 1;
    transition: all .3s
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--grad);
    color: #fff
}

.carousel-control-prev {
    left: -14px
}

.carousel-control-next {
    right: -14px
}

@media (max-width:991px) {

    .carousel-control-prev,
    .carousel-control-next {
        display: none
    }

    .navbar-brand {
        font-size: 1.1rem;
    }

    .navbar-collapse {
        background-color: #ffffff;
        padding: 20px 10px;
    }
}

/* ============ STATS BAND ============ */
.stats-band {
    padding: 5.5rem 0;
    background: linear-gradient(120deg, #1B1440, #2A1856 55%, #3A1D63);
    position: relative;
    overflow: hidden
}

.stats-band::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 77, 141, .25), transparent 65%);
    top: -300px;
    right: -150px
}

.stats-band::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 76, 241, .3), transparent 65%);
    bottom: -260px;
    left: -120px
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 1
}

.stat-item h3 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    background: linear-gradient(135deg, #B7A5FF, #FF9BBE);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.stat-item p {
    color: #B7B1DA;
    font-weight: 600;
    margin: 0;
    font-size: .95rem
}

/* ============ TESTIMONIALS ============ */
.reviews {
    padding: 7rem 0;
    background: var(--bg-soft)
}

.testi-card {
    max-width: 760px;
    margin: 0 auto;
    background: #fff;
    border-radius: 1.75rem;
    padding: 3rem 2.6rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    position: relative;
    border: 1px solid var(--line)
}

.testi-card .quote-ic {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: var(--grad);
    color: #fff;
    font-size: 1.4rem;
    display: grid;
    place-items: center;
    margin: -3.4rem auto 1.6rem;
    box-shadow: 0 14px 30px -8px rgba(108, 76, 241, .5)
}

.stars {
    color: #FFB020;
    font-size: 1rem;
    letter-spacing: .15em;
    margin-bottom: 1.2rem
}

.testi-card p {
    font-size: 1.12rem;
    color: var(--heading);
    font-weight: 500;
    line-height: 1.8
}

.testi-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.8rem
}

.testi-av {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--grad);
    color: #fff;
    font-weight: 800;
    display: grid;
    place-items: center;
    font-size: 1.05rem
}

.testi-user b {
    display: block;
    color: var(--heading);
    text-align: left
}

.testi-user span {
    text-align: left;
    font-size: .85rem
}

/* ============ PRICING / BLOG ============ */
.pricing {
    padding: 7rem 0
}

.price-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 2.6rem 2.2rem;
    height: 100%;
    transition: all .4s ease;
    position: relative
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft)
}

.gradient-border {
    border: 2px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, var(--grad) border-box;
    box-shadow: 0 34px 70px -24px rgba(108, 76, 241, .4)
}

.pop-flag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .45rem 1.2rem;
    border-radius: 2rem;
    box-shadow: 0 10px 22px -6px rgba(255, 77, 141, .5)
}

.price {
    font-size: 2.7rem;
    font-weight: 800;
    color: var(--heading);
    letter-spacing: -.04em
}

.price small {
    font-size: 1rem;
    color: var(--muted);
    font-weight: 600
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 1.8rem 0
}

.price-list .bi-check-circle-fill {
    color: var(--teal)
}

.price-list .text-muted-i {
    color: #C9C4E4
}

/* ============ FAQ ============ */
.faq {
    padding: 7rem 0;
    background: var(--bg-soft)
}

.accordion-item {
    border: 1px solid var(--line) !important;
    border-radius: 1.1rem !important;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 12px 32px -20px rgba(23, 19, 58, .2);
    background: #fff
}

.accordion-button {
    font-weight: 700;
    color: var(--heading);
    padding: 1.25rem 1.5rem;
    background: #fff
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(108, 76, 241, .07), rgba(255, 77, 141, .08));
    color: var(--primary);
    box-shadow: none
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236C4CF1' class='bi bi-dash-lg' viewBox='0 0 16 16'%3E%3Cpath d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8Z'/%3E%3C/svg%3E")
}

.accordion-body {
    font-size: .95rem;
}

/* ============ CTA ============ */
.cta-wrap {
    padding: 6rem 0;
}

.cta {
    background: linear-gradient(120deg, #6C4CF1, #A44BF0 48%, #FF4D8D);
    border-radius: 2.5rem;
    padding: 4.5rem 3rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #fff
}

.cta::before,
.cta::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .18)
}

.cta::before {
    width: 420px;
    height: 420px;
    top: -220px;
    left: -140px
}

.cta::after {
    width: 520px;
    height: 520px;
    bottom: -300px;
    right: -180px;
    border-width: 2px
}

.cta h2 {
    color: #fff;
    font-size: clamp(1.9rem, 4vw, 3rem)
}

.cta p {
    color: rgba(255, 255, 255, .85);
    max-width: 520px;
    margin: 1.2rem auto 2.2rem
}

.cta .store-badge {
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .25);
    backdrop-filter: blur(8px)
}

.cta .store-badge--light {
    background: #fff;
    color: var(--dark)
}

.cta-note {
    margin-top: 1.6rem;
    font-size: .85rem;
    color: rgba(255, 255, 255, .75);
    position: relative;
    z-index: 1
}

.cta>* {
    position: relative;
    z-index: 1
}

.pulse-ring {
    position: absolute;
    top: -90px;
    right: -90px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    animation: pulseRing 3s ease-out infinite;
    z-index: 0
}

@keyframes pulseRing {
    0% {
        transform: scale(.7);
        opacity: .8
    }

    100% {
        transform: scale(1.4);
        opacity: 0
    }
}

/* ============ FOOTER ============ */
footer {
    background: var(--dark);
    color: #A7A1CC;
    padding: 5rem 0 0
}

footer h6 {
    color: #fff;
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 1.3rem
}

footer a {
    color: #A7A1CC;
    text-decoration: none;
    transition: color .3s, transform .3s;
    display: inline-block;
    font-size: .94rem
}

footer a:hover {
    color: #fff;
    transform: translateX(4px)
}

.footer-bottom a:hover {
    transform: translateX(0px)
}

.footer-links li {
    margin-bottom: .75rem
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1rem;
    transition: all .35s ease
}

.social-btn:hover {
    background: var(--grad) !important;
    transform: translateY(-4px) scale(1.05);
    color: #fff
}

.newsletter-input {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    border-radius: 2rem;
    padding: .8rem 1.3rem
}

.newsletter-input::placeholder {
    color: #7B75A3
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 .25rem rgba(108, 76, 241, .2)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 3.5rem;
    padding: 1.6rem 0;
    font-size: .87rem
}

/* ============ TO TOP ============ */
.to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--grad);
    color: #fff;
    border: 0;
    display: grid;
    place-items: center;
    font-size: 1.15rem;
    box-shadow: 0 16px 34px -10px rgba(108, 76, 241, .6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all .4s ease;
    z-index: 990
}

.to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.to-top:hover {
    color: #fff;
    transform: translateY(-5px)
}

/* ============ A11Y / MOTION ============ */
@media (prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important
    }

    html {
        scroll-behavior: auto
    }
}

/* ============ BLOG HERO ============ */
.blog-hero {
    position: relative;
    padding: 12rem 0 5rem;
    overflow: hidden;
    background-color: var(--bg-soft);
    background-image: radial-gradient(rgba(23, 19, 58, .04) 1px, transparent 1px);
    background-size: 26px 26px
}

.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600
}

.breadcrumb-item.active {
    color: var(--muted);
    font-weight: 500
}

/* ============ ARTICLE STYLING ============ */
.article-container {
    padding: 5rem 0
}

.article-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.6rem
}

.article-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--heading);
    margin-top: 2.5rem;
    margin-bottom: 1.1rem;
    letter-spacing: -.02em
}

.article-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--heading);
    margin-top: 1.8rem;
    margin-bottom: 0.9rem
}

.blockquote-custom {
    border-left: 4px solid var(--primary);
    padding: 1.5rem 1.8rem;
    background: var(--bg-soft);
    border-radius: 0 1rem 1rem 0;
    margin: 2.2rem 0;
    position: relative
}

.blockquote-custom p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading);
    margin: 0;
    line-height: 1.6
}

.article-tag-badge {
    display: inline-block;
    padding: .4rem 1rem;
    background: rgba(108, 76, 241, .08);
    color: var(--primary);
    font-weight: 700;
    font-size: .8rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem
}

/* ============ SIDEBAR ============ */
.sidebar-widget {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 2.2rem 1.8rem;
    margin-bottom: 2.2rem;
    box-shadow: var(--shadow-soft)
}

.sidebar-widget h6 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--heading);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 1.3rem;
    border-bottom: 2px solid var(--bg-soft);
    padding-bottom: .75rem
}

.related-post-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    align-items: center;
    text-decoration: none;
    transition: transform .3s ease
}

.related-post-item:hover {
    transform: translateX(4px)
}

.related-post-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--bg-soft);
    color: var(--primary);
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    flex-shrink: 0
}

.related-post-item h7 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--heading);
    line-height: 1.3;
    display: block
}

.related-post-item small {
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 500
}

/* Store badges inside Sidebar */
.store-badges-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.75rem
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    background: var(--dark);
    color: #fff;
    border-radius: 16px;
    padding: .65rem 1.25rem;
    text-decoration: none;
    transition: all .35s ease;
    box-shadow: 0 16px 34px -14px rgba(23, 19, 58, .5)
}

.store-badge i {
    font-size: 1.9rem;
    line-height: 1
}

.store-badge small {
    display: block;
    font-size: .68rem;
    opacity: .75;
    font-weight: 500;
    line-height: 1
}

.store-badge b {
    font-size: .98rem;
    font-weight: 700;
    line-height: 1.2
}

.store-badge:hover {
    transform: translateY(-4px) scale(1.02);
    color: #fff;
    box-shadow: 0 22px 44px -14px rgba(108, 76, 241, .55)
}

.cta.aos-init.aos-animate .store-badge:hover {
    transform: translateY(-4px) scale(1.02);
    color: #000;
    box-shadow: 0 22px 44px -14px rgba(108, 76, 241, .55)
}

.carousel-inner {
    padding: 10px;
}