:root {
    --bg: #07070f;
    --bg2: #0d0d1c;
    --card: rgba(255, 255, 255, .04);
    --border: rgba(255, 255, 255, .08);
    --p: #7c3aed;
    --c: #22d3ee;
    --pk: #e879f9;
    --t: #f1f5f9;
    --m: #64748b;
    --g: linear-gradient(135deg, #7c3aed, #22d3ee)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden
}

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--t);
    line-height: 1.6
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 5%;
    background: rgba(7, 7, 15, .88);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: padding .3s
}

.logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    cursor: pointer
}

.logo-txt {
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: -1px;
    background: var(--g);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.nl {
    display: flex;
    gap: 1.8rem;
    list-style: none
}

.nl a {
    color: var(--m);
    font-size: .875rem;
    cursor: pointer;
    transition: color .2s
}

.nl a:hover {
    color: var(--t)
}

.nr {
    display: flex;
    align-items: center;
    gap: .75rem
}

.lt {
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--t);
    padding: .35rem .9rem;
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    font-size: .8rem;
    transition: border-color .2s
}

.lt:hover {
    border-color: var(--p)
}

.bc {
    background: var(--g);
    color: #fff;
    border: none;
    padding: .55rem 1.3rem;
    border-radius: 999px;
    cursor: pointer;
    font: 600 .85rem system-ui, sans-serif;
    transition: opacity .2s, transform .2s
}

.bc:hover {
    opacity: .85;
    transform: translateY(-1px)
}

.hbg {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    background: none;
    border: none;
    padding: .25rem
}

.hbg span {
    width: 22px;
    height: 2px;
    background: var(--t);
    border-radius: 2px;
    display: block
}

.mm {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99;
    background: var(--bg);
    padding: 5.5rem 5% 2rem;
    flex-direction: column;
    gap: 1.5rem
}

.mm.open {
    display: flex
}

.mm a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--t);
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
    cursor: pointer
}

#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 5% 4rem;
    position: relative;
    overflow: hidden
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .12;
    pointer-events: none;
    animation: flt 9s ease-in-out infinite
}

.o1 {
    width: 550px;
    height: 550px;
    background: var(--p);
    top: -150px;
    left: -100px
}

.o2 {
    width: 420px;
    height: 420px;
    background: var(--c);
    bottom: -120px;
    right: -80px;
    animation-delay: -4s
}

.o3 {
    width: 300px;
    height: 300px;
    background: var(--pk);
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -7s
}

@keyframes flt {

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

    50% {
        transform: translateY(-28px) scale(1.04)
    }
}

.hz {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto
}

.hero-logo {
    margin: 0 auto 1.5rem;
    display: block;
    filter: drop-shadow(0 0 28px rgba(66, 165, 245, .3));
    animation: lglow 3s ease-in-out infinite alternate
}

@keyframes lglow {
    from {
        filter: drop-shadow(0 0 20px rgba(66, 165, 245, .2))
    }

    to {
        filter: drop-shadow(0 0 40px rgba(124, 58, 237, .4))
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(124, 58, 237, .15);
    border: 1px solid rgba(124, 58, 237, .3);
    padding: .35rem 1rem;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 500;
    color: #a78bfa;
    margin-bottom: 1.5rem
}

.dot {
    width: 6px;
    height: 6px;
    background: var(--p);
    border-radius: 50%;
    animation: pu 1.5s infinite
}

@keyframes pu {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

h1 {
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 1.4rem
}

.grd {
    background: var(--g);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.sub {
    font-size: clamp(.95rem, 2vw, 1.15rem);
    color: var(--m);
    max-width: 580px;
    margin: 0 auto 2.5rem
}

.hbtns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}

.bp {
    background: var(--g);
    color: #fff;
    border: none;
    padding: .9rem 2rem;
    border-radius: 999px;
    cursor: pointer;
    font: 700 1rem system-ui, sans-serif;
    display: flex;
    align-items: center;
    gap: .5rem;
    transition: opacity .2s, transform .2s, box-shadow .2s
}

.bp:hover {
    opacity: .85;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(124, 58, 237, .3)
}

.stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 4rem;
    flex-wrap: wrap
}

.stn {
    font-size: 2rem;
    font-weight: 900;
    background: var(--g);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.stl {
    font-size: .78rem;
    color: var(--m);
    margin-top: .2rem
}

section {
    padding: 6rem 5%
}

.sl {
    display: inline-block;
    background: rgba(34, 211, 238, .1);
    border: 1px solid rgba(34, 211, 238, .2);
    color: var(--c);
    padding: .3rem 1rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: .9rem
}

.st {
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: .8rem
}

.ss {
    color: var(--m);
    max-width: 520px;
    margin-bottom: 2.5rem;
    font-size: .95rem
}

.sg {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem
}

.sc {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all .3s;
    position: relative;
    overflow: hidden
}

.sc::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--g);
    opacity: 0;
    transition: opacity .3s;
    border-radius: inherit
}

.sc:hover {
    border-color: transparent;
    transform: translateY(-5px)
}

.sc:hover::before {
    opacity: .05
}

.si {
    width: 54px;
    height: 54px;
    border-radius: .875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1
}

.si.pu {
    background: rgba(124, 58, 237, .2)
}

.si.cy {
    background: rgba(34, 211, 238, .2)
}

.si.pk {
    background: rgba(232, 121, 249, .2)
}

.sc-ttl {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: .5rem;
    position: relative;
    z-index: 1
}

.sc-dsc {
    color: var(--m);
    font-size: .88rem;
    line-height: 1.75;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    position: relative;
    z-index: 1
}

.tg {
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--border);
    padding: .22rem .65rem;
    border-radius: 999px;
    font-size: .72rem;
    color: var(--m)
}

#how {
    background: var(--bg2)
}

.stpg {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem
}

.stpc {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all .3s
}

.stpc:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 58, 237, .3)
}

.spn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--g);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 auto 1rem;
    color: #fff
}

.spt {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: .5rem
}

.spd {
    color: var(--m);
    font-size: .87rem
}

.cg {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2.5rem
}

.cc {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.4rem 1rem;
    text-align: center;
    transition: all .3s
}

.cc:hover {
    border-color: var(--c);
    transform: translateY(-3px)
}

.ci-uc {
    font-size: 1.8rem;
    margin-bottom: .6rem
}

.ct {
    font-size: .82rem;
    font-weight: 600
}

#contact {
    text-align: center
}

.cntc {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 2rem;
    padding: 4rem 2rem;
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    overflow: hidden
}

.cntc::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(124, 58, 237, .07) 0%, transparent 70%);
    pointer-events: none
}

.cnt-ttl {
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    font-weight: 800;
    margin-bottom: .9rem;
    position: relative
}

.cnt-sub {
    color: var(--m);
    margin-bottom: 2rem;
    position: relative
}

.cbtns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative
}

.bwa {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    border: none;
    padding: .9rem 2rem;
    border-radius: 999px;
    cursor: pointer;
    font: 700 1rem system-ui, sans-serif;
    display: flex;
    align-items: center;
    gap: .5rem;
    transition: all .2s
}

.bwa:hover {
    opacity: .85;
    transform: translateY(-2px)
}

footer {
    padding: 1.8rem 5%;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem
}

.fl-logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    cursor: pointer
}

.fl-txt {
    font-size: .9rem;
    font-weight: 800;
    background: var(--g);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.fc {
    color: var(--m);
    font-size: .78rem
}

.flk {
    display: flex;
    gap: 1.5rem
}

.flk a {
    color: var(--m);
    font-size: .78rem;
    cursor: pointer;
    transition: color .2s
}

.flk a:hover {
    color: var(--t)
}

/* ── Social Proof Bar ─────────────────────────────── */
.sproof {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1.6rem 0 0;
    font-size: .78rem;
    color: var(--m)
}

.sp-item {
    display: flex;
    align-items: center;
    gap: .35rem
}

.sp-item span {
    color: rgba(255, 255, 255, .5)
}

.sp-sep {
    color: var(--border)
}

/* ── WhatsApp Hero Button ─────────────────────────── */
.hbwa {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    border: none;
    padding: .9rem 2rem;
    border-radius: 999px;
    cursor: pointer;
    font: 700 1rem system-ui, sans-serif;
    display: flex;
    align-items: center;
    gap: .5rem;
    transition: opacity .2s, transform .2s, box-shadow .2s
}

.hbwa:hover {
    opacity: .88;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, .3)
}

/* ── Sticky CTA (mobile only) ─────────────────────── */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--g);
    padding: .9rem 5%;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: .88rem;
    color: #fff;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .35);
    animation: slideUp .3s ease
}

@keyframes slideUp {
    from {
        transform: translateY(100%)
    }

    to {
        transform: translateY(0)
    }
}

.sticky-cta.show {
    display: flex
}

.sticky-cta button {
    background: #fff;
    color: var(--p);
    border: none;
    padding: .55rem 1.2rem;
    border-radius: 999px;
    font: 700 .85rem system-ui, sans-serif;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity .2s
}

.sticky-cta button:hover {
    opacity: .88
}

/* ── Animation / Utils ────────────────────────────── */
.fu {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease
}

.fu.vis {
    opacity: 1;
    transform: translateY(0)
}

@media(max-width:768px) {

    .nl,
    .nr .bc {
        display: none
    }

    .hbg {
        display: flex
    }

    .stats {
        gap: 2rem
    }

    footer {
        flex-direction: column;
        align-items: flex-start
    }

    .sproof {
        gap: .8rem
    }

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

    .hbtns .bp,
    .hbtns .hbwa {
        width: 100%;
        max-width: 320px;
        justify-content: center
    }
}

@media(min-width:769px) {
    .sticky-cta {
        display: none !important
    }
}