    :root {
        --purple: #7a66ff;
        --purple-deep: #4a3bc4;
        --purple-soft: #e8e4ff;
        --ink: #0b0a14;
        --ink-2: #1a1826;
        --white: #ffffff;
        --mist: #f6f5fb;
        --line: rgba(11, 10, 20, .08);
        --line-dark: rgba(255, 255, 255, .12);
        --ease: cubic-bezier(.22, 1, .36, 1);
    }

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0
    }

    html,
    body {
        background: var(--white);
        color: var(--ink);
        font-family: 'Kanit', system-ui, sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 1.55;
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden
    }

    h1,
    h2,
    h3,
    h4,
    h5 {
        font-family: 'Syne', sans-serif;
        font-weight: 700;
        line-height: 1.02;
        letter-spacing: -.02em
    }

    a {
        color: inherit;
        text-decoration: none
    }

    button {
        font-family: inherit;
        cursor: pointer;
        border: none;
        background: none;
        color: inherit
    }

    img {
        max-width: 100%;
        display: block
    }

    .mono {
        font-family: 'JetBrains Mono', monospace;
        font-size: 12px;
        letter-spacing: .05em;
        text-transform: uppercase
    }

    .container {
        max-width: 1320px;
        margin: 0 auto;
        padding: 0 32px
    }

    @media(max-width:640px) {
        .container {
            padding: 0 20px
        }
    }

    .cursor-dot,
    .cursor-ring {
        position: fixed;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 9999;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        mix-blend-mode: difference
    }

    .cursor-dot {
        width: 6px;
        height: 6px;
        background: #fff
    }

    .cursor-ring {
        width: 38px;
        height: 38px;
        border: 1px solid rgba(255, 255, 255, .6);
        transition: transform .15s var(--ease), width .3s, height .3s, border-color .3s
    }

    .cursor-ring.grow {
        width: 68px;
        height: 68px;
        border-color: rgba(255, 255, 255, .9)
    }

    @media(max-width:900px) {

        .cursor-dot,
        .cursor-ring {
            display: none
        }
    }

    nav.top {
        /* position:fixed;top:0;left:0;right:0; */
        z-index: 100;
        padding: 18px 0;
        transition: background .3s, backdrop-filter .3s, padding .3s
    }

    .top .inner {
        display: flex;
        align-items: center;
    }

    /* Logo left la */
    .logo {
        margin-right: auto;
    }

    /* Menu + button group */
    .nav-links {
        display: flex;
        align-items: center;
        gap: 25px;
    }

    /* Button spacing */
    .top .btn {
        margin-left: 20px;
    }

    nav.top.scrolled {
        background: rgba(255, 255, 255, .72);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--line);
        padding: 12px 0
    }

    nav.top .inner {
        display: flex;
        align-items: center;
        justify-content: space-between
    }

    .logo {
        height: 100%
    }

    @media (max-width:468px) {
        .logo {
            width: 100% !important;
        }
    }

    .nav-links {
        display: flex;
        gap: 36px;
        align-items: center
    }

    .nav-links a {
        font-size: 18px;
        color: var(--ink);
        transition: opacity .2s
    }

    .nav-links a:hover {
        opacity: 1
    }

    @media(max-width:900px) {
        .nav-links {
            display: none
        }
    }

    .btn {
        border: 1px solid;
        disvar(--purple)play: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 24px;
        border-radius: 100px;
        font-weight: 500;
        font-size: 15px;
        transition: transform .2s var(--ease), background .2s, color .2s, box-shadow .3s;
        position: relative;
        overflow: hidden;
        white-space: nowrap
    }

    .btn-primary {
        background: #7765ff;
        color: #fff;
        box-shadow: 0 10px 30px -10px rgba(122, 102, 255, .6)
    }

    .btn-primary:hover {
        background: var(--purple-deep);
        transform: translateY(-2px);
        box-shadow: 0 20px 40px -10px rgba(122, 102, 255, .7)
    }

    .btn-ghost {
        background: transparent;
        color: var(--ink);
        border: 1px solid var(--line);
        border: 1px solid
    }

    .btn-ghost:hover {
        background: var(--ink);
        color: #fff;
        border-color: var(--ink)
    }

    .btn svg {
        width: 16px;
        height: 16px
    }

    .bar {
        background: var(--ink);
        color: #fff;
        padding: 10px 0;
        font-size: 13px;
        overflow: hidden;
        position: relative
    }

    .bar-track {
        display: flex;
        gap: 60px;
        animation: scroll 40s linear infinite;
        white-space: nowrap
    }

    .bar-track span {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        opacity: .85
    }

    .bar-track span::before {
        content: "";
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--purple);
        display: inline-block
    }

    @keyframes scroll {
        from {
            transform: translateX(0)
        }

        to {
            transform: translateX(-50%)
        }
    }

    /* HERO with 3D */
    .hero {
        position: relative;
        padding: 50px 0 80px;
        overflow: hidden;
        background: linear-gradient(180deg, #7765FF);
        ;
        min-height: 100vh;
        display: flex;
        align-items: center
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 40px;
        align-items: center;
        width: 100%;
        position: relative;
        z-index: 2
    }

    @media(max-width:1024px) {
        .hero-grid {
            grid-template-columns: 1fr;
            gap: 20px
        }
    }

    .hero h1 {
        font-size: clamp(52px, 7.2vw, 108px);
        letter-spacing: -.035em
    }

    .hero h1 .word {
        display: inline-block;
        overflow: hidden;
        vertical-align: top
    }

    .hero h1 .word span {
        display: inline-block;
        animation: rise .9s var(--ease) both
    }

    .hero h1 .accent {
        font-style: italic;
        font-family: 'Syne', serif;
        font-weight: 600
    }

    .hero h1 .strike {
        position: relative;
        display: inline-block
    }

    .hero h1 .strike::after {
        content: "";
        position: absolute;
        left: -4%;
        right: -4%;
        top: 52%;
        height: 5px;
        background: var(--purple);
        transform-origin: left;
        animation: strike 1s var(--ease) 1.4s both;
        border-radius: 3px
    }

    @keyframes rise {
        from {
            transform: translateY(110%)
        }

        to {
            transform: translateY(0)
        }
    }

    @keyframes strike {
        from {
            transform: scaleX(0)
        }

        to {
            transform: scaleX(1)
        }
    }

    .hero-sub {
        font-size: 19px;
        line-height: 1.55;
        max-width: 540px;
        margin: 32px 0 0;
        opacity: 0;
        font-weight: 300;
        animation: fadeUp .8s var(--ease) 1.2s forwards
    }

    @keyframes fadeUp {
        to {
            opacity: .75;
            transform: translateY(0)
        }

        from {
            opacity: 0;
            transform: translateY(20px)
        }
    }

    .hero-ctas {
        display: flex;
        gap: 14px;
        margin-top: 36px;
        flex-wrap: wrap;
        opacity: 0;
        animation: fadeUp .8s var(--ease) 1.5s forwards
    }

    .hero-meta {
        display: flex;
        gap: 32px;
        margin-top: 40px;
        padding-top: 28px;
        border-top: 1px solid var(--line);
        opacity: 0;
        animation: fadeUp .8s var(--ease) 1.7s forwards;
        flex-wrap: wrap
    }

    .hero-meta .item .num {
        font-family: 'Syne', sans-serif;
        font-size: 30px;
        font-weight: 700;
        letter-spacing: -.02em
    }

    .hero-meta .item .lab {
        font-size: 13px;
        opacity: .6;
        margin-top: 2px
    }

    .hero-meta .item .num .plus {
        color: var(--purple)
    }

    /* image fixed start*/
    .logos-section {
        background: #f8f9ff;
        padding: 40px 0;
        align-items: center;
    }

    /* CONTAINER */
    .container {
        max-width: 1200px;
        margin: auto;
        padding: 0 20px;
    }

    /* 🔥 GRID (MAIN FIX) */
    .logos-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        /* desktop */
        gap: 30px;
        align-items: center;
    }

    /* LOGO */
    .logo-item {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* IMAGE */
    .logo-item img {
        width: 120px;
        height: 60px;
        object-fit: contain;
        filter: grayscale(100%);
        transition: 0.3s;
    }

    .logo-item img:hover {
        filter: grayscale(0%);
        transform: scale(1.05);
    }

    /* 📱 TABLET */
    @media (max-width: 768px) {
        .logos-container {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* 📱 MOBILE */
    @media (max-width: 480px) {
        .logos-container {
            grid-template-columns: repeat(2, 1fr);
            /* 🔥 FIXED 2 column */
            gap: 20px;
        }

        .logo-item img {
            width: 90px;
            height: auto;
        }
    }


    /* image fixed end*/

    /* 3D stage */
    .stage-3d {
        position: relative;
        height: 640px;
        border-radius: 24px;
        overflow: hidden;
        background: radial-gradient(circle at 30% 30%, #2a2157, #0b0a14 70%);
        box-shadow: 0 40px 80px -20px rgba(11, 10, 20, .4), 0 0 0 1px rgba(255, 255, 255, .05) inset
    }

    .stage-3d::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 60% 50%, rgba(122, 102, 255, .35), transparent 55%);
        pointer-events: none
    }

    @media(max-width:1024px) {
        .stage-3d {
            height: 460px
        }
    }

    #three-hero {
        width: 100%;
        height: 100%;
        cursor: grab
    }

    #three-hero:active {
        cursor: grabbing
    }

    .stage-overlay {
        position: absolute;
        inset: 0;
        pointer-events: none;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 22px;
        z-index: 3
    }

    .stage-overlay .top,
    .stage-overlay .bot {
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #fff
    }

    .stage-chip {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 7px 12px;
        border-radius: 100px;
        background: rgba(255, 255, 255, .08);
        backdrop-filter: blur(10px);
        font-size: 11px;
        letter-spacing: .08em;
        text-transform: uppercase;
        font-weight: 500;
        border: 1px solid rgba(255, 255, 255, .1)
    }

    .stage-chip.live::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #7cf47d;
        box-shadow: 0 0 0 0 rgba(124, 244, 125, .7);
        animation: pulse 1.8s infinite
    }

    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(124, 244, 125, .7)
        }

        70% {
            box-shadow: 0 0 0 10px rgba(124, 244, 125, 0)
        }

        100% {
            box-shadow: 0 0 0 0 rgba(124, 244, 125, 0)
        }
    }

    .stage-hint {
        font-family: 'JetBrains Mono', monospace;
        font-size: 10px;
        letter-spacing: .1em;
        text-transform: uppercase;
        opacity: .55;
        color: #fff
    }

    .stage-price {
        font-family: 'Syne', sans-serif;
        font-weight: 700;
        font-size: 26px;
        color: #fff;
        letter-spacing: -.02em
    }

    .stage-price span {
        opacity: .55;
        font-weight: 400;
        font-size: 12px;
        font-family: 'JetBrains Mono', monospace;
        letter-spacing: .05em;
        display: block;
        margin-top: 2px
    }

    /* Book card under 3D (inline to save space) */
    .book-inline {
        display: flex;
        gap: 10px;
        align-items: center;
        padding: 8px 8px 8px 18px;
        background: rgba(255, 255, 255, .08);
        backdrop-filter: blur(10px);
        border-radius: 100px;
        border: 1px solid rgba(255, 255, 255, .12);
        color: #fff;
        font-size: 13px
    }

    .book-inline input {
        background: transparent;
        border: none;
        color: #fff;
        font-family: inherit;
        font-size: 13px;
        outline: none;
        flex: 1;
        min-width: 0
    }

    .book-inline input::placeholder {
        color: rgba(255, 255, 255, .45)
    }

    .book-inline .mini-btn {
        background: var(--purple);
        color: #fff;
        border-radius: 100px;
        padding: 8px 14px;
        font-size: 13px;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 6px;
        cursor: pointer
    }

    /* WebGL background layer for hero */
    #bg-shader {
        position: absolute;
        inset: 0;
        z-index: 1;
        opacity: 0;
        pointer-events: none
    }

    .hero-grid {
        z-index: 2
    }

    /* Marquee logos */
    .logos-section {
        padding: 50px 0;
        background: var(--mist);
        overflow: hidden
    }

    .logos-label {
        text-align: center;
        font-size: 13px;
        opacity: .5;
        margin-bottom: 28px;
        letter-spacing: .1em;
        text-transform: uppercase
    }

    .logos-track {
        display: flex;
        gap: 80px;
        animation: scroll 30s linear infinite;
        align-items: center
    }

    .logos-track .logo-item {
        font-family: 'Syne', sans-serif;
        font-weight: 700;
        font-size: 28px;
        opacity: .5;
        white-space: nowrap;
        letter-spacing: -.02em;
        transition: opacity .3s
    }

    .logos-track .logo-item:hover {
        opacity: 1;
        color: var(--purple)
    }

    .logos-section {
        overflow: hidden;
        width: 100%;
        padding: 20px 0;
        /* कमी केलं */
    }

    .logos-track {
        display: flex;
        align-items: center;
        /* IMPORTANT */
        gap: 60px;
        width: max-content;
        animation: scroll 20s linear infinite;
    }

    .logo-item {
        width: 140px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }


    .logo-item img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        display: block;
        /* gap fix */
    }

    section {
        position: relative
    }

    .section-pad {
        padding: 50px 0
    }

    @media(max-width:768px) {
        .section-pad {
            padding: 50px 0
        }
    }

    .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 7px 14px;
        border: 1px solid var(--line);
        border-radius: 100px;
        font-size: 12px;
        letter-spacing: .08em;
        text-transform: uppercase;
        margin-bottom: 24px;
        background: var(--white)
    }

    .eyebrow.dark {
        background: rgba(255, 255, 255, .05);
        border-color: var(--line-dark);
        color: #fff
    }

    .eyebrow::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--purple)
    }

    .section-head {
        max-width: 900px;
        margin-bottom: 70px
    }

    .section-head h2 {
        font-size: clamp(42px, 5.5vw, 78px);
        letter-spacing: -.035em
    }

    .section-head h2 em {
        color: var(--purple);
        font-style: italic;
        font-family: 'Syne', serif
    }

    .section-head p {
        font-size: 18px;
        margin-top: 20px;
        opacity: .65;
        max-width: 640px;
        font-weight: 300
    }

    /* Services with 3D tilt */
    .services {
        background: var(--mist)
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        perspective: 1400px
    }

    @media(max-width:900px) {
        .services-grid {
            grid-template-columns: repeat(2, 1fr)
        }
    }

    @media(max-width:600px) {
        .services-grid {
            grid-template-columns: 1fr
        }
    }

    .service {
        padding: 34px 28px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 20px;
        position: relative;
        overflow: hidden;
        transition: background .4s var(--ease), transform .15s var(--ease), box-shadow .3s;
        cursor: pointer;
        min-height: 260px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transform-style: preserve-3d;
        will-change: transform
    }

    .service:hover {
        background: var(--ink);
        color: #fff;
        box-shadow: 0 40px 80px -20px rgba(11, 10, 20, .35)
    }

    .service:hover .svc-num {
        color: rgba(255, 255, 255, .3);
        color: #fff;
    }

    .service:hover .svc-arrow {
        background: var(--purple);
        color: #fff;
        transform: rotate(-45deg) translate(6px, 0)
    }

    .svc-num {
        font-family: 'JetBrains Mono', monospace;
        font-size: 12px;
        opacity: .4;
        transition: color .3s;
        transform: translateZ(20px)
    }

    .svc-ico {
        width: 56px;
        height: 56px;
        margin: 20px 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateZ(40px)
    }

    .svc-ico svg {
        width: 100%;
        height: 100%;
        stroke: currentColor;
        stroke-width: 1.2;
        fill: none
    }

    .service h3 {
        font-size: 22px;
        margin-top: 20px;
        transform: translateZ(30px)
    }

    .service p {
        font-size: 14px;
        margin-top: 8px;
        opacity: .65;
        min-height: 42px;
        transform: translateZ(20px)
    }

    .svc-arrow {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 1px solid currentColor;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 16px;
        transition: all .4s var(--ease);
        transform: rotate(-45deg) translateZ(30px)
    }

    .svc-arrow svg {
        width: 14px;
        height: 14px
    }


    /* Process rail */
    .process {
        background: var(--ink);
        color: #fff;
        overflow: hidden
    }

    .process .section-head h2 {
        color: #fff
    }

    .process-rail {
        position: relative;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 24px;
        margin-top: 40px
    }

    @media(max-width:900px) {
        .process-rail {
            grid-template-columns: 1fr
        }
    }

    .process-rail::before {
        content: "";
        position: absolute;
        top: 28px;
        left: 5%;
        right: 5%;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--purple) 20%, var(--purple) 80%, transparent)
    }

    @media(max-width:900px) {
        .process-rail::before {
            display: none
        }
    }

    .step {
        position: relative;
        padding-top: 70px
    }

    .step-num {
        position: absolute;
        top: 0;
        left: 0;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: var(--ink);
        border: 1px solid var(--purple);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Syne', sans-serif;
        font-weight: 700;
        font-size: 18px;
        color: #fff
    }

    .step-num::after {
        content: "";
        position: absolute;
        inset: -6px;
        border-radius: 50%;
        border: 1px solid var(--purple);
        opacity: 0;
        transition: all .5s var(--ease)
    }

    .step:hover .step-num::after {
        opacity: .6;
        inset: -10px
    }

    .step h4 {
        font-size: 20px;
        margin-bottom: 8px
    }

    .step p {
        font-size: 14px;
        opacity: .6;
        line-height: 1.55
    }

    .step .days {
        font-size: 11px;
        color: var(--purple);
        margin-top: 10px;
        font-family: 'JetBrains Mono', monospace;
        letter-spacing: .05em;
        text-transform: uppercase
    }

    /* Tech 3D carousel */
    .tech-section {
        padding: 10px 0 0px 0;
    }

    /* GRID */
    .tech-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        width: 100%;
    }

    /* CARD */
    .tech-card {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid #1f1f35;
        border-radius: 16px;
        padding: 25px;
        text-align: center;
        backdrop-filter: blur(10px);
        transition: 0.3s ease;
    }

    /* ICON */
    .tech-card img {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }

    /* TEXT */
    .tech-card span {
        display: block;
        color: #000;
        font-size: 18px;
    }

    /* HOVER */
    .tech-card:hover {
        transform: translateY(-6px);
        border-color: #7765FF;
        box-shadow: 0 10px 30px rgba(119, 101, 255, 0.2);
    }

    @media(max-width:768px) {
        .tech-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    .tech {
        background: var(--white)
    }

    .tech-ring-wrap {
        height: 420px;
        position: relative;
        perspective: 1600px;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .tech-ring {
        position: relative;
        width: 320px;
        height: 320px;
        transform-style: preserve-3d;
        animation: ringRot 30s linear infinite
    }

    .tech-ring.paused {
        animation-play-state: paused
    }

    @keyframes ringRot {
        from {
            transform: rotateY(0)
        }

        to {
            transform: rotateY(360deg)
        }
    }

    .tech-ring .tech-card {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 120px;
        height: 200px;
        margin: -70px 0 0 -60px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 18px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        backface-visibility: hidden;
        box-shadow: 0 20px 40px -20px rgba(11, 10, 20, .15);
        transition: border .3s
    }

    .tech-ring .tech-card:hover {
        border-color: var(--purple)
    }

    .tech-ring .tech-card svg {
        width: 46px;
        height: 46px
    }

    .tech-ring .tech-card .ti-name {
        font-size: 13px;
        font-weight: 500;
        font-family: 'Kanit', sans-serif
    }

    .tech-hint {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        font-family: 'JetBrains Mono', monospace;
        font-size: 11px;
        opacity: .5;
        letter-spacing: .1em;
        text-transform: uppercase
    }

    /* Portfolio with 3D tilt cards */
    .portfolio {
        background: var(--mist)
    }

    .folio-grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 20px;
        perspective: 1400px
    }

    .folio {
        grid-column: span 6;
        border-radius: 24px;
        overflow: hidden;
        position: relative;
        aspect-ratio: 4/3;
        background: var(--ink);
        color: #fff;
        cursor: pointer;
        transform-style: preserve-3d;
        transition: transform .15s var(--ease), box-shadow .3s;
        box-shadow: 0 20px 40px -20px rgba(11, 10, 20, .25)
    }

    .folio:nth-child(3) {
        grid-column: span 12;
        aspect-ratio: 21/7
    }

    @media(max-width:900px) {

        .folio,
        .folio:nth-child(3) {
            grid-column: span 12;
            aspect-ratio: 4/3
        }
    }

    .folio:hover {
        box-shadow: 0 40px 80px -20px rgba(11, 10, 20, .4)
    }

    .folio-bg {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, #7a66ff, #4a3bc4);
        transition: transform .6s var(--ease)
    }

    .folio:nth-child(2) .folio-bg {
        background: linear-gradient(135deg, #0b0a14, #2d2847)
    }

    .folio:nth-child(3) .folio-bg {
        background: linear-gradient(120deg, #ff9470, #ffb8d9 60%, #7a66ff)
    }

    .folio:nth-child(4) .folio-bg {
        background: linear-gradient(135deg, #1a1826, #4a3bc4)
    }

    .folio:nth-child(5) .folio-bg {
        background: linear-gradient(135deg, #2dd4bf, #0b0a14)
    }

    .folio:hover .folio-bg {
        transform: scale(1.06)
    }

    .folio-mock {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px;
        transform: translateZ(40px)
    }

    .folio-mock .browser {
        width: 70%;
        max-width: 340px;
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .4);
        transform: translateY(20px);
        transition: transform .5s var(--ease)
    }

    .folio:hover .browser {
        transform: translateY(0)
    }

    .browser-bar {
        height: 22px;
        background: #ededf1;
        display: flex;
        align-items: center;
        padding: 0 10px;
        gap: 4px;
        border-bottom: 1px solid #e5e5ea
    }

    .browser-bar span {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #d0d0d8
    }

    .browser-body {
        padding: 14px;
        display: grid;
        gap: 6px;
        background: #fff;
        min-height: 180px
    }

    .bb-row {
        height: 8px;
        border-radius: 3px;
        background: #ebebf0
    }

    .bb-row.w-60 {
        width: 60%
    }

    .bb-row.w-40 {
        width: 40%;
        background: var(--purple)
    }

    .bb-row.h-lg {
        height: 50px;
        background: linear-gradient(135deg, #eee, #ddd)
    }

    .bb-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px;
        margin-top: 4px
    }

    .bb-grid>div {
        height: 32px;
        border-radius: 4px;
        background: #ebebf0
    }

    .folio-meta {
        position: absolute;
        inset: auto 0 0 0;
        padding: 28px;
        color: #fff;
        z-index: 2;
        transform: translateZ(60px)
    }

    .folio-meta .tag {
        font-size: 11px;
        letter-spacing: .1em;
        text-transform: uppercase;
        opacity: .8;
        margin-bottom: 6px;
        font-family: 'JetBrains Mono', monospace
    }

    .folio-meta h3 {
        font-size: 22px
    }

    .folio-meta .stats {
        display: flex;
        gap: 20px;
        margin-top: 10px;
        font-size: 13px;
        opacity: .85;
        flex-wrap: wrap
    }

    .folio-meta .stats b {
        font-family: 'Syne', sans-serif;
        color: #fff
    }

    /* Stats with 3D floating numbers */
    .stats {
        background: var(--ink);
        color: #fff;
        padding: 80px 0;
        overflow: hidden;
        position: relative
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        position: relative;
        z-index: 2
    }

    @media(max-width:900px) {
        .stats-grid {
            grid-template-columns: repeat(2, 1fr)
        }
    }

    .stat {
        padding: 20px 0;
        text-align: center;
    }

    .stat .num {
        font-family: 'Syne', sans-serif;
        font-weight: 700;
        font-size: clamp(56px, 7vw, 96px);
        letter-spacing: -.04em;
        line-height: 1
    }

    .stat .num .plus,
    .stat .num .pct {
        color: var(--purple)
    }

    .stat .lab {
        font-size: 14px;
        opacity: .6;
        margin-top: 12px
    }

    #stats-3d {
        position: absolute;
        inset: 0;
        z-index: 1;
        opacity: .6
    }

    /* Testimonials */
    .tests {
        background: var(--white)
    }

    .tests-grid {
        display: grid;
        grid-template-columns: 1.1fr .9fr;
        gap: 24px
    }

    @media(max-width:900px) {
        .tests-grid {
            grid-template-columns: 1fr;
        }
    }

    @media(max-width:468px) {
        .t-main {
            min-height: 100% !important;
            padding: 0 !important;
        }
    }

    .t-main {
        background: var(--ink);
        color: #fff;
        border-radius: 24px;
        padding: 44px;
        position: relative;
        overflow: hidden;
        min-height: 420px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        box-shadow: 0 30px 80px -30px rgba(11, 10, 20, .4)
    }

    .video-thumb {
        aspect-ratio: 16/10;
        background: linear-gradient(135deg, #4a3bc4, #7a66ff);
        border-radius: 16px;
        margin-bottom: 24px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        overflow: hidden
    }

    .video-thumb::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, .15), transparent 50%)
    }

    .play {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .95);
        color: var(--ink);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        transition: transform .3s
    }

    .play:hover {
        transform: scale(1.1)
    }

    .play svg {
        width: 22px;
        height: 22px;
        margin-left: 3px
    }

    .t-main blockquote {
        font-family: 'Syne', sans-serif;
        font-size: 24px;
        line-height: 1.35;
        font-weight: 500;
        letter-spacing: -.015em
    }

    .t-author {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-top: 24px
    }

    .t-avatar {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: linear-gradient(135deg, #ffb8d9, #7a66ff);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Syne', sans-serif;
        font-weight: 600;
        font-size: 16px;
        color: #fff
    }

    .t-author .who {
        font-size: 14px
    }

    .t-author .who b {
        font-weight: 600
    }

    .t-author .who div {
        opacity: .6;
        font-size: 12px
    }

    .t-side {
        display: flex;
        flex-direction: column;
        gap: 20px
    }

    .t-card {
        background: var(--mist);
        border-radius: 20px;
        padding: 28px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: transform .3s;
        box-shadow: 0 20px 40px -30px rgba(11, 10, 20, .15)
    }

    .t-card:hover {
        transform: translateY(-4px)
    }

    .t-card .stars {
        color: var(--purple);
        font-size: 16px;
        letter-spacing: .1em;
        margin-bottom: 14px
    }

    .t-card p {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 20px
    }

    .video-thumb {
        position: relative;
        cursor: pointer;
        border-radius: 12px;
        overflow: hidden;
    }

    /* Thumbnail */
    .thumb-img {
        width: 100%;
        display: block;
    }

    /* Play button */
    .play {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: #7765FF;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
    }

    /* Video hidden initially */
    .video-thumb video {
        display: none;
        width: 100%;
    }

    /* Comparison */

    .compare {
        background: var(--mist)
    }

    @media (max-width: 468px) {
        .compare {
            display: none !important;
        }
    }

    .compare-wrap {
        background: #fff;
        border-radius: 24px;
        overflow: hidden;
        border: 1px solid var(--line);
        box-shadow: 0 30px 60px -30px rgba(11, 10, 20, .15)
    }

    .compare-head {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr;
        background: var(--ink);
        color: #fff;
        padding: 26px 32px;
        gap: 20px;
        align-items: center
    }

    .compare-head div:nth-child(2) {
        background: var(--purple);
        padding: 14px 18px;
        border-radius: 12px;
        text-align: center;
        font-family: 'Syne', sans-serif;
        font-weight: 700
    }

    .compare-head div:nth-child(3) {
        text-align: center;
        font-size: 15px;
        opacity: .7
    }

    .compare-row {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr;
        padding: 22px 32px;
        gap: 20px;
        border-bottom: 1px solid var(--line);
        align-items: center
    }

    @media(max-width:468px) {
        .compare-row {
            padding: 22px 2px;
        }

        .compare-head {
            padding: 22px 2px;
        }
    }

    .compare-row:last-child {
        border-bottom: none
    }

    .compare-row .label {
        font-size: 16px;
        font-weight: 500
    }

    .compare-row .yes,
    .compare-row .no {
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 14px
    }

    .compare-row .yes {
        color: var(--purple);
        font-weight: 500
    }

    .compare-row .no {
        color: #c1bfc9
    }

    .check {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: var(--purple);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 700
    }

    .cross {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: #e8e6ee;
        color: #9593a0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px
    }

    /* Pricing */
    .pricing {
        background: var(--white)
    }

    .price-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        perspective: 1400px
    }

    @media(max-width:900px) {
        .price-grid {
            grid-template-columns: 1fr
        }
    }

    .plan {
        border: 1px solid var(--line);
        border-radius: 24px;
        padding: 36px;
        position: relative;
        transition: transform .3s var(--ease), box-shadow .3s;
        background: #fff;
        display: flex;
        flex-direction: column;
        transform-style: preserve-3d
    }

    .plan:hover {
        transform: translateY(-6px) rotateX(2deg);
        box-shadow: 0 40px 80px -30px rgba(11, 10, 20, .2)
    }

    .plan.popular {
        background: var(--ink);
        color: #fff;
        border-color: var(--ink);
        box-shadow: 0 40px 80px -30px rgba(122, 102, 255, .4)
    }

    .plan.popular .price-label {
        color: rgba(255, 255, 255, .6)
    }

    .plan .ribbon {
        position: absolute;
        top: -12px;
        right: 24px;
        background: var(--purple);
        color: #fff;
        padding: 5px 12px;
        border-radius: 100px;
        font-size: 11px;
        letter-spacing: .08em;
        text-transform: uppercase;
        font-weight: 500
    }

    .plan h3 {
        font-size: 22px;
        margin-bottom: 4px
    }

    .plan .tagline {
        font-size: 13px;
        opacity: .6;
        margin-bottom: 24px
    }

    .price-big {
        font-family: 'Syne', sans-serif;
        font-weight: 700;
        font-size: 48px;
        letter-spacing: -.03em;
        display: flex;
        align-items: baseline;
        gap: 4px
    }

    .price-big .cur {
        font-size: 22px;
        opacity: .6
    }

    .price-label {
        font-size: 12px;
        opacity: .5;
        margin-top: -4px;
        margin-bottom: 24px
    }

    .plan ul {
        list-style: none;
        display: grid;
        gap: 10px;
        flex: 1;
        margin-bottom: 28px;
        padding-top: 24px;
        border-top: 1px solid var(--line)
    }

    .plan.popular ul {
        border-top-color: var(--line-dark)
    }

    .plan li {
        font-size: 14px;
        display: flex;
        gap: 10px;
        align-items: start;
        opacity: .85
    }

    .plan li::before {
        content: "→";
        color: var(--purple);
        font-weight: 600;
        flex-shrink: 0
    }

    .plan.popular li::before {
        color: #b9afff
    }

    .plan .cta-btn {
        width: 100%;
        justify-content: center
    }

    /* Industries */
    .industries {
        background: var(--mist)
    }

    .ind-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px
    }

    @media(max-width:900px) {
        .ind-grid {
            grid-template-columns: repeat(2, 1fr)
        }
    }

    .ind {
        padding: 32px 24px;
        background: #fff;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        transition: all .3s var(--ease);
        cursor: pointer;
        border: 1px solid var(--line);
        min-height: 100%;
        box-shadow: 0 10px 30px -20px rgba(11, 10, 20, .1)
    }

    @media(max-width:468px) {
        .ind {
            padding: 20px 10px;
            min-height: 100%;
        }
    }

    .ind:hover {
        background: var(--purple);
        color: #fff;
        border-color: var(--purple);
        transform: translateY(-4px);
        box-shadow: 0 30px 60px -30px rgba(122, 102, 255, .5)
    }

    .ind svg {
        width: 34px;
        height: 34px;
        stroke: currentColor;
        stroke-width: 1.3;
        fill: none
    }

    .ind h4 {
        font-size: 18px
    }

    .ind p {
        font-size: 12px;
        opacity: .6;
        font-family: 'JetBrains Mono', monospace
    }

    .ind:hover p {
        opacity: .8
    }

    /* Team */
    .team {
        background: var(--white)
    }

    .team-strip {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 0;
        border-radius: 24px;
        overflow: hidden;
        border: 1px solid var(--line);
        box-shadow: 0 30px 60px -30px rgba(11, 10, 20, .15)
    }

    @media(max-width:900px) {
        .team-strip {
            grid-template-columns: repeat(2, 1fr)
        }
    }

    .member {
        aspect-ratio: 3/4;
        background: var(--mist);
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 20px;
        border-right: 1px solid var(--line);
        transition: flex-grow .4s var(--ease)
    }

    .member:last-child {
        border-right: none
    }

    .member::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 45%, rgba(11, 10, 20, .85));
        z-index: 1
    }

    .member-bg {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, var(--purple), #4a3bc4)
    }

    .member:nth-child(2) .member-bg {
        background: linear-gradient(135deg, #ffb8d9, #7a66ff)
    }

    .member:nth-child(3) .member-bg {
        background: linear-gradient(135deg, #ff9470, #ffb8d9)
    }

    .member:nth-child(4) .member-bg {
        background: linear-gradient(135deg, #2dd4bf, #7a66ff)
    }

    .member:nth-child(5) .member-bg {
        background: linear-gradient(135deg, #0b0a14, #4a3bc4)
    }

    .member-init {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-family: 'Syne', sans-serif;
        font-weight: 800;
        font-size: 80px;
        color: rgba(255, 255, 255, .18);
        letter-spacing: -.04em
    }

    .member-info {
        position: relative;
        z-index: 2;
        color: #fff
    }

    .member-info h4 {
        font-size: 18px
    }

    .member-info p {
        font-size: 12px;
        opacity: .8;
        font-family: 'JetBrains Mono', monospace
    }

    /* FAQ */
    .faq {
        background: var(--mist)
    }

    .faq-list {
        max-width: 920px;
        margin: 0 auto
    }

    .faq-item {
        border-bottom: 1px solid var(--line);
        padding: 28px 0;
        cursor: pointer
    }

    .faq-q {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        font-family: 'Syne', sans-serif;
        font-size: 22px;
        font-weight: 600;
        letter-spacing: -.01em
    }

    .faq-toggle {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: 1px solid var(--line);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: all .3s;
        position: relative;
        background: #fff
    }

    .faq-toggle::before,
    .faq-toggle::after {
        content: "";
        position: absolute;
        background: var(--ink);
        border-radius: 2px;
        transition: transform .3s
    }

    .faq-toggle::before {
        width: 12px;
        height: 2px
    }

    .faq-toggle::after {
        width: 2px;
        height: 12px
    }

    .faq-item.open .faq-toggle {
        background: var(--purple);
        border-color: var(--purple)
    }

    .faq-item.open .faq-toggle::before,
    .faq-item.open .faq-toggle::after {
        background: #fff
    }

    .faq-item.open .faq-toggle::after {
        transform: rotate(90deg);
        opacity: 0
    }

    .faq-a {
        max-height: 0;
        overflow: hidden;
        transition: max-height .5s var(--ease), margin .3s, opacity .3s;
        opacity: 0;
        font-size: 16px;
        max-width: 720px;
        line-height: 1.6
    }

    .faq-item.open .faq-a {
        max-height: 300px;
        margin-top: 16px;
        opacity: .75
    }

    /* Lead */
    .lead {
        background: var(--ink);
        color: #fff;
        position: relative;
        overflow: hidden
    }

    .lead-grid {
        display: grid;
        grid-template-columns: 1.1fr .9fr;
        gap: 80px;
        align-items: center;
        position: relative;
        z-index: 2;

    }

    @media(max-width:1024px) {
        .lead-grid {
            grid-template-columns: 1fr;
            gap: 40px
        }
    }

    .lead h2 {
        font-size: clamp(48px, 6vw, 84px);
        letter-spacing: -.035em
    }

    .lead h2 em {
        font-style: italic;
        color: var(--purple);
        font-family: 'Syne', serif
    }

    .lead-sub {
        font-size: 18px;
        opacity: .65;
        margin-top: 18px;
        max-width: 500px;
        font-weight: 300
    }

    .lead-trust {
        display: flex;
        gap: 32px;
        margin-top: 32px;
        flex-wrap: wrap
    }

    .lead-trust div {
        font-size: 13px;
        opacity: .75;
        display: flex;
        align-items: center;
        gap: 8px
    }

    .lead-trust div::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--purple)
    }

    @media (max-width:468px) {
        .lead-form {
            padding: 20px !important;
        }
    }

    .lead-form {
        background: #fff;
        color: var(--ink);
        border-radius: 24px;
        padding: 40px;
        box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .4)
    }

    .lead-form h3 {
        font-size: 26px;
        margin-bottom: 6px
    }

    .lead-form p {
        font-size: 14px;
        opacity: .6;
        margin-bottom: 24px
    }

    .lead-form label {
        display: block;
        font-size: 12px;
        letter-spacing: .05em;
        text-transform: uppercase;
        opacity: .55;
        margin-bottom: 6px;
        font-family: 'JetBrains Mono', monospace
    }

    .lead-form input,
    .lead-form select,
    .lead-form textarea {
        width: 100%;
        padding: 13px 16px;
        background: var(--mist);
        border: 1px solid transparent;
        border-radius: 12px;
        font-size: 15px;
        font-family: inherit;
        margin-bottom: 16px;
        transition: border .2s
    }

    .lead-form input:focus,
    .lead-form select:focus,
    .lead-form textarea:focus {
        outline: none;
        border-color: var(--purple);
        background: #fff
    }

    .lead-form textarea {
        resize: none;
        min-height: 90px
    }

    .lead-form .row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-bottom: 16px
    }

    .lead-form .row input {
        margin-bottom: 0
    }

    .lead-form .submit {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 16px
    }

    #lead-3d {
        position: absolute;
        inset: 0;
        z-index: 1;
        opacity: .5
    }

    /* Sticky + toast + modal */
    .sticky-bar {
        position: fixed;
        left: 50%;
        transform: translateX(-50%) translateY(120%);
        bottom: 24px;
        z-index: 90;
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 12px 14px 12px 20px;
        background: rgba(11, 10, 20, .95);
        backdrop-filter: blur(20px);
        border-radius: 100px;
        color: #fff;
        box-shadow: 0 30px 70px -20px rgba(11, 10, 20, .5);
        transition: transform .5s var(--ease);
        max-width: calc(100vw - 32px)
    }

    .sticky-bar.show {
        transform: translateX(-50%) translateY(0)
    }

    .sticky-bar .meta {
        font-size: 13px;
        opacity: .75;
        display: flex;
        align-items: center;
        gap: 10px
    }

    .sticky-bar .meta b {
        color: #fff;
        opacity: 1;
        font-weight: 500
    }

    @media(max-width:600px) {
        .sticky-bar .meta {
            display: none
        }
    }

    .toast {
        position: fixed;
        bottom: 100px;
        left: 24px;
        background: #fff;
        color: var(--ink);
        padding: 14px 18px 14px 14px;
        border-radius: 16px;
        box-shadow: 0 20px 50px -15px rgba(11, 10, 20, .3);
        display: flex;
        align-items: center;
        gap: 12px;
        z-index: 85;
        transform: translateX(-120%);
        transition: transform .5s var(--ease);
        max-width: 320px;
        border: 1px solid var(--line)
    }

    .toast.show {
        transform: translateX(0)
    }

    .toast-ico {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--purple), #ffb8d9);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-family: 'Syne', sans-serif;
        font-weight: 700
    }

    .toast div {
        font-size: 13px;
        line-height: 1.3
    }

    .toast div b {
        font-weight: 600
    }

    .toast div span {
        opacity: .55;
        font-size: 11px;
        margin-top: 2px;
        display: block
    }

    @media(max-width:600px) {
        .toast {
            left: 12px;
            right: 12px;
            max-width: none
        }
    }

    .modal-bg {
        position: fixed;
        inset: 0;
        background: rgba(11, 10, 20, .6);
        backdrop-filter: blur(8px);
        z-index: 200;
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 24px
    }

    .modal-bg.show {
        opacity: 1;
        pointer-events: auto
    }

    .modal {
        background: #fff;
        border-radius: 24px;
        max-width: 520px;
        width: 100%;
        padding: 44px;
        text-align: center;
        transform: scale(.95);
        transition: transform .4s var(--ease);
        position: relative;
        overflow: hidden
    }

    .modal-bg.show .modal {
        transform: scale(1)
    }

    .modal-close {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: var(--mist);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 18px;
        z-index: 3
    }

    .modal-badge {
        display: inline-block;
        padding: 6px 14px;
        background: var(--purple-soft);
        color: var(--purple);
        border-radius: 100px;
        font-size: 12px;
        letter-spacing: .08em;
        text-transform: uppercase;
        font-weight: 500;
        margin-bottom: 16px
    }

    .modal h3 {
        font-size: 32px;
        margin-bottom: 10px;
        letter-spacing: -.02em
    }

    .modal h3 em {
        color: var(--purple);
        font-style: italic;
        font-family: 'Syne', serif
    }

    .modal p {
        font-size: 15px;
        opacity: .7;
        margin-bottom: 24px
    }

    .modal input {
        width: 100%;
        padding: 14px 16px;
        background: var(--mist);
        border: 1px solid transparent;
        border-radius: 12px;
        font-size: 15px;
        font-family: inherit;
        margin-bottom: 10px
    }

    .modal input:focus {
        outline: none;
        border-color: var(--purple);
        background: #fff
    }

    .modal .btn {
        width: 100%;
        justify-content: center
    }

    .modal-foot {
        margin-top: 14px;
        font-size: 11px;
        opacity: .5
    }

    footer {
        background: var(--ink);
        color: #fff;
        padding: 60px 0 30px
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
        gap: 40px;
        margin-bottom: 40px
    }

    @media(max-width:900px) {
        .footer-grid {
            grid-template-columns: 1fr 1fr
        }
    }

    footer h5 {
        font-size: 14px;
        margin-bottom: 16px;
        letter-spacing: .02em
    }

    footer ul {
        list-style: none;
        display: grid;
        gap: 8px
    }

    footer a {
        font-size: 14px;
        opacity: .65;
        transition: opacity .2s
    }

    footer a:hover {
        opacity: 1;
        color: var(--purple)
    }

    .footer-addr {
        font-size: 14px;
        opacity: .6;
        line-height: 1.6;
        margin-top: 16px;
        font-weight: 300
    }

    .footer-bot {
        border-top: 1px solid var(--line-dark);
        padding-top: 24px;
        display: flex;
        justify-content: space-between;
        font-size: 14px;
        opacity: .5;
        flex-wrap: wrap;
        gap: 16px
    }

    .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity .8s var(--ease), transform .8s var(--ease)
    }

    .reveal.in {
        opacity: 1;
        transform: none
    }

    #tweaks {
        position: fixed;
        bottom: 100px;
        right: 24px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 18px;
        padding: 20px;
        box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .25);
        z-index: 500;
        width: 280px;
        display: none
    }

    #tweaks.on {
        display: block
    }

    #tweaks h4 {
        font-family: 'Syne', sans-serif;
        font-size: 16px;
        margin-bottom: 12px
    }

    #tweaks label {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 13px;
        margin: 10px 0
    }

    #tweaks input[type="color"] {
        width: 40px;
        height: 28px;
        border: none;
        background: none;
        cursor: pointer
    }

    #tweaks select {
        padding: 4px 8px;
        font-family: inherit;
        border: 1px solid var(--line);
        border-radius: 6px
    }

    #tweaks .tw-close {
        position: absolute;
        top: 10px;
        right: 10px;
        cursor: pointer;
        font-size: 16px;
        opacity: .5
    }


    /*  */
    .logo-marquee-section {
        width: 100%;
        padding: 40px 0;
        background: #f8f9ff;
        overflow: hidden;
    }

    .marquee-wrapper {
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .marquee-content {
        display: flex;
        width: max-content;
        animation: scroll 20s linear infinite;
    }

    .marquee-wrapper:hover .marquee-content {
        animation-play-state: paused;
    }

    @keyframes scroll {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }

    .logo-card {
        min-width: 180px;
        height: 90px;
        margin: 0 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo-image {
        width: 120px;
        height: 60px;
        object-fit: contain;
        transition: 0.3s;
    }

    .logo-image:hover {
        transform: scale(1.05);
    }

    /* responsive */
    @media (max-width: 768px) {
        .logo-card {
            min-width: 130px;
            margin: 0 10px;
        }

        .logo-image {
            width: 90px;
            height: 50px;
        }
    }



    /* BASE */

/* SECTION */
.clients{
  padding:100px 20px;
  text-align:center;
}

/* HEADING */
.heading{
  font-size:52px;
  font-weight:700;
  margin-bottom:60px;
  line-height:1.2;
}

.heading span{
  background: linear-gradient(90deg,#6c4cf1,#3b82f6);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* GRID */
.logo-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  max-width:100%;
  /* margin:auto; */
}

/* CARD STYLE */
.logo-grid img{
  width:100%;
  /* max-width:130px; */
  padding:40px;
  background:#ffffff;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  opacity:0.8;
  transition:all 0.4s ease;
}

/* HOVER */
.logo-grid img:hover{
  transform:translateY(-6px) scale(1.05);
  opacity:1;
  box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

/* HIDDEN */
.extra{
  display:none;
}

/* TOGGLE */
#toggle:checked ~ .logo-grid .extra{
  display:block;
  animation:fadeUp 0.5s ease;
}

/* ANIMATION */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(20px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* BUTTON */
.label-btn{
  display:inline-block;
  margin-top:50px;
  /* margin-bottom: 50px; */
  padding:12px 28px;
  border-radius:30px;
  background:#7765ff;
  color: #fff !important;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  cursor:pointer;
  font-weight:600;
  transition:0.3s;
}

.label-btn:hover{
  transform:translateY(-2px);
}

/* BUTTON TEXT */
.label-btn::after{
  content:"View More →";
}

#toggle:checked + .label-btn::after{
  content:"View Less ↑";
}

/* MOBILE */
@media(max-width:768px){
  .heading{
    font-size:34px;
  }
  .logo-grid{
    grid-template-columns:repeat(2,1fr);
  }
}