﻿*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --black: #080808;
    --white: #f0ebe0;
    --lime: #c9f135;
    --dark1: #111;
    --dark2: #181818;
    --dark3: #222;
    --muted: #555;
    --H: 'Saira Condensed', sans-serif;
    --B: 'Saira', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    background: var(--black);
    color: var(--white);
    font-family: var(--B);
    font-weight: 300;
    overflow-x: hidden;
    cursor: none;
}

a, button {
    cursor: none;
    text-decoration: none;
}

img {
    display: block;
}


#cd, #cr {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%,-50%);
}

#cd {
    width: 7px;
    height: 7px;
    background: var(--lime);
}



/* navvv---------
═══════════════════════════════ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 52px;
    transition: background .4s;
}

    nav.scrolled {
        background: rgba(8,8,8,.96);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(255,255,255,.04);
    }

.logo {
    font-family: var(--H);
    font-size: 1.55rem;
    font-weight: 900;
    letter-spacing: .07em;
    color: var(--white);
    text-transform: uppercase;
}

    .logo em {
        color: var(--lime);
        font-style: normal;
    }

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

    .nav-links a {
        font-family: var(--H);
        font-size: .9rem;
        font-weight: 600;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: rgba(240,235,224,.45);
        transition: color .2s;
        position: relative;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--lime);
            transition: width .25s;
        }

        .nav-links a:hover {
            color: var(--white);
        }

            .nav-links a:hover::after {
                width: 100%;
            }

.nav-btn {
    font-family: var(--H);
    font-size: 1rem !important;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--lime);
    padding: 12px 28px;
    clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
    transition: background .2s, transform .15s, box-shadow .2s;
    border: none;
}

    .nav-btn:hover {
        background: #d7ff45;
        transform: translateY(-1px);
        box-shadow: 0 8px 28px rgba(201,241,53,.2);
    }


.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 55% 70% at 72% 90%, rgba(201,241,53,.09) 0%, transparent 60%), radial-gradient(ellipse 35% 50% at 8% 50%, rgba(201,241,53,.04) 0%, transparent 60%);
        pointer-events: none;
        z-index: 1;
    }

.hero-grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .4;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

.hero::after {
    content: '';
    position: absolute;
    left: 52px;
    top: 68px;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--lime) 20%, var(--lime) 80%, transparent);
    opacity: .18;
    pointer-events: none;
    z-index: 2;
}

.hero-text {
    padding: 130px 0 80px 60px;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--H);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 24px;
    opacity: 0;
    animation: up .6s .1s ease forwards;
}



.hero-title {
    font-family: var(--H);
    font-weight: 900;
    text-transform: uppercase;
    font-size: clamp(3.6rem, 6.5vw, 7.8rem);
    line-height: .88;
    margin-bottom: 28px;
    opacity: 0;
    animation: up .7s .22s ease forwards;
}

    .hero-title .lime {
        color: var(--lime);
        display: block;
    }

    .hero-title .ghost {
        display: block;
        color: transparent;
        -webkit-text-stroke: 2px rgba(240,235,224,.18);
    }

.hero-sub {
    font-size: 1.05rem;
    line-height: 1.78;
    color: rgba(240,235,224,.55);
    max-width: 400px;
    margin-bottom: 44px;
    opacity: 0;
    animation: up .7s .36s ease forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: up .7s .5s ease forwards;
}

.btn-lime {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-family: var(--H);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--lime);
    padding: 17px 38px;
    border: none;
    clip-path: polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%);
    transition: background .2s, transform .2s, box-shadow .2s;
    text-shadow: none;
}

    .btn-lime:hover {
        background: #d7ff45;
        transform: translateY(-3px);
        box-shadow: 0 16px 40px rgba(201,241,53,.28);
    }

    .btn-lime svg {
        flex-shrink: 0;
        transition: transform .2s;
    }

    .btn-lime:hover svg {
        transform: translateX(4px);
    }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--H);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(240,235,224,.7);
    padding: 17px 4px;
    border: none;
    background: none;
    border-bottom: 1.5px solid rgba(240,235,224,.25);
    transition: color .2s, border-color .2s;
}

    .btn-ghost:hover {
        color: var(--lime);
        border-color: var(--lime);
    }

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 48px;
    opacity: 0;
    animation: up .7s .64s ease forwards;
}

.hstat {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,.04);
    border-left: 2px solid var(--lime);
    padding: 10px 18px;
    width: fit-content;
}

    .hstat .v {
        font-family: var(--H);
        font-size: 1.6rem;
        font-weight: 900;
        color: var(--lime);
        line-height: 1;
    }

    .hstat .l {
        font-size: .7rem;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: var(--muted);
    }

.hero-image {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
    opacity: 0;
    animation: heroImgIn 1s .28s ease forwards;
}

    .hero-image::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: -80px;
        width: 160px;
        background: linear-gradient( to right, var(--black) 0%, transparent 50% );
        transform: skewX(-8deg);
        z-index: 4;
        pointer-events: none;
    }

    .hero-image::after {
        content: '';
        position: absolute;
        left: -60px;
        top: 6%;
        bottom: 0;
        width: 220px;
        background: linear-gradient( to right, rgba(201,241,53,.18) 0%, rgba(201,241,53,.06) 40%, transparent 100% );
        transform: skewX(-8deg);
        z-index: 5;
        pointer-events: none;
        filter: blur(8px);
    }

    .hero-image img {
        height: min(105vh, 1020px);
        width: auto;
        max-width: 100%;
        object-fit: contain;
        object-position: bottom center;
        position: relative;
        z-index: 6;
        filter: drop-shadow(-30px 0 60px rgba(201,241,53,.15)) drop-shadow(0 0 80px rgba(201,241,53,.08));
        transition: filter .4s;
        transform-origin: bottom center;
        animation: imgBreath 6s ease-in-out infinite;
    }

    .hero-image:hover img {
        filter: drop-shadow(-40px 0 80px rgba(201,241,53,.25)) drop-shadow(0 0 100px rgba(201,241,53,.12));
    }

@keyframes imgBreath {
    0%, 100% {
        transform: scale(1) translateY(0);
    }

    50% {
        transform: scale(1.012) translateY(-6px);
    }
}

.float-badge {
    position: absolute;
    bottom: 80px;
    left: 10px;
    z-index: 8;
    background: var(--lime);
    padding: 14px 20px;
    clip-path: polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%);
    animation: float 3.5s ease-in-out infinite;
}

    .float-badge .fb-val {
        font-family: var(--H);
        font-size: 1.8rem;
        font-weight: 900;
        color: var(--black);
        line-height: 1;
    }

    .float-badge .fb-lbl {
        font-family: var(--H);
        font-size: .7rem;
        font-weight: 700;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: rgba(8,8,8,.6);
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes heroImgIn {
    from {
        opacity: 0;
        transform: translateX(50px) scale(.97);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* ═══════════════════════════════
   TRANSFORMACIJA
═══════════════════════════════ */
.transformation {
    background: var(--dark1);
    padding: 110px 52px;
    position: relative;
    overflow: hidden;
}

    .transformation::before {
        content: 'TRANSFORMACIJA';
        position: absolute;
        font-family: var(--H);
        font-weight: 900;
        font-size: clamp(4rem,11vw,12rem);
        color: rgba(201,241,53,.025);
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        pointer-events: none;
        white-space: nowrap;
        letter-spacing: .05em;
    }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--H);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 16px;
}

    .section-tag::before {
        content: '';
        width: 24px;
        height: 1px;
        background: var(--lime);
    }

.section-title {
    font-family: var(--H);
    font-weight: 900;
    text-transform: uppercase;
    line-height: .92;
    letter-spacing: .01em;
}

.transf-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.transf-copy .section-title {
    font-size: clamp(2.6rem,5vw,5rem);
    margin-bottom: 28px;
}

    .transf-copy .section-title span {
        color: var(--lime);
    }

.transf-copy p {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(240,235,224,.55);
    margin-bottom: 16px;
}

    .transf-copy p strong {
        color: var(--white);
        font-weight: 400;
    }

.transf-nums {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--dark3);
    margin-top: 36px;
}

.tnum {
    background: var(--dark2);
    padding: 20px 18px;
}

    .tnum .v {
        font-family: var(--H);
        font-size: 2.4rem;
        font-weight: 900;
        color: var(--lime);
        line-height: 1;
    }

    .tnum .l {
        font-size: .68rem;
        letter-spacing: .13em;
        text-transform: uppercase;
        color: var(--muted);
        margin-top: 4px;
    }

.transf-images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    align-items: flex-end;
}

.vs-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    background: var(--black);
    border: 2px solid var(--lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--H);
    font-size: 1rem;
    font-weight: 900;
    color: var(--lime);
    letter-spacing: .06em;
    box-shadow: 0 0 0 0 rgba(201,241,53,.4);
    transition: box-shadow .3s;
}

.transf-images:hover .vs-badge {
    box-shadow: 0 0 0 8px rgba(201,241,53,.08), 0 0 30px rgba(201,241,53,.2);
}

.ti-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    cursor: default;
}

    .ti-wrap img {
        width: 100%;
        max-height: 560px;
        object-fit: contain;
        object-position: bottom;
        display: block;
        transition: transform .5s cubic-bezier(.25,.46,.45,.94), filter .5s ease;
        filter: grayscale(30%) brightness(.85);
        transform-origin: bottom center;
    }

    .ti-wrap.ti-before img {
        filter: grayscale(60%) brightness(.75) contrast(1.05);
    }

    .ti-wrap.ti-before:hover img {
        filter: grayscale(30%) brightness(.9) contrast(1.05);
        transform: scale(1.04);
    }

    .ti-wrap.ti-after img {
        filter: grayscale(0%) brightness(.95) contrast(1.08) saturate(1.1);
        filter: drop-shadow(0 -10px 40px rgba(201,241,53,.12)) brightness(.95);
    }

    .ti-wrap.ti-after:hover img {
        filter: drop-shadow(0 -10px 60px rgba(201,241,53,.25)) brightness(1.05) contrast(1.08);
        transform: scale(1.04) translateY(-6px);
    }

    .ti-wrap.ti-after::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 2px;
        background: linear-gradient(to bottom, transparent, var(--lime) 30%, var(--lime) 70%, transparent);
        opacity: 0;
        transition: opacity .4s;
        z-index: 4;
    }

    .ti-wrap.ti-after:hover::before {
        opacity: 1;
    }

    .ti-wrap.ti-before::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(180,40,40,.08);
        opacity: 0;
        transition: opacity .4s;
        pointer-events: none;
        z-index: 3;
    }

    .ti-wrap.ti-before:hover::after {
        opacity: 1;
    }

.ti-lbl {
    width: 100%;
    text-align: center;
    padding: 11px;
    font-family: var(--H);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    background: var(--dark3);
    color: var(--muted);
    transition: background .3s, color .3s;
    position: relative;
    z-index: 2;
}

.ti-wrap.ti-before:hover .ti-lbl {
    background: #2a1a1a;
    color: rgba(240,100,100,.7);
}

.ti-lbl.after {
    background: rgba(201,241,53,.15);
    color: var(--lime);
}

.ti-wrap.ti-after:hover .ti-lbl {
    background: var(--lime);
    color: var(--black);
}

.ti-wrap.revealed img {
    animation: tiReveal .7s cubic-bezier(.25,.46,.45,.94) forwards;
}

.ti-wrap.ti-before.revealed img {
    animation: tiRevealLeft .7s cubic-bezier(.25,.46,.45,.94) forwards;
}

.ti-wrap.ti-after.revealed img {
    animation: tiRevealRight .8s cubic-bezier(.25,.46,.45,.94) forwards;
}

@keyframes tiRevealLeft {
    from {
        opacity: 0;
        transform: translateX(-30px) scale(.96);
        filter: grayscale(100%) brightness(.5);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: grayscale(60%) brightness(.75) contrast(1.05);
    }
}

@keyframes tiRevealRight {
    from {
        opacity: 0;
        transform: translateX(30px) scale(.96);
        filter: brightness(.3);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: drop-shadow(0 -10px 40px rgba(201,241,53,.12)) brightness(.95);
    }
}

/* ═══════════════════════════════
   PROCES
═══════════════════════════════ */
.process {
    padding: 110px 52px;
    position: relative;
    overflow: hidden;
}

.process-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 60px;
}

    .process-head .section-title {
        font-size: clamp(2.6rem,5vw,5rem);
    }

    .process-head p {
        font-size: 1rem;
        line-height: 1.8;
        color: rgba(240,235,224,.5);
    }

.steps {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 2px;
}

.step-card {
    background: var(--dark2);
    padding: 32px 24px;
    position: relative;
    border-top: 2px solid transparent;
    transition: border-color .25s, background .25s;
}

    .step-card:hover {
        background: var(--dark3);
        border-color: var(--lime);
    }

.step-num {
    font-family: var(--H);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(201,241,53,.1);
    line-height: 1;
    margin-bottom: 18px;
}

.step-card h3 {
    font-family: var(--H);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--white);
}

.step-card p {
    font-size: .86rem;
    line-height: 1.65;
    color: rgba(240,235,224,.47);
}

.step-arrow {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--lime);
    clip-path: polygon(0 0,100% 50%,0 100%);
    z-index: 2;
}

.step-card:last-child .step-arrow {
    display: none;
}

/* ═══════════════════════════════
   VIDEO SECTION
═══════════════════════════════ */
.video-section {
    background: var(--dark1);
    padding: 110px 52px;
}

    .video-section .section-title {
        font-size: clamp(2.6rem,5vw,5rem);
        margin-bottom: 12px;
    }

        .video-section .section-title span {
            color: var(--lime);
        }

    .video-section > p {
        font-size: 1rem;
        color: rgba(240,235,224,.5);
        line-height: 1.7;
        max-width: 520px;
        margin-bottom: 52px;
    }



.video-featured {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--dark2);
    overflow: hidden;
    margin-bottom: 4px;
    border: 1px solid rgba(255,255,255,.05);
}

    .video-featured::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, rgba(8,8,8,1) 0%, rgba(20,20,20,1) 40%, rgba(8,8,8,1) 100% );
        z-index: 0;
    }

    .video-featured::after {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 1;
        background: repeating-linear-gradient( 0deg, transparent, transparent 3px, rgba(0,0,0,.08) 3px, rgba(0,0,0,.08) 4px );
        pointer-events: none;
    }



.video-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2px;
}

.video-card {
    background: var(--dark2);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.04);
    transition: border-color .25s;
    aspect-ratio: 16/9;
}
    .video-card:has(.video-embed) {
        aspect-ratio: unset;
    }

    .video-card:hover {
        border-color: rgba(201,241,53,.25);
    }

    .video-card .video-embed {
        position: relative;
        width: 100%;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
    }

        .video-card .video-embed iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

    .video-card:has(.video-embed) .vid-lbl {
        position: static;
        background: var(--dark2);
        padding: 12px 14px;
    }

    .video-card .play-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        width: 44px;
        height: 44px;
        background: rgba(201,241,53,.12);
        border: 1px solid rgba(201,241,53,.3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background .2s;
    }

    .video-card:hover .play-icon {
        background: rgba(201,241,53,.22);
    }

.play-icon svg {
    margin-left: 3px;
}

.video-card .vid-lbl {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 14px;
    background: linear-gradient(to top, rgba(8,8,8,.9), transparent);
    font-family: var(--H);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(240,235,224,.6);
}

.vid-coming {
    position: absolute;
    top: 10px;
    right: 10px;
    font-family: var(--H);
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: rgba(201,241,53,.12);
    border: 1px solid rgba(201,241,53,.25);
    color: var(--lime);
    padding: 4px 10px;
}

/* ----------------------------------------
            KONSULTACIJE
-----------------------------------------------*/
.consult {
    padding: 110px 52px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.consult-text .section-title {
    font-size: clamp(2.4rem,4.5vw,4.8rem);
    margin-bottom: 24px;
}

    .consult-text .section-title span {
        color: var(--lime);
    }

.consult-text p {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(240,235,224,.54);
    margin-bottom: 16px;
}

    .consult-text p strong {
        color: var(--white);
        font-weight: 400;
    }

.consult-card {
    background: var(--dark2);
    border: 1px solid rgba(255,255,255,.05);
    padding: 40px 36px;
    border-top: 2px solid var(--lime);
}

    .consult-card h3 {
        font-family: var(--H);
        font-size: 1.5rem;
        font-weight: 700;
        letter-spacing: .04em;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

.consult-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

    .consult-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: .9rem;
        line-height: 1.5;
        color: rgba(240,235,224,.6);
    }

        .consult-list li::before {
            content: '';
            display: block;
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            margin-top: 1px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpolyline points='3,9 7,13 15,5' stroke='%23c9f135' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
        }

.btn-consult {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--H);
    font-size: .92rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--lime);
    padding: 16px 30px;
    border: none;
    width: 100%;
    justify-content: center;
    clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
    transition: background .2s;
    opacity: .6;
    position: relative;
}

    .btn-consult::after {
        content: 'Uskoro';
        position: absolute;
        top: -8px;
        right: 16px;
        font-size: .62rem;
        letter-spacing: .12em;
        text-transform: uppercase;
        background: var(--dark3);
        color: var(--muted);
        padding: 3px 8px;
        border: 1px solid var(--dark3);
    }

/*---------------------------------------
             TRUST BAR
------------------------------- */
.trust {
    background: var(--dark1);
    padding: 80px 52px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 32px;
    border-top: 1px solid rgba(255,255,255,.04);
    border-bottom: 1px solid rgba(255,255,255,.04);
}

.trust-item {
    text-align: center;
}

    .trust-item .tv {
        font-family: var(--H);
        font-size: 3.2rem;
        font-weight: 900;
        color: var(--lime);
        line-height: 1;
    }

    .trust-item .tl {
        font-family: var(--H);
        font-size: .75rem;
        font-weight: 600;
        letter-spacing: .16em;
        text-transform: uppercase;
        color: var(--muted);
        margin-top: 6px;
    }

/*- --------------------------------
         CTA BAND
----------------------------------------- */
.cta-band {
    padding: 100px 52px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

    .cta-band::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg,rgba(201,241,53,.07) 0%,transparent 55%), linear-gradient(to right,var(--black),var(--dark1));
    }

    .cta-band::after {
        content: '';
        position: absolute;
        top: -50%;
        right: -8%;
        width: 55%;
        height: 200%;
        background: rgba(201,241,53,.03);
        transform: skewX(-14deg);
        pointer-events: none;
    }

.cta-left {
    position: relative;
    z-index: 1;
}

    .cta-left .section-title {
        font-size: clamp(2.2rem,4.5vw,4.8rem);
        margin-bottom: 12px;
    }

        .cta-left .section-title span {
            color: var(--lime);
        }

    .cta-left p {
        font-size: 1rem;
        color: rgba(240,235,224,.47);
        line-height: 1.7;
        max-width: 440px;
    }

.cta-right {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}

.cta-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--H);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--lime);
    background: rgba(201,241,53,.08);
    border: 1px solid rgba(201,241,53,.2);
    padding: 9px 14px;
}

/* ---------------------------
   NAV HAMBURGER + MOBILni MENi
==----------------------- */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    background: none;
    border: none;
    padding: 8px;
    cursor: none;
    width: 40px;
    height: 40px;
}

    .nav-hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--white);
        transition: transform .3s, opacity .3s, width .3s;
        transform-origin: center;
    }

    .nav-hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-hamburger.open span:nth-child(2) {
        opacity: 0;
        width: 0;
    }

    .nav-hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

.nav-mobile {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8,8,8,.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    z-index: 150;
    border-top: 1px solid rgba(255,255,255,.06);
}

    .nav-mobile.open {
        display: flex;
    }

    .nav-mobile a {
        font-family: var(--H);
        font-size: 2rem;
        font-weight: 700;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: rgba(240,235,224,.55);
        padding: 18px 32px;
        transition: color .2s;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,.04);
    }

        .nav-mobile a:hover {
            color: var(--white);
        }

.nav-mobile-cta {
    margin-top: 24px !important;
    color: var(--lime) !important;
    font-size: 1.6rem !important;
    border-bottom: none !important;
    border: 1px solid rgba(201,241,53,.3) !important;
    padding: 16px 48px !important;
    width: auto !important;
}


.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--H);
    font-size: .88rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--lime);
    padding: 11px 24px;
    border: none;
    clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
    position: relative;
    overflow: hidden;
    transition: background .2s, transform .2s;
}

    .nav-btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(255,255,255,.25);
        transform: translateX(-100%) skewX(-15deg);
        transition: transform .4s ease;
    }

    .nav-btn:hover::before {
        transform: translateX(150%) skewX(-15deg);
    }

    .nav-btn:hover {
        background: #d7ff45;
        transform: translateY(-1px);
    }

.nav-btn-arrow {
    transition: transform .3s;
    display: inline-block;
}

.nav-btn:hover .nav-btn-arrow {
    transform: translateX(4px);
}

/* SCROLL CTA _---------------------*/
.scroll-cta {
    background: var(--dark1);
    padding: 80px 52px;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,.04);
}

.scroll-cta-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, rgba(201,241,53,.5), transparent);
}

.scroll-cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.scroll-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--H);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 18px;
}

.eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime);
    animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {
    0%,100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

.scroll-cta-title {
    font-family: var(--H);
    font-weight: 900;
    text-transform: uppercase;
    font-size: clamp(2rem, 3.5vw, 3.4rem);
    line-height: .92;
    margin-bottom: 18px;
    color: var(--white);
}

    .scroll-cta-title span {
        color: var(--lime);
    }

.scroll-cta-sub {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(240,235,224,.52);
    max-width: 520px;
}

    .scroll-cta-sub strong {
        color: var(--white);
        font-weight: 400;
    }

.scroll-cta-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.scroll-cta-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
}


.cta-explode {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 22px 36px;
    overflow: hidden;
    background: var(--lime);
    clip-path: polygon(12px 0%,100% 0%,calc(100% - 12px) 100%,0% 100%);
    transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
}


.cta-explode-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: shimmer 2.4s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) skewX(-15deg);
    }

    100% {
        transform: translateX(250%) skewX(-15deg);
    }
}

.cta-explode-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-small {
    font-family: var(--H);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(8,8,8,.65);
    line-height: 1;
}

.cta-big {
    font-family: var(--H);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--black);
    line-height: 1;
}

.cta-explode-arrow {
    position: relative;
    z-index: 1;
    color: var(--black);
    transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}

.cta-explode:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 20px 50px rgba(201,241,53,.3);
}

    .cta-explode:hover .cta-explode-arrow {
        transform: translateX(6px);
    }

/* ISHRANA TRENING +=--=-=-==-=======  */
.service-section {
    padding: 110px 52px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-alt {
    background: var(--dark1);
}

.service-text .section-title {
    font-size: clamp(2.4rem,4.5vw,4.8rem);
    margin-bottom: 24px;
}

    .service-text .section-title span {
        color: var(--lime);
    }

.service-text p {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(240,235,224,.54);
}

    .service-text p strong {
        color: var(--white);
        font-weight: 400;
    }

.service-card {
    background: var(--dark2);
    border: 1px solid rgba(255,255,255,.05);
    padding: 40px 36px;
    border-top: 2px solid var(--lime);
}

.service-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.service-card h3 {
    font-family: var(--H);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 20px;
}


.btn-anketa {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--H);
    font-size: .9rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--lime);
    padding: 14px 28px;
    border: none;
    margin-top: 24px;
    clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
    transition: background .2s, transform .2s, box-shadow .2s;
}

    .btn-anketa:hover {
        background: #d7ff45;
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(201,241,53,.22);
    }

    .btn-anketa svg {
        transition: transform .2s;
    }

    .btn-anketa:hover svg {
        transform: translateX(4px);
    }

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
footer {
    padding: 36px 52px;
    border-top: 1px solid rgba(255,255,255,.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

    footer p {
        font-size: .76rem;
        color: var(--muted);
        letter-spacing: .06em;
    }

.footer-dev {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-decoration: none;
    transition: opacity .2s;
}

    .footer-dev:hover {
        opacity: .75;
    }

    .footer-dev span {
        font-size: .62rem;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: var(--muted);
    }

    .footer-dev strong {
        font-family: var(--H);
        font-size: .82rem;
        font-weight: 700;
        letter-spacing: .16em;
        text-transform: uppercase;
        color: rgba(240,235,224,.3);
        transition: color .2s;
    }

    .footer-dev:hover strong {
        color: var(--lime);
    }

/* ═══════════════════════════════
   ANIMs
═══════════════════════════════ */
@keyframes up {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.r {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .65s ease, transform .65s ease;
}

.rl {
    opacity: 0;
    transform: translateX(-36px);
    transition: opacity .65s ease, transform .65s ease;
}

.rr {
    opacity: 0;
    transform: translateX(36px);
    transition: opacity .65s ease, transform .65s ease;
}

    .r.on, .rl.on, .rr.on {
        opacity: 1;
        transform: translate(0);
    }

.d1 {
    transition-delay: .08s;
}

.d2 {
    transition-delay: .16s;
}

.d3 {
    transition-delay: .24s;
}

.d4 {
    transition-delay: .32s;
}


.scroll-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 64px 24px 72px;
    background: var(--dark1);
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,.04);
}

    .scroll-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 1px;
        height: 64px;
        background: linear-gradient(to bottom, rgba(201,241,53,.4), transparent);
    }

.scroll-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--H);
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--lime);
    padding: 22px 56px;
    border: none;
    clip-path: polygon(14px 0%, 100% 0%, calc(100% - 14px) 100%, 0% 100%);
    transition: background .2s, transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
    opacity: 1;
}

    .scroll-cta-btn:hover {
        background: #d7ff45;
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 20px 50px rgba(201,241,53,.3);
    }

    .scroll-cta-btn svg {
        transition: transform .3s;
    }

    .scroll-cta-btn:hover svg {
        transform: translateY(4px);
    }

/* ------------------ RESPONSIVE ---------------------
    ----------------------------------------------
*/
@media (max-width: 1050px) {
    nav {
        padding: 0 20px;
        height: 60px;
    }

    .nav-links {
        display: none;
    }

    .nav-btn {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: 100svh;
        position: relative;
    }

    .hero-text {
        padding: 88px 24px 60px;
        position: relative;
        z-index: 4;
    }

        .hero-text::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(8,8,8,.88) 45%, transparent 100%);
            pointer-events: none;
            z-index: -1;
        }

    .hero-image {
        position: absolute;
        right: -5%;
        bottom: 0;
        height: 82%;
        width: 72%;
        justify-content: flex-end;
        align-items: flex-end;
        z-index: 2;
    }

        .hero-image::before, .hero-image::after {
            display: none;
        }

        .hero-image img {
            height: 100%;
            width: auto;
            max-width: none;
            -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.5) 18%, black 50%);
            mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.5) 18%, black 50%);
        }

    .float-badge {
        bottom: 16px;
        left: auto;
        right: 20px;
    }

    .hero-stats {
        flex-direction: row;
        gap: 8px;
        flex-wrap: wrap;
    }

    .scroll-cta {
        padding: 60px 24px;
    }

    .scroll-cta-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .scroll-cta-action {
        align-items: flex-start;
    }

    .transformation {
        padding: 72px 24px;
    }

    .transf-layout {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .process {
        padding: 72px 24px;
    }

    .process-head {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .steps {
        grid-template-columns: 1fr 1fr;
    }

    .step-arrow {
        display: none;
    }

    .video-section {
        padding: 72px 24px;
    }

    .video-grid {
        grid-template-columns: 1fr 1fr;
    }

    .consult {
        grid-template-columns: 1fr;
        padding: 72px 24px;
        gap: 44px;
    }

    .service-section {
        grid-template-columns: 1fr;
        padding: 72px 24px;
        gap: 44px;
    }

    .service-alt .service-card {
        order: 1;
    }

    .trust {
        padding: 60px 24px;
    }

    .cta-band {
        padding: 72px 24px;
    }

    footer {
        padding: 28px 24px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
}
/***888888888888888888888888 RESPONSIVE 00000000000000000000*/

@media (max-width: 600px) {

    html, body {
        overflow-x: hidden;
    }


    .hero::after {
        display: none;
    }


    #cd, #cr {
        display: none !important;
    }

    body, a, button {
        cursor: auto !important;
    }


    nav {
        padding: 0 16px;
        height: 56px;
    }

    .logo {
        font-size: 1.25rem;
    }

    .nav-hamburger {
        width: 36px;
        height: 36px;
        padding: 6px;
    }

        .nav-hamburger span {
            width: 20px;
        }

    .nav-mobile {
        top: 56px;
    }

    .hero {
        min-height: unset;
        height: 800px;
        max-height: 900px;
        display: block;
        position: relative;
        overflow: hidden;
    }

    .hero-text {
        position: relative;
        z-index: 4;
        height: 100%;
        display: flex;
        flex-direction: column;
        padding-top:0px !important;
        justify-content: center; 
        padding: 80px 16px 40px;
    }

    .hero-title {
        font-size: 4rem;
        margin-bottom: 40px;
    }

    .hero-sub {
        font-size: 1rem;
        max-width: 60%;
        margin-bottom: 40px;
    }

    .hero-actions {
        margin-bottom: 40px;
    }

    .hero-stats {
        margin-top: 20px;
        display:flex;
        justify-content:center;
        align-items:start;
        flex-direction:column !important;
        padding-left:20px !important;
    }

    .hero-image {
        position: absolute;
        top: 0;
        bottom: 0;
        right: -18%;
        width: 85%;
        height: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
        overflow: hidden;
        z-index: 2;
    }

        .hero-image img {
            height: 75%;
            width: auto;
            max-width: none;
            object-fit: contain;
            object-position: bottom right;
            -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.3) 20%, black 50%);
            mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.3) 20%, black 50%);
        }

    .float-badge {
        bottom: 20px;
        right: 16px;
        left: auto;
    }

    .hero-image img {
        -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.35) 14%, black 42%);
        mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.35) 14%, black 42%);
    }

    .hero-actions {
        gap: 12px;
    }

    .btn-lime {
        padding: 14px 24px;
        font-size: .88rem;
    }

    .btn-ghost {
        font-size: .82rem;
    }

    .hero-stats {
        margin-top: 28px;
        flex-direction: row;
        gap: 6px;
    }

    .hstat {
        padding: 8px 12px;
    }

        .hstat .v {
            font-size: 1.3rem;
        }

        .hstat .l {
            font-size: .6rem;
        }

    .float-badge {
        padding: 10px 14px;
        bottom: 12px;
        right: 90px;
    }

        .float-badge .fb-val {
            font-size: 1.4rem;
        }

        .float-badge .fb-lbl {
            font-size: .6rem;
        }

    .scroll-cta {
        padding: 52px 16px;
    }

    .scroll-cta-line {
        height: 52px;
    }

    .scroll-cta-title {
        font-size: clamp(1.7rem, 6vw, 2.4rem);
    }

    .cta-explode {
        padding: 18px 24px;
        clip-path: none;
        width: 100%;
        justify-content: space-between;
    }

    .cta-big {
        font-size: 1.25rem;
    }

    .trust {
        padding: 48px 16px;
        gap: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .trust-item {
        padding: 20px 12px;
        border-bottom: 1px solid rgba(255,255,255,.04);
    }

        .trust-item:nth-child(odd) {
            border-right: 1px solid rgba(255,255,255,.04);
        }

        .trust-item:nth-child(3), .trust-item:nth-child(4) {
            border-bottom: none;
        }

        .trust-item .tv {
            font-size: 2.6rem;
        }

        .trust-item .tl {
            font-size: .68rem;
        }

    .transformation {
        padding: 56px 16px;
    }

    .transf-layout {
        gap: 36px;
    }

    .transf-copy .section-title {
        font-size: 2.6rem;
    }

    .transf-nums {
        grid-template-columns: 1fr 1fr;
    }

    .tnum .v {
        font-size: 2rem;
    }

    .transf-images {
        gap: 2px;
    }

    .ti-wrap img {
        max-height: 300px;
    }

    .vs-badge {
        width: 36px;
        height: 36px;
        font-size: .8rem;
    }

    .process {
        padding: 56px 16px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .step-card {
        padding: 24px 20px;
    }

    .step-num {
        font-size: 3rem;
        margin-bottom: 12px;
    }

    .step-card h3 {
        font-size: 1.1rem;
    }

    .video-section {
        padding: 56px 16px;
    }

        .video-section .section-title {
            font-size: 2.4rem;
        }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .vf-title {
        font-size: 1.5rem;
    }

    .vf-play {
        width: 58px;
        height: 58px;
    }

    .vf-bar {
        padding: 10px 16px;
    }

    .vf-bar-left {
        font-size: .68rem;
    }

    .consult {
        padding: 56px 16px;
        gap: 36px;
    }

    .consult-text .section-title {
        font-size: 2.4rem;
    }

    .consult-card {
        padding: 28px 20px;
    }

    .service-section {
        padding: 56px 16px;
        gap: 36px;
    }

    .service-text .section-title {
        font-size: 2.4rem;
    }
    .service-text {
        order:0;
    }
    
    .service-card {
        order:2;
        padding: 28px 20px;
    }

    .btn-anketa {
        width: 100%;
        justify-content: center;
        clip-path: none;
    }

    .cta-band {
        padding: 56px 16px;
    }

    .cta-left .section-title {
        font-size: 2.6rem;
    }

    .cta-right {
        align-items: stretch;
        width: 100%;
    }

        .cta-right .btn-lime {
            width: 100%;
            justify-content: center;
        }

    footer {
        padding: 24px 16px;
        gap: 12px;
    }
}
/*------------ 390 PX RESPONSIVE ------------*/
@media (max-width: 390px) {
    .hero {
        max-height: 650px;
    }

    .hero-title {
        font-size: 2rem;
    }
    .hero-image {
        width: 130%;
        height: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
        overflow: hidden;
        z-index: 2;
    }

        .hero-image img {
            height: 75%;
            width: auto;
            max-width: none;
            object-fit: contain;
            object-position: bottom right;
            -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.3) 20%, black 50%);
            mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.3) 20%, black 50%);
        }


    .hero-sub {
        max-width: 78%;
        font-size: .88rem;
    }

    .trust-item .tv {
        font-size: 2.1rem;
    }

    .btn-lime {
        padding: 13px 18px;
        font-size: .84rem;
    }

    .scroll-cta-title {
        font-size: 1.6rem;
    }
}

/* 375 iphone se ------------------*/
@media (max-width: 375px) {
    .hero {
        height: 100svh;
        max-height: 100svh;
    }

    .hero-text {
        padding: 72px 16px 32px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 8.5vw, 2.4rem);
    }

    .hero-sub {
        font-size: .85rem;
        max-width: 65%;
    }

    .hero-image {
        right: -10%;
        width: 60%;
    }

    .hero-stats {
        margin-top: 14px;
    }

    .hstat {
        padding: 7px 10px;
    }

        .hstat .v {
            font-size: 1.1rem;
        }
}