﻿/* =========================================================
   MNB SOFT HERO
   BRAND THEME
========================================================= */
:root {
    --mnb-bg: #020914;
    --mnb-bg-2: #06141f;
    --mnb-bg-3: #0a1d28;
    --mnb-green: #a8d20f;
    --mnb-green-light: #c7ed35;
    --mnb-green-dark: #779b06;
    --mnb-white: #ffffff;
    --mnb-text: #edf4f4;
    --mnb-muted: rgba(237,244,244,.62);
    --mnb-border: rgba(168,210,15,.18);
}


/* =========================================================
   RESET
========================================================= */

.mnb-hero,
.mnb-hero * {
    box-sizing: border-box;
}


.mnb-hero {
    position: relative;
    width: 100%;
    min-height: 850px;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    align-items: center;
    padding: 105px 0 70px;
    color: var(--mnb-white);
    background: radial-gradient( circle at 76% 45%, rgba(168,210,15,.065), transparent 28% ), radial-gradient( circle at 10% 95%, rgba(168,210,15,.04), transparent 30% ), linear-gradient( 120deg, #052221db 0%, #031c1b 50%, #052221db 100% );
}


/* =========================================================
   CONTAINER
========================================================= */

.mnb-container {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 35px;
}


/* =========================================================
   BACKGROUND GRID
========================================================= */

.mnb-hero-grid {
    position: absolute;
    inset: 0;
    z-index: -10;
    opacity: .1;
    background-image: linear-gradient( rgba(255,255,255,.25) 1px, transparent 1px ), linear-gradient( 90deg, rgba(255,255,255,.25) 1px, transparent 1px );
    background-size: 65px 65px;
    mask-image: radial-gradient( circle at center, black 0%, transparent 82% );
    -webkit-mask-image: radial-gradient( circle at center, black 0%, transparent 82% );
}


/* =========================================================
   BACKGROUND GLOWS
========================================================= */

.mnb-hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
    z-index: -7;
    animation: mnbGlow 8s ease-in-out infinite;
}


.mnb-glow-1 {
    width: 520px;
    height: 520px;
    right: -220px;
    top: -160px;
    background: rgba(168,210,15,.06);
}


.mnb-glow-2 {
    width: 450px;
    height: 450px;
    left: -200px;
    bottom: -240px;
    background: rgba(168,210,15,.045);
    animation-delay: -3s;
}


.mnb-glow-3 {
    width: 300px;
    height: 300px;
    left: 54%;
    top: 48%;
    background: rgba(168,210,15,.035);
    animation-delay: -5s;
}


@keyframes mnbGlow {

    0%, 100% {
        transform: scale(1);
        opacity: .55;
    }

    50% {
        transform: scale(1.12);
        opacity: 1;
    }
}


/* =========================================================
   PARTICLES
========================================================= */

.mnb-particles {
    position: absolute;
    inset: 0;
    z-index: -4;
    pointer-events: none;
    overflow: hidden;
}


    .mnb-particles span {
        position: absolute;
        width: 3px;
        height: 3px;
        border-radius: 50%;
        background: var(--mnb-green);
        box-shadow: 0 0 14px rgba(168,210,15,.7);
        animation: mnbParticle 8s ease-in-out infinite;
    }


        .mnb-particles span:nth-child(1) {
            left: 7%;
            top: 35%;
        }

        .mnb-particles span:nth-child(2) {
            left: 15%;
            top: 72%;
            animation-delay: 1s;
        }

        .mnb-particles span:nth-child(3) {
            left: 28%;
            top: 18%;
            animation-delay: 2s;
        }

        .mnb-particles span:nth-child(4) {
            left: 41%;
            top: 80%;
            animation-delay: 3s;
        }

        .mnb-particles span:nth-child(5) {
            left: 53%;
            top: 20%;
            animation-delay: 1.5s;
        }

        .mnb-particles span:nth-child(6) {
            left: 66%;
            top: 70%;
            animation-delay: 4s;
        }

        .mnb-particles span:nth-child(7) {
            left: 78%;
            top: 31%;
            animation-delay: 2.5s;
        }

        .mnb-particles span:nth-child(8) {
            left: 91%;
            top: 77%;
            animation-delay: 5s;
        }

        .mnb-particles span:nth-child(9) {
            left: 34%;
            top: 49%;
            animation-delay: 1s;
        }

        .mnb-particles span:nth-child(10) {
            left: 22%;
            top: 91%;
            animation-delay: 3.5s;
        }

        .mnb-particles span:nth-child(11) {
            left: 73%;
            top: 13%;
            animation-delay: 2s;
        }

        .mnb-particles span:nth-child(12) {
            left: 58%;
            top: 55%;
            animation-delay: 4.5s;
        }

        .mnb-particles span:nth-child(13) {
            left: 88%;
            top: 48%;
            animation-delay: 1.5s;
        }

        .mnb-particles span:nth-child(14) {
            left: 46%;
            top: 30%;
            animation-delay: 3s;
        }

        .mnb-particles span:nth-child(15) {
            left: 12%;
            top: 52%;
            animation-delay: 5s;
        }


@keyframes mnbParticle {

    0% {
        transform: translate3d(0,25px,0);
        opacity: 0;
    }

    25% {
        opacity: .65;
    }

    50% {
        transform: translate3d(15px,-20px,0);
        opacity: 1;
    }

    75% {
        opacity: .45;
    }

    100% {
        transform: translate3d(-10px,-55px,0);
        opacity: 0;
    }
}


/* =========================================================
   HERO LAYOUT
========================================================= */

.mnb-hero-layout {
    position: relative;
    width: 100%;
    min-height: 670px;
    display: grid;
    grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
    align-items: center;
    gap: 30px;
}


/* =========================================================
   LEFT
========================================================= */

.mnb-hero-content {
    position: relative;
    z-index: 20;
    max-width: 650px;
    animation: mnbContentIn 1s ease-out both;
}


@keyframes mnbContentIn {

    from {
        opacity: 0;
        transform: translateX(-35px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* =========================================================
   EYEBROW
========================================================= */

.mnb-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 17px;
    border: 1px solid rgba(168,210,15,.28);
    border-radius: 50px;
    color: rgba(230,242,210,.88);
    background: rgba(168,210,15,.045);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


.mnb-status-dot {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: var(--mnb-green);
    box-shadow: 0 0 0 5px rgba(168,210,15,.07), 0 0 18px rgba(168,210,15,.8);
    animation: mnbStatusPulse 2s ease-in-out infinite;
}


@keyframes mnbStatusPulse {

    0%, 100% {
        box-shadow: 0 0 0 4px rgba(168,210,15,.06), 0 0 12px rgba(168,210,15,.55);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(168,210,15,.02), 0 0 23px rgba(168,210,15,.9);
    }
}


/* =========================================================
   HEADING
========================================================= */

.mnb-hero-content h1 {
    margin: 27px 0 23px;
    max-width: 700px;
    font-size: clamp(48px,5.2vw,76px);
    line-height: .98;
    letter-spacing: -2px;
    font-weight: 900;
    color: #ffffff;
}


    .mnb-hero-content h1 span {
        display: block;
        background: linear-gradient( 100deg, #8eb607, #afd91b 45%, #d1ef48 );
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        filter: drop-shadow( 0 8px 25px rgba(168,210,15,.10) );
    }


/* =========================================================
   DESCRIPTION
========================================================= */

.mnb-hero-description {
    max-width: 575px;
    margin: 0 0 31px;
    color: var(--mnb-muted);
    font-size: 15px;
    line-height: 1.85;
}


/* =========================================================
   ACTIONS
========================================================= */

.mnb-hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}


.mnb-btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    transition: .3s ease;
}


/* Primary */

.mnb-btn-primary {
    gap: 20px;
    padding: 6px 7px 6px 23px;
    color: #071000 !important;
    background: linear-gradient( 135deg, #b9e52a, #a8d20f, #91b900 );
    box-shadow: 0 15px 40px rgba(168,210,15,.14);
}


    .mnb-btn-primary i {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255,255,255,.22);
        transition: transform .3s ease;
    }


    .mnb-btn-primary:hover {
        color: #071000 !important;
        transform: translateY(-3px);
        box-shadow: 0 22px 50px rgba(168,210,15,.25);
    }


        .mnb-btn-primary:hover i {
            transform: rotate(45deg);
        }


/* Secondary */

.mnb-btn-secondary {
    padding: 0 23px;
    color: rgba(255,255,255,.72) !important;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.025);
}


    .mnb-btn-secondary:hover {
        color: #ffffff !important;
        border-color: rgba(168,210,15,.40);
        background: rgba(168,210,15,.055);
        transform: translateY(-3px);
    }


/* =========================================================
   TRUST
========================================================= */

.mnb-trust {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 38px;
}


.mnb-trust-icons {
    display: flex;
    align-items: center;
}


    .mnb-trust-icons > div {
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: -7px;
        border: 2px solid #071522;
        border-radius: 50%;
        background: #ffffff;
        overflow: hidden;
    }


        .mnb-trust-icons > div:first-child {
            margin-left: 0;
        }


    .mnb-trust-icons img {
        width: 25px;
        height: 25px;
        object-fit: contain;
    }


.mnb-trust-more {
    color: var(--mnb-green);
    background: rgba(168,210,15,.10) !important;
    font-size: 12px;
    font-weight: 800;
}


.mnb-trust-text {
    display: flex;
    flex-direction: column;
    gap: 0px;
}


    .mnb-trust-text strong {
        color: rgba(255,255,255,.78);
        font-size: 11px;
    }


    .mnb-trust-text span {
        color: rgba(255,255,255,.36);
        font-size: 9px;
    }


/* =========================================================
   RIGHT VISUAL
========================================================= */

.mnb-hero-visual {
    position: relative;
    width: 100%;
    height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    animation: mnbVisualIn 1.1s .15s ease-out both;
}


@keyframes mnbVisualIn {

    from {
        opacity: 0;
        transform: translateX(35px) scale(.96);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}


/* =========================================================
   VISUAL GLOW
========================================================= */

.mnb-visual-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient( circle, rgba(168,210,15,.10), rgba(168,210,15,.025) 42%, transparent 70% );
    filter: blur(8px);
    animation: visualGlow 5s ease-in-out infinite;
}


@keyframes visualGlow {

    0%, 100% {
        transform: scale(.94);
        opacity: .65;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}


/* =========================================================
   RINGS
========================================================= */

.mnb-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}


.mnb-ring-1 {
    width: 510px;
    height: 510px;
    border: 1px solid rgba(168,210,15,.14);
    box-shadow: 0 0 35px rgba(168,210,15,.02);
    animation: ringOne 28s linear infinite;
}


.mnb-ring-2 {
    width: 405px;
    height: 405px;
    border: 1px solid rgba(194,229,57,.14);
    animation: ringTwo 19s linear infinite;
}


.mnb-ring-3 {
    width: 305px;
    height: 305px;
    border: 1px solid rgba(168,210,15,.20);
    animation: ringThree 12s linear infinite;
}


@keyframes ringOne {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


@keyframes ringTwo {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}


@keyframes ringThree {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.mnb-ring-1::after,
.mnb-ring-2::after,
.mnb-ring-3::after {
    content: "";
    position: absolute;
    top: -2px;
    left: 50%;
    width: 70px;
    height: 4px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: linear-gradient( 90deg, transparent, rgb(81, 143, 0), transparent );
    filter: blur(2px);
    opacity: 0.7;
}


/* =========================================================
   ORBIT DOTS
========================================================= */

.mnb-orbit-dot {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mnb-green);
    box-shadow: 0 0 18px rgba(168,210,15,.85);
    z-index: 3;
}


.mnb-dot-1 {
    top: calc(50% - 255px);
    left: calc(50% + 65px);
    animation: orbitDotOne 8s linear infinite;
}


.mnb-dot-2 {
    top: calc(50% + 185px);
    left: calc(50% - 205px);
    animation: orbitDotTwo 10s linear infinite;
}


.mnb-dot-3 {
    top: calc(50% + 90px);
    right: calc(50% - 245px);
    animation: dotPulse 2s ease-in-out infinite;
}


@keyframes orbitDotOne {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


@keyframes orbitDotTwo {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}


@keyframes dotPulse {

    0%, 100% {
        opacity: .35;
        transform: scale(.7);
    }

    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}


/* =========================================================
   CENTER
========================================================= */

.mnb-center {
    position: relative;
    z-index: 20;
    width: 190px;
    height: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(168,210,15,.48);
    border-radius: 50%;
    background: radial-gradient( circle at 35% 25%, rgba(40,55,20,.98), rgba(3,17,27,.98) );
    box-shadow: 0 0 0 18px rgba(168,210,15,.022), 0 0 0 55px rgba(168,210,15,.012), 0 30px 90px rgba(0,0,0,.55), inset 0 0 55px rgba(168,210,15,.08);
    animation: centerPulse 4s ease-in-out infinite;
}


@keyframes centerPulse {

    0%, 100% {
        box-shadow: 0 0 0 18px rgba(168,210,15,.022), 0 0 0 55px rgba(168,210,15,.012), 0 30px 90px rgba(0,0,0,.55), inset 0 0 55px rgba(168,210,15,.07);
    }

    50% {
        box-shadow: 0 0 0 27px rgba(168,210,15,.035), 0 0 0 72px rgba(168,210,15,.018), 0 35px 105px rgba(0,0,0,.62), inset 0 0 68px rgba(168,210,15,.15);
    }
}


/* =========================================================
   CENTER LOGO
========================================================= */

.mnb-center-logo {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 9px;
    border-radius: 13px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0,0,0,.25);
}


    .mnb-center-logo img {
        width: 34px;
        height: 34px;
        object-fit: contain;
    }


.mnb-center strong {
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
}


.mnb-center span {
    margin-top: 7px;
    color: var(--mnb-green-light);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
}


.mnb-center small {
    margin-top: 8px;
    color: rgba(255,255,255,.40);
    font-size: 7px;
}


/* =========================================================
   PRODUCT CARDS
========================================================= */

.mnb-product {
    position: absolute;
    z-index: 30;
    width: 204px;
    min-height: 65px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 17px;
    background: linear-gradient( 135deg, rgba(255,255,255,.10), rgba(255,255,255,.025) );
    box-shadow: 0 20px 45px rgba(0,0,0,.30);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    text-decoration: none;
    transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}


    .mnb-product:hover {
        border-color: rgba(168,210,15,.42);
        background: linear-gradient( 135deg, rgba(168,210,15,.13), rgba(255,255,255,.045) );
        box-shadow: 0 25px 60px rgba(0,0,0,.42), 0 0 28px rgba(168,210,15,.07);
    }


/* =========================================================
   PRODUCT FLOAT
========================================================= */

.mnb-product-1 {
    top: 18px;
    left: 50%;
    animation: productOne 5s ease-in-out infinite;
}


.mnb-product-2 {
    top: 145px;
    right: 0;
    animation: productTwo 6s ease-in-out infinite;
}


.mnb-product-3 {
    right: 0;
    bottom: 100px;
    animation: productThree 5.5s ease-in-out infinite;
}


.mnb-product-4 {
    bottom: 18px;
    left: 50%;
    animation: productFour 6.5s ease-in-out infinite;
}


.mnb-product-5 {
    top: 145px;
    left: 0;
    animation: productFive 5.8s ease-in-out infinite;
}

.mnb-product-6 {
    bottom: 145px;
    left: 0;
    animation: productFive 5.8s ease-in-out infinite;
}


@keyframes productOne {

    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-9px);
    }
}


@keyframes productTwo {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}


@keyframes productThree {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(9px);
    }
}


@keyframes productFour {

    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}


@keyframes productFive {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}


/* =========================================================
   PRODUCT ICON
========================================================= */

.mnb-product-icon {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,.18);
    transition: transform .3s ease;
}


.mnb-product:hover
.mnb-product-icon {
    transform: scale(1.08) rotate(-3deg);
}


.mnb-product-icon img {
    width: 29px;
    height: 29px;
    object-fit: contain;
}


/* =========================================================
   PRODUCT TEXT
========================================================= */

.mnb-product-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0px;
}


    .mnb-product-info strong {
        overflow: hidden;
        color: #f7faf7;
        font-size: 13px;
        line-height: 1.2;
        white-space: nowrap;
        text-overflow: ellipsis;
    }


    .mnb-product-info span {
        overflow: hidden;
        color: rgba(220,230,220,.48);
        font-size: 11px;
        white-space: nowrap;
        text-overflow: ellipsis;
    }


.mnb-product-arrow {
    margin-left: auto;
    color: var(--mnb-green);
    font-size: 12px;
    transition: transform .3s ease;
}


.mnb-product:hover
.mnb-product-arrow {
    transform: translate( 3px, -3px );
}


/* =========================================================
   STATS
========================================================= */

.mnb-stat {
    position: absolute;
    z-index: 40;
    min-width: 90px;
    padding: 10px 14px;
    border: 1px solid rgba(168,210,15,.16);
    border-radius: 13px;
    background: linear-gradient( 135deg, rgba(255,255,255,.10), rgba(255,255,255,.025) );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 15px 35px rgba(0,0,0,.20);
}


    .mnb-stat span {
        display: block;
        color: rgba(255,255,255,.35);
        font-size: 7px;
        letter-spacing: 1px;
    }


    .mnb-stat strong {
        color: var(--mnb-green);
        font-size: 20px;
        line-height: 1;
    }


.mnb-stat-1 {
    top: 40px;
    right: 20px;
    animation: statFloat 5s ease-in-out infinite;
}


.mnb-stat-2 {
    left: 25px;
    bottom: 88px;
    animation: statFloat 6s ease-in-out infinite reverse;
}


@keyframes statFloat {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}


/* =========================================================
   LAPTOP / TABLET
========================================================= */

@media (max-width:1199px) {

    .mnb-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .mnb-hero-layout {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .mnb-hero-content {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
    }

        .mnb-hero-content h1,
        .mnb-hero-description {
            margin-left: auto;
            margin-right: auto;
        }

    .mnb-hero-actions,
    .mnb-trust {
        justify-content: center;
    }

    .mnb-hero-visual {
        max-width: 760px;
        height: 580px;
        margin: 0 auto;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width:991px) {

    .mnb-container {
        padding: 0 25px;
    }

    .mnb-hero-content h1 {
        font-size: clamp( 44px, 7vw, 65px );
        letter-spacing: -3px;
    }

    .mnb-hero-visual {
        height: 550px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width:767px) {

    .mnb-hero {
        padding: 85px 0 35px;
    }

    .mnb-container {
        padding: 0 18px;
    }

    .mnb-hero-content {
        text-align: left;
    }

    .mnb-eyebrow {
        padding: 9px 13px;
        font-size: 7px;
    }

    .mnb-hero-content h1 {
        margin: 20px 0;
        font-size: clamp( 38px, 10vw, 52px );
        line-height: 1.02;
        letter-spacing: -2px;
    }

    .mnb-hero-description {
        font-size: 13px;
        line-height: 1.75;
        margin-bottom: 25px;
    }

    .mnb-hero-actions {
        justify-content: flex-start;
    }

    .mnb-hero-visual {
        height: 500px;
    }

    .mnb-ring-1 {
        width: 430px;
        height: 430px;
    }

    .mnb-ring-2 {
        width: 340px;
        height: 340px;
    }

    .mnb-ring-3 {
        width: 250px;
        height: 250px;
    }

    .mnb-center {
        width: 155px;
        height: 155px;
    }

    .mnb-center-logo {
        width: 40px;
        height: 40px;
    }

        .mnb-center-logo img {
            width: 28px;
            height: 28px;
        }

    .mnb-center strong {
        font-size: 13px;
    }

    .mnb-center span {
        font-size: 7px;
    }

    .mnb-product {
        width: 175px;
        min-height: 68px;
        padding: 9px;
        border-radius: 14px;
    }

    .mnb-product-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

        .mnb-product-icon img {
            width: 25px;
            height: 25px;
        }

    .mnb-product-info strong {
        font-size: 10px;
    }

    .mnb-product-info span {
        font-size: 6px;
    }

    .mnb-product-1 {
        top: 10px;
    }

    .mnb-product-2 {
        top: 115px;
        right: 0;
    }

    .mnb-product-5 {
        top: 115px;
        left: 0;
    }

    .mnb-product-3 {
        right: 0;
        bottom: 75px;
    }

    .mnb-product-4 {
        bottom: 5px;
    }

    .mnb-stat {
        left: -5px;
        bottom: 75px;
        padding: 5px 20px;
        line-height: 18px;
    }
        .mnb-stat strong {
            font-size: 16px;
        }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width:575px) {

    .mnb-hero {
        padding: 105px 0 30px;
    }

    .mnb-hero-content h1 {
        font-size: 39px;
        letter-spacing: -1.5px;
    }

    .mnb-hero-description {
        font-size: 12px;
    }

    .mnb-trust{
        display:none;
    }

    .mnb-hero-actions {
        align-items: stretch;
    }

    .mnb-btn {
        width: 48%;
        font-size: 11px;
        font-weight: 500;
        min-height: 45px;
        gap: 15px;
        padding: 6px 7px 6px 18px;
    }

    .mnb-btn-primary i {
        width: 30px;
        height: 30px;
    }

    .mnb-hero-visual {
        height: 430px;
    }

    .mnb-ring-1 {
        width: 340px;
        height: 340px;
    }

    .mnb-ring-2 {
        width: 275px;
        height: 275px;
    }

    .mnb-ring-3 {
        width: 210px;
        height: 210px;
    }

    .mnb-center {
        width: 125px;
        height: 125px;
    }

    .mnb-center-logo {
        width: 34px;
        height: 34px;
        margin-bottom: 5px;
    }

        .mnb-center-logo img {
            width: 23px;
            height: 23px;
        }

    .mnb-center strong {
        font-size: 11px;
    }

    .mnb-center span {
        font-size: 6px;
    }

    .mnb-center small {
        display: none;
    }

    .mnb-product {
        width: 140px;
        min-height: 45px;
        padding: 6px;
        gap: 7px;
        border-radius: 12px;
    }

    .mnb-product-icon {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
        border-radius: 8px;
    }

        .mnb-product-icon img {
            width: 21px;
            height: 21px;
        }

    .mnb-product-info {
        gap: 3px;
    }

        .mnb-product-info strong {
            font-size: 9px;
        }

        .mnb-product-info span {
            font-size: 5.5px;
        }

    .mnb-product-arrow {
        font-size: 9px;
    }

    .mnb-product-1 {
        top: 5px;
    }

    .mnb-product-2 {
        top: 95px;
        right: -3px;
    }

    .mnb-product-5 {
        top: 95px;
        left: -3px;
    }

    .mnb-product-6 {
        bottom: 95px;
        left: -3px;
    }

    .mnb-product-3 {
        right: -3px;
        bottom: 85px;
    }

    .mnb-product-4 {
        bottom: 5px;
    }
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .mnb-hero *,
    .mnb-hero *::before,
    .mnb-hero *::after {
        animation: none !important;
        transition: none !important;
    }
}

/* =========================================================
   MNB SOFT FOOTER V2
   Dark Green + Lime Green Theme
========================================================= */

.mnb-footer-v2 {
    position: relative;
    overflow: hidden;
    background: radial-gradient( circle at 82% 35%, rgba(168, 230, 0, 0.08), transparent 25% ), radial-gradient( circle at 12% 90%, rgba(0, 130, 120, 0.13), transparent 30% ), linear-gradient( 135deg, #062b28 0%, #062724 55%, #041f21 100% );
    color: #fff;
    padding-top: 58px;
}


/* =========================================================
   BACKGROUND
========================================================= */

.mnb-footer-pattern {
    position: absolute;
    inset: 0;
    background-image: linear-gradient( rgba(255,255,255,.018) 1px, transparent 1px ), linear-gradient( 90deg, rgba(255,255,255,.018) 1px, transparent 1px );
    background-size: 75px 75px;
    opacity: .45;
    pointer-events: none;
}


.mnb-footer-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}


.orb-1 {
    width: 430px;
    height: 430px;
    right: -240px;
    top: 100px;
    background: rgba(168,230,0,.07);
}


.orb-2 {
    width: 350px;
    height: 350px;
    left: -220px;
    bottom: -170px;
    background: rgba(0,150,150,.09);
}


/* =========================================================
   HEADER
========================================================= */

.mnb-footer-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(255,255,255,.09);
}


.mnb-brand-area {
    display: flex;
    flex-direction: column;
    gap: 6px;
}


.mnb-footer-logo img {
    width: 150px;
    height: auto;
    display: block;
}


.mnb-brand-tagline {
    display: none;
    font-size: 9px;
    letter-spacing: 3px;
    color: rgba(255,255,255,.40);
}


/* =========================================================
   SOCIAL
========================================================= */

.mnb-follow-area {
    display: flex;
    align-items: center;
    gap: 18px;
}


.mnb-follow-text {
    color: rgba(255,255,255,.45);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


.mnb-social-v2 {
    display: flex;
    gap: 9px;
}


    .mnb-social-v2 a {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        color: rgba(255,255,255,.78);
        background: rgba(255,255,255,.045);
        border: 1px solid rgba(255,255,255,.08);
        text-decoration: none;
        transition: transform .3s ease, background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
    }


        .mnb-social-v2 a:hover {
            color: #071f1d;
            background: #a8e600;
            border-color: #a8e600;
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(168,230,0,.18);
        }


/* =========================================================
   MAIN CONTENT
========================================================= */

.mnb-footer-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 1fr 1.55fr 1fr;
    gap: 0;
    padding: 52px 0 48px;
}


/* =========================================================
   BLOCKS
========================================================= */

.mnb-footer-block {
    padding: 0 32px;
    border-left: 1px solid rgba(255,255,255,.07);
}


    .mnb-footer-block:first-child {
        padding-left: 0;
        border-left: 0;
    }


    .mnb-footer-block:last-child {
        padding-right: 0;
    }


/* =========================================================
   SECTION TITLE
========================================================= */

.mnb-section-title {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 27px;
}


.mnb-title-icon {
    width: 41px;
    height: 41px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: #a8e600;
    background: linear-gradient( 145deg, rgba(168,230,0,.12), rgba(168,230,0,.035) );
    border: 1px solid rgba(168,230,0,.16);
    box-shadow: inset 0 0 20px rgba(168,230,0,.025);
}


.mnb-section-title span {
    display: block;
    color: #a8e600;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 3px;
}


.mnb-section-title h3 {
    margin: 0;
    color: #fff;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
}


/* =========================================================
   OFFICE
========================================================= */

.mnb-office-card {
    display: flex;
    gap: 14px;
    padding: 17px;
    margin-bottom: 13px;
    border-radius: 15px;
    background: linear-gradient( 135deg, rgba(255,255,255,.055), rgba(255,255,255,.018) );
    border: 1px solid rgba(255,255,255,.075);
    transition: .3s ease;
}


    .mnb-office-card:hover {
        border-color: rgba(168,230,0,.25);
        background: linear-gradient( 135deg, rgba(168,230,0,.065), rgba(255,255,255,.018) );
    }


.mnb-address-icon {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    color: #a8e600;
    background: rgba(168,230,0,.09);
}


.mnb-card-label {
    display: block;
    color: rgba(255,255,255,.38);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    margin-bottom: 5px;
}


.mnb-office-card p {
    margin: 0;
    color: rgba(255,255,255,.67);
    font-size: 12px;
    line-height: 1.75;
}


/* =========================================================
   CONTACT ITEMS
========================================================= */

.mnb-contact-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


.mnb-contact-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 12px;
    border-radius: 13px;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.055);
    background: rgba(255,255,255,.025);
    transition: .3s ease;
}


    .mnb-contact-item:hover {
        transform: translateX(4px);
        border-color: rgba(168,230,0,.22);
        background: rgba(168,230,0,.055);
    }


.mnb-contact-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    color: #071f1d;
    background: #a8e600;
    font-size: 11px;
}


.mnb-contact-item div:nth-child(2) {
    display: flex;
    flex-direction: column;
}


    .mnb-contact-item div:nth-child(2) span {
        color: rgba(255,255,255,.35);
        font-size: 9px;
        margin-bottom: 2px;
    }


.mnb-contact-item strong {
    color: rgba(255,255,255,.80);
    font-size: 12px;
    font-weight: 500;
}


.mnb-contact-arrow {
    margin-left: auto;
    color: rgba(168,230,0,.45);
    font-size: 9px;
}


/* =========================================================
   PRODUCTS
========================================================= */

.mnb-product-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
}


.mnb-product-item {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    border: 1px solid transparent;
    transition: .3s ease;
}


    .mnb-product-item:hover {
        border-color: rgba(168,230,0,.18);
        background: rgba(255,255,255,.035);
        transform: translateX(4px);
    }


.mnb-product-number {
    width: 31px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: rgba(168,230,0,.75);
    background: rgba(168,230,0,.06);
    font-size: 9px;
    font-weight: 600;
}


.mnb-product-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}


    .mnb-product-info strong {
        color: rgba(255,255,255,.88);
        font-size: 13px;
        font-weight: 500;
    }


    .mnb-product-info small {
        color: rgba(255,255,255,.34);
        font-size: 9px;
        margin-top: 3px;
    }


.mnb-product-item > i {
    margin-left: auto;
    color: rgba(168,230,0,.45);
    font-size: 9px;
    transition: .3s ease;
}


.mnb-product-item:hover > i {
    color: #a8e600;
    transform: translate(2px,-2px);
}


/* =========================================================
   NAVIGATION
========================================================= */

.mnb-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}


    .mnb-navigation ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }


    .mnb-navigation li {
        margin-bottom: 8px;
    }


    .mnb-navigation a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        padding: 9px 0;
        color: rgba(255,255,255,.58);
        font-size: 12px;
        text-decoration: none;
        border-bottom: 1px solid rgba(255,255,255,.035);
        transition: .25s ease;
    }


        .mnb-navigation a i {
            color: rgba(168,230,0,.38);
            font-size: 8px;
            opacity: 0;
            transform: translateX(-5px);
            transition: .25s ease;
        }


        .mnb-navigation a:hover {
            color: #fff;
            padding-left: 4px;
        }


            .mnb-navigation a:hover i {
                opacity: 1;
                transform: translateX(0);
                color: #a8e600;
            }


/* =========================================================
   SOLUTIONS
========================================================= */

.mnb-solution-list {
    display: flex;
    flex-direction: column;
}


    .mnb-solution-list a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 11px 0;
        color: rgba(255,255,255,.58);
        text-decoration: none;
        font-size: 12px;
        border-bottom: 1px solid rgba(255,255,255,.055);
        transition: .25s ease;
    }


        .mnb-solution-list a span {
            display: flex;
            align-items: center;
            gap: 10px;
        }


            .mnb-solution-list a span i {
                width: 27px;
                height: 27px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 7px;
                color: rgba(168,230,0,.65);
                background: rgba(168,230,0,.055);
                font-size: 10px;
            }


    .mnb-solution-list > a > i {
        color: rgba(255,255,255,.20);
        font-size: 8px;
        transition: .25s ease;
    }


    .mnb-solution-list a:hover {
        color: #fff;
        padding-left: 4px;
    }


        .mnb-solution-list a:hover > i {
            color: #a8e600;
            transform: translate(2px,-2px);
        }


/* =========================================================
   BOTTOM
========================================================= */

.mnb-footer-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0 25px;
    border-top: 1px solid rgba(255,255,255,.075);
}


.mnb-footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 9px;
}


.mnb-copyright-symbol {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #a8e600;
    background: rgba(168,230,0,.07);
    font-size: 11px;
}


.mnb-footer-bottom-left p {
    margin: 0;
    color: rgba(255,255,255,.45);
    font-size: 11px;
}


    .mnb-footer-bottom-left p span {
        color: rgba(255,255,255,.28);
    }


.mnb-footer-status {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,.32);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.mnb-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #a8e600;
    box-shadow: 0 0 10px rgba(168,230,0,.7);
}


/* =========================================================
   WHATSAPP
========================================================= */

.mnb-whatsapp-v2 {
    position: fixed;
    left: 22px;
    bottom: 20px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: #25D366;
    font-size: 26px;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 8px 28px rgba(0,0,0,.35);
    transition: .3s ease;
}


    .mnb-whatsapp-v2:hover {
        color: #fff;
        transform: scale(1.08);
    }


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1199px) {

    .mnb-footer-content {
        grid-template-columns: 1fr 1fr;
        row-gap: 50px;
    }

    .mnb-footer-block {
        border-left: 0;
        padding: 0 20px;
    }

        .mnb-footer-block:nth-child(odd) {
            padding-left: 0;
        }

        .mnb-footer-block:nth-child(even) {
            padding-right: 0;
        }
}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 767px) {

    .mnb-footer-v2 {
        padding-top: 45px;
    }


    .mnb-footer-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }


    .mnb-follow-area {
        width: 100%;
        justify-content: space-between;
    }


    .mnb-social-v2 a {
        width: 38px;
        height: 38px;
    }


    .mnb-footer-content {
        grid-template-columns: 1fr;
        gap: 42px;
        padding: 42px 0;
    }


    .mnb-footer-block,
    .mnb-footer-block:nth-child(odd),
    .mnb-footer-block:nth-child(even) {
        padding: 0;
    }


    .mnb-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 13px;
    }


    .mnb-footer-status {
        padding-left: 34px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .mnb-follow-text {
        display: none;
    }


    .mnb-follow-area {
        justify-content: flex-start;
    }


    .mnb-navigation {
        grid-template-columns: 1fr;
        gap: 0;
    }


    .mnb-section-title h3 {
        font-size: 18px;
    }


    .mnb-footer-logo img {
        width: 135px;
    }


    .mnb-whatsapp-v2 {
        left: 15px;
        bottom: 15px;
        width: 48px;
        height: 48px;
        font-size: 23px;
    }
}


/* =========================================================
   TASKFLIER PRODUCT SECTION
========================================================= */

.taskflier-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 110px 0;
    background: radial-gradient(circle at 85% 15%, rgba(255,255,255,.14), transparent 28%), radial-gradient(circle at 5% 90%, rgba(255,255,255,.08), transparent 25%), linear-gradient(135deg, #5c62f3 0%, #5f3bdf 100%);
}


/* =========================================================
   BACKGROUND SHAPES
========================================================= */

.taskflier-bg-shape {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 50%;
    pointer-events: none;
}

.shape-one {
    width: 520px;
    height: 520px;
    top: -280px;
    right: -130px;
}

.shape-two {
    width: 420px;
    height: 420px;
    bottom: -260px;
    left: -160px;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.taskflier-content {
    position: relative;
    z-index: 5;
}

.product-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: rgba(255,255,255,.92);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.label-line {
    width: 38px;
    height: 2px;
    display: inline-block;
    border-radius: 20px;
    background: #fff;
}

.taskflier-title {
    max-width: 680px;
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(34px,4vw,52px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -1.2px;
}

.taskflier-description {
    max-width: 620px;
    margin: 0 0 32px;
    color: rgba(255,255,255,.82);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}


/* =========================================================
   FEATURES HEADING
========================================================= */

.features-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

    .features-heading > span {
        width: 5px;
        height: 24px;
        display: block;
        border-radius: 20px;
        background: #fff;
    }

    .features-heading h4 {
        margin: 0;
        color: #fff;
        font-size: 20px;
        font-weight: 600;
        line-height: 1.2;
    }


/* =========================================================
   FEATURE GRID
========================================================= */

.taskflier-features {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 12px;
    max-width: 680px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    min-height: 92px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 15px;
    background: rgba(255,255,255,.075);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
    transition: transform .3s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

    .feature-item:hover {
        transform: translateY(-4px);
        background: rgba(255,255,255,.13);
        border-color: rgba(255,255,255,.25);
        box-shadow: 0 12px 30px rgba(27,15,100,.15);
    }

.feature-icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: #5952e9;
    background: #fff;
    font-size: 18px;
    box-shadow: 0 6px 15px rgba(27,15,100,.12);
}

    .feature-icon i {
        line-height: 1;
    }

.feature-item h5 {
    margin: 1px 0 5px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.feature-item p {
    margin: 0;
    color: rgba(255,255,255,.68);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.55;
}


/* =========================================================
   CTA
========================================================= */

.taskflier-action {
    margin-top: 32px;
}

.taskflier-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 7px 8px 7px 23px;
    color: #5149e5 !important;
    background: #fff;
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    box-shadow: 0 14px 35px rgba(26,15,100,.22);
    transition: transform .3s ease, box-shadow .3s ease;
}

    .taskflier-btn:hover {
        color: #5149e5 !important;
        transform: translateY(-3px);
        box-shadow: 0 18px 40px rgba(26,15,100,.30);
    }

.btn-arrow {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 36px;
    color: #fff;
    background: #5952e9;
    border-radius: 50%;
    font-size: 16px;
    transition: transform .3s ease, background .3s ease;
}

.taskflier-btn:hover .btn-arrow {
    transform: translateX(3px);
    background: #4d46d8;
}

.btn-arrow i {
    line-height: 1;
}


/* =========================================================
   RIGHT VISUAL
========================================================= */

.taskflier-visual {
    --orbit-size: 520px;
    --orbit-radius: 260px;
    --node-size: 82px;
    position: relative;
    width: 100%;
    max-width: 650px;
    height: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
}


/* =========================================================
   ORBIT GLOW
========================================================= */

.taskflier-orbit-glow {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 470px;
    height: 470px;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    background: radial-gradient( circle, rgba(255,255,255,.24) 0%, rgba(255,255,255,.12) 32%, rgba(255,255,255,.05) 52%, transparent 74% );
    filter: blur(10px);
    pointer-events: none;
    z-index: -5;
}


/* =========================================================
   ORBIT CIRCLES
========================================================= */

.taskflier-orbit {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    pointer-events: none;
}

.orbit-outer {
    width: var(--orbit-size);
    height: var(--orbit-size);
    border: 1px solid rgba(255,255,255,.24);
    box-shadow: 0 0 55px rgba(255,255,255,.05), inset 0 0 55px rgba(255,255,255,.04);
    animation: orbitOuterPulse 5s ease-in-out infinite;
}

.orbit-inner {
    width: calc(var(--orbit-size) - 140px);
    height: calc(var(--orbit-size) - 140px);
    border: 1px dashed rgba(255,255,255,.23);
    animation: orbitInnerPulse 5s ease-in-out infinite reverse;
}


/* =========================================================
   ORBIT PULSE
========================================================= */

@keyframes orbitOuterPulse {
    0%,100% {
        opacity: .45;
    }

    50% {
        opacity: .95;
    }
}

@keyframes orbitInnerPulse {
    0%,100% {
        opacity: .30;
    }

    50% {
        opacity: .78;
    }
}


/* =========================================================
   ORBIT SYSTEM
========================================================= */

.taskflier-orbit-system {
    position: absolute;
    left: 50%;
    top: 50%;
    width: var(--orbit-size);
    height: var(--orbit-size);
    transform: translate(-50%,-50%);
    border-radius: 50%;
    z-index: 5;
}


/* =========================================================
   ORBIT PATH
========================================================= */

.orbit-path {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 0 25px rgba(255,255,255,.03);
    pointer-events: none;
}


/* =========================================================
   ORBIT ITEMS
   10 ITEMS / 36° SPACING
========================================================= */

.orbit-item {
    --angle: 0deg;
    --reverse-angle: 0deg;
    position: absolute;
    left: 50%;
    top: 50%;
    width: var(--node-size);
    height: var(--node-size);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    border-radius: 50%;
    background: linear-gradient( 145deg, rgba(255,255,255,.99), rgba(246,246,255,.97) );
    border: 3px solid rgba(255,255,255,.68);
    box-shadow: 0 10px 28px rgba(37,25,110,.18), 0 0 0 5px rgba(255,255,255,.07);
    text-align: center;
    z-index: 10;
    transform-origin: center center;
    animation: taskflierNodeOrbit 30s linear infinite;
    will-change: transform;
}


/* =========================================================
   EXACT 10 POSITIONS
========================================================= */

/*
    10 ITEMS
    360° / 10 = 36°

    01 = 0°
    02 = 36°
    03 = 72°
    04 = 108°
    05 = 144°
    06 = 180°
    07 = 216°
    08 = 252°
    09 = 288°
    10 = 324°
*/


.orbit-item-1 {
    --angle: 0deg;
    --reverse-angle: 0deg;
}

.orbit-item-2 {
    --angle: 36deg;
    --reverse-angle: -36deg;
}

.orbit-item-3 {
    --angle: 72deg;
    --reverse-angle: -72deg;
}

.orbit-item-4 {
    --angle: 108deg;
    --reverse-angle: -108deg;
}

.orbit-item-5 {
    --angle: 144deg;
    --reverse-angle: -144deg;
}

.orbit-item-6 {
    --angle: 180deg;
    --reverse-angle: -180deg;
}

.orbit-item-7 {
    --angle: 216deg;
    --reverse-angle: -216deg;
}

.orbit-item-8 {
    --angle: 252deg;
    --reverse-angle: -252deg;
}

.orbit-item-9 {
    --angle: 288deg;
    --reverse-angle: -288deg;
}

.orbit-item-10 {
    --angle: 324deg;
    --reverse-angle: -324deg;
}


/* =========================================================
   REAL CIRCULAR ROTATION
========================================================= */

@keyframes taskflierNodeOrbit {

    from {
        transform: translate(-50%,-50%) rotate(var(--angle)) translateY(calc(-1 * var(--orbit-radius))) rotate(var(--reverse-angle));
    }

    to {
        transform: translate(-50%,-50%) rotate(calc(var(--angle) + 360deg)) translateY(calc(-1 * var(--orbit-radius))) rotate(calc(var(--reverse-angle) - 360deg));
    }
}


/* =========================================================
   ORBIT ICON
========================================================= */

.orbit-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3px;
    color: #6258e9;
    font-size: 20px;
    line-height: 1;
}

    .orbit-icon i {
        display: block;
        line-height: 1;
    }


/* =========================================================
   ORBIT TEXT
========================================================= */

.orbit-item span {
    display: block;
    color: #30304b;
    font-size: 8px;
    font-weight: 700;
    line-height: 1.15;
    white-space: nowrap;
}


/* =========================================================
   CENTER TASKFLIER
========================================================= */

.taskflier-center {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    background: radial-gradient( circle at 35% 28%, #fff 0%, #fbfbff 52%, #eeeeff 100% );
    border: 7px solid rgba(255,255,255,.34);
    box-shadow: 0 18px 50px rgba(35,20,110,.25), 0 0 0 14px rgba(255,255,255,.05), 0 0 65px rgba(255,255,255,.08);
    z-index: 20;
    animation: centerFloat 4s ease-in-out infinite;
}


/* =========================================================
   CENTER LOGO RING
========================================================= */

.center-logo-ring {
    width: 145px;
    height: 145px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: radial-gradient( circle, rgba(255,255,255,.96), rgba(247,247,255,.72) );
}

    .center-logo-ring img {
        display: block;
        width: 105px;
        height: 105px;
        object-fit: contain;
    }


/* =========================================================
   CENTER FLOAT
========================================================= */

@keyframes centerFloat {

    0%,100% {
        transform: translate(-50%,-50%) scale(1);
    }

    50% {
        transform: translate(-50%,-50%) scale(1.035);
    }
}


/* =========================================================
   FLOATING CARDS
========================================================= */

.taskflier-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 148px;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(255,255,255,.72);
    box-shadow: 0 14px 35px rgba(35,20,110,.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 30;
    animation: floatingCard 4.5s ease-in-out infinite;
}


/* =========================================================
   TASK CARD
========================================================= */

.task-card {
    left: -5px;
    top: -50px;
}


/* =========================================================
   PROJECT CARD
========================================================= */

.project-card {
    right: -5px;
    bottom: -60px;
    animation-delay: 1.6s;
}


/* =========================================================
   FLOATING ICON
========================================================= */

.floating-card-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(135deg,#6860f2,#5046dc);
    font-size: 17px;
    box-shadow: 0 6px 15px rgba(89,78,225,.25);
}


/* =========================================================
   FLOATING TEXT
========================================================= */

.floating-card-content strong {
    display: block;
    color: #2e2d4b;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
}

.floating-card-content span {
    display: block;
    margin-top: 3px;
    color: #8986a2;
    font-size: 9px;
    font-weight: 500;
    line-height: 1.2;
}


/* =========================================================
   FLOATING ANIMATION
========================================================= */

@keyframes floatingCard {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}


/* =========================================================
   ORBIT HOVER
========================================================= */

@media (min-width: 992px) {

    .orbit-item {
        transition: box-shadow .3s ease, background .3s ease;
    }

        .orbit-item:hover {
            background: linear-gradient( 145deg, #fff, #f2f1ff );
            box-shadow: 0 15px 35px rgba(37,25,110,.28), 0 0 0 7px rgba(255,255,255,.10);
        }
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (max-width: 1199px) {

    .taskflier-section {
        padding: 90px 0;
    }

    .taskflier-title {
        font-size: 42px;
    }

    .taskflier-visual {
        --orbit-size: 460px;
        --orbit-radius: 230px;
        --node-size: 74px;
        height: 540px;
    }

    .taskflier-orbit-glow {
        width: 420px;
        height: 420px;
    }

    .orbit-inner {
        width: 330px;
        height: 330px;
    }

    .taskflier-center {
        width: 165px;
        height: 165px;
    }

    .center-logo-ring {
        width: 134px;
        height: 134px;
    }

        .center-logo-ring img {
            width: 95px;
            height: 95px;
        }

    .orbit-icon {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }

    .orbit-item span {
        font-size: 7px;
    }

    .task-card {
        left: 0;
        top: 85px;
    }

    .project-card {
        right: 0;
        bottom: 85px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .taskflier-section {
        padding: 80px 0;
    }

    .taskflier-title {
        max-width: 700px;
        font-size: 40px;
    }

    .taskflier-description {
        max-width: 700px;
    }

    .taskflier-features {
        max-width: 720px;
    }

    .taskflier-visual {
        --orbit-size: 430px;
        --orbit-radius: 215px;
        --node-size: 70px;
        height: 520px;
        margin-top: 30px;
    }

    .taskflier-orbit-glow {
        width: 390px;
        height: 390px;
    }

    .orbit-inner {
        width: 310px;
        height: 310px;
    }

    .taskflier-center {
        width: 155px;
        height: 155px;
    }

    .center-logo-ring {
        width: 125px;
        height: 125px;
    }

        .center-logo-ring img {
            width: 90px;
            height: 90px;
        }

    .orbit-icon {
        width: 28px;
        height: 28px;
        font-size: 17px;
    }

    .orbit-item span {
        font-size: 6.5px;
    }

    .taskflier-floating-card {
        min-width: 135px;
        padding: 9px 11px;
    }

    .task-card {
        left: 0;
        top: 75px;
    }

    .project-card {
        right: 0;
        bottom: 75px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .taskflier-section {
        padding: 65px 0;
    }

    .product-label {
        margin-bottom: 16px;
        font-size: 11px;
        letter-spacing: 1.7px;
    }

    .label-line {
        width: 30px;
    }

    .taskflier-title {
        margin-bottom: 18px;
        font-size: 32px;
        line-height: 1.15;
        letter-spacing: -.6px;
    }

    .taskflier-description {
        margin-bottom: 26px;
        font-size: 14px;
        line-height: 1.75;
    }

    .features-heading {
        margin-bottom: 15px;
    }

        .features-heading h4 {
            font-size: 18px;
        }

    .taskflier-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .feature-item {
        min-height: auto;
        padding: 14px;
    }

        .feature-item h5 {
            font-size: 14px;
        }

        .feature-item p {
            font-size: 12px;
        }

    .taskflier-action {
        margin-top: 25px;
    }

    .taskflier-btn {
        min-width: 190px;
    }


    /* ------------------------------
       MOBILE ORBIT
    ------------------------------ */

    .taskflier-visual {
        --orbit-size: 350px;
        --orbit-radius: 175px;
        --node-size: 62px;
        height: 430px;
        max-width: 100%;
        margin-top: 20px;
        overflow: visible;
    }

    .taskflier-orbit-glow {
        width: 310px;
        height: 310px;
    }

    .orbit-inner {
        width: 255px;
        height: 255px;
    }

    .orbit-item {
        border-width: 2px;
        box-shadow: 0 7px 18px rgba(37,25,110,.18), 0 0 0 3px rgba(255,255,255,.07);
    }

    .orbit-icon {
        width: 24px;
        height: 24px;
        margin-bottom: 1px;
        font-size: 15px;
    }

    .orbit-item span {
        font-size: 6px;
        line-height: 1.1;
    }

    .taskflier-center {
        width: 130px;
        height: 130px;
        border-width: 4px;
    }

    .center-logo-ring {
        width: 105px;
        height: 105px;
    }

        .center-logo-ring img {
            width: 82px;
            height: 82px;
        }


    /* Hide floating cards */
    .taskflier-floating-card {
        display: none;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .taskflier-section {
        padding: 55px 0;
    }

    .shape-two {
        width: 280px;
        height: 330px;
    }

    .taskflier-title {
        font-size: 28px;
    }

    .taskflier-description {
        font-size: 13px;
    }

    .feature-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 17px;
    }

    .taskflier-btn {
        width: 100%;
        justify-content: space-between;
    }


    /* ------------------------------
       SMALL MOBILE ORBIT
    ------------------------------ */

    .taskflier-visual {
        --orbit-size: 290px;
        --orbit-radius: 145px;
        --node-size: 53px;
        height: 355px;
    }

    .taskflier-orbit-glow {
        width: 260px;
        height: 260px;
    }

    .orbit-inner {
        width: 210px;
        height: 210px;
    }

    .orbit-item {
        border-width: 2px;
    }

    .orbit-icon {
        width: 21px;
        height: 21px;
        font-size: 12px;
        margin-bottom: 0;
    }

    .orbit-item span {
        font-size: 5px;
        line-height: 1.05;
    }


    /* Center */

    .taskflier-center {
        width: 110px;
        height: 110px;
        border-width: 4px;
    }

    .center-logo-ring {
        width: 89px;
        height: 89px;
    }

        .center-logo-ring img {
            width: 70px;
            height: 70px;
        }
}


/* =========================================================
   EXTRA SMALL DEVICES
========================================================= */

@media (max-width: 360px) {

    .taskflier-visual {
        --orbit-size: 265px;
        --orbit-radius: 132.5px;
        --node-size: 49px;
        height: 330px;
    }

    .taskflier-center {
        width: 100px;
        height: 100px;
    }

    .center-logo-ring {
        width: 82px;
        height: 82px;
    }

        .center-logo-ring img {
            width: 64px;
            height: 64px;
        }

    .orbit-icon {
        font-size: 11px;
    }

    .orbit-item span {
        font-size: 4.5px;
    }
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .orbit-item,
    .taskflier-center,
    .taskflier-floating-card,
    .orbit-outer,
    .orbit-inner {
        animation: none !important;
    }
}

/* =========================================================
   MPARCHI PREMIUM PRODUCT SECTION
   Complete CSS
========================================================= */


/* =========================================================
   MAIN SECTION
========================================================= */

#mparchi.mparchi-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 105px 0 0;
    background: radial-gradient( circle at 15% 45%, rgba(207, 255, 70, 0.20), transparent 32% ), radial-gradient( circle at 85% 75%, rgba(18, 100, 0, 0.25), transparent 35% ), linear-gradient( 135deg, #75b916 0%, #58a908 45%, #338900 100% );
}


/* =========================================================
   BACKGROUND GRID
========================================================= */

.mparchi-grid {
    position: absolute;
    inset: 0;
    z-index: -3;
    opacity: .12;
    background-image: linear-gradient( 45deg, rgba(255,255,255,.18) 1px, transparent 1px ), linear-gradient( -45deg, rgba(255,255,255,.18) 1px, transparent 1px );
    background-size: 42px 42px;
    pointer-events: none;
}


/* =========================================================
   BACKGROUND GLOW
========================================================= */

.mparchi-glow {
    position: absolute;
    border-radius: 50%;
    z-index: -2;
    pointer-events: none;
    filter: blur(70px);
}


.mparchi-glow-1 {
    width: 600px;
    height: 600px;
    left: -280px;
    top: 80px;
    background: rgba(200,255,60,.18);
    animation: backgroundGlowOne 9s ease-in-out infinite;
}


.mparchi-glow-2 {
    width: 550px;
    height: 550px;
    right: -280px;
    bottom: -250px;
    background: rgba(10,80,0,.22);
    animation: backgroundGlowTwo 11s ease-in-out infinite;
}


@keyframes backgroundGlowOne {

    0%,100% {
        transform: translate(0,0) scale(1);
    }

    50% {
        transform: translate(45px,-25px) scale(1.08);
    }
}


@keyframes backgroundGlowTwo {

    0%,100% {
        transform: translate(0,0) scale(1);
    }

    50% {
        transform: translate(-35px,25px) scale(1.10);
    }
}


/* =========================================================
   LEFT VISUAL AREA
========================================================= */

.mparchi-visual {
    position: relative;
    min-height: 590px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   ORBIT RINGS
========================================================= */

.mparchi-orbit {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    border: 1px dashed rgba(255,255,255,.35);
}


.orbit-1 {
    width: 510px;
    height: 510px;
    animation: orbitRotate 24s linear infinite;
}


.orbit-2 {
    width: 430px;
    height: 430px;
    border-color: rgba(225,255,90,.30);
    animation: orbitRotateReverse 18s linear infinite;
}


@keyframes orbitRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


@keyframes orbitRotateReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}


/* =========================================================
   ORBIT GLOW DOT
========================================================= */

.mparchi-orbit.orbit-1::before,
.mparchi-orbit.orbit-2::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e6ff5a;
    box-shadow: 0 0 8px #e6ff5a, 0 0 20px rgba(230,255,90,.8);
    animation: orbitDotPulse 3s ease-in-out infinite;
}


.mparchi-orbit.orbit-1::before {
    top: 7%;
    left: 50%;
}


.mparchi-orbit.orbit-2::before {
    right: 12%;
    bottom: 12%;
    animation-delay: 1.5s;
}


@keyframes orbitDotPulse {

    0%,100% {
        opacity: .35;
        transform: scale(.7);
    }

    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}


/* =========================================================
   MAIN PRODUCT CIRCLE
========================================================= */

.mparchi-main-product {
    position: relative;
    z-index: 3;
    width: 505px;
    height: 505px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.97);
    box-shadow: 0 35px 80px rgba(15,70,0,.28), 0 0 0 15px rgba(255,255,255,.08), 0 0 0 30px rgba(255,255,255,.035);
/*    animation: productFloat 5s ease-in-out infinite;*/
}


@keyframes productFloat {

    0%,100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-8px) scale(1.015);
    }
}


/* =========================================================
   PRODUCT GLOW RING
========================================================= */

.mparchi-main-product::before {
    content: "";
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    border: 1px solid rgba(220,255,80,.30);
    box-shadow: 0 0 30px rgba(220,255,80,.20), inset 0 0 25px rgba(220,255,80,.12);
    animation: productGlow 3.5s ease-in-out infinite;
    pointer-events: none;
}


@keyframes productGlow {

    0%,100% {
        opacity: .35;
        transform: scale(.98);
    }

    50% {
        opacity: 1;
        transform: scale(1.025);
    }
}


/* =========================================================
   IMAGE WRAPPER
========================================================= */

.mparchi-image-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}


    .mparchi-image-wrap img {
        width: 100%;
/*        max-width: 210px;*/
        height: auto;
        object-fit: contain;
        display: block;
    }


/* =========================================================
   FLOATING CARDS
========================================================= */

.mparchi-floating {
    position: absolute;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 185px;
    padding: 12px 17px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(255,255,255,.85);
    border-radius: 15px;
    box-shadow: 0 18px 40px rgba(20,80,0,.20);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform .35s ease, box-shadow .35s ease;
}


    .mparchi-floating:hover {
        transform: translateY(-7px);
        box-shadow: 0 25px 50px rgba(20,80,0,.27), 0 0 20px rgba(220,255,80,.15);
    }


/* =========================================================
   FLOATING ICON
========================================================= */

.floating-icon {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient( 145deg, #83d318, #62b507 );
    color: #fff;
    font-size: 19px;
    box-shadow: 0 7px 16px rgba(76,160,0,.25);
    animation: iconPulse 3s ease-in-out infinite;
}


@keyframes iconPulse {

    0%,100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}


/* =========================================================
   FLOATING CARD TEXT
========================================================= */

.mparchi-floating strong {
    display: block;
    color: #263d18;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
}


.mparchi-floating small {
    display: block;
    margin-top: 4px;
    color: #7b7b7b;
    font-size: 10px;
    line-height: 1.2;
}


/* =========================================================
   FLOATING CARD POSITIONS
========================================================= */

.floating-1 {
    top: 72px;
    left: 0;
    animation: floatingOne 4s ease-in-out infinite, cardGlow 3s ease-in-out infinite;
}


.floating-2 {
    top: 105px;
    right: -10px;
    animation: floatingTwo 4.5s ease-in-out infinite, cardGlow 3.5s ease-in-out infinite;
}


.floating-3 {
    left: 35px;
    bottom: 52px;
    animation: floatingThree 4.2s ease-in-out infinite, cardGlow 4s ease-in-out infinite;
}


@keyframes floatingOne {

    0%,100% {
        transform: translate3d(0,0,0);
    }

    50% {
        transform: translate3d(0,-12px,0);
    }
}


@keyframes floatingTwo {

    0%,100% {
        transform: translate3d(0,0,0);
    }

    50% {
        transform: translate3d(0,10px,0);
    }
}


@keyframes floatingThree {

    0%,100% {
        transform: translate3d(0,0,0);
    }

    50% {
        transform: translate3d(0,-10px,0);
    }
}


/* =========================================================
   CARD GLOW
========================================================= */

@keyframes cardGlow {

    0%,100% {
        box-shadow: 0 18px 40px rgba(20,80,0,.18);
    }

    50% {
        box-shadow: 0 20px 45px rgba(20,80,0,.25), 0 0 18px rgba(220,255,90,.18);
    }
}


/* =========================================================
   CENTER BADGE
========================================================= */

.mparchi-center-badge {
    position: absolute;
    z-index: 7;
    right: 50px;
    bottom: 60px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 14px;
    border-radius: 50px;
    background: linear-gradient( 135deg, #e4ff60, #c8f637 );
    color: #397500;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
    animation: badgeFloat 3.5s ease-in-out infinite, badgeGlow 2.5s ease-in-out infinite;
}


    .mparchi-center-badge i {
        font-size: 14px;
    }


@keyframes badgeFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}


@keyframes badgeGlow {

    0%,100% {
        box-shadow: 0 10px 25px rgba(0,0,0,.15);
    }

    50% {
        box-shadow: 0 13px 30px rgba(0,0,0,.18), 0 0 18px rgba(220,255,80,.40);
    }
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.mparchi-content {
    position: relative;
    z-index: 4;
}


/* =========================================================
   PRODUCT LABEL
========================================================= */

.mparchi-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 19px;
    color: #e3ff78;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}


.label-icon {
    width: 31px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #ddff5d;
    color: #3c8300;
    font-size: 14px;
    box-shadow: 0 7px 15px rgba(0,0,0,.10);
}


/* =========================================================
   MAIN HEADING
========================================================= */

.mparchi-content h2 {
    max-width: 650px;
    margin: 0 0 21px;
    color: #fff;
    font-size: 50px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -1.5px;
}


    .mparchi-content h2 span {
        display: block;
        color: #e0ff67;
    }


/* =========================================================
   DESCRIPTION
========================================================= */

.mparchi-description {
    max-width: 650px;
    margin: 0 0 30px;
    color: rgba(255,255,255,.83);
    font-size: 15px;
    line-height: 1.78;
}


/* =========================================================
   FEATURE TITLE
========================================================= */

.mparchi-feature-title {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 17px;
}


.title-line {
    width: 4px;
    height: 39px;
    flex: 0 0 4px;
    border-radius: 10px;
    background: #e0ff67;
    box-shadow: 0 0 10px rgba(224,255,103,.30);
}


.mparchi-feature-title small {
    display: block;
    margin-bottom: 3px;
    color: #e0ff67;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


.mparchi-feature-title h4 {
    margin: 0;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
}


/* =========================================================
   FEATURE GRID
========================================================= */

.mparchi-feature-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
}


/* =========================================================
   FEATURE CARD
========================================================= */

.mparchi-feature-card {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    border-radius: 13px;
    background: rgba(255,255,255,.085);
    border: 1px solid rgba(255,255,255,.14);
    transition: transform .3s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease;
}


    .mparchi-feature-card:hover {
        transform: translateY(-4px);
        background: rgba(255,255,255,.14);
        border-color: rgba(225,255,100,.50);
        box-shadow: 0 12px 25px rgba(20,80,0,.12);
    }


    /* =========================================================
   FEATURE CARD LIGHT SWEEP
========================================================= */

    .mparchi-feature-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: -130%;
        width: 70%;
        height: 100%;
        background: linear-gradient( 90deg, transparent, rgba(255,255,255,.10), transparent );
        transform: skewX(-20deg);
        transition: left .7s ease;
    }


    .mparchi-feature-card:hover::before {
        left: 140%;
    }


/* =========================================================
   FEATURE ICON
========================================================= */

.feature-icon {
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient( 145deg, #e5ff6c, #cbf840 );
    color: #397900;
    font-size: 17px;
    transition: transform .3s ease, box-shadow .3s ease;
}


.mparchi-feature-card:hover .feature-icon {
    transform: rotate(-5deg) scale(1.08);
    box-shadow: 0 6px 15px rgba(190,240,50,.20);
}


/* =========================================================
   FEATURE TEXT
========================================================= */

.mparchi-feature-card h5 {
    margin: 0 0 5px;
    color: #fff;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 600;
}


.mparchi-feature-card p {
    margin: 0;
    color: rgba(255,255,255,.65);
    font-size: 11px;
    line-height: 1.5;
}


/* =========================================================
   BUSINESS TAGS
========================================================= */

.mparchi-business {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}


.business-label {
    color: rgba(255,255,255,.55);
    font-size: 11px;
}


.mparchi-business span:not(.business-label) {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 11px;
    border-radius: 30px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    color: #fff;
    font-size: 10px;
    transition: background .3s ease, transform .3s ease;
}


    .mparchi-business span:not(.business-label):hover {
        background: rgba(255,255,255,.14);
        transform: translateY(-2px);
    }


.mparchi-business i {
    color: #e0ff67;
    font-size: 11px;
}


/* =========================================================
   ACTION AREA
========================================================= */

.mparchi-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 27px;
}


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.mparchi-primary-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 7px 8px 7px 21px;
    border-radius: 50px;
    background: linear-gradient( 135deg, #e5ff62, #c9f438 );
    color: #347100 !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 12px 30px rgba(0,0,0,.16);
    transition: transform .3s ease, box-shadow .3s ease;
}


    .mparchi-primary-btn:hover {
        color: #347100 !important;
        transform: translateY(-3px);
        box-shadow: 0 17px 35px rgba(0,0,0,.22);
    }


    /* =========================================================
   BUTTON SHINE
========================================================= */

    .mparchi-primary-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -130%;
        width: 75%;
        height: 100%;
        background: linear-gradient( 90deg, transparent, rgba(255,255,255,.40), transparent );
        transform: skewX(-20deg);
        transition: left .65s ease;
    }


    .mparchi-primary-btn:hover::before {
        left: 140%;
    }


    /* =========================================================
   BUTTON ICON
========================================================= */

    .mparchi-primary-btn i {
        position: relative;
        z-index: 2;
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #fff;
        color: #397800;
        font-size: 16px;
        transition: transform .3s ease;
    }


    .mparchi-primary-btn:hover i {
        transform: rotate(45deg);
    }


/* =========================================================
   TRUST TEXT
========================================================= */

.mparchi-trust {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,.65);
    font-size: 10px;
}


    .mparchi-trust i {
        color: #e0ff67;
        font-size: 14px;
    }


/* =========================================================
   BOTTOM HIGHLIGHTS
========================================================= */

.mparchi-bottom {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    margin-top: 90px;
    border-top: 1px solid rgba(255,255,255,.17);
}


/* =========================================================
   BOTTOM ITEM
========================================================= */

.mparchi-bottom-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 22px 25px;
    border-right: 1px solid rgba(255,255,255,.12);
    transition: background .3s ease;
}


    .mparchi-bottom-item:last-child {
        border-right: 0;
    }


    .mparchi-bottom-item:hover {
        background: rgba(255,255,255,.045);
    }


/* =========================================================
   BOTTOM ICON
========================================================= */

.bottom-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255,255,255,.10);
    color: #e0ff67;
    font-size: 17px;
    transition: transform .3s ease, background .3s ease;
}


.mparchi-bottom-item:hover .bottom-icon {
    transform: translateY(-3px) scale(1.05);
    background: rgba(224,255,103,.12);
}


/* =========================================================
   BOTTOM TEXT
========================================================= */

.mparchi-bottom-item strong {
    display: block;
    color: #fff;
    font-size: 13px;
    line-height: 1.2;
}


.mparchi-bottom-item span {
    display: block;
    margin-top: 4px;
    color: rgba(255,255,255,.52);
    font-size: 10px;
    line-height: 1.2;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    #mparchi.mparchi-section {
        padding-top: 90px;
    }


    .mparchi-content h2 {
        font-size: 43px;
    }


    .mparchi-main-product {
        width: 360px;
        height: 360px;
    }


    .orbit-1 {
        width: 450px;
        height: 450px;
    }


    .orbit-2 {
        width: 380px;
        height: 380px;
    }


    .floating-2 {
        right: -5px;
    }


    .mparchi-floating {
        min-width: 170px;
    }
}


/* =========================================================
   TABLET / SMALL DESKTOP
========================================================= */

@media (max-width: 991px) {

    #mparchi.mparchi-section {
        padding-top: 75px;
    }


    .mparchi-visual {
        min-height: 510px;
        margin-bottom: 10px;
    }


    .mparchi-content h2 {
        font-size: 40px;
    }


    .mparchi-description {
        font-size: 14px;
    }


    .mparchi-bottom {
        margin-top: 65px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    #mparchi.mparchi-section {
        padding-top: 60px;
    }


    .mparchi-visual {
        min-height: 395px;
        margin-bottom: 10px;
    }


    /* Main Circle */

    .mparchi-main-product {
        width: 275px;
        height: 275px;
    }


    .mparchi-image-wrap {
        padding: 17px;
    }


    /* Orbit */

    .orbit-1 {
        width: 335px;
        height: 335px;
    }


    .orbit-2 {
        width: 285px;
        height: 285px;
    }


    /* Floating cards */

    .mparchi-floating {
        min-width: 145px;
        padding: 9px 11px;
        gap: 8px;
        border-radius: 12px;
    }


    .floating-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
        font-size: 14px;
        border-radius: 9px;
    }


    .mparchi-floating strong {
        font-size: 10px;
    }


    .mparchi-floating small {
        font-size: 8px;
    }


    .floating-1 {
        top: 20px;
        left: 0;
    }


    .floating-2 {
        top: 165px;
        right: 0;
    }


    .floating-3 {
        left: 5px;
        bottom: 8px;
    }


    /* Badge */

    .mparchi-center-badge {
        right: 5px;
        bottom: 35px;
        padding: 7px 11px;
        font-size: 9px;
    }


        .mparchi-center-badge i {
            font-size: 12px;
        }


    /* Content */

    .mparchi-label {
        font-size: 10px;
        letter-spacing: 1.8px;
    }


    .label-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }


    .mparchi-content h2 {
        font-size: 32px;
        letter-spacing: -.7px;
    }


    .mparchi-description {
        font-size: 13px;
        line-height: 1.7;
    }


    /* Features */

    .mparchi-feature-grid {
        grid-template-columns: 1fr;
    }


    /* CTA */

    .mparchi-actions {
        align-items: flex-start;
        flex-direction: column;
    }


    /* Bottom */

    .mparchi-bottom {
        grid-template-columns: repeat(2,1fr);
        margin-top: 60px;
    }


    .mparchi-bottom-item {
        padding: 16px;
    }


        .mparchi-bottom-item:nth-child(2) {
            border-right: 0;
        }


        .mparchi-bottom-item:nth-child(3),
        .mparchi-bottom-item:nth-child(4) {
            border-top: 1px solid rgba(255,255,255,.12);
        }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .mparchi-image-wrap img {
        max-width: 120px;
    }

    #mparchi.mparchi-section {
        padding-top: 50px;
    }


    .mparchi-visual {
        min-height: 350px;
    }


    .mparchi-main-product {
        width: 235px;
        height: 235px;
    }


    .mparchi-image-wrap {
        padding: 14px;
    }


    .orbit-1 {
        width: 285px;
        height: 285px;
    }


    .orbit-2 {
        width: 250px;
        height: 250px;
    }


    .mparchi-floating {
        min-width: 132px;
        padding: 8px 9px;
        gap: 7px;
    }


    .floating-icon {
        width: 31px;
        height: 31px;
        flex-basis: 31px;
        font-size: 12px;
    }


    .mparchi-floating strong {
        font-size: 9px;
    }


    .mparchi-floating small {
        font-size: 7px;
    }


    .floating-1 {
        top: 5px;
        left: 0;
    }


    .floating-2 {
        top: 140px;
        right: -2px;
    }


    .floating-3 {
        bottom: 0;
        left: 0;
    }


    .mparchi-center-badge {
        right: 0;
        bottom: 25px;
        font-size: 8px;
    }


    .mparchi-content h2 {
        font-size: 28px;
        line-height: 1.12;
    }


    .mparchi-description {
        font-size: 12px;
    }


    .mparchi-feature-title h4 {
        font-size: 15px;
    }


    .mparchi-feature-card {
        padding: 13px;
    }


    .feature-icon {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        font-size: 15px;
    }


    .mparchi-feature-card h5 {
        font-size: 12px;
    }


    .mparchi-feature-card p {
        font-size: 10px;
    }


    .business-label {
        width: 100%;
    }


    .mparchi-business span:not(.business-label) {
        font-size: 9px;
        padding: 5px 9px;
    }


    .mparchi-bottom-item {
        gap: 8px;
        padding: 13px 9px;
    }


    .bottom-icon {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
        font-size: 14px;
    }


    .mparchi-bottom-item strong {
        font-size: 10px;
    }


    .mparchi-bottom-item span {
        font-size: 8px;
    }
}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 360px) {

    .mparchi-main-product {
        width: 215px;
        height: 215px;
    }


    .orbit-1 {
        width: 260px;
        height: 260px;
    }


    .orbit-2 {
        width: 230px;
        height: 230px;
    }


    .mparchi-floating {
        min-width: 120px;
    }


    .floating-2 {
        right: -8px;
    }


    .mparchi-content h2 {
        font-size: 26px;
    }
}


/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .mparchi-main-product,
    .mparchi-orbit,
    .mparchi-floating,
    .mparchi-center-badge,
    .floating-icon,
    .mparchi-glow,
    .mparchi-orbit::before {
        animation: none !important;
    }


    .mparchi-feature-card,
    .mparchi-primary-btn,
    .bottom-icon,
    .mparchi-floating {
        transition: none !important;
    }
}


/* =========================================================
   KEYBOARD FOCUS
========================================================= */

.mparchi-primary-btn:focus-visible {
    outline: 3px solid rgba(255,255,255,.9);
    outline-offset: 4px;
}


.mparchi-feature-card:focus-within {
    border-color: #e0ff67;
}

/* =========================================================
   HOST GUARDIANS SECTION
========================================================= */

.host-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background: radial-gradient(circle at 85% 50%, rgba(72, 145, 255, .28), transparent 30%), radial-gradient(circle at 10% 10%, rgba(255, 255, 255, .08), transparent 25%), linear-gradient(135deg, #0755e8 0%, #1168f5 50%, #0754df 100%);
    color: #fff;
    isolation: isolate;
}


/* =========================================================
   BACKGROUND
========================================================= */

.host-bg-pattern {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: .16;
    background-image: linear-gradient(rgba(255,255,255,.25) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.25) 1px, transparent 1px);
    background-size: 55px 55px;
    mask-image: linear-gradient(to right, transparent, black 30%, black 75%, transparent);
}

.host-section::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    right: -250px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.018);
    z-index: -1;
}

.host-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: -1;
}

.host-glow-one {
    width: 300px;
    height: 300px;
    left: -150px;
    top: 15%;
    background: rgba(0, 255, 190, .12);
}

.host-glow-two {
    width: 350px;
    height: 350px;
    right: 10%;
    bottom: -180px;
    background: rgba(107, 76, 255, .22);
}


/* =========================================================
   CONTENT
========================================================= */

.host-content {
    position: relative;
    z-index: 5;
}

.host-product-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 15px 7px 7px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.host-tag-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #c8ff00;
    color: #0755e8;
    font-size: 15px;
}

.host-title {
    max-width: 650px;
    margin: 22px 0 18px;
    font-size: clamp(42px, 4vw, 65px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -2px;
}

    .host-title span {
        display: block;
        color: #c8ff00;
    }

.host-description {
    max-width: 650px;
    margin-bottom: 28px;
    color: rgba(255,255,255,.82);
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   SERVICES
========================================================= */

.host-services {
    max-width: 680px;
}

.host-services-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

    .host-services-heading span {
        width: 28px;
        height: 3px;
        border-radius: 10px;
        background: #c8ff00;
    }

    .host-services-heading h4 {
        margin: 0;
        color: #fff;
        font-size: 17px;
        font-weight: 700;
    }


.host-service-card {
    position: relative;
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 13px;
    background: rgba(255,255,255,.075);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform .3s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

    .host-service-card:hover {
        transform: translateY(-5px);
        background: rgba(255,255,255,.13);
        border-color: rgba(200,255,0,.45);
        box-shadow: 0 15px 35px rgba(0,0,0,.12);
    }

.host-service-icon {
    flex: 0 0 43px;
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: rgba(200,255,0,.12);
    border: 1px solid rgba(200,255,0,.25);
    color: #c8ff00;
    font-size: 19px;
    transition: .3s ease;
}

.host-service-card:hover .host-service-icon {
    background: #c8ff00;
    color: #0755e8;
    transform: rotate(-5deg) scale(1.05);
}

.host-service-card h5 {
    margin: 0 0 3px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.host-service-card p {
    margin: 0;
    color: rgba(255,255,255,.57);
    font-size: 11px;
    line-height: 1.4;
}


/* =========================================================
   BUTTON
========================================================= */

.host-action {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 30px;
}

.host-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 6px 7px 6px 20px;
    color: #092e77;
    background: #c8ff00;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0,0,0,.16);
    transition: .3s ease;
}

    .host-btn:hover {
        color: #092e77;
        transform: translateY(-4px);
        box-shadow: 0 18px 40px rgba(0,0,0,.23);
    }

.host-btn-icon {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #0755e8;
    color: #fff;
    font-size: 17px;
    transition: .3s ease;
}

.host-btn:hover .host-btn-icon {
    transform: rotate(45deg);
}

.host-secure-text {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,.65);
    font-size: 12px;
}

    .host-secure-text i {
        color: #c8ff00;
        font-size: 16px;
    }


/* =========================================================
   RIGHT VISUAL
========================================================= */

.host-visual {
    position: relative;
    min-height: 610px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* GRID */

.host-grid {
    position: absolute;
    width: 530px;
    height: 530px;
    border-radius: 50%;
    background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(circle, black 30%, transparent 72%);
    opacity: .55;
}


/* CIRCLES */

.host-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(255,255,255,.32);
}

.host-circle-one {
    width: 480px;
    height: 480px;
    animation: hostRotate 35s linear infinite;
}

.host-circle-two {
    width: 360px;
    height: 360px;
    border-style: solid;
    border-color: rgba(200,255,0,.12);
    box-shadow: 0 0 80px rgba(200,255,0,.06);
    animation: hostRotateReverse 25s linear infinite;
}


/* IMAGE */

.host-main-image {
    position: relative;
    z-index: 4;
    width: 470px;
    max-width: 90%;
    filter: drop-shadow(0 30px 40px rgba(0,0,0,.22)) drop-shadow(0 0 35px rgba(255,255,255,.08));
    animation: hostFloat 5s ease-in-out infinite;
}

    .host-main-image img {
        width: 100%;
        height: auto;
        display: block;
    }


/* =========================================================
   FLOATING CARDS
========================================================= */

.host-floating-card {
    position: absolute;
    z-index: 8;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    min-width: 170px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 14px;
    background: rgba(255,255,255,.14);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 18px 40px rgba(0,0,0,.16);
    transition: .3s ease;
}

    .host-floating-card:hover {
        transform: translateY(-6px) scale(1.02);
        background: rgba(255,255,255,.19);
    }

.floating-icon {
    flex: 0 0 39px;
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #c8ff00;
    color: #0755e8;
    font-size: 17px;
}

.host-floating-card strong {
    display: block;
    margin-bottom: 2px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.host-floating-card small {
    display: block;
    color: rgba(255,255,255,.58);
    font-size: 9px;
}


/* POSITIONS */

.host-card-top {
    top: 5%;
    right: 5%;
    animation: floatingOne 4s ease-in-out infinite;
}

.host-card-left {
    top: 3%;
    left: -1%;
    animation: floatingTwo 4.5s ease-in-out infinite;
}

.host-card-right {
    top: 80%;
    right: -3%;
    animation: floatingThree 5s ease-in-out infinite;
}

.host-card-bottom {
    bottom: 8%;
    left: 7%;
    animation: floatingOne 5.5s ease-in-out infinite;
}


/* =========================================================
   CENTER BADGE
========================================================= */

.host-center-badge {
    position: absolute;
    z-index: 10;
    bottom: 7%;
    right: 21%;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    border-radius: 50px;
    background: #fff;
    color: #0755e8;
    box-shadow: 0 15px 35px rgba(0,0,0,.18);
    font-size: 10px;
    font-weight: 700;
}

    .host-center-badge i {
        color: #0755e8;
        font-size: 14px;
    }


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes hostFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-13px);
    }
}

@keyframes floatingOne {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

@keyframes floatingTwo {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

@keyframes floatingThree {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes hostRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes hostRotateReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .host-section {
        padding: 90px 0;
    }

    .host-title {
        font-size: 50px;
    }

    .host-visual {
        min-height: 550px;
    }

    .host-main-image {
        width: 430px;
    }

    .host-circle-one {
        width: 430px;
        height: 430px;
    }

    .host-circle-two {
        width: 330px;
        height: 330px;
    }

    .host-card-left {
        left: 0;
    }

    .host-card-right {
        right: 0;
    }
}


@media (max-width: 991px) {

    .host-section {
        padding: 80px 0;
    }

    .host-title {
        font-size: 46px;
    }

    .host-description {
        max-width: 100%;
    }

    .host-services {
        max-width: 100%;
    }

    .host-visual {
        min-height: 520px;
        margin-top: 25px;
    }

    .host-main-image {
        width: 430px;
    }
}


@media (max-width: 767px) {

    .host-section {
        padding: 65px 0;
    }

    .host-title {
        font-size: 39px;
        letter-spacing: -1px;
    }

    .host-description {
        font-size: 14px;
        line-height: 1.7;
    }

    .host-service-card {
        min-height: 68px;
    }

    .host-visual {
        min-height: 430px;
        margin-top: 15px;
    }

    .host-main-image {
        width: 360px;
    }

    .host-circle-one {
        width: 360px;
        height: 360px;
    }

    .host-circle-two {
        width: 280px;
        height: 280px;
    }

    .host-grid {
        width: 400px;
        height: 400px;
    }

    .host-floating-card {
        min-width: auto;
        padding: 8px 10px;
    }

        .host-floating-card strong {
            font-size: 10px;
        }

        .host-floating-card small {
            font-size: 8px;
        }

    .floating-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
        font-size: 14px;
    }

    .host-card-top {
        top: 3%;
        right: 0;
    }

    .host-card-left {
        top: 38%;
        left: -5px;
    }

    .host-card-right {
        top: 58%;
        right: -5px;
    }

    .host-card-bottom {
        bottom: 4%;
        left: 5%;
    }

    .host-center-badge {
        bottom: 2%;
        right: 18%;
    }
}


@media (max-width: 575px) {

    .host-title {
        font-size: 34px;
    }

    .host-product-tag {
        font-size: 11px;
    }

    .host-services-heading h4 {
        font-size: 15px;
    }

    .host-service-card {
        padding: 10px;
    }

    .host-service-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 16px;
    }

    .host-service-card h5 {
        font-size: 12px;
    }

    .host-service-card p {
        font-size: 9px;
    }

    .host-action {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .host-visual {
        min-height: 360px;
    }

    .host-main-image {
        width: 300px;
    }

    .host-circle-one {
        width: 300px;
        height: 300px;
    }

    .host-circle-two {
        width: 235px;
        height: 235px;
    }

    .host-grid {
        width: 340px;
        height: 340px;
    }

    .host-floating-card {
        transform: scale(.85);
    }

    .host-card-left {
        left: -18px;
        display: none;
    }

    .host-card-right {
        right: -18px;
        display: none;
    }

    .host-card-top {
        right: -10px;
        display: none;
    }

    .host-card-bottom {
        left: -5px;
        display: none;
    }

    .host-center-badge {
        right: 7%;
        transform: scale(.85);
    }
}

/* =========================================================
   MNB PROMO - PREMIUM PRODUCT SHOWCASE
   COMPLETE CSS + ANIMATIONS
========================================================= */


/* =========================================================
   MAIN SECTION
========================================================= */

.mnb-promo {
    position: relative;
    overflow: hidden;
    padding: 105px 0;
    background: radial-gradient( circle at 8% 15%, rgba(255, 255, 255, 0.12), transparent 28% ), radial-gradient( circle at 92% 85%, rgba(255, 255, 255, 0.10), transparent 30% ), linear-gradient( 135deg, #91b300 0%, #819f00 45%, #6f8c00 100% );
}


/* =========================================================
   BACKGROUND GRID
========================================================= */

.promo-grid-bg {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image: linear-gradient( rgba(255, 255, 255, 0.5) 1px, transparent 1px ), linear-gradient( 90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px );
    background-size: 55px 55px;
    pointer-events: none;
}


/* =========================================================
   BACKGROUND ORBS
========================================================= */

.promo-orb {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.13);
    pointer-events: none;
}

.promo-orb-one {
    width: 550px;
    height: 550px;
    top: -320px;
    right: -170px;
    animation: orbMoveOne 12s ease-in-out infinite;
}

.promo-orb-two {
    width: 420px;
    height: 420px;
    bottom: -280px;
    left: -180px;
    animation: orbMoveTwo 15s ease-in-out infinite;
}


/* =========================================================
   BACKGROUND ORB ANIMATIONS
========================================================= */

@keyframes orbMoveOne {

    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-30px, 25px) scale(1.06);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}


@keyframes orbMoveTwo {

    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(25px, -20px) scale(1.08);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.promo-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 46% 54%;
    align-items: center;
    gap: 55px;
}


/* =========================================================
   LEFT VISUAL
========================================================= */

.promo-visual {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   PRODUCT TAG
========================================================= */

.promo-product-tag {
    position: absolute;
    top: 20px;
    left: 10px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px 10px 10px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 15px 40px rgba(31, 45, 0, 0.20);
    animation: productTagFloat 4s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


    .promo-product-tag:hover {
        animation-play-state: paused;
        transform: translateY(-5px) scale(1.03);
        box-shadow: 0 20px 45px rgba(30, 45, 0, 0.28);
    }


.promo-tag-arrow {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: #829f00;
    font-size: 16px;
}


.promo-product-tag small {
    display: block;
    color: #819800;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.5px;
}


.promo-product-tag strong {
    display: block;
    color: #28300d;
    font-size: 17px;
    line-height: 1;
}


@keyframes productTagFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }

    100% {
        transform: translateY(0);
    }
}


/* =========================================================
   DECORATIVE RINGS
========================================================= */

.promo-ring {
    position: absolute;
    border: 1px dashed rgba(255, 255, 255, 0.30);
    border-radius: 50%;
    pointer-events: none;
    transform-origin: center center;
    opacity: 0.75;
}


.ring-one {
    width: 600px;
    height: 600px;
    animation: ringRotateOne 24s linear infinite;
}


.ring-two {
    width: 470px;
    height: 470px;
    animation: ringRotateTwo 18s linear infinite;
}


.ring-three {
    width: 360px;
    height: 360px;
    animation: ringRotateThree 14s linear infinite;
}


/* Ring 01 */

@keyframes ringRotateOne {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* Ring 02 */

@keyframes ringRotateTwo {

    from {
        transform: rotate(25deg);
    }

    to {
        transform: rotate(-335deg);
    }
}


/* Ring 03 */

@keyframes ringRotateThree {

    from {
        transform: rotate(-20deg);
    }

    to {
        transform: rotate(340deg);
    }
}


/* =========================================================
   MAIN IMAGE
========================================================= */

.promo-main-image {
    position: relative;
    width: 90%;
    z-index: 3;
    transform-origin: center center;
    animation: promoImageFloat 5s ease-in-out infinite;
    will-change: transform;
}


@keyframes promoImageFloat {

    0% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    25% {
        transform: translate3d(0, -8px, 0) rotate(-0.4deg);
    }

    50% {
        transform: translate3d(0, -15px, 0) rotate(0deg);
    }

    75% {
        transform: translate3d(0, -7px, 0) rotate(0.4deg);
    }

    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
}


/* =========================================================
   IMAGE GLOW
========================================================= */

.promo-image-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    left: 10%;
    top: 10%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    filter: blur(65px);
    animation: promoGlowPulse 4s ease-in-out infinite;
    will-change: transform, opacity;
}


@keyframes promoGlowPulse {

    0% {
        transform: scale(0.88);
        opacity: 0.45;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.75;
    }

    100% {
        transform: scale(0.88);
        opacity: 0.45;
    }
}


/* =========================================================
   IMAGE FRAME
========================================================= */

.promo-image-frame {
    position: relative;
    overflow: hidden;
    padding: 20px;
}


/* =========================================================
   MAIN IMAGE
========================================================= */

.promo-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}


/* =========================================================
   FLOATING CARDS
========================================================= */

.promo-float-card {
    position: absolute;
    z-index: 8;
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 210px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 45px rgba(30, 45, 0, 0.23);
    backdrop-filter: blur(12px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}


/* Top Card */

.float-card-one {
    top: 30px;
    right: -10px;
    animation: floatCardOne 4s ease-in-out infinite, floatCardGlow 3s ease-in-out infinite;
}


/* Bottom Card */

.float-card-two {
    bottom: 20px;
    left: -15px;
    animation: floatCardTwo 5s ease-in-out infinite;
}


.promo-float-card:hover {
    animation-play-state: paused;
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 25px 60px rgba(30, 45, 0, 0.30);
}


/* =========================================================
   FLOAT CARD ANIMATIONS
========================================================= */

@keyframes floatCardOne {

    0% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    50% {
        transform: translate3d(0, -13px, 0) rotate(1deg);
    }

    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
}


@keyframes floatCardTwo {

    0% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    50% {
        transform: translate3d(0, -11px, 0) rotate(-1deg);
    }

    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
}


/* =========================================================
   FLOAT CARD SHADOW
========================================================= */

@keyframes floatCardGlow {

    0% {
        box-shadow: 0 18px 45px rgba(30, 45, 0, 0.23);
    }

    50% {
        box-shadow: 0 24px 55px rgba(30, 45, 0, 0.32);
    }

    100% {
        box-shadow: 0 18px 45px rgba(30, 45, 0, 0.23);
    }
}


/* =========================================================
   FLOAT ICON
========================================================= */

.float-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #e9f0c7;
    color: #789300;
    font-size: 17px;
    animation: iconPulse 3s ease-in-out infinite;
}


@keyframes iconPulse {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}


.promo-float-card strong {
    display: block;
    color: #26310b;
    font-size: 12px;
    line-height: 1.2;
}


.promo-float-card span {
    display: block;
    margin-top: 3px;
    color: #858d72;
    font-size: 9px;
}


/* =========================================================
   CHECK ICON
========================================================= */

.float-check {
    margin-left: auto;
    color: #8aa900;
    font-size: 15px;
    animation: checkPulse 2.5s ease-in-out infinite;
}


@keyframes checkPulse {

    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.18);
        opacity: 1;
    }
}


/* =========================================================
   VISUAL STATS
========================================================= */

.promo-visual-stats {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
}


.visual-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.17);
    backdrop-filter: blur(8px);
    animation: statsFloat 4s ease-in-out infinite;
}


    .visual-stat:nth-child(1) {
        animation-delay: 0s;
    }


    .visual-stat:nth-child(2) {
        animation-delay: 0.6s;
    }


    .visual-stat:nth-child(3) {
        animation-delay: 1.2s;
    }


@keyframes statsFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}


.visual-stat > i {
    width: 29px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 13px;
    transition: transform 0.4s ease;
}


.visual-stat:hover > i {
    transform: rotate(12deg) scale(1.1);
}


.visual-stat strong {
    display: block;
    color: #fff;
    font-size: 10px;
}


.visual-stat span {
    display: block;
    color: rgba(255, 255, 255, 0.60);
    font-size: 8px;
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.promo-content {
    padding: 20px 0;
}


/* =========================================================
   EYEBROW
========================================================= */

.promo-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}


.eyebrow-line {
    width: 35px;
    height: 2px;
    background: #fff;
}


.eyebrow-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.60);
}


/* =========================================================
   TITLE
========================================================= */

.promo-title {
    max-width: 720px;
    margin: 0 0 22px;
    color: #fff;
    font-size: 50px;
    line-height: 1.10;
    font-weight: 700;
    letter-spacing: -1.6px;
}


    .promo-title span {
        position: relative;
        display: inline;
        color: #f4f8df;
    }


/* =========================================================
   DESCRIPTION
========================================================= */

.promo-description {
    max-width: 720px;
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    line-height: 1.75;
}


.promo-description-small {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
}


/* =========================================================
   FEATURE SECTION
========================================================= */

.promo-feature-section {
    margin-top: 28px;
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(15px);
}


/* =========================================================
   FEATURE HEADING
========================================================= */

.promo-section-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}


.section-heading-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #fff;
    color: #789600;
    font-size: 17px;
}


.promo-section-heading span {
    display: block;
    color: rgba(255, 255, 255, 0.52);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.5px;
}


.promo-section-heading h3 {
    margin: 3px 0 0;
    color: #fff;
    font-size: 19px;
    font-weight: 600;
}


/* =========================================================
   FEATURE GRID
========================================================= */

.promo-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}


/* =========================================================
   FEATURE CARD
========================================================= */

.promo-feature-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 13px;
    min-height: 72px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}


    .promo-feature-card:hover {
        transform: translateY(-3px);
        background: rgba(255, 255, 255, 0.13);
        border-color: rgba(255, 255, 255, 0.20);
    }


.promo-feature-highlight {
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.18);
}


/* =========================================================
   FEATURE ICON
========================================================= */

.feature-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 13px;
    transition: transform 0.3s ease, background 0.3s ease;
}


.promo-feature-card:hover .feature-icon {
    transform: rotate(-5deg) scale(1.08);
    background: rgba(255, 255, 255, 0.20);
}


/* =========================================================
   FEATURE CONTENT
========================================================= */

.feature-content {
    padding-right: 18px;
}


    .feature-content h4 {
        margin: 1px 0 4px;
        color: #fff;
        font-size: 11px;
        font-weight: 700;
    }


    .feature-content p {
        margin: 0;
        color: rgba(255, 255, 255, 0.58);
        font-size: 9px;
        line-height: 1.45;
    }


/* =========================================================
   FEATURE ARROW
========================================================= */

.feature-arrow {
    position: absolute;
    top: 13px;
    right: 11px;
    color: rgba(255, 255, 255, 0.38);
    font-size: 10px;
    transition: transform 0.3s ease, color 0.3s ease;
}


.promo-feature-card:hover .feature-arrow {
    color: #fff;
    transform: translate(2px, -2px);
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.promo-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 22px;
}


.promo-cta-info {
    display: flex;
    align-items: center;
    gap: 10px;
}


.cta-check {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 13px;
    animation: ctaCheckPulse 3s ease-in-out infinite;
}


@keyframes ctaCheckPulse {

    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255,255,255,.15);
    }

    50% {
        box-shadow: 0 0 0 7px rgba(255,255,255,0);
    }
}


.promo-cta-info strong {
    display: block;
    color: #fff;
    font-size: 11px;
}


.promo-cta-info span {
    display: block;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 9px;
}


/* =========================================================
   CTA BUTTON
========================================================= */

.promo-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 7px 8px 7px 19px;
    border-radius: 50px;
    background: #fff;
    color: #708b00;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 15px 35px rgba(25, 40, 0, 0.20);
    transition: all 0.3s ease;
}


    .promo-cta-btn i {
        width: 34px;
        height: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #7d9a00;
        color: #fff;
        transition: all 0.3s ease;
    }


    .promo-cta-btn:hover {
        background: #6f8b00;
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(25, 40, 0, 0.28);
    }


        .promo-cta-btn:hover i {
            background: #fff;
            color: #6f8b00;
            transform: rotate(45deg);
        }


/* =========================================================
   1199px RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .mnb-promo {
        padding: 85px 0;
    }

    .promo-layout {
        grid-template-columns: 45% 55%;
        gap: 35px;
    }

    .promo-title {
        font-size: 42px;
    }

    .promo-visual {
        min-height: 570px;
    }

    .promo-ring {
        transform: scale(0.85);
    }
}


/* =========================================================
   991px RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .mnb-promo {
        padding: 75px 0;
    }

    .promo-layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .promo-visual {
        width: 100%;
        max-width: 680px;
        margin: 0 auto;
    }

    .promo-content {
        max-width: 760px;
        margin: 0 auto;
    }

    .promo-title {
        font-size: 43px;
    }
}


/* =========================================================
   767px RESPONSIVE
========================================================= */

@media (max-width: 767px) {

    .mnb-promo {
        padding: 60px 0;
    }

    .promo-visual {
        min-height: 470px;
    }

    .promo-ring {
        display: none;
    }

    .promo-main-image {
        width: 88%;
    }

    .float-card-one {
        right: -5px;
        top: 90px;
    }

    .float-card-two {
        left: -5px;
        bottom: 85px;
    }

    .promo-title {
        font-size: 34px;
        letter-spacing: -0.8px;
    }

    .promo-feature-grid {
        grid-template-columns: 1fr;
    }

    .promo-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .promo-cta-btn {
        width: 100%;
        justify-content: space-between;
    }
}


/* =========================================================
   575px RESPONSIVE
========================================================= */

@media (max-width: 575px) {

    .mnb-promo {
        padding: 55px 0;
    }

    .promo-visual {
        min-height: 400px;
    }

    .promo-product-tag {
        left: 0;
        top: 5px;
    }

    .promo-float-card {
        min-width: 175px;
        padding: 9px 11px;
    }

    .float-icon {
        width: 34px;
        height: 34px;
    }

    .promo-float-card strong {
        font-size: 10px;
    }

    .promo-float-card span {
        font-size: 8px;
    }

    .float-card-one {
        top: 65px;
        right: -5px;
    }

    .float-card-two {
        bottom: 65px;
        left: -5px;
    }

    .promo-visual-stats {
        gap: 5px;
    }

    .visual-stat {
        padding: 7px 8px;
    }

        .visual-stat > i {
            width: 25px;
            height: 25px;
        }

        .visual-stat strong {
            font-size: 8px;
        }

        .visual-stat span {
            font-size: 7px;
        }

    .promo-title {
        font-size: 30px;
    }

    .promo-description {
        font-size: 13px;
    }

    .promo-feature-section {
        padding: 16px;
    }

    .promo-section-heading h3 {
        font-size: 17px;
    }
}


/* =========================================================
   400px RESPONSIVE
========================================================= */

@media (max-width: 400px) {

    .promo-float-card {
        display: none;
    }

    .promo-main-image {
        width: 100%;
    }

    .promo-visual {
        min-height: 350px;
    }

    .promo-visual-stats {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 15px;
        flex-wrap: wrap;
    }

    .promo-title {
        font-size: 27px;
    }
}


/* =========================================================
   REDUCE MOTION - ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .promo-main-image,
    .promo-image-glow,
    .promo-ring,
    .promo-product-tag,
    .promo-float-card,
    .float-icon,
    .float-check,
    .visual-stat,
    .promo-orb-one,
    .promo-orb-two,
    .promo-window-title,
    .promo-image-frame::after,
    .promo-image-topbar > span,
    .cta-check {
        animation: none !important;
    }
}


/* ============================================================
   MNB MART PREMIUM PRODUCT SECTION
============================================================ */

.mnb-mart-section {
    --mart-green: #20aa70;
    --mart-green-light: #55d09c;
    --mart-lime: #c5ec00;
    --mart-dark: #123d30;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: radial-gradient( circle at 75% 50%, rgba(255,255,255,.12), transparent 30% ), linear-gradient( 125deg, #159c66 0%, #28b47c 48%, #53ca99 100% );
    isolation: isolate;
}


/* ============================================================
   BACKGROUND
============================================================ */

.mart-grid {
    position: absolute;
    inset: 0;
    opacity: .11;
    background-image: linear-gradient( rgba(255,255,255,.4) 1px, transparent 1px ), linear-gradient( 90deg, rgba(255,255,255,.4) 1px, transparent 1px );
    background-size: 45px 45px;
    mask-image: radial-gradient( ellipse at center, black 20%, transparent 75% );
    z-index: -3;
}


.mart-noise {
    position: absolute;
    inset: 0;
    opacity: .025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
    z-index: -2;
}


.mart-blur {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(5px);
}


.mart-blur-1 {
    width: 500px;
    height: 500px;
    right: -180px;
    top: -220px;
    background: rgba(255,255,255,.12);
}


.mart-blur-2 {
    width: 450px;
    height: 450px;
    left: -250px;
    bottom: -250px;
    background: rgba(0,90,55,.12);
}


/* ============================================================
   PARTICLES
============================================================ */

.mart-particle {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,.65);
    animation: particleFloat 5s ease-in-out infinite;
}


.p1 {
    top: 18%;
    left: 9%;
}

.p2 {
    top: 75%;
    left: 18%;
    animation-delay: 1s;
}

.p3 {
    top: 25%;
    right: 15%;
    animation-delay: 2s;
}

.p4 {
    bottom: 16%;
    right: 8%;
    animation-delay: 3s;
}

.p5 {
    top: 50%;
    left: 48%;
    animation-delay: 1.5s;
}


@keyframes particleFloat {

    0%,100% {
        transform: translateY(0);
        opacity: .3;
    }

    50% {
        transform: translateY(-18px);
        opacity: 1;
    }
}


/* ============================================================
   MAIN LAYOUT
============================================================ */

.mart-layout {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(580px, 1.05fr);
    align-items: center;
    gap: 30px;
}


/* ============================================================
   LEFT CONTENT
============================================================ */

.mart-info {
    position: relative;
    z-index: 10;
}


.mart-product-tag {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 22px;
    color: white;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}


.tag-line {
    width: 34px;
    height: 3px;
    background: var(--mart-lime);
    border-radius: 20px;
}


.tag-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mart-lime);
    box-shadow: 0 0 0 5px rgba(197,236,0,.15);
    animation: tagPulse 2s infinite;
}


@keyframes tagPulse {

    0%,100% {
        box-shadow: 0 0 0 5px rgba(197,236,0,.15);
    }

    50% {
        box-shadow: 0 0 0 9px rgba(197,236,0,.03);
    }
}


/* Heading */

.mart-heading {
    max-width: 650px;
    margin: 0 0 25px;
    color: #fff;
    font-size: clamp(42px, 4.2vw, 66px);
    line-height: 1.02;
    font-weight: 600;
    letter-spacing: -2.5px;
}


    .mart-heading span {
        display: block;
        color: rgba(255,255,255,.78);
    }


/* Description */

.mart-intro {
    max-width: 610px;
    margin: 0;
    color: rgba(255,255,255,.86);
    font-size: 16px;
    line-height: 1.8;
}


    .mart-intro strong {
        color: white;
    }


/* ============================================================
   STATS
============================================================ */

.mart-stats {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}


.mart-stat {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(255,255,255,.095);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 13px;
    backdrop-filter: blur(12px);
    transition: .35s ease;
}


    .mart-stat:hover {
        transform: translateY(-5px);
        background: rgba(255,255,255,.15);
        border-color: rgba(255,255,255,.3);
    }


.stat-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7ba800;
    background: #fff;
    border-radius: 10px;
}


.mart-stat strong {
    display: block;
    color: white;
    font-size: 11px;
    white-space: nowrap;
}


.mart-stat span {
    display: block;
    margin-top: 3px;
    color: rgba(255,255,255,.62);
    font-size: 9px;
    white-space: nowrap;
}


/* ============================================================
   CAPABILITIES
============================================================ */

.mart-capabilities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 25px;
    margin-top: 25px;
}


.capability {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255,255,255,.88);
    font-size: 13px;
}


    .capability i {
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(197,236,0,.18);
        color: var(--mart-lime);
        font-size: 9px;
    }


/* ============================================================
   BUTTON
============================================================ */

.mart-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 35px;
}


.mart-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 7px 8px 7px 22px;
    color: #159b65;
    background: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
    transition: .35s ease;
}


    .mart-main-btn i {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        background: var(--mart-lime);
        border-radius: 50%;
        transition: .35s ease;
    }


    .mart-main-btn:hover {
        color: #159b65;
        transform: translateY(-4px);
        box-shadow: 0 20px 45px rgba(0,0,0,.2);
    }


        .mart-main-btn:hover i {
            transform: rotate(-45deg);
        }


.mart-url {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,.7);
    font-size: 12px;
}


/* ============================================================
   SHOWCASE
============================================================ */

.mart-showcase {
    position: relative;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Main glow */

.showcase-light {
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: radial-gradient( circle, rgba(255,255,255,.28), rgba(255,255,255,.04) 45%, transparent 70% );
    filter: blur(3px);
    animation: showcaseGlow 4s ease-in-out infinite;
}


@keyframes showcaseGlow {

    0%,100% {
        transform: scale(.95);
        opacity: .65;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}


/* ============================================================
   RINGS
============================================================ */

.showcase-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}


.ring-outer {
    width: 570px;
    height: 570px;
    border: 1px solid rgba(255,255,255,.13);
}


.ring-middle {
    width: 460px;
    height: 460px;
    border: 1px solid rgba(255,255,255,.12);
}


.ring-inner {
    width: 355px;
    height: 355px;
    border: 1px solid rgba(255,255,255,.13);
}


/* Rotating dashed line */

.mart-orbit {
    position: absolute;
    width: 520px;
    height: 520px;
    border: 2px dashed rgba(255,255,255,.48);
    border-radius: 50%;
    animation: orbitRotate 28s linear infinite;
}


@keyframes orbitRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* ============================================================
   ORBIT DOTS
============================================================ */

.orbit-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--mart-lime);
    border: 3px solid rgba(255,255,255,.75);
    border-radius: 50%;
    z-index: 4;
    box-shadow: 0 0 0 7px rgba(197,236,0,.12), 0 0 25px rgba(197,236,0,.4);
}


.dot-1 {
    top: 64px;
    left: 50%;
}


.dot-2 {
    top: 50%;
    right: 20px;
}


.dot-3 {
    bottom: 63px;
    left: 50%;
}


.dot-4 {
    top: 50%;
    left: 20px;
}


/* ============================================================
   CENTER PRODUCT
============================================================ */

.mart-product {
    position: relative;
    z-index: 7;
    animation: productFloat 5s ease-in-out infinite;
}


@keyframes productFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}


.product-shadow {
    position: absolute;
    left: 50%;
    bottom: -35px;
    width: 210px;
    height: 45px;
    transform: translateX(-50%);
    background: rgba(0,70,45,.25);
    border-radius: 50%;
    filter: blur(18px);
    animation: shadowPulse 5s ease-in-out infinite;
}


@keyframes shadowPulse {

    0%,100% {
        transform: translateX(-50%) scale(.85);
        opacity: .5;
    }

    50% {
        transform: translateX(-50%) scale(1.1);
        opacity: .8;
    }
}


.product-circle {
    width: 335px;
    height: 335px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px;
    border-radius: 50%;
    background: linear-gradient( 145deg, rgba(255,255,255,.8), rgba(255,255,255,.25) );
    box-shadow: 0 35px 80px rgba(0,60,40,.2), 0 0 0 12px rgba(255,255,255,.07);
}


.product-circle-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    overflow: hidden;
    padding: 60px;
}


    .product-circle-inner img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: drop-shadow( 0 12px 20px rgba(0,0,0,.08) );
    }


/* ============================================================
   FEATURE NODES
============================================================ */

.mart-node {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 155px;
    padding: 10px 13px;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0,70,45,.13);
    backdrop-filter: blur(15px);
    transition: transform .4s ease, box-shadow .4s ease;
}


    .mart-node:hover {
        transform: translateY(-8px) scale(1.04);
        box-shadow: 0 22px 45px rgba(0,70,45,.22);
    }


.node-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eff9d4;
    color: #8bb500;
    border-radius: 11px;
    font-size: 14px;
}


.node-text strong {
    display: block;
    color: #26323b;
    font-size: 11px;
    line-height: 1.3;
}


.node-text small {
    display: block;
    margin-top: 2px;
    color: #89919a;
    font-size: 9px;
}


/* ============================================================
   NODE POSITIONS
============================================================ */

.node-1 {
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    animation: nodeFloat1 4s ease-in-out infinite;
}


.node-2 {
    top: 18%;
    left: 0;
    animation: nodeFloat2 4.5s ease-in-out infinite;
}


.node-3 {
    top: 18%;
    right: 0;
    animation: nodeFloat3 5s ease-in-out infinite;
}


.node-4 {
    top: 46%;
    right: -15px;
    animation: nodeFloat4 4.2s ease-in-out infinite;
}


.node-5 {
    bottom: 19%;
    right: 2%;
    animation: nodeFloat3 4.8s ease-in-out infinite;
}


.node-6 {
    bottom: 19%;
    left: 2%;
    animation: nodeFloat2 4.3s ease-in-out infinite;
}


@keyframes nodeFloat1 {

    0%,100% {
        transform: translate(-50%,0);
    }

    50% {
        transform: translate(-50%,-9px);
    }
}


@keyframes nodeFloat2 {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}


@keyframes nodeFloat3 {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-11px);
    }
}


@keyframes nodeFloat4 {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}


/* ============================================================
   MINI BADGES
============================================================ */

.mini-badge {
    position: absolute;
    z-index: 12;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 11px;
    color: white;
    background: rgba(18,61,48,.35);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    font-size: 10px;
    animation: badgeFloat 4s ease-in-out infinite;
}


    .mini-badge i {
        color: var(--mart-lime);
    }


.badge-1 {
    top: 28%;
    left: 14%;
}


.badge-2 {
    top: 68%;
    right: 15%;
    animation-delay: 1.5s;
}


.badge-3 {
    bottom: 5%;
    left: 39%;
    animation-delay: 2.5s;
}


@keyframes badgeFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}


/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1200px) {

    .mart-layout {
        grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
    }

    .mart-heading {
        font-size: 52px;
    }

    .mart-showcase {
        transform: scale(.92);
    }
}


@media (max-width: 991px) {

    .mnb-mart-section {
        padding: 90px 0;
    }

    .mart-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .mart-info {
        max-width: 750px;
        margin: auto;
        text-align: center;
    }

    .mart-product-tag,
    .mart-actions {
        justify-content: center;
    }

    .mart-intro {
        margin-left: auto;
        margin-right: auto;
    }

    .mart-showcase {
        height: 620px;
        transform: none;
    }
}


@media (max-width: 650px) {

    .mnb-mart-section {
        padding: 70px 0;
    }

    .mart-heading {
        font-size: 39px;
        letter-spacing: -1.5px;
    }

    .mart-stats {
        flex-direction: column;
    }

    .mart-stat {
        justify-content: flex-start;
    }

    .mart-capabilities {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .mart-actions {
        flex-direction: column;
    }

    .mart-showcase {
        height: 510px;
        transform: scale(.88);
    }

    .ring-outer {
        width: 470px;
        height: 470px;
    }

    .mart-orbit {
        width: 430px;
        height: 430px;
    }

    .ring-middle {
        width: 370px;
        height: 370px;
    }

    .ring-inner {
        width: 290px;
        height: 290px;
    }

    .product-circle {
        width: 275px;
        height: 275px;
    }

    .mart-node {
        min-width: 130px;
        padding: 8px;
        display: none;
    }

    .node-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .node-text strong {
        font-size: 9px;
    }

    .node-text small {
        font-size: 8px;
    }

    .node-2 {
        left: -10px;
    }

    .node-3 {
        right: -10px;
    }
}


@media (max-width: 480px) {

    .mart-heading {
        font-size: 33px;
    }

    .mart-intro {
        font-size: 14px;
    }

    .mart-showcase {
        height: 430px;
        transform: scale(.74);
        transform-origin: center;
        margin: -25px 0;
    }
}

/* =========================================================
   MNB SOFT - TRUSTED BRANDS SECTION
   LIGHT PREMIUM UI
   ========================================================= */

.trusted-section {
    position: relative;
    overflow: hidden;
   }

/* =========================================================
   BACKGROUND SHAPES
   ========================================================= */

.trusted-bg-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.trusted-bg-shape-1 {
    width: 320px;
    height: 320px;
    top: -170px;
    left: -130px;
    border: 1px solid rgba(178, 230, 110, 0.25);
    box-shadow: 0 0 0 35px rgba(178, 230, 110, 0.025), 0 0 0 70px rgba(178, 230, 110, 0.018);
}

.trusted-bg-shape-2 {
    width: 320px;
    height: 320px;
    top: -170px;
    right: -130px;
    border: 1px solid rgba(178, 230, 110, 0.25);
    box-shadow: 0 0 0 35px rgba(178, 230, 110, 0.025), 0 0 0 70px rgba(178, 230, 110, 0.018);
}


/* =========================================================
   SECTION TITLE
   ========================================================= */

.trusted-sec-title {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto 45px;
}


    /* Subtitle */

    .trusted-sec-title .sub-title {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-bottom: 18px;
        padding: 8px 16px;
        border: 1px solid rgba(9, 150, 150, 0.13);
        border-radius: 50px;
        background: rgba(255, 255, 255, 0.75);
        color: #6c7c7d;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        box-shadow: 0 8px 25px rgba(8, 59, 61, 0.045);
    }


/* Triangle wrapper */

.triangle-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 28px;
    height: 17px;
}


    /* Override existing triangle */

    .triangle-wrap .triangle {
        position: absolute;
        top: 1px;
        width: 0;
        height: 0;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        transform: none !important;
    }


    /* First triangle */

    .triangle-wrap .triangle1 {
        left: 0;
        border-left: 14px solid #b2e66e;
    }


    /* Second triangle */

    .triangle-wrap .triangle2 {
        left: 8px;
        border-left: 14px solid #099696;
    }


/* Heading */

.trusted-sec-title h2 {
    margin: 0;
    color: #073b3d;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -1.6px;
}


    /* Heading Highlight */

    .trusted-sec-title h2 span {
        position: relative;
        display: inline-block;
        color: #8fc800;
    }


        /* Underline */

        .trusted-sec-title h2 span::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -7px;
            height: 4px;
            border-radius: 10px;
            background: linear-gradient( 90deg, #b2e66e, #099696 );
            transform: scaleX(.9);
            transform-origin: center;
            opacity: .8;
        }


/* Intro text */

.trusted-intro {
    max-width: 650px;
    margin: 18px auto 0;
    color: #718182;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   TRUSTED COMPANIES WRAPPER
   ========================================================= */

.trusted-companies-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto 42px;
}


/* =========================================================
   TOP DECORATIVE LINE
   ========================================================= */

.trusted-top-line {
    position: absolute;
    top: 0;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 6px;
    transform: translateX(-50%);
}

    .trusted-top-line span {
        display: block;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #b2e66e;
    }

        .trusted-top-line span:nth-child(2) {
            width: 28px;
            border-radius: 10px;
            background: #099696;
        }

        .trusted-top-line span:nth-child(3) {
            background: #b2e66e;
        }


/* =========================================================
   MAIN CARD
   ========================================================= */

.trusted-companies-card {
    position: relative;
    overflow: hidden;
    padding: 28px 35px;
    border: 1px solid rgba(7, 59, 61, 0.08);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 25px 70px rgba(7, 59, 61, 0.075), 0 5px 20px rgba(7, 59, 61, 0.035);
    transition: transform .4s ease, box-shadow .4s ease;
}


    /* Hover */

    .trusted-companies-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 35px 85px rgba(7, 59, 61, 0.11), 0 8px 25px rgba(9, 150, 150, 0.05);
    }


/* =========================================================
   CARD GLOW
   ========================================================= */

.trusted-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 420px;
    height: 220px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient( ellipse, rgba(178, 230, 110, 0.13), transparent 70% );
    filter: blur(15px);
    pointer-events: none;
}


/* =========================================================
   COMPANY IMAGE
   ========================================================= */

.trusted-companies-image {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}


    /* Image */

    .trusted-companies-image img {
        display: block;
        width: 100%;
        max-width: 1080px;
        height: auto;
        object-fit: contain;
        mix-blend-mode: multiply;
        transition: transform .5s ease, filter .5s ease;
    }


/* Image Hover */

.trusted-companies-card:hover
.trusted-companies-image img {
    transform: scale(1.015);
}


/* =========================================================
   FLOATING DOTS
   ========================================================= */

.trusted-dot {
    position: absolute;
    z-index: 3;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #b2e66e;
    box-shadow: 0 0 0 5px rgba(178, 230, 110, 0.12), 0 0 15px rgba(178, 230, 110, 0.4);
    animation: trustedDotFloat 4s ease-in-out infinite;
}


/* Dot Positions */

.trusted-dot-1 {
    top: 16%;
    left: 0;
}

.trusted-dot-2 {
    top: 35%;
    right: 0;
    background: #099696;
    box-shadow: 0 0 0 5px rgba(9, 150, 150, 0.09), 0 0 15px rgba(9, 150, 150, 0.25);
    animation-delay: .8s;
}

.trusted-dot-3 {
    bottom: 12%;
    left: 8%;
    animation-delay: 1.5s;
}

.trusted-dot-4 {
    bottom: 8%;
    right: 10%;
    background: #099696;
    box-shadow: 0 0 0 5px rgba(9, 150, 150, 0.09), 0 0 15px rgba(9, 150, 150, 0.25);
    animation-delay: 2s;
}


/* Dot animation */

@keyframes trustedDotFloat {

    0%, 100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-12px) scale(1.15);
    }
}


/* =========================================================
   CTA BOX
   ========================================================= */

.trusted-service-box {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    max-width: 850px;
    min-height: 88px;
    margin: 0 auto;
    padding: 9px 12px 9px 9px;
    border: 1px solid rgba(178, 230, 110, 0.4);
    border-radius: 60px;
    background: linear-gradient( 110deg, #b2e66e 0%, #c7f379 48%, #b2e66e 100% );
    box-shadow: 0 15px 40px rgba(178, 230, 110, 0.20), inset 0 1px 0 rgba(255, 255, 255, .55);
    transition: transform .35s ease, box-shadow .35s ease;
}


    /* CTA Hover */

    .trusted-service-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 50px rgba(178, 230, 110, 0.30), inset 0 1px 0 rgba(255, 255, 255, .7);
    }


/* =========================================================
   CTA ICON
   ========================================================= */

.trusted-service-icon {
    flex: 0 0 auto;
}


.trusted-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border: 5px solid #b2e66e;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 5px 18px rgba(7, 59, 61, 0.08);
    transition: transform .4s ease;
}


/* Icon Hover */

.trusted-service-box:hover
.trusted-icon-circle {
    transform: rotate(10deg) scale(1.04);
}


.trusted-icon-circle svg {
    width: 21px;
    height: 30px;
}


/* =========================================================
   CTA CONTENT
   ========================================================= */

.trusted-service-content {
    flex: 1;
    padding: 0 20px;
}


    .trusted-service-content span {
        display: block;
        margin-bottom: 3px;
        color: rgba(7, 59, 61, .58);
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 1.2px;
        text-transform: uppercase;
    }


    .trusted-service-content p {
        margin: 0;
        color: #073b3d;
        font-size: 16px;
        font-weight: 700;
    }


/* =========================================================
   CTA LINK
   ========================================================= */

.trusted-service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-shrink: 0;
    padding: 14px 18px;
    border-radius: 40px;
    background: #073b3d;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    transition: background .3s ease, transform .3s ease;
}


    .trusted-service-link i {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 29px;
        height: 29px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .10);
        font-size: 11px;
        transition: transform .3s ease;
    }


    .trusted-service-link:hover {
        background: #099696;
        color: #ffffff !important;
        transform: translateX(2px);
    }


        .trusted-service-link:hover i {
            transform: translateX(4px);
        }


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .trusted-section {
        padding: 80px 0 70px;
    }

    .trusted-sec-title {
        margin-bottom: 35px;
    }

        .trusted-sec-title h2 {
            font-size: 42px;
        }

    .trusted-companies-wrapper {
        padding: 15px;
    }

    .trusted-companies-card {
        padding: 20px;
        border-radius: 25px;
    }

    .trusted-companies-image {
        min-height: 250px;
    }

    .trusted-service-box {
        max-width: 90%;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .trusted-section {
        padding: 65px 0 55px;
    }

    .trusted-bg-shape-1 {
        top: -230px;
        left: -230px;
    }

    .trusted-bg-shape-2 {
        top: -230px;
        right: -230px;
    }

    .trusted-sec-title {
        margin-bottom: 25px;
    }

        .trusted-sec-title .sub-title {
            padding: 7px 13px;
            font-size: 10px;
            letter-spacing: .7px;
        }

        .trusted-sec-title h2 {
            font-size: 31px;
            line-height: 1.18;
            letter-spacing: -.8px;
        }

            .trusted-sec-title h2 span::after {
                height: 3px;
                bottom: -5px;
            }

    .trusted-intro {
        margin-top: 15px;
        padding: 0 12px;
        font-size: 13px;
        line-height: 1.7;
    }


    /* Company card */

    .trusted-companies-wrapper {
        margin-bottom: 28px;
        padding: 8px;
    }

    .trusted-companies-card {
        padding: 12px;
        border-radius: 20px;
    }

    .trusted-companies-image {
        min-height: 170px;
        padding: 10px 4px;
    }

    .trusted-card-glow {
        width: 240px;
        height: 150px;
    }


    /* Dots */

    .trusted-dot-1,
    .trusted-dot-2 {
        display: none;
    }

    .trusted-dot {
        width: 5px;
        height: 5px;
    }


    /* CTA */

    .trusted-service-box {
        width: calc(100% - 16px);
        max-width: 100%;
        min-height: auto;
        padding: 8px;
        border-radius: 24px;
        flex-wrap: wrap;
    }

    .trusted-icon-circle {
        width: 50px;
        height: 50px;
        border-width: 4px;
    }

        .trusted-icon-circle svg {
            width: 16px;
            height: 23px;
        }

    .trusted-service-content {
        padding: 0 10px;
    }

        .trusted-service-content span {
            font-size: 8px;
        }

        .trusted-service-content p {
            font-size: 12px;
        }

    .trusted-service-link {
        width: 100%;
        margin-top: 7px;
        padding: 11px 14px;
        font-size: 11px;
    }

        .trusted-service-link i {
            width: 25px;
            height: 25px;
        }
}


/* =========================================================
   EXTRA SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .trusted-sec-title h2 {
        font-size: 27px;
    }

    .trusted-companies-image {
        min-height: 135px;
    }

    .trusted-service-box {
        width: 100%;
    }
}

/* =========================================================
   AWARDS & ACHIEVEMENTS
   PRIMARY  : #8fc800
   SECONDARY: #073b3d
========================================================= */

.awards-section {
    position: relative;
    overflow: hidden;
}

    /* Decorative Background */
    .awards-section::before {
        content: "";
        position: absolute;
        width: 250px;
        height: 250px;
        border-radius: 50%;
        background: rgba(143, 200, 0, 0.07);
        top: 10%;
        left: -150px;
        pointer-events: none;
    }

    .awards-section::after {
        content: "";
        position: absolute;
        width: 250px;
        height: 250px;
        border-radius: 50%;
        background: rgba(143, 200, 0, 0.07);
        top: 10%;
        right: -150px;
        pointer-events: none;
    }

    .awards-section .container {
        position: relative;
        z-index: 2;
    }


/* =========================================================
   SECTION HEADING
========================================================= */

.awards-heading {
    max-width: 760px;
    margin: 0 auto 55px;
}

.section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #8fc800;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.label-line {
    width: 38px;
    height: 2px;
    border-radius: 10px;
    background: #8fc800;
}

.awards-heading h2 {
    margin: 0 0 18px;
    color: #073b3d;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 800;
}

    .awards-heading h2 span {
        color: #8fc800;
    }

.awards-heading p {
    max-width: 670px;
    margin: 0 auto;
    color: #5f7071;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   CLUTCH FEATURE CARD
========================================================= */

.clutch-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 230px;
    padding: 35px 45px;
    margin-bottom: 45px;
    border-radius: 24px;
    background: #073b3d;
    border: 1px solid rgba(143, 200, 0, 0.2);
    box-shadow: 0 20px 55px rgba(7, 59, 61, 0.14);
    overflow: hidden;
    transition: all 0.4s ease;
}


    /* Background Glow */

    .clutch-card::before {
        content: "";
        position: absolute;
        width: 380px;
        height: 380px;
        border-radius: 50%;
        background: rgba(143, 200, 0, 0.10);
        right: -170px;
        top: -190px;
        transition: all 0.6s ease;
    }

    .clutch-card::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.025);
        left: 35%;
        bottom: -130px;
        pointer-events: none;
    }

    .clutch-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 28px 70px rgba(7, 59, 61, 0.20);
    }

        .clutch-card:hover::before {
            transform: scale(1.25);
        }


/* =========================================================
   CLUTCH CONTENT
========================================================= */

.clutch-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 35px;
}

.clutch-logo {
    width: 125px;
    height: 125px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    border-radius: 22px;
    background: #ffffff;
    border: 3px solid rgba(143, 200, 0, 0.55);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

    .clutch-logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.clutch-card:hover .clutch-logo {
    transform: scale(1.06) rotate(-3deg);
    border-color: #8fc800;
}


/* =========================================================
   CLUTCH INFO
========================================================= */

.clutch-info .small-title {
    display: block;
    margin-bottom: 6px;
    color: #8fc800;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
}

.clutch-info h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
}

.rating-wrapper {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 9px;
}

    .rating-wrapper strong {
        color: #8fc800;
        font-size: 38px;
        line-height: 1;
        font-weight: 800;
    }

.stars {
    display: flex;
    gap: 5px;
}

    .stars i {
        color: #8fc800;
        font-size: 17px;
        filter: drop-shadow( 0 2px 4px rgba(143, 200, 0, 0.25) );
    }

.clutch-info p {
    max-width: 500px;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   FLOATING RATING BADGE
========================================================= */

.clutch-badge {
    position: relative;
    z-index: 3;
    width: 135px;
    height: 135px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #8fc800;
    color: #073b3d;
    border: 7px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 15px 40px rgba(143, 200, 0, 0.28);
    animation: awardFloat 4s ease-in-out infinite;
}

    .clutch-badge::before {
        content: "";
        position: absolute;
        inset: -12px;
        border: 1px dashed rgba(143, 200, 0, 0.45);
        border-radius: 50%;
        animation: badgeRotate 12s linear infinite;
    }

    .clutch-badge span {
        font-size: 34px;
        line-height: 1;
        font-weight: 900;
    }

    .clutch-badge small {
        margin-top: 7px;
        font-size: 9px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.8px;
    }

@keyframes awardFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes badgeRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   AWARDS GRID
========================================================= */

.awards-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}


/* =========================================================
   AWARD CARD
========================================================= */

.award-card {
    position: relative;
    min-height: 175px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(7, 59, 61, 0.08);
    box-shadow: 0 8px 28px rgba(7, 59, 61, 0.06);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}


    /* Top Green Accent */

    .award-card::before {
        content: "";
        position: absolute;
        width: 65px;
        height: 4px;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        background: #8fc800;
        border-radius: 0 0 10px 10px;
        transition: width 0.4s ease;
    }


    /* Green Glow */

    .award-card::after {
        content: "";
        position: absolute;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        top: -60px;
        right: -50px;
        background: rgba(143, 200, 0, 0.08);
        transition: transform 0.5s ease;
    }

    .award-card:hover::before {
        width: 100px;
    }

    .award-card:hover::after {
        transform: scale(2.5);
    }


/* =========================================================
   AWARD IMAGE
========================================================= */

.award-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .award-image img {
        width: auto;
        max-width: 100%;
        height: auto;
        max-height: 115px;
        object-fit: contain;
        transition: transform 0.45s ease, filter 0.45s ease;
    }


/* =========================================================
   HOVER
========================================================= */

.award-card:hover {
    transform: translateY(-10px);
    border-color: rgba(143, 200, 0, 0.35);
    box-shadow: 0 18px 45px rgba(7, 59, 61, 0.13);
}

    .award-card:hover .award-image img {
        transform: scale(1.1);
    }


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1199px) {

    .awards-heading h2 {
        font-size: 42px;
    }

    .awards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .awards-section {
        padding-top: 90px;
        padding-bottom: 75px;
    }

    .awards-heading h2 {
        font-size: 38px;
    }

    .clutch-card {
        padding: 30px;
    }

    .clutch-content {
        gap: 25px;
    }

    .clutch-logo {
        width: 105px;
        height: 105px;
        padding: 20px;
    }

    .clutch-badge {
        width: 110px;
        height: 110px;
    }

        .clutch-badge span {
            font-size: 28px;
        }

    .awards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .awards-section {
        padding-top: 70px;
        padding-bottom: 60px;
    }

    .awards-heading {
        padding: 0 15px;
        margin-bottom: 35px;
    }

    .section-label {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .label-line {
        width: 25px;
    }

    .awards-heading h2 {
        font-size: 32px;
    }

    .awards-heading p {
        font-size: 14px;
        line-height: 1.7;
    }


    /* Clutch */

    .clutch-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 25px;
        border-radius: 20px;
    }

    .clutch-content {
        flex-direction: column;
        gap: 20px;
    }

    .clutch-logo {
        width: 95px;
        height: 95px;
    }

    .clutch-info h3 {
        font-size: 24px;
    }

    .rating-wrapper {
        justify-content: center;
    }

    .clutch-info p {
        max-width: 350px;
        margin: auto;
    }

    .clutch-badge {
        width: 95px;
        height: 95px;
    }

        .clutch-badge span {
            font-size: 25px;
        }

        .clutch-badge small {
            font-size: 8px;
        }


    /* Awards */

    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .award-card {
        min-height: 145px;
        padding: 15px;
        border-radius: 16px;
    }

    .award-image {
        height: 105px;
    }

        .award-image img {
            max-height: 95px;
        }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .awards-heading h2 {
        font-size: 28px;
    }

    .awards-heading p {
        font-size: 13px;
    }

    .clutch-card {
        padding: 25px 15px;
    }

    .rating-wrapper {
        gap: 12px;
    }

        .rating-wrapper strong {
            font-size: 30px;
        }

    .stars {
        gap: 3px;
    }

        .stars i {
            font-size: 14px;
        }

    .awards-grid {
        gap: 10px;
    }

    .award-card {
        min-height: 125px;
        padding: 10px;
    }

    .award-image {
        height: 90px;
    }

        .award-image img {
            max-height: 82px;
        }
}