body.elementor-page-9:not(.elementor-motion-effects-element-type-background), body.elementor-page-9 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}/* Start custom CSS for html, class: .elementor-element-48ff916 *//* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #050706;
    color: #ffffff;
}

a {
    text-decoration: none;
}


/* =========================================
   COLORS
========================================= */

:root {

    --black: #050706;
    --green: #00ff88;
    --green-dark: #00c96b;

    --white: #ffffff;
    --muted: #929d97;

}


/* =========================================
   HERO
========================================= */

.hero {

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding: 80px 0;

    background:

        radial-gradient(
            circle at 85% 45%,
            rgba(0, 255, 136, 0.13),
            transparent 30%
        ),

        radial-gradient(
            circle at 10% 90%,
            rgba(0, 201, 107, 0.06),
            transparent 30%
        ),

        #050706;
}


/* =========================================
   CONTAINER
========================================= */

.hero-container {

    width: min(1180px, 92%);

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 50px;

}


/* =========================================
   LEFT CONTENT
========================================= */

.hero-content {

    position: relative;

    z-index: 2;

}


/* =========================================
   BADGE
========================================= */

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 9px 15px;

    border-radius: 50px;

    background: rgba(0, 255, 136, 0.06);

    border: 1px solid rgba(0, 255, 136, 0.25);

    color: var(--green);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


/* DOT */

.hero-badge span {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 12px var(--green);

}


/* =========================================
   TITLE
========================================= */

.hero h1 {

    margin: 25px 0;

    max-width: 700px;

    font-size: clamp(50px, 6vw, 80px);

    line-height: 0.98;

    letter-spacing: -4px;

    font-weight: 900;

    color: white;

}


/* GREEN PART */

.hero h1 strong {

    display: block;

    margin-top: 8px;

    font-weight: 900;

    background:

        linear-gradient(
            90deg,
            #ffffff,
            #00ff88,
            #00c96b
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;

}


/* =========================================
   DESCRIPTION
========================================= */

.hero-content p {

    max-width: 600px;

    color: var(--muted);

    font-size: 18px;

    line-height: 1.7;

    margin-bottom: 30px;

}


/* =========================================
   BUTTONS
========================================= */

.hero-buttons {

    display: flex;

    align-items: center;

    gap: 13px;

    flex-wrap: wrap;

}


/* PRIMARY */

.btn-primary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 15px 23px;

    border-radius: 12px;

    background:

        linear-gradient(
            135deg,
            #00ff88,
            #00d875
        );

    color: #031009;

    font-size: 14px;

    font-weight: 900;

    box-shadow:
        0 12px 35px
        rgba(0, 255, 136, 0.16);

    transition: 0.25s ease;

}


.btn-primary:hover {

    transform: translateY(-3px);

    box-shadow:
        0 18px 45px
        rgba(0, 255, 136, 0.28);

}


.btn-primary span {

    font-size: 19px;

    transition: 0.25s ease;

}


.btn-primary:hover span {

    transform: translateX(5px);

}


/* SECONDARY */

.btn-secondary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 15px 23px;

    border-radius: 12px;

    color: white;

    background:
        rgba(255,255,255,0.035);

    border:
        1px solid
        rgba(255,255,255,0.10);

    font-size: 14px;

    font-weight: 800;

    transition: 0.25s ease;

}


.btn-secondary:hover {

    color: var(--green);

    border-color:
        rgba(0,255,136,0.35);

    background:
        rgba(0,255,136,0.05);

    transform:
        translateY(-3px);

}


/* =========================================
   TRUST
========================================= */

.hero-trust {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 22px;

    margin-top: 28px;

    color: #7e8b83;

    font-size: 13px;

}


.hero-trust div {

    display: flex;

    align-items: center;

    gap: 7px;

}


.hero-trust b {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 18px;

    height: 18px;

    border-radius: 50%;

    color: var(--green);

    background:
        rgba(0,255,136,0.08);

    font-size: 11px;

}


/* =========================================
   IMAGE CONTAINER
========================================= */

.hero-image-container {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 550px;

}


/* =========================================
   GREEN GLOW
========================================= */

.green-glow {

    position: absolute;

    width: 430px;

    height: 430px;

    border-radius: 50%;

    background: var(--green);

    filter: blur(150px);

    opacity: 0.13;

    animation:
        glow 6s ease-in-out infinite;

}


/* =========================================
   GLOW ANIMATION
========================================= */

@keyframes glow {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
    }

    100% {
        transform: scale(1);
    }

}


/* =========================================
   IMAGE
========================================= */

.hero-image-container img {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 620px;

    max-height: 620px;

    object-fit: contain;

    filter:
        drop-shadow(
            0 35px 70px
            rgba(0,0,0,0.85)
        );

    animation:
        floating 5s ease-in-out infinite;

}


/* =========================================
   FLOAT ANIMATION
========================================= */

@keyframes floating {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .hero {

        padding:
            100px 0 60px;

    }


    .hero-container {

        grid-template-columns: 1fr;

        text-align: center;

        gap: 20px;

    }


    .hero-content {

        display: flex;

        flex-direction: column;

        align-items: center;

    }


    .hero-content p {

        max-width: 650px;

    }


    .hero-buttons {

        justify-content: center;

    }


    .hero-trust {

        justify-content: center;

    }


    .hero-image-container {

        min-height: 420px;

        order: -1;

    }


    .hero-image-container img {

        max-width: 520px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .hero {

        min-height: auto;

        padding:
            70px 0 50px;

    }


    .hero-container {

        width: 90%;

    }


    .hero-image-container {

        min-height: 300px;

    }


    .hero-image-container img {

        max-width: 390px;

    }


    .green-glow {

        width: 240px;

        height: 240px;

    }


    .hero h1 {

        font-size: 47px;

        letter-spacing: -2.5px;

    }


    .hero-content p {

        font-size: 16px;

        line-height: 1.6;

    }


    .hero-buttons {

        width: 100%;

        flex-direction: column;

    }


    .btn-primary,
    .btn-secondary {

        width: 100%;

    }


    .hero-trust {

        justify-content: center;

        gap: 12px;

        font-size: 11px;

    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .hero h1 {

        font-size: 41px;

    }


    .hero-badge {

        font-size: 9px;

        letter-spacing: 1px;

    }


    .hero-trust {

        flex-direction: column;

        gap: 9px;

    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ae19c4b *//* =====================================================
   BEST FEATURES
   BLACK + NEON GREEN
===================================================== */

.features-section {

    position: relative;

    padding: 120px 0;

    overflow: hidden;

    background: #090D0B;

}


/* subtle background glow */

.features-section::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    top: 10%;

    left: -250px;

    border-radius: 50%;

    background: #00FF88;

    filter: blur(180px);

    opacity: 0.035;

    pointer-events: none;

}


/* =====================================================
   CONTAINER
===================================================== */

.features-container {

    width: min(1180px, 92%);

    margin: auto;

    position: relative;

    z-index: 2;

}


/* =====================================================
   SECTION HEADER
===================================================== */

.features-header {

    max-width: 720px;

    margin: 0 auto 65px;

    text-align: center;

}


/* BADGE */

.features-badge {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 8px 14px;

    border-radius: 50px;

    color: #00FF88;

    background:
        rgba(0,255,136,0.06);

    border:
        1px solid
        rgba(0,255,136,0.24);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


/* TITLE */

.features-header h2 {

    margin: 20px 0;

    font-size:
        clamp(38px, 5vw, 60px);

    line-height: 1;

    letter-spacing: -3px;

    font-weight: 900;

    color: #FFFFFF;

}


/* GREEN PART */

.features-header h2 span {

    display: block;

    color: #00FF88;

}


/* DESCRIPTION */

.features-header p {

    max-width: 650px;

    margin: auto;

    color: #929D97;

    font-size: 16px;

    line-height: 1.7;

}


/* =====================================================
   FEATURES GRID
===================================================== */

.features-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

}


/* =====================================================
   FEATURE CARD
===================================================== */

.feature-card {

    position: relative;

    min-height: 330px;

    padding: 30px;

    overflow: hidden;

    background: #0D1210;

    border:
        1px solid
        rgba(255,255,255,0.07);

    border-radius: 20px;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;

}


/* CARD GREEN LIGHT */

.feature-card::after {

    content: "";

    position: absolute;

    width: 160px;

    height: 160px;

    top: -90px;

    right: -90px;

    border-radius: 50%;

    background: #00FF88;

    filter: blur(80px);

    opacity: 0;

    transition: opacity 0.3s ease;

}


/* HOVER */

.feature-card:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(0,255,136,0.25);

    box-shadow:
        0 20px 50px
        rgba(0,0,0,0.35);

}


.feature-card:hover::after {

    opacity: 0.10;

}


/* =====================================================
   ICON
===================================================== */

.feature-icon {

    width: 54px;

    height: 54px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;

    border-radius: 15px;

    color: #00FF88;

    background:
        rgba(0,255,136,0.07);

    border:
        1px solid
        rgba(0,255,136,0.14);

}


/* SVG */

.feature-icon svg {

    width: 25px;

    height: 25px;

}


/* =====================================================
   NUMBER
===================================================== */

.feature-number {

    position: absolute;

    top: 28px;

    right: 28px;

    color:
        rgba(255,255,255,0.08);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

}


/* =====================================================
   CARD TITLE
===================================================== */

.feature-card h3 {

    margin-bottom: 13px;

    color: #FFFFFF;

    font-size: 20px;

    line-height: 1.25;

    font-weight: 800;

    letter-spacing: -0.5px;

}


/* =====================================================
   CARD DESCRIPTION
===================================================== */

.feature-card p {

    color: #7E8B83;

    font-size: 14px;

    line-height: 1.7;

    max-width: 320px;

}


/* =====================================================
   FEATURE LINK
===================================================== */

.feature-link {

    position: absolute;

    left: 30px;

    bottom: 27px;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #00FF88;

    font-size: 12px;

    font-weight: 800;

    transition:
        gap 0.25s ease;

}


.feature-link span {

    font-size: 17px;

}


.feature-link:hover {

    gap: 12px;

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 950px) {

    .features-section {

        padding: 90px 0;

    }


    .features-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .features-section {

        padding: 70px 0;

    }


    .features-container {

        width: 90%;

    }


    .features-header {

        margin-bottom: 40px;

    }


    .features-header h2 {

        font-size: 40px;

        letter-spacing: -2px;

    }


    .features-header p {

        font-size: 15px;

    }


    .features-grid {

        grid-template-columns: 1fr;

        gap: 14px;

    }


    .feature-card {

        min-height: 310px;

        padding: 25px;

    }


    .feature-link {

        left: 25px;

        bottom: 23px;

    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-04cc5ac *//* =====================================================
   STORE IPTV
   PRICING SECTION
   BLACK + NEON GREEN
===================================================== */

.pricing-section {

    position: relative;

    padding: 120px 20px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(0,255,136,.07),
            transparent 35%
        ),
        #050706;

}


/* =====================================================
   CONTAINER
===================================================== */

.pricing-container {

    width: min(1220px, 100%);

    margin: auto;

}


/* =====================================================
   HEADER
===================================================== */

.pricing-title {

    max-width: 700px;

    margin: 0 auto 65px;

    text-align: center;

}


.pricing-title > span {

    display: inline-block;

    padding: 8px 16px;

    margin-bottom: 18px;

    border: 1px solid rgba(0,255,136,.35);

    border-radius: 50px;

    color: #00ff88;

    background: rgba(0,255,136,.05);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;

}


.pricing-title h2 {

    margin: 0;

    color: #fff;

    font-size: 52px;

    line-height: 1.1;

    font-weight: 850;

    letter-spacing: -1.5px;

}


.pricing-title h2 strong {

    display: block;

    color: #00ff88;

    text-shadow:
        0 0 25px rgba(0,255,136,.25);

}


.pricing-title p {

    max-width: 620px;

    margin: 20px auto 0;

    color: #87918b;

    font-size: 15px;

    line-height: 1.8;

}


/* =====================================================
   GRID
===================================================== */

.pricing-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

}


/* =====================================================
   CARD
===================================================== */

.pricing-card {

    position: relative;

    min-height: 590px;

    overflow: hidden;

    padding: 0;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            #0b110e,
            #050806
        );

    box-shadow:
        0 25px 70px rgba(0,0,0,.45);

    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;

}


.pricing-card:hover {

    transform: translateY(-10px);

    border-color:
        rgba(0,255,136,.45);

    box-shadow:
        0 30px 80px rgba(0,0,0,.55),
        0 0 40px rgba(0,255,136,.08);

}


/* =====================================================
   CARD GLOW
===================================================== */

.card-glow {

    position: absolute;

    width: 280px;

    height: 280px;

    top: -160px;

    right: -130px;

    border-radius: 50%;

    background:
        rgba(0,255,136,.18);

    filter: blur(70px);

    pointer-events: none;

}


/* =====================================================
   BRAND
===================================================== */

.store-brand {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding: 27px 20px 20px;

    border-bottom:
        1px solid rgba(255,255,255,.07);

}


.store-brand span {

    color: #00ff88;

    font-size: 17px;

    font-weight: 900;

    letter-spacing: 1.5px;

    text-shadow:
        0 0 15px rgba(0,255,136,.25);

}


.brand-icon {

    width: 29px;

    height: 29px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding-left: 2px;

    border-radius: 8px;

    background: #00ff88;

    color: #031008;

    font-size: 11px;

    box-shadow:
        0 0 18px rgba(0,255,136,.2);

}


/* =====================================================
   CONTENT
===================================================== */

.plan-content {

    position: relative;

    z-index: 2;

    padding: 28px 25px 25px;

    min-height: 490px;

    display: flex;

    flex-direction: column;

}


/* =====================================================
   LABEL
===================================================== */

.plan-label {

    color: #00ff88;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2px;

}


.plan-content h3 {

    margin: 10px 0;

    color: #fff;

    font-size: 28px;

    font-weight: 800;

}


.description {

    min-height: 65px;

    margin: 0;

    color: #8f9993;

    font-size: 12px;

    line-height: 1.65;

}


/* =====================================================
   PRICE
===================================================== */

.price {

    display: flex;

    align-items: baseline;

    gap: 3px;

    margin: 22px 0;

}


.price small {

    color: #00ff88;

    font-size: 20px;

    font-weight: 800;

}


.price strong {

    color: #fff;

    font-size: 42px;

    font-weight: 850;

    letter-spacing: -1.5px;

}


.price span {

    color: #78827c;

    font-size: 9px;

}


/* =====================================================
   DIVIDER
===================================================== */

.divider {

    width: 100%;

    height: 1px;

    margin-bottom: 22px;

    background:
        rgba(255,255,255,.09);

}


/* =====================================================
   FEATURES
===================================================== */

.plan-content ul {

    display: flex;

    flex-direction: column;

    gap: 13px;

    padding: 0;

    margin: 0;

    list-style: none;

}


.plan-content li {

    display: flex;

    align-items: center;

    gap: 9px;

    color: #d0d6d2;

    font-size: 11px;

}


.plan-content li i {

    width: 20px;

    height: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background:
        rgba(0,255,136,.1);

    color: #00ff88;

    font-size: 9px;

    font-style: normal;

    font-weight: 900;

}


/* =====================================================
   BUTTON
===================================================== */

.plan-button {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    width: 100%;

    margin-top: auto;

    padding: 14px;

    border:
        1px solid rgba(0,255,136,.35);

    border-radius: 10px;

    background:
        rgba(0,255,136,.05);

    color: #00ff88;

    text-decoration: none;

    font-size: 11px;

    font-weight: 800;

    transition: .3s ease;

}


.plan-button b {

    font-size: 16px;

    transition: transform .3s ease;

}


.plan-button:hover {

    background: #00ff88;

    color: #020503;

    box-shadow:
        0 0 25px rgba(0,255,136,.2);

}


.plan-button:hover b {

    transform: translateX(4px);

}


/* =====================================================
   FEATURED
===================================================== */

.pricing-card.featured {

    border-color:
        rgba(0,255,136,.5);

    box-shadow:
        0 0 45px rgba(0,255,136,.07);

}


.pricing-card.featured .plan-button {

    background: #00ff88;

    color: #020503;

}


.pricing-card.featured .plan-button:hover {

    background: #ffffff;

}


/* =====================================================
   BEST VALUE
===================================================== */

.best-value {

    position: absolute;

    top: 0;

    right: 20px;

    z-index: 10;

    padding: 7px 12px;

    border-radius:
        0 0 9px 9px;

    background: #00ff88;

    color: #020503;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1px;

}


/* =====================================================
   NOTE
===================================================== */

.pricing-note {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 35px;

    color: #66716a;

    font-size: 10px;

}


.pricing-note span:first-child {

    color: #00ff88;

}


.pricing-note b {

    color: #00ff88;

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {

    .pricing-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .pricing-section {

        padding: 80px 15px;

    }

    .pricing-title h2 {

        font-size: 38px;

    }

    .pricing-title p {

        font-size: 14px;

    }

    .pricing-grid {

        grid-template-columns: 1fr;

    }

    .pricing-card {

        min-height: 570px;

    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-44b0492 *//* =====================================================
   STORE IPTV
   CONTENT SECTION
   BLACK + NEON GREEN
===================================================== */

.content-section {

    position: relative;

    padding: 120px 20px;

    overflow: hidden;

    background: #050706;

}


/* =====================================================
   BACKGROUND GLOW
===================================================== */

.content-bg-glow {

    position: absolute;

    width: 600px;

    height: 600px;

    left: 50%;

    top: 0;

    transform: translateX(-50%);

    border-radius: 50%;

    background: rgba(0, 255, 136, 0.045);

    filter: blur(150px);

    pointer-events: none;

}


/* =====================================================
   CONTAINER
===================================================== */

.content-container {

    position: relative;

    z-index: 2;

    width: min(1200px, 100%);

    margin: auto;

}


/* =====================================================
   HEADER
===================================================== */

.content-header {

    max-width: 720px;

    margin: 0 auto 65px;

    text-align: center;

}


.content-label {

    display: inline-block;

    padding: 8px 16px;

    margin-bottom: 20px;

    border: 1px solid rgba(0, 255, 136, 0.35);

    border-radius: 50px;

    background: rgba(0, 255, 136, 0.05);

    color: #00ff88;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 3px;

}


.content-header h2 {

    margin: 0;

    color: #ffffff;

    font-size: 50px;

    line-height: 1.1;

    font-weight: 850;

    letter-spacing: -1.5px;

}


.content-header h2 span {

    color: #00ff88;

    text-shadow:
        0 0 25px rgba(0, 255, 136, 0.2);

}


.content-header p {

    max-width: 650px;

    margin: 22px auto 0;

    color: #87918b;

    font-size: 15px;

    line-height: 1.8;

}


/* =====================================================
   CARDS GRID
===================================================== */

.content-cards {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

}


/* =====================================================
   CARD
===================================================== */

.content-card {

    position: relative;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 22px;

    background: #080c0a;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4);

    transition:
        transform 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease;

}


.content-card:hover {

    transform: translateY(-10px);

    border-color:
        rgba(0, 255, 136, 0.45);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 35px rgba(0, 255, 136, 0.08);

}


/* =====================================================
   FEATURED CARD
===================================================== */

.featured-card {

    border-color:
        rgba(0, 255, 136, 0.3);

    box-shadow:
        0 0 40px rgba(0, 255, 136, 0.05);

}


/* =====================================================
   IMAGE
===================================================== */

.card-image {

    position: relative;

    height: 290px;

    overflow: hidden;

    background: #070a08;

}


.card-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    filter:
        saturate(0.85)
        brightness(0.72);

    transform: scale(1.02);

    transition:
        transform 0.8s ease,
        filter 0.5s ease;

}


/* MOVIES IMAGE */

.content-card:first-child .card-image img {

    object-position: center;

    filter:
        saturate(0.9)
        brightness(0.70)
        contrast(1.05);

}


/* HOVER */

.content-card:hover .card-image img {

    transform: scale(1.09);

    filter:
        saturate(1.05)
        brightness(0.82)
        contrast(1.03);

}


/* =====================================================
   IMAGE OVERLAY
===================================================== */

.image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.05) 0%,
            rgba(3, 8, 5, 0.10) 30%,
            rgba(3, 8, 5, 0.94) 100%
        );

    pointer-events: none;

}


.image-overlay::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(0, 255, 136, 0.10),
            transparent 55%
        );

}


/* =====================================================
   BADGE
===================================================== */

.card-badge {

    position: absolute;

    top: 18px;

    left: 18px;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 8px 12px;

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius: 50px;

    background:
        rgba(2, 7, 4, 0.72);

    backdrop-filter: blur(12px);

    color: #ffffff;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.card-badge span {

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: #00ff88;

    box-shadow:
        0 0 10px #00ff88;

}


/* =====================================================
   NUMBER
===================================================== */

.card-number {

    position: absolute;

    top: 18px;

    right: 18px;

    color: rgba(255, 255, 255, 0.3);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1px;

}


/* =====================================================
   CARD CONTENT
===================================================== */

.card-content {

    padding: 28px 25px 25px;

}


.card-content h3 {

    margin: 0 0 12px;

    color: #ffffff;

    font-size: 24px;

    font-weight: 800;

    letter-spacing: -0.3px;

}


.card-content p {

    min-height: 65px;

    margin: 0 0 23px;

    color: #8c9690;

    font-size: 12px;

    line-height: 1.75;

}


/* =====================================================
   LINK
===================================================== */

.card-link {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-top: 18px;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);

    color: #00ff88;

    text-decoration: none;

    font-size: 11px;

    font-weight: 800;

}


.card-link span {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 30px;

    height: 30px;

    border:
        1px solid rgba(0, 255, 136, 0.3);

    border-radius: 50%;

    font-size: 16px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;

}


.card-link:hover span {

    background: #00ff88;

    color: #020503;

    transform: translateX(4px);

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 950px) {

    .content-cards {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .content-section {

        padding: 80px 16px;

    }

    .content-header {

        margin-bottom: 45px;

    }

    .content-header h2 {

        font-size: 37px;

    }

    .content-header p {

        font-size: 14px;

    }

    .content-cards {

        grid-template-columns: 1fr;

        gap: 18px;

    }

    .card-image {

        height: 250px;

    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c21be72 *//* =====================================================
   WORLDWIDE CONTENT
   BLACK + NEON GREEN
===================================================== */

.worldwide-section {

    position: relative;

    padding: 120px 0;

    overflow: hidden;

    background: #050706;

}


/* =====================================================
   BACKGROUND GLOW
===================================================== */

.worldwide-section::before {

    content: "";

    position: absolute;

    width: 550px;

    height: 550px;

    right: -280px;

    top: 15%;

    border-radius: 50%;

    background: #00FF88;

    filter: blur(190px);

    opacity: 0.035;

    pointer-events: none;

}


/* =====================================================
   CONTAINER
===================================================== */

.worldwide-container {

    width: min(1180px, 92%);

    margin: auto;

    position: relative;

    z-index: 2;

}


/* =====================================================
   HEADER
===================================================== */

.worldwide-header {

    max-width: 720px;

    margin: 0 auto 60px;

    text-align: center;

}


.worldwide-badge {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 8px 14px;

    border-radius: 50px;

    color: #00FF88;

    background: rgba(0,255,136,0.06);

    border: 1px solid rgba(0,255,136,0.24);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.worldwide-header h2 {

    margin: 20px 0;

    color: #FFFFFF;

    font-size: clamp(38px, 5vw, 60px);

    line-height: 1;

    font-weight: 900;

    letter-spacing: -3px;

}


.worldwide-header h2 span {

    display: block;

    color: #00FF88;

}


.worldwide-header p {

    max-width: 640px;

    margin: auto;

    color: #929D97;

    font-size: 16px;

    line-height: 1.7;

}


/* =====================================================
   MAIN CARD
===================================================== */

.worldwide-main {

    position: relative;

    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 500px;

    overflow: hidden;

    border-radius: 26px;

    background: #0D1210;

    border: 1px solid rgba(255,255,255,0.08);

}


.worldwide-main::after {

    content: "";

    position: absolute;

    inset: 0;

    border-radius: 26px;

    border: 1px solid rgba(0,255,136,0.08);

    pointer-events: none;

}


/* =====================================================
   GLOW
===================================================== */

.worldwide-glow {

    position: absolute;

    width: 400px;

    height: 400px;

    left: 20%;

    top: 30%;

    border-radius: 50%;

    background: #00FF88;

    filter: blur(160px);

    opacity: 0.06;

    pointer-events: none;

}


/* =====================================================
   CONTENT
===================================================== */

.worldwide-content {

    position: relative;

    z-index: 3;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 65px;

}


.worldwide-icon {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

    border-radius: 16px;

    background: rgba(0,255,136,0.07);

    border: 1px solid rgba(0,255,136,0.16);

    font-size: 25px;

}


.worldwide-label {

    margin-bottom: 12px;

    color: #00FF88;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.6px;

}


.worldwide-content h3 {

    max-width: 520px;

    margin-bottom: 18px;

    color: #FFFFFF;

    font-size: clamp(30px, 4vw, 46px);

    line-height: 1.08;

    font-weight: 900;

    letter-spacing: -2px;

}


.worldwide-content h3 span {

    color: #00FF88;

}


.worldwide-content p {

    max-width: 500px;

    color: #7E8B83;

    font-size: 15px;

    line-height: 1.7;

}


/* =====================================================
   BUTTON
===================================================== */

.worldwide-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    width: fit-content;

    margin-top: 28px;

    padding: 14px 20px;

    border-radius: 11px;

    color: #031009;

    background: linear-gradient(
        135deg,
        #00FF88,
        #00D875
    );

    font-size: 12px;

    font-weight: 800;

    text-decoration: none;

    box-shadow:
        0 12px 35px
        rgba(0,255,136,0.10);

    transition: 0.25s ease;

}


.worldwide-button span {

    font-size: 18px;

}


.worldwide-button:hover {

    transform: translateY(-3px);

    box-shadow:
        0 18px 45px
        rgba(0,255,136,0.22);

}


/* =====================================================
   WORLD MAP
===================================================== */

.world-map {

    position: relative;

    min-height: 500px;

    overflow: hidden;

    background: #020403;

}


/* =====================================================
   WORLD MAP IMAGE
===================================================== */

.world-map-image {

    position: absolute;

    inset: 0;

    z-index: 1;

}


.world-map-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    opacity: 0.72;

    filter:
        brightness(0.65)
        contrast(1.15)
        saturate(1.25);

    transform: scale(1.03);

}


/* =====================================================
   IMAGE OVERLAY
===================================================== */

.world-map-overlay {

    position: absolute;

    inset: 0;

    z-index: 2;

    background:

        linear-gradient(
            90deg,
            #0D1210 0%,
            rgba(13,18,16,0.25) 35%,
            rgba(0,0,0,0.05) 100%
        ),

        linear-gradient(
            180deg,
            rgba(0,0,0,0.15),
            rgba(0,0,0,0.45)
        );

    pointer-events: none;

}


/* =====================================================
   MAP GLOW
===================================================== */

.map-glow {

    position: absolute;

    width: 280px;

    height: 280px;

    top: 50%;

    left: 50%;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background: #00FF88;

    filter: blur(110px);

    opacity: 0.10;

    z-index: 3;

    pointer-events: none;

}


/* =====================================================
   LOCATION DOTS
===================================================== */

.location {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 8px;

    color: #D4DDD8;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.8px;

    z-index: 5;

    text-shadow:
        0 0 10px rgba(0,0,0,0.9);

}


.location span {

    width: 8px;

    height: 8px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #00FF88;

    box-shadow:
        0 0 8px #00FF88,
        0 0 18px rgba(0,255,136,0.8);

    animation:
        locationPulse 2s ease-in-out infinite;

}


@keyframes locationPulse {

    0%,
    100% {

        transform: scale(1);

        box-shadow:
            0 0 8px #00FF88,
            0 0 18px rgba(0,255,136,0.8);

    }

    50% {

        transform: scale(1.35);

        box-shadow:
            0 0 12px #00FF88,
            0 0 28px rgba(0,255,136,1);

    }

}


/* =====================================================
   LOCATION POSITIONS
===================================================== */

.location-1 {

    top: 28%;

    left: 18%;

}


.location-2 {

    top: 27%;

    left: 51%;

}


.location-3 {

    top: 55%;

    left: 47%;

}


.location-4 {

    top: 34%;

    right: 17%;

}


.location-5 {

    bottom: 20%;

    right: 14%;

}


/* =====================================================
   STATS
===================================================== */

.worldwide-stats {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    margin-top: 18px;

    overflow: hidden;

    border-radius: 18px;

    background: #0D1210;

    border: 1px solid rgba(255,255,255,0.07);

}


.world-stat {

    padding: 28px 20px;

    text-align: center;

    border-right:
        1px solid
        rgba(255,255,255,0.06);

}


.world-stat:last-child {

    border-right: none;

}


.world-stat strong {

    display: block;

    margin-bottom: 6px;

    color: #00FF88;

    font-size: 28px;

    font-weight: 900;

    letter-spacing: -1px;

}


.world-stat span {

    color: #7E8B83;

    font-size: 11px;

}


/* =====================================================
   REGIONS
===================================================== */

.world-regions {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;

    margin-top: 18px;

}


.region-card {

    padding: 24px;

    border-radius: 16px;

    background: #0D1210;

    border: 1px solid rgba(255,255,255,0.07);

    transition: 0.25s ease;

}


.region-card:hover {

    transform: translateY(-4px);

    border-color:
        rgba(0,255,136,0.22);

}


.region-icon {

    display: block;

    margin-bottom: 14px;

    font-size: 25px;

}


.region-card h4 {

    margin-bottom: 5px;

    color: #FFFFFF;

    font-size: 14px;

    font-weight: 800;

}


.region-card p {

    color: #69756E;

    font-size: 11px;

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .worldwide-section {

        padding: 90px 0;

    }


    .worldwide-main {

        grid-template-columns: 1fr;

    }


    .world-map {

        min-height: 380px;

    }


    .worldwide-content {

        padding: 50px;

    }


    .worldwide-stats {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .world-stat:nth-child(2) {

        border-right: none;

    }


    .world-stat:nth-child(-n+2) {

        border-bottom:
            1px solid
            rgba(255,255,255,0.06);

    }


    .world-regions {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .worldwide-section {

        padding: 70px 0;

    }


    .worldwide-container {

        width: 90%;

    }


    .worldwide-header {

        margin-bottom: 40px;

    }


    .worldwide-header h2 {

        font-size: 40px;

        letter-spacing: -2px;

    }


    .worldwide-header p {

        font-size: 15px;

    }


    .worldwide-main {

        min-height: auto;

    }


    .worldwide-content {

        padding: 35px 25px;

    }


    .worldwide-content h3 {

        font-size: 32px;

    }


    .worldwide-button {

        width: 100%;

    }


    .world-map {

        min-height: 300px;

    }


    .world-map-image img {

        object-position: center;

    }


    .location {

        font-size: 8px;

    }


    .location span {

        width: 6px;

        height: 6px;

    }


    .worldwide-stats {

        grid-template-columns: 1fr 1fr;

    }


    .world-stat {

        padding: 22px 10px;

    }


    .world-stat strong {

        font-size: 23px;

    }


    .world-regions {

        grid-template-columns: 1fr 1fr;

        gap: 10px;

    }


    .region-card {

        padding: 18px;

    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9e7612b *//* =====================================================
   FREE TRIAL SECTION
   BLACK + NEON GREEN
===================================================== */

.trial-section {

    position: relative;

    padding: 120px 0;

    overflow: hidden;

    background: #090D0B;

}


/* =====================================================
   CONTAINER
===================================================== */

.trial-container {

    width: min(1180px, 92%);

    margin: auto;

    position: relative;

    z-index: 2;

}


/* =====================================================
   MAIN BOX
===================================================== */

.trial-box {

    position: relative;

    display: grid;

    grid-template-columns: 1.15fr 0.85fr;

    min-height: 500px;

    overflow: hidden;

    border-radius: 26px;

    background:
        linear-gradient(
            135deg,
            #0D1210,
            #080C0A
        );

    border:
        1px solid
        rgba(0,255,136,0.16);

    box-shadow:
        0 30px 80px
        rgba(0,0,0,0.35);

}


/* =====================================================
   GREEN GLOW
===================================================== */

.trial-glow {

    position: absolute;

    width: 500px;

    height: 500px;

    left: 30%;

    top: 50%;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background: #00FF88;

    filter: blur(180px);

    opacity: 0.07;

    pointer-events: none;

}


/* =====================================================
   CONTENT
===================================================== */

.trial-content {

    position: relative;

    z-index: 3;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 65px;

}


/* =====================================================
   BADGE
===================================================== */

.trial-badge {

    width: fit-content;

    display: inline-flex;

    align-items: center;

    padding: 8px 14px;

    margin-bottom: 20px;

    border-radius: 50px;

    color: #00FF88;

    background:
        rgba(0,255,136,0.07);

    border:
        1px solid
        rgba(0,255,136,0.25);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1.5px;

}


/* =====================================================
   TITLE
===================================================== */

.trial-content h2 {

    max-width: 600px;

    margin-bottom: 20px;

    color: #FFFFFF;

    font-size:
        clamp(40px, 5vw, 62px);

    line-height: 0.98;

    font-weight: 900;

    letter-spacing: -3px;

}


.trial-content h2 span {

    display: block;

    color: #00FF88;

}


/* =====================================================
   DESCRIPTION
===================================================== */

.trial-content > p {

    max-width: 590px;

    margin-bottom: 30px;

    color: #929D97;

    font-size: 16px;

    line-height: 1.7;

}


/* =====================================================
   BUTTONS
===================================================== */

.trial-actions {

    display: flex;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;

}


/* PRIMARY */

.trial-primary-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 15px 21px;

    border-radius: 11px;

    color: #031009;

    background:
        linear-gradient(
            135deg,
            #00FF88,
            #00D875
        );

    font-size: 12px;

    font-weight: 900;

    box-shadow:
        0 12px 35px
        rgba(0,255,136,0.12);

    transition:
        0.25s ease;

}


.trial-primary-btn span {

    font-size: 18px;

}


.trial-primary-btn:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 18px 45px
        rgba(0,255,136,0.23);

}


/* SECONDARY */

.trial-secondary-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 15px 21px;

    border-radius: 11px;

    color: #FFFFFF;

    background:
        rgba(255,255,255,0.04);

    border:
        1px solid
        rgba(255,255,255,0.10);

    font-size: 12px;

    font-weight: 800;

    transition:
        0.25s ease;

}


.trial-secondary-btn:hover {

    color: #031009;

    background: #00FF88;

    border-color: #00FF88;

}


/* =====================================================
   TRUST
===================================================== */

.trial-trust {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 30px;

}


.trial-trust-item {

    display: flex;

    align-items: center;

    gap: 7px;

    color: #69756E;

    font-size: 11px;

}


.trial-trust-item span {

    color: #00FF88;

    font-weight: 900;

}


/* =====================================================
   VISUAL
===================================================== */

.trial-visual {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 500px;

    overflow: hidden;

}


/* =====================================================
   CIRCLES
===================================================== */

.trial-circle {

    position: absolute;

    border-radius: 50%;

    border:
        1px solid
        rgba(0,255,136,0.15);

}


.circle-one {

    width: 380px;

    height: 380px;

}


.circle-two {

    width: 270px;

    height: 270px;

    border-color:
        rgba(0,255,136,0.20);

}


/* =====================================================
   SCREEN
===================================================== */

.trial-screen {

    position: relative;

    z-index: 4;

    width: 290px;

    height: 190px;

    overflow: hidden;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #111A15,
            #060907
        );

    border:
        1px solid
        rgba(0,255,136,0.25);

    box-shadow:
        0 30px 70px
        rgba(0,0,0,0.55),
        0 0 50px
        rgba(0,255,136,0.08);

    transform:
        perspective(800px)
        rotateY(-8deg)
        rotateX(4deg);

    animation:
        trialFloat 5s ease-in-out infinite;

}


/* =====================================================
   SCREEN TOP
===================================================== */

.screen-top {

    display: flex;

    align-items: center;

    gap: 6px;

    height: 34px;

    padding: 0 13px;

    background:
        rgba(255,255,255,0.03);

    border-bottom:
        1px solid
        rgba(255,255,255,0.06);

}


.screen-dot {

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: #00FF88;

    opacity: 0.7;

}


/* =====================================================
   SCREEN CONTENT
===================================================== */

.screen-content {

    height: calc(100% - 34px);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

}


.screen-live {

    margin-bottom: 3px;

    color: #00FF88;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;

}


.screen-content strong {

    color: #FFFFFF;

    font-size: 58px;

    line-height: 1;

    font-weight: 900;

    letter-spacing: -4px;

}


.screen-content small {

    margin-top: 7px;

    color: #69756E;

    font-size: 8px;

    letter-spacing: 1.5px;

    font-weight: 800;

}


/* =====================================================
   FLOAT ANIMATION
===================================================== */

@keyframes trialFloat {

    0%,
    100% {

        transform:
            perspective(800px)
            rotateY(-8deg)
            rotateX(4deg)
            translateY(0);

    }

    50% {

        transform:
            perspective(800px)
            rotateY(-8deg)
            rotateX(4deg)
            translateY(-10px);

    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .trial-section {

        padding: 90px 0;

    }


    .trial-box {

        grid-template-columns: 1fr;

    }


    .trial-content {

        padding: 55px;

    }


    .trial-visual {

        min-height: 380px;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .trial-section {

        padding: 70px 0;

    }


    .trial-container {

        width: 90%;

    }


    .trial-content {

        padding: 40px 25px;

    }


    .trial-content h2 {

        font-size: 40px;

        letter-spacing: -2px;

    }


    .trial-content > p {

        font-size: 15px;

    }


    .trial-actions {

        flex-direction: column;

        width: 100%;

    }


    .trial-primary-btn,
    .trial-secondary-btn {

        width: 100%;

    }


    .trial-trust {

        flex-direction: column;

        align-items: flex-start;

        gap: 10px;

    }


    .trial-visual {

        min-height: 320px;

    }


    .trial-screen {

        width: 250px;

        height: 165px;

    }


    .circle-one {

        width: 300px;

        height: 300px;

    }


    .circle-two {

        width: 220px;

        height: 220px;

    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2ef6be6 *//* =====================================================
   MOVIES SECTION
===================================================== */

.movies-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background: #080C0A;
}

.movies-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -250px;
    top: 20%;
    border-radius: 50%;
    background: #00FF88;
    filter: blur(190px);
    opacity: .035;
    pointer-events: none;
}

.movies-container {
    position: relative;
    z-index: 2;
    width: min(1150px, 92%);
    margin: auto;
}


/* =====================================================
   HEADER
===================================================== */

.movies-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.movies-heading {
    max-width: 650px;
}

.movies-badge {
    display: inline-flex;
    padding: 7px 13px;
    border-radius: 50px;

    color: #00FF88;

    background: rgba(0,255,136,.06);

    border: 1px solid rgba(0,255,136,.20);

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.movies-heading h2 {
    margin: 18px 0 13px;

    color: #FFFFFF;

    font-size: clamp(40px, 5vw, 58px);

    line-height: 1;

    font-weight: 900;

    letter-spacing: -2.5px;
}

.movies-heading h2 span {
    color: #00FF88;
}

.movies-heading p {
    max-width: 590px;

    margin: 0;

    color: #7E8B83;

    font-size: 14px;

    line-height: 1.7;
}


/* =====================================================
   VIEW ALL
===================================================== */

.movies-view-all {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 11px 15px;

    border-radius: 9px;

    color: #00FF88;

    background: rgba(0,255,136,.05);

    border: 1px solid rgba(0,255,136,.15);

    font-size: 9px;

    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: .7px;

    white-space: nowrap;

    text-decoration: none;

    transition: .25s ease;
}

.movies-view-all span {
    font-size: 16px;
}

.movies-view-all:hover {
    color: #031009;
    background: #00FF88;
}


/* =====================================================
   GRID
===================================================== */

.movies-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 16px;
}


/* =====================================================
   CARD
===================================================== */

.movie-card {
    min-width: 0;

    overflow: hidden;

    border-radius: 16px;

    background: #0D1210;

    border: 1px solid rgba(255,255,255,.065);

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.movie-card:hover {
    transform: translateY(-7px);

    border-color: rgba(0,255,136,.22);

    box-shadow:
        0 25px 50px rgba(0,0,0,.35);
}


/* =====================================================
   POSTER
===================================================== */

.movie-poster {
    position: relative;

    aspect-ratio: 2 / 3;

    overflow: hidden;

    background: #101612;
}

.movie-poster img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;
}

.movie-card:hover .movie-poster img {
    transform: scale(1.07);
}


/* Dark gradient */

.movie-poster::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.70),
            transparent 55%
        );

    pointer-events: none;
}


/* =====================================================
   OVERLAY
===================================================== */

.movie-overlay {
    position: absolute;

    z-index: 4;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(0,0,0,.42);

    opacity: 0;

    transition: .3s ease;
}

.movie-card:hover .movie-overlay {
    opacity: 1;
}


/* =====================================================
   PLAY
===================================================== */

.movie-play {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 52px;
    height: 52px;

    padding-left: 3px;

    border: none;

    border-radius: 50%;

    color: #031009;

    background: #00FF88;

    font-size: 15px;

    cursor: pointer;

    box-shadow:
        0 0 35px rgba(0,255,136,.25);

    transform: scale(.75);

    transition: .3s ease;
}

.movie-card:hover .movie-play {
    transform: scale(1);
}


/* =====================================================
   QUALITY
===================================================== */

.movie-quality {
    position: absolute;

    z-index: 5;

    top: 10px;
    right: 10px;

    padding: 5px 8px;

    border-radius: 5px;

    color: #031009;

    background: #00FF88;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: .6px;
}


/* =====================================================
   INFO
===================================================== */

.movie-info {
    padding: 16px;
}

.movie-info h3 {
    overflow: hidden;

    margin: 0 0 9px;

    color: #FFFFFF;

    font-size: 14px;

    font-weight: 850;

    text-overflow: ellipsis;

    white-space: nowrap;
}

.movie-meta {
    display: flex;

    align-items: center;

    gap: 6px;

    color: #626D67;

    font-size: 8px;
}

.movie-meta i {
    color: #39443E;
    font-style: normal;
}

.movie-meta b {
    margin-left: auto;

    color: #00FF88;

    font-size: 8px;
}


/* =====================================================
   BOTTOM
===================================================== */

.movies-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    margin-top: 17px;

    padding: 21px 24px;

    border-radius: 15px;

    background: #0D1210;

    border: 1px solid rgba(0,255,136,.12);
}

.movies-bottom-text {
    display: flex;

    flex-direction: column;

    gap: 5px;
}

.movies-bottom-text span {
    color: #00FF88;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.1px;
}

.movies-bottom-text strong {
    color: #FFFFFF;

    font-size: 14px;
}

.movies-cta {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 12px 17px;

    border-radius: 9px;

    color: #031009;

    background: #00FF88;

    font-size: 9px;

    font-weight: 900;

    text-decoration: none;

    white-space: nowrap;

    transition: .25s ease;
}

.movies-cta span {
    font-size: 15px;
}

.movies-cta:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(0,255,136,.16);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .movies-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .movies-section {
        padding: 75px 0;
    }

    .movies-container {
        width: 90%;
    }

    .movies-header {
        align-items: flex-start;

        flex-direction: column;

        margin-bottom: 30px;
    }

    .movies-heading h2 {
        font-size: 39px;

        letter-spacing: -2px;
    }

    .movies-heading p {
        font-size: 13px;
    }

    .movies-view-all {
        align-self: flex-start;
    }

    .movies-grid {
        gap: 10px;
    }

    .movie-info {
        padding: 12px;
    }

    .movie-info h3 {
        font-size: 11px;
    }

    .movie-meta {
        font-size: 7px;
    }

    .movies-bottom {
        align-items: flex-start;

        flex-direction: column;

        padding: 20px;
    }

    .movies-cta {
        width: 100%;

        justify-content: center;
    }

}


/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .movies-grid {
        grid-template-columns: 1fr;
    }

    .movie-info h3 {
        font-size: 13px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-16d0797 *//* =====================================================
   PREMIUM CONTENT HUB
   BLACK + NEON GREEN
===================================================== */

.content-hub {

    position: relative;

    width: 100%;

    padding: 120px 20px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% -10%,
            rgba(0, 255, 120, 0.12),
            transparent 42%
        ),
        #080C0A;

}


/* =====================================================
   BACKGROUND GLOW
===================================================== */

.content-hub::before {

    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    background: rgba(0, 255, 120, 0.07);

    filter: blur(140px);

    border-radius: 50%;

    pointer-events: none;

}


/* =====================================================
   CONTAINER
===================================================== */

.content-hub-container {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1250px;

    margin: auto;

}


/* =====================================================
   INTRO
===================================================== */

.content-hub-intro {

    max-width: 760px;

    margin: 0 auto 65px;

    text-align: center;

}


.content-hub-badge {

    display: inline-flex;

    align-items: center;

    padding: 9px 17px;

    margin-bottom: 20px;

    border: 1px solid rgba(0,255,120,0.35);

    border-radius: 50px;

    background: rgba(0,255,120,0.06);

    color: #00ff78;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2.5px;

}


.content-hub-intro h2 {

    margin: 0 0 20px;

    color: #ffffff;

    font-size: 54px;

    line-height: 1.08;

    font-weight: 850;

    letter-spacing: -1.5px;

}


.content-hub-intro h2 span {

    display: block;

    color: #00ff78;

    text-shadow:
        0 0 30px rgba(0,255,120,0.25);

}


.content-hub-intro p {

    max-width: 650px;

    margin: auto;

    color: #8f9993;

    font-size: 17px;

    line-height: 1.8;

}


/* =====================================================
   GRID
===================================================== */

.content-hub-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}


/* =====================================================
   CARD
===================================================== */

.content-hub-card {

    position: relative;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.06),
            rgba(255,255,255,0.015)
        );

    box-shadow:
        0 20px 60px rgba(0,0,0,0.35);

    backdrop-filter: blur(15px);

    transition:
        transform 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease;

}


.content-hub-card:hover {

    transform: translateY(-12px);

    border-color:
        rgba(0,255,120,0.45);

    box-shadow:
        0 30px 80px rgba(0,0,0,0.55),
        0 0 45px rgba(0,255,120,0.08);

}


/* FEATURED CARD */

.featured-card {

    border-color:
        rgba(0,255,120,0.25);

}


/* =====================================================
   IMAGE
===================================================== */

.content-hub-image {

    position: relative;

    height: 320px;

    overflow: hidden;

    background: #050706;

}


.content-hub-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.8s ease,
        filter 0.5s ease;

}


.content-hub-card:hover
.content-hub-image img {

    transform: scale(1.08);

    filter:
        brightness(0.82)
        saturate(1.1);

}


/* =====================================================
   IMAGE OVERLAY
===================================================== */

.content-hub-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.92),
            rgba(0,0,0,0.1) 70%,
            transparent
        );

}


/* =====================================================
   GREEN IMAGE GLOW
===================================================== */

.content-hub-image::after {

    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -100px;
    bottom: -120px;

    border-radius: 50%;

    background:
        rgba(0,255,120,0.25);

    filter: blur(70px);

    opacity: 0;

    transition: opacity 0.5s ease;

}


.content-hub-card:hover
.content-hub-image::after {

    opacity: 1;

}


/* =====================================================
   CATEGORY
===================================================== */

.content-hub-category {

    position: absolute;

    z-index: 3;

    top: 18px;
    left: 18px;

    padding: 8px 13px;

    border:
        1px solid rgba(0,255,120,0.35);

    border-radius: 50px;

    background:
        rgba(0,0,0,0.7);

    color: #ffffff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

    backdrop-filter: blur(10px);

}


/* =====================================================
   PLAY BUTTON
===================================================== */

.content-hub-play {

    position: absolute;

    z-index: 3;

    right: 20px;
    bottom: 20px;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(0,255,120,0.5);

    border-radius: 50%;

    background:
        rgba(0,0,0,0.65);

    color: #00ff78;

    backdrop-filter: blur(10px);

    transition:
        transform 0.3s ease,
        background 0.3s ease;

}


.content-hub-card:hover
.content-hub-play {

    transform: scale(1.12);

    background: #00ff78;

    color: #050505;

}


.content-hub-play span {

    margin-left: 2px;

    font-size: 13px;

}


/* =====================================================
   CARD CONTENT
===================================================== */

.content-hub-card-content {

    padding: 28px 26px 30px;

}


.content-hub-number {

    display: block;

    margin-bottom: 8px;

    color: #00ff78;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    opacity: 0.7;

}


.content-hub-card-content h3 {

    margin: 0 0 12px;

    color: #ffffff;

    font-size: 24px;

    font-weight: 800;

}


.content-hub-card-content p {

    margin: 0 0 23px;

    color: #89928c;

    font-size: 14px;

    line-height: 1.75;

}


/* =====================================================
   LINK
===================================================== */

.content-hub-link {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #00ff78;

    text-decoration: none;

    font-size: 13px;

    font-weight: 800;

    transition: gap 0.3s ease;

}


.content-hub-link span {

    font-size: 18px;

    transition:
        transform 0.3s ease;

}


.content-hub-link:hover {

    gap: 14px;

}


.content-hub-link:hover span {

    transform: translateX(4px);

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .content-hub-grid {

        grid-template-columns: 1fr 1fr;

    }

    .content-hub-card:last-child {

        grid-column: 1 / -1;

        width: 50%;

        margin: auto;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .content-hub {

        padding: 80px 16px;

    }

    .content-hub-intro {

        margin-bottom: 45px;

    }

    .content-hub-intro h2 {

        font-size: 37px;

        letter-spacing: -0.8px;

    }

    .content-hub-intro p {

        font-size: 15px;

        line-height: 1.7;

    }

    .content-hub-grid {

        grid-template-columns: 1fr;

        gap: 20px;

    }

    .content-hub-card:last-child {

        grid-column: auto;

        width: 100%;

    }

    .content-hub-image {

        height: 280px;

    }

    .content-hub-card-content {

        padding: 24px 21px 27px;

    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7d6bdfb *//* =====================================================
   RESELLER PROGRAM BOX
   BLACK + NEON GREEN
===================================================== */

.reseller-section {

    position: relative;

    padding: 90px 0;

    overflow: hidden;

    background: #080C0A;

}


.reseller-container {

    width: min(1180px, 92%);

    margin: auto;

}


/* =====================================================
   MAIN BOX
===================================================== */

.reseller-box {

    position: relative;

    display: grid;

    grid-template-columns: 1.1fr .9fr;

    min-height: 390px;

    overflow: hidden;

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            #0D1210,
            #090D0B
        );

    border:
        1px solid
        rgba(0,255,136,0.16);

    box-shadow:
        0 30px 80px
        rgba(0,0,0,0.25);

}


/* =====================================================
   LEFT CONTENT
===================================================== */

.reseller-content {

    position: relative;

    z-index: 3;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 50px;

}


.reseller-badge {

    width: fit-content;

    margin-bottom: 17px;

    padding: 7px 12px;

    border-radius: 50px;

    color: #00FF88;

    background:
        rgba(0,255,136,0.06);

    border:
        1px solid
        rgba(0,255,136,0.22);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.4px;

}


.reseller-content h2 {

    max-width: 550px;

    margin: 0 0 16px;

    color: #FFFFFF;

    font-size:
        clamp(34px, 4vw, 48px);

    line-height: 1.04;

    font-weight: 900;

    letter-spacing: -2px;

}


.reseller-content h2 span {

    color: #00FF88;

}


.reseller-content p {

    max-width: 520px;

    margin: 0;

    color: #7E8B83;

    font-size: 14px;

    line-height: 1.7;

}


/* =====================================================
   STATS
===================================================== */

.reseller-stats {

    display: flex;

    gap: 32px;

    margin-top: 25px;

}


.reseller-stats div {

    display: flex;

    flex-direction: column;

}


.reseller-stats strong {

    color: #00FF88;

    font-size: 20px;

    font-weight: 900;

}


.reseller-stats span {

    margin-top: 3px;

    color: #69756E;

    font-size: 8px;

    text-transform: uppercase;

    letter-spacing: .8px;

}


/* =====================================================
   BUTTON
===================================================== */

.reseller-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    width: fit-content;

    margin-top: 25px;

    padding: 13px 18px;

    border-radius: 10px;

    color: #031009;

    background:
        linear-gradient(
            135deg,
            #00FF88,
            #00D875
        );

    font-size: 10px;

    font-weight: 900;

    transition: .25s ease;

}


.reseller-btn span {

    font-size: 16px;

}


.reseller-btn:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 14px 30px
        rgba(0,255,136,0.18);

}


/* =====================================================
   RIGHT VISUAL
===================================================== */

.reseller-visual {

    position: relative;

    min-height: 390px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(0,255,136,0.08),
            transparent 65%
        );

}


/* =====================================================
   GLOW
===================================================== */

.reseller-glow {

    position: absolute;

    width: 260px;

    height: 260px;

    left: 50%;

    top: 50%;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background: #00FF88;

    filter: blur(110px);

    opacity: .08;

}


/* =====================================================
   GRID
===================================================== */

.reseller-grid {

    position: absolute;

    inset: 0;

    opacity: .35;

    background-image:
        linear-gradient(
            rgba(0,255,136,.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0,255,136,.05) 1px,
            transparent 1px
        );

    background-size: 35px 35px;

}


/* =====================================================
   PANEL
===================================================== */

.reseller-panel {

    position: absolute;

    z-index: 3;

    left: 50%;

    top: 50%;

    width: 280px;

    transform:
        translate(-50%, -50%)
        rotate(-3deg);

    overflow: hidden;

    border-radius: 14px;

    background:
        rgba(9,14,11,.94);

    border:
        1px solid
        rgba(0,255,136,.20);

    box-shadow:
        0 25px 60px
        rgba(0,0,0,.45);

    transition: .3s ease;

}


.reseller-panel:hover {

    transform:
        translate(-50%, -50%)
        rotate(0deg)
        translateY(-5px);

}


/* =====================================================
   PANEL TOP
===================================================== */

.panel-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 13px 15px;

    background:
        rgba(255,255,255,.025);

    border-bottom:
        1px solid
        rgba(255,255,255,.06);

}


.panel-top span {

    color: #00FF88;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1px;

}


.panel-top i {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #00FF88;

    box-shadow:
        0 0 10px
        rgba(0,255,136,.7);

}


/* =====================================================
   PANEL BODY
===================================================== */

.panel-body {

    padding: 18px;

}


.panel-row {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 11px 0;

    border-bottom:
        1px solid
        rgba(255,255,255,.045);

}


.panel-row:last-of-type {

    border-bottom: none;

}


.panel-row span {

    color: #69756E;

    font-size: 9px;

}


.panel-row strong {

    color: #FFFFFF;

    font-size: 11px;

}


.panel-row strong.green {

    color: #00FF88;

}


/* =====================================================
   PROGRESS
===================================================== */

.panel-progress {

    height: 5px;

    margin-top: 15px;

    overflow: hidden;

    border-radius: 20px;

    background:
        rgba(255,255,255,.06);

}


.panel-progress span {

    display: block;

    width: 78%;

    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            #00B968,
            #00FF88
        );

    box-shadow:
        0 0 12px
        rgba(0,255,136,.35);

}


/* =====================================================
   FLOATING LABELS
===================================================== */

.reseller-floating {

    position: absolute;

    z-index: 5;

    padding: 8px 11px;

    border-radius: 7px;

    color: #00FF88;

    background:
        rgba(5,10,7,.9);

    border:
        1px solid
        rgba(0,255,136,.18);

    font-size: 7px;

    font-weight: 900;

    letter-spacing: .8px;

    box-shadow:
        0 10px 25px
        rgba(0,0,0,.25);

}


.reseller-floating-one {

    top: 23%;

    right: 7%;

    animation:
        resellerFloat 3s ease-in-out infinite;

}


.reseller-floating-two {

    bottom: 22%;

    left: 5%;

    animation:
        resellerFloat 3s ease-in-out infinite;

    animation-delay: 1s;

}


@keyframes resellerFloat {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-7px);

    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 850px) {

    .reseller-box {

        grid-template-columns: 1fr;

    }


    .reseller-content {

        padding: 45px;

    }


    .reseller-visual {

        min-height: 360px;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .reseller-section {

        padding: 70px 0;

    }


    .reseller-container {

        width: 90%;

    }


    .reseller-content {

        padding: 35px 25px;

    }


    .reseller-content h2 {

        font-size: 34px;

    }


    .reseller-content p {

        font-size: 13px;

    }


    .reseller-stats {

        gap: 20px;

    }


    .reseller-btn {

        width: 100%;

    }


    .reseller-visual {

        min-height: 300px;

    }


    .reseller-panel {

        width: 245px;

    }


    .reseller-floating {

        display: none;

    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-bd6dbc8 *//* =====================================================
   FAQ SECTION
   BLACK + NEON GREEN
===================================================== */

.faq-section {

    position: relative;

    padding: 110px 0;

    overflow: hidden;

    background: #080C0A;

}


/* subtle glow */

.faq-section::before {

    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    top: 20%;

    right: -250px;

    border-radius: 50%;

    background: #00FF88;

    filter: blur(180px);

    opacity: .035;

    pointer-events: none;

}


.faq-container {

    width: min(900px, 92%);

    margin: auto;

    position: relative;

    z-index: 2;

}


/* =====================================================
   INTRO
===================================================== */

.faq-intro {

    text-align: center;

    max-width: 650px;

    margin: 0 auto 50px;

}


.faq-badge {

    display: inline-flex;

    padding: 7px 13px;

    border-radius: 50px;

    color: #00FF88;

    background:
        rgba(0,255,136,.06);

    border:
        1px solid
        rgba(0,255,136,.20);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.5px;

}


.faq-intro h2 {

    margin: 18px 0 14px;

    color: #FFFFFF;

    font-size:
        clamp(38px, 5vw, 56px);

    line-height: 1;

    font-weight: 900;

    letter-spacing: -2.5px;

}


.faq-intro h2 span {

    color: #00FF88;

}


.faq-intro p {

    margin: auto;

    color: #7E8B83;

    font-size: 14px;

    line-height: 1.7;

}


/* =====================================================
   FAQ LIST
===================================================== */

.faq-list {

    display: flex;

    flex-direction: column;

    gap: 12px;

}


/* =====================================================
   FAQ BOX
===================================================== */

.faq-item {

    overflow: hidden;

    border-radius: 14px;

    background: #0D1210;

    border:
        1px solid
        rgba(255,255,255,.07);

    transition:
        border-color .25s ease,
        background .25s ease;

}


.faq-item:hover {

    border-color:
        rgba(0,255,136,.18);

}


.faq-item.active {

    border-color:
        rgba(0,255,136,.22);

    background:
        linear-gradient(
            135deg,
            #0E1511,
            #0B100D
        );

}


/* =====================================================
   QUESTION
===================================================== */

.faq-question {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 22px 24px;

    border: none;

    outline: none;

    cursor: pointer;

    color: #FFFFFF;

    background: transparent;

    text-align: left;

    font-family: inherit;

    font-size: 14px;

    font-weight: 800;

}


.faq-question span {

    transition: color .2s ease;

}


.faq-item.active
.faq-question span {

    color: #00FF88;

}


/* =====================================================
   PLUS ICON
===================================================== */

.faq-question i {

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 29px;

    height: 29px;

    border-radius: 8px;

    color: #00FF88;

    background:
        rgba(0,255,136,.06);

    border:
        1px solid
        rgba(0,255,136,.14);

    font-size: 19px;

    font-style: normal;

    font-weight: 400;

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease;

}


.faq-item.active
.faq-question i {

    transform: rotate(45deg);

    color: #031009;

    background: #00FF88;

}


/* =====================================================
   ANSWER
===================================================== */

.faq-answer {

    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows .3s ease;

}


.faq-answer p {

    min-height: 0;

    overflow: hidden;

    margin: 0;

    padding: 0 24px;

    color: #78847D;

    font-size: 13px;

    line-height: 1.75;

    transition:
        padding .3s ease;

}


.faq-item.active
.faq-answer {

    grid-template-rows: 1fr;

}


.faq-item.active
.faq-answer p {

    padding:
        0 24px 23px;

}


/* =====================================================
   BOTTOM LINE
===================================================== */

.faq-list::after {

    content: "";

    display: block;

    width: 80px;

    height: 2px;

    margin: 18px auto 0;

    border-radius: 10px;

    background: #00FF88;

    box-shadow:
        0 0 15px
        rgba(0,255,136,.35);

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .faq-section {

        padding: 75px 0;

    }


    .faq-container {

        width: 90%;

    }


    .faq-intro {

        margin-bottom: 35px;

    }


    .faq-intro h2 {

        font-size: 38px;

        letter-spacing: -2px;

    }


    .faq-intro p {

        font-size: 13px;

    }


    .faq-question {

        padding: 19px;

        font-size: 13px;

    }


    .faq-question i {

        width: 27px;

        height: 27px;

        font-size: 17px;

    }


    .faq-item.active
    .faq-answer p {

        padding:
            0 19px 20px;

        font-size: 12px;

    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-33f452a *//* =====================================================
   HOW IT WORKS
   BLACK + NEON GREEN
===================================================== */

.how-section {

    position: relative;

    padding: 110px 0;

    overflow: hidden;

    background: #080C0A;

}


.how-section::before {

    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    left: -250px;

    top: 20%;

    border-radius: 50%;

    background: #00FF88;

    filter: blur(180px);

    opacity: .035;

    pointer-events: none;

}


.how-container {

    width: min(1050px, 92%);

    margin: auto;

    position: relative;

    z-index: 2;

}


/* =====================================================
   INTRO
===================================================== */

.how-intro {

    max-width: 650px;

    margin: 0 auto 50px;

    text-align: center;

}


.how-badge {

    display: inline-flex;

    padding: 7px 13px;

    border-radius: 50px;

    color: #00FF88;

    background:
        rgba(0,255,136,.06);

    border:
        1px solid
        rgba(0,255,136,.20);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.5px;

}


.how-intro h2 {

    margin: 18px 0 14px;

    color: #FFFFFF;

    font-size:
        clamp(40px, 5vw, 57px);

    line-height: 1;

    font-weight: 900;

    letter-spacing: -2.5px;

}


.how-intro h2 span {

    color: #00FF88;

}


.how-intro p {

    max-width: 600px;

    margin: auto;

    color: #7E8B83;

    font-size: 14px;

    line-height: 1.7;

}


/* =====================================================
   STEPS
===================================================== */

.how-steps {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px;

}


/* =====================================================
   CARD
===================================================== */

.how-card {

    position: relative;

    min-height: 230px;

    padding: 27px;

    overflow: hidden;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #0E1411,
            #0B100D
        );

    border:
        1px solid
        rgba(255,255,255,.07);

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;

}


.how-card:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(0,255,136,.22);

    box-shadow:
        0 20px 45px
        rgba(0,0,0,.25);

}


/* =====================================================
   NUMBER
===================================================== */

.how-number {

    position: absolute;

    top: 18px;

    right: 22px;

    color:
        rgba(0,255,136,.08);

    font-size: 55px;

    line-height: 1;

    font-weight: 900;

    letter-spacing: -3px;

}


/* =====================================================
   ICON
===================================================== */

.how-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 48px;

    height: 48px;

    margin-bottom: 22px;

    border-radius: 13px;

    color: #00FF88;

    background:
        rgba(0,255,136,.07);

    border:
        1px solid
        rgba(0,255,136,.16);

    font-size: 19px;

    font-weight: 900;

    box-shadow:
        inset 0 0 20px
        rgba(0,255,136,.025);

}


.how-card-content {

    position: relative;

    z-index: 2;

}


.how-label {

    display: block;

    margin-bottom: 7px;

    color: #00FF88;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.2px;

}


.how-card h3 {

    margin: 0 0 10px;

    color: #FFFFFF;

    font-size: 19px;

    font-weight: 850;

}


.how-card p {

    max-width: 410px;

    margin: 0;

    color: #707C75;

    font-size: 12px;

    line-height: 1.7;

}


/* =====================================================
   ARROW
===================================================== */

.how-arrow {

    position: absolute;

    right: 25px;

    bottom: 22px;

    color:
        rgba(0,255,136,.35);

    font-size: 20px;

    transition: .25s ease;

}


.how-card:hover .how-arrow {

    color: #00FF88;

    transform:
        translateX(5px);

}


/* =====================================================
   BOTTOM CTA
===================================================== */

.how-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    margin-top: 16px;

    padding: 23px 25px;

    border-radius: 16px;

    background:
        #0D1210;

    border:
        1px solid
        rgba(0,255,136,.12);

}


.how-bottom div {

    display: flex;

    flex-direction: column;

    gap: 5px;

}


.how-bottom span {

    color: #00FF88;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.2px;

}


.how-bottom strong {

    color: #FFFFFF;

    font-size: 15px;

}


.how-bottom a {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 12px 17px;

    border-radius: 9px;

    color: #031009;

    background: #00FF88;

    font-size: 10px;

    font-weight: 900;

    transition: .25s ease;

}


.how-bottom a b {

    font-size: 15px;

}


.how-bottom a:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 12px 25px
        rgba(0,255,136,.16);

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 750px) {

    .how-section {

        padding: 85px 0;

    }


    .how-steps {

        grid-template-columns: 1fr;

    }


    .how-card {

        min-height: 205px;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .how-section {

        padding: 70px 0;

    }


    .how-container {

        width: 90%;

    }


    .how-intro {

        margin-bottom: 35px;

    }


    .how-intro h2 {

        font-size: 39px;

        letter-spacing: -2px;

    }


    .how-intro p {

        font-size: 13px;

    }


    .how-card {

        min-height: 215px;

        padding: 23px;

    }


    .how-number {

        font-size: 48px;

    }


    .how-bottom {

        align-items: flex-start;

        flex-direction: column;

    }


    .how-bottom a {

        width: 100%;

        justify-content: center;

    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ef81eef *//* =====================================================
   CUSTOMER REVIEWS
   BLACK + NEON GREEN
===================================================== */

.reviews-section {

    position: relative;

    padding: 110px 0;

    overflow: hidden;

    background: #080C0A;

}


/* Background glow */

.reviews-section::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    left: 50%;

    top: 35%;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background: #00FF88;

    filter: blur(200px);

    opacity: .025;

    pointer-events: none;

}


.reviews-container {

    width: min(1100px, 92%);

    margin: auto;

    position: relative;

    z-index: 2;

}


/* =====================================================
   INTRO
===================================================== */

.reviews-intro {

    max-width: 680px;

    margin: 0 auto 50px;

    text-align: center;

}


.reviews-badge {

    display: inline-flex;

    padding: 7px 13px;

    border-radius: 50px;

    color: #00FF88;

    background:
        rgba(0,255,136,.06);

    border:
        1px solid
        rgba(0,255,136,.20);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.5px;

}


.reviews-intro h2 {

    margin: 18px 0 14px;

    color: #FFFFFF;

    font-size:
        clamp(40px, 5vw, 57px);

    line-height: 1;

    font-weight: 900;

    letter-spacing: -2.5px;

}


.reviews-intro h2 span {

    color: #00FF88;

}


.reviews-intro p {

    max-width: 600px;

    margin: auto;

    color: #7E8B83;

    font-size: 14px;

    line-height: 1.7;

}


/* =====================================================
   REVIEWS GRID
===================================================== */

.reviews-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px;

}


/* =====================================================
   REVIEW CARD
===================================================== */

.review-card {

    position: relative;

    padding: 25px;

    overflow: hidden;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #0E1411,
            #0B100D
        );

    border:
        1px solid
        rgba(255,255,255,.07);

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;

}


.review-card::before {

    content: "";

    position: absolute;

    width: 130px;

    height: 130px;

    right: -80px;

    top: -80px;

    border-radius: 50%;

    background: #00FF88;

    filter: blur(70px);

    opacity: .04;

}


.review-card:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(0,255,136,.22);

    box-shadow:
        0 20px 45px
        rgba(0,0,0,.25);

}


/* =====================================================
   USER
===================================================== */

.review-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.review-user {

    display: flex;

    align-items: center;

    gap: 12px;

}


.review-avatar {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 43px;

    height: 43px;

    border-radius: 50%;

    color: #031009;

    background:
        linear-gradient(
            135deg,
            #00FF88,
            #00D875
        );

    font-size: 14px;

    font-weight: 900;

}


.review-user h3 {

    margin: 0 0 3px;

    color: #FFFFFF;

    font-size: 13px;

    font-weight: 800;

}


.review-user span {

    color: #657169;

    font-size: 8px;

}


/* =====================================================
   VERIFIED
===================================================== */

.review-check {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 24px;

    height: 24px;

    border-radius: 50%;

    color: #031009;

    background: #00FF88;

    font-size: 12px;

    font-weight: 900;

}


/* =====================================================
   STARS
===================================================== */

.review-stars {

    margin-top: 20px;

    color: #00FF88;

    font-size: 13px;

    letter-spacing: 2px;

}


/* =====================================================
   TEXT
===================================================== */

.review-text {

    min-height: 82px;

    margin: 15px 0 20px;

    color: #8A958F;

    font-size: 13px;

    line-height: 1.75;

}


/* =====================================================
   FOOTER
===================================================== */

.review-footer {

    display: flex;

    align-items: center;

    gap: 7px;

    padding-top: 14px;

    border-top:
        1px solid
        rgba(255,255,255,.06);

    color: #59645E;

    font-size: 8px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .7px;

}


.review-footer span:nth-child(1) {

    color: #00FF88;

}


/* =====================================================
   SUMMARY
===================================================== */

.reviews-summary {

    display: flex;

    align-items: center;

    gap: 30px;

    margin-top: 16px;

    padding: 20px 24px;

    border-radius: 16px;

    background: #0D1210;

    border:
        1px solid
        rgba(0,255,136,.12);

}


.summary-rating {

    display: flex;

    align-items: center;

    gap: 13px;

}


.summary-rating > strong {

    color: #FFFFFF;

    font-size: 30px;

    font-weight: 900;

}


.summary-stars {

    margin-bottom: 3px;

    color: #00FF88;

    font-size: 10px;

    letter-spacing: 2px;

}


.summary-rating span {

    color: #657169;

    font-size: 8px;

}


.summary-divider {

    width: 1px;

    height: 38px;

    background:
        rgba(255,255,255,.08);

}


.summary-item {

    display: flex;

    flex-direction: column;

    gap: 3px;

}


.summary-item strong {

    color: #00FF88;

    font-size: 15px;

    font-weight: 900;

}


.summary-item span {

    color: #657169;

    font-size: 8px;

}


.reviews-btn {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-left: auto;

    padding: 12px 17px;

    border-radius: 9px;

    color: #031009;

    background: #00FF88;

    font-size: 10px;

    font-weight: 900;

    transition: .25s ease;

}


.reviews-btn span {

    font-size: 15px;

}


.reviews-btn:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 12px 25px
        rgba(0,255,136,.16);

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 750px) {

    .reviews-grid {

        grid-template-columns: 1fr;

    }


    .reviews-summary {

        flex-wrap: wrap;

    }


    .summary-divider {

        display: none;

    }


    .reviews-btn {

        margin-left: 0;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .reviews-section {

        padding: 75px 0;

    }


    .reviews-container {

        width: 90%;

    }


    .reviews-intro {

        margin-bottom: 35px;

    }


    .reviews-intro h2 {

        font-size: 39px;

        letter-spacing: -2px;

    }


    .reviews-intro p {

        font-size: 13px;

    }


    .review-card {

        padding: 22px;

    }


    .review-text {

        min-height: auto;

        font-size: 12px;

    }


    .reviews-summary {

        display: grid;

        grid-template-columns:
            1fr 1fr;

        gap: 20px;

        padding: 20px;

    }


    .summary-rating {

        grid-column:
            1 / -1;

    }


    .reviews-btn {

        width: 100%;

        justify-content: center;

        grid-column:
            1 / -1;

    }

}/* End custom CSS */