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

    :root {
        --bg: #09090f;
        --bg2: #0e0e18;
        --bg3: #131320;
        --surface: rgba(255, 255, 255, .035);
        --sh: rgba(255, 255, 255, .07);
        --border: rgba(255, 255, 255, .06);
        --bl: rgba(255, 255, 255, .12);
        --text: #e8e8ec;
        --td: #7a7a8e;
        --tm: #a0a0b4;
        --accent: #00d4ff;
        --a2: #8b5cf6;
        --a3: #06d6a0;
        --ag: rgba(0, 212, 255, .18);
        --a2g: rgba(139, 92, 246, .18);
        --r: 16px;
        --rs: 10px;
        --rx: 6px;
        --hf: 'Poppins', sans-serif;
        --bf: 'Inter', system-ui, sans-serif
    }

    html {
        scroll-behavior: smooth
    }

    body {
        font-family: var(--bf);
        background: var(--bg);
        color: var(--text);
        line-height: 1.6;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased
    }

    a {
        color: inherit;
        text-decoration: none
    }

    button {
        font-family: var(--bf);
        cursor: pointer;
        border: none;
        outline: none;
        background: none
    }

    input,
    select,
    textarea {
        font-family: var(--bf);
        outline: none
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px
    }

    .sec {
        padding: 100px 0;
        position: relative
    }

    .sl {
        font-size: .7rem;
        font-weight: 700;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: 14px
    }

    .st {
        font-family: var(--hf);
        font-size: clamp(1.5rem, 3.5vw, 2.4rem);
        line-height: 1.25;
        margin-bottom: 16px
    }

    .ss {
        color: var(--td);
        font-size: .95rem;
        max-width: 580px;
        line-height: 1.75
    }

    .tc {
        text-align: center
    }

    .ma {
        margin-left: auto;
        margin-right: auto
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(28px)
        }

        to {
            opacity: 1;
            transform: none
        }
    }

    @keyframes glow {

        0%,
        100% {
            box-shadow: 0 0 16px var(--ag)
        }

        50% {
            box-shadow: 0 0 32px var(--ag), 0 0 64px rgba(0, 212, 255, .06)
        }
    }

    @keyframes pulse {

        0%,
        100% {
            opacity: .5
        }

        50% {
            opacity: 1
        }
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: scale(.96) translateY(12px)
        }

        to {
            opacity: 1;
            transform: none
        }
    }

    @keyframes b1 {

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

        33% {
            transform: translate(30px, -50px) scale(1.1)
        }

        66% {
            transform: translate(-20px, 20px) scale(.9)
        }
    }

    @keyframes b2 {

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

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

        66% {
            transform: translate(20px, -40px) scale(1.1)
        }
    }

    .rv {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity .6s ease, transform .6s ease
    }

    .rv.v {
        opacity: 1;
        transform: none
    }

    .anim-l {
        opacity: 0;
        transform: translateX(-60px);
        transition: opacity .75s cubic-bezier(.22, 1, .36, 1), transform .75s cubic-bezier(.22, 1, .36, 1)
    }

    .anim-r {
        opacity: 0;
        transform: translateX(60px);
        transition: opacity .75s cubic-bezier(.22, 1, .36, 1), transform .75s cubic-bezier(.22, 1, .36, 1)
    }

    .anim-l.anim-v,
    .anim-r.anim-v {
        opacity: 1;
        transform: translateX(0)
    }

    @media(max-width:768px) {
        .anim-l {
            transform: translateX(-30px)
        }

        .anim-r {
            transform: translateX(30px)
        }

        .anim-l,
        .anim-r {
            transition-duration: .5s
        }
    }

    @media(prefers-reduced-motion:reduce) {

        .rv,
        .anim-l,
        .anim-r {
            transition: none;
            opacity: 1;
            transform: none
        }

        * {
            animation-duration: 0s !important;
            transition-duration: 0s !important
        }
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        padding: 14px 0;
        transition: background .3s, backdrop-filter .3s, box-shadow .3s
    }

    .nav.scrolled {
        background: rgba(9, 9, 15, .9);
        backdrop-filter: blur(20px);
        box-shadow: 0 1px 0 var(--border)
    }

    .nav-in {
        display: flex;
        align-items: center;
        justify-content: space-between
    }

    .nav-logo {
        font-size: 1.2rem;
        font-weight: 800;
        letter-spacing: -.5px
    }

    .nav-logo span {
        color: var(--accent)
    }

    .nav-links {
        display: flex;
        gap: 26px;
        align-items: center
    }

    .nav-links a {
        font-size: .8rem;
        font-weight: 500;
        color: var(--td);
        transition: color .2s
    }

    .nav-links a:hover {
        color: var(--text)
    }

    .nav-cta {
        font-family: var(--hf);
        background: var(--accent);
        color: #0a0a0f;
        font-weight: 700;
        font-size: .75rem;
        padding: 9px 22px;
        border-radius: 40px;
        transition: box-shadow .3s, transform .15s;
        display: inline-flex;
        align-items: center
    }

    .nav-cta:hover {
        box-shadow: 0 0 20px var(--ag);
        transform: translateY(-1px)
    }

    .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        padding: 4px
    }

    .hamburger span {
        width: 20px;
        height: 2px;
        background: var(--text);
        border-radius: 2px
    }

    .mob-menu {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(9, 9, 15, .97);
        z-index: 99;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px
    }

    .mob-menu.open {
        display: flex
    }

    .mob-menu a {
        font-size: 1.05rem;
        color: var(--td);
        font-weight: 500
    }

    @media(max-width:768px) {
        .nav-links {
            display: none
        }

        .hamburger {
            display: flex
        }
    }

    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
        padding-top: 80px
    }

    .hero-blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(90px);
        pointer-events: none;
        opacity: .45;
        will-change: transform
    }

    .hero-blob.a {
        width: 480px;
        height: 480px;
        background: var(--ag);
        top: -120px;
        right: -60px;
        animation: b1 20s ease-in-out infinite
    }

    .hero-blob.b {
        width: 380px;
        height: 380px;
        background: var(--a2g);
        bottom: -100px;
        left: -80px;
        animation: b2 24s ease-in-out infinite
    }

    .hero-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: center
    }

    .hero-c {
        position: relative;
        z-index: 1
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 40px;
        padding: 6px 16px;
        font-size: .75rem;
        color: var(--accent);
        margin-bottom: 26px;
        animation: fadeUp .7s ease
    }

    .hero-badge .dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--accent);
        animation: pulse 2s infinite
    }

    .hero-c h1 {
        font-family: var(--hf);
        font-size: clamp(1.8rem, 4.5vw, 3rem);
        line-height: 1.15;
        margin-bottom: 20px;
        animation: fadeUp .7s ease .1s both
    }

    .hero-c h1 .hl {
        background: linear-gradient(135deg, var(--accent), var(--a2));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text
    }

    .hero-c>p {
        font-size: clamp(.9rem, 1.6vw, 1.05rem);
        color: var(--td);
        max-width: 500px;
        line-height: 1.75;
        margin-bottom: 32px;
        animation: fadeUp .7s ease .2s both
    }

    .hero-btns {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        animation: fadeUp .7s ease .3s both
    }

    .btn-p {
        font-family: var(--hf);
        background: var(--accent);
        color: #0a0a0f;
        font-weight: 700;
        font-size: .85rem;
        padding: 13px 30px;
        border-radius: 50px;
        transition: box-shadow .3s, transform .15s;
        animation: glow 3s infinite
    }

    .btn-p:hover {
        box-shadow: 0 0 28px var(--ag);
        transform: translateY(-2px)
    }

    .btn-s {
        font-family: var(--hf);
        background: var(--surface);
        color: var(--text);
        font-weight: 500;
        font-size: .85rem;
        padding: 13px 30px;
        border-radius: 50px;
        border: 1px solid var(--border);
        transition: background .3s, transform .15s;
        display: inline-flex;
        align-items: center;
        justify-content: center
    }

    .btn-s:hover {
        background: var(--sh);
        transform: translateY(-2px)
    }

    .hero-vis {
        position: relative;
        z-index: 1;
        animation: fadeUp .8s ease .35s both
    }

    .hero-vis svg {
        width: 100%;
        height: auto;
        filter: drop-shadow(0 0 40px rgba(0, 212, 255, .08))
    }

    @keyframes hFloat1 {

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

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

    @keyframes hFloat2 {

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

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

    @keyframes hFloat3 {

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

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

    @keyframes hFloat4 {

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

        50% {
            transform: translateY(-11px) scale(1.08)
        }
    }

    .hero-icon {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        backdrop-filter: blur(10px);
        border: 1px solid var(--border);
        box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
        z-index: 10;
        pointer-events: none
    }

    .hero-icon svg {
        width: 60%;
        height: 60%
    }

    .hi-1 {
        width: 52px;
        height: 52px;
        background: rgba(0, 212, 255, .1);
        top: 8%;
        left: 25%;
        animation: hFloat1 4s ease-in-out infinite
    }

    .hi-2 {
        width: 48px;
        height: 48px;
        background: rgba(139, 92, 246, .1);
        top: 1%;
        right: -8%;
        animation: hFloat2 4.5s ease-in-out .6s infinite
    }

    .hi-3 {
        width: 50px;
        height: 50px;
        background: rgba(6, 214, 160, .1);
        bottom: 18%;
        left: -10%;
        animation: hFloat3 5s ease-in-out 1.2s infinite
    }

    .hi-4 {
        width: 46px;
        height: 46px;
        background: rgba(255, 160, 50, .1);
        bottom: 5%;
        right: 6%;
        animation: hFloat4 4.2s ease-in-out .3s infinite
    }

    @media(max-width:768px) {
        .hero-inner {
            grid-template-columns: 1fr
        }

        .hero-vis {
            display: none
        }
    }

    .why-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        margin-top: 44px
    }

    .wc {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: var(--r);
        padding: 24px 20px;
        display: flex;
        gap: 14px;
        align-items: flex-start;
        transition: transform .3s, border-color .3s, box-shadow .3s
    }

    .wc:hover {
        transform: translateY(-3px);
        border-color: rgba(0, 212, 255, .15);
        box-shadow: 0 6px 24px rgba(0, 0, 0, .25)
    }

    .wi {
        min-width: 40px;
        height: 40px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        flex-shrink: 0
    }

    .wi.c1 {
        background: rgba(0, 212, 255, .08)
    }

    .wi.c2 {
        background: rgba(139, 92, 246, .08)
    }

    .wi.c3 {
        background: rgba(6, 214, 160, .08)
    }

    .wi.c4 {
        background: rgba(255, 160, 50, .08)
    }

    .wc h3 {
        font-size: .88rem;
        font-weight: 600;
        margin-bottom: 3px
    }

    .wc p {
        font-size: .78rem;
        color: var(--td);
        line-height: 1.6
    }

    @media(max-width:640px) {
        .why-grid {
            grid-template-columns: 1fr
        }
    }

    .steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-top: 48px;
        position: relative
    }

    .steps::before {
        content: '';
        position: absolute;
        top: 32px;
        left: 12%;
        right: 12%;
        height: 2px;
        background: linear-gradient(90deg, var(--accent), var(--a2));
        opacity: .15
    }

    .step {
        text-align: center;
        position: relative
    }

    .step-n {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--accent), var(--a2));
        color: #fff;
        font-weight: 800;
        font-size: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 16px;
        position: relative;
        z-index: 1
    }

    .step h3 {
        font-size: .92rem;
        font-weight: 600;
        margin-bottom: 5px
    }

    .step p {
        font-size: .78rem;
        color: var(--td);
        max-width: 210px;
        margin: 0 auto;
        line-height: 1.6
    }

    @media(max-width:768px) {
        .steps {
            grid-template-columns: repeat(2, 1fr);
            gap: 32px
        }

        .steps::before {
            display: none
        }
    }

    @media(max-width:480px) {
        .steps {
            grid-template-columns: 1fr
        }
    }

    .ft-tabs {
        display: flex;
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 40px
    }

    .ft-tab {
        padding: 9px 18px;
        border-radius: 40px;
        font-size: .76rem;
        font-weight: 600;
        color: var(--td);
        background: var(--surface);
        border: 1px solid var(--border);
        transition: all .25s;
        cursor: pointer
    }

    .ft-tab:hover {
        color: var(--text);
        border-color: var(--bl)
    }

    .ft-tab.active {
        background: var(--accent);
        color: #0a0a0f;
        border-color: var(--accent)
    }

    .ft-panels {
        margin-top: 28px
    }

    .ft-panel {
        display: none
    }

    .ft-panel.active {
        display: block;
        animation: fadeUp .35s ease
    }

    .ft-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px
    }

    .ft-item {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: var(--r);
        padding: 24px 20px;
        transition: transform .3s, border-color .3s, box-shadow .3s
    }

    .ft-item:hover {
        transform: translateY(-3px);
        border-color: rgba(0, 212, 255, .12);
        box-shadow: 0 6px 20px rgba(0, 0, 0, .25)
    }

    .ft-item h4 {
        font-size: .88rem;
        font-weight: 600;
        margin-bottom: 7px;
        display: flex;
        align-items: center;
        gap: 10px
    }

    .ft-item h4 .ic {
        width: 30px;
        height: 30px;
        border-radius: 8px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: .95rem;
        flex-shrink: 0
    }

    .ft-item h4 .ic.c1 {
        background: rgba(0, 212, 255, .08)
    }

    .ft-item h4 .ic.c2 {
        background: rgba(139, 92, 246, .08)
    }

    .ft-item h4 .ic.c3 {
        background: rgba(6, 214, 160, .08)
    }

    .ft-item h4 .ic.c4 {
        background: rgba(255, 160, 50, .08)
    }

    .ft-item h4 .ic.c5 {
        background: rgba(255, 100, 150, .08)
    }

    .ft-item p {
        font-size: .8rem;
        color: var(--td);
        line-height: 1.65
    }

    .ft-item .tag {
        display: inline-block;
        margin-top: 8px;
        font-size: .63rem;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 3px 9px;
        border-radius: 20px;
        background: rgba(0, 212, 255, .08);
        color: var(--accent)
    }

    .tip {
        position: relative;
        cursor: help;
        border-bottom: 1px dashed var(--td)
    }

    .tip::after {
        content: attr(data-t);
        position: absolute;
        bottom: 120%;
        left: 50%;
        transform: translateX(-50%);
        background: var(--bg3);
        color: var(--text);
        border: 1px solid var(--bl);
        padding: 8px 12px;
        border-radius: var(--rx);
        font-size: .7rem;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s;
        z-index: 10
    }

    .tip:hover::after {
        opacity: 1
    }

    @media(max-width:640px) {
        .ft-list {
            grid-template-columns: 1fr
        }
    }

    .dw {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: var(--r);
        padding: 20px;
        margin-top: 40px;
        overflow: hidden
    }

    .dw-t {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 14px;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--border)
    }

    .dd {
        width: 10px;
        height: 10px;
        border-radius: 50%
    }

    .dd.r {
        background: #ff5f57
    }

    .dd.y {
        background: #ffbd2e
    }

    .dd.g {
        background: #28c840
    }

    .dw-b {
        display: grid;
        grid-template-columns: 160px 1fr;
        gap: 12px
    }

    .dw-s {
        display: flex;
        flex-direction: column;
        gap: 4px
    }

    .dn {
        padding: 7px 11px;
        border-radius: var(--rx);
        font-size: .73rem;
        color: var(--td);
        background: rgba(255, 255, 255, .015)
    }

    .dn.act {
        background: rgba(0, 212, 255, .07);
        color: var(--accent)
    }

    .dw-m {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 8px
    }

    .dc {
        background: rgba(255, 255, 255, .025);
        border: 1px solid var(--border);
        border-radius: var(--rx);
        padding: 13px 11px
    }

    .dc .lb {
        font-size: .6rem;
        color: var(--td);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 2px
    }

    .dc .vl {
        font-size: 1.2rem;
        font-weight: 700
    }

    .dc .vl.c1 {
        color: var(--accent)
    }

    .dc .vl.c2 {
        color: #28c840
    }

    .dc .vl.c3 {
        color: var(--a2)
    }

    .dc .vl.c4 {
        color: #ffa032
    }

    .d-ch {
        grid-column: 1/-1;
        background: rgba(255, 255, 255, .025);
        border: 1px solid var(--border);
        border-radius: var(--rx);
        padding: 12px 11px;
        height: 100px;
        overflow: hidden
    }

    .d-ch .lb {
        font-size: .6rem;
        color: var(--td);
        text-transform: uppercase;
        letter-spacing: 1px
    }

    .cbars {
        display: flex;
        align-items: flex-end;
        gap: 4px;
        height: 55px;
        margin-top: 8px
    }

    .cbar {
        flex: 1;
        border-radius: 3px 3px 0 0;
        background: linear-gradient(180deg, var(--accent), rgba(0, 212, 255, .12));
        transition: height .6s ease
    }

    @media(max-width:600px) {
        .dw-b {
            grid-template-columns: 1fr
        }

        .dw-s {
            display: none
        }
    }

    .uc-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin-top: 40px
    }

    .uc {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: var(--r);
        padding: 22px 18px;
        text-align: center;
        transition: transform .3s, border-color .3s
    }

    .uc:hover {
        transform: translateY(-3px);
        border-color: rgba(0, 212, 255, .12)
    }

    .uc .ui {
        font-size: 1.5rem;
        margin-bottom: 8px
    }

    .uc h3 {
        font-size: .82rem;
        font-weight: 600;
        margin-bottom: 3px
    }

    .uc p {
        font-size: .72rem;
        color: var(--td);
        line-height: 1.5
    }

    @media(max-width:768px) {
        .uc-grid {
            grid-template-columns: repeat(2, 1fr)
        }
    }

    @media(max-width:480px) {
        .uc-grid {
            grid-template-columns: 1fr
        }
    }

    .ps {
        display: flex;
        justify-content: center;
        gap: 48px;
        flex-wrap: wrap;
        margin-top: 40px
    }

    .pst {
        text-align: center
    }

    .pst .pn {
        font-family: var(--hf);
        font-size: clamp(1.5rem, 4vw, 2.2rem);
        background: linear-gradient(135deg, var(--accent), var(--a2));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text
    }

    .pst .pl {
        font-size: .8rem;
        color: var(--td);
        margin-top: 3px
    }

    .tg {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
        gap: 14px;
        margin-top: 40px
    }

    .ti {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: var(--r);
        padding: 24px 20px
    }

    .ti p {
        font-size: .83rem;
        color: var(--tm);
        line-height: 1.7;
        font-style: italic;
        margin-bottom: 12px
    }

    .ti .ta {
        font-size: .76rem;
        font-weight: 600
    }

    .ti .tr {
        font-size: .7rem;
        color: var(--td)
    }

    .ls {
        display: flex;
        justify-content: center;
        gap: 32px;
        flex-wrap: wrap;
        margin-top: 36px;
        opacity: .3
    }

    .ls span {
        font-size: .78rem;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--td)
    }

    .pg {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 14px;
        margin-top: 40px
    }

    .pc {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: var(--r);
        padding: 30px 22px;
        position: relative;
        transition: transform .3s
    }

    .pc:hover {
        transform: translateY(-3px)
    }

    .pc.pop {
        border-color: var(--accent);
        box-shadow: 0 0 36px rgba(0, 212, 255, .06)
    }

    .pc.pop::before {
        content: 'POPULAR';
        position: absolute;
        top: -11px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--accent);
        color: #0a0a0f;
        font-size: .6rem;
        font-weight: 700;
        letter-spacing: 1.5px;
        padding: 4px 14px;
        border-radius: 20px
    }

    .pc h3 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 4px
    }

    .pc .pr {
        font-family: var(--hf);
        font-size: 1.7rem;
        margin: 10px 0 6px
    }

    .pc .pr sup {
        font-size: .8rem
    }

    .pc .pr sub {
        font-size: .72rem;
        color: var(--td)
    }

    .pc .pd {
        font-size: .76rem;
        color: var(--td);
        margin-bottom: 16px
    }

    .pc ul {
        list-style: none;
        margin-bottom: 18px
    }

    .pc li {
        font-size: .76rem;
        color: var(--tm);
        padding: 3px 0 3px 16px;
        position: relative;
        line-height: 1.5
    }

    .pc li::before {
        content: '\2713';
        position: absolute;
        left: 0;
        color: var(--a3);
        font-weight: 700;
        font-size: .72rem
    }

    .pb {
        font-family: var(--hf);
        width: 100%;
        padding: 11px;
        border-radius: 50px;
        font-weight: 600;
        font-size: .8rem;
        transition: all .25s
    }

    .pb.pri {
        background: var(--accent);
        color: #0a0a0f
    }

    .pb.pri:hover {
        box-shadow: 0 0 20px var(--ag)
    }

    .pb.sec2 {
        background: var(--sh);
        color: var(--text);
        border: 1px solid var(--border)
    }

    .pb.sec2:hover {
        border-color: var(--accent)
    }

    .faq-l {
        max-width: 700px;
        margin: 40px auto 0;
        display: flex;
        flex-direction: column;
        gap: 8px
    }

    .faq-i {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: var(--rs);
        overflow: hidden
    }

    .faq-q {
        width: 100%;
        text-align: left;
        padding: 15px 18px;
        font-size: .86rem;
        font-weight: 600;
        color: var(--text);
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: color .2s
    }

    .faq-q:hover {
        color: var(--accent)
    }

    .faq-q .ar {
        transition: transform .3s;
        font-size: .72rem;
        color: var(--td)
    }

    .faq-i.open .faq-q .ar {
        transform: rotate(180deg)
    }

    .faq-a {
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease, padding .35s ease;
        padding: 0 18px
    }

    .faq-i.open .faq-a {
        max-height: 300px;
        padding: 0 18px 14px
    }

    .faq-a p {
        font-size: .8rem;
        color: var(--td);
        line-height: 1.7
    }

    .cta-s {
        background: linear-gradient(135deg, rgba(0, 212, 255, .04), rgba(139, 92, 246, .04));
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border)
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px
    }

    @media(max-width:500px) {
        .form-row {
            grid-template-columns: 1fr
        }
    }

    .fi,
    .ft2,
    .fs {
        width: 100%;
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: var(--rx);
        padding: 12px 14px;
        font-size: .84rem;
        color: var(--text);
        transition: border-color .2s
    }

    .fi:focus,
    .ft2:focus,
    .fs:focus {
        border-color: var(--accent)
    }

    .fi::placeholder,
    .ft2::placeholder {
        color: var(--td)
    }

    .ft2 {
        resize: vertical;
        min-height: 85px
    }

    .fs {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg fill='%237a7a8e' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 13px;
        padding-right: 36px
    }

    .fs option {
        background: var(--bg2);
        color: var(--text)
    }

    .btn-sub {
        font-family: var(--hf);
        width: 100%;
        padding: 14px;
        border-radius: 50px;
        font-size: .88rem;
        font-weight: 700;
        background: var(--accent);
        color: #0a0a0f;
        transition: box-shadow .3s, transform .15s;
        margin-top: 4px
    }

    .btn-sub:hover {
        box-shadow: 0 0 22px var(--ag);
        transform: translateY(-2px)
    }

    .btn-sub:disabled {
        opacity: .4;
        cursor: not-allowed;
        transform: none;
        box-shadow: none
    }

    .mo {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 200;
        background: rgba(0, 0, 0, .72);
        backdrop-filter: blur(8px);
        align-items: center;
        justify-content: center;
        padding: 20px
    }

    .mo.open {
        display: flex
    }

    .modal {
        background: var(--bg2);
        border: 1px solid var(--border);
        border-radius: var(--r);
        max-width: 500px;
        width: 100%;
        max-height: 90vh;
        overflow-y: auto;
        padding: 30px 26px;
        position: relative;
        animation: slideIn .3s ease
    }

    .mx {
        position: absolute;
        top: 12px;
        right: 12px;
        color: var(--td);
        font-size: 1.3rem;
        transition: color .2s;
        line-height: 1
    }

    .mx:hover {
        color: var(--text)
    }

    .modal h2 {
        font-size: 1.15rem;
        font-weight: 700;
        margin-bottom: 4px
    }

    .modal .ms {
        color: var(--td);
        font-size: .8rem;
        margin-bottom: 18px
    }

    .modal .fg {
        display: flex;
        flex-direction: column;
        gap: 10px
    }

    .suc {
        text-align: center;
        padding: 16px 0
    }

    .suc .ck {
        font-size: 2.5rem;
        margin-bottom: 8px
    }

    .suc h3 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 5px;
        color: var(--a3)
    }

    .suc p {
        font-size: .82rem;
        color: var(--td);
        line-height: 1.6;
        margin-bottom: 12px
    }

    .wa {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: #25D366;
        color: #fff;
        font-weight: 600;
        font-size: .78rem;
        padding: 8px 18px;
        border-radius: 40px;
        transition: opacity .2s
    }

    .wa:hover {
        opacity: .85
    }

    .icsb {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: var(--sh);
        color: var(--text);
        font-weight: 500;
        font-size: .76rem;
        padding: 8px 16px;
        border-radius: 40px;
        border: 1px solid var(--border);
        transition: border-color .2s;
        margin-right: 8px
    }

    .icsb:hover {
        border-color: var(--accent)
    }

    .toast {
        position: fixed;
        bottom: 28px;
        right: 28px;
        z-index: 300;
        padding: 14px 20px;
        border-radius: var(--rs);
        font-size: .83rem;
        font-weight: 500;
        transform: translateY(100px);
        opacity: 0;
        transition: all .4s ease;
        pointer-events: none
    }

    .toast.show {
        transform: translateY(0);
        opacity: 1
    }

    footer {
        border-top: 1px solid var(--border);
        padding: 40px 0
    }

    .fgrid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 24px
    }

    .fgrid h4 {
        font-size: .7rem;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--tm);
        margin-bottom: 10px
    }

    .fgrid a {
        display: block;
        font-size: .76rem;
        color: var(--td);
        padding: 2px 0;
        transition: color .2s
    }

    .fgrid a:hover {
        color: var(--accent)
    }

    .fb p {
        font-size: .76rem;
        color: var(--td);
        line-height: 1.6;
        margin-top: 8px
    }

    .fbot {
        margin-top: 28px;
        padding-top: 16px;
        border-top: 1px solid var(--border);
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 8px
    }

    .fbot p {
        font-size: .7rem;
        color: var(--td)
    }

    .fbot a {
        color: var(--accent)
    }

    @media(max-width:640px) {
        .fgrid {
            grid-template-columns: 1fr 1fr;
            gap: 18px
        }
    }

    .pshape {
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
        opacity: .07;
        will-change: transform
    }

    ::selection {
        background: var(--accent);
        color: #0a0a0f
    }

    ::-webkit-scrollbar {
        width: 5px
    }

    ::-webkit-scrollbar-track {
        background: var(--bg)
    }

    ::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, .08);
        border-radius: 4px
    }