```css
/* =========================================================
   CP HERO SLIDER — PREMIUM 3D GLASS
   Joomla — isolated CSS
   Улучшенное движение изображения
   Premium Glassmorphism
   Mobile optimized
   ========================================================= */

.cphero-slider,
.cphero-slider * {
    box-sizing: border-box;
}

.cphero-slider {
    --cphero-dark: #242a35;
    --cphero-dark-2: #303746;
    --cphero-light: #f7fafc;
    --cphero-blue: #63c7ff;
    --cphero-blue-2: #9adfff;

    position: relative;
    width: 100%;
    height: min(100vh, 760px);
    min-height: 560px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 72% 30%,
            rgba(99,199,255,.10),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #242a35 0%,
            #303746 52%,
            #242a35 100%
        );

    font-family: inherit;

    isolation: isolate;
}


/* =========================================================
   SLIDES
   ========================================================= */

.cphero-slide {
    position: absolute;
    inset: 0;

    opacity: 0;
    visibility: hidden;

    transform: scale(1.035);

    transition:
        opacity .85s cubic-bezier(.22,.61,.36,1),
        visibility .85s ease,
        transform 1.4s cubic-bezier(.16,1,.3,1);

    will-change: opacity, transform;

    overflow: hidden;
}

.cphero-slide.cphero-active {
    opacity: 1;
    visibility: visible;

    transform: scale(1);

    z-index: 3;
}


/* =========================================================
   IMAGE
   Cinematic movement
   ========================================================= */

.cphero-image {
    position: absolute;
    inset: -4%;

    width: 108%;
    height: 108%;

    object-fit: cover;

    z-index: 1;

    transform:
        scale(1.04)
        translate3d(0, 0, 0);

    filter:
        saturate(.94)
        contrast(1.04)
        brightness(.92);

    transition:
        transform 8s cubic-bezier(.16,1,.3,1),
        filter 1.2s ease;

    will-change: transform;
}


/* Активный слайд — медленный cinematic zoom */

.cphero-slide.cphero-active .cphero-image {
    transform:
        scale(1.105)
        translate3d(-1.2%, -0.6%, 0);

    filter:
        saturate(1)
        contrast(1.06)
        brightness(.94);
}


/* =========================================================
   SUBTLE IMAGE LIGHT
   ========================================================= */

.cphero-slide::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 72% 42%,
            rgba(99,199,255,.10),
            transparent 32%
        ),
        linear-gradient(
            115deg,
            transparent 35%,
            rgba(255,255,255,.035) 50%,
            transparent 65%
        );

    opacity: 0;

    transition:
        opacity 1.2s ease;

    transform:
        translate3d(-4%,0,0);
}

.cphero-slide.cphero-active::after {
    opacity: 1;

    animation:
        cphero-light-sweep 7s ease-in-out infinite;
}

@keyframes cphero-light-sweep {

    0% {
        transform: translate3d(-5%,0,0);
    }

    50% {
        transform: translate3d(5%,0,0);
    }

    100% {
        transform: translate3d(-5%,0,0);
    }
}


/* =========================================================
   OVERLAY
   ========================================================= */

.cphero-overlay {
    position: absolute;
    inset: 0;

    z-index: 3;

    background:
        linear-gradient(
            90deg,
            rgba(36,42,53,.97) 0%,
            rgba(36,42,53,.91) 24%,
            rgba(36,42,53,.70) 48%,
            rgba(80,88,110,.34) 74%,
            rgba(80,88,110,.08) 100%
        );

    pointer-events: none;
}


/* =========================================================
   GLASS LIGHT
   ========================================================= */

.cphero-glow {
    position: absolute;

    width: 620px;
    height: 620px;

    left: -220px;
    top: 50%;

    transform: translateY(-50%);

    z-index: 4;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(99,199,255,.20) 0%,
            rgba(99,199,255,.09) 32%,
            transparent 70%
        );

    filter: blur(24px);

    pointer-events: none;

    opacity: .85;

    animation:
        cphero-glow-pulse 6s ease-in-out infinite;
}

@keyframes cphero-glow-pulse {

    0%,
    100% {
        opacity: .65;
        transform:
            translateY(-50%)
            scale(.96);
    }

    50% {
        opacity: 1;
        transform:
            translateY(-50%)
            scale(1.04);
    }
}


/* =========================================================
   CONTENT
   ========================================================= */

.cphero-content {
    position: relative;

    z-index: 6;

    width: min(1180px, calc(100% - 48px));
    height: 100%;

    margin: 0 auto;

    display: flex;
    align-items: center;

    perspective: 1200px;
}

.cphero-text {
    position: relative;

    width: min(680px, 62%);

    padding:
        38px
        42px
        42px;

    border:
        1px solid rgba(255,255,255,.13);

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.095),
            rgba(255,255,255,.035)
        );

    backdrop-filter:
        blur(22px)
        saturate(125%);

    -webkit-backdrop-filter:
        blur(22px)
        saturate(125%);

    box-shadow:
        0 30px 70px rgba(0,0,0,.28),
        0 10px 25px rgba(0,0,0,.16),
        inset 0 1px 0 rgba(255,255,255,.13),
        inset 0 -1px 0 rgba(0,0,0,.12);

    transform:
        perspective(1200px)
        rotateY(-1.2deg)
        translateZ(0);

    transition:
        transform .7s cubic-bezier(.16,1,.3,1),
        border-color .35s ease,
        box-shadow .35s ease;

    overflow: hidden;
}


/* glass reflection */

.cphero-text::before {
    content: "";

    position: absolute;

    top: -60%;
    left: -30%;

    width: 80%;
    height: 220%;

    background:
        linear-gradient(
            105deg,
            transparent 35%,
            rgba(255,255,255,.07) 48%,
            transparent 60%
        );

    transform:
        rotate(8deg)
        translateX(-20%);

    pointer-events: none;

    animation:
        cphero-glass-reflection 9s ease-in-out infinite;
}


/* glass edge light */

.cphero-text::after {
    content: "";

    position: absolute;
    inset: 0;

    border-radius: inherit;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.10),
            transparent 25%,
            transparent 72%,
            rgba(99,199,255,.08)
        );

    pointer-events: none;
}

@keyframes cphero-glass-reflection {

    0%,
    55% {
        transform:
            rotate(8deg)
            translateX(-90%);
    }

    75%,
    100% {
        transform:
            rotate(8deg)
            translateX(180%);
    }
}


/* =========================================================
   SLIDE CONTENT ANIMATION
   ========================================================= */

.cphero-slide .cphero-text {
    opacity: 0;

    transform:
        perspective(1200px)
        rotateY(-3deg)
        translate3d(-35px, 15px, -20px);
}

.cphero-slide.cphero-active .cphero-text {
    opacity: 1;

    transform:
        perspective(1200px)
        rotateY(-1.2deg)
        translate3d(0,0,0);

    transition:
        opacity .7s ease .15s,
        transform 1s cubic-bezier(.16,1,.3,1) .12s;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.cphero-eyebrow {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;

    margin-bottom: 24px;
    padding: 9px 14px;

    border:
        1px solid rgba(99,199,255,.22);

    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            rgba(99,199,255,.13),
            rgba(255,255,255,.045)
        );

    color: #fff;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .12em;
    text-transform: uppercase;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow:
        0 8px 24px rgba(0,0,0,.14),
        inset 0 1px 0 rgba(255,255,255,.12);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.cphero-eyebrow:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 28px rgba(0,0,0,.20),
        0 0 20px rgba(99,199,255,.10),
        inset 0 1px 0 rgba(255,255,255,.15);
}


/* =========================================================
   TITLE
   ========================================================= */

.cphero-title {
    position: relative;
    z-index: 2;

    margin: 0;

    color: #fff;

    font-size:
        clamp(38px, 5vw, 72px);

    line-height: 1.04;

    font-weight: 700;

    letter-spacing: -.035em;

    text-shadow:
        0 0 8px rgba(99,199,255,.18),
        0 0 24px rgba(99,199,255,.14),
        0 10px 40px rgba(0,0,0,.35);
}

.cphero-title strong {
    color: var(--cphero-blue);

    text-shadow:
        0 0 8px rgba(99,199,255,.50),
        0 0 22px rgba(99,199,255,.32),
        0 0 45px rgba(99,199,255,.18);
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.cphero-description {
    position: relative;
    z-index: 2;

    max-width: 610px;

    margin: 22px 0 0;

    color:
        rgba(255,255,255,.80);

    font-size: 17px;

    line-height: 1.65;

    text-shadow:
        0 2px 16px rgba(0,0,0,.30);
}


/* =========================================================
   BUTTON — GLASS
   ========================================================= */

.cphero-button {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;

    margin-top: 28px;
    padding: 0 24px;

    border:
        1px
```
